diff --git a/.gitattributes b/.gitattributes
index c7d9f3332a950355d5a77d85000f05e6f45435ea..dbbd7b89a32cf8b41636ecc2fc78c1ac6ca58e82 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -32,3 +32,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
+data/pacs.zip filter=lfs diff=lfs merge=lfs -text
+data/imagenet.zip filter=lfs diff=lfs merge=lfs -text
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..2e1e4f2f89624bf03c0ed3fa2894df6391a8c339
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,163 @@
+gradio_cached_examples/
+scripts/
+
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+share/python-wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+MANIFEST
+
+# PyInstaller
+# Usually these files are written by a python script from a template
+# before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.nox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+*.py,cover
+.hypothesis/
+.pytest_cache/
+cover/
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+local_settings.py
+db.sqlite3
+db.sqlite3-journal
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+.pybuilder/
+target/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# IPython
+profile_default/
+ipython_config.py
+
+# pyenv
+# For a library or package, you might want to ignore these files since the code is
+# intended to run in multiple environments; otherwise, check them in:
+# .python-version
+
+# pipenv
+# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
+# However, in case of collaboration, if having platform-specific dependencies or dependencies
+# having no cross-platform support, pipenv may install dependencies that don't work, or not
+# install all needed dependencies.
+#Pipfile.lock
+
+# poetry
+# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
+# This is especially recommended for binary packages to ensure reproducibility, and is more
+# commonly ignored for libraries.
+# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
+#poetry.lock
+
+# pdm
+# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
+#pdm.lock
+# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
+# in version control.
+# https://pdm.fming.dev/#use-with-ide
+.pdm.toml
+
+# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
+__pypackages__/
+
+# Celery stuff
+celerybeat-schedule
+celerybeat.pid
+
+# SageMath parsed files
+*.sage.py
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/
+.dmypy.json
+dmypy.json
+
+# Pyre type checker
+.pyre/
+
+# pytype static type analyzer
+.pytype/
+
+# Cython debug symbols
+cython_debug/
+
+# PyCharm
+# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
+# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
+# and can be added to the global gitignore or merged into this file. For a more nuclear
+# option (not recommended) you can uncomment the following to ignore the entire idea folder.
+#.idea/
\ No newline at end of file
diff --git a/app.py b/app.py
new file mode 100644
index 0000000000000000000000000000000000000000..b8090c55cbf8fd063ff66d0ed0d2114add69b567
--- /dev/null
+++ b/app.py
@@ -0,0 +1,216 @@
+import gradio as gr
+from PIL import Image
+import shutil
+import pickle
+import random
+import json
+import os
+
+if not os.path.exists("./data/pacs/"):
+ shutil.unpack_archive("./data/pacs.zip", './data/', 'zip')
+
+METHODS = {
+ "Textual Inversion (LDM)": "textualinversion_ldm",
+ "Textual Inversion (Stable Diffusion)": "none_with_emb_without_multires",
+ "DreamBooth": "unet_without_emb_without_multires",
+ "Custom Diffusion": "kv_with_emb_without_multires",
+}
+
+for method in list(METHODS.values()):
+ if not os.path.exists(f"./data/imagenet/images/{method}"):
+ shutil.unpack_archive(f"./data/imagenet/images/{method}.zip", f"./", 'zip')
+ if not os.path.exists(f"./data/imagenet/compositions/images/{method}"):
+ shutil.unpack_archive(f"./data/imagenet/compositions/images/{method}.zip", f"./", 'zip')
+print("Ready to go")
+
+
+CONCEPTS = {
+ "Art Painting": "art_painting",
+ "Cartoon": "cartoon",
+ "Photo": "photo",
+ "Sketch": "sketch",
+}
+
+DOMAINS = ["art_painting", "cartoon", "photo", "sketch"]
+
+with open("./data/imagenet/imagenet_mapping.pkl", "rb") as h:
+ imagenet_mapping = pickle.load(h)
+
+OBJECTS = []
+for k,v in imagenet_mapping.items():
+ CONCEPTS[f"{k}:{v}"] = k
+ OBJECTS.append(f"{k}:{v}")
+
+
+def get_domains(method, concept):
+ gen_cls=random.choice(os.listdir(os.path.join('./data/pacs', method, concept)))
+ fname=random.choice(os.listdir(os.path.join('./data/pacs', method, concept, gen_cls)))
+ gen_img = Image.open(os.path.join('./data/pacs', method, concept, gen_cls, fname)).resize((128, 128))
+
+ ref_images = []
+ for i in range(3):
+ cls=random.choice(os.listdir(os.path.join('./data/pacs', 'original', concept)))
+ fname=random.choice(os.listdir(os.path.join('./data/pacs', 'original', concept, cls)))
+ img = Image.open(os.path.join('./data/pacs', 'original', concept, cls, fname)).resize((128, 128))
+ ref_images.append(img)
+
+ return gen_img, f"a photo of {gen_cls} in the style of {concept}", ref_images
+
+
+def get_objects(method, concept, evaluation):
+ if evaluation=="Concept Alignment":
+ gen_cls = ""
+ if "ldm" in method:
+ gen_cls="samples"
+ fname=random.choice(os.listdir(os.path.join('./data/imagenet/images', method, concept, gen_cls)))
+ gen_img = Image.open(os.path.join('./data/imagenet/images', method, concept, gen_cls, fname)).resize((128, 128))
+
+ ref_images = []
+ for i in range(3):
+ fname=random.choice(os.listdir(os.path.join('./data/imagenet/images', 'original', concept)))
+ img = Image.open(os.path.join('./data/imagenet/images', 'original', concept, fname)).resize((128, 128))
+ ref_images.append(img)
+
+ return gen_img, f"a photo of **{imagenet_mapping[concept]}**", ref_images
+
+ else:
+ gen_cls = ""
+ if "ldm" in method:
+ gen_cls="samples"
+
+ with open(f"./data/imagenet/compositions/prompts/{concept}.json", "r") as h:
+ prompts = json.load(h)
+
+ fname=random.choice(os.listdir(os.path.join('./data/imagenet/compositions/images', method, concept, gen_cls)))
+ gen_img = Image.open(os.path.join('./data/imagenet/compositions/images', method, concept, gen_cls, fname)).resize((128, 128))
+
+ idx = int(fname.split("_")[0])
+ caption = prompts[idx]["caption"].replace(prompts[idx]["entity"], f"**{prompts[idx]['entity']}**")
+
+ ref_images = []
+ for i in range(3):
+ fname=random.choice(os.listdir(os.path.join('./data/imagenet/images', 'original', concept)))
+ img = Image.open(os.path.join('./data/imagenet/images', 'original', concept, fname)).resize((128, 128))
+ ref_images.append(img)
+
+ return gen_img, caption, ref_images
+
+
+def get_images(method, concept, evaluation):
+ method = METHODS[method]
+ concept = CONCEPTS[concept]
+ if concept in DOMAINS:
+ images, captions, ref_images = get_domains(method, concept)
+ return images, captions, ref_images
+ elif concept in list(imagenet_mapping.keys()):
+ images, captions, ref_images = get_objects(method, concept, evaluation)
+ return images, captions, ref_images
+ else:
+ return
+
+
+css='''
+#image_upload{min-height:4px}
+#image_upload [data-testid="image"], #image_upload [data-testid="image"] > div{max-height: 5}
+'''
+image_blocks = gr.Blocks(css=css)
+with image_blocks as demo:
+
+# with gr.Blocks() as demo:
+ gr.Markdown("
+
Generated Images:
+As ConceptBed evaluations required training of 1000+ models (one for each concept), it is impossible to host a live demo.
+Therefore, we generate 200,000+ images and randomly select a few images for this demo.
+ """
+ )
+
+if __name__ == "__main__":
+ demo.launch()
\ No newline at end of file
diff --git a/data/imagenet/compositions/images/kv_with_emb_without_multires.zip b/data/imagenet/compositions/images/kv_with_emb_without_multires.zip
new file mode 100644
index 0000000000000000000000000000000000000000..71992d77653b0a8ae9c31d43f7ac2d5238cc8ee9
--- /dev/null
+++ b/data/imagenet/compositions/images/kv_with_emb_without_multires.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cccbb607ea9495c11b3e4c0e8b336384fd937ec5ebdc29da6b1e4d27d0e2b6ae
+size 1458282105
diff --git a/data/imagenet/compositions/images/none_with_emb_without_multires.zip b/data/imagenet/compositions/images/none_with_emb_without_multires.zip
new file mode 100644
index 0000000000000000000000000000000000000000..d6601c45314c0ef0906b592b37940a44a5df77e8
--- /dev/null
+++ b/data/imagenet/compositions/images/none_with_emb_without_multires.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:802cc1ba4646fdd70df04712336393c557be1faf701dc9a4a9956d7138df56f7
+size 1528920464
diff --git a/data/imagenet/compositions/images/stablediffusion.zip b/data/imagenet/compositions/images/stablediffusion.zip
new file mode 100644
index 0000000000000000000000000000000000000000..374944760f8672ac308761dcf91e528ed6a92410
--- /dev/null
+++ b/data/imagenet/compositions/images/stablediffusion.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b8e5b092132c20ba960268a8511fd230a2f22bb4be73c30a9927cd49443323d7
+size 1444044799
diff --git a/data/imagenet/compositions/images/textualinversion_ldm.zip b/data/imagenet/compositions/images/textualinversion_ldm.zip
new file mode 100644
index 0000000000000000000000000000000000000000..46ba362f5fbb2f3f1adb09ded169b30cfab3ed96
--- /dev/null
+++ b/data/imagenet/compositions/images/textualinversion_ldm.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:62a54b984b1c0e112f0e60c7d28bd24a536134b26f9447006b7c8554fe199db3
+size 110983197
diff --git a/data/imagenet/compositions/images/unet_without_emb_without_multires.zip b/data/imagenet/compositions/images/unet_without_emb_without_multires.zip
new file mode 100644
index 0000000000000000000000000000000000000000..9883cc0b6071144e06c4d783b7d646fd8dbed5cb
--- /dev/null
+++ b/data/imagenet/compositions/images/unet_without_emb_without_multires.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:08d19543dfbf2ed595ddfbbcc9e8c2a7d24cacb8e2d7b46036e2aea677d777d2
+size 1498677027
diff --git a/data/imagenet/compositions/prompts/n01530575.json b/data/imagenet/compositions/prompts/n01530575.json
new file mode 100644
index 0000000000000000000000000000000000000000..82e82604697c33b3422e5f8c2428c56541fdb876
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01530575.json
@@ -0,0 +1,4071 @@
+[
+ {
+ "index": 0,
+ "image_id": 2220,
+ "entity": "bird",
+ "caption": "the bird has a fish in its mouth",
+ "question": [
+ "is there the bird ?",
+ "is there a fish ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has a fish in its mouth"
+ },
+ {
+ "index": 1,
+ "image_id": 2612,
+ "entity": "bird",
+ "caption": "bird has tan beak",
+ "question": [
+ "is there bird ?",
+ "is there tan beak ?"
+ ],
+ "prompt": "{} has tan beak"
+ },
+ {
+ "index": 2,
+ "image_id": 2612,
+ "entity": "bird",
+ "caption": "bird has brown eye",
+ "question": [
+ "is there bird ?",
+ "is there brown eye ?"
+ ],
+ "prompt": "{} has brown eye"
+ },
+ {
+ "index": 3,
+ "image_id": 2612,
+ "entity": "bird",
+ "caption": "bird has black feathers",
+ "question": [
+ "is there bird ?",
+ "are there black feathers ?"
+ ],
+ "prompt": "{} has black feathers"
+ },
+ {
+ "index": 4,
+ "image_id": 2613,
+ "entity": "bird",
+ "caption": "birds have orange beaks",
+ "question": [
+ "are there birds ?",
+ "are there orange beaks ?"
+ ],
+ "prompt": "{}s have orange beaks"
+ },
+ {
+ "index": 5,
+ "image_id": 2613,
+ "entity": "bird",
+ "caption": "bird has white feathers",
+ "question": [
+ "is there bird ?",
+ "are there white feathers ?"
+ ],
+ "prompt": "{} has white feathers"
+ },
+ {
+ "index": 6,
+ "image_id": 2613,
+ "entity": "bird",
+ "caption": "bird has grey leg",
+ "question": [
+ "is there bird ?"
+ ],
+ "prompt": "{} has grey leg"
+ },
+ {
+ "index": 7,
+ "image_id": 2613,
+ "entity": "bird",
+ "caption": "bird stands on one leg",
+ "question": [
+ "is there bird ?",
+ "is there one leg ?"
+ ],
+ "prompt": "{} stands on one leg"
+ },
+ {
+ "index": 8,
+ "image_id": 2619,
+ "entity": "bird",
+ "caption": "the eye of the bird is black",
+ "question": [
+ "is there the eye ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the eye of the {} is black"
+ },
+ {
+ "index": 9,
+ "image_id": 2619,
+ "entity": "bird",
+ "caption": "the bird feet is black",
+ "question": [
+ "are there the bird feet ?"
+ ],
+ "prompt": "the {} feet is black"
+ },
+ {
+ "index": 10,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "The bird is eating food out of the person's hand",
+ "question": [
+ "is there the bird ?",
+ "is there food ?",
+ "is there the person's hand ?"
+ ],
+ "prompt": "The {} is eating food out of the person's hand"
+ },
+ {
+ "index": 11,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "The bird is eating food",
+ "question": [
+ "is there the bird ?",
+ "is there food ?"
+ ],
+ "prompt": "The {} is eating food"
+ },
+ {
+ "index": 12,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "A bird with red feathers is eating food",
+ "question": [
+ "is there a bird ?",
+ "are there red feathers ?",
+ "is there food ?"
+ ],
+ "prompt": "A {} with red feathers is eating food"
+ },
+ {
+ "index": 13,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "The red feather bird is eating food out of a person's hand",
+ "question": [
+ "is there the red feather bird ?",
+ "is there food ?",
+ "is there a person's hand ?"
+ ],
+ "prompt": "The red feather {} is eating food out of a person's hand"
+ },
+ {
+ "index": 14,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "The bird is eating an apples from the person's hand",
+ "question": [
+ "is there the bird ?",
+ "are there an apples ?",
+ "is there the person's hand ?"
+ ],
+ "prompt": "The {} is eating an apples from the person's hand"
+ },
+ {
+ "index": 15,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "The red-feathered bird is eating an apples from the person's hand",
+ "question": [
+ "is there the red-feathered bird ?",
+ "are there an apples ?",
+ "is there the person's hand ?"
+ ],
+ "prompt": "The red-feathered {} is eating an apples from the person's hand"
+ },
+ {
+ "index": 16,
+ "image_id": 2414024,
+ "entity": "bird",
+ "caption": "little bird with chest puffed out",
+ "question": [
+ "is there little bird ?",
+ "is there chest ?"
+ ],
+ "prompt": "little {} with chest puffed out"
+ },
+ {
+ "index": 17,
+ "image_id": 2412521,
+ "entity": "bird",
+ "caption": "bird has red patch",
+ "question": [
+ "is there bird ?",
+ "is there red patch ?"
+ ],
+ "prompt": "{} has red patch"
+ },
+ {
+ "index": 18,
+ "image_id": 2412521,
+ "entity": "bird",
+ "caption": "wood is under bird",
+ "question": [
+ "is there wood ?",
+ "is there bird ?"
+ ],
+ "prompt": "wood is under {}"
+ },
+ {
+ "index": 19,
+ "image_id": 2412521,
+ "entity": "bird",
+ "caption": "black bird has it's mouth open",
+ "question": [
+ "is there black bird ?"
+ ],
+ "prompt": "black {} has it's mouth open"
+ },
+ {
+ "index": 20,
+ "image_id": 2412521,
+ "entity": "bird",
+ "caption": "bird perched on log",
+ "question": [
+ "is there bird ?",
+ "is there log ?"
+ ],
+ "prompt": "{} perched on log"
+ },
+ {
+ "index": 21,
+ "image_id": 2412521,
+ "entity": "bird",
+ "caption": "black bird leg slanted from body",
+ "question": [
+ "is there black bird leg ?",
+ "is there body ?"
+ ],
+ "prompt": "black {} leg slanted from body"
+ },
+ {
+ "index": 22,
+ "image_id": 2412061,
+ "entity": "bird",
+ "caption": "Black bird beak",
+ "question": [
+ "is there black bird beak ?"
+ ],
+ "prompt": "Black {} beak"
+ },
+ {
+ "index": 23,
+ "image_id": 2412061,
+ "entity": "bird",
+ "caption": "Black-feathered bird looks up to the sky",
+ "question": [
+ "is there black-feathered bird ?",
+ "is there the sky ?"
+ ],
+ "prompt": "Black-feathered {} looks up to the sky"
+ },
+ {
+ "index": 24,
+ "image_id": 2409570,
+ "entity": "bird",
+ "caption": "the bird has two feet",
+ "question": [
+ "is there the bird ?",
+ "are there two feet ?"
+ ],
+ "prompt": "the {} has two feet"
+ },
+ {
+ "index": 25,
+ "image_id": 2409570,
+ "entity": "bird",
+ "caption": "the bird is biting its tail",
+ "question": [
+ "is there the bird ?",
+ "is there its tail ?"
+ ],
+ "prompt": "the {} is biting its tail"
+ },
+ {
+ "index": 26,
+ "image_id": 2409570,
+ "entity": "bird",
+ "caption": "the bird has wings",
+ "question": [
+ "is there the bird ?",
+ "are there wings ?"
+ ],
+ "prompt": "the {} has wings"
+ },
+ {
+ "index": 27,
+ "image_id": 2409570,
+ "entity": "bird",
+ "caption": "White bird with black tail feathers standing on the sand",
+ "question": [
+ "is there white bird ?",
+ "are there black tail feathers ?",
+ "is there the sand ?"
+ ],
+ "prompt": "White {} with black tail feathers standing on the sand"
+ },
+ {
+ "index": 28,
+ "image_id": 2409306,
+ "entity": "bird",
+ "caption": "a fragment of ground that a young bird is standing on",
+ "question": [
+ "is there a fragment ?",
+ "is there ground ?",
+ "is there a young bird ?"
+ ],
+ "prompt": "a fragment of ground that a young {} is standing on"
+ },
+ {
+ "index": 29,
+ "image_id": 2409306,
+ "entity": "bird",
+ "caption": "head of bird is polka dotted",
+ "question": [
+ "is there head ?",
+ "is there bird ?"
+ ],
+ "prompt": "head of {} is polka dotted"
+ },
+ {
+ "index": 30,
+ "image_id": 2409306,
+ "entity": "bird",
+ "caption": "a baby bird stands on the ground",
+ "question": [
+ "is there a baby bird ?",
+ "is there the ground ?"
+ ],
+ "prompt": "a baby {} stands on the ground"
+ },
+ {
+ "index": 31,
+ "image_id": 2409215,
+ "entity": "bird",
+ "caption": "The bird's beak is orange. ",
+ "question": [
+ "is there the bird's beak ?"
+ ],
+ "prompt": "The {}'s beak is orange. "
+ },
+ {
+ "index": 32,
+ "image_id": 2409215,
+ "entity": "bird",
+ "caption": "The bird is flying above water. ",
+ "question": [
+ "is there the bird ?",
+ "is there water ?"
+ ],
+ "prompt": "The {} is flying above water. "
+ },
+ {
+ "index": 33,
+ "image_id": 2409215,
+ "entity": "bird",
+ "caption": "End of the bird's wing that is primarily black",
+ "question": [
+ "is there end ?",
+ "is there the bird's wing ?"
+ ],
+ "prompt": "End of the {}'s wing that is primarily black"
+ },
+ {
+ "index": 34,
+ "image_id": 2409045,
+ "entity": "bird",
+ "caption": "Neck of bird has S shape",
+ "question": [
+ "is there neck ?",
+ "is there bird ?",
+ "are there s ?",
+ "is there shape ?"
+ ],
+ "prompt": "Neck of {} has S shape"
+ },
+ {
+ "index": 35,
+ "image_id": 2409045,
+ "entity": "bird",
+ "caption": "Grey bird rising into the air",
+ "question": [
+ "is there grey bird ?",
+ "is there the air ?"
+ ],
+ "prompt": "Grey {} rising into the air"
+ },
+ {
+ "index": 36,
+ "image_id": 2409010,
+ "entity": "bird",
+ "caption": "a bird has a small creature in its mouth",
+ "question": [
+ "is there a bird ?",
+ "is there a small creature ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "a {} has a small creature in its mouth"
+ },
+ {
+ "index": 37,
+ "image_id": 2409010,
+ "entity": "bird",
+ "caption": "a bird walks along the wet sand",
+ "question": [
+ "is there a bird ?",
+ "is there the wet sand ?"
+ ],
+ "prompt": "a {} walks along the wet sand"
+ },
+ {
+ "index": 38,
+ "image_id": 2408592,
+ "entity": "bird",
+ "caption": "a bird stands at the edge of the water",
+ "question": [
+ "is there a bird ?",
+ "is there the edge ?",
+ "is there the water ?"
+ ],
+ "prompt": "a {} stands at the edge of the water"
+ },
+ {
+ "index": 39,
+ "image_id": 2408592,
+ "entity": "bird",
+ "caption": "The bird has webbed feet",
+ "question": [
+ "is there the bird ?"
+ ],
+ "prompt": "The {} has webbed feet"
+ },
+ {
+ "index": 40,
+ "image_id": 2408592,
+ "entity": "bird",
+ "caption": "The bird is standing in the dirt",
+ "question": [
+ "is there the bird ?",
+ "is there the dirt ?"
+ ],
+ "prompt": "The {} is standing in the dirt"
+ },
+ {
+ "index": 41,
+ "image_id": 2408592,
+ "entity": "bird",
+ "caption": "the ground the bird is standing on",
+ "question": [
+ "is there the ground ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the ground the {} is standing on"
+ },
+ {
+ "index": 42,
+ "image_id": 2408299,
+ "entity": "bird",
+ "caption": "the bird is hiding in a plant",
+ "question": [
+ "is there the bird ?",
+ "is there a plant ?"
+ ],
+ "prompt": "the {} is hiding in a plant"
+ },
+ {
+ "index": 43,
+ "image_id": 2408299,
+ "entity": "bird",
+ "caption": "the bird has a white belly",
+ "question": [
+ "is there the bird ?",
+ "is there a white belly ?"
+ ],
+ "prompt": "the {} has a white belly"
+ },
+ {
+ "index": 44,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "this is a birds eye",
+ "question": [
+ "are there a birds ?"
+ ],
+ "prompt": "this is a {}s eye"
+ },
+ {
+ "index": 45,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "this is a bird tail",
+ "question": [
+ "is there a bird tail ?"
+ ],
+ "prompt": "this is a {} tail"
+ },
+ {
+ "index": 46,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "the bird has sharp beak",
+ "question": [
+ "is there the bird ?",
+ "is there sharp beak ?"
+ ],
+ "prompt": "the {} has sharp beak"
+ },
+ {
+ "index": 47,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "the branches are beside the bird",
+ "question": [
+ "are there the branches ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the branches are beside the {}"
+ },
+ {
+ "index": 48,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "the bird has thin legs",
+ "question": [
+ "is there the bird ?",
+ "are there thin legs ?"
+ ],
+ "prompt": "the {} has thin legs"
+ },
+ {
+ "index": 49,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "the bird has black eyes",
+ "question": [
+ "is there the bird ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "the {} has black eyes"
+ },
+ {
+ "index": 50,
+ "image_id": 2407316,
+ "entity": "bird",
+ "caption": "the bird has black legs",
+ "question": [
+ "is there the bird ?",
+ "are there black legs ?"
+ ],
+ "prompt": "the {} has black legs"
+ },
+ {
+ "index": 51,
+ "image_id": 2407316,
+ "entity": "bird",
+ "caption": "the bird has three toes",
+ "question": [
+ "is there the bird ?",
+ "are there three toes ?"
+ ],
+ "prompt": "the {} has three toes"
+ },
+ {
+ "index": 52,
+ "image_id": 2406956,
+ "entity": "bird",
+ "caption": "black feathers on top of birds head",
+ "question": [
+ "are there black feathers ?",
+ "is there top ?",
+ "are there birds ?"
+ ],
+ "prompt": "black feathers on top of {}s head"
+ },
+ {
+ "index": 53,
+ "image_id": 2406956,
+ "entity": "bird",
+ "caption": "this is the bird's eye",
+ "question": [
+ "is there the bird's eye ?"
+ ],
+ "prompt": "this is the {}'s eye"
+ },
+ {
+ "index": 54,
+ "image_id": 2406956,
+ "entity": "bird",
+ "caption": "an object is in the bird's beak",
+ "question": [
+ "is there an object ?",
+ "is there the bird's beak ?"
+ ],
+ "prompt": "an object is in the {}'s beak"
+ },
+ {
+ "index": 55,
+ "image_id": 2406956,
+ "entity": "bird",
+ "caption": "the bird's eye is black in color",
+ "question": [
+ "is there the bird's eye ?",
+ "is there color ?"
+ ],
+ "prompt": "the {}'s eye is black in color"
+ },
+ {
+ "index": 56,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "bird has long beak",
+ "question": [
+ "is there bird ?",
+ "is there long beak ?"
+ ],
+ "prompt": "{} has long beak"
+ },
+ {
+ "index": 57,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "bird has pink feathers",
+ "question": [
+ "is there bird ?",
+ "are there pink feathers ?"
+ ],
+ "prompt": "{} has pink feathers"
+ },
+ {
+ "index": 58,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "bird has red eye",
+ "question": [
+ "is there bird ?",
+ "is there red eye ?"
+ ],
+ "prompt": "{} has red eye"
+ },
+ {
+ "index": 59,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "head of bird is featherless",
+ "question": [
+ "is there head ?",
+ "is there bird ?"
+ ],
+ "prompt": "head of {} is featherless"
+ },
+ {
+ "index": 60,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "bird has green tag on leg",
+ "question": [
+ "is there bird ?",
+ "is there green tag ?",
+ "is there leg ?"
+ ],
+ "prompt": "{} has green tag on leg"
+ },
+ {
+ "index": 61,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird is in the water",
+ "question": [
+ "is there the bird ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is in the water"
+ },
+ {
+ "index": 62,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird has a beak",
+ "question": [
+ "is there the bird ?",
+ "is there a beak ?"
+ ],
+ "prompt": "The {} has a beak"
+ },
+ {
+ "index": 63,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird's eye is open",
+ "question": [
+ "is there the bird's eye ?"
+ ],
+ "prompt": "The {}'s eye is open"
+ },
+ {
+ "index": 64,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird is wading in the water.",
+ "question": [
+ "is there the bird ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is wading in the water."
+ },
+ {
+ "index": 65,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird has a long beak.",
+ "question": [
+ "is there the bird ?",
+ "is there a long beak ?"
+ ],
+ "prompt": "The {} has a long beak."
+ },
+ {
+ "index": 66,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird has light and dark pink feathers.",
+ "question": [
+ "is there the bird ?",
+ "are there light and dark pink feathers ?"
+ ],
+ "prompt": "The {} has light and dark pink feathers."
+ },
+ {
+ "index": 67,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird has a green band around the leg.",
+ "question": [
+ "is there the bird ?",
+ "is there a green band ?",
+ "is there the leg ?"
+ ],
+ "prompt": "The {} has a green band around the leg."
+ },
+ {
+ "index": 68,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird has white neck feathers.",
+ "question": [
+ "is there the bird ?",
+ "are there white neck feathers ?"
+ ],
+ "prompt": "The {} has white neck feathers."
+ },
+ {
+ "index": 69,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "Large rocks are behind the birds.",
+ "question": [
+ "are there large rocks ?",
+ "are there the birds ?"
+ ],
+ "prompt": "Large rocks are behind the {}s."
+ },
+ {
+ "index": 70,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "Water is dripping from the bird's beak.",
+ "question": [
+ "is there water ?",
+ "is there the bird's beak ?"
+ ],
+ "prompt": "Water is dripping from the {}'s beak."
+ },
+ {
+ "index": 71,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird's eye is yellow and black.",
+ "question": [
+ "is there the bird's eye ?"
+ ],
+ "prompt": "The {}'s eye is yellow and black."
+ },
+ {
+ "index": 72,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird is on a long black metal piece",
+ "question": [
+ "is there the bird ?",
+ "is there a long black metal piece ?"
+ ],
+ "prompt": "the {} is on a long black metal piece"
+ },
+ {
+ "index": 73,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "glass sun catchers are hanging in front of the wooden bird",
+ "question": [
+ "are there glass sun catchers ?",
+ "is there front ?",
+ "is there the wooden bird ?"
+ ],
+ "prompt": "glass sun catchers are hanging in front of the wooden {}"
+ },
+ {
+ "index": 74,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird has a beak",
+ "question": [
+ "is there the bird ?",
+ "is there a beak ?"
+ ],
+ "prompt": "the {} has a beak"
+ },
+ {
+ "index": 75,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the window is reflecting the bird",
+ "question": [
+ "is there the window ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the window is reflecting the {}"
+ },
+ {
+ "index": 76,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird has 1 leg",
+ "question": [
+ "is there the bird ?",
+ "is there 1 leg ?"
+ ],
+ "prompt": "the {} has 1 leg"
+ },
+ {
+ "index": 77,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird has a long beak",
+ "question": [
+ "is there the bird ?",
+ "is there a long beak ?"
+ ],
+ "prompt": "the {} has a long beak"
+ },
+ {
+ "index": 78,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird's eye is black",
+ "question": [
+ "is there the bird's eye ?"
+ ],
+ "prompt": "the {}'s eye is black"
+ },
+ {
+ "index": 79,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird's leg is long",
+ "question": [
+ "is there the bird's leg ?"
+ ],
+ "prompt": "the {}'s leg is long"
+ },
+ {
+ "index": 80,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird is sitting on the window",
+ "question": [
+ "is there the bird ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is sitting on the window"
+ },
+ {
+ "index": 81,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "The bird has a long beak",
+ "question": [
+ "is there the bird ?",
+ "is there a long beak ?"
+ ],
+ "prompt": "The {} has a long beak"
+ },
+ {
+ "index": 82,
+ "image_id": 2403435,
+ "entity": "bird",
+ "caption": "person is feeding bird",
+ "question": [
+ "is there person ?",
+ "is there bird ?"
+ ],
+ "prompt": "person is feeding {}"
+ },
+ {
+ "index": 83,
+ "image_id": 2401304,
+ "entity": "bird",
+ "caption": "a bird is standing on weathered wood",
+ "question": [
+ "is there a bird ?",
+ "is there weathered wood ?"
+ ],
+ "prompt": "a {} is standing on weathered wood"
+ },
+ {
+ "index": 84,
+ "image_id": 2401079,
+ "entity": "bird",
+ "caption": "bird's beak is black and red",
+ "question": [
+ "is there bird's beak ?"
+ ],
+ "prompt": "{}'s beak is black and red"
+ },
+ {
+ "index": 85,
+ "image_id": 2401079,
+ "entity": "bird",
+ "caption": "the bird's feet are black",
+ "question": [
+ "are there the bird's feet ?"
+ ],
+ "prompt": "the {}'s feet are black"
+ },
+ {
+ "index": 86,
+ "image_id": 2400985,
+ "entity": "bird",
+ "caption": "the bird has a short black beak",
+ "question": [
+ "is there the bird ?",
+ "is there a short black beak ?"
+ ],
+ "prompt": "the {} has a short black beak"
+ },
+ {
+ "index": 87,
+ "image_id": 2400985,
+ "entity": "bird",
+ "caption": "the bird has sharp claws",
+ "question": [
+ "is there the bird ?",
+ "are there sharp claws ?"
+ ],
+ "prompt": "the {} has sharp claws"
+ },
+ {
+ "index": 88,
+ "image_id": 2400985,
+ "entity": "bird",
+ "caption": "A birds left side wing. ",
+ "question": [
+ "are there a birds ?",
+ "is there side wing ?"
+ ],
+ "prompt": "A {}s left side wing. "
+ },
+ {
+ "index": 89,
+ "image_id": 2400070,
+ "entity": "bird",
+ "caption": "The fully shown birds right foot",
+ "question": [
+ "are there the fully shown birds ?"
+ ],
+ "prompt": "The fully shown {}s right foot"
+ },
+ {
+ "index": 90,
+ "image_id": 2400070,
+ "entity": "bird",
+ "caption": "The fully shown birds left foot",
+ "question": [
+ "are there the fully shown birds ?",
+ "is there foot ?"
+ ],
+ "prompt": "The fully shown {}s left foot"
+ },
+ {
+ "index": 91,
+ "image_id": 2396390,
+ "entity": "bird",
+ "caption": "bird perched on wooden pole ",
+ "question": [
+ "is there bird ?",
+ "is there wooden pole ?"
+ ],
+ "prompt": "{} perched on wooden pole "
+ },
+ {
+ "index": 92,
+ "image_id": 2396390,
+ "entity": "bird",
+ "caption": "bird angled sideways with feet tightly gripping",
+ "question": [
+ "is there bird ?",
+ "are there feet ?"
+ ],
+ "prompt": "{} angled sideways with feet tightly gripping"
+ },
+ {
+ "index": 93,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird has yellow eyes.",
+ "question": [
+ "is there the bird ?",
+ "are there yellow eyes ?"
+ ],
+ "prompt": "The {} has yellow eyes."
+ },
+ {
+ "index": 94,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird stands on the tree.",
+ "question": [
+ "is there the bird ?",
+ "is there the tree ?"
+ ],
+ "prompt": "The {} stands on the tree."
+ },
+ {
+ "index": 95,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "this is a bird",
+ "question": [
+ "is there a bird ?"
+ ],
+ "prompt": "this is a {}"
+ },
+ {
+ "index": 96,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "the bird is on the tree",
+ "question": [
+ "is there the bird ?",
+ "is there the tree ?"
+ ],
+ "prompt": "the {} is on the tree"
+ },
+ {
+ "index": 97,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "the bird has yellow eyes",
+ "question": [
+ "is there the bird ?",
+ "are there yellow eyes ?"
+ ],
+ "prompt": "the {} has yellow eyes"
+ },
+ {
+ "index": 98,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "the bird's legs are long",
+ "question": [
+ "are there the bird's legs ?"
+ ],
+ "prompt": "the {}'s legs are long"
+ },
+ {
+ "index": 99,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird has a pointy beak.",
+ "question": [
+ "is there the bird ?",
+ "is there a pointy beak ?"
+ ],
+ "prompt": "The {} has a pointy beak."
+ },
+ {
+ "index": 100,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird has two legs.",
+ "question": [
+ "is there the bird ?",
+ "are there two legs ?"
+ ],
+ "prompt": "The {} has two legs."
+ },
+ {
+ "index": 101,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird has a yellow eye.",
+ "question": [
+ "is there the bird ?",
+ "is there a yellow eye ?"
+ ],
+ "prompt": "The {} has a yellow eye."
+ },
+ {
+ "index": 102,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird has a wing.",
+ "question": [
+ "is there the bird ?",
+ "is there a wing ?"
+ ],
+ "prompt": "The {} has a wing."
+ },
+ {
+ "index": 103,
+ "image_id": 2395577,
+ "entity": "bird",
+ "caption": "the bird has a wing",
+ "question": [
+ "is there the bird ?",
+ "is there a wing ?"
+ ],
+ "prompt": "the {} has a wing"
+ },
+ {
+ "index": 104,
+ "image_id": 2395577,
+ "entity": "bird",
+ "caption": "the bird has an eye",
+ "question": [
+ "is there the bird ?",
+ "is there an eye ?"
+ ],
+ "prompt": "the {} has an eye"
+ },
+ {
+ "index": 105,
+ "image_id": 2394957,
+ "entity": "bird",
+ "caption": "bird stand on rim of bowl",
+ "question": [
+ "is there bird ?",
+ "is there rim ?",
+ "is there bowl ?"
+ ],
+ "prompt": "{} stand on rim of bowl"
+ },
+ {
+ "index": 106,
+ "image_id": 2394957,
+ "entity": "bird",
+ "caption": "bird's head is black and blue in color",
+ "question": [
+ "is there bird's head ?",
+ "is there color ?"
+ ],
+ "prompt": "{}'s head is black and blue in color"
+ },
+ {
+ "index": 107,
+ "image_id": 2394957,
+ "entity": "bird",
+ "caption": "bird's eye is red",
+ "question": [
+ "is there bird's eye ?"
+ ],
+ "prompt": "{}'s eye is red"
+ },
+ {
+ "index": 108,
+ "image_id": 2393198,
+ "entity": "bird",
+ "caption": "the birds long beak",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s long beak"
+ },
+ {
+ "index": 109,
+ "image_id": 2393198,
+ "entity": "bird",
+ "caption": "the feathers on the birds chest",
+ "question": [
+ "are there the feathers ?",
+ "are there the birds ?"
+ ],
+ "prompt": "the feathers on the {}s chest"
+ },
+ {
+ "index": 110,
+ "image_id": 2393198,
+ "entity": "bird",
+ "caption": "the log the birds standing on",
+ "question": [
+ "is there the log ?",
+ "are there the birds ?"
+ ],
+ "prompt": "the log the {}s standing on"
+ },
+ {
+ "index": 111,
+ "image_id": 2392907,
+ "entity": "bird",
+ "caption": "bird has yellow legs",
+ "question": [
+ "is there bird ?",
+ "are there yellow legs ?"
+ ],
+ "prompt": "{} has yellow legs"
+ },
+ {
+ "index": 112,
+ "image_id": 2392907,
+ "entity": "bird",
+ "caption": "bird has large toe nails",
+ "question": [
+ "is there bird ?",
+ "are there large toe nails ?"
+ ],
+ "prompt": "{} has large toe nails"
+ },
+ {
+ "index": 113,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "The birds tail feathers.",
+ "question": [
+ "are there the birds tail feathers ?"
+ ],
+ "prompt": "The {}s tail feathers."
+ },
+ {
+ "index": 114,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "The bird is standing on a person's hand.",
+ "question": [
+ "is there the bird ?",
+ "is there a person's hand ?"
+ ],
+ "prompt": "The {} is standing on a person's hand."
+ },
+ {
+ "index": 115,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "The bird has grey feathers.",
+ "question": [
+ "is there the bird ?",
+ "are there grey feathers ?"
+ ],
+ "prompt": "The {} has grey feathers."
+ },
+ {
+ "index": 116,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "The bird has a black beak.",
+ "question": [
+ "is there the bird ?",
+ "is there a black beak ?"
+ ],
+ "prompt": "The {} has a black beak."
+ },
+ {
+ "index": 117,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "the bird has a black beak",
+ "question": [
+ "is there the bird ?",
+ "is there a black beak ?"
+ ],
+ "prompt": "the {} has a black beak"
+ },
+ {
+ "index": 118,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "the bird has black legs and claws",
+ "question": [
+ "is there the bird ?",
+ "are there black legs ?",
+ "are there claws ?"
+ ],
+ "prompt": "the {} has black legs and claws"
+ },
+ {
+ "index": 119,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "the bird's head is white and gray",
+ "question": [
+ "is there the bird's head ?"
+ ],
+ "prompt": "the {}'s head is white and gray"
+ },
+ {
+ "index": 120,
+ "image_id": 2391103,
+ "entity": "bird",
+ "caption": "Top of bird's head is jet black",
+ "question": [
+ "is there top ?",
+ "is there bird's head ?",
+ "is there jet black ?"
+ ],
+ "prompt": "Top of {}'s head is jet black"
+ },
+ {
+ "index": 121,
+ "image_id": 2390453,
+ "entity": "bird",
+ "caption": "the bird has eye",
+ "question": [
+ "is there the bird ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {} has eye"
+ },
+ {
+ "index": 122,
+ "image_id": 2389247,
+ "entity": "bird",
+ "caption": "a birds head",
+ "question": [
+ "are there a birds ?"
+ ],
+ "prompt": "a {}s head"
+ },
+ {
+ "index": 123,
+ "image_id": 2389247,
+ "entity": "bird",
+ "caption": "The birds beak.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s beak."
+ },
+ {
+ "index": 124,
+ "image_id": 2388774,
+ "entity": "bird",
+ "caption": "the bird is in the car ",
+ "question": [
+ "is there the bird ?",
+ "is there the car ?"
+ ],
+ "prompt": "the {} is in the car "
+ },
+ {
+ "index": 125,
+ "image_id": 2388774,
+ "entity": "bird",
+ "caption": "The bird has small black feathers ",
+ "question": [
+ "is there the bird ?",
+ "are there small black feathers ?"
+ ],
+ "prompt": "The {} has small black feathers "
+ },
+ {
+ "index": 126,
+ "image_id": 2387336,
+ "entity": "bird",
+ "caption": "part of branch birds are sitting on",
+ "question": [
+ "is there part ?",
+ "are there branch birds ?"
+ ],
+ "prompt": "part of branch {}s are sitting on"
+ },
+ {
+ "index": 127,
+ "image_id": 2385839,
+ "entity": "bird",
+ "caption": "the bird has black and white feathers",
+ "question": [
+ "is there the bird ?",
+ "are there black and white feathers ?"
+ ],
+ "prompt": "the {} has black and white feathers"
+ },
+ {
+ "index": 128,
+ "image_id": 2384739,
+ "entity": "bird",
+ "caption": "bird's legs are curled",
+ "question": [
+ "are there bird's legs ?"
+ ],
+ "prompt": "{}'s legs are curled"
+ },
+ {
+ "index": 129,
+ "image_id": 2384739,
+ "entity": "bird",
+ "caption": "a bird is lying on the pavement",
+ "question": [
+ "is there a bird ?",
+ "is there the pavement ?"
+ ],
+ "prompt": "a {} is lying on the pavement"
+ },
+ {
+ "index": 130,
+ "image_id": 2384739,
+ "entity": "bird",
+ "caption": "the bird's head is upside down",
+ "question": [
+ "is there the bird's head ?"
+ ],
+ "prompt": "the {}'s head is upside down"
+ },
+ {
+ "index": 131,
+ "image_id": 2384739,
+ "entity": "bird",
+ "caption": "the black cat is lying next to the bird",
+ "question": [
+ "is there the black cat ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the black cat is lying next to the {}"
+ },
+ {
+ "index": 132,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "This bird has a red beak.",
+ "question": [
+ "is there this bird ?",
+ "is there a red beak ?"
+ ],
+ "prompt": "This {} has a red beak."
+ },
+ {
+ "index": 133,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird is standing on a sandy beach.",
+ "question": [
+ "is there the bird ?",
+ "is there a sandy beach ?"
+ ],
+ "prompt": "The {} is standing on a sandy beach."
+ },
+ {
+ "index": 134,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "This bird has black eyes.",
+ "question": [
+ "is there this bird ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "This {} has black eyes."
+ },
+ {
+ "index": 135,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird has a white belly.",
+ "question": [
+ "is there the bird ?",
+ "is there a white belly ?"
+ ],
+ "prompt": "The {} has a white belly."
+ },
+ {
+ "index": 136,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird has a white body.",
+ "question": [
+ "is there the bird ?",
+ "is there a white body ?"
+ ],
+ "prompt": "The {} has a white body."
+ },
+ {
+ "index": 137,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird has black and white tail feathers.",
+ "question": [
+ "is there the bird ?",
+ "are there black and white tail feathers ?"
+ ],
+ "prompt": "The {} has black and white tail feathers."
+ },
+ {
+ "index": 138,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird has orange legs.",
+ "question": [
+ "is there the bird ?",
+ "are there orange legs ?"
+ ],
+ "prompt": "The {} has orange legs."
+ },
+ {
+ "index": 139,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird has an orange beak.",
+ "question": [
+ "is there the bird ?",
+ "is there an orange beak ?"
+ ],
+ "prompt": "The {} has an orange beak."
+ },
+ {
+ "index": 140,
+ "image_id": 2382811,
+ "entity": "bird",
+ "caption": "The bird is above the water",
+ "question": [
+ "is there the bird ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is above the water"
+ },
+ {
+ "index": 141,
+ "image_id": 2382811,
+ "entity": "bird",
+ "caption": "body of seabird is white",
+ "question": [
+ "is there body ?",
+ "is there seabird ?"
+ ],
+ "prompt": "body of sea{} is white"
+ },
+ {
+ "index": 142,
+ "image_id": 2381448,
+ "entity": "bird",
+ "caption": "birds feet are visible",
+ "question": [
+ "are there birds ?",
+ "are there feet ?"
+ ],
+ "prompt": "{}s feet are visible"
+ },
+ {
+ "index": 143,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "the bird has a slender beak",
+ "question": [
+ "is there the bird ?",
+ "is there a slender beak ?"
+ ],
+ "prompt": "the {} has a slender beak"
+ },
+ {
+ "index": 144,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "the bird has stripes on his back",
+ "question": [
+ "is there the bird ?",
+ "are there stripes ?",
+ "is there his back ?"
+ ],
+ "prompt": "the {} has stripes on his back"
+ },
+ {
+ "index": 145,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "the birds beak is very long",
+ "question": [
+ "are there the birds beak ?"
+ ],
+ "prompt": "the {}s beak is very long"
+ },
+ {
+ "index": 146,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "The bird is standing on the branches of the tree.",
+ "question": [
+ "is there the bird ?",
+ "are there the branches ?",
+ "is there the tree ?"
+ ],
+ "prompt": "The {} is standing on the branches of the tree."
+ },
+ {
+ "index": 147,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "The bird has a long black beak.",
+ "question": [
+ "is there the bird ?",
+ "is there a long black beak ?"
+ ],
+ "prompt": "The {} has a long black beak."
+ },
+ {
+ "index": 148,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "The bird has long red legs.",
+ "question": [
+ "is there the bird ?",
+ "are there long red legs ?"
+ ],
+ "prompt": "The {} has long red legs."
+ },
+ {
+ "index": 149,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "the bird is red and beautiful",
+ "question": [
+ "is there the bird ?"
+ ],
+ "prompt": "the {} is red and beautiful"
+ },
+ {
+ "index": 150,
+ "image_id": 2380312,
+ "entity": "bird",
+ "caption": "the bird has a tail",
+ "question": [
+ "is there the bird ?",
+ "is there a tail ?"
+ ],
+ "prompt": "the {} has a tail"
+ },
+ {
+ "index": 151,
+ "image_id": 2380312,
+ "entity": "bird",
+ "caption": "the bird has a head",
+ "question": [
+ "is there the bird ?",
+ "is there a head ?"
+ ],
+ "prompt": "the {} has a head"
+ },
+ {
+ "index": 152,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "the bird has a blue head.",
+ "question": [
+ "is there the bird ?",
+ "is there a blue head ?"
+ ],
+ "prompt": "the {} has a blue head."
+ },
+ {
+ "index": 153,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "The bird has yellow and orange on it's chest.",
+ "question": [
+ "is there the bird ?",
+ "is there it's chest ?"
+ ],
+ "prompt": "The {} has yellow and orange on it's chest."
+ },
+ {
+ "index": 154,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "The bird has three toes.",
+ "question": [
+ "is there the bird ?",
+ "are there three toes ?"
+ ],
+ "prompt": "The {} has three toes."
+ },
+ {
+ "index": 155,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "bird's wings are green",
+ "question": [
+ "are there bird's wings ?"
+ ],
+ "prompt": "{}'s wings are green"
+ },
+ {
+ "index": 156,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "bird has blue head",
+ "question": [
+ "is there bird ?",
+ "is there blue head ?"
+ ],
+ "prompt": "{} has blue head"
+ },
+ {
+ "index": 157,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "bird has orange beak",
+ "question": [
+ "is there bird ?",
+ "is there orange beak ?"
+ ],
+ "prompt": "{} has orange beak"
+ },
+ {
+ "index": 158,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "bird has green body",
+ "question": [
+ "is there bird ?",
+ "is there green body ?"
+ ],
+ "prompt": "{} has green body"
+ },
+ {
+ "index": 159,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "bird has brown talons",
+ "question": [
+ "is there bird ?",
+ "are there brown talons ?"
+ ],
+ "prompt": "{} has brown talons"
+ },
+ {
+ "index": 160,
+ "image_id": 2378627,
+ "entity": "bird",
+ "caption": "A birds beak",
+ "question": [
+ "are there a birds ?"
+ ],
+ "prompt": "A {}s beak"
+ },
+ {
+ "index": 161,
+ "image_id": 2378627,
+ "entity": "bird",
+ "caption": "A birds wing",
+ "question": [
+ "are there a birds ?"
+ ],
+ "prompt": "A {}s wing"
+ },
+ {
+ "index": 162,
+ "image_id": 2377993,
+ "entity": "bird",
+ "caption": "The birds claws are black.",
+ "question": [
+ "are there the birds ?",
+ "are there claws ?"
+ ],
+ "prompt": "The {}s claws are black."
+ },
+ {
+ "index": 163,
+ "image_id": 2377993,
+ "entity": "bird",
+ "caption": "The birds eye is black.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s eye is black."
+ },
+ {
+ "index": 164,
+ "image_id": 2377993,
+ "entity": "bird",
+ "caption": "The birds beak is black.",
+ "question": [
+ "are there the birds beak ?"
+ ],
+ "prompt": "The {}s beak is black."
+ },
+ {
+ "index": 165,
+ "image_id": 2376795,
+ "entity": "bird",
+ "caption": "Pink felt on a bird",
+ "question": [
+ "is there a bird ?"
+ ],
+ "prompt": "Pink felt on a {}"
+ },
+ {
+ "index": 166,
+ "image_id": 2376795,
+ "entity": "bird",
+ "caption": "Pink felt on a white bird",
+ "question": [
+ "is there a white bird ?"
+ ],
+ "prompt": "Pink felt on a white {}"
+ },
+ {
+ "index": 167,
+ "image_id": 2376795,
+ "entity": "bird",
+ "caption": "A bird has pink felt on it",
+ "question": [
+ "is there a bird ?"
+ ],
+ "prompt": "A {} has pink felt on it"
+ },
+ {
+ "index": 168,
+ "image_id": 2376795,
+ "entity": "bird",
+ "caption": "bird head turned right",
+ "question": [
+ "is there bird head ?"
+ ],
+ "prompt": "{} head turned right"
+ },
+ {
+ "index": 169,
+ "image_id": 2376340,
+ "entity": "bird",
+ "caption": "the birds legs ",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s legs "
+ },
+ {
+ "index": 170,
+ "image_id": 2376340,
+ "entity": "bird",
+ "caption": "The bird has long legs. ",
+ "question": [
+ "is there the bird ?",
+ "are there long legs ?"
+ ],
+ "prompt": "The {} has long legs. "
+ },
+ {
+ "index": 171,
+ "image_id": 2376224,
+ "entity": "bird",
+ "caption": "The bird's eyes are open",
+ "question": [
+ "are there the bird's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open"
+ },
+ {
+ "index": 172,
+ "image_id": 2376224,
+ "entity": "bird",
+ "caption": "The bird has thin legs",
+ "question": [
+ "is there the bird ?",
+ "are there thin legs ?"
+ ],
+ "prompt": "The {} has thin legs"
+ },
+ {
+ "index": 173,
+ "image_id": 2375434,
+ "entity": "bird",
+ "caption": "The bird is holding a stick in its mouth",
+ "question": [
+ "is there the bird ?",
+ "is there a stick ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "The {} is holding a stick in its mouth"
+ },
+ {
+ "index": 174,
+ "image_id": 2375434,
+ "entity": "bird",
+ "caption": "birds flying in the sky",
+ "question": [
+ "are there birds ?",
+ "is there the sky ?"
+ ],
+ "prompt": "{}s flying in the sky"
+ },
+ {
+ "index": 175,
+ "image_id": 2375434,
+ "entity": "bird",
+ "caption": "birds flapping their wings",
+ "question": [
+ "are there birds ?",
+ "are there their wings ?"
+ ],
+ "prompt": "{}s flapping their wings"
+ },
+ {
+ "index": 176,
+ "image_id": 2375434,
+ "entity": "bird",
+ "caption": "four birds flapping their wings",
+ "question": [
+ "are there four birds ?",
+ "are there their wings ?"
+ ],
+ "prompt": "four {}s flapping their wings"
+ },
+ {
+ "index": 177,
+ "image_id": 2375434,
+ "entity": "bird",
+ "caption": "a bird with its wings spread to full length",
+ "question": [
+ "is there a bird ?",
+ "are there its wings ?",
+ "is there full length ?"
+ ],
+ "prompt": "a {} with its wings spread to full length"
+ },
+ {
+ "index": 178,
+ "image_id": 2372589,
+ "entity": "bird",
+ "caption": "belly of the bird is white",
+ "question": [
+ "is there belly ?",
+ "is there the bird ?"
+ ],
+ "prompt": "belly of the {} is white"
+ },
+ {
+ "index": 179,
+ "image_id": 2372589,
+ "entity": "bird",
+ "caption": "bird's feet are black",
+ "question": [
+ "are there bird's feet ?"
+ ],
+ "prompt": "{}'s feet are black"
+ },
+ {
+ "index": 180,
+ "image_id": 2372589,
+ "entity": "bird",
+ "caption": "bird's beak is black",
+ "question": [
+ "is there bird's beak ?"
+ ],
+ "prompt": "{}'s beak is black"
+ },
+ {
+ "index": 181,
+ "image_id": 2372267,
+ "entity": "bird",
+ "caption": "bird has green face",
+ "question": [
+ "is there bird ?",
+ "is there green face ?"
+ ],
+ "prompt": "{} has green face"
+ },
+ {
+ "index": 182,
+ "image_id": 2372267,
+ "entity": "bird",
+ "caption": "bird has white beak",
+ "question": [
+ "is there bird ?",
+ "is there white beak ?"
+ ],
+ "prompt": "{} has white beak"
+ },
+ {
+ "index": 183,
+ "image_id": 2371979,
+ "entity": "bird",
+ "caption": "bird's head is black",
+ "question": [
+ "is there bird's head ?"
+ ],
+ "prompt": "{}'s head is black"
+ },
+ {
+ "index": 184,
+ "image_id": 2371979,
+ "entity": "bird",
+ "caption": "bird's wing is black and red",
+ "question": [
+ "is there bird's wing ?"
+ ],
+ "prompt": "{}'s wing is black and red"
+ },
+ {
+ "index": 185,
+ "image_id": 2371266,
+ "entity": "bird",
+ "caption": "birds beak that is two toned",
+ "question": [
+ "are there birds ?"
+ ],
+ "prompt": "{}s beak that is two toned"
+ },
+ {
+ "index": 186,
+ "image_id": 2370174,
+ "entity": "bird",
+ "caption": "water is behind the bird",
+ "question": [
+ "is there water ?",
+ "is there the bird ?"
+ ],
+ "prompt": "water is behind the {}"
+ },
+ {
+ "index": 187,
+ "image_id": 2370174,
+ "entity": "bird",
+ "caption": "The bird has black and white feathers",
+ "question": [
+ "is there the bird ?",
+ "are there black and white feathers ?"
+ ],
+ "prompt": "The {} has black and white feathers"
+ },
+ {
+ "index": 188,
+ "image_id": 2366794,
+ "entity": "bird",
+ "caption": "the bird's leg is skinny",
+ "question": [
+ "is there the bird's leg ?"
+ ],
+ "prompt": "the {}'s leg is skinny"
+ },
+ {
+ "index": 189,
+ "image_id": 2366794,
+ "entity": "bird",
+ "caption": "the bird's tail is black ",
+ "question": [
+ "is there the bird's tail ?"
+ ],
+ "prompt": "the {}'s tail is black "
+ },
+ {
+ "index": 190,
+ "image_id": 2366794,
+ "entity": "bird",
+ "caption": "teh bird's beak is smll",
+ "question": [
+ "is there teh bird's beak ?",
+ "is there smll ?"
+ ],
+ "prompt": "teh {}'s beak is smll"
+ },
+ {
+ "index": 191,
+ "image_id": 2366794,
+ "entity": "bird",
+ "caption": "the bird is on the beach ",
+ "question": [
+ "is there the bird ?",
+ "is there the beach ?"
+ ],
+ "prompt": "the {} is on the beach "
+ },
+ {
+ "index": 192,
+ "image_id": 2366548,
+ "entity": "bird",
+ "caption": "the birds have long legs",
+ "question": [
+ "are there the birds ?",
+ "are there long legs ?"
+ ],
+ "prompt": "the {}s have long legs"
+ },
+ {
+ "index": 193,
+ "image_id": 2366548,
+ "entity": "bird",
+ "caption": "tall grass is behind the bird",
+ "question": [
+ "is there tall grass ?",
+ "is there the bird ?"
+ ],
+ "prompt": "tall grass is behind the {}"
+ },
+ {
+ "index": 194,
+ "image_id": 2366548,
+ "entity": "bird",
+ "caption": "the bird closest to us has a few black feathers",
+ "question": [
+ "is there the bird ?",
+ "are there a few black feathers ?"
+ ],
+ "prompt": "the {} closest to us has a few black feathers"
+ },
+ {
+ "index": 195,
+ "image_id": 2365606,
+ "entity": "bird",
+ "caption": "This is a bird",
+ "question": [
+ "is there a bird ?"
+ ],
+ "prompt": "This is a {}"
+ },
+ {
+ "index": 196,
+ "image_id": 2364373,
+ "entity": "bird",
+ "caption": "The bird has brown legs.",
+ "question": [
+ "is there the bird ?",
+ "are there brown legs ?"
+ ],
+ "prompt": "The {} has brown legs."
+ },
+ {
+ "index": 197,
+ "image_id": 2363673,
+ "entity": "bird",
+ "caption": "A white and grey bird with its head turned to the left. ",
+ "question": [
+ "is there a white and grey bird ?",
+ "is there its head ?",
+ "is there the left ?"
+ ],
+ "prompt": "A white and grey {} with its head turned to the left. "
+ },
+ {
+ "index": 198,
+ "image_id": 2362480,
+ "entity": "bird",
+ "caption": "this bird has skinny legs",
+ "question": [
+ "is there this bird ?",
+ "are there skinny legs ?"
+ ],
+ "prompt": "this {} has skinny legs"
+ },
+ {
+ "index": 199,
+ "image_id": 2362036,
+ "entity": "bird",
+ "caption": "it is the eye of the bird",
+ "question": [
+ "is there the eye ?",
+ "is there the bird ?"
+ ],
+ "prompt": "it is the eye of the {}"
+ },
+ {
+ "index": 200,
+ "image_id": 2362036,
+ "entity": "bird",
+ "caption": "the birds left side of the wing",
+ "question": [
+ "are there the birds ?",
+ "is there side ?",
+ "is there the wing ?"
+ ],
+ "prompt": "the {}s left side of the wing"
+ },
+ {
+ "index": 201,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's feather are shiny.",
+ "question": [
+ "is there the bird's feather ?"
+ ],
+ "prompt": "The {}'s feather are shiny."
+ },
+ {
+ "index": 202,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's feathers are glossy.",
+ "question": [
+ "are there the bird's feathers ?"
+ ],
+ "prompt": "The {}'s feathers are glossy."
+ },
+ {
+ "index": 203,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's feathers are black.",
+ "question": [
+ "are there the bird's feathers ?"
+ ],
+ "prompt": "The {}'s feathers are black."
+ },
+ {
+ "index": 204,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's beak is black.",
+ "question": [
+ "is there the bird's beak ?"
+ ],
+ "prompt": "The {}'s beak is black."
+ },
+ {
+ "index": 205,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's beak is open.",
+ "question": [
+ "is there the bird's beak ?"
+ ],
+ "prompt": "The {}'s beak is open."
+ },
+ {
+ "index": 206,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's talons are gripping a rock.",
+ "question": [
+ "are there the bird's talons ?",
+ "is there a rock ?"
+ ],
+ "prompt": "The {}'s talons are gripping a rock."
+ },
+ {
+ "index": 207,
+ "image_id": 2361417,
+ "entity": "bird",
+ "caption": "Blue bird's feet wrapped about branch",
+ "question": [
+ "are there blue bird's feet ?",
+ "is there branch ?"
+ ],
+ "prompt": "Blue {}'s feet wrapped about branch"
+ },
+ {
+ "index": 208,
+ "image_id": 2360048,
+ "entity": "bird",
+ "caption": "The bird is standing on a multi level white surface.",
+ "question": [
+ "is there the bird ?",
+ "is there a multi level white surface ?"
+ ],
+ "prompt": "The {} is standing on a multi level white surface."
+ },
+ {
+ "index": 209,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "the birds feet ",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s feet "
+ },
+ {
+ "index": 210,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "birds nail ",
+ "question": [
+ "are there birds ?"
+ ],
+ "prompt": "{}s nail "
+ },
+ {
+ "index": 211,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "the birds eye ",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s eye "
+ },
+ {
+ "index": 212,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "the birds tail ",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s tail "
+ },
+ {
+ "index": 213,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "the birds beak",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s beak"
+ },
+ {
+ "index": 214,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "black bird beak",
+ "question": [
+ "is there black bird beak ?"
+ ],
+ "prompt": "black {} beak"
+ },
+ {
+ "index": 215,
+ "image_id": 2359461,
+ "entity": "bird",
+ "caption": "Caterpillar in the birds beak.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "Caterpillar in the {}s beak."
+ },
+ {
+ "index": 216,
+ "image_id": 2359036,
+ "entity": "bird",
+ "caption": "Back of bird's neck is green.",
+ "question": [
+ "is there bird's neck ?"
+ ],
+ "prompt": "Back of {}'s neck is green."
+ },
+ {
+ "index": 217,
+ "image_id": 2359036,
+ "entity": "bird",
+ "caption": "yellow and orange feathers for birds chest",
+ "question": [
+ "are there yellow and orange feathers ?",
+ "are there birds ?"
+ ],
+ "prompt": "yellow and orange feathers for {}s chest"
+ },
+ {
+ "index": 218,
+ "image_id": 2359036,
+ "entity": "bird",
+ "caption": "blue with black accent feathers on birds head",
+ "question": [
+ "are there black accent feathers ?",
+ "are there birds ?"
+ ],
+ "prompt": "blue with black accent feathers on {}s head"
+ },
+ {
+ "index": 219,
+ "image_id": 2358738,
+ "entity": "bird",
+ "caption": "the bird has a brown spot on its head",
+ "question": [
+ "is there the bird ?",
+ "is there a brown spot ?",
+ "is there its head ?"
+ ],
+ "prompt": "the {} has a brown spot on its head"
+ },
+ {
+ "index": 220,
+ "image_id": 2358738,
+ "entity": "bird",
+ "caption": "the birds wings are brown with a few white spots",
+ "question": [
+ "are there the birds wings ?",
+ "are there a few white spots ?"
+ ],
+ "prompt": "the {}s wings are brown with a few white spots"
+ },
+ {
+ "index": 221,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "bird with wings spread",
+ "question": [
+ "is there bird ?",
+ "are there wings ?"
+ ],
+ "prompt": "{} with wings spread"
+ },
+ {
+ "index": 222,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "nice bird with wings spread",
+ "question": [
+ "is there nice bird ?",
+ "are there wings ?"
+ ],
+ "prompt": "nice {} with wings spread"
+ },
+ {
+ "index": 223,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "healthy bird with wings spread",
+ "question": [
+ "is there healthy bird ?",
+ "are there wings ?"
+ ],
+ "prompt": "healthy {} with wings spread"
+ },
+ {
+ "index": 224,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "beautiful bird with wings spread",
+ "question": [
+ "is there beautiful bird ?",
+ "are there wings ?"
+ ],
+ "prompt": "beautiful {} with wings spread"
+ },
+ {
+ "index": 225,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "bird with pretty wings spread",
+ "question": [
+ "is there bird ?",
+ "are there pretty wings ?"
+ ],
+ "prompt": "{} with pretty wings spread"
+ },
+ {
+ "index": 226,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "bird with colorful wings spread",
+ "question": [
+ "is there bird ?",
+ "are there colorful wings ?"
+ ],
+ "prompt": "{} with colorful wings spread"
+ },
+ {
+ "index": 227,
+ "image_id": 2357787,
+ "entity": "bird",
+ "caption": "The bird has gray feathers",
+ "question": [
+ "is there the bird ?",
+ "are there gray feathers ?"
+ ],
+ "prompt": "The {} has gray feathers"
+ },
+ {
+ "index": 228,
+ "image_id": 2356534,
+ "entity": "bird",
+ "caption": "dead insect in birds beak",
+ "question": [
+ "is there dead insect ?",
+ "are there birds ?"
+ ],
+ "prompt": "dead insect in {}s beak"
+ },
+ {
+ "index": 229,
+ "image_id": 2356534,
+ "entity": "bird",
+ "caption": "The bird has brown feathers",
+ "question": [
+ "is there the bird ?",
+ "are there brown feathers ?"
+ ],
+ "prompt": "The {} has brown feathers"
+ },
+ {
+ "index": 230,
+ "image_id": 2356534,
+ "entity": "bird",
+ "caption": "The bird is on the ground",
+ "question": [
+ "is there the bird ?",
+ "is there the ground ?"
+ ],
+ "prompt": "The {} is on the ground"
+ },
+ {
+ "index": 231,
+ "image_id": 2355976,
+ "entity": "bird",
+ "caption": "A bird is next to a zebra",
+ "question": [
+ "is there a bird ?",
+ "is there a zebra ?"
+ ],
+ "prompt": "A {} is next to a zebra"
+ },
+ {
+ "index": 232,
+ "image_id": 2355976,
+ "entity": "bird",
+ "caption": "The bird has black feathers",
+ "question": [
+ "is there the bird ?",
+ "are there black feathers ?"
+ ],
+ "prompt": "The {} has black feathers"
+ },
+ {
+ "index": 233,
+ "image_id": 2355730,
+ "entity": "bird",
+ "caption": "bird has grey feathers",
+ "question": [
+ "is there bird ?",
+ "are there grey feathers ?"
+ ],
+ "prompt": "{} has grey feathers"
+ },
+ {
+ "index": 234,
+ "image_id": 2355730,
+ "entity": "bird",
+ "caption": "The bird has claws",
+ "question": [
+ "is there the bird ?",
+ "are there claws ?"
+ ],
+ "prompt": "The {} has claws"
+ },
+ {
+ "index": 235,
+ "image_id": 2355730,
+ "entity": "bird",
+ "caption": "Grey beak of a bird. ",
+ "question": [
+ "is there grey beak ?",
+ "is there a bird ?"
+ ],
+ "prompt": "Grey beak of a {}. "
+ },
+ {
+ "index": 236,
+ "image_id": 2354530,
+ "entity": "bird",
+ "caption": "cement area where a bird stands",
+ "question": [
+ "is there cement area ?",
+ "is there a bird ?"
+ ],
+ "prompt": "cement area where a {} stands"
+ },
+ {
+ "index": 237,
+ "image_id": 2354530,
+ "entity": "bird",
+ "caption": "bird has black streak on head",
+ "question": [
+ "is there bird ?",
+ "is there black streak ?",
+ "is there head ?"
+ ],
+ "prompt": "{} has black streak on head"
+ },
+ {
+ "index": 238,
+ "image_id": 2354530,
+ "entity": "bird",
+ "caption": "bird has yellow eye",
+ "question": [
+ "is there bird ?",
+ "is there yellow eye ?"
+ ],
+ "prompt": "{} has yellow eye"
+ },
+ {
+ "index": 239,
+ "image_id": 2353113,
+ "entity": "bird",
+ "caption": "bird has brown beak",
+ "question": [
+ "is there bird ?",
+ "is there brown beak ?"
+ ],
+ "prompt": "{} has brown beak"
+ },
+ {
+ "index": 240,
+ "image_id": 2353113,
+ "entity": "bird",
+ "caption": "bird is behind fence",
+ "question": [
+ "is there bird ?",
+ "is there fence ?"
+ ],
+ "prompt": "{} is behind fence"
+ },
+ {
+ "index": 241,
+ "image_id": 2353113,
+ "entity": "bird",
+ "caption": "bird is near water",
+ "question": [
+ "is there bird ?",
+ "is there water ?"
+ ],
+ "prompt": "{} is near water"
+ },
+ {
+ "index": 242,
+ "image_id": 2352371,
+ "entity": "bird",
+ "caption": "wood platform for bird to stand on",
+ "question": [
+ "is there wood platform ?",
+ "is there bird ?"
+ ],
+ "prompt": "wood platform for {} to stand on"
+ },
+ {
+ "index": 243,
+ "image_id": 2349694,
+ "entity": "bird",
+ "caption": "tail of bird is white",
+ "question": [
+ "is there tail ?",
+ "is there bird ?"
+ ],
+ "prompt": "tail of {} is white"
+ },
+ {
+ "index": 244,
+ "image_id": 2349587,
+ "entity": "bird",
+ "caption": "The bird is eating the branch.",
+ "question": [
+ "is there the bird ?",
+ "is there the branch ?"
+ ],
+ "prompt": "The {} is eating the branch."
+ },
+ {
+ "index": 245,
+ "image_id": 2349587,
+ "entity": "bird",
+ "caption": "The bird is holding the branch.",
+ "question": [
+ "is there the bird ?",
+ "is there the branch ?"
+ ],
+ "prompt": "The {} is holding the branch."
+ },
+ {
+ "index": 246,
+ "image_id": 2349248,
+ "entity": "bird",
+ "caption": "the food the bird is eating",
+ "question": [
+ "is there the food ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the food the {} is eating"
+ },
+ {
+ "index": 247,
+ "image_id": 2349109,
+ "entity": "bird",
+ "caption": "the branch the bird is biting",
+ "question": [
+ "is there the branch ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the branch the {} is biting"
+ },
+ {
+ "index": 248,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "A bird has an orange beak.",
+ "question": [
+ "is there a bird ?",
+ "is there an orange beak ?"
+ ],
+ "prompt": "A {} has an orange beak."
+ },
+ {
+ "index": 249,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "A birds claw is grasping a potato.",
+ "question": [
+ "is there a birds ?",
+ "is there a potato ?"
+ ],
+ "prompt": "A {}s claw is grasping a potato."
+ },
+ {
+ "index": 250,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "A bird is eating a potato.",
+ "question": [
+ "is there a bird ?",
+ "is there a potato ?"
+ ],
+ "prompt": "A {} is eating a potato."
+ },
+ {
+ "index": 251,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "A bird is on a tree branch.",
+ "question": [
+ "is there a bird ?",
+ "is there a tree branch ?"
+ ],
+ "prompt": "A {} is on a tree branch."
+ },
+ {
+ "index": 252,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "A tropical bird is on a tree branch.",
+ "question": [
+ "is there a tropical bird ?",
+ "is there a tree branch ?"
+ ],
+ "prompt": "A tropical {} is on a tree branch."
+ },
+ {
+ "index": 253,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "bird's wing is green",
+ "question": [
+ "is there bird's wing ?"
+ ],
+ "prompt": "{}'s wing is green"
+ },
+ {
+ "index": 254,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The peice of food in the birds mouth",
+ "question": [
+ "is there the peice ?",
+ "is there food ?",
+ "are there the birds ?"
+ ],
+ "prompt": "The peice of food in the {}s mouth"
+ },
+ {
+ "index": 255,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The birds red orange eye",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s red orange eye"
+ },
+ {
+ "index": 256,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The birds blue face",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s blue face"
+ },
+ {
+ "index": 257,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The birds foot on the fruit",
+ "question": [
+ "are there the birds ?",
+ "is there the fruit ?"
+ ],
+ "prompt": "The {}s foot on the fruit"
+ },
+ {
+ "index": 258,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The piece of fruit the bird is eating",
+ "question": [
+ "is there the piece ?",
+ "is there fruit ?",
+ "is there the bird ?"
+ ],
+ "prompt": "The piece of fruit the {} is eating"
+ },
+ {
+ "index": 259,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The branch the bird is sitting on",
+ "question": [
+ "is there the branch ?",
+ "is there the bird ?"
+ ],
+ "prompt": "The branch the {} is sitting on"
+ },
+ {
+ "index": 260,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "a bird has a claw",
+ "question": [
+ "is there a bird ?",
+ "is there a claw ?"
+ ],
+ "prompt": "a {} has a claw"
+ },
+ {
+ "index": 261,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "a bird has a claw holding onto a branch",
+ "question": [
+ "is there a bird ?",
+ "is there a claw ?",
+ "is there a branch ?"
+ ],
+ "prompt": "a {} has a claw holding onto a branch"
+ },
+ {
+ "index": 262,
+ "image_id": 2348795,
+ "entity": "bird",
+ "caption": "Black bird beak white around face. ",
+ "question": [
+ "is there black bird beak ?",
+ "is there face ?"
+ ],
+ "prompt": "Black {} beak white around face. "
+ },
+ {
+ "index": 263,
+ "image_id": 2348671,
+ "entity": "bird",
+ "caption": "that is the leg of the bird",
+ "question": [
+ "is there the leg ?",
+ "is there the bird ?"
+ ],
+ "prompt": "that is the leg of the {}"
+ },
+ {
+ "index": 264,
+ "image_id": 2348089,
+ "entity": "bird",
+ "caption": "a wood platform the bird is on ",
+ "question": [
+ "is there a wood platform ?",
+ "is there the bird ?"
+ ],
+ "prompt": "a wood platform the {} is on "
+ },
+ {
+ "index": 265,
+ "image_id": 2347493,
+ "entity": "bird",
+ "caption": "bird with its mouth open",
+ "question": [
+ "is there bird ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "{} with its mouth open"
+ },
+ {
+ "index": 266,
+ "image_id": 2347493,
+ "entity": "bird",
+ "caption": "The bird is on the water.",
+ "question": [
+ "is there the bird ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is on the water."
+ },
+ {
+ "index": 267,
+ "image_id": 2347493,
+ "entity": "bird",
+ "caption": "The birds beak has a sharp point.",
+ "question": [
+ "are there the birds beak ?",
+ "is there a sharp point ?"
+ ],
+ "prompt": "The {}s beak has a sharp point."
+ },
+ {
+ "index": 268,
+ "image_id": 2347493,
+ "entity": "bird",
+ "caption": "The birds feet are orange.",
+ "question": [
+ "are there the birds ?",
+ "are there feet ?"
+ ],
+ "prompt": "The {}s feet are orange."
+ },
+ {
+ "index": 269,
+ "image_id": 2345609,
+ "entity": "bird",
+ "caption": "the bird has very long legs",
+ "question": [
+ "is there the bird ?",
+ "are there very long legs ?"
+ ],
+ "prompt": "the {} has very long legs"
+ },
+ {
+ "index": 270,
+ "image_id": 2345609,
+ "entity": "bird",
+ "caption": "the bird has a yellow beak",
+ "question": [
+ "is there the bird ?",
+ "is there a yellow beak ?"
+ ],
+ "prompt": "the {} has a yellow beak"
+ },
+ {
+ "index": 271,
+ "image_id": 2344912,
+ "entity": "bird",
+ "caption": "grass that small bird is standing in",
+ "question": [
+ "is there grass ?",
+ "is there small bird ?"
+ ],
+ "prompt": "grass that small {} is standing in"
+ },
+ {
+ "index": 272,
+ "image_id": 2344341,
+ "entity": "bird",
+ "caption": "Feathers of the bird laid back",
+ "question": [
+ "are there feathers ?",
+ "is there the bird ?"
+ ],
+ "prompt": "Feathers of the {} laid back"
+ },
+ {
+ "index": 273,
+ "image_id": 2344328,
+ "entity": "bird",
+ "caption": "A birds head and neck.",
+ "question": [
+ "are there a birds ?",
+ "is there neck ?"
+ ],
+ "prompt": "A {}s head and neck."
+ },
+ {
+ "index": 274,
+ "image_id": 2344328,
+ "entity": "bird",
+ "caption": "bird has grey beak",
+ "question": [
+ "is there bird ?",
+ "is there grey beak ?"
+ ],
+ "prompt": "{} has grey beak"
+ },
+ {
+ "index": 275,
+ "image_id": 2344328,
+ "entity": "bird",
+ "caption": "bird has red eyes",
+ "question": [
+ "is there bird ?",
+ "are there red eyes ?"
+ ],
+ "prompt": "{} has red eyes"
+ },
+ {
+ "index": 276,
+ "image_id": 2344328,
+ "entity": "bird",
+ "caption": "bird has black head",
+ "question": [
+ "is there bird ?",
+ "is there black head ?"
+ ],
+ "prompt": "{} has black head"
+ },
+ {
+ "index": 277,
+ "image_id": 2344328,
+ "entity": "bird",
+ "caption": "bird has blue neck",
+ "question": [
+ "is there bird ?",
+ "is there blue neck ?"
+ ],
+ "prompt": "{} has blue neck"
+ },
+ {
+ "index": 278,
+ "image_id": 2341438,
+ "entity": "bird",
+ "caption": "head of bird is gray",
+ "question": [
+ "is there head ?",
+ "is there bird ?"
+ ],
+ "prompt": "head of {} is gray"
+ },
+ {
+ "index": 279,
+ "image_id": 2341438,
+ "entity": "bird",
+ "caption": "eye of bird is red",
+ "question": [
+ "is there eye ?",
+ "is there bird ?"
+ ],
+ "prompt": "eye of {} is red"
+ },
+ {
+ "index": 280,
+ "image_id": 2341058,
+ "entity": "bird",
+ "caption": "two birds standing on branches",
+ "question": [
+ "are there two birds ?",
+ "are there branches ?"
+ ],
+ "prompt": "two {}s standing on branches"
+ },
+ {
+ "index": 281,
+ "image_id": 2339258,
+ "entity": "bird",
+ "caption": "the all black beak on the birds face",
+ "question": [
+ "is there the all black beak ?",
+ "are there the birds ?"
+ ],
+ "prompt": "the all black beak on the {}s face"
+ },
+ {
+ "index": 282,
+ "image_id": 2339258,
+ "entity": "bird",
+ "caption": "the claw on the birds foot",
+ "question": [
+ "is there the claw ?",
+ "are there the birds ?"
+ ],
+ "prompt": "the claw on the {}s foot"
+ },
+ {
+ "index": 283,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "the bird is eating the fruit",
+ "question": [
+ "is there the bird ?",
+ "is there the fruit ?"
+ ],
+ "prompt": "the {} is eating the fruit"
+ },
+ {
+ "index": 284,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "A bird is eating some fruit",
+ "question": [
+ "is there a bird ?",
+ "is there some fruit ?"
+ ],
+ "prompt": "A {} is eating some fruit"
+ },
+ {
+ "index": 285,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "A bird is getting some food",
+ "question": [
+ "is there a bird ?",
+ "is there some food ?"
+ ],
+ "prompt": "A {} is getting some food"
+ },
+ {
+ "index": 286,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds eye is red and black.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s eye is red and black."
+ },
+ {
+ "index": 287,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds eye is round.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s eye is round."
+ },
+ {
+ "index": 288,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds eye is small.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s eye is small."
+ },
+ {
+ "index": 289,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds feathers are blue.",
+ "question": [
+ "are there the birds ?",
+ "are there feathers ?"
+ ],
+ "prompt": "The {}s feathers are blue."
+ },
+ {
+ "index": 290,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds feathers are red.",
+ "question": [
+ "are there the birds ?",
+ "are there feathers ?"
+ ],
+ "prompt": "The {}s feathers are red."
+ },
+ {
+ "index": 291,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds feathers are green.",
+ "question": [
+ "are there the birds ?",
+ "are there feathers ?"
+ ],
+ "prompt": "The {}s feathers are green."
+ },
+ {
+ "index": 292,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "the birds beak is orange",
+ "question": [
+ "are there the birds beak ?"
+ ],
+ "prompt": "the {}s beak is orange"
+ },
+ {
+ "index": 293,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "Blue and black bird standing on wood.",
+ "question": [
+ "is there blue and black bird ?",
+ "is there wood ?"
+ ],
+ "prompt": "Blue and black {} standing on wood."
+ },
+ {
+ "index": 294,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "this is a bird''s tail",
+ "question": [
+ "is there tail ?"
+ ],
+ "prompt": "this is a {}''s tail"
+ },
+ {
+ "index": 295,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "this is a bird''s beak",
+ "question": [
+ "is there a bird''s beak ?"
+ ],
+ "prompt": "this is a {}''s beak"
+ },
+ {
+ "index": 296,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "this is a bird''s head",
+ "question": [
+ "is there a bird''s head ?"
+ ],
+ "prompt": "this is a {}''s head"
+ },
+ {
+ "index": 297,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "this is a bird''s wing",
+ "question": [
+ "is there wing ?"
+ ],
+ "prompt": "this is a {}''s wing"
+ },
+ {
+ "index": 298,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "this is a bird''s eye",
+ "question": [
+ "is there eye ?"
+ ],
+ "prompt": "this is a {}''s eye"
+ },
+ {
+ "index": 299,
+ "image_id": 2338318,
+ "entity": "bird",
+ "caption": "bird is on brown branch",
+ "question": [
+ "is there bird ?",
+ "is there brown branch ?"
+ ],
+ "prompt": "{} is on brown branch"
+ },
+ {
+ "index": 300,
+ "image_id": 2336219,
+ "entity": "bird",
+ "caption": "bird has white eyes",
+ "question": [
+ "is there bird ?",
+ "are there white eyes ?"
+ ],
+ "prompt": "{} has white eyes"
+ },
+ {
+ "index": 301,
+ "image_id": 2335105,
+ "entity": "bird",
+ "caption": "the ear lobes on the bird are red",
+ "question": [
+ "are there the ear lobes ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the ear lobes on the {} are red"
+ },
+ {
+ "index": 302,
+ "image_id": 2332681,
+ "entity": "bird",
+ "caption": "the bird has tiny ears",
+ "question": [
+ "is there the bird ?",
+ "are there tiny ears ?"
+ ],
+ "prompt": "the {} has tiny ears"
+ },
+ {
+ "index": 303,
+ "image_id": 2331468,
+ "entity": "bird",
+ "caption": "the bird is in the water ",
+ "question": [
+ "is there the bird ?",
+ "is there the water ?"
+ ],
+ "prompt": "the {} is in the water "
+ },
+ {
+ "index": 304,
+ "image_id": 2331215,
+ "entity": "bird",
+ "caption": "the birds wings are up",
+ "question": [
+ "are there the birds ?",
+ "are there wings ?"
+ ],
+ "prompt": "the {}s wings are up"
+ },
+ {
+ "index": 305,
+ "image_id": 2331215,
+ "entity": "bird",
+ "caption": "A bird is afraid of the elephant",
+ "question": [
+ "is there a bird ?",
+ "is there the elephant ?"
+ ],
+ "prompt": "A {} is afraid of the elephant"
+ },
+ {
+ "index": 306,
+ "image_id": 2331215,
+ "entity": "bird",
+ "caption": "A bird has spread out its wings",
+ "question": [
+ "is there a bird ?",
+ "are there its wings ?"
+ ],
+ "prompt": "A {} has spread out its wings"
+ },
+ {
+ "index": 307,
+ "image_id": 2331215,
+ "entity": "bird",
+ "caption": "The bird has a long wingspan",
+ "question": [
+ "is there the bird ?",
+ "is there a long wingspan ?"
+ ],
+ "prompt": "The {} has a long wingspan"
+ },
+ {
+ "index": 308,
+ "image_id": 2330695,
+ "entity": "bird",
+ "caption": "bird has a black beak ",
+ "question": [
+ "is there bird ?",
+ "is there a black beak ?"
+ ],
+ "prompt": "{} has a black beak "
+ },
+ {
+ "index": 309,
+ "image_id": 2330695,
+ "entity": "bird",
+ "caption": "bird has gray feet",
+ "question": [
+ "is there bird ?",
+ "are there gray feet ?"
+ ],
+ "prompt": "{} has gray feet"
+ },
+ {
+ "index": 310,
+ "image_id": 2330307,
+ "entity": "bird",
+ "caption": "bird has beady eye",
+ "question": [
+ "is there bird ?",
+ "is there beady eye ?"
+ ],
+ "prompt": "{} has beady eye"
+ },
+ {
+ "index": 311,
+ "image_id": 2330307,
+ "entity": "bird",
+ "caption": "bird has black beak",
+ "question": [
+ "is there bird ?",
+ "is there black beak ?"
+ ],
+ "prompt": "{} has black beak"
+ },
+ {
+ "index": 312,
+ "image_id": 2330307,
+ "entity": "bird",
+ "caption": "bird has 2 feet",
+ "question": [
+ "is there bird ?",
+ "are there 2 feet ?"
+ ],
+ "prompt": "{} has 2 feet"
+ },
+ {
+ "index": 313,
+ "image_id": 2330080,
+ "entity": "bird",
+ "caption": "The bird is looking a yard gnome",
+ "question": [
+ "is there the bird ?",
+ "is there a yard gnome ?"
+ ],
+ "prompt": "The {} is looking a yard gnome"
+ },
+ {
+ "index": 314,
+ "image_id": 2330080,
+ "entity": "bird",
+ "caption": "The bird has a yellow beak",
+ "question": [
+ "is there the bird ?",
+ "is there a yellow beak ?"
+ ],
+ "prompt": "The {} has a yellow beak"
+ },
+ {
+ "index": 315,
+ "image_id": 2328246,
+ "entity": "bird",
+ "caption": "tree leaves behind the bird",
+ "question": [
+ "is there tree ?",
+ "is there the bird ?"
+ ],
+ "prompt": "tree leaves behind the {}"
+ },
+ {
+ "index": 316,
+ "image_id": 2326461,
+ "entity": "bird",
+ "caption": "white feathers on a birds head",
+ "question": [
+ "are there white feathers ?",
+ "are there a birds ?"
+ ],
+ "prompt": "white feathers on a {}s head"
+ },
+ {
+ "index": 317,
+ "image_id": 2326461,
+ "entity": "bird",
+ "caption": "The bird is on a handle",
+ "question": [
+ "is there the bird ?",
+ "is there a handle ?"
+ ],
+ "prompt": "The {} is on a handle"
+ },
+ {
+ "index": 318,
+ "image_id": 2326461,
+ "entity": "bird",
+ "caption": "Small black bird beak",
+ "question": [
+ "is there small black bird beak ?"
+ ],
+ "prompt": "Small black {} beak"
+ },
+ {
+ "index": 319,
+ "image_id": 2325550,
+ "entity": "bird",
+ "caption": "the bird is on a pole",
+ "question": [
+ "is there the bird ?",
+ "is there a pole ?"
+ ],
+ "prompt": "the {} is on a pole"
+ },
+ {
+ "index": 320,
+ "image_id": 2325550,
+ "entity": "bird",
+ "caption": "the bird has yellow feathers",
+ "question": [
+ "is there the bird ?",
+ "are there yellow feathers ?"
+ ],
+ "prompt": "the {} has yellow feathers"
+ },
+ {
+ "index": 321,
+ "image_id": 2325550,
+ "entity": "bird",
+ "caption": "the bird has yellow spiked hair",
+ "question": [
+ "is there the bird ?",
+ "is there yellow spiked hair ?"
+ ],
+ "prompt": "the {} has yellow spiked hair"
+ },
+ {
+ "index": 322,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has green breast",
+ "question": [
+ "is there bird ?",
+ "is there green breast ?"
+ ],
+ "prompt": "{} has green breast"
+ },
+ {
+ "index": 323,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has green tail",
+ "question": [
+ "is there bird ?",
+ "is there green tail ?"
+ ],
+ "prompt": "{} has green tail"
+ },
+ {
+ "index": 324,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has green head",
+ "question": [
+ "is there bird ?",
+ "is there green head ?"
+ ],
+ "prompt": "{} has green head"
+ },
+ {
+ "index": 325,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has orange talons",
+ "question": [
+ "is there bird ?",
+ "are there orange talons ?"
+ ],
+ "prompt": "{} has orange talons"
+ },
+ {
+ "index": 326,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has grey claws",
+ "question": [
+ "is there bird ?",
+ "are there grey claws ?"
+ ],
+ "prompt": "{} has grey claws"
+ },
+ {
+ "index": 327,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird stands on banana",
+ "question": [
+ "is there bird ?",
+ "is there banana ?"
+ ],
+ "prompt": "{} stands on banana"
+ },
+ {
+ "index": 328,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "Green bird is standing on banana.",
+ "question": [
+ "is there green bird ?",
+ "is there banana ?"
+ ],
+ "prompt": "Green {} is standing on banana."
+ },
+ {
+ "index": 329,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "Light is shining on bird.",
+ "question": [
+ "is there light ?",
+ "is there bird ?"
+ ],
+ "prompt": "Light is shining on {}."
+ },
+ {
+ "index": 330,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has orange feet",
+ "question": [
+ "is there bird ?",
+ "are there orange feet ?"
+ ],
+ "prompt": "{} has orange feet"
+ },
+ {
+ "index": 331,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has black nails",
+ "question": [
+ "is there bird ?",
+ "are there black nails ?"
+ ],
+ "prompt": "{} has black nails"
+ },
+ {
+ "index": 332,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird's eye is purple blue and black",
+ "question": [
+ "is there bird's eye ?"
+ ],
+ "prompt": "{}'s eye is purple blue and black"
+ },
+ {
+ "index": 333,
+ "image_id": 2323975,
+ "entity": "bird",
+ "caption": "Orange beak on a brown and white bird.",
+ "question": [
+ "is there orange beak ?",
+ "is there a brown and white bird ?"
+ ],
+ "prompt": "Orange beak on a brown and white {}."
+ },
+ {
+ "index": 334,
+ "image_id": 2323560,
+ "entity": "bird",
+ "caption": "bird perched on a scarred limb",
+ "question": [
+ "is there bird ?",
+ "is there a scarred limb ?"
+ ],
+ "prompt": "{} perched on a scarred limb"
+ },
+ {
+ "index": 335,
+ "image_id": 2322830,
+ "entity": "bird",
+ "caption": "bird is drinking water from wood bucket",
+ "question": [
+ "is there bird ?",
+ "is there water ?",
+ "is there wood bucket ?"
+ ],
+ "prompt": "{} is drinking water from wood bucket"
+ },
+ {
+ "index": 336,
+ "image_id": 2322624,
+ "entity": "bird",
+ "caption": "The birds beak has a point.",
+ "question": [
+ "are there the birds beak ?",
+ "is there a point ?"
+ ],
+ "prompt": "The {}s beak has a point."
+ },
+ {
+ "index": 337,
+ "image_id": 2322624,
+ "entity": "bird",
+ "caption": "The birds chest is white.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s chest is white."
+ },
+ {
+ "index": 338,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "orange bird with black and white wings perched",
+ "question": [
+ "are there black and white wings ?"
+ ],
+ "prompt": "orange {} with black and white wings perched"
+ },
+ {
+ "index": 339,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "bird's beak contains blood and other animal remains",
+ "question": [
+ "is there bird's beak ?",
+ "is there blood ?",
+ "is there other animal ?"
+ ],
+ "prompt": "{}'s beak contains blood and other animal remains"
+ },
+ {
+ "index": 340,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "bird pereched of grey rock",
+ "question": [
+ "is there grey rock ?"
+ ],
+ "prompt": "{} pereched of grey rock"
+ },
+ {
+ "index": 341,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "a large tree branch with a bird nested on it",
+ "question": [
+ "is there a large tree branch ?",
+ "is there a bird ?"
+ ],
+ "prompt": "a large tree branch with a {} nested on it"
+ },
+ {
+ "index": 342,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "a tree limb with a bird rested on it",
+ "question": [
+ "is there a tree limb ?",
+ "is there a bird ?"
+ ],
+ "prompt": "a tree limb with a {} rested on it"
+ },
+ {
+ "index": 343,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "bird has grey head",
+ "question": [
+ "is there bird ?",
+ "is there grey head ?"
+ ],
+ "prompt": "{} has grey head"
+ },
+ {
+ "index": 344,
+ "image_id": 2318439,
+ "entity": "bird",
+ "caption": "Baby bird is standing in ground.",
+ "question": [
+ "is there baby bird ?",
+ "is there ground ?"
+ ],
+ "prompt": "Baby {} is standing in ground."
+ },
+ {
+ "index": 345,
+ "image_id": 2318290,
+ "entity": "bird",
+ "caption": "section of brown tipped bird wing feather",
+ "question": [
+ "is there section ?",
+ "is there bird wing feather ?"
+ ],
+ "prompt": "section of brown tipped {} wing feather"
+ },
+ {
+ "index": 346,
+ "image_id": 2318104,
+ "entity": "bird",
+ "caption": "a bird that is standing outside",
+ "question": [
+ "is there a bird ?"
+ ],
+ "prompt": "a {} that is standing outside"
+ },
+ {
+ "index": 347,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird has long gray legs",
+ "question": [
+ "is there the bird ?",
+ "are there long gray legs ?"
+ ],
+ "prompt": "the {} has long gray legs"
+ },
+ {
+ "index": 348,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird has a small beady eye",
+ "question": [
+ "is there the bird ?",
+ "is there a small beady eye ?"
+ ],
+ "prompt": "the {} has a small beady eye"
+ },
+ {
+ "index": 349,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird has a big beak",
+ "question": [
+ "is there the bird ?",
+ "is there a big beak ?"
+ ],
+ "prompt": "the {} has a big beak"
+ },
+ {
+ "index": 350,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird has tons of feathers",
+ "question": [
+ "is there the bird ?",
+ "are there tons ?",
+ "are there feathers ?"
+ ],
+ "prompt": "the {} has tons of feathers"
+ },
+ {
+ "index": 351,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird has its mouth open",
+ "question": [
+ "is there the bird ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has its mouth open"
+ },
+ {
+ "index": 352,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird is standing in grass",
+ "question": [
+ "is there the bird ?",
+ "is there grass ?"
+ ],
+ "prompt": "the {} is standing in grass"
+ },
+ {
+ "index": 353,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird is near a pond",
+ "question": [
+ "is there the bird ?",
+ "is there a pond ?"
+ ],
+ "prompt": "the {} is near a pond"
+ },
+ {
+ "index": 354,
+ "image_id": 2317249,
+ "entity": "bird",
+ "caption": "The birds are out in the forest",
+ "question": [
+ "are there the birds ?",
+ "is there the forest ?"
+ ],
+ "prompt": "The {}s are out in the forest"
+ },
+ {
+ "index": 355,
+ "image_id": 2317249,
+ "entity": "bird",
+ "caption": "The birds are watching for predators",
+ "question": [
+ "are there the birds ?",
+ "are there predators ?"
+ ],
+ "prompt": "The {}s are watching for predators"
+ },
+ {
+ "index": 356,
+ "image_id": 2316597,
+ "entity": "bird",
+ "caption": "the pool of bird feeding ",
+ "question": [
+ "is there the pool ?",
+ "is there bird feeding ?"
+ ],
+ "prompt": "the pool of {} feeding "
+ },
+ {
+ "index": 357,
+ "image_id": 2316597,
+ "entity": "bird",
+ "caption": "a bird iwth a beak",
+ "question": [
+ "is there a bird ?",
+ "is there a beak ?"
+ ],
+ "prompt": "a {} iwth a beak"
+ },
+ {
+ "index": 358,
+ "image_id": 2316285,
+ "entity": "bird",
+ "caption": "bird perched on a branch",
+ "question": [
+ "is there bird ?",
+ "is there a branch ?"
+ ],
+ "prompt": "{} perched on a branch"
+ },
+ {
+ "index": 359,
+ "image_id": 2414525,
+ "entity": "bird",
+ "caption": "man giving bird wine",
+ "question": [
+ "is there man ?",
+ "is there bird wine ?"
+ ],
+ "prompt": "man giving {} wine"
+ },
+ {
+ "index": 360,
+ "image_id": 2413894,
+ "entity": "bird",
+ "caption": "the bird has two eyes",
+ "question": [
+ "is there the bird ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "the {} has two eyes"
+ },
+ {
+ "index": 361,
+ "image_id": 2413894,
+ "entity": "bird",
+ "caption": "The bird is standing in calm water.",
+ "question": [
+ "is there the bird ?",
+ "is there calm water ?"
+ ],
+ "prompt": "The {} is standing in calm water."
+ },
+ {
+ "index": 362,
+ "image_id": 2413604,
+ "entity": "bird",
+ "caption": "the bird is on the chair",
+ "question": [
+ "is there the bird ?",
+ "is there the chair ?"
+ ],
+ "prompt": "the {} is on the chair"
+ },
+ {
+ "index": 363,
+ "image_id": 2413604,
+ "entity": "bird",
+ "caption": "The bird is outside resting on the edge of a wicker basket chair. ",
+ "question": [
+ "is there the bird ?",
+ "is there the edge ?",
+ "is there a wicker basket chair ?"
+ ],
+ "prompt": "The {} is outside resting on the edge of a wicker basket chair. "
+ },
+ {
+ "index": 364,
+ "image_id": 2413604,
+ "entity": "bird",
+ "caption": "The bird has thick black feathers. ",
+ "question": [
+ "is there the bird ?",
+ "are there thick black feathers ?"
+ ],
+ "prompt": "The {} has thick black feathers. "
+ },
+ {
+ "index": 365,
+ "image_id": 2413604,
+ "entity": "bird",
+ "caption": "little bird has extremely expressive eyes",
+ "question": [
+ "is there little bird ?",
+ "are there extremely expressive eyes ?"
+ ],
+ "prompt": "little {} has extremely expressive eyes"
+ },
+ {
+ "index": 366,
+ "image_id": 2413070,
+ "entity": "bird",
+ "caption": "two birds feet",
+ "question": [
+ "are there two birds ?"
+ ],
+ "prompt": "two {}s feet"
+ },
+ {
+ "index": 367,
+ "image_id": 2416459,
+ "entity": "bird",
+ "caption": "bird perched on the flower",
+ "question": [
+ "is there bird ?",
+ "is there the flower ?"
+ ],
+ "prompt": "{} perched on the flower"
+ },
+ {
+ "index": 368,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "the bird has red color beak",
+ "question": [
+ "is there the bird ?",
+ "is there red color beak ?"
+ ],
+ "prompt": "the {} has red color beak"
+ },
+ {
+ "index": 369,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "the bird has paddle feet",
+ "question": [
+ "is there the bird ?",
+ "are there paddle feet ?"
+ ],
+ "prompt": "the {} has paddle feet"
+ },
+ {
+ "index": 370,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "the wings of the bird are gray",
+ "question": [
+ "are there the wings ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the wings of the {} are gray"
+ },
+ {
+ "index": 371,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "birds foot ",
+ "question": [
+ "are there birds ?"
+ ],
+ "prompt": "{}s foot "
+ },
+ {
+ "index": 372,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "beak of bird is closed",
+ "question": [
+ "is there beak ?",
+ "is there bird ?"
+ ],
+ "prompt": "beak of {} is closed"
+ },
+ {
+ "index": 373,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "foot of bird is on dock",
+ "question": [
+ "is there foot ?",
+ "is there bird ?",
+ "is there dock ?"
+ ],
+ "prompt": "foot of {} is on dock"
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n01531178.json b/data/imagenet/compositions/prompts/n01531178.json
new file mode 100644
index 0000000000000000000000000000000000000000..d2f6a90f12f4f06cb56b687a87e91c16757b699c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01531178.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2220, "entity": "bird", "caption": "the bird has a fish in its mouth", "question": ["is there the bird ?", "is there a fish ?", "is there its mouth ?"], "prompt": "the {} has a fish in its mouth"}, {"index": 1, "image_id": 2612, "entity": "bird", "caption": "bird has tan beak", "question": ["is there bird ?", "is there tan beak ?"], "prompt": "{} has tan beak"}, {"index": 2, "image_id": 2612, "entity": "bird", "caption": "bird has brown eye", "question": ["is there bird ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 3, "image_id": 2612, "entity": "bird", "caption": "bird has black feathers", "question": ["is there bird ?", "are there black feathers ?"], "prompt": "{} has black feathers"}, {"index": 4, "image_id": 2613, "entity": "bird", "caption": "birds have orange beaks", "question": ["are there birds ?", "are there orange beaks ?"], "prompt": "{}s have orange beaks"}, {"index": 5, "image_id": 2613, "entity": "bird", "caption": "bird has white feathers", "question": ["is there bird ?", "are there white feathers ?"], "prompt": "{} has white feathers"}, {"index": 6, "image_id": 2613, "entity": "bird", "caption": "bird has grey leg", "question": ["is there bird ?"], "prompt": "{} has grey leg"}, {"index": 7, "image_id": 2613, "entity": "bird", "caption": "bird stands on one leg", "question": ["is there bird ?", "is there one leg ?"], "prompt": "{} stands on one leg"}, {"index": 8, "image_id": 2619, "entity": "bird", "caption": "the eye of the bird is black", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "the eye of the {} is black"}, {"index": 9, "image_id": 2619, "entity": "bird", "caption": "the bird feet is black", "question": ["are there the bird feet ?"], "prompt": "the {} feet is black"}, {"index": 10, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food out of the person's hand", "question": ["is there the bird ?", "is there food ?", "is there the person's hand ?"], "prompt": "The {} is eating food out of the person's hand"}, {"index": 11, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food", "question": ["is there the bird ?", "is there food ?"], "prompt": "The {} is eating food"}, {"index": 12, "image_id": 2415095, "entity": "bird", "caption": "A bird with red feathers is eating food", "question": ["is there a bird ?", "are there red feathers ?", "is there food ?"], "prompt": "A {} with red feathers is eating food"}, {"index": 13, "image_id": 2415095, "entity": "bird", "caption": "The red feather bird is eating food out of a person's hand", "question": ["is there the red feather bird ?", "is there food ?", "is there a person's hand ?"], "prompt": "The red feather {} is eating food out of a person's hand"}, {"index": 14, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating an apples from the person's hand", "question": ["is there the bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The {} is eating an apples from the person's hand"}, {"index": 15, "image_id": 2415095, "entity": "bird", "caption": "The red-feathered bird is eating an apples from the person's hand", "question": ["is there the red-feathered bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The red-feathered {} is eating an apples from the person's hand"}, {"index": 16, "image_id": 2414024, "entity": "bird", "caption": "little bird with chest puffed out", "question": ["is there little bird ?", "is there chest ?"], "prompt": "little {} with chest puffed out"}, {"index": 17, "image_id": 2412521, "entity": "bird", "caption": "bird has red patch", "question": ["is there bird ?", "is there red patch ?"], "prompt": "{} has red patch"}, {"index": 18, "image_id": 2412521, "entity": "bird", "caption": "wood is under bird", "question": ["is there wood ?", "is there bird ?"], "prompt": "wood is under {}"}, {"index": 19, "image_id": 2412521, "entity": "bird", "caption": "black bird has it's mouth open", "question": ["is there black bird ?"], "prompt": "black {} has it's mouth open"}, {"index": 20, "image_id": 2412521, "entity": "bird", "caption": "bird perched on log", "question": ["is there bird ?", "is there log ?"], "prompt": "{} perched on log"}, {"index": 21, "image_id": 2412521, "entity": "bird", "caption": "black bird leg slanted from body", "question": ["is there black bird leg ?", "is there body ?"], "prompt": "black {} leg slanted from body"}, {"index": 22, "image_id": 2412061, "entity": "bird", "caption": "Black bird beak", "question": ["is there black bird beak ?"], "prompt": "Black {} beak"}, {"index": 23, "image_id": 2412061, "entity": "bird", "caption": "Black-feathered bird looks up to the sky", "question": ["is there black-feathered bird ?", "is there the sky ?"], "prompt": "Black-feathered {} looks up to the sky"}, {"index": 24, "image_id": 2409570, "entity": "bird", "caption": "the bird has two feet", "question": ["is there the bird ?", "are there two feet ?"], "prompt": "the {} has two feet"}, {"index": 25, "image_id": 2409570, "entity": "bird", "caption": "the bird is biting its tail", "question": ["is there the bird ?", "is there its tail ?"], "prompt": "the {} is biting its tail"}, {"index": 26, "image_id": 2409570, "entity": "bird", "caption": "the bird has wings", "question": ["is there the bird ?", "are there wings ?"], "prompt": "the {} has wings"}, {"index": 27, "image_id": 2409570, "entity": "bird", "caption": "White bird with black tail feathers standing on the sand", "question": ["is there white bird ?", "are there black tail feathers ?", "is there the sand ?"], "prompt": "White {} with black tail feathers standing on the sand"}, {"index": 28, "image_id": 2409306, "entity": "bird", "caption": "a fragment of ground that a young bird is standing on", "question": ["is there a fragment ?", "is there ground ?", "is there a young bird ?"], "prompt": "a fragment of ground that a young {} is standing on"}, {"index": 29, "image_id": 2409306, "entity": "bird", "caption": "head of bird is polka dotted", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is polka dotted"}, {"index": 30, "image_id": 2409306, "entity": "bird", "caption": "a baby bird stands on the ground", "question": ["is there a baby bird ?", "is there the ground ?"], "prompt": "a baby {} stands on the ground"}, {"index": 31, "image_id": 2409215, "entity": "bird", "caption": "The bird's beak is orange. ", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is orange. "}, {"index": 32, "image_id": 2409215, "entity": "bird", "caption": "The bird is flying above water. ", "question": ["is there the bird ?", "is there water ?"], "prompt": "The {} is flying above water. "}, {"index": 33, "image_id": 2409215, "entity": "bird", "caption": "End of the bird's wing that is primarily black", "question": ["is there end ?", "is there the bird's wing ?"], "prompt": "End of the {}'s wing that is primarily black"}, {"index": 34, "image_id": 2409045, "entity": "bird", "caption": "Neck of bird has S shape", "question": ["is there neck ?", "is there bird ?", "are there s ?", "is there shape ?"], "prompt": "Neck of {} has S shape"}, {"index": 35, "image_id": 2409045, "entity": "bird", "caption": "Grey bird rising into the air", "question": ["is there grey bird ?", "is there the air ?"], "prompt": "Grey {} rising into the air"}, {"index": 36, "image_id": 2409010, "entity": "bird", "caption": "a bird has a small creature in its mouth", "question": ["is there a bird ?", "is there a small creature ?", "is there its mouth ?"], "prompt": "a {} has a small creature in its mouth"}, {"index": 37, "image_id": 2409010, "entity": "bird", "caption": "a bird walks along the wet sand", "question": ["is there a bird ?", "is there the wet sand ?"], "prompt": "a {} walks along the wet sand"}, {"index": 38, "image_id": 2408592, "entity": "bird", "caption": "a bird stands at the edge of the water", "question": ["is there a bird ?", "is there the edge ?", "is there the water ?"], "prompt": "a {} stands at the edge of the water"}, {"index": 39, "image_id": 2408592, "entity": "bird", "caption": "The bird has webbed feet", "question": ["is there the bird ?"], "prompt": "The {} has webbed feet"}, {"index": 40, "image_id": 2408592, "entity": "bird", "caption": "The bird is standing in the dirt", "question": ["is there the bird ?", "is there the dirt ?"], "prompt": "The {} is standing in the dirt"}, {"index": 41, "image_id": 2408592, "entity": "bird", "caption": "the ground the bird is standing on", "question": ["is there the ground ?", "is there the bird ?"], "prompt": "the ground the {} is standing on"}, {"index": 42, "image_id": 2408299, "entity": "bird", "caption": "the bird is hiding in a plant", "question": ["is there the bird ?", "is there a plant ?"], "prompt": "the {} is hiding in a plant"}, {"index": 43, "image_id": 2408299, "entity": "bird", "caption": "the bird has a white belly", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 44, "image_id": 2407737, "entity": "bird", "caption": "this is a birds eye", "question": ["are there a birds ?"], "prompt": "this is a {}s eye"}, {"index": 45, "image_id": 2407737, "entity": "bird", "caption": "this is a bird tail", "question": ["is there a bird tail ?"], "prompt": "this is a {} tail"}, {"index": 46, "image_id": 2407737, "entity": "bird", "caption": "the bird has sharp beak", "question": ["is there the bird ?", "is there sharp beak ?"], "prompt": "the {} has sharp beak"}, {"index": 47, "image_id": 2407737, "entity": "bird", "caption": "the branches are beside the bird", "question": ["are there the branches ?", "is there the bird ?"], "prompt": "the branches are beside the {}"}, {"index": 48, "image_id": 2407737, "entity": "bird", "caption": "the bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "the {} has thin legs"}, {"index": 49, "image_id": 2407737, "entity": "bird", "caption": "the bird has black eyes", "question": ["is there the bird ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 50, "image_id": 2407316, "entity": "bird", "caption": "the bird has black legs", "question": ["is there the bird ?", "are there black legs ?"], "prompt": "the {} has black legs"}, {"index": 51, "image_id": 2407316, "entity": "bird", "caption": "the bird has three toes", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "the {} has three toes"}, {"index": 52, "image_id": 2406956, "entity": "bird", "caption": "black feathers on top of birds head", "question": ["are there black feathers ?", "is there top ?", "are there birds ?"], "prompt": "black feathers on top of {}s head"}, {"index": 53, "image_id": 2406956, "entity": "bird", "caption": "this is the bird's eye", "question": ["is there the bird's eye ?"], "prompt": "this is the {}'s eye"}, {"index": 54, "image_id": 2406956, "entity": "bird", "caption": "an object is in the bird's beak", "question": ["is there an object ?", "is there the bird's beak ?"], "prompt": "an object is in the {}'s beak"}, {"index": 55, "image_id": 2406956, "entity": "bird", "caption": "the bird's eye is black in color", "question": ["is there the bird's eye ?", "is there color ?"], "prompt": "the {}'s eye is black in color"}, {"index": 56, "image_id": 2404798, "entity": "bird", "caption": "bird has long beak", "question": ["is there bird ?", "is there long beak ?"], "prompt": "{} has long beak"}, {"index": 57, "image_id": 2404798, "entity": "bird", "caption": "bird has pink feathers", "question": ["is there bird ?", "are there pink feathers ?"], "prompt": "{} has pink feathers"}, {"index": 58, "image_id": 2404798, "entity": "bird", "caption": "bird has red eye", "question": ["is there bird ?", "is there red eye ?"], "prompt": "{} has red eye"}, {"index": 59, "image_id": 2404798, "entity": "bird", "caption": "head of bird is featherless", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is featherless"}, {"index": 60, "image_id": 2404798, "entity": "bird", "caption": "bird has green tag on leg", "question": ["is there bird ?", "is there green tag ?", "is there leg ?"], "prompt": "{} has green tag on leg"}, {"index": 61, "image_id": 2404798, "entity": "bird", "caption": "The bird is in the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 62, "image_id": 2404798, "entity": "bird", "caption": "The bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "The {} has a beak"}, {"index": 63, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is open", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 64, "image_id": 2404798, "entity": "bird", "caption": "The bird is wading in the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is wading in the water."}, {"index": 65, "image_id": 2404798, "entity": "bird", "caption": "The bird has a long beak.", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak."}, {"index": 66, "image_id": 2404798, "entity": "bird", "caption": "The bird has light and dark pink feathers.", "question": ["is there the bird ?", "are there light and dark pink feathers ?"], "prompt": "The {} has light and dark pink feathers."}, {"index": 67, "image_id": 2404798, "entity": "bird", "caption": "The bird has a green band around the leg.", "question": ["is there the bird ?", "is there a green band ?", "is there the leg ?"], "prompt": "The {} has a green band around the leg."}, {"index": 68, "image_id": 2404798, "entity": "bird", "caption": "The bird has white neck feathers.", "question": ["is there the bird ?", "are there white neck feathers ?"], "prompt": "The {} has white neck feathers."}, {"index": 69, "image_id": 2404798, "entity": "bird", "caption": "Large rocks are behind the birds.", "question": ["are there large rocks ?", "are there the birds ?"], "prompt": "Large rocks are behind the {}s."}, {"index": 70, "image_id": 2404798, "entity": "bird", "caption": "Water is dripping from the bird's beak.", "question": ["is there water ?", "is there the bird's beak ?"], "prompt": "Water is dripping from the {}'s beak."}, {"index": 71, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is yellow and black.", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is yellow and black."}, {"index": 72, "image_id": 2404673, "entity": "bird", "caption": "the bird is on a long black metal piece", "question": ["is there the bird ?", "is there a long black metal piece ?"], "prompt": "the {} is on a long black metal piece"}, {"index": 73, "image_id": 2404673, "entity": "bird", "caption": "glass sun catchers are hanging in front of the wooden bird", "question": ["are there glass sun catchers ?", "is there front ?", "is there the wooden bird ?"], "prompt": "glass sun catchers are hanging in front of the wooden {}"}, {"index": 74, "image_id": 2404673, "entity": "bird", "caption": "the bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "the {} has a beak"}, {"index": 75, "image_id": 2404673, "entity": "bird", "caption": "the window is reflecting the bird", "question": ["is there the window ?", "is there the bird ?"], "prompt": "the window is reflecting the {}"}, {"index": 76, "image_id": 2404673, "entity": "bird", "caption": "the bird has 1 leg", "question": ["is there the bird ?", "is there 1 leg ?"], "prompt": "the {} has 1 leg"}, {"index": 77, "image_id": 2404673, "entity": "bird", "caption": "the bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "the {} has a long beak"}, {"index": 78, "image_id": 2404673, "entity": "bird", "caption": "the bird's eye is black", "question": ["is there the bird's eye ?"], "prompt": "the {}'s eye is black"}, {"index": 79, "image_id": 2404673, "entity": "bird", "caption": "the bird's leg is long", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is long"}, {"index": 80, "image_id": 2404673, "entity": "bird", "caption": "the bird is sitting on the window", "question": ["is there the bird ?", "is there the window ?"], "prompt": "the {} is sitting on the window"}, {"index": 81, "image_id": 2404673, "entity": "bird", "caption": "The bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak"}, {"index": 82, "image_id": 2403435, "entity": "bird", "caption": "person is feeding bird", "question": ["is there person ?", "is there bird ?"], "prompt": "person is feeding {}"}, {"index": 83, "image_id": 2401304, "entity": "bird", "caption": "a bird is standing on weathered wood", "question": ["is there a bird ?", "is there weathered wood ?"], "prompt": "a {} is standing on weathered wood"}, {"index": 84, "image_id": 2401079, "entity": "bird", "caption": "bird's beak is black and red", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black and red"}, {"index": 85, "image_id": 2401079, "entity": "bird", "caption": "the bird's feet are black", "question": ["are there the bird's feet ?"], "prompt": "the {}'s feet are black"}, {"index": 86, "image_id": 2400985, "entity": "bird", "caption": "the bird has a short black beak", "question": ["is there the bird ?", "is there a short black beak ?"], "prompt": "the {} has a short black beak"}, {"index": 87, "image_id": 2400985, "entity": "bird", "caption": "the bird has sharp claws", "question": ["is there the bird ?", "are there sharp claws ?"], "prompt": "the {} has sharp claws"}, {"index": 88, "image_id": 2400985, "entity": "bird", "caption": "A birds left side wing. ", "question": ["are there a birds ?", "is there side wing ?"], "prompt": "A {}s left side wing. "}, {"index": 89, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds right foot", "question": ["are there the fully shown birds ?"], "prompt": "The fully shown {}s right foot"}, {"index": 90, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds left foot", "question": ["are there the fully shown birds ?", "is there foot ?"], "prompt": "The fully shown {}s left foot"}, {"index": 91, "image_id": 2396390, "entity": "bird", "caption": "bird perched on wooden pole ", "question": ["is there bird ?", "is there wooden pole ?"], "prompt": "{} perched on wooden pole "}, {"index": 92, "image_id": 2396390, "entity": "bird", "caption": "bird angled sideways with feet tightly gripping", "question": ["is there bird ?", "are there feet ?"], "prompt": "{} angled sideways with feet tightly gripping"}, {"index": 93, "image_id": 2396109, "entity": "bird", "caption": "The bird has yellow eyes.", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes."}, {"index": 94, "image_id": 2396109, "entity": "bird", "caption": "The bird stands on the tree.", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "The {} stands on the tree."}, {"index": 95, "image_id": 2396109, "entity": "bird", "caption": "this is a bird", "question": ["is there a bird ?"], "prompt": "this is a {}"}, {"index": 96, "image_id": 2396109, "entity": "bird", "caption": "the bird is on the tree", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "the {} is on the tree"}, {"index": 97, "image_id": 2396109, "entity": "bird", "caption": "the bird has yellow eyes", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "the {} has yellow eyes"}, {"index": 98, "image_id": 2396109, "entity": "bird", "caption": "the bird's legs are long", "question": ["are there the bird's legs ?"], "prompt": "the {}'s legs are long"}, {"index": 99, "image_id": 2396109, "entity": "bird", "caption": "The bird has a pointy beak.", "question": ["is there the bird ?", "is there a pointy beak ?"], "prompt": "The {} has a pointy beak."}, {"index": 100, "image_id": 2396109, "entity": "bird", "caption": "The bird has two legs.", "question": ["is there the bird ?", "are there two legs ?"], "prompt": "The {} has two legs."}, {"index": 101, "image_id": 2396109, "entity": "bird", "caption": "The bird has a yellow eye.", "question": ["is there the bird ?", "is there a yellow eye ?"], "prompt": "The {} has a yellow eye."}, {"index": 102, "image_id": 2396109, "entity": "bird", "caption": "The bird has a wing.", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "The {} has a wing."}, {"index": 103, "image_id": 2395577, "entity": "bird", "caption": "the bird has a wing", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "the {} has a wing"}, {"index": 104, "image_id": 2395577, "entity": "bird", "caption": "the bird has an eye", "question": ["is there the bird ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 105, "image_id": 2394957, "entity": "bird", "caption": "bird stand on rim of bowl", "question": ["is there bird ?", "is there rim ?", "is there bowl ?"], "prompt": "{} stand on rim of bowl"}, {"index": 106, "image_id": 2394957, "entity": "bird", "caption": "bird's head is black and blue in color", "question": ["is there bird's head ?", "is there color ?"], "prompt": "{}'s head is black and blue in color"}, {"index": 107, "image_id": 2394957, "entity": "bird", "caption": "bird's eye is red", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is red"}, {"index": 108, "image_id": 2393198, "entity": "bird", "caption": "the birds long beak", "question": ["are there the birds ?"], "prompt": "the {}s long beak"}, {"index": 109, "image_id": 2393198, "entity": "bird", "caption": "the feathers on the birds chest", "question": ["are there the feathers ?", "are there the birds ?"], "prompt": "the feathers on the {}s chest"}, {"index": 110, "image_id": 2393198, "entity": "bird", "caption": "the log the birds standing on", "question": ["is there the log ?", "are there the birds ?"], "prompt": "the log the {}s standing on"}, {"index": 111, "image_id": 2392907, "entity": "bird", "caption": "bird has yellow legs", "question": ["is there bird ?", "are there yellow legs ?"], "prompt": "{} has yellow legs"}, {"index": 112, "image_id": 2392907, "entity": "bird", "caption": "bird has large toe nails", "question": ["is there bird ?", "are there large toe nails ?"], "prompt": "{} has large toe nails"}, {"index": 113, "image_id": 2392255, "entity": "bird", "caption": "The birds tail feathers.", "question": ["are there the birds tail feathers ?"], "prompt": "The {}s tail feathers."}, {"index": 114, "image_id": 2392255, "entity": "bird", "caption": "The bird is standing on a person's hand.", "question": ["is there the bird ?", "is there a person's hand ?"], "prompt": "The {} is standing on a person's hand."}, {"index": 115, "image_id": 2392255, "entity": "bird", "caption": "The bird has grey feathers.", "question": ["is there the bird ?", "are there grey feathers ?"], "prompt": "The {} has grey feathers."}, {"index": 116, "image_id": 2392255, "entity": "bird", "caption": "The bird has a black beak.", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "The {} has a black beak."}, {"index": 117, "image_id": 2392255, "entity": "bird", "caption": "the bird has a black beak", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "the {} has a black beak"}, {"index": 118, "image_id": 2392255, "entity": "bird", "caption": "the bird has black legs and claws", "question": ["is there the bird ?", "are there black legs ?", "are there claws ?"], "prompt": "the {} has black legs and claws"}, {"index": 119, "image_id": 2392255, "entity": "bird", "caption": "the bird's head is white and gray", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is white and gray"}, {"index": 120, "image_id": 2391103, "entity": "bird", "caption": "Top of bird's head is jet black", "question": ["is there top ?", "is there bird's head ?", "is there jet black ?"], "prompt": "Top of {}'s head is jet black"}, {"index": 121, "image_id": 2390453, "entity": "bird", "caption": "the bird has eye", "question": ["is there the bird ?", "is there eye ?"], "prompt": "the {} has eye"}, {"index": 122, "image_id": 2389247, "entity": "bird", "caption": "a birds head", "question": ["are there a birds ?"], "prompt": "a {}s head"}, {"index": 123, "image_id": 2389247, "entity": "bird", "caption": "The birds beak.", "question": ["are there the birds ?"], "prompt": "The {}s beak."}, {"index": 124, "image_id": 2388774, "entity": "bird", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the {} is in the car "}, {"index": 125, "image_id": 2388774, "entity": "bird", "caption": "The bird has small black feathers ", "question": ["is there the bird ?", "are there small black feathers ?"], "prompt": "The {} has small black feathers "}, {"index": 126, "image_id": 2387336, "entity": "bird", "caption": "part of branch birds are sitting on", "question": ["is there part ?", "are there branch birds ?"], "prompt": "part of branch {}s are sitting on"}, {"index": 127, "image_id": 2385839, "entity": "bird", "caption": "the bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "the {} has black and white feathers"}, {"index": 128, "image_id": 2384739, "entity": "bird", "caption": "bird's legs are curled", "question": ["are there bird's legs ?"], "prompt": "{}'s legs are curled"}, {"index": 129, "image_id": 2384739, "entity": "bird", "caption": "a bird is lying on the pavement", "question": ["is there a bird ?", "is there the pavement ?"], "prompt": "a {} is lying on the pavement"}, {"index": 130, "image_id": 2384739, "entity": "bird", "caption": "the bird's head is upside down", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is upside down"}, {"index": 131, "image_id": 2384739, "entity": "bird", "caption": "the black cat is lying next to the bird", "question": ["is there the black cat ?", "is there the bird ?"], "prompt": "the black cat is lying next to the {}"}, {"index": 132, "image_id": 2384582, "entity": "bird", "caption": "This bird has a red beak.", "question": ["is there this bird ?", "is there a red beak ?"], "prompt": "This {} has a red beak."}, {"index": 133, "image_id": 2384582, "entity": "bird", "caption": "The bird is standing on a sandy beach.", "question": ["is there the bird ?", "is there a sandy beach ?"], "prompt": "The {} is standing on a sandy beach."}, {"index": 134, "image_id": 2384582, "entity": "bird", "caption": "This bird has black eyes.", "question": ["is there this bird ?", "are there black eyes ?"], "prompt": "This {} has black eyes."}, {"index": 135, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white belly.", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "The {} has a white belly."}, {"index": 136, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white body.", "question": ["is there the bird ?", "is there a white body ?"], "prompt": "The {} has a white body."}, {"index": 137, "image_id": 2384582, "entity": "bird", "caption": "The bird has black and white tail feathers.", "question": ["is there the bird ?", "are there black and white tail feathers ?"], "prompt": "The {} has black and white tail feathers."}, {"index": 138, "image_id": 2384582, "entity": "bird", "caption": "The bird has orange legs.", "question": ["is there the bird ?", "are there orange legs ?"], "prompt": "The {} has orange legs."}, {"index": 139, "image_id": 2384582, "entity": "bird", "caption": "The bird has an orange beak.", "question": ["is there the bird ?", "is there an orange beak ?"], "prompt": "The {} has an orange beak."}, {"index": 140, "image_id": 2382811, "entity": "bird", "caption": "The bird is above the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is above the water"}, {"index": 141, "image_id": 2382811, "entity": "bird", "caption": "body of seabird is white", "question": ["is there body ?", "is there seabird ?"], "prompt": "body of sea{} is white"}, {"index": 142, "image_id": 2381448, "entity": "bird", "caption": "birds feet are visible", "question": ["are there birds ?", "are there feet ?"], "prompt": "{}s feet are visible"}, {"index": 143, "image_id": 2381401, "entity": "bird", "caption": "the bird has a slender beak", "question": ["is there the bird ?", "is there a slender beak ?"], "prompt": "the {} has a slender beak"}, {"index": 144, "image_id": 2381401, "entity": "bird", "caption": "the bird has stripes on his back", "question": ["is there the bird ?", "are there stripes ?", "is there his back ?"], "prompt": "the {} has stripes on his back"}, {"index": 145, "image_id": 2381401, "entity": "bird", "caption": "the birds beak is very long", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is very long"}, {"index": 146, "image_id": 2381401, "entity": "bird", "caption": "The bird is standing on the branches of the tree.", "question": ["is there the bird ?", "are there the branches ?", "is there the tree ?"], "prompt": "The {} is standing on the branches of the tree."}, {"index": 147, "image_id": 2381401, "entity": "bird", "caption": "The bird has a long black beak.", "question": ["is there the bird ?", "is there a long black beak ?"], "prompt": "The {} has a long black beak."}, {"index": 148, "image_id": 2381401, "entity": "bird", "caption": "The bird has long red legs.", "question": ["is there the bird ?", "are there long red legs ?"], "prompt": "The {} has long red legs."}, {"index": 149, "image_id": 2381401, "entity": "bird", "caption": "the bird is red and beautiful", "question": ["is there the bird ?"], "prompt": "the {} is red and beautiful"}, {"index": 150, "image_id": 2380312, "entity": "bird", "caption": "the bird has a tail", "question": ["is there the bird ?", "is there a tail ?"], "prompt": "the {} has a tail"}, {"index": 151, "image_id": 2380312, "entity": "bird", "caption": "the bird has a head", "question": ["is there the bird ?", "is there a head ?"], "prompt": "the {} has a head"}, {"index": 152, "image_id": 2380026, "entity": "bird", "caption": "the bird has a blue head.", "question": ["is there the bird ?", "is there a blue head ?"], "prompt": "the {} has a blue head."}, {"index": 153, "image_id": 2380026, "entity": "bird", "caption": "The bird has yellow and orange on it's chest.", "question": ["is there the bird ?", "is there it's chest ?"], "prompt": "The {} has yellow and orange on it's chest."}, {"index": 154, "image_id": 2380026, "entity": "bird", "caption": "The bird has three toes.", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "The {} has three toes."}, {"index": 155, "image_id": 2380026, "entity": "bird", "caption": "bird's wings are green", "question": ["are there bird's wings ?"], "prompt": "{}'s wings are green"}, {"index": 156, "image_id": 2380026, "entity": "bird", "caption": "bird has blue head", "question": ["is there bird ?", "is there blue head ?"], "prompt": "{} has blue head"}, {"index": 157, "image_id": 2380026, "entity": "bird", "caption": "bird has orange beak", "question": ["is there bird ?", "is there orange beak ?"], "prompt": "{} has orange beak"}, {"index": 158, "image_id": 2380026, "entity": "bird", "caption": "bird has green body", "question": ["is there bird ?", "is there green body ?"], "prompt": "{} has green body"}, {"index": 159, "image_id": 2380026, "entity": "bird", "caption": "bird has brown talons", "question": ["is there bird ?", "are there brown talons ?"], "prompt": "{} has brown talons"}, {"index": 160, "image_id": 2378627, "entity": "bird", "caption": "A birds beak", "question": ["are there a birds ?"], "prompt": "A {}s beak"}, {"index": 161, "image_id": 2378627, "entity": "bird", "caption": "A birds wing", "question": ["are there a birds ?"], "prompt": "A {}s wing"}, {"index": 162, "image_id": 2377993, "entity": "bird", "caption": "The birds claws are black.", "question": ["are there the birds ?", "are there claws ?"], "prompt": "The {}s claws are black."}, {"index": 163, "image_id": 2377993, "entity": "bird", "caption": "The birds eye is black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is black."}, {"index": 164, "image_id": 2377993, "entity": "bird", "caption": "The birds beak is black.", "question": ["are there the birds beak ?"], "prompt": "The {}s beak is black."}, {"index": 165, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a bird", "question": ["is there a bird ?"], "prompt": "Pink felt on a {}"}, {"index": 166, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a white bird", "question": ["is there a white bird ?"], "prompt": "Pink felt on a white {}"}, {"index": 167, "image_id": 2376795, "entity": "bird", "caption": "A bird has pink felt on it", "question": ["is there a bird ?"], "prompt": "A {} has pink felt on it"}, {"index": 168, "image_id": 2376795, "entity": "bird", "caption": "bird head turned right", "question": ["is there bird head ?"], "prompt": "{} head turned right"}, {"index": 169, "image_id": 2376340, "entity": "bird", "caption": "the birds legs ", "question": ["are there the birds ?"], "prompt": "the {}s legs "}, {"index": 170, "image_id": 2376340, "entity": "bird", "caption": "The bird has long legs. ", "question": ["is there the bird ?", "are there long legs ?"], "prompt": "The {} has long legs. "}, {"index": 171, "image_id": 2376224, "entity": "bird", "caption": "The bird's eyes are open", "question": ["are there the bird's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 172, "image_id": 2376224, "entity": "bird", "caption": "The bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "The {} has thin legs"}, {"index": 173, "image_id": 2375434, "entity": "bird", "caption": "The bird is holding a stick in its mouth", "question": ["is there the bird ?", "is there a stick ?", "is there its mouth ?"], "prompt": "The {} is holding a stick in its mouth"}, {"index": 174, "image_id": 2375434, "entity": "bird", "caption": "birds flying in the sky", "question": ["are there birds ?", "is there the sky ?"], "prompt": "{}s flying in the sky"}, {"index": 175, "image_id": 2375434, "entity": "bird", "caption": "birds flapping their wings", "question": ["are there birds ?", "are there their wings ?"], "prompt": "{}s flapping their wings"}, {"index": 176, "image_id": 2375434, "entity": "bird", "caption": "four birds flapping their wings", "question": ["are there four birds ?", "are there their wings ?"], "prompt": "four {}s flapping their wings"}, {"index": 177, "image_id": 2375434, "entity": "bird", "caption": "a bird with its wings spread to full length", "question": ["is there a bird ?", "are there its wings ?", "is there full length ?"], "prompt": "a {} with its wings spread to full length"}, {"index": 178, "image_id": 2372589, "entity": "bird", "caption": "belly of the bird is white", "question": ["is there belly ?", "is there the bird ?"], "prompt": "belly of the {} is white"}, {"index": 179, "image_id": 2372589, "entity": "bird", "caption": "bird's feet are black", "question": ["are there bird's feet ?"], "prompt": "{}'s feet are black"}, {"index": 180, "image_id": 2372589, "entity": "bird", "caption": "bird's beak is black", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black"}, {"index": 181, "image_id": 2372267, "entity": "bird", "caption": "bird has green face", "question": ["is there bird ?", "is there green face ?"], "prompt": "{} has green face"}, {"index": 182, "image_id": 2372267, "entity": "bird", "caption": "bird has white beak", "question": ["is there bird ?", "is there white beak ?"], "prompt": "{} has white beak"}, {"index": 183, "image_id": 2371979, "entity": "bird", "caption": "bird's head is black", "question": ["is there bird's head ?"], "prompt": "{}'s head is black"}, {"index": 184, "image_id": 2371979, "entity": "bird", "caption": "bird's wing is black and red", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is black and red"}, {"index": 185, "image_id": 2371266, "entity": "bird", "caption": "birds beak that is two toned", "question": ["are there birds ?"], "prompt": "{}s beak that is two toned"}, {"index": 186, "image_id": 2370174, "entity": "bird", "caption": "water is behind the bird", "question": ["is there water ?", "is there the bird ?"], "prompt": "water is behind the {}"}, {"index": 187, "image_id": 2370174, "entity": "bird", "caption": "The bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "The {} has black and white feathers"}, {"index": 188, "image_id": 2366794, "entity": "bird", "caption": "the bird's leg is skinny", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is skinny"}, {"index": 189, "image_id": 2366794, "entity": "bird", "caption": "the bird's tail is black ", "question": ["is there the bird's tail ?"], "prompt": "the {}'s tail is black "}, {"index": 190, "image_id": 2366794, "entity": "bird", "caption": "teh bird's beak is smll", "question": ["is there teh bird's beak ?", "is there smll ?"], "prompt": "teh {}'s beak is smll"}, {"index": 191, "image_id": 2366794, "entity": "bird", "caption": "the bird is on the beach ", "question": ["is there the bird ?", "is there the beach ?"], "prompt": "the {} is on the beach "}, {"index": 192, "image_id": 2366548, "entity": "bird", "caption": "the birds have long legs", "question": ["are there the birds ?", "are there long legs ?"], "prompt": "the {}s have long legs"}, {"index": 193, "image_id": 2366548, "entity": "bird", "caption": "tall grass is behind the bird", "question": ["is there tall grass ?", "is there the bird ?"], "prompt": "tall grass is behind the {}"}, {"index": 194, "image_id": 2366548, "entity": "bird", "caption": "the bird closest to us has a few black feathers", "question": ["is there the bird ?", "are there a few black feathers ?"], "prompt": "the {} closest to us has a few black feathers"}, {"index": 195, "image_id": 2365606, "entity": "bird", "caption": "This is a bird", "question": ["is there a bird ?"], "prompt": "This is a {}"}, {"index": 196, "image_id": 2364373, "entity": "bird", "caption": "The bird has brown legs.", "question": ["is there the bird ?", "are there brown legs ?"], "prompt": "The {} has brown legs."}, {"index": 197, "image_id": 2363673, "entity": "bird", "caption": "A white and grey bird with its head turned to the left. ", "question": ["is there a white and grey bird ?", "is there its head ?", "is there the left ?"], "prompt": "A white and grey {} with its head turned to the left. "}, {"index": 198, "image_id": 2362480, "entity": "bird", "caption": "this bird has skinny legs", "question": ["is there this bird ?", "are there skinny legs ?"], "prompt": "this {} has skinny legs"}, {"index": 199, "image_id": 2362036, "entity": "bird", "caption": "it is the eye of the bird", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "it is the eye of the {}"}, {"index": 200, "image_id": 2362036, "entity": "bird", "caption": "the birds left side of the wing", "question": ["are there the birds ?", "is there side ?", "is there the wing ?"], "prompt": "the {}s left side of the wing"}, {"index": 201, "image_id": 2362031, "entity": "bird", "caption": "The bird's feather are shiny.", "question": ["is there the bird's feather ?"], "prompt": "The {}'s feather are shiny."}, {"index": 202, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are glossy.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are glossy."}, {"index": 203, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are black.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are black."}, {"index": 204, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is black.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is black."}, {"index": 205, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is open.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is open."}, {"index": 206, "image_id": 2362031, "entity": "bird", "caption": "The bird's talons are gripping a rock.", "question": ["are there the bird's talons ?", "is there a rock ?"], "prompt": "The {}'s talons are gripping a rock."}, {"index": 207, "image_id": 2361417, "entity": "bird", "caption": "Blue bird's feet wrapped about branch", "question": ["are there blue bird's feet ?", "is there branch ?"], "prompt": "Blue {}'s feet wrapped about branch"}, {"index": 208, "image_id": 2360048, "entity": "bird", "caption": "The bird is standing on a multi level white surface.", "question": ["is there the bird ?", "is there a multi level white surface ?"], "prompt": "The {} is standing on a multi level white surface."}, {"index": 209, "image_id": 2359558, "entity": "bird", "caption": "the birds feet ", "question": ["are there the birds ?"], "prompt": "the {}s feet "}, {"index": 210, "image_id": 2359558, "entity": "bird", "caption": "birds nail ", "question": ["are there birds ?"], "prompt": "{}s nail "}, {"index": 211, "image_id": 2359558, "entity": "bird", "caption": "the birds eye ", "question": ["are there the birds ?"], "prompt": "the {}s eye "}, {"index": 212, "image_id": 2359558, "entity": "bird", "caption": "the birds tail ", "question": ["are there the birds ?"], "prompt": "the {}s tail "}, {"index": 213, "image_id": 2359558, "entity": "bird", "caption": "the birds beak", "question": ["are there the birds ?"], "prompt": "the {}s beak"}, {"index": 214, "image_id": 2359558, "entity": "bird", "caption": "black bird beak", "question": ["is there black bird beak ?"], "prompt": "black {} beak"}, {"index": 215, "image_id": 2359461, "entity": "bird", "caption": "Caterpillar in the birds beak.", "question": ["are there the birds ?"], "prompt": "Caterpillar in the {}s beak."}, {"index": 216, "image_id": 2359036, "entity": "bird", "caption": "Back of bird's neck is green.", "question": ["is there bird's neck ?"], "prompt": "Back of {}'s neck is green."}, {"index": 217, "image_id": 2359036, "entity": "bird", "caption": "yellow and orange feathers for birds chest", "question": ["are there yellow and orange feathers ?", "are there birds ?"], "prompt": "yellow and orange feathers for {}s chest"}, {"index": 218, "image_id": 2359036, "entity": "bird", "caption": "blue with black accent feathers on birds head", "question": ["are there black accent feathers ?", "are there birds ?"], "prompt": "blue with black accent feathers on {}s head"}, {"index": 219, "image_id": 2358738, "entity": "bird", "caption": "the bird has a brown spot on its head", "question": ["is there the bird ?", "is there a brown spot ?", "is there its head ?"], "prompt": "the {} has a brown spot on its head"}, {"index": 220, "image_id": 2358738, "entity": "bird", "caption": "the birds wings are brown with a few white spots", "question": ["are there the birds wings ?", "are there a few white spots ?"], "prompt": "the {}s wings are brown with a few white spots"}, {"index": 221, "image_id": 2358256, "entity": "bird", "caption": "bird with wings spread", "question": ["is there bird ?", "are there wings ?"], "prompt": "{} with wings spread"}, {"index": 222, "image_id": 2358256, "entity": "bird", "caption": "nice bird with wings spread", "question": ["is there nice bird ?", "are there wings ?"], "prompt": "nice {} with wings spread"}, {"index": 223, "image_id": 2358256, "entity": "bird", "caption": "healthy bird with wings spread", "question": ["is there healthy bird ?", "are there wings ?"], "prompt": "healthy {} with wings spread"}, {"index": 224, "image_id": 2358256, "entity": "bird", "caption": "beautiful bird with wings spread", "question": ["is there beautiful bird ?", "are there wings ?"], "prompt": "beautiful {} with wings spread"}, {"index": 225, "image_id": 2358256, "entity": "bird", "caption": "bird with pretty wings spread", "question": ["is there bird ?", "are there pretty wings ?"], "prompt": "{} with pretty wings spread"}, {"index": 226, "image_id": 2358256, "entity": "bird", "caption": "bird with colorful wings spread", "question": ["is there bird ?", "are there colorful wings ?"], "prompt": "{} with colorful wings spread"}, {"index": 227, "image_id": 2357787, "entity": "bird", "caption": "The bird has gray feathers", "question": ["is there the bird ?", "are there gray feathers ?"], "prompt": "The {} has gray feathers"}, {"index": 228, "image_id": 2356534, "entity": "bird", "caption": "dead insect in birds beak", "question": ["is there dead insect ?", "are there birds ?"], "prompt": "dead insect in {}s beak"}, {"index": 229, "image_id": 2356534, "entity": "bird", "caption": "The bird has brown feathers", "question": ["is there the bird ?", "are there brown feathers ?"], "prompt": "The {} has brown feathers"}, {"index": 230, "image_id": 2356534, "entity": "bird", "caption": "The bird is on the ground", "question": ["is there the bird ?", "is there the ground ?"], "prompt": "The {} is on the ground"}, {"index": 231, "image_id": 2355976, "entity": "bird", "caption": "A bird is next to a zebra", "question": ["is there a bird ?", "is there a zebra ?"], "prompt": "A {} is next to a zebra"}, {"index": 232, "image_id": 2355976, "entity": "bird", "caption": "The bird has black feathers", "question": ["is there the bird ?", "are there black feathers ?"], "prompt": "The {} has black feathers"}, {"index": 233, "image_id": 2355730, "entity": "bird", "caption": "bird has grey feathers", "question": ["is there bird ?", "are there grey feathers ?"], "prompt": "{} has grey feathers"}, {"index": 234, "image_id": 2355730, "entity": "bird", "caption": "The bird has claws", "question": ["is there the bird ?", "are there claws ?"], "prompt": "The {} has claws"}, {"index": 235, "image_id": 2355730, "entity": "bird", "caption": "Grey beak of a bird. ", "question": ["is there grey beak ?", "is there a bird ?"], "prompt": "Grey beak of a {}. "}, {"index": 236, "image_id": 2354530, "entity": "bird", "caption": "cement area where a bird stands", "question": ["is there cement area ?", "is there a bird ?"], "prompt": "cement area where a {} stands"}, {"index": 237, "image_id": 2354530, "entity": "bird", "caption": "bird has black streak on head", "question": ["is there bird ?", "is there black streak ?", "is there head ?"], "prompt": "{} has black streak on head"}, {"index": 238, "image_id": 2354530, "entity": "bird", "caption": "bird has yellow eye", "question": ["is there bird ?", "is there yellow eye ?"], "prompt": "{} has yellow eye"}, {"index": 239, "image_id": 2353113, "entity": "bird", "caption": "bird has brown beak", "question": ["is there bird ?", "is there brown beak ?"], "prompt": "{} has brown beak"}, {"index": 240, "image_id": 2353113, "entity": "bird", "caption": "bird is behind fence", "question": ["is there bird ?", "is there fence ?"], "prompt": "{} is behind fence"}, {"index": 241, "image_id": 2353113, "entity": "bird", "caption": "bird is near water", "question": ["is there bird ?", "is there water ?"], "prompt": "{} is near water"}, {"index": 242, "image_id": 2352371, "entity": "bird", "caption": "wood platform for bird to stand on", "question": ["is there wood platform ?", "is there bird ?"], "prompt": "wood platform for {} to stand on"}, {"index": 243, "image_id": 2349694, "entity": "bird", "caption": "tail of bird is white", "question": ["is there tail ?", "is there bird ?"], "prompt": "tail of {} is white"}, {"index": 244, "image_id": 2349587, "entity": "bird", "caption": "The bird is eating the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is eating the branch."}, {"index": 245, "image_id": 2349587, "entity": "bird", "caption": "The bird is holding the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is holding the branch."}, {"index": 246, "image_id": 2349248, "entity": "bird", "caption": "the food the bird is eating", "question": ["is there the food ?", "is there the bird ?"], "prompt": "the food the {} is eating"}, {"index": 247, "image_id": 2349109, "entity": "bird", "caption": "the branch the bird is biting", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "the branch the {} is biting"}, {"index": 248, "image_id": 2348860, "entity": "bird", "caption": "A bird has an orange beak.", "question": ["is there a bird ?", "is there an orange beak ?"], "prompt": "A {} has an orange beak."}, {"index": 249, "image_id": 2348860, "entity": "bird", "caption": "A birds claw is grasping a potato.", "question": ["is there a birds ?", "is there a potato ?"], "prompt": "A {}s claw is grasping a potato."}, {"index": 250, "image_id": 2348860, "entity": "bird", "caption": "A bird is eating a potato.", "question": ["is there a bird ?", "is there a potato ?"], "prompt": "A {} is eating a potato."}, {"index": 251, "image_id": 2348860, "entity": "bird", "caption": "A bird is on a tree branch.", "question": ["is there a bird ?", "is there a tree branch ?"], "prompt": "A {} is on a tree branch."}, {"index": 252, "image_id": 2348860, "entity": "bird", "caption": "A tropical bird is on a tree branch.", "question": ["is there a tropical bird ?", "is there a tree branch ?"], "prompt": "A tropical {} is on a tree branch."}, {"index": 253, "image_id": 2348860, "entity": "bird", "caption": "bird's wing is green", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is green"}, {"index": 254, "image_id": 2348860, "entity": "bird", "caption": "The peice of food in the birds mouth", "question": ["is there the peice ?", "is there food ?", "are there the birds ?"], "prompt": "The peice of food in the {}s mouth"}, {"index": 255, "image_id": 2348860, "entity": "bird", "caption": "The birds red orange eye", "question": ["are there the birds ?"], "prompt": "The {}s red orange eye"}, {"index": 256, "image_id": 2348860, "entity": "bird", "caption": "The birds blue face", "question": ["are there the birds ?"], "prompt": "The {}s blue face"}, {"index": 257, "image_id": 2348860, "entity": "bird", "caption": "The birds foot on the fruit", "question": ["are there the birds ?", "is there the fruit ?"], "prompt": "The {}s foot on the fruit"}, {"index": 258, "image_id": 2348860, "entity": "bird", "caption": "The piece of fruit the bird is eating", "question": ["is there the piece ?", "is there fruit ?", "is there the bird ?"], "prompt": "The piece of fruit the {} is eating"}, {"index": 259, "image_id": 2348860, "entity": "bird", "caption": "The branch the bird is sitting on", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "The branch the {} is sitting on"}, {"index": 260, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw", "question": ["is there a bird ?", "is there a claw ?"], "prompt": "a {} has a claw"}, {"index": 261, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw holding onto a branch", "question": ["is there a bird ?", "is there a claw ?", "is there a branch ?"], "prompt": "a {} has a claw holding onto a branch"}, {"index": 262, "image_id": 2348795, "entity": "bird", "caption": "Black bird beak white around face. ", "question": ["is there black bird beak ?", "is there face ?"], "prompt": "Black {} beak white around face. "}, {"index": 263, "image_id": 2348671, "entity": "bird", "caption": "that is the leg of the bird", "question": ["is there the leg ?", "is there the bird ?"], "prompt": "that is the leg of the {}"}, {"index": 264, "image_id": 2348089, "entity": "bird", "caption": "a wood platform the bird is on ", "question": ["is there a wood platform ?", "is there the bird ?"], "prompt": "a wood platform the {} is on "}, {"index": 265, "image_id": 2347493, "entity": "bird", "caption": "bird with its mouth open", "question": ["is there bird ?", "is there its mouth ?"], "prompt": "{} with its mouth open"}, {"index": 266, "image_id": 2347493, "entity": "bird", "caption": "The bird is on the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 267, "image_id": 2347493, "entity": "bird", "caption": "The birds beak has a sharp point.", "question": ["are there the birds beak ?", "is there a sharp point ?"], "prompt": "The {}s beak has a sharp point."}, {"index": 268, "image_id": 2347493, "entity": "bird", "caption": "The birds feet are orange.", "question": ["are there the birds ?", "are there feet ?"], "prompt": "The {}s feet are orange."}, {"index": 269, "image_id": 2345609, "entity": "bird", "caption": "the bird has very long legs", "question": ["is there the bird ?", "are there very long legs ?"], "prompt": "the {} has very long legs"}, {"index": 270, "image_id": 2345609, "entity": "bird", "caption": "the bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "the {} has a yellow beak"}, {"index": 271, "image_id": 2344912, "entity": "bird", "caption": "grass that small bird is standing in", "question": ["is there grass ?", "is there small bird ?"], "prompt": "grass that small {} is standing in"}, {"index": 272, "image_id": 2344341, "entity": "bird", "caption": "Feathers of the bird laid back", "question": ["are there feathers ?", "is there the bird ?"], "prompt": "Feathers of the {} laid back"}, {"index": 273, "image_id": 2344328, "entity": "bird", "caption": "A birds head and neck.", "question": ["are there a birds ?", "is there neck ?"], "prompt": "A {}s head and neck."}, {"index": 274, "image_id": 2344328, "entity": "bird", "caption": "bird has grey beak", "question": ["is there bird ?", "is there grey beak ?"], "prompt": "{} has grey beak"}, {"index": 275, "image_id": 2344328, "entity": "bird", "caption": "bird has red eyes", "question": ["is there bird ?", "are there red eyes ?"], "prompt": "{} has red eyes"}, {"index": 276, "image_id": 2344328, "entity": "bird", "caption": "bird has black head", "question": ["is there bird ?", "is there black head ?"], "prompt": "{} has black head"}, {"index": 277, "image_id": 2344328, "entity": "bird", "caption": "bird has blue neck", "question": ["is there bird ?", "is there blue neck ?"], "prompt": "{} has blue neck"}, {"index": 278, "image_id": 2341438, "entity": "bird", "caption": "head of bird is gray", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is gray"}, {"index": 279, "image_id": 2341438, "entity": "bird", "caption": "eye of bird is red", "question": ["is there eye ?", "is there bird ?"], "prompt": "eye of {} is red"}, {"index": 280, "image_id": 2341058, "entity": "bird", "caption": "two birds standing on branches", "question": ["are there two birds ?", "are there branches ?"], "prompt": "two {}s standing on branches"}, {"index": 281, "image_id": 2339258, "entity": "bird", "caption": "the all black beak on the birds face", "question": ["is there the all black beak ?", "are there the birds ?"], "prompt": "the all black beak on the {}s face"}, {"index": 282, "image_id": 2339258, "entity": "bird", "caption": "the claw on the birds foot", "question": ["is there the claw ?", "are there the birds ?"], "prompt": "the claw on the {}s foot"}, {"index": 283, "image_id": 2338848, "entity": "bird", "caption": "the bird is eating the fruit", "question": ["is there the bird ?", "is there the fruit ?"], "prompt": "the {} is eating the fruit"}, {"index": 284, "image_id": 2338848, "entity": "bird", "caption": "A bird is eating some fruit", "question": ["is there a bird ?", "is there some fruit ?"], "prompt": "A {} is eating some fruit"}, {"index": 285, "image_id": 2338848, "entity": "bird", "caption": "A bird is getting some food", "question": ["is there a bird ?", "is there some food ?"], "prompt": "A {} is getting some food"}, {"index": 286, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is red and black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is red and black."}, {"index": 287, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is round.", "question": ["are there the birds ?"], "prompt": "The {}s eye is round."}, {"index": 288, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is small.", "question": ["are there the birds ?"], "prompt": "The {}s eye is small."}, {"index": 289, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are blue.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are blue."}, {"index": 290, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are red.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are red."}, {"index": 291, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are green.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are green."}, {"index": 292, "image_id": 2338848, "entity": "bird", "caption": "the birds beak is orange", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is orange"}, {"index": 293, "image_id": 2338638, "entity": "bird", "caption": "Blue and black bird standing on wood.", "question": ["is there blue and black bird ?", "is there wood ?"], "prompt": "Blue and black {} standing on wood."}, {"index": 294, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s tail", "question": ["is there tail ?"], "prompt": "this is a {}''s tail"}, {"index": 295, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s beak", "question": ["is there a bird''s beak ?"], "prompt": "this is a {}''s beak"}, {"index": 296, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s head", "question": ["is there a bird''s head ?"], "prompt": "this is a {}''s head"}, {"index": 297, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s wing", "question": ["is there wing ?"], "prompt": "this is a {}''s wing"}, {"index": 298, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s eye", "question": ["is there eye ?"], "prompt": "this is a {}''s eye"}, {"index": 299, "image_id": 2338318, "entity": "bird", "caption": "bird is on brown branch", "question": ["is there bird ?", "is there brown branch ?"], "prompt": "{} is on brown branch"}, {"index": 300, "image_id": 2336219, "entity": "bird", "caption": "bird has white eyes", "question": ["is there bird ?", "are there white eyes ?"], "prompt": "{} has white eyes"}, {"index": 301, "image_id": 2335105, "entity": "bird", "caption": "the ear lobes on the bird are red", "question": ["are there the ear lobes ?", "is there the bird ?"], "prompt": "the ear lobes on the {} are red"}, {"index": 302, "image_id": 2332681, "entity": "bird", "caption": "the bird has tiny ears", "question": ["is there the bird ?", "are there tiny ears ?"], "prompt": "the {} has tiny ears"}, {"index": 303, "image_id": 2331468, "entity": "bird", "caption": "the bird is in the water ", "question": ["is there the bird ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 304, "image_id": 2331215, "entity": "bird", "caption": "the birds wings are up", "question": ["are there the birds ?", "are there wings ?"], "prompt": "the {}s wings are up"}, {"index": 305, "image_id": 2331215, "entity": "bird", "caption": "A bird is afraid of the elephant", "question": ["is there a bird ?", "is there the elephant ?"], "prompt": "A {} is afraid of the elephant"}, {"index": 306, "image_id": 2331215, "entity": "bird", "caption": "A bird has spread out its wings", "question": ["is there a bird ?", "are there its wings ?"], "prompt": "A {} has spread out its wings"}, {"index": 307, "image_id": 2331215, "entity": "bird", "caption": "The bird has a long wingspan", "question": ["is there the bird ?", "is there a long wingspan ?"], "prompt": "The {} has a long wingspan"}, {"index": 308, "image_id": 2330695, "entity": "bird", "caption": "bird has a black beak ", "question": ["is there bird ?", "is there a black beak ?"], "prompt": "{} has a black beak "}, {"index": 309, "image_id": 2330695, "entity": "bird", "caption": "bird has gray feet", "question": ["is there bird ?", "are there gray feet ?"], "prompt": "{} has gray feet"}, {"index": 310, "image_id": 2330307, "entity": "bird", "caption": "bird has beady eye", "question": ["is there bird ?", "is there beady eye ?"], "prompt": "{} has beady eye"}, {"index": 311, "image_id": 2330307, "entity": "bird", "caption": "bird has black beak", "question": ["is there bird ?", "is there black beak ?"], "prompt": "{} has black beak"}, {"index": 312, "image_id": 2330307, "entity": "bird", "caption": "bird has 2 feet", "question": ["is there bird ?", "are there 2 feet ?"], "prompt": "{} has 2 feet"}, {"index": 313, "image_id": 2330080, "entity": "bird", "caption": "The bird is looking a yard gnome", "question": ["is there the bird ?", "is there a yard gnome ?"], "prompt": "The {} is looking a yard gnome"}, {"index": 314, "image_id": 2330080, "entity": "bird", "caption": "The bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "The {} has a yellow beak"}, {"index": 315, "image_id": 2328246, "entity": "bird", "caption": "tree leaves behind the bird", "question": ["is there tree ?", "is there the bird ?"], "prompt": "tree leaves behind the {}"}, {"index": 316, "image_id": 2326461, "entity": "bird", "caption": "white feathers on a birds head", "question": ["are there white feathers ?", "are there a birds ?"], "prompt": "white feathers on a {}s head"}, {"index": 317, "image_id": 2326461, "entity": "bird", "caption": "The bird is on a handle", "question": ["is there the bird ?", "is there a handle ?"], "prompt": "The {} is on a handle"}, {"index": 318, "image_id": 2326461, "entity": "bird", "caption": "Small black bird beak", "question": ["is there small black bird beak ?"], "prompt": "Small black {} beak"}, {"index": 319, "image_id": 2325550, "entity": "bird", "caption": "the bird is on a pole", "question": ["is there the bird ?", "is there a pole ?"], "prompt": "the {} is on a pole"}, {"index": 320, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow feathers", "question": ["is there the bird ?", "are there yellow feathers ?"], "prompt": "the {} has yellow feathers"}, {"index": 321, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow spiked hair", "question": ["is there the bird ?", "is there yellow spiked hair ?"], "prompt": "the {} has yellow spiked hair"}, {"index": 322, "image_id": 2325324, "entity": "bird", "caption": "bird has green breast", "question": ["is there bird ?", "is there green breast ?"], "prompt": "{} has green breast"}, {"index": 323, "image_id": 2325324, "entity": "bird", "caption": "bird has green tail", "question": ["is there bird ?", "is there green tail ?"], "prompt": "{} has green tail"}, {"index": 324, "image_id": 2325324, "entity": "bird", "caption": "bird has green head", "question": ["is there bird ?", "is there green head ?"], "prompt": "{} has green head"}, {"index": 325, "image_id": 2325324, "entity": "bird", "caption": "bird has orange talons", "question": ["is there bird ?", "are there orange talons ?"], "prompt": "{} has orange talons"}, {"index": 326, "image_id": 2325324, "entity": "bird", "caption": "bird has grey claws", "question": ["is there bird ?", "are there grey claws ?"], "prompt": "{} has grey claws"}, {"index": 327, "image_id": 2325324, "entity": "bird", "caption": "bird stands on banana", "question": ["is there bird ?", "is there banana ?"], "prompt": "{} stands on banana"}, {"index": 328, "image_id": 2325324, "entity": "bird", "caption": "Green bird is standing on banana.", "question": ["is there green bird ?", "is there banana ?"], "prompt": "Green {} is standing on banana."}, {"index": 329, "image_id": 2325324, "entity": "bird", "caption": "Light is shining on bird.", "question": ["is there light ?", "is there bird ?"], "prompt": "Light is shining on {}."}, {"index": 330, "image_id": 2325324, "entity": "bird", "caption": "bird has orange feet", "question": ["is there bird ?", "are there orange feet ?"], "prompt": "{} has orange feet"}, {"index": 331, "image_id": 2325324, "entity": "bird", "caption": "bird has black nails", "question": ["is there bird ?", "are there black nails ?"], "prompt": "{} has black nails"}, {"index": 332, "image_id": 2325324, "entity": "bird", "caption": "bird's eye is purple blue and black", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is purple blue and black"}, {"index": 333, "image_id": 2323975, "entity": "bird", "caption": "Orange beak on a brown and white bird.", "question": ["is there orange beak ?", "is there a brown and white bird ?"], "prompt": "Orange beak on a brown and white {}."}, {"index": 334, "image_id": 2323560, "entity": "bird", "caption": "bird perched on a scarred limb", "question": ["is there bird ?", "is there a scarred limb ?"], "prompt": "{} perched on a scarred limb"}, {"index": 335, "image_id": 2322830, "entity": "bird", "caption": "bird is drinking water from wood bucket", "question": ["is there bird ?", "is there water ?", "is there wood bucket ?"], "prompt": "{} is drinking water from wood bucket"}, {"index": 336, "image_id": 2322624, "entity": "bird", "caption": "The birds beak has a point.", "question": ["are there the birds beak ?", "is there a point ?"], "prompt": "The {}s beak has a point."}, {"index": 337, "image_id": 2322624, "entity": "bird", "caption": "The birds chest is white.", "question": ["are there the birds ?"], "prompt": "The {}s chest is white."}, {"index": 338, "image_id": 2320805, "entity": "bird", "caption": "orange bird with black and white wings perched", "question": ["are there black and white wings ?"], "prompt": "orange {} with black and white wings perched"}, {"index": 339, "image_id": 2320805, "entity": "bird", "caption": "bird's beak contains blood and other animal remains", "question": ["is there bird's beak ?", "is there blood ?", "is there other animal ?"], "prompt": "{}'s beak contains blood and other animal remains"}, {"index": 340, "image_id": 2320805, "entity": "bird", "caption": "bird pereched of grey rock", "question": ["is there grey rock ?"], "prompt": "{} pereched of grey rock"}, {"index": 341, "image_id": 2320805, "entity": "bird", "caption": "a large tree branch with a bird nested on it", "question": ["is there a large tree branch ?", "is there a bird ?"], "prompt": "a large tree branch with a {} nested on it"}, {"index": 342, "image_id": 2320805, "entity": "bird", "caption": "a tree limb with a bird rested on it", "question": ["is there a tree limb ?", "is there a bird ?"], "prompt": "a tree limb with a {} rested on it"}, {"index": 343, "image_id": 2320805, "entity": "bird", "caption": "bird has grey head", "question": ["is there bird ?", "is there grey head ?"], "prompt": "{} has grey head"}, {"index": 344, "image_id": 2318439, "entity": "bird", "caption": "Baby bird is standing in ground.", "question": ["is there baby bird ?", "is there ground ?"], "prompt": "Baby {} is standing in ground."}, {"index": 345, "image_id": 2318290, "entity": "bird", "caption": "section of brown tipped bird wing feather", "question": ["is there section ?", "is there bird wing feather ?"], "prompt": "section of brown tipped {} wing feather"}, {"index": 346, "image_id": 2318104, "entity": "bird", "caption": "a bird that is standing outside", "question": ["is there a bird ?"], "prompt": "a {} that is standing outside"}, {"index": 347, "image_id": 2317875, "entity": "bird", "caption": "the bird has long gray legs", "question": ["is there the bird ?", "are there long gray legs ?"], "prompt": "the {} has long gray legs"}, {"index": 348, "image_id": 2317875, "entity": "bird", "caption": "the bird has a small beady eye", "question": ["is there the bird ?", "is there a small beady eye ?"], "prompt": "the {} has a small beady eye"}, {"index": 349, "image_id": 2317875, "entity": "bird", "caption": "the bird has a big beak", "question": ["is there the bird ?", "is there a big beak ?"], "prompt": "the {} has a big beak"}, {"index": 350, "image_id": 2317875, "entity": "bird", "caption": "the bird has tons of feathers", "question": ["is there the bird ?", "are there tons ?", "are there feathers ?"], "prompt": "the {} has tons of feathers"}, {"index": 351, "image_id": 2317875, "entity": "bird", "caption": "the bird has its mouth open", "question": ["is there the bird ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 352, "image_id": 2317875, "entity": "bird", "caption": "the bird is standing in grass", "question": ["is there the bird ?", "is there grass ?"], "prompt": "the {} is standing in grass"}, {"index": 353, "image_id": 2317875, "entity": "bird", "caption": "the bird is near a pond", "question": ["is there the bird ?", "is there a pond ?"], "prompt": "the {} is near a pond"}, {"index": 354, "image_id": 2317249, "entity": "bird", "caption": "The birds are out in the forest", "question": ["are there the birds ?", "is there the forest ?"], "prompt": "The {}s are out in the forest"}, {"index": 355, "image_id": 2317249, "entity": "bird", "caption": "The birds are watching for predators", "question": ["are there the birds ?", "are there predators ?"], "prompt": "The {}s are watching for predators"}, {"index": 356, "image_id": 2316597, "entity": "bird", "caption": "the pool of bird feeding ", "question": ["is there the pool ?", "is there bird feeding ?"], "prompt": "the pool of {} feeding "}, {"index": 357, "image_id": 2316597, "entity": "bird", "caption": "a bird iwth a beak", "question": ["is there a bird ?", "is there a beak ?"], "prompt": "a {} iwth a beak"}, {"index": 358, "image_id": 2316285, "entity": "bird", "caption": "bird perched on a branch", "question": ["is there bird ?", "is there a branch ?"], "prompt": "{} perched on a branch"}, {"index": 359, "image_id": 2414525, "entity": "bird", "caption": "man giving bird wine", "question": ["is there man ?", "is there bird wine ?"], "prompt": "man giving {} wine"}, {"index": 360, "image_id": 2413894, "entity": "bird", "caption": "the bird has two eyes", "question": ["is there the bird ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 361, "image_id": 2413894, "entity": "bird", "caption": "The bird is standing in calm water.", "question": ["is there the bird ?", "is there calm water ?"], "prompt": "The {} is standing in calm water."}, {"index": 362, "image_id": 2413604, "entity": "bird", "caption": "the bird is on the chair", "question": ["is there the bird ?", "is there the chair ?"], "prompt": "the {} is on the chair"}, {"index": 363, "image_id": 2413604, "entity": "bird", "caption": "The bird is outside resting on the edge of a wicker basket chair. ", "question": ["is there the bird ?", "is there the edge ?", "is there a wicker basket chair ?"], "prompt": "The {} is outside resting on the edge of a wicker basket chair. "}, {"index": 364, "image_id": 2413604, "entity": "bird", "caption": "The bird has thick black feathers. ", "question": ["is there the bird ?", "are there thick black feathers ?"], "prompt": "The {} has thick black feathers. "}, {"index": 365, "image_id": 2413604, "entity": "bird", "caption": "little bird has extremely expressive eyes", "question": ["is there little bird ?", "are there extremely expressive eyes ?"], "prompt": "little {} has extremely expressive eyes"}, {"index": 366, "image_id": 2413070, "entity": "bird", "caption": "two birds feet", "question": ["are there two birds ?"], "prompt": "two {}s feet"}, {"index": 367, "image_id": 2416459, "entity": "bird", "caption": "bird perched on the flower", "question": ["is there bird ?", "is there the flower ?"], "prompt": "{} perched on the flower"}, {"index": 368, "image_id": 2417074, "entity": "bird", "caption": "the bird has red color beak", "question": ["is there the bird ?", "is there red color beak ?"], "prompt": "the {} has red color beak"}, {"index": 369, "image_id": 2417074, "entity": "bird", "caption": "the bird has paddle feet", "question": ["is there the bird ?", "are there paddle feet ?"], "prompt": "the {} has paddle feet"}, {"index": 370, "image_id": 2417074, "entity": "bird", "caption": "the wings of the bird are gray", "question": ["are there the wings ?", "is there the bird ?"], "prompt": "the wings of the {} are gray"}, {"index": 371, "image_id": 2417074, "entity": "bird", "caption": "birds foot ", "question": ["are there birds ?"], "prompt": "{}s foot "}, {"index": 372, "image_id": 2417074, "entity": "bird", "caption": "beak of bird is closed", "question": ["is there beak ?", "is there bird ?"], "prompt": "beak of {} is closed"}, {"index": 373, "image_id": 2417074, "entity": "bird", "caption": "foot of bird is on dock", "question": ["is there foot ?", "is there bird ?", "is there dock ?"], "prompt": "foot of {} is on dock"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n01532829.json b/data/imagenet/compositions/prompts/n01532829.json
new file mode 100644
index 0000000000000000000000000000000000000000..d2f6a90f12f4f06cb56b687a87e91c16757b699c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01532829.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2220, "entity": "bird", "caption": "the bird has a fish in its mouth", "question": ["is there the bird ?", "is there a fish ?", "is there its mouth ?"], "prompt": "the {} has a fish in its mouth"}, {"index": 1, "image_id": 2612, "entity": "bird", "caption": "bird has tan beak", "question": ["is there bird ?", "is there tan beak ?"], "prompt": "{} has tan beak"}, {"index": 2, "image_id": 2612, "entity": "bird", "caption": "bird has brown eye", "question": ["is there bird ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 3, "image_id": 2612, "entity": "bird", "caption": "bird has black feathers", "question": ["is there bird ?", "are there black feathers ?"], "prompt": "{} has black feathers"}, {"index": 4, "image_id": 2613, "entity": "bird", "caption": "birds have orange beaks", "question": ["are there birds ?", "are there orange beaks ?"], "prompt": "{}s have orange beaks"}, {"index": 5, "image_id": 2613, "entity": "bird", "caption": "bird has white feathers", "question": ["is there bird ?", "are there white feathers ?"], "prompt": "{} has white feathers"}, {"index": 6, "image_id": 2613, "entity": "bird", "caption": "bird has grey leg", "question": ["is there bird ?"], "prompt": "{} has grey leg"}, {"index": 7, "image_id": 2613, "entity": "bird", "caption": "bird stands on one leg", "question": ["is there bird ?", "is there one leg ?"], "prompt": "{} stands on one leg"}, {"index": 8, "image_id": 2619, "entity": "bird", "caption": "the eye of the bird is black", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "the eye of the {} is black"}, {"index": 9, "image_id": 2619, "entity": "bird", "caption": "the bird feet is black", "question": ["are there the bird feet ?"], "prompt": "the {} feet is black"}, {"index": 10, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food out of the person's hand", "question": ["is there the bird ?", "is there food ?", "is there the person's hand ?"], "prompt": "The {} is eating food out of the person's hand"}, {"index": 11, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food", "question": ["is there the bird ?", "is there food ?"], "prompt": "The {} is eating food"}, {"index": 12, "image_id": 2415095, "entity": "bird", "caption": "A bird with red feathers is eating food", "question": ["is there a bird ?", "are there red feathers ?", "is there food ?"], "prompt": "A {} with red feathers is eating food"}, {"index": 13, "image_id": 2415095, "entity": "bird", "caption": "The red feather bird is eating food out of a person's hand", "question": ["is there the red feather bird ?", "is there food ?", "is there a person's hand ?"], "prompt": "The red feather {} is eating food out of a person's hand"}, {"index": 14, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating an apples from the person's hand", "question": ["is there the bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The {} is eating an apples from the person's hand"}, {"index": 15, "image_id": 2415095, "entity": "bird", "caption": "The red-feathered bird is eating an apples from the person's hand", "question": ["is there the red-feathered bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The red-feathered {} is eating an apples from the person's hand"}, {"index": 16, "image_id": 2414024, "entity": "bird", "caption": "little bird with chest puffed out", "question": ["is there little bird ?", "is there chest ?"], "prompt": "little {} with chest puffed out"}, {"index": 17, "image_id": 2412521, "entity": "bird", "caption": "bird has red patch", "question": ["is there bird ?", "is there red patch ?"], "prompt": "{} has red patch"}, {"index": 18, "image_id": 2412521, "entity": "bird", "caption": "wood is under bird", "question": ["is there wood ?", "is there bird ?"], "prompt": "wood is under {}"}, {"index": 19, "image_id": 2412521, "entity": "bird", "caption": "black bird has it's mouth open", "question": ["is there black bird ?"], "prompt": "black {} has it's mouth open"}, {"index": 20, "image_id": 2412521, "entity": "bird", "caption": "bird perched on log", "question": ["is there bird ?", "is there log ?"], "prompt": "{} perched on log"}, {"index": 21, "image_id": 2412521, "entity": "bird", "caption": "black bird leg slanted from body", "question": ["is there black bird leg ?", "is there body ?"], "prompt": "black {} leg slanted from body"}, {"index": 22, "image_id": 2412061, "entity": "bird", "caption": "Black bird beak", "question": ["is there black bird beak ?"], "prompt": "Black {} beak"}, {"index": 23, "image_id": 2412061, "entity": "bird", "caption": "Black-feathered bird looks up to the sky", "question": ["is there black-feathered bird ?", "is there the sky ?"], "prompt": "Black-feathered {} looks up to the sky"}, {"index": 24, "image_id": 2409570, "entity": "bird", "caption": "the bird has two feet", "question": ["is there the bird ?", "are there two feet ?"], "prompt": "the {} has two feet"}, {"index": 25, "image_id": 2409570, "entity": "bird", "caption": "the bird is biting its tail", "question": ["is there the bird ?", "is there its tail ?"], "prompt": "the {} is biting its tail"}, {"index": 26, "image_id": 2409570, "entity": "bird", "caption": "the bird has wings", "question": ["is there the bird ?", "are there wings ?"], "prompt": "the {} has wings"}, {"index": 27, "image_id": 2409570, "entity": "bird", "caption": "White bird with black tail feathers standing on the sand", "question": ["is there white bird ?", "are there black tail feathers ?", "is there the sand ?"], "prompt": "White {} with black tail feathers standing on the sand"}, {"index": 28, "image_id": 2409306, "entity": "bird", "caption": "a fragment of ground that a young bird is standing on", "question": ["is there a fragment ?", "is there ground ?", "is there a young bird ?"], "prompt": "a fragment of ground that a young {} is standing on"}, {"index": 29, "image_id": 2409306, "entity": "bird", "caption": "head of bird is polka dotted", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is polka dotted"}, {"index": 30, "image_id": 2409306, "entity": "bird", "caption": "a baby bird stands on the ground", "question": ["is there a baby bird ?", "is there the ground ?"], "prompt": "a baby {} stands on the ground"}, {"index": 31, "image_id": 2409215, "entity": "bird", "caption": "The bird's beak is orange. ", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is orange. "}, {"index": 32, "image_id": 2409215, "entity": "bird", "caption": "The bird is flying above water. ", "question": ["is there the bird ?", "is there water ?"], "prompt": "The {} is flying above water. "}, {"index": 33, "image_id": 2409215, "entity": "bird", "caption": "End of the bird's wing that is primarily black", "question": ["is there end ?", "is there the bird's wing ?"], "prompt": "End of the {}'s wing that is primarily black"}, {"index": 34, "image_id": 2409045, "entity": "bird", "caption": "Neck of bird has S shape", "question": ["is there neck ?", "is there bird ?", "are there s ?", "is there shape ?"], "prompt": "Neck of {} has S shape"}, {"index": 35, "image_id": 2409045, "entity": "bird", "caption": "Grey bird rising into the air", "question": ["is there grey bird ?", "is there the air ?"], "prompt": "Grey {} rising into the air"}, {"index": 36, "image_id": 2409010, "entity": "bird", "caption": "a bird has a small creature in its mouth", "question": ["is there a bird ?", "is there a small creature ?", "is there its mouth ?"], "prompt": "a {} has a small creature in its mouth"}, {"index": 37, "image_id": 2409010, "entity": "bird", "caption": "a bird walks along the wet sand", "question": ["is there a bird ?", "is there the wet sand ?"], "prompt": "a {} walks along the wet sand"}, {"index": 38, "image_id": 2408592, "entity": "bird", "caption": "a bird stands at the edge of the water", "question": ["is there a bird ?", "is there the edge ?", "is there the water ?"], "prompt": "a {} stands at the edge of the water"}, {"index": 39, "image_id": 2408592, "entity": "bird", "caption": "The bird has webbed feet", "question": ["is there the bird ?"], "prompt": "The {} has webbed feet"}, {"index": 40, "image_id": 2408592, "entity": "bird", "caption": "The bird is standing in the dirt", "question": ["is there the bird ?", "is there the dirt ?"], "prompt": "The {} is standing in the dirt"}, {"index": 41, "image_id": 2408592, "entity": "bird", "caption": "the ground the bird is standing on", "question": ["is there the ground ?", "is there the bird ?"], "prompt": "the ground the {} is standing on"}, {"index": 42, "image_id": 2408299, "entity": "bird", "caption": "the bird is hiding in a plant", "question": ["is there the bird ?", "is there a plant ?"], "prompt": "the {} is hiding in a plant"}, {"index": 43, "image_id": 2408299, "entity": "bird", "caption": "the bird has a white belly", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 44, "image_id": 2407737, "entity": "bird", "caption": "this is a birds eye", "question": ["are there a birds ?"], "prompt": "this is a {}s eye"}, {"index": 45, "image_id": 2407737, "entity": "bird", "caption": "this is a bird tail", "question": ["is there a bird tail ?"], "prompt": "this is a {} tail"}, {"index": 46, "image_id": 2407737, "entity": "bird", "caption": "the bird has sharp beak", "question": ["is there the bird ?", "is there sharp beak ?"], "prompt": "the {} has sharp beak"}, {"index": 47, "image_id": 2407737, "entity": "bird", "caption": "the branches are beside the bird", "question": ["are there the branches ?", "is there the bird ?"], "prompt": "the branches are beside the {}"}, {"index": 48, "image_id": 2407737, "entity": "bird", "caption": "the bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "the {} has thin legs"}, {"index": 49, "image_id": 2407737, "entity": "bird", "caption": "the bird has black eyes", "question": ["is there the bird ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 50, "image_id": 2407316, "entity": "bird", "caption": "the bird has black legs", "question": ["is there the bird ?", "are there black legs ?"], "prompt": "the {} has black legs"}, {"index": 51, "image_id": 2407316, "entity": "bird", "caption": "the bird has three toes", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "the {} has three toes"}, {"index": 52, "image_id": 2406956, "entity": "bird", "caption": "black feathers on top of birds head", "question": ["are there black feathers ?", "is there top ?", "are there birds ?"], "prompt": "black feathers on top of {}s head"}, {"index": 53, "image_id": 2406956, "entity": "bird", "caption": "this is the bird's eye", "question": ["is there the bird's eye ?"], "prompt": "this is the {}'s eye"}, {"index": 54, "image_id": 2406956, "entity": "bird", "caption": "an object is in the bird's beak", "question": ["is there an object ?", "is there the bird's beak ?"], "prompt": "an object is in the {}'s beak"}, {"index": 55, "image_id": 2406956, "entity": "bird", "caption": "the bird's eye is black in color", "question": ["is there the bird's eye ?", "is there color ?"], "prompt": "the {}'s eye is black in color"}, {"index": 56, "image_id": 2404798, "entity": "bird", "caption": "bird has long beak", "question": ["is there bird ?", "is there long beak ?"], "prompt": "{} has long beak"}, {"index": 57, "image_id": 2404798, "entity": "bird", "caption": "bird has pink feathers", "question": ["is there bird ?", "are there pink feathers ?"], "prompt": "{} has pink feathers"}, {"index": 58, "image_id": 2404798, "entity": "bird", "caption": "bird has red eye", "question": ["is there bird ?", "is there red eye ?"], "prompt": "{} has red eye"}, {"index": 59, "image_id": 2404798, "entity": "bird", "caption": "head of bird is featherless", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is featherless"}, {"index": 60, "image_id": 2404798, "entity": "bird", "caption": "bird has green tag on leg", "question": ["is there bird ?", "is there green tag ?", "is there leg ?"], "prompt": "{} has green tag on leg"}, {"index": 61, "image_id": 2404798, "entity": "bird", "caption": "The bird is in the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 62, "image_id": 2404798, "entity": "bird", "caption": "The bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "The {} has a beak"}, {"index": 63, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is open", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 64, "image_id": 2404798, "entity": "bird", "caption": "The bird is wading in the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is wading in the water."}, {"index": 65, "image_id": 2404798, "entity": "bird", "caption": "The bird has a long beak.", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak."}, {"index": 66, "image_id": 2404798, "entity": "bird", "caption": "The bird has light and dark pink feathers.", "question": ["is there the bird ?", "are there light and dark pink feathers ?"], "prompt": "The {} has light and dark pink feathers."}, {"index": 67, "image_id": 2404798, "entity": "bird", "caption": "The bird has a green band around the leg.", "question": ["is there the bird ?", "is there a green band ?", "is there the leg ?"], "prompt": "The {} has a green band around the leg."}, {"index": 68, "image_id": 2404798, "entity": "bird", "caption": "The bird has white neck feathers.", "question": ["is there the bird ?", "are there white neck feathers ?"], "prompt": "The {} has white neck feathers."}, {"index": 69, "image_id": 2404798, "entity": "bird", "caption": "Large rocks are behind the birds.", "question": ["are there large rocks ?", "are there the birds ?"], "prompt": "Large rocks are behind the {}s."}, {"index": 70, "image_id": 2404798, "entity": "bird", "caption": "Water is dripping from the bird's beak.", "question": ["is there water ?", "is there the bird's beak ?"], "prompt": "Water is dripping from the {}'s beak."}, {"index": 71, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is yellow and black.", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is yellow and black."}, {"index": 72, "image_id": 2404673, "entity": "bird", "caption": "the bird is on a long black metal piece", "question": ["is there the bird ?", "is there a long black metal piece ?"], "prompt": "the {} is on a long black metal piece"}, {"index": 73, "image_id": 2404673, "entity": "bird", "caption": "glass sun catchers are hanging in front of the wooden bird", "question": ["are there glass sun catchers ?", "is there front ?", "is there the wooden bird ?"], "prompt": "glass sun catchers are hanging in front of the wooden {}"}, {"index": 74, "image_id": 2404673, "entity": "bird", "caption": "the bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "the {} has a beak"}, {"index": 75, "image_id": 2404673, "entity": "bird", "caption": "the window is reflecting the bird", "question": ["is there the window ?", "is there the bird ?"], "prompt": "the window is reflecting the {}"}, {"index": 76, "image_id": 2404673, "entity": "bird", "caption": "the bird has 1 leg", "question": ["is there the bird ?", "is there 1 leg ?"], "prompt": "the {} has 1 leg"}, {"index": 77, "image_id": 2404673, "entity": "bird", "caption": "the bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "the {} has a long beak"}, {"index": 78, "image_id": 2404673, "entity": "bird", "caption": "the bird's eye is black", "question": ["is there the bird's eye ?"], "prompt": "the {}'s eye is black"}, {"index": 79, "image_id": 2404673, "entity": "bird", "caption": "the bird's leg is long", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is long"}, {"index": 80, "image_id": 2404673, "entity": "bird", "caption": "the bird is sitting on the window", "question": ["is there the bird ?", "is there the window ?"], "prompt": "the {} is sitting on the window"}, {"index": 81, "image_id": 2404673, "entity": "bird", "caption": "The bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak"}, {"index": 82, "image_id": 2403435, "entity": "bird", "caption": "person is feeding bird", "question": ["is there person ?", "is there bird ?"], "prompt": "person is feeding {}"}, {"index": 83, "image_id": 2401304, "entity": "bird", "caption": "a bird is standing on weathered wood", "question": ["is there a bird ?", "is there weathered wood ?"], "prompt": "a {} is standing on weathered wood"}, {"index": 84, "image_id": 2401079, "entity": "bird", "caption": "bird's beak is black and red", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black and red"}, {"index": 85, "image_id": 2401079, "entity": "bird", "caption": "the bird's feet are black", "question": ["are there the bird's feet ?"], "prompt": "the {}'s feet are black"}, {"index": 86, "image_id": 2400985, "entity": "bird", "caption": "the bird has a short black beak", "question": ["is there the bird ?", "is there a short black beak ?"], "prompt": "the {} has a short black beak"}, {"index": 87, "image_id": 2400985, "entity": "bird", "caption": "the bird has sharp claws", "question": ["is there the bird ?", "are there sharp claws ?"], "prompt": "the {} has sharp claws"}, {"index": 88, "image_id": 2400985, "entity": "bird", "caption": "A birds left side wing. ", "question": ["are there a birds ?", "is there side wing ?"], "prompt": "A {}s left side wing. "}, {"index": 89, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds right foot", "question": ["are there the fully shown birds ?"], "prompt": "The fully shown {}s right foot"}, {"index": 90, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds left foot", "question": ["are there the fully shown birds ?", "is there foot ?"], "prompt": "The fully shown {}s left foot"}, {"index": 91, "image_id": 2396390, "entity": "bird", "caption": "bird perched on wooden pole ", "question": ["is there bird ?", "is there wooden pole ?"], "prompt": "{} perched on wooden pole "}, {"index": 92, "image_id": 2396390, "entity": "bird", "caption": "bird angled sideways with feet tightly gripping", "question": ["is there bird ?", "are there feet ?"], "prompt": "{} angled sideways with feet tightly gripping"}, {"index": 93, "image_id": 2396109, "entity": "bird", "caption": "The bird has yellow eyes.", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes."}, {"index": 94, "image_id": 2396109, "entity": "bird", "caption": "The bird stands on the tree.", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "The {} stands on the tree."}, {"index": 95, "image_id": 2396109, "entity": "bird", "caption": "this is a bird", "question": ["is there a bird ?"], "prompt": "this is a {}"}, {"index": 96, "image_id": 2396109, "entity": "bird", "caption": "the bird is on the tree", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "the {} is on the tree"}, {"index": 97, "image_id": 2396109, "entity": "bird", "caption": "the bird has yellow eyes", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "the {} has yellow eyes"}, {"index": 98, "image_id": 2396109, "entity": "bird", "caption": "the bird's legs are long", "question": ["are there the bird's legs ?"], "prompt": "the {}'s legs are long"}, {"index": 99, "image_id": 2396109, "entity": "bird", "caption": "The bird has a pointy beak.", "question": ["is there the bird ?", "is there a pointy beak ?"], "prompt": "The {} has a pointy beak."}, {"index": 100, "image_id": 2396109, "entity": "bird", "caption": "The bird has two legs.", "question": ["is there the bird ?", "are there two legs ?"], "prompt": "The {} has two legs."}, {"index": 101, "image_id": 2396109, "entity": "bird", "caption": "The bird has a yellow eye.", "question": ["is there the bird ?", "is there a yellow eye ?"], "prompt": "The {} has a yellow eye."}, {"index": 102, "image_id": 2396109, "entity": "bird", "caption": "The bird has a wing.", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "The {} has a wing."}, {"index": 103, "image_id": 2395577, "entity": "bird", "caption": "the bird has a wing", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "the {} has a wing"}, {"index": 104, "image_id": 2395577, "entity": "bird", "caption": "the bird has an eye", "question": ["is there the bird ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 105, "image_id": 2394957, "entity": "bird", "caption": "bird stand on rim of bowl", "question": ["is there bird ?", "is there rim ?", "is there bowl ?"], "prompt": "{} stand on rim of bowl"}, {"index": 106, "image_id": 2394957, "entity": "bird", "caption": "bird's head is black and blue in color", "question": ["is there bird's head ?", "is there color ?"], "prompt": "{}'s head is black and blue in color"}, {"index": 107, "image_id": 2394957, "entity": "bird", "caption": "bird's eye is red", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is red"}, {"index": 108, "image_id": 2393198, "entity": "bird", "caption": "the birds long beak", "question": ["are there the birds ?"], "prompt": "the {}s long beak"}, {"index": 109, "image_id": 2393198, "entity": "bird", "caption": "the feathers on the birds chest", "question": ["are there the feathers ?", "are there the birds ?"], "prompt": "the feathers on the {}s chest"}, {"index": 110, "image_id": 2393198, "entity": "bird", "caption": "the log the birds standing on", "question": ["is there the log ?", "are there the birds ?"], "prompt": "the log the {}s standing on"}, {"index": 111, "image_id": 2392907, "entity": "bird", "caption": "bird has yellow legs", "question": ["is there bird ?", "are there yellow legs ?"], "prompt": "{} has yellow legs"}, {"index": 112, "image_id": 2392907, "entity": "bird", "caption": "bird has large toe nails", "question": ["is there bird ?", "are there large toe nails ?"], "prompt": "{} has large toe nails"}, {"index": 113, "image_id": 2392255, "entity": "bird", "caption": "The birds tail feathers.", "question": ["are there the birds tail feathers ?"], "prompt": "The {}s tail feathers."}, {"index": 114, "image_id": 2392255, "entity": "bird", "caption": "The bird is standing on a person's hand.", "question": ["is there the bird ?", "is there a person's hand ?"], "prompt": "The {} is standing on a person's hand."}, {"index": 115, "image_id": 2392255, "entity": "bird", "caption": "The bird has grey feathers.", "question": ["is there the bird ?", "are there grey feathers ?"], "prompt": "The {} has grey feathers."}, {"index": 116, "image_id": 2392255, "entity": "bird", "caption": "The bird has a black beak.", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "The {} has a black beak."}, {"index": 117, "image_id": 2392255, "entity": "bird", "caption": "the bird has a black beak", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "the {} has a black beak"}, {"index": 118, "image_id": 2392255, "entity": "bird", "caption": "the bird has black legs and claws", "question": ["is there the bird ?", "are there black legs ?", "are there claws ?"], "prompt": "the {} has black legs and claws"}, {"index": 119, "image_id": 2392255, "entity": "bird", "caption": "the bird's head is white and gray", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is white and gray"}, {"index": 120, "image_id": 2391103, "entity": "bird", "caption": "Top of bird's head is jet black", "question": ["is there top ?", "is there bird's head ?", "is there jet black ?"], "prompt": "Top of {}'s head is jet black"}, {"index": 121, "image_id": 2390453, "entity": "bird", "caption": "the bird has eye", "question": ["is there the bird ?", "is there eye ?"], "prompt": "the {} has eye"}, {"index": 122, "image_id": 2389247, "entity": "bird", "caption": "a birds head", "question": ["are there a birds ?"], "prompt": "a {}s head"}, {"index": 123, "image_id": 2389247, "entity": "bird", "caption": "The birds beak.", "question": ["are there the birds ?"], "prompt": "The {}s beak."}, {"index": 124, "image_id": 2388774, "entity": "bird", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the {} is in the car "}, {"index": 125, "image_id": 2388774, "entity": "bird", "caption": "The bird has small black feathers ", "question": ["is there the bird ?", "are there small black feathers ?"], "prompt": "The {} has small black feathers "}, {"index": 126, "image_id": 2387336, "entity": "bird", "caption": "part of branch birds are sitting on", "question": ["is there part ?", "are there branch birds ?"], "prompt": "part of branch {}s are sitting on"}, {"index": 127, "image_id": 2385839, "entity": "bird", "caption": "the bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "the {} has black and white feathers"}, {"index": 128, "image_id": 2384739, "entity": "bird", "caption": "bird's legs are curled", "question": ["are there bird's legs ?"], "prompt": "{}'s legs are curled"}, {"index": 129, "image_id": 2384739, "entity": "bird", "caption": "a bird is lying on the pavement", "question": ["is there a bird ?", "is there the pavement ?"], "prompt": "a {} is lying on the pavement"}, {"index": 130, "image_id": 2384739, "entity": "bird", "caption": "the bird's head is upside down", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is upside down"}, {"index": 131, "image_id": 2384739, "entity": "bird", "caption": "the black cat is lying next to the bird", "question": ["is there the black cat ?", "is there the bird ?"], "prompt": "the black cat is lying next to the {}"}, {"index": 132, "image_id": 2384582, "entity": "bird", "caption": "This bird has a red beak.", "question": ["is there this bird ?", "is there a red beak ?"], "prompt": "This {} has a red beak."}, {"index": 133, "image_id": 2384582, "entity": "bird", "caption": "The bird is standing on a sandy beach.", "question": ["is there the bird ?", "is there a sandy beach ?"], "prompt": "The {} is standing on a sandy beach."}, {"index": 134, "image_id": 2384582, "entity": "bird", "caption": "This bird has black eyes.", "question": ["is there this bird ?", "are there black eyes ?"], "prompt": "This {} has black eyes."}, {"index": 135, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white belly.", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "The {} has a white belly."}, {"index": 136, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white body.", "question": ["is there the bird ?", "is there a white body ?"], "prompt": "The {} has a white body."}, {"index": 137, "image_id": 2384582, "entity": "bird", "caption": "The bird has black and white tail feathers.", "question": ["is there the bird ?", "are there black and white tail feathers ?"], "prompt": "The {} has black and white tail feathers."}, {"index": 138, "image_id": 2384582, "entity": "bird", "caption": "The bird has orange legs.", "question": ["is there the bird ?", "are there orange legs ?"], "prompt": "The {} has orange legs."}, {"index": 139, "image_id": 2384582, "entity": "bird", "caption": "The bird has an orange beak.", "question": ["is there the bird ?", "is there an orange beak ?"], "prompt": "The {} has an orange beak."}, {"index": 140, "image_id": 2382811, "entity": "bird", "caption": "The bird is above the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is above the water"}, {"index": 141, "image_id": 2382811, "entity": "bird", "caption": "body of seabird is white", "question": ["is there body ?", "is there seabird ?"], "prompt": "body of sea{} is white"}, {"index": 142, "image_id": 2381448, "entity": "bird", "caption": "birds feet are visible", "question": ["are there birds ?", "are there feet ?"], "prompt": "{}s feet are visible"}, {"index": 143, "image_id": 2381401, "entity": "bird", "caption": "the bird has a slender beak", "question": ["is there the bird ?", "is there a slender beak ?"], "prompt": "the {} has a slender beak"}, {"index": 144, "image_id": 2381401, "entity": "bird", "caption": "the bird has stripes on his back", "question": ["is there the bird ?", "are there stripes ?", "is there his back ?"], "prompt": "the {} has stripes on his back"}, {"index": 145, "image_id": 2381401, "entity": "bird", "caption": "the birds beak is very long", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is very long"}, {"index": 146, "image_id": 2381401, "entity": "bird", "caption": "The bird is standing on the branches of the tree.", "question": ["is there the bird ?", "are there the branches ?", "is there the tree ?"], "prompt": "The {} is standing on the branches of the tree."}, {"index": 147, "image_id": 2381401, "entity": "bird", "caption": "The bird has a long black beak.", "question": ["is there the bird ?", "is there a long black beak ?"], "prompt": "The {} has a long black beak."}, {"index": 148, "image_id": 2381401, "entity": "bird", "caption": "The bird has long red legs.", "question": ["is there the bird ?", "are there long red legs ?"], "prompt": "The {} has long red legs."}, {"index": 149, "image_id": 2381401, "entity": "bird", "caption": "the bird is red and beautiful", "question": ["is there the bird ?"], "prompt": "the {} is red and beautiful"}, {"index": 150, "image_id": 2380312, "entity": "bird", "caption": "the bird has a tail", "question": ["is there the bird ?", "is there a tail ?"], "prompt": "the {} has a tail"}, {"index": 151, "image_id": 2380312, "entity": "bird", "caption": "the bird has a head", "question": ["is there the bird ?", "is there a head ?"], "prompt": "the {} has a head"}, {"index": 152, "image_id": 2380026, "entity": "bird", "caption": "the bird has a blue head.", "question": ["is there the bird ?", "is there a blue head ?"], "prompt": "the {} has a blue head."}, {"index": 153, "image_id": 2380026, "entity": "bird", "caption": "The bird has yellow and orange on it's chest.", "question": ["is there the bird ?", "is there it's chest ?"], "prompt": "The {} has yellow and orange on it's chest."}, {"index": 154, "image_id": 2380026, "entity": "bird", "caption": "The bird has three toes.", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "The {} has three toes."}, {"index": 155, "image_id": 2380026, "entity": "bird", "caption": "bird's wings are green", "question": ["are there bird's wings ?"], "prompt": "{}'s wings are green"}, {"index": 156, "image_id": 2380026, "entity": "bird", "caption": "bird has blue head", "question": ["is there bird ?", "is there blue head ?"], "prompt": "{} has blue head"}, {"index": 157, "image_id": 2380026, "entity": "bird", "caption": "bird has orange beak", "question": ["is there bird ?", "is there orange beak ?"], "prompt": "{} has orange beak"}, {"index": 158, "image_id": 2380026, "entity": "bird", "caption": "bird has green body", "question": ["is there bird ?", "is there green body ?"], "prompt": "{} has green body"}, {"index": 159, "image_id": 2380026, "entity": "bird", "caption": "bird has brown talons", "question": ["is there bird ?", "are there brown talons ?"], "prompt": "{} has brown talons"}, {"index": 160, "image_id": 2378627, "entity": "bird", "caption": "A birds beak", "question": ["are there a birds ?"], "prompt": "A {}s beak"}, {"index": 161, "image_id": 2378627, "entity": "bird", "caption": "A birds wing", "question": ["are there a birds ?"], "prompt": "A {}s wing"}, {"index": 162, "image_id": 2377993, "entity": "bird", "caption": "The birds claws are black.", "question": ["are there the birds ?", "are there claws ?"], "prompt": "The {}s claws are black."}, {"index": 163, "image_id": 2377993, "entity": "bird", "caption": "The birds eye is black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is black."}, {"index": 164, "image_id": 2377993, "entity": "bird", "caption": "The birds beak is black.", "question": ["are there the birds beak ?"], "prompt": "The {}s beak is black."}, {"index": 165, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a bird", "question": ["is there a bird ?"], "prompt": "Pink felt on a {}"}, {"index": 166, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a white bird", "question": ["is there a white bird ?"], "prompt": "Pink felt on a white {}"}, {"index": 167, "image_id": 2376795, "entity": "bird", "caption": "A bird has pink felt on it", "question": ["is there a bird ?"], "prompt": "A {} has pink felt on it"}, {"index": 168, "image_id": 2376795, "entity": "bird", "caption": "bird head turned right", "question": ["is there bird head ?"], "prompt": "{} head turned right"}, {"index": 169, "image_id": 2376340, "entity": "bird", "caption": "the birds legs ", "question": ["are there the birds ?"], "prompt": "the {}s legs "}, {"index": 170, "image_id": 2376340, "entity": "bird", "caption": "The bird has long legs. ", "question": ["is there the bird ?", "are there long legs ?"], "prompt": "The {} has long legs. "}, {"index": 171, "image_id": 2376224, "entity": "bird", "caption": "The bird's eyes are open", "question": ["are there the bird's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 172, "image_id": 2376224, "entity": "bird", "caption": "The bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "The {} has thin legs"}, {"index": 173, "image_id": 2375434, "entity": "bird", "caption": "The bird is holding a stick in its mouth", "question": ["is there the bird ?", "is there a stick ?", "is there its mouth ?"], "prompt": "The {} is holding a stick in its mouth"}, {"index": 174, "image_id": 2375434, "entity": "bird", "caption": "birds flying in the sky", "question": ["are there birds ?", "is there the sky ?"], "prompt": "{}s flying in the sky"}, {"index": 175, "image_id": 2375434, "entity": "bird", "caption": "birds flapping their wings", "question": ["are there birds ?", "are there their wings ?"], "prompt": "{}s flapping their wings"}, {"index": 176, "image_id": 2375434, "entity": "bird", "caption": "four birds flapping their wings", "question": ["are there four birds ?", "are there their wings ?"], "prompt": "four {}s flapping their wings"}, {"index": 177, "image_id": 2375434, "entity": "bird", "caption": "a bird with its wings spread to full length", "question": ["is there a bird ?", "are there its wings ?", "is there full length ?"], "prompt": "a {} with its wings spread to full length"}, {"index": 178, "image_id": 2372589, "entity": "bird", "caption": "belly of the bird is white", "question": ["is there belly ?", "is there the bird ?"], "prompt": "belly of the {} is white"}, {"index": 179, "image_id": 2372589, "entity": "bird", "caption": "bird's feet are black", "question": ["are there bird's feet ?"], "prompt": "{}'s feet are black"}, {"index": 180, "image_id": 2372589, "entity": "bird", "caption": "bird's beak is black", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black"}, {"index": 181, "image_id": 2372267, "entity": "bird", "caption": "bird has green face", "question": ["is there bird ?", "is there green face ?"], "prompt": "{} has green face"}, {"index": 182, "image_id": 2372267, "entity": "bird", "caption": "bird has white beak", "question": ["is there bird ?", "is there white beak ?"], "prompt": "{} has white beak"}, {"index": 183, "image_id": 2371979, "entity": "bird", "caption": "bird's head is black", "question": ["is there bird's head ?"], "prompt": "{}'s head is black"}, {"index": 184, "image_id": 2371979, "entity": "bird", "caption": "bird's wing is black and red", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is black and red"}, {"index": 185, "image_id": 2371266, "entity": "bird", "caption": "birds beak that is two toned", "question": ["are there birds ?"], "prompt": "{}s beak that is two toned"}, {"index": 186, "image_id": 2370174, "entity": "bird", "caption": "water is behind the bird", "question": ["is there water ?", "is there the bird ?"], "prompt": "water is behind the {}"}, {"index": 187, "image_id": 2370174, "entity": "bird", "caption": "The bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "The {} has black and white feathers"}, {"index": 188, "image_id": 2366794, "entity": "bird", "caption": "the bird's leg is skinny", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is skinny"}, {"index": 189, "image_id": 2366794, "entity": "bird", "caption": "the bird's tail is black ", "question": ["is there the bird's tail ?"], "prompt": "the {}'s tail is black "}, {"index": 190, "image_id": 2366794, "entity": "bird", "caption": "teh bird's beak is smll", "question": ["is there teh bird's beak ?", "is there smll ?"], "prompt": "teh {}'s beak is smll"}, {"index": 191, "image_id": 2366794, "entity": "bird", "caption": "the bird is on the beach ", "question": ["is there the bird ?", "is there the beach ?"], "prompt": "the {} is on the beach "}, {"index": 192, "image_id": 2366548, "entity": "bird", "caption": "the birds have long legs", "question": ["are there the birds ?", "are there long legs ?"], "prompt": "the {}s have long legs"}, {"index": 193, "image_id": 2366548, "entity": "bird", "caption": "tall grass is behind the bird", "question": ["is there tall grass ?", "is there the bird ?"], "prompt": "tall grass is behind the {}"}, {"index": 194, "image_id": 2366548, "entity": "bird", "caption": "the bird closest to us has a few black feathers", "question": ["is there the bird ?", "are there a few black feathers ?"], "prompt": "the {} closest to us has a few black feathers"}, {"index": 195, "image_id": 2365606, "entity": "bird", "caption": "This is a bird", "question": ["is there a bird ?"], "prompt": "This is a {}"}, {"index": 196, "image_id": 2364373, "entity": "bird", "caption": "The bird has brown legs.", "question": ["is there the bird ?", "are there brown legs ?"], "prompt": "The {} has brown legs."}, {"index": 197, "image_id": 2363673, "entity": "bird", "caption": "A white and grey bird with its head turned to the left. ", "question": ["is there a white and grey bird ?", "is there its head ?", "is there the left ?"], "prompt": "A white and grey {} with its head turned to the left. "}, {"index": 198, "image_id": 2362480, "entity": "bird", "caption": "this bird has skinny legs", "question": ["is there this bird ?", "are there skinny legs ?"], "prompt": "this {} has skinny legs"}, {"index": 199, "image_id": 2362036, "entity": "bird", "caption": "it is the eye of the bird", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "it is the eye of the {}"}, {"index": 200, "image_id": 2362036, "entity": "bird", "caption": "the birds left side of the wing", "question": ["are there the birds ?", "is there side ?", "is there the wing ?"], "prompt": "the {}s left side of the wing"}, {"index": 201, "image_id": 2362031, "entity": "bird", "caption": "The bird's feather are shiny.", "question": ["is there the bird's feather ?"], "prompt": "The {}'s feather are shiny."}, {"index": 202, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are glossy.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are glossy."}, {"index": 203, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are black.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are black."}, {"index": 204, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is black.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is black."}, {"index": 205, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is open.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is open."}, {"index": 206, "image_id": 2362031, "entity": "bird", "caption": "The bird's talons are gripping a rock.", "question": ["are there the bird's talons ?", "is there a rock ?"], "prompt": "The {}'s talons are gripping a rock."}, {"index": 207, "image_id": 2361417, "entity": "bird", "caption": "Blue bird's feet wrapped about branch", "question": ["are there blue bird's feet ?", "is there branch ?"], "prompt": "Blue {}'s feet wrapped about branch"}, {"index": 208, "image_id": 2360048, "entity": "bird", "caption": "The bird is standing on a multi level white surface.", "question": ["is there the bird ?", "is there a multi level white surface ?"], "prompt": "The {} is standing on a multi level white surface."}, {"index": 209, "image_id": 2359558, "entity": "bird", "caption": "the birds feet ", "question": ["are there the birds ?"], "prompt": "the {}s feet "}, {"index": 210, "image_id": 2359558, "entity": "bird", "caption": "birds nail ", "question": ["are there birds ?"], "prompt": "{}s nail "}, {"index": 211, "image_id": 2359558, "entity": "bird", "caption": "the birds eye ", "question": ["are there the birds ?"], "prompt": "the {}s eye "}, {"index": 212, "image_id": 2359558, "entity": "bird", "caption": "the birds tail ", "question": ["are there the birds ?"], "prompt": "the {}s tail "}, {"index": 213, "image_id": 2359558, "entity": "bird", "caption": "the birds beak", "question": ["are there the birds ?"], "prompt": "the {}s beak"}, {"index": 214, "image_id": 2359558, "entity": "bird", "caption": "black bird beak", "question": ["is there black bird beak ?"], "prompt": "black {} beak"}, {"index": 215, "image_id": 2359461, "entity": "bird", "caption": "Caterpillar in the birds beak.", "question": ["are there the birds ?"], "prompt": "Caterpillar in the {}s beak."}, {"index": 216, "image_id": 2359036, "entity": "bird", "caption": "Back of bird's neck is green.", "question": ["is there bird's neck ?"], "prompt": "Back of {}'s neck is green."}, {"index": 217, "image_id": 2359036, "entity": "bird", "caption": "yellow and orange feathers for birds chest", "question": ["are there yellow and orange feathers ?", "are there birds ?"], "prompt": "yellow and orange feathers for {}s chest"}, {"index": 218, "image_id": 2359036, "entity": "bird", "caption": "blue with black accent feathers on birds head", "question": ["are there black accent feathers ?", "are there birds ?"], "prompt": "blue with black accent feathers on {}s head"}, {"index": 219, "image_id": 2358738, "entity": "bird", "caption": "the bird has a brown spot on its head", "question": ["is there the bird ?", "is there a brown spot ?", "is there its head ?"], "prompt": "the {} has a brown spot on its head"}, {"index": 220, "image_id": 2358738, "entity": "bird", "caption": "the birds wings are brown with a few white spots", "question": ["are there the birds wings ?", "are there a few white spots ?"], "prompt": "the {}s wings are brown with a few white spots"}, {"index": 221, "image_id": 2358256, "entity": "bird", "caption": "bird with wings spread", "question": ["is there bird ?", "are there wings ?"], "prompt": "{} with wings spread"}, {"index": 222, "image_id": 2358256, "entity": "bird", "caption": "nice bird with wings spread", "question": ["is there nice bird ?", "are there wings ?"], "prompt": "nice {} with wings spread"}, {"index": 223, "image_id": 2358256, "entity": "bird", "caption": "healthy bird with wings spread", "question": ["is there healthy bird ?", "are there wings ?"], "prompt": "healthy {} with wings spread"}, {"index": 224, "image_id": 2358256, "entity": "bird", "caption": "beautiful bird with wings spread", "question": ["is there beautiful bird ?", "are there wings ?"], "prompt": "beautiful {} with wings spread"}, {"index": 225, "image_id": 2358256, "entity": "bird", "caption": "bird with pretty wings spread", "question": ["is there bird ?", "are there pretty wings ?"], "prompt": "{} with pretty wings spread"}, {"index": 226, "image_id": 2358256, "entity": "bird", "caption": "bird with colorful wings spread", "question": ["is there bird ?", "are there colorful wings ?"], "prompt": "{} with colorful wings spread"}, {"index": 227, "image_id": 2357787, "entity": "bird", "caption": "The bird has gray feathers", "question": ["is there the bird ?", "are there gray feathers ?"], "prompt": "The {} has gray feathers"}, {"index": 228, "image_id": 2356534, "entity": "bird", "caption": "dead insect in birds beak", "question": ["is there dead insect ?", "are there birds ?"], "prompt": "dead insect in {}s beak"}, {"index": 229, "image_id": 2356534, "entity": "bird", "caption": "The bird has brown feathers", "question": ["is there the bird ?", "are there brown feathers ?"], "prompt": "The {} has brown feathers"}, {"index": 230, "image_id": 2356534, "entity": "bird", "caption": "The bird is on the ground", "question": ["is there the bird ?", "is there the ground ?"], "prompt": "The {} is on the ground"}, {"index": 231, "image_id": 2355976, "entity": "bird", "caption": "A bird is next to a zebra", "question": ["is there a bird ?", "is there a zebra ?"], "prompt": "A {} is next to a zebra"}, {"index": 232, "image_id": 2355976, "entity": "bird", "caption": "The bird has black feathers", "question": ["is there the bird ?", "are there black feathers ?"], "prompt": "The {} has black feathers"}, {"index": 233, "image_id": 2355730, "entity": "bird", "caption": "bird has grey feathers", "question": ["is there bird ?", "are there grey feathers ?"], "prompt": "{} has grey feathers"}, {"index": 234, "image_id": 2355730, "entity": "bird", "caption": "The bird has claws", "question": ["is there the bird ?", "are there claws ?"], "prompt": "The {} has claws"}, {"index": 235, "image_id": 2355730, "entity": "bird", "caption": "Grey beak of a bird. ", "question": ["is there grey beak ?", "is there a bird ?"], "prompt": "Grey beak of a {}. "}, {"index": 236, "image_id": 2354530, "entity": "bird", "caption": "cement area where a bird stands", "question": ["is there cement area ?", "is there a bird ?"], "prompt": "cement area where a {} stands"}, {"index": 237, "image_id": 2354530, "entity": "bird", "caption": "bird has black streak on head", "question": ["is there bird ?", "is there black streak ?", "is there head ?"], "prompt": "{} has black streak on head"}, {"index": 238, "image_id": 2354530, "entity": "bird", "caption": "bird has yellow eye", "question": ["is there bird ?", "is there yellow eye ?"], "prompt": "{} has yellow eye"}, {"index": 239, "image_id": 2353113, "entity": "bird", "caption": "bird has brown beak", "question": ["is there bird ?", "is there brown beak ?"], "prompt": "{} has brown beak"}, {"index": 240, "image_id": 2353113, "entity": "bird", "caption": "bird is behind fence", "question": ["is there bird ?", "is there fence ?"], "prompt": "{} is behind fence"}, {"index": 241, "image_id": 2353113, "entity": "bird", "caption": "bird is near water", "question": ["is there bird ?", "is there water ?"], "prompt": "{} is near water"}, {"index": 242, "image_id": 2352371, "entity": "bird", "caption": "wood platform for bird to stand on", "question": ["is there wood platform ?", "is there bird ?"], "prompt": "wood platform for {} to stand on"}, {"index": 243, "image_id": 2349694, "entity": "bird", "caption": "tail of bird is white", "question": ["is there tail ?", "is there bird ?"], "prompt": "tail of {} is white"}, {"index": 244, "image_id": 2349587, "entity": "bird", "caption": "The bird is eating the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is eating the branch."}, {"index": 245, "image_id": 2349587, "entity": "bird", "caption": "The bird is holding the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is holding the branch."}, {"index": 246, "image_id": 2349248, "entity": "bird", "caption": "the food the bird is eating", "question": ["is there the food ?", "is there the bird ?"], "prompt": "the food the {} is eating"}, {"index": 247, "image_id": 2349109, "entity": "bird", "caption": "the branch the bird is biting", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "the branch the {} is biting"}, {"index": 248, "image_id": 2348860, "entity": "bird", "caption": "A bird has an orange beak.", "question": ["is there a bird ?", "is there an orange beak ?"], "prompt": "A {} has an orange beak."}, {"index": 249, "image_id": 2348860, "entity": "bird", "caption": "A birds claw is grasping a potato.", "question": ["is there a birds ?", "is there a potato ?"], "prompt": "A {}s claw is grasping a potato."}, {"index": 250, "image_id": 2348860, "entity": "bird", "caption": "A bird is eating a potato.", "question": ["is there a bird ?", "is there a potato ?"], "prompt": "A {} is eating a potato."}, {"index": 251, "image_id": 2348860, "entity": "bird", "caption": "A bird is on a tree branch.", "question": ["is there a bird ?", "is there a tree branch ?"], "prompt": "A {} is on a tree branch."}, {"index": 252, "image_id": 2348860, "entity": "bird", "caption": "A tropical bird is on a tree branch.", "question": ["is there a tropical bird ?", "is there a tree branch ?"], "prompt": "A tropical {} is on a tree branch."}, {"index": 253, "image_id": 2348860, "entity": "bird", "caption": "bird's wing is green", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is green"}, {"index": 254, "image_id": 2348860, "entity": "bird", "caption": "The peice of food in the birds mouth", "question": ["is there the peice ?", "is there food ?", "are there the birds ?"], "prompt": "The peice of food in the {}s mouth"}, {"index": 255, "image_id": 2348860, "entity": "bird", "caption": "The birds red orange eye", "question": ["are there the birds ?"], "prompt": "The {}s red orange eye"}, {"index": 256, "image_id": 2348860, "entity": "bird", "caption": "The birds blue face", "question": ["are there the birds ?"], "prompt": "The {}s blue face"}, {"index": 257, "image_id": 2348860, "entity": "bird", "caption": "The birds foot on the fruit", "question": ["are there the birds ?", "is there the fruit ?"], "prompt": "The {}s foot on the fruit"}, {"index": 258, "image_id": 2348860, "entity": "bird", "caption": "The piece of fruit the bird is eating", "question": ["is there the piece ?", "is there fruit ?", "is there the bird ?"], "prompt": "The piece of fruit the {} is eating"}, {"index": 259, "image_id": 2348860, "entity": "bird", "caption": "The branch the bird is sitting on", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "The branch the {} is sitting on"}, {"index": 260, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw", "question": ["is there a bird ?", "is there a claw ?"], "prompt": "a {} has a claw"}, {"index": 261, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw holding onto a branch", "question": ["is there a bird ?", "is there a claw ?", "is there a branch ?"], "prompt": "a {} has a claw holding onto a branch"}, {"index": 262, "image_id": 2348795, "entity": "bird", "caption": "Black bird beak white around face. ", "question": ["is there black bird beak ?", "is there face ?"], "prompt": "Black {} beak white around face. "}, {"index": 263, "image_id": 2348671, "entity": "bird", "caption": "that is the leg of the bird", "question": ["is there the leg ?", "is there the bird ?"], "prompt": "that is the leg of the {}"}, {"index": 264, "image_id": 2348089, "entity": "bird", "caption": "a wood platform the bird is on ", "question": ["is there a wood platform ?", "is there the bird ?"], "prompt": "a wood platform the {} is on "}, {"index": 265, "image_id": 2347493, "entity": "bird", "caption": "bird with its mouth open", "question": ["is there bird ?", "is there its mouth ?"], "prompt": "{} with its mouth open"}, {"index": 266, "image_id": 2347493, "entity": "bird", "caption": "The bird is on the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 267, "image_id": 2347493, "entity": "bird", "caption": "The birds beak has a sharp point.", "question": ["are there the birds beak ?", "is there a sharp point ?"], "prompt": "The {}s beak has a sharp point."}, {"index": 268, "image_id": 2347493, "entity": "bird", "caption": "The birds feet are orange.", "question": ["are there the birds ?", "are there feet ?"], "prompt": "The {}s feet are orange."}, {"index": 269, "image_id": 2345609, "entity": "bird", "caption": "the bird has very long legs", "question": ["is there the bird ?", "are there very long legs ?"], "prompt": "the {} has very long legs"}, {"index": 270, "image_id": 2345609, "entity": "bird", "caption": "the bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "the {} has a yellow beak"}, {"index": 271, "image_id": 2344912, "entity": "bird", "caption": "grass that small bird is standing in", "question": ["is there grass ?", "is there small bird ?"], "prompt": "grass that small {} is standing in"}, {"index": 272, "image_id": 2344341, "entity": "bird", "caption": "Feathers of the bird laid back", "question": ["are there feathers ?", "is there the bird ?"], "prompt": "Feathers of the {} laid back"}, {"index": 273, "image_id": 2344328, "entity": "bird", "caption": "A birds head and neck.", "question": ["are there a birds ?", "is there neck ?"], "prompt": "A {}s head and neck."}, {"index": 274, "image_id": 2344328, "entity": "bird", "caption": "bird has grey beak", "question": ["is there bird ?", "is there grey beak ?"], "prompt": "{} has grey beak"}, {"index": 275, "image_id": 2344328, "entity": "bird", "caption": "bird has red eyes", "question": ["is there bird ?", "are there red eyes ?"], "prompt": "{} has red eyes"}, {"index": 276, "image_id": 2344328, "entity": "bird", "caption": "bird has black head", "question": ["is there bird ?", "is there black head ?"], "prompt": "{} has black head"}, {"index": 277, "image_id": 2344328, "entity": "bird", "caption": "bird has blue neck", "question": ["is there bird ?", "is there blue neck ?"], "prompt": "{} has blue neck"}, {"index": 278, "image_id": 2341438, "entity": "bird", "caption": "head of bird is gray", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is gray"}, {"index": 279, "image_id": 2341438, "entity": "bird", "caption": "eye of bird is red", "question": ["is there eye ?", "is there bird ?"], "prompt": "eye of {} is red"}, {"index": 280, "image_id": 2341058, "entity": "bird", "caption": "two birds standing on branches", "question": ["are there two birds ?", "are there branches ?"], "prompt": "two {}s standing on branches"}, {"index": 281, "image_id": 2339258, "entity": "bird", "caption": "the all black beak on the birds face", "question": ["is there the all black beak ?", "are there the birds ?"], "prompt": "the all black beak on the {}s face"}, {"index": 282, "image_id": 2339258, "entity": "bird", "caption": "the claw on the birds foot", "question": ["is there the claw ?", "are there the birds ?"], "prompt": "the claw on the {}s foot"}, {"index": 283, "image_id": 2338848, "entity": "bird", "caption": "the bird is eating the fruit", "question": ["is there the bird ?", "is there the fruit ?"], "prompt": "the {} is eating the fruit"}, {"index": 284, "image_id": 2338848, "entity": "bird", "caption": "A bird is eating some fruit", "question": ["is there a bird ?", "is there some fruit ?"], "prompt": "A {} is eating some fruit"}, {"index": 285, "image_id": 2338848, "entity": "bird", "caption": "A bird is getting some food", "question": ["is there a bird ?", "is there some food ?"], "prompt": "A {} is getting some food"}, {"index": 286, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is red and black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is red and black."}, {"index": 287, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is round.", "question": ["are there the birds ?"], "prompt": "The {}s eye is round."}, {"index": 288, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is small.", "question": ["are there the birds ?"], "prompt": "The {}s eye is small."}, {"index": 289, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are blue.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are blue."}, {"index": 290, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are red.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are red."}, {"index": 291, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are green.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are green."}, {"index": 292, "image_id": 2338848, "entity": "bird", "caption": "the birds beak is orange", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is orange"}, {"index": 293, "image_id": 2338638, "entity": "bird", "caption": "Blue and black bird standing on wood.", "question": ["is there blue and black bird ?", "is there wood ?"], "prompt": "Blue and black {} standing on wood."}, {"index": 294, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s tail", "question": ["is there tail ?"], "prompt": "this is a {}''s tail"}, {"index": 295, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s beak", "question": ["is there a bird''s beak ?"], "prompt": "this is a {}''s beak"}, {"index": 296, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s head", "question": ["is there a bird''s head ?"], "prompt": "this is a {}''s head"}, {"index": 297, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s wing", "question": ["is there wing ?"], "prompt": "this is a {}''s wing"}, {"index": 298, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s eye", "question": ["is there eye ?"], "prompt": "this is a {}''s eye"}, {"index": 299, "image_id": 2338318, "entity": "bird", "caption": "bird is on brown branch", "question": ["is there bird ?", "is there brown branch ?"], "prompt": "{} is on brown branch"}, {"index": 300, "image_id": 2336219, "entity": "bird", "caption": "bird has white eyes", "question": ["is there bird ?", "are there white eyes ?"], "prompt": "{} has white eyes"}, {"index": 301, "image_id": 2335105, "entity": "bird", "caption": "the ear lobes on the bird are red", "question": ["are there the ear lobes ?", "is there the bird ?"], "prompt": "the ear lobes on the {} are red"}, {"index": 302, "image_id": 2332681, "entity": "bird", "caption": "the bird has tiny ears", "question": ["is there the bird ?", "are there tiny ears ?"], "prompt": "the {} has tiny ears"}, {"index": 303, "image_id": 2331468, "entity": "bird", "caption": "the bird is in the water ", "question": ["is there the bird ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 304, "image_id": 2331215, "entity": "bird", "caption": "the birds wings are up", "question": ["are there the birds ?", "are there wings ?"], "prompt": "the {}s wings are up"}, {"index": 305, "image_id": 2331215, "entity": "bird", "caption": "A bird is afraid of the elephant", "question": ["is there a bird ?", "is there the elephant ?"], "prompt": "A {} is afraid of the elephant"}, {"index": 306, "image_id": 2331215, "entity": "bird", "caption": "A bird has spread out its wings", "question": ["is there a bird ?", "are there its wings ?"], "prompt": "A {} has spread out its wings"}, {"index": 307, "image_id": 2331215, "entity": "bird", "caption": "The bird has a long wingspan", "question": ["is there the bird ?", "is there a long wingspan ?"], "prompt": "The {} has a long wingspan"}, {"index": 308, "image_id": 2330695, "entity": "bird", "caption": "bird has a black beak ", "question": ["is there bird ?", "is there a black beak ?"], "prompt": "{} has a black beak "}, {"index": 309, "image_id": 2330695, "entity": "bird", "caption": "bird has gray feet", "question": ["is there bird ?", "are there gray feet ?"], "prompt": "{} has gray feet"}, {"index": 310, "image_id": 2330307, "entity": "bird", "caption": "bird has beady eye", "question": ["is there bird ?", "is there beady eye ?"], "prompt": "{} has beady eye"}, {"index": 311, "image_id": 2330307, "entity": "bird", "caption": "bird has black beak", "question": ["is there bird ?", "is there black beak ?"], "prompt": "{} has black beak"}, {"index": 312, "image_id": 2330307, "entity": "bird", "caption": "bird has 2 feet", "question": ["is there bird ?", "are there 2 feet ?"], "prompt": "{} has 2 feet"}, {"index": 313, "image_id": 2330080, "entity": "bird", "caption": "The bird is looking a yard gnome", "question": ["is there the bird ?", "is there a yard gnome ?"], "prompt": "The {} is looking a yard gnome"}, {"index": 314, "image_id": 2330080, "entity": "bird", "caption": "The bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "The {} has a yellow beak"}, {"index": 315, "image_id": 2328246, "entity": "bird", "caption": "tree leaves behind the bird", "question": ["is there tree ?", "is there the bird ?"], "prompt": "tree leaves behind the {}"}, {"index": 316, "image_id": 2326461, "entity": "bird", "caption": "white feathers on a birds head", "question": ["are there white feathers ?", "are there a birds ?"], "prompt": "white feathers on a {}s head"}, {"index": 317, "image_id": 2326461, "entity": "bird", "caption": "The bird is on a handle", "question": ["is there the bird ?", "is there a handle ?"], "prompt": "The {} is on a handle"}, {"index": 318, "image_id": 2326461, "entity": "bird", "caption": "Small black bird beak", "question": ["is there small black bird beak ?"], "prompt": "Small black {} beak"}, {"index": 319, "image_id": 2325550, "entity": "bird", "caption": "the bird is on a pole", "question": ["is there the bird ?", "is there a pole ?"], "prompt": "the {} is on a pole"}, {"index": 320, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow feathers", "question": ["is there the bird ?", "are there yellow feathers ?"], "prompt": "the {} has yellow feathers"}, {"index": 321, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow spiked hair", "question": ["is there the bird ?", "is there yellow spiked hair ?"], "prompt": "the {} has yellow spiked hair"}, {"index": 322, "image_id": 2325324, "entity": "bird", "caption": "bird has green breast", "question": ["is there bird ?", "is there green breast ?"], "prompt": "{} has green breast"}, {"index": 323, "image_id": 2325324, "entity": "bird", "caption": "bird has green tail", "question": ["is there bird ?", "is there green tail ?"], "prompt": "{} has green tail"}, {"index": 324, "image_id": 2325324, "entity": "bird", "caption": "bird has green head", "question": ["is there bird ?", "is there green head ?"], "prompt": "{} has green head"}, {"index": 325, "image_id": 2325324, "entity": "bird", "caption": "bird has orange talons", "question": ["is there bird ?", "are there orange talons ?"], "prompt": "{} has orange talons"}, {"index": 326, "image_id": 2325324, "entity": "bird", "caption": "bird has grey claws", "question": ["is there bird ?", "are there grey claws ?"], "prompt": "{} has grey claws"}, {"index": 327, "image_id": 2325324, "entity": "bird", "caption": "bird stands on banana", "question": ["is there bird ?", "is there banana ?"], "prompt": "{} stands on banana"}, {"index": 328, "image_id": 2325324, "entity": "bird", "caption": "Green bird is standing on banana.", "question": ["is there green bird ?", "is there banana ?"], "prompt": "Green {} is standing on banana."}, {"index": 329, "image_id": 2325324, "entity": "bird", "caption": "Light is shining on bird.", "question": ["is there light ?", "is there bird ?"], "prompt": "Light is shining on {}."}, {"index": 330, "image_id": 2325324, "entity": "bird", "caption": "bird has orange feet", "question": ["is there bird ?", "are there orange feet ?"], "prompt": "{} has orange feet"}, {"index": 331, "image_id": 2325324, "entity": "bird", "caption": "bird has black nails", "question": ["is there bird ?", "are there black nails ?"], "prompt": "{} has black nails"}, {"index": 332, "image_id": 2325324, "entity": "bird", "caption": "bird's eye is purple blue and black", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is purple blue and black"}, {"index": 333, "image_id": 2323975, "entity": "bird", "caption": "Orange beak on a brown and white bird.", "question": ["is there orange beak ?", "is there a brown and white bird ?"], "prompt": "Orange beak on a brown and white {}."}, {"index": 334, "image_id": 2323560, "entity": "bird", "caption": "bird perched on a scarred limb", "question": ["is there bird ?", "is there a scarred limb ?"], "prompt": "{} perched on a scarred limb"}, {"index": 335, "image_id": 2322830, "entity": "bird", "caption": "bird is drinking water from wood bucket", "question": ["is there bird ?", "is there water ?", "is there wood bucket ?"], "prompt": "{} is drinking water from wood bucket"}, {"index": 336, "image_id": 2322624, "entity": "bird", "caption": "The birds beak has a point.", "question": ["are there the birds beak ?", "is there a point ?"], "prompt": "The {}s beak has a point."}, {"index": 337, "image_id": 2322624, "entity": "bird", "caption": "The birds chest is white.", "question": ["are there the birds ?"], "prompt": "The {}s chest is white."}, {"index": 338, "image_id": 2320805, "entity": "bird", "caption": "orange bird with black and white wings perched", "question": ["are there black and white wings ?"], "prompt": "orange {} with black and white wings perched"}, {"index": 339, "image_id": 2320805, "entity": "bird", "caption": "bird's beak contains blood and other animal remains", "question": ["is there bird's beak ?", "is there blood ?", "is there other animal ?"], "prompt": "{}'s beak contains blood and other animal remains"}, {"index": 340, "image_id": 2320805, "entity": "bird", "caption": "bird pereched of grey rock", "question": ["is there grey rock ?"], "prompt": "{} pereched of grey rock"}, {"index": 341, "image_id": 2320805, "entity": "bird", "caption": "a large tree branch with a bird nested on it", "question": ["is there a large tree branch ?", "is there a bird ?"], "prompt": "a large tree branch with a {} nested on it"}, {"index": 342, "image_id": 2320805, "entity": "bird", "caption": "a tree limb with a bird rested on it", "question": ["is there a tree limb ?", "is there a bird ?"], "prompt": "a tree limb with a {} rested on it"}, {"index": 343, "image_id": 2320805, "entity": "bird", "caption": "bird has grey head", "question": ["is there bird ?", "is there grey head ?"], "prompt": "{} has grey head"}, {"index": 344, "image_id": 2318439, "entity": "bird", "caption": "Baby bird is standing in ground.", "question": ["is there baby bird ?", "is there ground ?"], "prompt": "Baby {} is standing in ground."}, {"index": 345, "image_id": 2318290, "entity": "bird", "caption": "section of brown tipped bird wing feather", "question": ["is there section ?", "is there bird wing feather ?"], "prompt": "section of brown tipped {} wing feather"}, {"index": 346, "image_id": 2318104, "entity": "bird", "caption": "a bird that is standing outside", "question": ["is there a bird ?"], "prompt": "a {} that is standing outside"}, {"index": 347, "image_id": 2317875, "entity": "bird", "caption": "the bird has long gray legs", "question": ["is there the bird ?", "are there long gray legs ?"], "prompt": "the {} has long gray legs"}, {"index": 348, "image_id": 2317875, "entity": "bird", "caption": "the bird has a small beady eye", "question": ["is there the bird ?", "is there a small beady eye ?"], "prompt": "the {} has a small beady eye"}, {"index": 349, "image_id": 2317875, "entity": "bird", "caption": "the bird has a big beak", "question": ["is there the bird ?", "is there a big beak ?"], "prompt": "the {} has a big beak"}, {"index": 350, "image_id": 2317875, "entity": "bird", "caption": "the bird has tons of feathers", "question": ["is there the bird ?", "are there tons ?", "are there feathers ?"], "prompt": "the {} has tons of feathers"}, {"index": 351, "image_id": 2317875, "entity": "bird", "caption": "the bird has its mouth open", "question": ["is there the bird ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 352, "image_id": 2317875, "entity": "bird", "caption": "the bird is standing in grass", "question": ["is there the bird ?", "is there grass ?"], "prompt": "the {} is standing in grass"}, {"index": 353, "image_id": 2317875, "entity": "bird", "caption": "the bird is near a pond", "question": ["is there the bird ?", "is there a pond ?"], "prompt": "the {} is near a pond"}, {"index": 354, "image_id": 2317249, "entity": "bird", "caption": "The birds are out in the forest", "question": ["are there the birds ?", "is there the forest ?"], "prompt": "The {}s are out in the forest"}, {"index": 355, "image_id": 2317249, "entity": "bird", "caption": "The birds are watching for predators", "question": ["are there the birds ?", "are there predators ?"], "prompt": "The {}s are watching for predators"}, {"index": 356, "image_id": 2316597, "entity": "bird", "caption": "the pool of bird feeding ", "question": ["is there the pool ?", "is there bird feeding ?"], "prompt": "the pool of {} feeding "}, {"index": 357, "image_id": 2316597, "entity": "bird", "caption": "a bird iwth a beak", "question": ["is there a bird ?", "is there a beak ?"], "prompt": "a {} iwth a beak"}, {"index": 358, "image_id": 2316285, "entity": "bird", "caption": "bird perched on a branch", "question": ["is there bird ?", "is there a branch ?"], "prompt": "{} perched on a branch"}, {"index": 359, "image_id": 2414525, "entity": "bird", "caption": "man giving bird wine", "question": ["is there man ?", "is there bird wine ?"], "prompt": "man giving {} wine"}, {"index": 360, "image_id": 2413894, "entity": "bird", "caption": "the bird has two eyes", "question": ["is there the bird ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 361, "image_id": 2413894, "entity": "bird", "caption": "The bird is standing in calm water.", "question": ["is there the bird ?", "is there calm water ?"], "prompt": "The {} is standing in calm water."}, {"index": 362, "image_id": 2413604, "entity": "bird", "caption": "the bird is on the chair", "question": ["is there the bird ?", "is there the chair ?"], "prompt": "the {} is on the chair"}, {"index": 363, "image_id": 2413604, "entity": "bird", "caption": "The bird is outside resting on the edge of a wicker basket chair. ", "question": ["is there the bird ?", "is there the edge ?", "is there a wicker basket chair ?"], "prompt": "The {} is outside resting on the edge of a wicker basket chair. "}, {"index": 364, "image_id": 2413604, "entity": "bird", "caption": "The bird has thick black feathers. ", "question": ["is there the bird ?", "are there thick black feathers ?"], "prompt": "The {} has thick black feathers. "}, {"index": 365, "image_id": 2413604, "entity": "bird", "caption": "little bird has extremely expressive eyes", "question": ["is there little bird ?", "are there extremely expressive eyes ?"], "prompt": "little {} has extremely expressive eyes"}, {"index": 366, "image_id": 2413070, "entity": "bird", "caption": "two birds feet", "question": ["are there two birds ?"], "prompt": "two {}s feet"}, {"index": 367, "image_id": 2416459, "entity": "bird", "caption": "bird perched on the flower", "question": ["is there bird ?", "is there the flower ?"], "prompt": "{} perched on the flower"}, {"index": 368, "image_id": 2417074, "entity": "bird", "caption": "the bird has red color beak", "question": ["is there the bird ?", "is there red color beak ?"], "prompt": "the {} has red color beak"}, {"index": 369, "image_id": 2417074, "entity": "bird", "caption": "the bird has paddle feet", "question": ["is there the bird ?", "are there paddle feet ?"], "prompt": "the {} has paddle feet"}, {"index": 370, "image_id": 2417074, "entity": "bird", "caption": "the wings of the bird are gray", "question": ["are there the wings ?", "is there the bird ?"], "prompt": "the wings of the {} are gray"}, {"index": 371, "image_id": 2417074, "entity": "bird", "caption": "birds foot ", "question": ["are there birds ?"], "prompt": "{}s foot "}, {"index": 372, "image_id": 2417074, "entity": "bird", "caption": "beak of bird is closed", "question": ["is there beak ?", "is there bird ?"], "prompt": "beak of {} is closed"}, {"index": 373, "image_id": 2417074, "entity": "bird", "caption": "foot of bird is on dock", "question": ["is there foot ?", "is there bird ?", "is there dock ?"], "prompt": "foot of {} is on dock"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n01534433.json b/data/imagenet/compositions/prompts/n01534433.json
new file mode 100644
index 0000000000000000000000000000000000000000..d2f6a90f12f4f06cb56b687a87e91c16757b699c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01534433.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2220, "entity": "bird", "caption": "the bird has a fish in its mouth", "question": ["is there the bird ?", "is there a fish ?", "is there its mouth ?"], "prompt": "the {} has a fish in its mouth"}, {"index": 1, "image_id": 2612, "entity": "bird", "caption": "bird has tan beak", "question": ["is there bird ?", "is there tan beak ?"], "prompt": "{} has tan beak"}, {"index": 2, "image_id": 2612, "entity": "bird", "caption": "bird has brown eye", "question": ["is there bird ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 3, "image_id": 2612, "entity": "bird", "caption": "bird has black feathers", "question": ["is there bird ?", "are there black feathers ?"], "prompt": "{} has black feathers"}, {"index": 4, "image_id": 2613, "entity": "bird", "caption": "birds have orange beaks", "question": ["are there birds ?", "are there orange beaks ?"], "prompt": "{}s have orange beaks"}, {"index": 5, "image_id": 2613, "entity": "bird", "caption": "bird has white feathers", "question": ["is there bird ?", "are there white feathers ?"], "prompt": "{} has white feathers"}, {"index": 6, "image_id": 2613, "entity": "bird", "caption": "bird has grey leg", "question": ["is there bird ?"], "prompt": "{} has grey leg"}, {"index": 7, "image_id": 2613, "entity": "bird", "caption": "bird stands on one leg", "question": ["is there bird ?", "is there one leg ?"], "prompt": "{} stands on one leg"}, {"index": 8, "image_id": 2619, "entity": "bird", "caption": "the eye of the bird is black", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "the eye of the {} is black"}, {"index": 9, "image_id": 2619, "entity": "bird", "caption": "the bird feet is black", "question": ["are there the bird feet ?"], "prompt": "the {} feet is black"}, {"index": 10, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food out of the person's hand", "question": ["is there the bird ?", "is there food ?", "is there the person's hand ?"], "prompt": "The {} is eating food out of the person's hand"}, {"index": 11, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food", "question": ["is there the bird ?", "is there food ?"], "prompt": "The {} is eating food"}, {"index": 12, "image_id": 2415095, "entity": "bird", "caption": "A bird with red feathers is eating food", "question": ["is there a bird ?", "are there red feathers ?", "is there food ?"], "prompt": "A {} with red feathers is eating food"}, {"index": 13, "image_id": 2415095, "entity": "bird", "caption": "The red feather bird is eating food out of a person's hand", "question": ["is there the red feather bird ?", "is there food ?", "is there a person's hand ?"], "prompt": "The red feather {} is eating food out of a person's hand"}, {"index": 14, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating an apples from the person's hand", "question": ["is there the bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The {} is eating an apples from the person's hand"}, {"index": 15, "image_id": 2415095, "entity": "bird", "caption": "The red-feathered bird is eating an apples from the person's hand", "question": ["is there the red-feathered bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The red-feathered {} is eating an apples from the person's hand"}, {"index": 16, "image_id": 2414024, "entity": "bird", "caption": "little bird with chest puffed out", "question": ["is there little bird ?", "is there chest ?"], "prompt": "little {} with chest puffed out"}, {"index": 17, "image_id": 2412521, "entity": "bird", "caption": "bird has red patch", "question": ["is there bird ?", "is there red patch ?"], "prompt": "{} has red patch"}, {"index": 18, "image_id": 2412521, "entity": "bird", "caption": "wood is under bird", "question": ["is there wood ?", "is there bird ?"], "prompt": "wood is under {}"}, {"index": 19, "image_id": 2412521, "entity": "bird", "caption": "black bird has it's mouth open", "question": ["is there black bird ?"], "prompt": "black {} has it's mouth open"}, {"index": 20, "image_id": 2412521, "entity": "bird", "caption": "bird perched on log", "question": ["is there bird ?", "is there log ?"], "prompt": "{} perched on log"}, {"index": 21, "image_id": 2412521, "entity": "bird", "caption": "black bird leg slanted from body", "question": ["is there black bird leg ?", "is there body ?"], "prompt": "black {} leg slanted from body"}, {"index": 22, "image_id": 2412061, "entity": "bird", "caption": "Black bird beak", "question": ["is there black bird beak ?"], "prompt": "Black {} beak"}, {"index": 23, "image_id": 2412061, "entity": "bird", "caption": "Black-feathered bird looks up to the sky", "question": ["is there black-feathered bird ?", "is there the sky ?"], "prompt": "Black-feathered {} looks up to the sky"}, {"index": 24, "image_id": 2409570, "entity": "bird", "caption": "the bird has two feet", "question": ["is there the bird ?", "are there two feet ?"], "prompt": "the {} has two feet"}, {"index": 25, "image_id": 2409570, "entity": "bird", "caption": "the bird is biting its tail", "question": ["is there the bird ?", "is there its tail ?"], "prompt": "the {} is biting its tail"}, {"index": 26, "image_id": 2409570, "entity": "bird", "caption": "the bird has wings", "question": ["is there the bird ?", "are there wings ?"], "prompt": "the {} has wings"}, {"index": 27, "image_id": 2409570, "entity": "bird", "caption": "White bird with black tail feathers standing on the sand", "question": ["is there white bird ?", "are there black tail feathers ?", "is there the sand ?"], "prompt": "White {} with black tail feathers standing on the sand"}, {"index": 28, "image_id": 2409306, "entity": "bird", "caption": "a fragment of ground that a young bird is standing on", "question": ["is there a fragment ?", "is there ground ?", "is there a young bird ?"], "prompt": "a fragment of ground that a young {} is standing on"}, {"index": 29, "image_id": 2409306, "entity": "bird", "caption": "head of bird is polka dotted", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is polka dotted"}, {"index": 30, "image_id": 2409306, "entity": "bird", "caption": "a baby bird stands on the ground", "question": ["is there a baby bird ?", "is there the ground ?"], "prompt": "a baby {} stands on the ground"}, {"index": 31, "image_id": 2409215, "entity": "bird", "caption": "The bird's beak is orange. ", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is orange. "}, {"index": 32, "image_id": 2409215, "entity": "bird", "caption": "The bird is flying above water. ", "question": ["is there the bird ?", "is there water ?"], "prompt": "The {} is flying above water. "}, {"index": 33, "image_id": 2409215, "entity": "bird", "caption": "End of the bird's wing that is primarily black", "question": ["is there end ?", "is there the bird's wing ?"], "prompt": "End of the {}'s wing that is primarily black"}, {"index": 34, "image_id": 2409045, "entity": "bird", "caption": "Neck of bird has S shape", "question": ["is there neck ?", "is there bird ?", "are there s ?", "is there shape ?"], "prompt": "Neck of {} has S shape"}, {"index": 35, "image_id": 2409045, "entity": "bird", "caption": "Grey bird rising into the air", "question": ["is there grey bird ?", "is there the air ?"], "prompt": "Grey {} rising into the air"}, {"index": 36, "image_id": 2409010, "entity": "bird", "caption": "a bird has a small creature in its mouth", "question": ["is there a bird ?", "is there a small creature ?", "is there its mouth ?"], "prompt": "a {} has a small creature in its mouth"}, {"index": 37, "image_id": 2409010, "entity": "bird", "caption": "a bird walks along the wet sand", "question": ["is there a bird ?", "is there the wet sand ?"], "prompt": "a {} walks along the wet sand"}, {"index": 38, "image_id": 2408592, "entity": "bird", "caption": "a bird stands at the edge of the water", "question": ["is there a bird ?", "is there the edge ?", "is there the water ?"], "prompt": "a {} stands at the edge of the water"}, {"index": 39, "image_id": 2408592, "entity": "bird", "caption": "The bird has webbed feet", "question": ["is there the bird ?"], "prompt": "The {} has webbed feet"}, {"index": 40, "image_id": 2408592, "entity": "bird", "caption": "The bird is standing in the dirt", "question": ["is there the bird ?", "is there the dirt ?"], "prompt": "The {} is standing in the dirt"}, {"index": 41, "image_id": 2408592, "entity": "bird", "caption": "the ground the bird is standing on", "question": ["is there the ground ?", "is there the bird ?"], "prompt": "the ground the {} is standing on"}, {"index": 42, "image_id": 2408299, "entity": "bird", "caption": "the bird is hiding in a plant", "question": ["is there the bird ?", "is there a plant ?"], "prompt": "the {} is hiding in a plant"}, {"index": 43, "image_id": 2408299, "entity": "bird", "caption": "the bird has a white belly", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 44, "image_id": 2407737, "entity": "bird", "caption": "this is a birds eye", "question": ["are there a birds ?"], "prompt": "this is a {}s eye"}, {"index": 45, "image_id": 2407737, "entity": "bird", "caption": "this is a bird tail", "question": ["is there a bird tail ?"], "prompt": "this is a {} tail"}, {"index": 46, "image_id": 2407737, "entity": "bird", "caption": "the bird has sharp beak", "question": ["is there the bird ?", "is there sharp beak ?"], "prompt": "the {} has sharp beak"}, {"index": 47, "image_id": 2407737, "entity": "bird", "caption": "the branches are beside the bird", "question": ["are there the branches ?", "is there the bird ?"], "prompt": "the branches are beside the {}"}, {"index": 48, "image_id": 2407737, "entity": "bird", "caption": "the bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "the {} has thin legs"}, {"index": 49, "image_id": 2407737, "entity": "bird", "caption": "the bird has black eyes", "question": ["is there the bird ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 50, "image_id": 2407316, "entity": "bird", "caption": "the bird has black legs", "question": ["is there the bird ?", "are there black legs ?"], "prompt": "the {} has black legs"}, {"index": 51, "image_id": 2407316, "entity": "bird", "caption": "the bird has three toes", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "the {} has three toes"}, {"index": 52, "image_id": 2406956, "entity": "bird", "caption": "black feathers on top of birds head", "question": ["are there black feathers ?", "is there top ?", "are there birds ?"], "prompt": "black feathers on top of {}s head"}, {"index": 53, "image_id": 2406956, "entity": "bird", "caption": "this is the bird's eye", "question": ["is there the bird's eye ?"], "prompt": "this is the {}'s eye"}, {"index": 54, "image_id": 2406956, "entity": "bird", "caption": "an object is in the bird's beak", "question": ["is there an object ?", "is there the bird's beak ?"], "prompt": "an object is in the {}'s beak"}, {"index": 55, "image_id": 2406956, "entity": "bird", "caption": "the bird's eye is black in color", "question": ["is there the bird's eye ?", "is there color ?"], "prompt": "the {}'s eye is black in color"}, {"index": 56, "image_id": 2404798, "entity": "bird", "caption": "bird has long beak", "question": ["is there bird ?", "is there long beak ?"], "prompt": "{} has long beak"}, {"index": 57, "image_id": 2404798, "entity": "bird", "caption": "bird has pink feathers", "question": ["is there bird ?", "are there pink feathers ?"], "prompt": "{} has pink feathers"}, {"index": 58, "image_id": 2404798, "entity": "bird", "caption": "bird has red eye", "question": ["is there bird ?", "is there red eye ?"], "prompt": "{} has red eye"}, {"index": 59, "image_id": 2404798, "entity": "bird", "caption": "head of bird is featherless", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is featherless"}, {"index": 60, "image_id": 2404798, "entity": "bird", "caption": "bird has green tag on leg", "question": ["is there bird ?", "is there green tag ?", "is there leg ?"], "prompt": "{} has green tag on leg"}, {"index": 61, "image_id": 2404798, "entity": "bird", "caption": "The bird is in the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 62, "image_id": 2404798, "entity": "bird", "caption": "The bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "The {} has a beak"}, {"index": 63, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is open", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 64, "image_id": 2404798, "entity": "bird", "caption": "The bird is wading in the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is wading in the water."}, {"index": 65, "image_id": 2404798, "entity": "bird", "caption": "The bird has a long beak.", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak."}, {"index": 66, "image_id": 2404798, "entity": "bird", "caption": "The bird has light and dark pink feathers.", "question": ["is there the bird ?", "are there light and dark pink feathers ?"], "prompt": "The {} has light and dark pink feathers."}, {"index": 67, "image_id": 2404798, "entity": "bird", "caption": "The bird has a green band around the leg.", "question": ["is there the bird ?", "is there a green band ?", "is there the leg ?"], "prompt": "The {} has a green band around the leg."}, {"index": 68, "image_id": 2404798, "entity": "bird", "caption": "The bird has white neck feathers.", "question": ["is there the bird ?", "are there white neck feathers ?"], "prompt": "The {} has white neck feathers."}, {"index": 69, "image_id": 2404798, "entity": "bird", "caption": "Large rocks are behind the birds.", "question": ["are there large rocks ?", "are there the birds ?"], "prompt": "Large rocks are behind the {}s."}, {"index": 70, "image_id": 2404798, "entity": "bird", "caption": "Water is dripping from the bird's beak.", "question": ["is there water ?", "is there the bird's beak ?"], "prompt": "Water is dripping from the {}'s beak."}, {"index": 71, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is yellow and black.", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is yellow and black."}, {"index": 72, "image_id": 2404673, "entity": "bird", "caption": "the bird is on a long black metal piece", "question": ["is there the bird ?", "is there a long black metal piece ?"], "prompt": "the {} is on a long black metal piece"}, {"index": 73, "image_id": 2404673, "entity": "bird", "caption": "glass sun catchers are hanging in front of the wooden bird", "question": ["are there glass sun catchers ?", "is there front ?", "is there the wooden bird ?"], "prompt": "glass sun catchers are hanging in front of the wooden {}"}, {"index": 74, "image_id": 2404673, "entity": "bird", "caption": "the bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "the {} has a beak"}, {"index": 75, "image_id": 2404673, "entity": "bird", "caption": "the window is reflecting the bird", "question": ["is there the window ?", "is there the bird ?"], "prompt": "the window is reflecting the {}"}, {"index": 76, "image_id": 2404673, "entity": "bird", "caption": "the bird has 1 leg", "question": ["is there the bird ?", "is there 1 leg ?"], "prompt": "the {} has 1 leg"}, {"index": 77, "image_id": 2404673, "entity": "bird", "caption": "the bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "the {} has a long beak"}, {"index": 78, "image_id": 2404673, "entity": "bird", "caption": "the bird's eye is black", "question": ["is there the bird's eye ?"], "prompt": "the {}'s eye is black"}, {"index": 79, "image_id": 2404673, "entity": "bird", "caption": "the bird's leg is long", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is long"}, {"index": 80, "image_id": 2404673, "entity": "bird", "caption": "the bird is sitting on the window", "question": ["is there the bird ?", "is there the window ?"], "prompt": "the {} is sitting on the window"}, {"index": 81, "image_id": 2404673, "entity": "bird", "caption": "The bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak"}, {"index": 82, "image_id": 2403435, "entity": "bird", "caption": "person is feeding bird", "question": ["is there person ?", "is there bird ?"], "prompt": "person is feeding {}"}, {"index": 83, "image_id": 2401304, "entity": "bird", "caption": "a bird is standing on weathered wood", "question": ["is there a bird ?", "is there weathered wood ?"], "prompt": "a {} is standing on weathered wood"}, {"index": 84, "image_id": 2401079, "entity": "bird", "caption": "bird's beak is black and red", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black and red"}, {"index": 85, "image_id": 2401079, "entity": "bird", "caption": "the bird's feet are black", "question": ["are there the bird's feet ?"], "prompt": "the {}'s feet are black"}, {"index": 86, "image_id": 2400985, "entity": "bird", "caption": "the bird has a short black beak", "question": ["is there the bird ?", "is there a short black beak ?"], "prompt": "the {} has a short black beak"}, {"index": 87, "image_id": 2400985, "entity": "bird", "caption": "the bird has sharp claws", "question": ["is there the bird ?", "are there sharp claws ?"], "prompt": "the {} has sharp claws"}, {"index": 88, "image_id": 2400985, "entity": "bird", "caption": "A birds left side wing. ", "question": ["are there a birds ?", "is there side wing ?"], "prompt": "A {}s left side wing. "}, {"index": 89, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds right foot", "question": ["are there the fully shown birds ?"], "prompt": "The fully shown {}s right foot"}, {"index": 90, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds left foot", "question": ["are there the fully shown birds ?", "is there foot ?"], "prompt": "The fully shown {}s left foot"}, {"index": 91, "image_id": 2396390, "entity": "bird", "caption": "bird perched on wooden pole ", "question": ["is there bird ?", "is there wooden pole ?"], "prompt": "{} perched on wooden pole "}, {"index": 92, "image_id": 2396390, "entity": "bird", "caption": "bird angled sideways with feet tightly gripping", "question": ["is there bird ?", "are there feet ?"], "prompt": "{} angled sideways with feet tightly gripping"}, {"index": 93, "image_id": 2396109, "entity": "bird", "caption": "The bird has yellow eyes.", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes."}, {"index": 94, "image_id": 2396109, "entity": "bird", "caption": "The bird stands on the tree.", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "The {} stands on the tree."}, {"index": 95, "image_id": 2396109, "entity": "bird", "caption": "this is a bird", "question": ["is there a bird ?"], "prompt": "this is a {}"}, {"index": 96, "image_id": 2396109, "entity": "bird", "caption": "the bird is on the tree", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "the {} is on the tree"}, {"index": 97, "image_id": 2396109, "entity": "bird", "caption": "the bird has yellow eyes", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "the {} has yellow eyes"}, {"index": 98, "image_id": 2396109, "entity": "bird", "caption": "the bird's legs are long", "question": ["are there the bird's legs ?"], "prompt": "the {}'s legs are long"}, {"index": 99, "image_id": 2396109, "entity": "bird", "caption": "The bird has a pointy beak.", "question": ["is there the bird ?", "is there a pointy beak ?"], "prompt": "The {} has a pointy beak."}, {"index": 100, "image_id": 2396109, "entity": "bird", "caption": "The bird has two legs.", "question": ["is there the bird ?", "are there two legs ?"], "prompt": "The {} has two legs."}, {"index": 101, "image_id": 2396109, "entity": "bird", "caption": "The bird has a yellow eye.", "question": ["is there the bird ?", "is there a yellow eye ?"], "prompt": "The {} has a yellow eye."}, {"index": 102, "image_id": 2396109, "entity": "bird", "caption": "The bird has a wing.", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "The {} has a wing."}, {"index": 103, "image_id": 2395577, "entity": "bird", "caption": "the bird has a wing", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "the {} has a wing"}, {"index": 104, "image_id": 2395577, "entity": "bird", "caption": "the bird has an eye", "question": ["is there the bird ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 105, "image_id": 2394957, "entity": "bird", "caption": "bird stand on rim of bowl", "question": ["is there bird ?", "is there rim ?", "is there bowl ?"], "prompt": "{} stand on rim of bowl"}, {"index": 106, "image_id": 2394957, "entity": "bird", "caption": "bird's head is black and blue in color", "question": ["is there bird's head ?", "is there color ?"], "prompt": "{}'s head is black and blue in color"}, {"index": 107, "image_id": 2394957, "entity": "bird", "caption": "bird's eye is red", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is red"}, {"index": 108, "image_id": 2393198, "entity": "bird", "caption": "the birds long beak", "question": ["are there the birds ?"], "prompt": "the {}s long beak"}, {"index": 109, "image_id": 2393198, "entity": "bird", "caption": "the feathers on the birds chest", "question": ["are there the feathers ?", "are there the birds ?"], "prompt": "the feathers on the {}s chest"}, {"index": 110, "image_id": 2393198, "entity": "bird", "caption": "the log the birds standing on", "question": ["is there the log ?", "are there the birds ?"], "prompt": "the log the {}s standing on"}, {"index": 111, "image_id": 2392907, "entity": "bird", "caption": "bird has yellow legs", "question": ["is there bird ?", "are there yellow legs ?"], "prompt": "{} has yellow legs"}, {"index": 112, "image_id": 2392907, "entity": "bird", "caption": "bird has large toe nails", "question": ["is there bird ?", "are there large toe nails ?"], "prompt": "{} has large toe nails"}, {"index": 113, "image_id": 2392255, "entity": "bird", "caption": "The birds tail feathers.", "question": ["are there the birds tail feathers ?"], "prompt": "The {}s tail feathers."}, {"index": 114, "image_id": 2392255, "entity": "bird", "caption": "The bird is standing on a person's hand.", "question": ["is there the bird ?", "is there a person's hand ?"], "prompt": "The {} is standing on a person's hand."}, {"index": 115, "image_id": 2392255, "entity": "bird", "caption": "The bird has grey feathers.", "question": ["is there the bird ?", "are there grey feathers ?"], "prompt": "The {} has grey feathers."}, {"index": 116, "image_id": 2392255, "entity": "bird", "caption": "The bird has a black beak.", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "The {} has a black beak."}, {"index": 117, "image_id": 2392255, "entity": "bird", "caption": "the bird has a black beak", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "the {} has a black beak"}, {"index": 118, "image_id": 2392255, "entity": "bird", "caption": "the bird has black legs and claws", "question": ["is there the bird ?", "are there black legs ?", "are there claws ?"], "prompt": "the {} has black legs and claws"}, {"index": 119, "image_id": 2392255, "entity": "bird", "caption": "the bird's head is white and gray", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is white and gray"}, {"index": 120, "image_id": 2391103, "entity": "bird", "caption": "Top of bird's head is jet black", "question": ["is there top ?", "is there bird's head ?", "is there jet black ?"], "prompt": "Top of {}'s head is jet black"}, {"index": 121, "image_id": 2390453, "entity": "bird", "caption": "the bird has eye", "question": ["is there the bird ?", "is there eye ?"], "prompt": "the {} has eye"}, {"index": 122, "image_id": 2389247, "entity": "bird", "caption": "a birds head", "question": ["are there a birds ?"], "prompt": "a {}s head"}, {"index": 123, "image_id": 2389247, "entity": "bird", "caption": "The birds beak.", "question": ["are there the birds ?"], "prompt": "The {}s beak."}, {"index": 124, "image_id": 2388774, "entity": "bird", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the {} is in the car "}, {"index": 125, "image_id": 2388774, "entity": "bird", "caption": "The bird has small black feathers ", "question": ["is there the bird ?", "are there small black feathers ?"], "prompt": "The {} has small black feathers "}, {"index": 126, "image_id": 2387336, "entity": "bird", "caption": "part of branch birds are sitting on", "question": ["is there part ?", "are there branch birds ?"], "prompt": "part of branch {}s are sitting on"}, {"index": 127, "image_id": 2385839, "entity": "bird", "caption": "the bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "the {} has black and white feathers"}, {"index": 128, "image_id": 2384739, "entity": "bird", "caption": "bird's legs are curled", "question": ["are there bird's legs ?"], "prompt": "{}'s legs are curled"}, {"index": 129, "image_id": 2384739, "entity": "bird", "caption": "a bird is lying on the pavement", "question": ["is there a bird ?", "is there the pavement ?"], "prompt": "a {} is lying on the pavement"}, {"index": 130, "image_id": 2384739, "entity": "bird", "caption": "the bird's head is upside down", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is upside down"}, {"index": 131, "image_id": 2384739, "entity": "bird", "caption": "the black cat is lying next to the bird", "question": ["is there the black cat ?", "is there the bird ?"], "prompt": "the black cat is lying next to the {}"}, {"index": 132, "image_id": 2384582, "entity": "bird", "caption": "This bird has a red beak.", "question": ["is there this bird ?", "is there a red beak ?"], "prompt": "This {} has a red beak."}, {"index": 133, "image_id": 2384582, "entity": "bird", "caption": "The bird is standing on a sandy beach.", "question": ["is there the bird ?", "is there a sandy beach ?"], "prompt": "The {} is standing on a sandy beach."}, {"index": 134, "image_id": 2384582, "entity": "bird", "caption": "This bird has black eyes.", "question": ["is there this bird ?", "are there black eyes ?"], "prompt": "This {} has black eyes."}, {"index": 135, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white belly.", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "The {} has a white belly."}, {"index": 136, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white body.", "question": ["is there the bird ?", "is there a white body ?"], "prompt": "The {} has a white body."}, {"index": 137, "image_id": 2384582, "entity": "bird", "caption": "The bird has black and white tail feathers.", "question": ["is there the bird ?", "are there black and white tail feathers ?"], "prompt": "The {} has black and white tail feathers."}, {"index": 138, "image_id": 2384582, "entity": "bird", "caption": "The bird has orange legs.", "question": ["is there the bird ?", "are there orange legs ?"], "prompt": "The {} has orange legs."}, {"index": 139, "image_id": 2384582, "entity": "bird", "caption": "The bird has an orange beak.", "question": ["is there the bird ?", "is there an orange beak ?"], "prompt": "The {} has an orange beak."}, {"index": 140, "image_id": 2382811, "entity": "bird", "caption": "The bird is above the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is above the water"}, {"index": 141, "image_id": 2382811, "entity": "bird", "caption": "body of seabird is white", "question": ["is there body ?", "is there seabird ?"], "prompt": "body of sea{} is white"}, {"index": 142, "image_id": 2381448, "entity": "bird", "caption": "birds feet are visible", "question": ["are there birds ?", "are there feet ?"], "prompt": "{}s feet are visible"}, {"index": 143, "image_id": 2381401, "entity": "bird", "caption": "the bird has a slender beak", "question": ["is there the bird ?", "is there a slender beak ?"], "prompt": "the {} has a slender beak"}, {"index": 144, "image_id": 2381401, "entity": "bird", "caption": "the bird has stripes on his back", "question": ["is there the bird ?", "are there stripes ?", "is there his back ?"], "prompt": "the {} has stripes on his back"}, {"index": 145, "image_id": 2381401, "entity": "bird", "caption": "the birds beak is very long", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is very long"}, {"index": 146, "image_id": 2381401, "entity": "bird", "caption": "The bird is standing on the branches of the tree.", "question": ["is there the bird ?", "are there the branches ?", "is there the tree ?"], "prompt": "The {} is standing on the branches of the tree."}, {"index": 147, "image_id": 2381401, "entity": "bird", "caption": "The bird has a long black beak.", "question": ["is there the bird ?", "is there a long black beak ?"], "prompt": "The {} has a long black beak."}, {"index": 148, "image_id": 2381401, "entity": "bird", "caption": "The bird has long red legs.", "question": ["is there the bird ?", "are there long red legs ?"], "prompt": "The {} has long red legs."}, {"index": 149, "image_id": 2381401, "entity": "bird", "caption": "the bird is red and beautiful", "question": ["is there the bird ?"], "prompt": "the {} is red and beautiful"}, {"index": 150, "image_id": 2380312, "entity": "bird", "caption": "the bird has a tail", "question": ["is there the bird ?", "is there a tail ?"], "prompt": "the {} has a tail"}, {"index": 151, "image_id": 2380312, "entity": "bird", "caption": "the bird has a head", "question": ["is there the bird ?", "is there a head ?"], "prompt": "the {} has a head"}, {"index": 152, "image_id": 2380026, "entity": "bird", "caption": "the bird has a blue head.", "question": ["is there the bird ?", "is there a blue head ?"], "prompt": "the {} has a blue head."}, {"index": 153, "image_id": 2380026, "entity": "bird", "caption": "The bird has yellow and orange on it's chest.", "question": ["is there the bird ?", "is there it's chest ?"], "prompt": "The {} has yellow and orange on it's chest."}, {"index": 154, "image_id": 2380026, "entity": "bird", "caption": "The bird has three toes.", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "The {} has three toes."}, {"index": 155, "image_id": 2380026, "entity": "bird", "caption": "bird's wings are green", "question": ["are there bird's wings ?"], "prompt": "{}'s wings are green"}, {"index": 156, "image_id": 2380026, "entity": "bird", "caption": "bird has blue head", "question": ["is there bird ?", "is there blue head ?"], "prompt": "{} has blue head"}, {"index": 157, "image_id": 2380026, "entity": "bird", "caption": "bird has orange beak", "question": ["is there bird ?", "is there orange beak ?"], "prompt": "{} has orange beak"}, {"index": 158, "image_id": 2380026, "entity": "bird", "caption": "bird has green body", "question": ["is there bird ?", "is there green body ?"], "prompt": "{} has green body"}, {"index": 159, "image_id": 2380026, "entity": "bird", "caption": "bird has brown talons", "question": ["is there bird ?", "are there brown talons ?"], "prompt": "{} has brown talons"}, {"index": 160, "image_id": 2378627, "entity": "bird", "caption": "A birds beak", "question": ["are there a birds ?"], "prompt": "A {}s beak"}, {"index": 161, "image_id": 2378627, "entity": "bird", "caption": "A birds wing", "question": ["are there a birds ?"], "prompt": "A {}s wing"}, {"index": 162, "image_id": 2377993, "entity": "bird", "caption": "The birds claws are black.", "question": ["are there the birds ?", "are there claws ?"], "prompt": "The {}s claws are black."}, {"index": 163, "image_id": 2377993, "entity": "bird", "caption": "The birds eye is black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is black."}, {"index": 164, "image_id": 2377993, "entity": "bird", "caption": "The birds beak is black.", "question": ["are there the birds beak ?"], "prompt": "The {}s beak is black."}, {"index": 165, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a bird", "question": ["is there a bird ?"], "prompt": "Pink felt on a {}"}, {"index": 166, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a white bird", "question": ["is there a white bird ?"], "prompt": "Pink felt on a white {}"}, {"index": 167, "image_id": 2376795, "entity": "bird", "caption": "A bird has pink felt on it", "question": ["is there a bird ?"], "prompt": "A {} has pink felt on it"}, {"index": 168, "image_id": 2376795, "entity": "bird", "caption": "bird head turned right", "question": ["is there bird head ?"], "prompt": "{} head turned right"}, {"index": 169, "image_id": 2376340, "entity": "bird", "caption": "the birds legs ", "question": ["are there the birds ?"], "prompt": "the {}s legs "}, {"index": 170, "image_id": 2376340, "entity": "bird", "caption": "The bird has long legs. ", "question": ["is there the bird ?", "are there long legs ?"], "prompt": "The {} has long legs. "}, {"index": 171, "image_id": 2376224, "entity": "bird", "caption": "The bird's eyes are open", "question": ["are there the bird's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 172, "image_id": 2376224, "entity": "bird", "caption": "The bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "The {} has thin legs"}, {"index": 173, "image_id": 2375434, "entity": "bird", "caption": "The bird is holding a stick in its mouth", "question": ["is there the bird ?", "is there a stick ?", "is there its mouth ?"], "prompt": "The {} is holding a stick in its mouth"}, {"index": 174, "image_id": 2375434, "entity": "bird", "caption": "birds flying in the sky", "question": ["are there birds ?", "is there the sky ?"], "prompt": "{}s flying in the sky"}, {"index": 175, "image_id": 2375434, "entity": "bird", "caption": "birds flapping their wings", "question": ["are there birds ?", "are there their wings ?"], "prompt": "{}s flapping their wings"}, {"index": 176, "image_id": 2375434, "entity": "bird", "caption": "four birds flapping their wings", "question": ["are there four birds ?", "are there their wings ?"], "prompt": "four {}s flapping their wings"}, {"index": 177, "image_id": 2375434, "entity": "bird", "caption": "a bird with its wings spread to full length", "question": ["is there a bird ?", "are there its wings ?", "is there full length ?"], "prompt": "a {} with its wings spread to full length"}, {"index": 178, "image_id": 2372589, "entity": "bird", "caption": "belly of the bird is white", "question": ["is there belly ?", "is there the bird ?"], "prompt": "belly of the {} is white"}, {"index": 179, "image_id": 2372589, "entity": "bird", "caption": "bird's feet are black", "question": ["are there bird's feet ?"], "prompt": "{}'s feet are black"}, {"index": 180, "image_id": 2372589, "entity": "bird", "caption": "bird's beak is black", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black"}, {"index": 181, "image_id": 2372267, "entity": "bird", "caption": "bird has green face", "question": ["is there bird ?", "is there green face ?"], "prompt": "{} has green face"}, {"index": 182, "image_id": 2372267, "entity": "bird", "caption": "bird has white beak", "question": ["is there bird ?", "is there white beak ?"], "prompt": "{} has white beak"}, {"index": 183, "image_id": 2371979, "entity": "bird", "caption": "bird's head is black", "question": ["is there bird's head ?"], "prompt": "{}'s head is black"}, {"index": 184, "image_id": 2371979, "entity": "bird", "caption": "bird's wing is black and red", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is black and red"}, {"index": 185, "image_id": 2371266, "entity": "bird", "caption": "birds beak that is two toned", "question": ["are there birds ?"], "prompt": "{}s beak that is two toned"}, {"index": 186, "image_id": 2370174, "entity": "bird", "caption": "water is behind the bird", "question": ["is there water ?", "is there the bird ?"], "prompt": "water is behind the {}"}, {"index": 187, "image_id": 2370174, "entity": "bird", "caption": "The bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "The {} has black and white feathers"}, {"index": 188, "image_id": 2366794, "entity": "bird", "caption": "the bird's leg is skinny", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is skinny"}, {"index": 189, "image_id": 2366794, "entity": "bird", "caption": "the bird's tail is black ", "question": ["is there the bird's tail ?"], "prompt": "the {}'s tail is black "}, {"index": 190, "image_id": 2366794, "entity": "bird", "caption": "teh bird's beak is smll", "question": ["is there teh bird's beak ?", "is there smll ?"], "prompt": "teh {}'s beak is smll"}, {"index": 191, "image_id": 2366794, "entity": "bird", "caption": "the bird is on the beach ", "question": ["is there the bird ?", "is there the beach ?"], "prompt": "the {} is on the beach "}, {"index": 192, "image_id": 2366548, "entity": "bird", "caption": "the birds have long legs", "question": ["are there the birds ?", "are there long legs ?"], "prompt": "the {}s have long legs"}, {"index": 193, "image_id": 2366548, "entity": "bird", "caption": "tall grass is behind the bird", "question": ["is there tall grass ?", "is there the bird ?"], "prompt": "tall grass is behind the {}"}, {"index": 194, "image_id": 2366548, "entity": "bird", "caption": "the bird closest to us has a few black feathers", "question": ["is there the bird ?", "are there a few black feathers ?"], "prompt": "the {} closest to us has a few black feathers"}, {"index": 195, "image_id": 2365606, "entity": "bird", "caption": "This is a bird", "question": ["is there a bird ?"], "prompt": "This is a {}"}, {"index": 196, "image_id": 2364373, "entity": "bird", "caption": "The bird has brown legs.", "question": ["is there the bird ?", "are there brown legs ?"], "prompt": "The {} has brown legs."}, {"index": 197, "image_id": 2363673, "entity": "bird", "caption": "A white and grey bird with its head turned to the left. ", "question": ["is there a white and grey bird ?", "is there its head ?", "is there the left ?"], "prompt": "A white and grey {} with its head turned to the left. "}, {"index": 198, "image_id": 2362480, "entity": "bird", "caption": "this bird has skinny legs", "question": ["is there this bird ?", "are there skinny legs ?"], "prompt": "this {} has skinny legs"}, {"index": 199, "image_id": 2362036, "entity": "bird", "caption": "it is the eye of the bird", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "it is the eye of the {}"}, {"index": 200, "image_id": 2362036, "entity": "bird", "caption": "the birds left side of the wing", "question": ["are there the birds ?", "is there side ?", "is there the wing ?"], "prompt": "the {}s left side of the wing"}, {"index": 201, "image_id": 2362031, "entity": "bird", "caption": "The bird's feather are shiny.", "question": ["is there the bird's feather ?"], "prompt": "The {}'s feather are shiny."}, {"index": 202, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are glossy.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are glossy."}, {"index": 203, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are black.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are black."}, {"index": 204, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is black.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is black."}, {"index": 205, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is open.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is open."}, {"index": 206, "image_id": 2362031, "entity": "bird", "caption": "The bird's talons are gripping a rock.", "question": ["are there the bird's talons ?", "is there a rock ?"], "prompt": "The {}'s talons are gripping a rock."}, {"index": 207, "image_id": 2361417, "entity": "bird", "caption": "Blue bird's feet wrapped about branch", "question": ["are there blue bird's feet ?", "is there branch ?"], "prompt": "Blue {}'s feet wrapped about branch"}, {"index": 208, "image_id": 2360048, "entity": "bird", "caption": "The bird is standing on a multi level white surface.", "question": ["is there the bird ?", "is there a multi level white surface ?"], "prompt": "The {} is standing on a multi level white surface."}, {"index": 209, "image_id": 2359558, "entity": "bird", "caption": "the birds feet ", "question": ["are there the birds ?"], "prompt": "the {}s feet "}, {"index": 210, "image_id": 2359558, "entity": "bird", "caption": "birds nail ", "question": ["are there birds ?"], "prompt": "{}s nail "}, {"index": 211, "image_id": 2359558, "entity": "bird", "caption": "the birds eye ", "question": ["are there the birds ?"], "prompt": "the {}s eye "}, {"index": 212, "image_id": 2359558, "entity": "bird", "caption": "the birds tail ", "question": ["are there the birds ?"], "prompt": "the {}s tail "}, {"index": 213, "image_id": 2359558, "entity": "bird", "caption": "the birds beak", "question": ["are there the birds ?"], "prompt": "the {}s beak"}, {"index": 214, "image_id": 2359558, "entity": "bird", "caption": "black bird beak", "question": ["is there black bird beak ?"], "prompt": "black {} beak"}, {"index": 215, "image_id": 2359461, "entity": "bird", "caption": "Caterpillar in the birds beak.", "question": ["are there the birds ?"], "prompt": "Caterpillar in the {}s beak."}, {"index": 216, "image_id": 2359036, "entity": "bird", "caption": "Back of bird's neck is green.", "question": ["is there bird's neck ?"], "prompt": "Back of {}'s neck is green."}, {"index": 217, "image_id": 2359036, "entity": "bird", "caption": "yellow and orange feathers for birds chest", "question": ["are there yellow and orange feathers ?", "are there birds ?"], "prompt": "yellow and orange feathers for {}s chest"}, {"index": 218, "image_id": 2359036, "entity": "bird", "caption": "blue with black accent feathers on birds head", "question": ["are there black accent feathers ?", "are there birds ?"], "prompt": "blue with black accent feathers on {}s head"}, {"index": 219, "image_id": 2358738, "entity": "bird", "caption": "the bird has a brown spot on its head", "question": ["is there the bird ?", "is there a brown spot ?", "is there its head ?"], "prompt": "the {} has a brown spot on its head"}, {"index": 220, "image_id": 2358738, "entity": "bird", "caption": "the birds wings are brown with a few white spots", "question": ["are there the birds wings ?", "are there a few white spots ?"], "prompt": "the {}s wings are brown with a few white spots"}, {"index": 221, "image_id": 2358256, "entity": "bird", "caption": "bird with wings spread", "question": ["is there bird ?", "are there wings ?"], "prompt": "{} with wings spread"}, {"index": 222, "image_id": 2358256, "entity": "bird", "caption": "nice bird with wings spread", "question": ["is there nice bird ?", "are there wings ?"], "prompt": "nice {} with wings spread"}, {"index": 223, "image_id": 2358256, "entity": "bird", "caption": "healthy bird with wings spread", "question": ["is there healthy bird ?", "are there wings ?"], "prompt": "healthy {} with wings spread"}, {"index": 224, "image_id": 2358256, "entity": "bird", "caption": "beautiful bird with wings spread", "question": ["is there beautiful bird ?", "are there wings ?"], "prompt": "beautiful {} with wings spread"}, {"index": 225, "image_id": 2358256, "entity": "bird", "caption": "bird with pretty wings spread", "question": ["is there bird ?", "are there pretty wings ?"], "prompt": "{} with pretty wings spread"}, {"index": 226, "image_id": 2358256, "entity": "bird", "caption": "bird with colorful wings spread", "question": ["is there bird ?", "are there colorful wings ?"], "prompt": "{} with colorful wings spread"}, {"index": 227, "image_id": 2357787, "entity": "bird", "caption": "The bird has gray feathers", "question": ["is there the bird ?", "are there gray feathers ?"], "prompt": "The {} has gray feathers"}, {"index": 228, "image_id": 2356534, "entity": "bird", "caption": "dead insect in birds beak", "question": ["is there dead insect ?", "are there birds ?"], "prompt": "dead insect in {}s beak"}, {"index": 229, "image_id": 2356534, "entity": "bird", "caption": "The bird has brown feathers", "question": ["is there the bird ?", "are there brown feathers ?"], "prompt": "The {} has brown feathers"}, {"index": 230, "image_id": 2356534, "entity": "bird", "caption": "The bird is on the ground", "question": ["is there the bird ?", "is there the ground ?"], "prompt": "The {} is on the ground"}, {"index": 231, "image_id": 2355976, "entity": "bird", "caption": "A bird is next to a zebra", "question": ["is there a bird ?", "is there a zebra ?"], "prompt": "A {} is next to a zebra"}, {"index": 232, "image_id": 2355976, "entity": "bird", "caption": "The bird has black feathers", "question": ["is there the bird ?", "are there black feathers ?"], "prompt": "The {} has black feathers"}, {"index": 233, "image_id": 2355730, "entity": "bird", "caption": "bird has grey feathers", "question": ["is there bird ?", "are there grey feathers ?"], "prompt": "{} has grey feathers"}, {"index": 234, "image_id": 2355730, "entity": "bird", "caption": "The bird has claws", "question": ["is there the bird ?", "are there claws ?"], "prompt": "The {} has claws"}, {"index": 235, "image_id": 2355730, "entity": "bird", "caption": "Grey beak of a bird. ", "question": ["is there grey beak ?", "is there a bird ?"], "prompt": "Grey beak of a {}. "}, {"index": 236, "image_id": 2354530, "entity": "bird", "caption": "cement area where a bird stands", "question": ["is there cement area ?", "is there a bird ?"], "prompt": "cement area where a {} stands"}, {"index": 237, "image_id": 2354530, "entity": "bird", "caption": "bird has black streak on head", "question": ["is there bird ?", "is there black streak ?", "is there head ?"], "prompt": "{} has black streak on head"}, {"index": 238, "image_id": 2354530, "entity": "bird", "caption": "bird has yellow eye", "question": ["is there bird ?", "is there yellow eye ?"], "prompt": "{} has yellow eye"}, {"index": 239, "image_id": 2353113, "entity": "bird", "caption": "bird has brown beak", "question": ["is there bird ?", "is there brown beak ?"], "prompt": "{} has brown beak"}, {"index": 240, "image_id": 2353113, "entity": "bird", "caption": "bird is behind fence", "question": ["is there bird ?", "is there fence ?"], "prompt": "{} is behind fence"}, {"index": 241, "image_id": 2353113, "entity": "bird", "caption": "bird is near water", "question": ["is there bird ?", "is there water ?"], "prompt": "{} is near water"}, {"index": 242, "image_id": 2352371, "entity": "bird", "caption": "wood platform for bird to stand on", "question": ["is there wood platform ?", "is there bird ?"], "prompt": "wood platform for {} to stand on"}, {"index": 243, "image_id": 2349694, "entity": "bird", "caption": "tail of bird is white", "question": ["is there tail ?", "is there bird ?"], "prompt": "tail of {} is white"}, {"index": 244, "image_id": 2349587, "entity": "bird", "caption": "The bird is eating the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is eating the branch."}, {"index": 245, "image_id": 2349587, "entity": "bird", "caption": "The bird is holding the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is holding the branch."}, {"index": 246, "image_id": 2349248, "entity": "bird", "caption": "the food the bird is eating", "question": ["is there the food ?", "is there the bird ?"], "prompt": "the food the {} is eating"}, {"index": 247, "image_id": 2349109, "entity": "bird", "caption": "the branch the bird is biting", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "the branch the {} is biting"}, {"index": 248, "image_id": 2348860, "entity": "bird", "caption": "A bird has an orange beak.", "question": ["is there a bird ?", "is there an orange beak ?"], "prompt": "A {} has an orange beak."}, {"index": 249, "image_id": 2348860, "entity": "bird", "caption": "A birds claw is grasping a potato.", "question": ["is there a birds ?", "is there a potato ?"], "prompt": "A {}s claw is grasping a potato."}, {"index": 250, "image_id": 2348860, "entity": "bird", "caption": "A bird is eating a potato.", "question": ["is there a bird ?", "is there a potato ?"], "prompt": "A {} is eating a potato."}, {"index": 251, "image_id": 2348860, "entity": "bird", "caption": "A bird is on a tree branch.", "question": ["is there a bird ?", "is there a tree branch ?"], "prompt": "A {} is on a tree branch."}, {"index": 252, "image_id": 2348860, "entity": "bird", "caption": "A tropical bird is on a tree branch.", "question": ["is there a tropical bird ?", "is there a tree branch ?"], "prompt": "A tropical {} is on a tree branch."}, {"index": 253, "image_id": 2348860, "entity": "bird", "caption": "bird's wing is green", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is green"}, {"index": 254, "image_id": 2348860, "entity": "bird", "caption": "The peice of food in the birds mouth", "question": ["is there the peice ?", "is there food ?", "are there the birds ?"], "prompt": "The peice of food in the {}s mouth"}, {"index": 255, "image_id": 2348860, "entity": "bird", "caption": "The birds red orange eye", "question": ["are there the birds ?"], "prompt": "The {}s red orange eye"}, {"index": 256, "image_id": 2348860, "entity": "bird", "caption": "The birds blue face", "question": ["are there the birds ?"], "prompt": "The {}s blue face"}, {"index": 257, "image_id": 2348860, "entity": "bird", "caption": "The birds foot on the fruit", "question": ["are there the birds ?", "is there the fruit ?"], "prompt": "The {}s foot on the fruit"}, {"index": 258, "image_id": 2348860, "entity": "bird", "caption": "The piece of fruit the bird is eating", "question": ["is there the piece ?", "is there fruit ?", "is there the bird ?"], "prompt": "The piece of fruit the {} is eating"}, {"index": 259, "image_id": 2348860, "entity": "bird", "caption": "The branch the bird is sitting on", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "The branch the {} is sitting on"}, {"index": 260, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw", "question": ["is there a bird ?", "is there a claw ?"], "prompt": "a {} has a claw"}, {"index": 261, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw holding onto a branch", "question": ["is there a bird ?", "is there a claw ?", "is there a branch ?"], "prompt": "a {} has a claw holding onto a branch"}, {"index": 262, "image_id": 2348795, "entity": "bird", "caption": "Black bird beak white around face. ", "question": ["is there black bird beak ?", "is there face ?"], "prompt": "Black {} beak white around face. "}, {"index": 263, "image_id": 2348671, "entity": "bird", "caption": "that is the leg of the bird", "question": ["is there the leg ?", "is there the bird ?"], "prompt": "that is the leg of the {}"}, {"index": 264, "image_id": 2348089, "entity": "bird", "caption": "a wood platform the bird is on ", "question": ["is there a wood platform ?", "is there the bird ?"], "prompt": "a wood platform the {} is on "}, {"index": 265, "image_id": 2347493, "entity": "bird", "caption": "bird with its mouth open", "question": ["is there bird ?", "is there its mouth ?"], "prompt": "{} with its mouth open"}, {"index": 266, "image_id": 2347493, "entity": "bird", "caption": "The bird is on the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 267, "image_id": 2347493, "entity": "bird", "caption": "The birds beak has a sharp point.", "question": ["are there the birds beak ?", "is there a sharp point ?"], "prompt": "The {}s beak has a sharp point."}, {"index": 268, "image_id": 2347493, "entity": "bird", "caption": "The birds feet are orange.", "question": ["are there the birds ?", "are there feet ?"], "prompt": "The {}s feet are orange."}, {"index": 269, "image_id": 2345609, "entity": "bird", "caption": "the bird has very long legs", "question": ["is there the bird ?", "are there very long legs ?"], "prompt": "the {} has very long legs"}, {"index": 270, "image_id": 2345609, "entity": "bird", "caption": "the bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "the {} has a yellow beak"}, {"index": 271, "image_id": 2344912, "entity": "bird", "caption": "grass that small bird is standing in", "question": ["is there grass ?", "is there small bird ?"], "prompt": "grass that small {} is standing in"}, {"index": 272, "image_id": 2344341, "entity": "bird", "caption": "Feathers of the bird laid back", "question": ["are there feathers ?", "is there the bird ?"], "prompt": "Feathers of the {} laid back"}, {"index": 273, "image_id": 2344328, "entity": "bird", "caption": "A birds head and neck.", "question": ["are there a birds ?", "is there neck ?"], "prompt": "A {}s head and neck."}, {"index": 274, "image_id": 2344328, "entity": "bird", "caption": "bird has grey beak", "question": ["is there bird ?", "is there grey beak ?"], "prompt": "{} has grey beak"}, {"index": 275, "image_id": 2344328, "entity": "bird", "caption": "bird has red eyes", "question": ["is there bird ?", "are there red eyes ?"], "prompt": "{} has red eyes"}, {"index": 276, "image_id": 2344328, "entity": "bird", "caption": "bird has black head", "question": ["is there bird ?", "is there black head ?"], "prompt": "{} has black head"}, {"index": 277, "image_id": 2344328, "entity": "bird", "caption": "bird has blue neck", "question": ["is there bird ?", "is there blue neck ?"], "prompt": "{} has blue neck"}, {"index": 278, "image_id": 2341438, "entity": "bird", "caption": "head of bird is gray", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is gray"}, {"index": 279, "image_id": 2341438, "entity": "bird", "caption": "eye of bird is red", "question": ["is there eye ?", "is there bird ?"], "prompt": "eye of {} is red"}, {"index": 280, "image_id": 2341058, "entity": "bird", "caption": "two birds standing on branches", "question": ["are there two birds ?", "are there branches ?"], "prompt": "two {}s standing on branches"}, {"index": 281, "image_id": 2339258, "entity": "bird", "caption": "the all black beak on the birds face", "question": ["is there the all black beak ?", "are there the birds ?"], "prompt": "the all black beak on the {}s face"}, {"index": 282, "image_id": 2339258, "entity": "bird", "caption": "the claw on the birds foot", "question": ["is there the claw ?", "are there the birds ?"], "prompt": "the claw on the {}s foot"}, {"index": 283, "image_id": 2338848, "entity": "bird", "caption": "the bird is eating the fruit", "question": ["is there the bird ?", "is there the fruit ?"], "prompt": "the {} is eating the fruit"}, {"index": 284, "image_id": 2338848, "entity": "bird", "caption": "A bird is eating some fruit", "question": ["is there a bird ?", "is there some fruit ?"], "prompt": "A {} is eating some fruit"}, {"index": 285, "image_id": 2338848, "entity": "bird", "caption": "A bird is getting some food", "question": ["is there a bird ?", "is there some food ?"], "prompt": "A {} is getting some food"}, {"index": 286, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is red and black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is red and black."}, {"index": 287, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is round.", "question": ["are there the birds ?"], "prompt": "The {}s eye is round."}, {"index": 288, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is small.", "question": ["are there the birds ?"], "prompt": "The {}s eye is small."}, {"index": 289, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are blue.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are blue."}, {"index": 290, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are red.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are red."}, {"index": 291, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are green.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are green."}, {"index": 292, "image_id": 2338848, "entity": "bird", "caption": "the birds beak is orange", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is orange"}, {"index": 293, "image_id": 2338638, "entity": "bird", "caption": "Blue and black bird standing on wood.", "question": ["is there blue and black bird ?", "is there wood ?"], "prompt": "Blue and black {} standing on wood."}, {"index": 294, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s tail", "question": ["is there tail ?"], "prompt": "this is a {}''s tail"}, {"index": 295, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s beak", "question": ["is there a bird''s beak ?"], "prompt": "this is a {}''s beak"}, {"index": 296, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s head", "question": ["is there a bird''s head ?"], "prompt": "this is a {}''s head"}, {"index": 297, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s wing", "question": ["is there wing ?"], "prompt": "this is a {}''s wing"}, {"index": 298, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s eye", "question": ["is there eye ?"], "prompt": "this is a {}''s eye"}, {"index": 299, "image_id": 2338318, "entity": "bird", "caption": "bird is on brown branch", "question": ["is there bird ?", "is there brown branch ?"], "prompt": "{} is on brown branch"}, {"index": 300, "image_id": 2336219, "entity": "bird", "caption": "bird has white eyes", "question": ["is there bird ?", "are there white eyes ?"], "prompt": "{} has white eyes"}, {"index": 301, "image_id": 2335105, "entity": "bird", "caption": "the ear lobes on the bird are red", "question": ["are there the ear lobes ?", "is there the bird ?"], "prompt": "the ear lobes on the {} are red"}, {"index": 302, "image_id": 2332681, "entity": "bird", "caption": "the bird has tiny ears", "question": ["is there the bird ?", "are there tiny ears ?"], "prompt": "the {} has tiny ears"}, {"index": 303, "image_id": 2331468, "entity": "bird", "caption": "the bird is in the water ", "question": ["is there the bird ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 304, "image_id": 2331215, "entity": "bird", "caption": "the birds wings are up", "question": ["are there the birds ?", "are there wings ?"], "prompt": "the {}s wings are up"}, {"index": 305, "image_id": 2331215, "entity": "bird", "caption": "A bird is afraid of the elephant", "question": ["is there a bird ?", "is there the elephant ?"], "prompt": "A {} is afraid of the elephant"}, {"index": 306, "image_id": 2331215, "entity": "bird", "caption": "A bird has spread out its wings", "question": ["is there a bird ?", "are there its wings ?"], "prompt": "A {} has spread out its wings"}, {"index": 307, "image_id": 2331215, "entity": "bird", "caption": "The bird has a long wingspan", "question": ["is there the bird ?", "is there a long wingspan ?"], "prompt": "The {} has a long wingspan"}, {"index": 308, "image_id": 2330695, "entity": "bird", "caption": "bird has a black beak ", "question": ["is there bird ?", "is there a black beak ?"], "prompt": "{} has a black beak "}, {"index": 309, "image_id": 2330695, "entity": "bird", "caption": "bird has gray feet", "question": ["is there bird ?", "are there gray feet ?"], "prompt": "{} has gray feet"}, {"index": 310, "image_id": 2330307, "entity": "bird", "caption": "bird has beady eye", "question": ["is there bird ?", "is there beady eye ?"], "prompt": "{} has beady eye"}, {"index": 311, "image_id": 2330307, "entity": "bird", "caption": "bird has black beak", "question": ["is there bird ?", "is there black beak ?"], "prompt": "{} has black beak"}, {"index": 312, "image_id": 2330307, "entity": "bird", "caption": "bird has 2 feet", "question": ["is there bird ?", "are there 2 feet ?"], "prompt": "{} has 2 feet"}, {"index": 313, "image_id": 2330080, "entity": "bird", "caption": "The bird is looking a yard gnome", "question": ["is there the bird ?", "is there a yard gnome ?"], "prompt": "The {} is looking a yard gnome"}, {"index": 314, "image_id": 2330080, "entity": "bird", "caption": "The bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "The {} has a yellow beak"}, {"index": 315, "image_id": 2328246, "entity": "bird", "caption": "tree leaves behind the bird", "question": ["is there tree ?", "is there the bird ?"], "prompt": "tree leaves behind the {}"}, {"index": 316, "image_id": 2326461, "entity": "bird", "caption": "white feathers on a birds head", "question": ["are there white feathers ?", "are there a birds ?"], "prompt": "white feathers on a {}s head"}, {"index": 317, "image_id": 2326461, "entity": "bird", "caption": "The bird is on a handle", "question": ["is there the bird ?", "is there a handle ?"], "prompt": "The {} is on a handle"}, {"index": 318, "image_id": 2326461, "entity": "bird", "caption": "Small black bird beak", "question": ["is there small black bird beak ?"], "prompt": "Small black {} beak"}, {"index": 319, "image_id": 2325550, "entity": "bird", "caption": "the bird is on a pole", "question": ["is there the bird ?", "is there a pole ?"], "prompt": "the {} is on a pole"}, {"index": 320, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow feathers", "question": ["is there the bird ?", "are there yellow feathers ?"], "prompt": "the {} has yellow feathers"}, {"index": 321, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow spiked hair", "question": ["is there the bird ?", "is there yellow spiked hair ?"], "prompt": "the {} has yellow spiked hair"}, {"index": 322, "image_id": 2325324, "entity": "bird", "caption": "bird has green breast", "question": ["is there bird ?", "is there green breast ?"], "prompt": "{} has green breast"}, {"index": 323, "image_id": 2325324, "entity": "bird", "caption": "bird has green tail", "question": ["is there bird ?", "is there green tail ?"], "prompt": "{} has green tail"}, {"index": 324, "image_id": 2325324, "entity": "bird", "caption": "bird has green head", "question": ["is there bird ?", "is there green head ?"], "prompt": "{} has green head"}, {"index": 325, "image_id": 2325324, "entity": "bird", "caption": "bird has orange talons", "question": ["is there bird ?", "are there orange talons ?"], "prompt": "{} has orange talons"}, {"index": 326, "image_id": 2325324, "entity": "bird", "caption": "bird has grey claws", "question": ["is there bird ?", "are there grey claws ?"], "prompt": "{} has grey claws"}, {"index": 327, "image_id": 2325324, "entity": "bird", "caption": "bird stands on banana", "question": ["is there bird ?", "is there banana ?"], "prompt": "{} stands on banana"}, {"index": 328, "image_id": 2325324, "entity": "bird", "caption": "Green bird is standing on banana.", "question": ["is there green bird ?", "is there banana ?"], "prompt": "Green {} is standing on banana."}, {"index": 329, "image_id": 2325324, "entity": "bird", "caption": "Light is shining on bird.", "question": ["is there light ?", "is there bird ?"], "prompt": "Light is shining on {}."}, {"index": 330, "image_id": 2325324, "entity": "bird", "caption": "bird has orange feet", "question": ["is there bird ?", "are there orange feet ?"], "prompt": "{} has orange feet"}, {"index": 331, "image_id": 2325324, "entity": "bird", "caption": "bird has black nails", "question": ["is there bird ?", "are there black nails ?"], "prompt": "{} has black nails"}, {"index": 332, "image_id": 2325324, "entity": "bird", "caption": "bird's eye is purple blue and black", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is purple blue and black"}, {"index": 333, "image_id": 2323975, "entity": "bird", "caption": "Orange beak on a brown and white bird.", "question": ["is there orange beak ?", "is there a brown and white bird ?"], "prompt": "Orange beak on a brown and white {}."}, {"index": 334, "image_id": 2323560, "entity": "bird", "caption": "bird perched on a scarred limb", "question": ["is there bird ?", "is there a scarred limb ?"], "prompt": "{} perched on a scarred limb"}, {"index": 335, "image_id": 2322830, "entity": "bird", "caption": "bird is drinking water from wood bucket", "question": ["is there bird ?", "is there water ?", "is there wood bucket ?"], "prompt": "{} is drinking water from wood bucket"}, {"index": 336, "image_id": 2322624, "entity": "bird", "caption": "The birds beak has a point.", "question": ["are there the birds beak ?", "is there a point ?"], "prompt": "The {}s beak has a point."}, {"index": 337, "image_id": 2322624, "entity": "bird", "caption": "The birds chest is white.", "question": ["are there the birds ?"], "prompt": "The {}s chest is white."}, {"index": 338, "image_id": 2320805, "entity": "bird", "caption": "orange bird with black and white wings perched", "question": ["are there black and white wings ?"], "prompt": "orange {} with black and white wings perched"}, {"index": 339, "image_id": 2320805, "entity": "bird", "caption": "bird's beak contains blood and other animal remains", "question": ["is there bird's beak ?", "is there blood ?", "is there other animal ?"], "prompt": "{}'s beak contains blood and other animal remains"}, {"index": 340, "image_id": 2320805, "entity": "bird", "caption": "bird pereched of grey rock", "question": ["is there grey rock ?"], "prompt": "{} pereched of grey rock"}, {"index": 341, "image_id": 2320805, "entity": "bird", "caption": "a large tree branch with a bird nested on it", "question": ["is there a large tree branch ?", "is there a bird ?"], "prompt": "a large tree branch with a {} nested on it"}, {"index": 342, "image_id": 2320805, "entity": "bird", "caption": "a tree limb with a bird rested on it", "question": ["is there a tree limb ?", "is there a bird ?"], "prompt": "a tree limb with a {} rested on it"}, {"index": 343, "image_id": 2320805, "entity": "bird", "caption": "bird has grey head", "question": ["is there bird ?", "is there grey head ?"], "prompt": "{} has grey head"}, {"index": 344, "image_id": 2318439, "entity": "bird", "caption": "Baby bird is standing in ground.", "question": ["is there baby bird ?", "is there ground ?"], "prompt": "Baby {} is standing in ground."}, {"index": 345, "image_id": 2318290, "entity": "bird", "caption": "section of brown tipped bird wing feather", "question": ["is there section ?", "is there bird wing feather ?"], "prompt": "section of brown tipped {} wing feather"}, {"index": 346, "image_id": 2318104, "entity": "bird", "caption": "a bird that is standing outside", "question": ["is there a bird ?"], "prompt": "a {} that is standing outside"}, {"index": 347, "image_id": 2317875, "entity": "bird", "caption": "the bird has long gray legs", "question": ["is there the bird ?", "are there long gray legs ?"], "prompt": "the {} has long gray legs"}, {"index": 348, "image_id": 2317875, "entity": "bird", "caption": "the bird has a small beady eye", "question": ["is there the bird ?", "is there a small beady eye ?"], "prompt": "the {} has a small beady eye"}, {"index": 349, "image_id": 2317875, "entity": "bird", "caption": "the bird has a big beak", "question": ["is there the bird ?", "is there a big beak ?"], "prompt": "the {} has a big beak"}, {"index": 350, "image_id": 2317875, "entity": "bird", "caption": "the bird has tons of feathers", "question": ["is there the bird ?", "are there tons ?", "are there feathers ?"], "prompt": "the {} has tons of feathers"}, {"index": 351, "image_id": 2317875, "entity": "bird", "caption": "the bird has its mouth open", "question": ["is there the bird ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 352, "image_id": 2317875, "entity": "bird", "caption": "the bird is standing in grass", "question": ["is there the bird ?", "is there grass ?"], "prompt": "the {} is standing in grass"}, {"index": 353, "image_id": 2317875, "entity": "bird", "caption": "the bird is near a pond", "question": ["is there the bird ?", "is there a pond ?"], "prompt": "the {} is near a pond"}, {"index": 354, "image_id": 2317249, "entity": "bird", "caption": "The birds are out in the forest", "question": ["are there the birds ?", "is there the forest ?"], "prompt": "The {}s are out in the forest"}, {"index": 355, "image_id": 2317249, "entity": "bird", "caption": "The birds are watching for predators", "question": ["are there the birds ?", "are there predators ?"], "prompt": "The {}s are watching for predators"}, {"index": 356, "image_id": 2316597, "entity": "bird", "caption": "the pool of bird feeding ", "question": ["is there the pool ?", "is there bird feeding ?"], "prompt": "the pool of {} feeding "}, {"index": 357, "image_id": 2316597, "entity": "bird", "caption": "a bird iwth a beak", "question": ["is there a bird ?", "is there a beak ?"], "prompt": "a {} iwth a beak"}, {"index": 358, "image_id": 2316285, "entity": "bird", "caption": "bird perched on a branch", "question": ["is there bird ?", "is there a branch ?"], "prompt": "{} perched on a branch"}, {"index": 359, "image_id": 2414525, "entity": "bird", "caption": "man giving bird wine", "question": ["is there man ?", "is there bird wine ?"], "prompt": "man giving {} wine"}, {"index": 360, "image_id": 2413894, "entity": "bird", "caption": "the bird has two eyes", "question": ["is there the bird ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 361, "image_id": 2413894, "entity": "bird", "caption": "The bird is standing in calm water.", "question": ["is there the bird ?", "is there calm water ?"], "prompt": "The {} is standing in calm water."}, {"index": 362, "image_id": 2413604, "entity": "bird", "caption": "the bird is on the chair", "question": ["is there the bird ?", "is there the chair ?"], "prompt": "the {} is on the chair"}, {"index": 363, "image_id": 2413604, "entity": "bird", "caption": "The bird is outside resting on the edge of a wicker basket chair. ", "question": ["is there the bird ?", "is there the edge ?", "is there a wicker basket chair ?"], "prompt": "The {} is outside resting on the edge of a wicker basket chair. "}, {"index": 364, "image_id": 2413604, "entity": "bird", "caption": "The bird has thick black feathers. ", "question": ["is there the bird ?", "are there thick black feathers ?"], "prompt": "The {} has thick black feathers. "}, {"index": 365, "image_id": 2413604, "entity": "bird", "caption": "little bird has extremely expressive eyes", "question": ["is there little bird ?", "are there extremely expressive eyes ?"], "prompt": "little {} has extremely expressive eyes"}, {"index": 366, "image_id": 2413070, "entity": "bird", "caption": "two birds feet", "question": ["are there two birds ?"], "prompt": "two {}s feet"}, {"index": 367, "image_id": 2416459, "entity": "bird", "caption": "bird perched on the flower", "question": ["is there bird ?", "is there the flower ?"], "prompt": "{} perched on the flower"}, {"index": 368, "image_id": 2417074, "entity": "bird", "caption": "the bird has red color beak", "question": ["is there the bird ?", "is there red color beak ?"], "prompt": "the {} has red color beak"}, {"index": 369, "image_id": 2417074, "entity": "bird", "caption": "the bird has paddle feet", "question": ["is there the bird ?", "are there paddle feet ?"], "prompt": "the {} has paddle feet"}, {"index": 370, "image_id": 2417074, "entity": "bird", "caption": "the wings of the bird are gray", "question": ["are there the wings ?", "is there the bird ?"], "prompt": "the wings of the {} are gray"}, {"index": 371, "image_id": 2417074, "entity": "bird", "caption": "birds foot ", "question": ["are there birds ?"], "prompt": "{}s foot "}, {"index": 372, "image_id": 2417074, "entity": "bird", "caption": "beak of bird is closed", "question": ["is there beak ?", "is there bird ?"], "prompt": "beak of {} is closed"}, {"index": 373, "image_id": 2417074, "entity": "bird", "caption": "foot of bird is on dock", "question": ["is there foot ?", "is there bird ?", "is there dock ?"], "prompt": "foot of {} is on dock"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n01537544.json b/data/imagenet/compositions/prompts/n01537544.json
new file mode 100644
index 0000000000000000000000000000000000000000..82e82604697c33b3422e5f8c2428c56541fdb876
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01537544.json
@@ -0,0 +1,4071 @@
+[
+ {
+ "index": 0,
+ "image_id": 2220,
+ "entity": "bird",
+ "caption": "the bird has a fish in its mouth",
+ "question": [
+ "is there the bird ?",
+ "is there a fish ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has a fish in its mouth"
+ },
+ {
+ "index": 1,
+ "image_id": 2612,
+ "entity": "bird",
+ "caption": "bird has tan beak",
+ "question": [
+ "is there bird ?",
+ "is there tan beak ?"
+ ],
+ "prompt": "{} has tan beak"
+ },
+ {
+ "index": 2,
+ "image_id": 2612,
+ "entity": "bird",
+ "caption": "bird has brown eye",
+ "question": [
+ "is there bird ?",
+ "is there brown eye ?"
+ ],
+ "prompt": "{} has brown eye"
+ },
+ {
+ "index": 3,
+ "image_id": 2612,
+ "entity": "bird",
+ "caption": "bird has black feathers",
+ "question": [
+ "is there bird ?",
+ "are there black feathers ?"
+ ],
+ "prompt": "{} has black feathers"
+ },
+ {
+ "index": 4,
+ "image_id": 2613,
+ "entity": "bird",
+ "caption": "birds have orange beaks",
+ "question": [
+ "are there birds ?",
+ "are there orange beaks ?"
+ ],
+ "prompt": "{}s have orange beaks"
+ },
+ {
+ "index": 5,
+ "image_id": 2613,
+ "entity": "bird",
+ "caption": "bird has white feathers",
+ "question": [
+ "is there bird ?",
+ "are there white feathers ?"
+ ],
+ "prompt": "{} has white feathers"
+ },
+ {
+ "index": 6,
+ "image_id": 2613,
+ "entity": "bird",
+ "caption": "bird has grey leg",
+ "question": [
+ "is there bird ?"
+ ],
+ "prompt": "{} has grey leg"
+ },
+ {
+ "index": 7,
+ "image_id": 2613,
+ "entity": "bird",
+ "caption": "bird stands on one leg",
+ "question": [
+ "is there bird ?",
+ "is there one leg ?"
+ ],
+ "prompt": "{} stands on one leg"
+ },
+ {
+ "index": 8,
+ "image_id": 2619,
+ "entity": "bird",
+ "caption": "the eye of the bird is black",
+ "question": [
+ "is there the eye ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the eye of the {} is black"
+ },
+ {
+ "index": 9,
+ "image_id": 2619,
+ "entity": "bird",
+ "caption": "the bird feet is black",
+ "question": [
+ "are there the bird feet ?"
+ ],
+ "prompt": "the {} feet is black"
+ },
+ {
+ "index": 10,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "The bird is eating food out of the person's hand",
+ "question": [
+ "is there the bird ?",
+ "is there food ?",
+ "is there the person's hand ?"
+ ],
+ "prompt": "The {} is eating food out of the person's hand"
+ },
+ {
+ "index": 11,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "The bird is eating food",
+ "question": [
+ "is there the bird ?",
+ "is there food ?"
+ ],
+ "prompt": "The {} is eating food"
+ },
+ {
+ "index": 12,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "A bird with red feathers is eating food",
+ "question": [
+ "is there a bird ?",
+ "are there red feathers ?",
+ "is there food ?"
+ ],
+ "prompt": "A {} with red feathers is eating food"
+ },
+ {
+ "index": 13,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "The red feather bird is eating food out of a person's hand",
+ "question": [
+ "is there the red feather bird ?",
+ "is there food ?",
+ "is there a person's hand ?"
+ ],
+ "prompt": "The red feather {} is eating food out of a person's hand"
+ },
+ {
+ "index": 14,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "The bird is eating an apples from the person's hand",
+ "question": [
+ "is there the bird ?",
+ "are there an apples ?",
+ "is there the person's hand ?"
+ ],
+ "prompt": "The {} is eating an apples from the person's hand"
+ },
+ {
+ "index": 15,
+ "image_id": 2415095,
+ "entity": "bird",
+ "caption": "The red-feathered bird is eating an apples from the person's hand",
+ "question": [
+ "is there the red-feathered bird ?",
+ "are there an apples ?",
+ "is there the person's hand ?"
+ ],
+ "prompt": "The red-feathered {} is eating an apples from the person's hand"
+ },
+ {
+ "index": 16,
+ "image_id": 2414024,
+ "entity": "bird",
+ "caption": "little bird with chest puffed out",
+ "question": [
+ "is there little bird ?",
+ "is there chest ?"
+ ],
+ "prompt": "little {} with chest puffed out"
+ },
+ {
+ "index": 17,
+ "image_id": 2412521,
+ "entity": "bird",
+ "caption": "bird has red patch",
+ "question": [
+ "is there bird ?",
+ "is there red patch ?"
+ ],
+ "prompt": "{} has red patch"
+ },
+ {
+ "index": 18,
+ "image_id": 2412521,
+ "entity": "bird",
+ "caption": "wood is under bird",
+ "question": [
+ "is there wood ?",
+ "is there bird ?"
+ ],
+ "prompt": "wood is under {}"
+ },
+ {
+ "index": 19,
+ "image_id": 2412521,
+ "entity": "bird",
+ "caption": "black bird has it's mouth open",
+ "question": [
+ "is there black bird ?"
+ ],
+ "prompt": "black {} has it's mouth open"
+ },
+ {
+ "index": 20,
+ "image_id": 2412521,
+ "entity": "bird",
+ "caption": "bird perched on log",
+ "question": [
+ "is there bird ?",
+ "is there log ?"
+ ],
+ "prompt": "{} perched on log"
+ },
+ {
+ "index": 21,
+ "image_id": 2412521,
+ "entity": "bird",
+ "caption": "black bird leg slanted from body",
+ "question": [
+ "is there black bird leg ?",
+ "is there body ?"
+ ],
+ "prompt": "black {} leg slanted from body"
+ },
+ {
+ "index": 22,
+ "image_id": 2412061,
+ "entity": "bird",
+ "caption": "Black bird beak",
+ "question": [
+ "is there black bird beak ?"
+ ],
+ "prompt": "Black {} beak"
+ },
+ {
+ "index": 23,
+ "image_id": 2412061,
+ "entity": "bird",
+ "caption": "Black-feathered bird looks up to the sky",
+ "question": [
+ "is there black-feathered bird ?",
+ "is there the sky ?"
+ ],
+ "prompt": "Black-feathered {} looks up to the sky"
+ },
+ {
+ "index": 24,
+ "image_id": 2409570,
+ "entity": "bird",
+ "caption": "the bird has two feet",
+ "question": [
+ "is there the bird ?",
+ "are there two feet ?"
+ ],
+ "prompt": "the {} has two feet"
+ },
+ {
+ "index": 25,
+ "image_id": 2409570,
+ "entity": "bird",
+ "caption": "the bird is biting its tail",
+ "question": [
+ "is there the bird ?",
+ "is there its tail ?"
+ ],
+ "prompt": "the {} is biting its tail"
+ },
+ {
+ "index": 26,
+ "image_id": 2409570,
+ "entity": "bird",
+ "caption": "the bird has wings",
+ "question": [
+ "is there the bird ?",
+ "are there wings ?"
+ ],
+ "prompt": "the {} has wings"
+ },
+ {
+ "index": 27,
+ "image_id": 2409570,
+ "entity": "bird",
+ "caption": "White bird with black tail feathers standing on the sand",
+ "question": [
+ "is there white bird ?",
+ "are there black tail feathers ?",
+ "is there the sand ?"
+ ],
+ "prompt": "White {} with black tail feathers standing on the sand"
+ },
+ {
+ "index": 28,
+ "image_id": 2409306,
+ "entity": "bird",
+ "caption": "a fragment of ground that a young bird is standing on",
+ "question": [
+ "is there a fragment ?",
+ "is there ground ?",
+ "is there a young bird ?"
+ ],
+ "prompt": "a fragment of ground that a young {} is standing on"
+ },
+ {
+ "index": 29,
+ "image_id": 2409306,
+ "entity": "bird",
+ "caption": "head of bird is polka dotted",
+ "question": [
+ "is there head ?",
+ "is there bird ?"
+ ],
+ "prompt": "head of {} is polka dotted"
+ },
+ {
+ "index": 30,
+ "image_id": 2409306,
+ "entity": "bird",
+ "caption": "a baby bird stands on the ground",
+ "question": [
+ "is there a baby bird ?",
+ "is there the ground ?"
+ ],
+ "prompt": "a baby {} stands on the ground"
+ },
+ {
+ "index": 31,
+ "image_id": 2409215,
+ "entity": "bird",
+ "caption": "The bird's beak is orange. ",
+ "question": [
+ "is there the bird's beak ?"
+ ],
+ "prompt": "The {}'s beak is orange. "
+ },
+ {
+ "index": 32,
+ "image_id": 2409215,
+ "entity": "bird",
+ "caption": "The bird is flying above water. ",
+ "question": [
+ "is there the bird ?",
+ "is there water ?"
+ ],
+ "prompt": "The {} is flying above water. "
+ },
+ {
+ "index": 33,
+ "image_id": 2409215,
+ "entity": "bird",
+ "caption": "End of the bird's wing that is primarily black",
+ "question": [
+ "is there end ?",
+ "is there the bird's wing ?"
+ ],
+ "prompt": "End of the {}'s wing that is primarily black"
+ },
+ {
+ "index": 34,
+ "image_id": 2409045,
+ "entity": "bird",
+ "caption": "Neck of bird has S shape",
+ "question": [
+ "is there neck ?",
+ "is there bird ?",
+ "are there s ?",
+ "is there shape ?"
+ ],
+ "prompt": "Neck of {} has S shape"
+ },
+ {
+ "index": 35,
+ "image_id": 2409045,
+ "entity": "bird",
+ "caption": "Grey bird rising into the air",
+ "question": [
+ "is there grey bird ?",
+ "is there the air ?"
+ ],
+ "prompt": "Grey {} rising into the air"
+ },
+ {
+ "index": 36,
+ "image_id": 2409010,
+ "entity": "bird",
+ "caption": "a bird has a small creature in its mouth",
+ "question": [
+ "is there a bird ?",
+ "is there a small creature ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "a {} has a small creature in its mouth"
+ },
+ {
+ "index": 37,
+ "image_id": 2409010,
+ "entity": "bird",
+ "caption": "a bird walks along the wet sand",
+ "question": [
+ "is there a bird ?",
+ "is there the wet sand ?"
+ ],
+ "prompt": "a {} walks along the wet sand"
+ },
+ {
+ "index": 38,
+ "image_id": 2408592,
+ "entity": "bird",
+ "caption": "a bird stands at the edge of the water",
+ "question": [
+ "is there a bird ?",
+ "is there the edge ?",
+ "is there the water ?"
+ ],
+ "prompt": "a {} stands at the edge of the water"
+ },
+ {
+ "index": 39,
+ "image_id": 2408592,
+ "entity": "bird",
+ "caption": "The bird has webbed feet",
+ "question": [
+ "is there the bird ?"
+ ],
+ "prompt": "The {} has webbed feet"
+ },
+ {
+ "index": 40,
+ "image_id": 2408592,
+ "entity": "bird",
+ "caption": "The bird is standing in the dirt",
+ "question": [
+ "is there the bird ?",
+ "is there the dirt ?"
+ ],
+ "prompt": "The {} is standing in the dirt"
+ },
+ {
+ "index": 41,
+ "image_id": 2408592,
+ "entity": "bird",
+ "caption": "the ground the bird is standing on",
+ "question": [
+ "is there the ground ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the ground the {} is standing on"
+ },
+ {
+ "index": 42,
+ "image_id": 2408299,
+ "entity": "bird",
+ "caption": "the bird is hiding in a plant",
+ "question": [
+ "is there the bird ?",
+ "is there a plant ?"
+ ],
+ "prompt": "the {} is hiding in a plant"
+ },
+ {
+ "index": 43,
+ "image_id": 2408299,
+ "entity": "bird",
+ "caption": "the bird has a white belly",
+ "question": [
+ "is there the bird ?",
+ "is there a white belly ?"
+ ],
+ "prompt": "the {} has a white belly"
+ },
+ {
+ "index": 44,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "this is a birds eye",
+ "question": [
+ "are there a birds ?"
+ ],
+ "prompt": "this is a {}s eye"
+ },
+ {
+ "index": 45,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "this is a bird tail",
+ "question": [
+ "is there a bird tail ?"
+ ],
+ "prompt": "this is a {} tail"
+ },
+ {
+ "index": 46,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "the bird has sharp beak",
+ "question": [
+ "is there the bird ?",
+ "is there sharp beak ?"
+ ],
+ "prompt": "the {} has sharp beak"
+ },
+ {
+ "index": 47,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "the branches are beside the bird",
+ "question": [
+ "are there the branches ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the branches are beside the {}"
+ },
+ {
+ "index": 48,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "the bird has thin legs",
+ "question": [
+ "is there the bird ?",
+ "are there thin legs ?"
+ ],
+ "prompt": "the {} has thin legs"
+ },
+ {
+ "index": 49,
+ "image_id": 2407737,
+ "entity": "bird",
+ "caption": "the bird has black eyes",
+ "question": [
+ "is there the bird ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "the {} has black eyes"
+ },
+ {
+ "index": 50,
+ "image_id": 2407316,
+ "entity": "bird",
+ "caption": "the bird has black legs",
+ "question": [
+ "is there the bird ?",
+ "are there black legs ?"
+ ],
+ "prompt": "the {} has black legs"
+ },
+ {
+ "index": 51,
+ "image_id": 2407316,
+ "entity": "bird",
+ "caption": "the bird has three toes",
+ "question": [
+ "is there the bird ?",
+ "are there three toes ?"
+ ],
+ "prompt": "the {} has three toes"
+ },
+ {
+ "index": 52,
+ "image_id": 2406956,
+ "entity": "bird",
+ "caption": "black feathers on top of birds head",
+ "question": [
+ "are there black feathers ?",
+ "is there top ?",
+ "are there birds ?"
+ ],
+ "prompt": "black feathers on top of {}s head"
+ },
+ {
+ "index": 53,
+ "image_id": 2406956,
+ "entity": "bird",
+ "caption": "this is the bird's eye",
+ "question": [
+ "is there the bird's eye ?"
+ ],
+ "prompt": "this is the {}'s eye"
+ },
+ {
+ "index": 54,
+ "image_id": 2406956,
+ "entity": "bird",
+ "caption": "an object is in the bird's beak",
+ "question": [
+ "is there an object ?",
+ "is there the bird's beak ?"
+ ],
+ "prompt": "an object is in the {}'s beak"
+ },
+ {
+ "index": 55,
+ "image_id": 2406956,
+ "entity": "bird",
+ "caption": "the bird's eye is black in color",
+ "question": [
+ "is there the bird's eye ?",
+ "is there color ?"
+ ],
+ "prompt": "the {}'s eye is black in color"
+ },
+ {
+ "index": 56,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "bird has long beak",
+ "question": [
+ "is there bird ?",
+ "is there long beak ?"
+ ],
+ "prompt": "{} has long beak"
+ },
+ {
+ "index": 57,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "bird has pink feathers",
+ "question": [
+ "is there bird ?",
+ "are there pink feathers ?"
+ ],
+ "prompt": "{} has pink feathers"
+ },
+ {
+ "index": 58,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "bird has red eye",
+ "question": [
+ "is there bird ?",
+ "is there red eye ?"
+ ],
+ "prompt": "{} has red eye"
+ },
+ {
+ "index": 59,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "head of bird is featherless",
+ "question": [
+ "is there head ?",
+ "is there bird ?"
+ ],
+ "prompt": "head of {} is featherless"
+ },
+ {
+ "index": 60,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "bird has green tag on leg",
+ "question": [
+ "is there bird ?",
+ "is there green tag ?",
+ "is there leg ?"
+ ],
+ "prompt": "{} has green tag on leg"
+ },
+ {
+ "index": 61,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird is in the water",
+ "question": [
+ "is there the bird ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is in the water"
+ },
+ {
+ "index": 62,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird has a beak",
+ "question": [
+ "is there the bird ?",
+ "is there a beak ?"
+ ],
+ "prompt": "The {} has a beak"
+ },
+ {
+ "index": 63,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird's eye is open",
+ "question": [
+ "is there the bird's eye ?"
+ ],
+ "prompt": "The {}'s eye is open"
+ },
+ {
+ "index": 64,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird is wading in the water.",
+ "question": [
+ "is there the bird ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is wading in the water."
+ },
+ {
+ "index": 65,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird has a long beak.",
+ "question": [
+ "is there the bird ?",
+ "is there a long beak ?"
+ ],
+ "prompt": "The {} has a long beak."
+ },
+ {
+ "index": 66,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird has light and dark pink feathers.",
+ "question": [
+ "is there the bird ?",
+ "are there light and dark pink feathers ?"
+ ],
+ "prompt": "The {} has light and dark pink feathers."
+ },
+ {
+ "index": 67,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird has a green band around the leg.",
+ "question": [
+ "is there the bird ?",
+ "is there a green band ?",
+ "is there the leg ?"
+ ],
+ "prompt": "The {} has a green band around the leg."
+ },
+ {
+ "index": 68,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird has white neck feathers.",
+ "question": [
+ "is there the bird ?",
+ "are there white neck feathers ?"
+ ],
+ "prompt": "The {} has white neck feathers."
+ },
+ {
+ "index": 69,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "Large rocks are behind the birds.",
+ "question": [
+ "are there large rocks ?",
+ "are there the birds ?"
+ ],
+ "prompt": "Large rocks are behind the {}s."
+ },
+ {
+ "index": 70,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "Water is dripping from the bird's beak.",
+ "question": [
+ "is there water ?",
+ "is there the bird's beak ?"
+ ],
+ "prompt": "Water is dripping from the {}'s beak."
+ },
+ {
+ "index": 71,
+ "image_id": 2404798,
+ "entity": "bird",
+ "caption": "The bird's eye is yellow and black.",
+ "question": [
+ "is there the bird's eye ?"
+ ],
+ "prompt": "The {}'s eye is yellow and black."
+ },
+ {
+ "index": 72,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird is on a long black metal piece",
+ "question": [
+ "is there the bird ?",
+ "is there a long black metal piece ?"
+ ],
+ "prompt": "the {} is on a long black metal piece"
+ },
+ {
+ "index": 73,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "glass sun catchers are hanging in front of the wooden bird",
+ "question": [
+ "are there glass sun catchers ?",
+ "is there front ?",
+ "is there the wooden bird ?"
+ ],
+ "prompt": "glass sun catchers are hanging in front of the wooden {}"
+ },
+ {
+ "index": 74,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird has a beak",
+ "question": [
+ "is there the bird ?",
+ "is there a beak ?"
+ ],
+ "prompt": "the {} has a beak"
+ },
+ {
+ "index": 75,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the window is reflecting the bird",
+ "question": [
+ "is there the window ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the window is reflecting the {}"
+ },
+ {
+ "index": 76,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird has 1 leg",
+ "question": [
+ "is there the bird ?",
+ "is there 1 leg ?"
+ ],
+ "prompt": "the {} has 1 leg"
+ },
+ {
+ "index": 77,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird has a long beak",
+ "question": [
+ "is there the bird ?",
+ "is there a long beak ?"
+ ],
+ "prompt": "the {} has a long beak"
+ },
+ {
+ "index": 78,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird's eye is black",
+ "question": [
+ "is there the bird's eye ?"
+ ],
+ "prompt": "the {}'s eye is black"
+ },
+ {
+ "index": 79,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird's leg is long",
+ "question": [
+ "is there the bird's leg ?"
+ ],
+ "prompt": "the {}'s leg is long"
+ },
+ {
+ "index": 80,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "the bird is sitting on the window",
+ "question": [
+ "is there the bird ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is sitting on the window"
+ },
+ {
+ "index": 81,
+ "image_id": 2404673,
+ "entity": "bird",
+ "caption": "The bird has a long beak",
+ "question": [
+ "is there the bird ?",
+ "is there a long beak ?"
+ ],
+ "prompt": "The {} has a long beak"
+ },
+ {
+ "index": 82,
+ "image_id": 2403435,
+ "entity": "bird",
+ "caption": "person is feeding bird",
+ "question": [
+ "is there person ?",
+ "is there bird ?"
+ ],
+ "prompt": "person is feeding {}"
+ },
+ {
+ "index": 83,
+ "image_id": 2401304,
+ "entity": "bird",
+ "caption": "a bird is standing on weathered wood",
+ "question": [
+ "is there a bird ?",
+ "is there weathered wood ?"
+ ],
+ "prompt": "a {} is standing on weathered wood"
+ },
+ {
+ "index": 84,
+ "image_id": 2401079,
+ "entity": "bird",
+ "caption": "bird's beak is black and red",
+ "question": [
+ "is there bird's beak ?"
+ ],
+ "prompt": "{}'s beak is black and red"
+ },
+ {
+ "index": 85,
+ "image_id": 2401079,
+ "entity": "bird",
+ "caption": "the bird's feet are black",
+ "question": [
+ "are there the bird's feet ?"
+ ],
+ "prompt": "the {}'s feet are black"
+ },
+ {
+ "index": 86,
+ "image_id": 2400985,
+ "entity": "bird",
+ "caption": "the bird has a short black beak",
+ "question": [
+ "is there the bird ?",
+ "is there a short black beak ?"
+ ],
+ "prompt": "the {} has a short black beak"
+ },
+ {
+ "index": 87,
+ "image_id": 2400985,
+ "entity": "bird",
+ "caption": "the bird has sharp claws",
+ "question": [
+ "is there the bird ?",
+ "are there sharp claws ?"
+ ],
+ "prompt": "the {} has sharp claws"
+ },
+ {
+ "index": 88,
+ "image_id": 2400985,
+ "entity": "bird",
+ "caption": "A birds left side wing. ",
+ "question": [
+ "are there a birds ?",
+ "is there side wing ?"
+ ],
+ "prompt": "A {}s left side wing. "
+ },
+ {
+ "index": 89,
+ "image_id": 2400070,
+ "entity": "bird",
+ "caption": "The fully shown birds right foot",
+ "question": [
+ "are there the fully shown birds ?"
+ ],
+ "prompt": "The fully shown {}s right foot"
+ },
+ {
+ "index": 90,
+ "image_id": 2400070,
+ "entity": "bird",
+ "caption": "The fully shown birds left foot",
+ "question": [
+ "are there the fully shown birds ?",
+ "is there foot ?"
+ ],
+ "prompt": "The fully shown {}s left foot"
+ },
+ {
+ "index": 91,
+ "image_id": 2396390,
+ "entity": "bird",
+ "caption": "bird perched on wooden pole ",
+ "question": [
+ "is there bird ?",
+ "is there wooden pole ?"
+ ],
+ "prompt": "{} perched on wooden pole "
+ },
+ {
+ "index": 92,
+ "image_id": 2396390,
+ "entity": "bird",
+ "caption": "bird angled sideways with feet tightly gripping",
+ "question": [
+ "is there bird ?",
+ "are there feet ?"
+ ],
+ "prompt": "{} angled sideways with feet tightly gripping"
+ },
+ {
+ "index": 93,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird has yellow eyes.",
+ "question": [
+ "is there the bird ?",
+ "are there yellow eyes ?"
+ ],
+ "prompt": "The {} has yellow eyes."
+ },
+ {
+ "index": 94,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird stands on the tree.",
+ "question": [
+ "is there the bird ?",
+ "is there the tree ?"
+ ],
+ "prompt": "The {} stands on the tree."
+ },
+ {
+ "index": 95,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "this is a bird",
+ "question": [
+ "is there a bird ?"
+ ],
+ "prompt": "this is a {}"
+ },
+ {
+ "index": 96,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "the bird is on the tree",
+ "question": [
+ "is there the bird ?",
+ "is there the tree ?"
+ ],
+ "prompt": "the {} is on the tree"
+ },
+ {
+ "index": 97,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "the bird has yellow eyes",
+ "question": [
+ "is there the bird ?",
+ "are there yellow eyes ?"
+ ],
+ "prompt": "the {} has yellow eyes"
+ },
+ {
+ "index": 98,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "the bird's legs are long",
+ "question": [
+ "are there the bird's legs ?"
+ ],
+ "prompt": "the {}'s legs are long"
+ },
+ {
+ "index": 99,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird has a pointy beak.",
+ "question": [
+ "is there the bird ?",
+ "is there a pointy beak ?"
+ ],
+ "prompt": "The {} has a pointy beak."
+ },
+ {
+ "index": 100,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird has two legs.",
+ "question": [
+ "is there the bird ?",
+ "are there two legs ?"
+ ],
+ "prompt": "The {} has two legs."
+ },
+ {
+ "index": 101,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird has a yellow eye.",
+ "question": [
+ "is there the bird ?",
+ "is there a yellow eye ?"
+ ],
+ "prompt": "The {} has a yellow eye."
+ },
+ {
+ "index": 102,
+ "image_id": 2396109,
+ "entity": "bird",
+ "caption": "The bird has a wing.",
+ "question": [
+ "is there the bird ?",
+ "is there a wing ?"
+ ],
+ "prompt": "The {} has a wing."
+ },
+ {
+ "index": 103,
+ "image_id": 2395577,
+ "entity": "bird",
+ "caption": "the bird has a wing",
+ "question": [
+ "is there the bird ?",
+ "is there a wing ?"
+ ],
+ "prompt": "the {} has a wing"
+ },
+ {
+ "index": 104,
+ "image_id": 2395577,
+ "entity": "bird",
+ "caption": "the bird has an eye",
+ "question": [
+ "is there the bird ?",
+ "is there an eye ?"
+ ],
+ "prompt": "the {} has an eye"
+ },
+ {
+ "index": 105,
+ "image_id": 2394957,
+ "entity": "bird",
+ "caption": "bird stand on rim of bowl",
+ "question": [
+ "is there bird ?",
+ "is there rim ?",
+ "is there bowl ?"
+ ],
+ "prompt": "{} stand on rim of bowl"
+ },
+ {
+ "index": 106,
+ "image_id": 2394957,
+ "entity": "bird",
+ "caption": "bird's head is black and blue in color",
+ "question": [
+ "is there bird's head ?",
+ "is there color ?"
+ ],
+ "prompt": "{}'s head is black and blue in color"
+ },
+ {
+ "index": 107,
+ "image_id": 2394957,
+ "entity": "bird",
+ "caption": "bird's eye is red",
+ "question": [
+ "is there bird's eye ?"
+ ],
+ "prompt": "{}'s eye is red"
+ },
+ {
+ "index": 108,
+ "image_id": 2393198,
+ "entity": "bird",
+ "caption": "the birds long beak",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s long beak"
+ },
+ {
+ "index": 109,
+ "image_id": 2393198,
+ "entity": "bird",
+ "caption": "the feathers on the birds chest",
+ "question": [
+ "are there the feathers ?",
+ "are there the birds ?"
+ ],
+ "prompt": "the feathers on the {}s chest"
+ },
+ {
+ "index": 110,
+ "image_id": 2393198,
+ "entity": "bird",
+ "caption": "the log the birds standing on",
+ "question": [
+ "is there the log ?",
+ "are there the birds ?"
+ ],
+ "prompt": "the log the {}s standing on"
+ },
+ {
+ "index": 111,
+ "image_id": 2392907,
+ "entity": "bird",
+ "caption": "bird has yellow legs",
+ "question": [
+ "is there bird ?",
+ "are there yellow legs ?"
+ ],
+ "prompt": "{} has yellow legs"
+ },
+ {
+ "index": 112,
+ "image_id": 2392907,
+ "entity": "bird",
+ "caption": "bird has large toe nails",
+ "question": [
+ "is there bird ?",
+ "are there large toe nails ?"
+ ],
+ "prompt": "{} has large toe nails"
+ },
+ {
+ "index": 113,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "The birds tail feathers.",
+ "question": [
+ "are there the birds tail feathers ?"
+ ],
+ "prompt": "The {}s tail feathers."
+ },
+ {
+ "index": 114,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "The bird is standing on a person's hand.",
+ "question": [
+ "is there the bird ?",
+ "is there a person's hand ?"
+ ],
+ "prompt": "The {} is standing on a person's hand."
+ },
+ {
+ "index": 115,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "The bird has grey feathers.",
+ "question": [
+ "is there the bird ?",
+ "are there grey feathers ?"
+ ],
+ "prompt": "The {} has grey feathers."
+ },
+ {
+ "index": 116,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "The bird has a black beak.",
+ "question": [
+ "is there the bird ?",
+ "is there a black beak ?"
+ ],
+ "prompt": "The {} has a black beak."
+ },
+ {
+ "index": 117,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "the bird has a black beak",
+ "question": [
+ "is there the bird ?",
+ "is there a black beak ?"
+ ],
+ "prompt": "the {} has a black beak"
+ },
+ {
+ "index": 118,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "the bird has black legs and claws",
+ "question": [
+ "is there the bird ?",
+ "are there black legs ?",
+ "are there claws ?"
+ ],
+ "prompt": "the {} has black legs and claws"
+ },
+ {
+ "index": 119,
+ "image_id": 2392255,
+ "entity": "bird",
+ "caption": "the bird's head is white and gray",
+ "question": [
+ "is there the bird's head ?"
+ ],
+ "prompt": "the {}'s head is white and gray"
+ },
+ {
+ "index": 120,
+ "image_id": 2391103,
+ "entity": "bird",
+ "caption": "Top of bird's head is jet black",
+ "question": [
+ "is there top ?",
+ "is there bird's head ?",
+ "is there jet black ?"
+ ],
+ "prompt": "Top of {}'s head is jet black"
+ },
+ {
+ "index": 121,
+ "image_id": 2390453,
+ "entity": "bird",
+ "caption": "the bird has eye",
+ "question": [
+ "is there the bird ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {} has eye"
+ },
+ {
+ "index": 122,
+ "image_id": 2389247,
+ "entity": "bird",
+ "caption": "a birds head",
+ "question": [
+ "are there a birds ?"
+ ],
+ "prompt": "a {}s head"
+ },
+ {
+ "index": 123,
+ "image_id": 2389247,
+ "entity": "bird",
+ "caption": "The birds beak.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s beak."
+ },
+ {
+ "index": 124,
+ "image_id": 2388774,
+ "entity": "bird",
+ "caption": "the bird is in the car ",
+ "question": [
+ "is there the bird ?",
+ "is there the car ?"
+ ],
+ "prompt": "the {} is in the car "
+ },
+ {
+ "index": 125,
+ "image_id": 2388774,
+ "entity": "bird",
+ "caption": "The bird has small black feathers ",
+ "question": [
+ "is there the bird ?",
+ "are there small black feathers ?"
+ ],
+ "prompt": "The {} has small black feathers "
+ },
+ {
+ "index": 126,
+ "image_id": 2387336,
+ "entity": "bird",
+ "caption": "part of branch birds are sitting on",
+ "question": [
+ "is there part ?",
+ "are there branch birds ?"
+ ],
+ "prompt": "part of branch {}s are sitting on"
+ },
+ {
+ "index": 127,
+ "image_id": 2385839,
+ "entity": "bird",
+ "caption": "the bird has black and white feathers",
+ "question": [
+ "is there the bird ?",
+ "are there black and white feathers ?"
+ ],
+ "prompt": "the {} has black and white feathers"
+ },
+ {
+ "index": 128,
+ "image_id": 2384739,
+ "entity": "bird",
+ "caption": "bird's legs are curled",
+ "question": [
+ "are there bird's legs ?"
+ ],
+ "prompt": "{}'s legs are curled"
+ },
+ {
+ "index": 129,
+ "image_id": 2384739,
+ "entity": "bird",
+ "caption": "a bird is lying on the pavement",
+ "question": [
+ "is there a bird ?",
+ "is there the pavement ?"
+ ],
+ "prompt": "a {} is lying on the pavement"
+ },
+ {
+ "index": 130,
+ "image_id": 2384739,
+ "entity": "bird",
+ "caption": "the bird's head is upside down",
+ "question": [
+ "is there the bird's head ?"
+ ],
+ "prompt": "the {}'s head is upside down"
+ },
+ {
+ "index": 131,
+ "image_id": 2384739,
+ "entity": "bird",
+ "caption": "the black cat is lying next to the bird",
+ "question": [
+ "is there the black cat ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the black cat is lying next to the {}"
+ },
+ {
+ "index": 132,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "This bird has a red beak.",
+ "question": [
+ "is there this bird ?",
+ "is there a red beak ?"
+ ],
+ "prompt": "This {} has a red beak."
+ },
+ {
+ "index": 133,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird is standing on a sandy beach.",
+ "question": [
+ "is there the bird ?",
+ "is there a sandy beach ?"
+ ],
+ "prompt": "The {} is standing on a sandy beach."
+ },
+ {
+ "index": 134,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "This bird has black eyes.",
+ "question": [
+ "is there this bird ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "This {} has black eyes."
+ },
+ {
+ "index": 135,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird has a white belly.",
+ "question": [
+ "is there the bird ?",
+ "is there a white belly ?"
+ ],
+ "prompt": "The {} has a white belly."
+ },
+ {
+ "index": 136,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird has a white body.",
+ "question": [
+ "is there the bird ?",
+ "is there a white body ?"
+ ],
+ "prompt": "The {} has a white body."
+ },
+ {
+ "index": 137,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird has black and white tail feathers.",
+ "question": [
+ "is there the bird ?",
+ "are there black and white tail feathers ?"
+ ],
+ "prompt": "The {} has black and white tail feathers."
+ },
+ {
+ "index": 138,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird has orange legs.",
+ "question": [
+ "is there the bird ?",
+ "are there orange legs ?"
+ ],
+ "prompt": "The {} has orange legs."
+ },
+ {
+ "index": 139,
+ "image_id": 2384582,
+ "entity": "bird",
+ "caption": "The bird has an orange beak.",
+ "question": [
+ "is there the bird ?",
+ "is there an orange beak ?"
+ ],
+ "prompt": "The {} has an orange beak."
+ },
+ {
+ "index": 140,
+ "image_id": 2382811,
+ "entity": "bird",
+ "caption": "The bird is above the water",
+ "question": [
+ "is there the bird ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is above the water"
+ },
+ {
+ "index": 141,
+ "image_id": 2382811,
+ "entity": "bird",
+ "caption": "body of seabird is white",
+ "question": [
+ "is there body ?",
+ "is there seabird ?"
+ ],
+ "prompt": "body of sea{} is white"
+ },
+ {
+ "index": 142,
+ "image_id": 2381448,
+ "entity": "bird",
+ "caption": "birds feet are visible",
+ "question": [
+ "are there birds ?",
+ "are there feet ?"
+ ],
+ "prompt": "{}s feet are visible"
+ },
+ {
+ "index": 143,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "the bird has a slender beak",
+ "question": [
+ "is there the bird ?",
+ "is there a slender beak ?"
+ ],
+ "prompt": "the {} has a slender beak"
+ },
+ {
+ "index": 144,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "the bird has stripes on his back",
+ "question": [
+ "is there the bird ?",
+ "are there stripes ?",
+ "is there his back ?"
+ ],
+ "prompt": "the {} has stripes on his back"
+ },
+ {
+ "index": 145,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "the birds beak is very long",
+ "question": [
+ "are there the birds beak ?"
+ ],
+ "prompt": "the {}s beak is very long"
+ },
+ {
+ "index": 146,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "The bird is standing on the branches of the tree.",
+ "question": [
+ "is there the bird ?",
+ "are there the branches ?",
+ "is there the tree ?"
+ ],
+ "prompt": "The {} is standing on the branches of the tree."
+ },
+ {
+ "index": 147,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "The bird has a long black beak.",
+ "question": [
+ "is there the bird ?",
+ "is there a long black beak ?"
+ ],
+ "prompt": "The {} has a long black beak."
+ },
+ {
+ "index": 148,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "The bird has long red legs.",
+ "question": [
+ "is there the bird ?",
+ "are there long red legs ?"
+ ],
+ "prompt": "The {} has long red legs."
+ },
+ {
+ "index": 149,
+ "image_id": 2381401,
+ "entity": "bird",
+ "caption": "the bird is red and beautiful",
+ "question": [
+ "is there the bird ?"
+ ],
+ "prompt": "the {} is red and beautiful"
+ },
+ {
+ "index": 150,
+ "image_id": 2380312,
+ "entity": "bird",
+ "caption": "the bird has a tail",
+ "question": [
+ "is there the bird ?",
+ "is there a tail ?"
+ ],
+ "prompt": "the {} has a tail"
+ },
+ {
+ "index": 151,
+ "image_id": 2380312,
+ "entity": "bird",
+ "caption": "the bird has a head",
+ "question": [
+ "is there the bird ?",
+ "is there a head ?"
+ ],
+ "prompt": "the {} has a head"
+ },
+ {
+ "index": 152,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "the bird has a blue head.",
+ "question": [
+ "is there the bird ?",
+ "is there a blue head ?"
+ ],
+ "prompt": "the {} has a blue head."
+ },
+ {
+ "index": 153,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "The bird has yellow and orange on it's chest.",
+ "question": [
+ "is there the bird ?",
+ "is there it's chest ?"
+ ],
+ "prompt": "The {} has yellow and orange on it's chest."
+ },
+ {
+ "index": 154,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "The bird has three toes.",
+ "question": [
+ "is there the bird ?",
+ "are there three toes ?"
+ ],
+ "prompt": "The {} has three toes."
+ },
+ {
+ "index": 155,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "bird's wings are green",
+ "question": [
+ "are there bird's wings ?"
+ ],
+ "prompt": "{}'s wings are green"
+ },
+ {
+ "index": 156,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "bird has blue head",
+ "question": [
+ "is there bird ?",
+ "is there blue head ?"
+ ],
+ "prompt": "{} has blue head"
+ },
+ {
+ "index": 157,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "bird has orange beak",
+ "question": [
+ "is there bird ?",
+ "is there orange beak ?"
+ ],
+ "prompt": "{} has orange beak"
+ },
+ {
+ "index": 158,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "bird has green body",
+ "question": [
+ "is there bird ?",
+ "is there green body ?"
+ ],
+ "prompt": "{} has green body"
+ },
+ {
+ "index": 159,
+ "image_id": 2380026,
+ "entity": "bird",
+ "caption": "bird has brown talons",
+ "question": [
+ "is there bird ?",
+ "are there brown talons ?"
+ ],
+ "prompt": "{} has brown talons"
+ },
+ {
+ "index": 160,
+ "image_id": 2378627,
+ "entity": "bird",
+ "caption": "A birds beak",
+ "question": [
+ "are there a birds ?"
+ ],
+ "prompt": "A {}s beak"
+ },
+ {
+ "index": 161,
+ "image_id": 2378627,
+ "entity": "bird",
+ "caption": "A birds wing",
+ "question": [
+ "are there a birds ?"
+ ],
+ "prompt": "A {}s wing"
+ },
+ {
+ "index": 162,
+ "image_id": 2377993,
+ "entity": "bird",
+ "caption": "The birds claws are black.",
+ "question": [
+ "are there the birds ?",
+ "are there claws ?"
+ ],
+ "prompt": "The {}s claws are black."
+ },
+ {
+ "index": 163,
+ "image_id": 2377993,
+ "entity": "bird",
+ "caption": "The birds eye is black.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s eye is black."
+ },
+ {
+ "index": 164,
+ "image_id": 2377993,
+ "entity": "bird",
+ "caption": "The birds beak is black.",
+ "question": [
+ "are there the birds beak ?"
+ ],
+ "prompt": "The {}s beak is black."
+ },
+ {
+ "index": 165,
+ "image_id": 2376795,
+ "entity": "bird",
+ "caption": "Pink felt on a bird",
+ "question": [
+ "is there a bird ?"
+ ],
+ "prompt": "Pink felt on a {}"
+ },
+ {
+ "index": 166,
+ "image_id": 2376795,
+ "entity": "bird",
+ "caption": "Pink felt on a white bird",
+ "question": [
+ "is there a white bird ?"
+ ],
+ "prompt": "Pink felt on a white {}"
+ },
+ {
+ "index": 167,
+ "image_id": 2376795,
+ "entity": "bird",
+ "caption": "A bird has pink felt on it",
+ "question": [
+ "is there a bird ?"
+ ],
+ "prompt": "A {} has pink felt on it"
+ },
+ {
+ "index": 168,
+ "image_id": 2376795,
+ "entity": "bird",
+ "caption": "bird head turned right",
+ "question": [
+ "is there bird head ?"
+ ],
+ "prompt": "{} head turned right"
+ },
+ {
+ "index": 169,
+ "image_id": 2376340,
+ "entity": "bird",
+ "caption": "the birds legs ",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s legs "
+ },
+ {
+ "index": 170,
+ "image_id": 2376340,
+ "entity": "bird",
+ "caption": "The bird has long legs. ",
+ "question": [
+ "is there the bird ?",
+ "are there long legs ?"
+ ],
+ "prompt": "The {} has long legs. "
+ },
+ {
+ "index": 171,
+ "image_id": 2376224,
+ "entity": "bird",
+ "caption": "The bird's eyes are open",
+ "question": [
+ "are there the bird's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open"
+ },
+ {
+ "index": 172,
+ "image_id": 2376224,
+ "entity": "bird",
+ "caption": "The bird has thin legs",
+ "question": [
+ "is there the bird ?",
+ "are there thin legs ?"
+ ],
+ "prompt": "The {} has thin legs"
+ },
+ {
+ "index": 173,
+ "image_id": 2375434,
+ "entity": "bird",
+ "caption": "The bird is holding a stick in its mouth",
+ "question": [
+ "is there the bird ?",
+ "is there a stick ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "The {} is holding a stick in its mouth"
+ },
+ {
+ "index": 174,
+ "image_id": 2375434,
+ "entity": "bird",
+ "caption": "birds flying in the sky",
+ "question": [
+ "are there birds ?",
+ "is there the sky ?"
+ ],
+ "prompt": "{}s flying in the sky"
+ },
+ {
+ "index": 175,
+ "image_id": 2375434,
+ "entity": "bird",
+ "caption": "birds flapping their wings",
+ "question": [
+ "are there birds ?",
+ "are there their wings ?"
+ ],
+ "prompt": "{}s flapping their wings"
+ },
+ {
+ "index": 176,
+ "image_id": 2375434,
+ "entity": "bird",
+ "caption": "four birds flapping their wings",
+ "question": [
+ "are there four birds ?",
+ "are there their wings ?"
+ ],
+ "prompt": "four {}s flapping their wings"
+ },
+ {
+ "index": 177,
+ "image_id": 2375434,
+ "entity": "bird",
+ "caption": "a bird with its wings spread to full length",
+ "question": [
+ "is there a bird ?",
+ "are there its wings ?",
+ "is there full length ?"
+ ],
+ "prompt": "a {} with its wings spread to full length"
+ },
+ {
+ "index": 178,
+ "image_id": 2372589,
+ "entity": "bird",
+ "caption": "belly of the bird is white",
+ "question": [
+ "is there belly ?",
+ "is there the bird ?"
+ ],
+ "prompt": "belly of the {} is white"
+ },
+ {
+ "index": 179,
+ "image_id": 2372589,
+ "entity": "bird",
+ "caption": "bird's feet are black",
+ "question": [
+ "are there bird's feet ?"
+ ],
+ "prompt": "{}'s feet are black"
+ },
+ {
+ "index": 180,
+ "image_id": 2372589,
+ "entity": "bird",
+ "caption": "bird's beak is black",
+ "question": [
+ "is there bird's beak ?"
+ ],
+ "prompt": "{}'s beak is black"
+ },
+ {
+ "index": 181,
+ "image_id": 2372267,
+ "entity": "bird",
+ "caption": "bird has green face",
+ "question": [
+ "is there bird ?",
+ "is there green face ?"
+ ],
+ "prompt": "{} has green face"
+ },
+ {
+ "index": 182,
+ "image_id": 2372267,
+ "entity": "bird",
+ "caption": "bird has white beak",
+ "question": [
+ "is there bird ?",
+ "is there white beak ?"
+ ],
+ "prompt": "{} has white beak"
+ },
+ {
+ "index": 183,
+ "image_id": 2371979,
+ "entity": "bird",
+ "caption": "bird's head is black",
+ "question": [
+ "is there bird's head ?"
+ ],
+ "prompt": "{}'s head is black"
+ },
+ {
+ "index": 184,
+ "image_id": 2371979,
+ "entity": "bird",
+ "caption": "bird's wing is black and red",
+ "question": [
+ "is there bird's wing ?"
+ ],
+ "prompt": "{}'s wing is black and red"
+ },
+ {
+ "index": 185,
+ "image_id": 2371266,
+ "entity": "bird",
+ "caption": "birds beak that is two toned",
+ "question": [
+ "are there birds ?"
+ ],
+ "prompt": "{}s beak that is two toned"
+ },
+ {
+ "index": 186,
+ "image_id": 2370174,
+ "entity": "bird",
+ "caption": "water is behind the bird",
+ "question": [
+ "is there water ?",
+ "is there the bird ?"
+ ],
+ "prompt": "water is behind the {}"
+ },
+ {
+ "index": 187,
+ "image_id": 2370174,
+ "entity": "bird",
+ "caption": "The bird has black and white feathers",
+ "question": [
+ "is there the bird ?",
+ "are there black and white feathers ?"
+ ],
+ "prompt": "The {} has black and white feathers"
+ },
+ {
+ "index": 188,
+ "image_id": 2366794,
+ "entity": "bird",
+ "caption": "the bird's leg is skinny",
+ "question": [
+ "is there the bird's leg ?"
+ ],
+ "prompt": "the {}'s leg is skinny"
+ },
+ {
+ "index": 189,
+ "image_id": 2366794,
+ "entity": "bird",
+ "caption": "the bird's tail is black ",
+ "question": [
+ "is there the bird's tail ?"
+ ],
+ "prompt": "the {}'s tail is black "
+ },
+ {
+ "index": 190,
+ "image_id": 2366794,
+ "entity": "bird",
+ "caption": "teh bird's beak is smll",
+ "question": [
+ "is there teh bird's beak ?",
+ "is there smll ?"
+ ],
+ "prompt": "teh {}'s beak is smll"
+ },
+ {
+ "index": 191,
+ "image_id": 2366794,
+ "entity": "bird",
+ "caption": "the bird is on the beach ",
+ "question": [
+ "is there the bird ?",
+ "is there the beach ?"
+ ],
+ "prompt": "the {} is on the beach "
+ },
+ {
+ "index": 192,
+ "image_id": 2366548,
+ "entity": "bird",
+ "caption": "the birds have long legs",
+ "question": [
+ "are there the birds ?",
+ "are there long legs ?"
+ ],
+ "prompt": "the {}s have long legs"
+ },
+ {
+ "index": 193,
+ "image_id": 2366548,
+ "entity": "bird",
+ "caption": "tall grass is behind the bird",
+ "question": [
+ "is there tall grass ?",
+ "is there the bird ?"
+ ],
+ "prompt": "tall grass is behind the {}"
+ },
+ {
+ "index": 194,
+ "image_id": 2366548,
+ "entity": "bird",
+ "caption": "the bird closest to us has a few black feathers",
+ "question": [
+ "is there the bird ?",
+ "are there a few black feathers ?"
+ ],
+ "prompt": "the {} closest to us has a few black feathers"
+ },
+ {
+ "index": 195,
+ "image_id": 2365606,
+ "entity": "bird",
+ "caption": "This is a bird",
+ "question": [
+ "is there a bird ?"
+ ],
+ "prompt": "This is a {}"
+ },
+ {
+ "index": 196,
+ "image_id": 2364373,
+ "entity": "bird",
+ "caption": "The bird has brown legs.",
+ "question": [
+ "is there the bird ?",
+ "are there brown legs ?"
+ ],
+ "prompt": "The {} has brown legs."
+ },
+ {
+ "index": 197,
+ "image_id": 2363673,
+ "entity": "bird",
+ "caption": "A white and grey bird with its head turned to the left. ",
+ "question": [
+ "is there a white and grey bird ?",
+ "is there its head ?",
+ "is there the left ?"
+ ],
+ "prompt": "A white and grey {} with its head turned to the left. "
+ },
+ {
+ "index": 198,
+ "image_id": 2362480,
+ "entity": "bird",
+ "caption": "this bird has skinny legs",
+ "question": [
+ "is there this bird ?",
+ "are there skinny legs ?"
+ ],
+ "prompt": "this {} has skinny legs"
+ },
+ {
+ "index": 199,
+ "image_id": 2362036,
+ "entity": "bird",
+ "caption": "it is the eye of the bird",
+ "question": [
+ "is there the eye ?",
+ "is there the bird ?"
+ ],
+ "prompt": "it is the eye of the {}"
+ },
+ {
+ "index": 200,
+ "image_id": 2362036,
+ "entity": "bird",
+ "caption": "the birds left side of the wing",
+ "question": [
+ "are there the birds ?",
+ "is there side ?",
+ "is there the wing ?"
+ ],
+ "prompt": "the {}s left side of the wing"
+ },
+ {
+ "index": 201,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's feather are shiny.",
+ "question": [
+ "is there the bird's feather ?"
+ ],
+ "prompt": "The {}'s feather are shiny."
+ },
+ {
+ "index": 202,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's feathers are glossy.",
+ "question": [
+ "are there the bird's feathers ?"
+ ],
+ "prompt": "The {}'s feathers are glossy."
+ },
+ {
+ "index": 203,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's feathers are black.",
+ "question": [
+ "are there the bird's feathers ?"
+ ],
+ "prompt": "The {}'s feathers are black."
+ },
+ {
+ "index": 204,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's beak is black.",
+ "question": [
+ "is there the bird's beak ?"
+ ],
+ "prompt": "The {}'s beak is black."
+ },
+ {
+ "index": 205,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's beak is open.",
+ "question": [
+ "is there the bird's beak ?"
+ ],
+ "prompt": "The {}'s beak is open."
+ },
+ {
+ "index": 206,
+ "image_id": 2362031,
+ "entity": "bird",
+ "caption": "The bird's talons are gripping a rock.",
+ "question": [
+ "are there the bird's talons ?",
+ "is there a rock ?"
+ ],
+ "prompt": "The {}'s talons are gripping a rock."
+ },
+ {
+ "index": 207,
+ "image_id": 2361417,
+ "entity": "bird",
+ "caption": "Blue bird's feet wrapped about branch",
+ "question": [
+ "are there blue bird's feet ?",
+ "is there branch ?"
+ ],
+ "prompt": "Blue {}'s feet wrapped about branch"
+ },
+ {
+ "index": 208,
+ "image_id": 2360048,
+ "entity": "bird",
+ "caption": "The bird is standing on a multi level white surface.",
+ "question": [
+ "is there the bird ?",
+ "is there a multi level white surface ?"
+ ],
+ "prompt": "The {} is standing on a multi level white surface."
+ },
+ {
+ "index": 209,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "the birds feet ",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s feet "
+ },
+ {
+ "index": 210,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "birds nail ",
+ "question": [
+ "are there birds ?"
+ ],
+ "prompt": "{}s nail "
+ },
+ {
+ "index": 211,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "the birds eye ",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s eye "
+ },
+ {
+ "index": 212,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "the birds tail ",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s tail "
+ },
+ {
+ "index": 213,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "the birds beak",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "the {}s beak"
+ },
+ {
+ "index": 214,
+ "image_id": 2359558,
+ "entity": "bird",
+ "caption": "black bird beak",
+ "question": [
+ "is there black bird beak ?"
+ ],
+ "prompt": "black {} beak"
+ },
+ {
+ "index": 215,
+ "image_id": 2359461,
+ "entity": "bird",
+ "caption": "Caterpillar in the birds beak.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "Caterpillar in the {}s beak."
+ },
+ {
+ "index": 216,
+ "image_id": 2359036,
+ "entity": "bird",
+ "caption": "Back of bird's neck is green.",
+ "question": [
+ "is there bird's neck ?"
+ ],
+ "prompt": "Back of {}'s neck is green."
+ },
+ {
+ "index": 217,
+ "image_id": 2359036,
+ "entity": "bird",
+ "caption": "yellow and orange feathers for birds chest",
+ "question": [
+ "are there yellow and orange feathers ?",
+ "are there birds ?"
+ ],
+ "prompt": "yellow and orange feathers for {}s chest"
+ },
+ {
+ "index": 218,
+ "image_id": 2359036,
+ "entity": "bird",
+ "caption": "blue with black accent feathers on birds head",
+ "question": [
+ "are there black accent feathers ?",
+ "are there birds ?"
+ ],
+ "prompt": "blue with black accent feathers on {}s head"
+ },
+ {
+ "index": 219,
+ "image_id": 2358738,
+ "entity": "bird",
+ "caption": "the bird has a brown spot on its head",
+ "question": [
+ "is there the bird ?",
+ "is there a brown spot ?",
+ "is there its head ?"
+ ],
+ "prompt": "the {} has a brown spot on its head"
+ },
+ {
+ "index": 220,
+ "image_id": 2358738,
+ "entity": "bird",
+ "caption": "the birds wings are brown with a few white spots",
+ "question": [
+ "are there the birds wings ?",
+ "are there a few white spots ?"
+ ],
+ "prompt": "the {}s wings are brown with a few white spots"
+ },
+ {
+ "index": 221,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "bird with wings spread",
+ "question": [
+ "is there bird ?",
+ "are there wings ?"
+ ],
+ "prompt": "{} with wings spread"
+ },
+ {
+ "index": 222,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "nice bird with wings spread",
+ "question": [
+ "is there nice bird ?",
+ "are there wings ?"
+ ],
+ "prompt": "nice {} with wings spread"
+ },
+ {
+ "index": 223,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "healthy bird with wings spread",
+ "question": [
+ "is there healthy bird ?",
+ "are there wings ?"
+ ],
+ "prompt": "healthy {} with wings spread"
+ },
+ {
+ "index": 224,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "beautiful bird with wings spread",
+ "question": [
+ "is there beautiful bird ?",
+ "are there wings ?"
+ ],
+ "prompt": "beautiful {} with wings spread"
+ },
+ {
+ "index": 225,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "bird with pretty wings spread",
+ "question": [
+ "is there bird ?",
+ "are there pretty wings ?"
+ ],
+ "prompt": "{} with pretty wings spread"
+ },
+ {
+ "index": 226,
+ "image_id": 2358256,
+ "entity": "bird",
+ "caption": "bird with colorful wings spread",
+ "question": [
+ "is there bird ?",
+ "are there colorful wings ?"
+ ],
+ "prompt": "{} with colorful wings spread"
+ },
+ {
+ "index": 227,
+ "image_id": 2357787,
+ "entity": "bird",
+ "caption": "The bird has gray feathers",
+ "question": [
+ "is there the bird ?",
+ "are there gray feathers ?"
+ ],
+ "prompt": "The {} has gray feathers"
+ },
+ {
+ "index": 228,
+ "image_id": 2356534,
+ "entity": "bird",
+ "caption": "dead insect in birds beak",
+ "question": [
+ "is there dead insect ?",
+ "are there birds ?"
+ ],
+ "prompt": "dead insect in {}s beak"
+ },
+ {
+ "index": 229,
+ "image_id": 2356534,
+ "entity": "bird",
+ "caption": "The bird has brown feathers",
+ "question": [
+ "is there the bird ?",
+ "are there brown feathers ?"
+ ],
+ "prompt": "The {} has brown feathers"
+ },
+ {
+ "index": 230,
+ "image_id": 2356534,
+ "entity": "bird",
+ "caption": "The bird is on the ground",
+ "question": [
+ "is there the bird ?",
+ "is there the ground ?"
+ ],
+ "prompt": "The {} is on the ground"
+ },
+ {
+ "index": 231,
+ "image_id": 2355976,
+ "entity": "bird",
+ "caption": "A bird is next to a zebra",
+ "question": [
+ "is there a bird ?",
+ "is there a zebra ?"
+ ],
+ "prompt": "A {} is next to a zebra"
+ },
+ {
+ "index": 232,
+ "image_id": 2355976,
+ "entity": "bird",
+ "caption": "The bird has black feathers",
+ "question": [
+ "is there the bird ?",
+ "are there black feathers ?"
+ ],
+ "prompt": "The {} has black feathers"
+ },
+ {
+ "index": 233,
+ "image_id": 2355730,
+ "entity": "bird",
+ "caption": "bird has grey feathers",
+ "question": [
+ "is there bird ?",
+ "are there grey feathers ?"
+ ],
+ "prompt": "{} has grey feathers"
+ },
+ {
+ "index": 234,
+ "image_id": 2355730,
+ "entity": "bird",
+ "caption": "The bird has claws",
+ "question": [
+ "is there the bird ?",
+ "are there claws ?"
+ ],
+ "prompt": "The {} has claws"
+ },
+ {
+ "index": 235,
+ "image_id": 2355730,
+ "entity": "bird",
+ "caption": "Grey beak of a bird. ",
+ "question": [
+ "is there grey beak ?",
+ "is there a bird ?"
+ ],
+ "prompt": "Grey beak of a {}. "
+ },
+ {
+ "index": 236,
+ "image_id": 2354530,
+ "entity": "bird",
+ "caption": "cement area where a bird stands",
+ "question": [
+ "is there cement area ?",
+ "is there a bird ?"
+ ],
+ "prompt": "cement area where a {} stands"
+ },
+ {
+ "index": 237,
+ "image_id": 2354530,
+ "entity": "bird",
+ "caption": "bird has black streak on head",
+ "question": [
+ "is there bird ?",
+ "is there black streak ?",
+ "is there head ?"
+ ],
+ "prompt": "{} has black streak on head"
+ },
+ {
+ "index": 238,
+ "image_id": 2354530,
+ "entity": "bird",
+ "caption": "bird has yellow eye",
+ "question": [
+ "is there bird ?",
+ "is there yellow eye ?"
+ ],
+ "prompt": "{} has yellow eye"
+ },
+ {
+ "index": 239,
+ "image_id": 2353113,
+ "entity": "bird",
+ "caption": "bird has brown beak",
+ "question": [
+ "is there bird ?",
+ "is there brown beak ?"
+ ],
+ "prompt": "{} has brown beak"
+ },
+ {
+ "index": 240,
+ "image_id": 2353113,
+ "entity": "bird",
+ "caption": "bird is behind fence",
+ "question": [
+ "is there bird ?",
+ "is there fence ?"
+ ],
+ "prompt": "{} is behind fence"
+ },
+ {
+ "index": 241,
+ "image_id": 2353113,
+ "entity": "bird",
+ "caption": "bird is near water",
+ "question": [
+ "is there bird ?",
+ "is there water ?"
+ ],
+ "prompt": "{} is near water"
+ },
+ {
+ "index": 242,
+ "image_id": 2352371,
+ "entity": "bird",
+ "caption": "wood platform for bird to stand on",
+ "question": [
+ "is there wood platform ?",
+ "is there bird ?"
+ ],
+ "prompt": "wood platform for {} to stand on"
+ },
+ {
+ "index": 243,
+ "image_id": 2349694,
+ "entity": "bird",
+ "caption": "tail of bird is white",
+ "question": [
+ "is there tail ?",
+ "is there bird ?"
+ ],
+ "prompt": "tail of {} is white"
+ },
+ {
+ "index": 244,
+ "image_id": 2349587,
+ "entity": "bird",
+ "caption": "The bird is eating the branch.",
+ "question": [
+ "is there the bird ?",
+ "is there the branch ?"
+ ],
+ "prompt": "The {} is eating the branch."
+ },
+ {
+ "index": 245,
+ "image_id": 2349587,
+ "entity": "bird",
+ "caption": "The bird is holding the branch.",
+ "question": [
+ "is there the bird ?",
+ "is there the branch ?"
+ ],
+ "prompt": "The {} is holding the branch."
+ },
+ {
+ "index": 246,
+ "image_id": 2349248,
+ "entity": "bird",
+ "caption": "the food the bird is eating",
+ "question": [
+ "is there the food ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the food the {} is eating"
+ },
+ {
+ "index": 247,
+ "image_id": 2349109,
+ "entity": "bird",
+ "caption": "the branch the bird is biting",
+ "question": [
+ "is there the branch ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the branch the {} is biting"
+ },
+ {
+ "index": 248,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "A bird has an orange beak.",
+ "question": [
+ "is there a bird ?",
+ "is there an orange beak ?"
+ ],
+ "prompt": "A {} has an orange beak."
+ },
+ {
+ "index": 249,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "A birds claw is grasping a potato.",
+ "question": [
+ "is there a birds ?",
+ "is there a potato ?"
+ ],
+ "prompt": "A {}s claw is grasping a potato."
+ },
+ {
+ "index": 250,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "A bird is eating a potato.",
+ "question": [
+ "is there a bird ?",
+ "is there a potato ?"
+ ],
+ "prompt": "A {} is eating a potato."
+ },
+ {
+ "index": 251,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "A bird is on a tree branch.",
+ "question": [
+ "is there a bird ?",
+ "is there a tree branch ?"
+ ],
+ "prompt": "A {} is on a tree branch."
+ },
+ {
+ "index": 252,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "A tropical bird is on a tree branch.",
+ "question": [
+ "is there a tropical bird ?",
+ "is there a tree branch ?"
+ ],
+ "prompt": "A tropical {} is on a tree branch."
+ },
+ {
+ "index": 253,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "bird's wing is green",
+ "question": [
+ "is there bird's wing ?"
+ ],
+ "prompt": "{}'s wing is green"
+ },
+ {
+ "index": 254,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The peice of food in the birds mouth",
+ "question": [
+ "is there the peice ?",
+ "is there food ?",
+ "are there the birds ?"
+ ],
+ "prompt": "The peice of food in the {}s mouth"
+ },
+ {
+ "index": 255,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The birds red orange eye",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s red orange eye"
+ },
+ {
+ "index": 256,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The birds blue face",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s blue face"
+ },
+ {
+ "index": 257,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The birds foot on the fruit",
+ "question": [
+ "are there the birds ?",
+ "is there the fruit ?"
+ ],
+ "prompt": "The {}s foot on the fruit"
+ },
+ {
+ "index": 258,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The piece of fruit the bird is eating",
+ "question": [
+ "is there the piece ?",
+ "is there fruit ?",
+ "is there the bird ?"
+ ],
+ "prompt": "The piece of fruit the {} is eating"
+ },
+ {
+ "index": 259,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "The branch the bird is sitting on",
+ "question": [
+ "is there the branch ?",
+ "is there the bird ?"
+ ],
+ "prompt": "The branch the {} is sitting on"
+ },
+ {
+ "index": 260,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "a bird has a claw",
+ "question": [
+ "is there a bird ?",
+ "is there a claw ?"
+ ],
+ "prompt": "a {} has a claw"
+ },
+ {
+ "index": 261,
+ "image_id": 2348860,
+ "entity": "bird",
+ "caption": "a bird has a claw holding onto a branch",
+ "question": [
+ "is there a bird ?",
+ "is there a claw ?",
+ "is there a branch ?"
+ ],
+ "prompt": "a {} has a claw holding onto a branch"
+ },
+ {
+ "index": 262,
+ "image_id": 2348795,
+ "entity": "bird",
+ "caption": "Black bird beak white around face. ",
+ "question": [
+ "is there black bird beak ?",
+ "is there face ?"
+ ],
+ "prompt": "Black {} beak white around face. "
+ },
+ {
+ "index": 263,
+ "image_id": 2348671,
+ "entity": "bird",
+ "caption": "that is the leg of the bird",
+ "question": [
+ "is there the leg ?",
+ "is there the bird ?"
+ ],
+ "prompt": "that is the leg of the {}"
+ },
+ {
+ "index": 264,
+ "image_id": 2348089,
+ "entity": "bird",
+ "caption": "a wood platform the bird is on ",
+ "question": [
+ "is there a wood platform ?",
+ "is there the bird ?"
+ ],
+ "prompt": "a wood platform the {} is on "
+ },
+ {
+ "index": 265,
+ "image_id": 2347493,
+ "entity": "bird",
+ "caption": "bird with its mouth open",
+ "question": [
+ "is there bird ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "{} with its mouth open"
+ },
+ {
+ "index": 266,
+ "image_id": 2347493,
+ "entity": "bird",
+ "caption": "The bird is on the water.",
+ "question": [
+ "is there the bird ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is on the water."
+ },
+ {
+ "index": 267,
+ "image_id": 2347493,
+ "entity": "bird",
+ "caption": "The birds beak has a sharp point.",
+ "question": [
+ "are there the birds beak ?",
+ "is there a sharp point ?"
+ ],
+ "prompt": "The {}s beak has a sharp point."
+ },
+ {
+ "index": 268,
+ "image_id": 2347493,
+ "entity": "bird",
+ "caption": "The birds feet are orange.",
+ "question": [
+ "are there the birds ?",
+ "are there feet ?"
+ ],
+ "prompt": "The {}s feet are orange."
+ },
+ {
+ "index": 269,
+ "image_id": 2345609,
+ "entity": "bird",
+ "caption": "the bird has very long legs",
+ "question": [
+ "is there the bird ?",
+ "are there very long legs ?"
+ ],
+ "prompt": "the {} has very long legs"
+ },
+ {
+ "index": 270,
+ "image_id": 2345609,
+ "entity": "bird",
+ "caption": "the bird has a yellow beak",
+ "question": [
+ "is there the bird ?",
+ "is there a yellow beak ?"
+ ],
+ "prompt": "the {} has a yellow beak"
+ },
+ {
+ "index": 271,
+ "image_id": 2344912,
+ "entity": "bird",
+ "caption": "grass that small bird is standing in",
+ "question": [
+ "is there grass ?",
+ "is there small bird ?"
+ ],
+ "prompt": "grass that small {} is standing in"
+ },
+ {
+ "index": 272,
+ "image_id": 2344341,
+ "entity": "bird",
+ "caption": "Feathers of the bird laid back",
+ "question": [
+ "are there feathers ?",
+ "is there the bird ?"
+ ],
+ "prompt": "Feathers of the {} laid back"
+ },
+ {
+ "index": 273,
+ "image_id": 2344328,
+ "entity": "bird",
+ "caption": "A birds head and neck.",
+ "question": [
+ "are there a birds ?",
+ "is there neck ?"
+ ],
+ "prompt": "A {}s head and neck."
+ },
+ {
+ "index": 274,
+ "image_id": 2344328,
+ "entity": "bird",
+ "caption": "bird has grey beak",
+ "question": [
+ "is there bird ?",
+ "is there grey beak ?"
+ ],
+ "prompt": "{} has grey beak"
+ },
+ {
+ "index": 275,
+ "image_id": 2344328,
+ "entity": "bird",
+ "caption": "bird has red eyes",
+ "question": [
+ "is there bird ?",
+ "are there red eyes ?"
+ ],
+ "prompt": "{} has red eyes"
+ },
+ {
+ "index": 276,
+ "image_id": 2344328,
+ "entity": "bird",
+ "caption": "bird has black head",
+ "question": [
+ "is there bird ?",
+ "is there black head ?"
+ ],
+ "prompt": "{} has black head"
+ },
+ {
+ "index": 277,
+ "image_id": 2344328,
+ "entity": "bird",
+ "caption": "bird has blue neck",
+ "question": [
+ "is there bird ?",
+ "is there blue neck ?"
+ ],
+ "prompt": "{} has blue neck"
+ },
+ {
+ "index": 278,
+ "image_id": 2341438,
+ "entity": "bird",
+ "caption": "head of bird is gray",
+ "question": [
+ "is there head ?",
+ "is there bird ?"
+ ],
+ "prompt": "head of {} is gray"
+ },
+ {
+ "index": 279,
+ "image_id": 2341438,
+ "entity": "bird",
+ "caption": "eye of bird is red",
+ "question": [
+ "is there eye ?",
+ "is there bird ?"
+ ],
+ "prompt": "eye of {} is red"
+ },
+ {
+ "index": 280,
+ "image_id": 2341058,
+ "entity": "bird",
+ "caption": "two birds standing on branches",
+ "question": [
+ "are there two birds ?",
+ "are there branches ?"
+ ],
+ "prompt": "two {}s standing on branches"
+ },
+ {
+ "index": 281,
+ "image_id": 2339258,
+ "entity": "bird",
+ "caption": "the all black beak on the birds face",
+ "question": [
+ "is there the all black beak ?",
+ "are there the birds ?"
+ ],
+ "prompt": "the all black beak on the {}s face"
+ },
+ {
+ "index": 282,
+ "image_id": 2339258,
+ "entity": "bird",
+ "caption": "the claw on the birds foot",
+ "question": [
+ "is there the claw ?",
+ "are there the birds ?"
+ ],
+ "prompt": "the claw on the {}s foot"
+ },
+ {
+ "index": 283,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "the bird is eating the fruit",
+ "question": [
+ "is there the bird ?",
+ "is there the fruit ?"
+ ],
+ "prompt": "the {} is eating the fruit"
+ },
+ {
+ "index": 284,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "A bird is eating some fruit",
+ "question": [
+ "is there a bird ?",
+ "is there some fruit ?"
+ ],
+ "prompt": "A {} is eating some fruit"
+ },
+ {
+ "index": 285,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "A bird is getting some food",
+ "question": [
+ "is there a bird ?",
+ "is there some food ?"
+ ],
+ "prompt": "A {} is getting some food"
+ },
+ {
+ "index": 286,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds eye is red and black.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s eye is red and black."
+ },
+ {
+ "index": 287,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds eye is round.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s eye is round."
+ },
+ {
+ "index": 288,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds eye is small.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s eye is small."
+ },
+ {
+ "index": 289,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds feathers are blue.",
+ "question": [
+ "are there the birds ?",
+ "are there feathers ?"
+ ],
+ "prompt": "The {}s feathers are blue."
+ },
+ {
+ "index": 290,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds feathers are red.",
+ "question": [
+ "are there the birds ?",
+ "are there feathers ?"
+ ],
+ "prompt": "The {}s feathers are red."
+ },
+ {
+ "index": 291,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "The birds feathers are green.",
+ "question": [
+ "are there the birds ?",
+ "are there feathers ?"
+ ],
+ "prompt": "The {}s feathers are green."
+ },
+ {
+ "index": 292,
+ "image_id": 2338848,
+ "entity": "bird",
+ "caption": "the birds beak is orange",
+ "question": [
+ "are there the birds beak ?"
+ ],
+ "prompt": "the {}s beak is orange"
+ },
+ {
+ "index": 293,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "Blue and black bird standing on wood.",
+ "question": [
+ "is there blue and black bird ?",
+ "is there wood ?"
+ ],
+ "prompt": "Blue and black {} standing on wood."
+ },
+ {
+ "index": 294,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "this is a bird''s tail",
+ "question": [
+ "is there tail ?"
+ ],
+ "prompt": "this is a {}''s tail"
+ },
+ {
+ "index": 295,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "this is a bird''s beak",
+ "question": [
+ "is there a bird''s beak ?"
+ ],
+ "prompt": "this is a {}''s beak"
+ },
+ {
+ "index": 296,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "this is a bird''s head",
+ "question": [
+ "is there a bird''s head ?"
+ ],
+ "prompt": "this is a {}''s head"
+ },
+ {
+ "index": 297,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "this is a bird''s wing",
+ "question": [
+ "is there wing ?"
+ ],
+ "prompt": "this is a {}''s wing"
+ },
+ {
+ "index": 298,
+ "image_id": 2338638,
+ "entity": "bird",
+ "caption": "this is a bird''s eye",
+ "question": [
+ "is there eye ?"
+ ],
+ "prompt": "this is a {}''s eye"
+ },
+ {
+ "index": 299,
+ "image_id": 2338318,
+ "entity": "bird",
+ "caption": "bird is on brown branch",
+ "question": [
+ "is there bird ?",
+ "is there brown branch ?"
+ ],
+ "prompt": "{} is on brown branch"
+ },
+ {
+ "index": 300,
+ "image_id": 2336219,
+ "entity": "bird",
+ "caption": "bird has white eyes",
+ "question": [
+ "is there bird ?",
+ "are there white eyes ?"
+ ],
+ "prompt": "{} has white eyes"
+ },
+ {
+ "index": 301,
+ "image_id": 2335105,
+ "entity": "bird",
+ "caption": "the ear lobes on the bird are red",
+ "question": [
+ "are there the ear lobes ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the ear lobes on the {} are red"
+ },
+ {
+ "index": 302,
+ "image_id": 2332681,
+ "entity": "bird",
+ "caption": "the bird has tiny ears",
+ "question": [
+ "is there the bird ?",
+ "are there tiny ears ?"
+ ],
+ "prompt": "the {} has tiny ears"
+ },
+ {
+ "index": 303,
+ "image_id": 2331468,
+ "entity": "bird",
+ "caption": "the bird is in the water ",
+ "question": [
+ "is there the bird ?",
+ "is there the water ?"
+ ],
+ "prompt": "the {} is in the water "
+ },
+ {
+ "index": 304,
+ "image_id": 2331215,
+ "entity": "bird",
+ "caption": "the birds wings are up",
+ "question": [
+ "are there the birds ?",
+ "are there wings ?"
+ ],
+ "prompt": "the {}s wings are up"
+ },
+ {
+ "index": 305,
+ "image_id": 2331215,
+ "entity": "bird",
+ "caption": "A bird is afraid of the elephant",
+ "question": [
+ "is there a bird ?",
+ "is there the elephant ?"
+ ],
+ "prompt": "A {} is afraid of the elephant"
+ },
+ {
+ "index": 306,
+ "image_id": 2331215,
+ "entity": "bird",
+ "caption": "A bird has spread out its wings",
+ "question": [
+ "is there a bird ?",
+ "are there its wings ?"
+ ],
+ "prompt": "A {} has spread out its wings"
+ },
+ {
+ "index": 307,
+ "image_id": 2331215,
+ "entity": "bird",
+ "caption": "The bird has a long wingspan",
+ "question": [
+ "is there the bird ?",
+ "is there a long wingspan ?"
+ ],
+ "prompt": "The {} has a long wingspan"
+ },
+ {
+ "index": 308,
+ "image_id": 2330695,
+ "entity": "bird",
+ "caption": "bird has a black beak ",
+ "question": [
+ "is there bird ?",
+ "is there a black beak ?"
+ ],
+ "prompt": "{} has a black beak "
+ },
+ {
+ "index": 309,
+ "image_id": 2330695,
+ "entity": "bird",
+ "caption": "bird has gray feet",
+ "question": [
+ "is there bird ?",
+ "are there gray feet ?"
+ ],
+ "prompt": "{} has gray feet"
+ },
+ {
+ "index": 310,
+ "image_id": 2330307,
+ "entity": "bird",
+ "caption": "bird has beady eye",
+ "question": [
+ "is there bird ?",
+ "is there beady eye ?"
+ ],
+ "prompt": "{} has beady eye"
+ },
+ {
+ "index": 311,
+ "image_id": 2330307,
+ "entity": "bird",
+ "caption": "bird has black beak",
+ "question": [
+ "is there bird ?",
+ "is there black beak ?"
+ ],
+ "prompt": "{} has black beak"
+ },
+ {
+ "index": 312,
+ "image_id": 2330307,
+ "entity": "bird",
+ "caption": "bird has 2 feet",
+ "question": [
+ "is there bird ?",
+ "are there 2 feet ?"
+ ],
+ "prompt": "{} has 2 feet"
+ },
+ {
+ "index": 313,
+ "image_id": 2330080,
+ "entity": "bird",
+ "caption": "The bird is looking a yard gnome",
+ "question": [
+ "is there the bird ?",
+ "is there a yard gnome ?"
+ ],
+ "prompt": "The {} is looking a yard gnome"
+ },
+ {
+ "index": 314,
+ "image_id": 2330080,
+ "entity": "bird",
+ "caption": "The bird has a yellow beak",
+ "question": [
+ "is there the bird ?",
+ "is there a yellow beak ?"
+ ],
+ "prompt": "The {} has a yellow beak"
+ },
+ {
+ "index": 315,
+ "image_id": 2328246,
+ "entity": "bird",
+ "caption": "tree leaves behind the bird",
+ "question": [
+ "is there tree ?",
+ "is there the bird ?"
+ ],
+ "prompt": "tree leaves behind the {}"
+ },
+ {
+ "index": 316,
+ "image_id": 2326461,
+ "entity": "bird",
+ "caption": "white feathers on a birds head",
+ "question": [
+ "are there white feathers ?",
+ "are there a birds ?"
+ ],
+ "prompt": "white feathers on a {}s head"
+ },
+ {
+ "index": 317,
+ "image_id": 2326461,
+ "entity": "bird",
+ "caption": "The bird is on a handle",
+ "question": [
+ "is there the bird ?",
+ "is there a handle ?"
+ ],
+ "prompt": "The {} is on a handle"
+ },
+ {
+ "index": 318,
+ "image_id": 2326461,
+ "entity": "bird",
+ "caption": "Small black bird beak",
+ "question": [
+ "is there small black bird beak ?"
+ ],
+ "prompt": "Small black {} beak"
+ },
+ {
+ "index": 319,
+ "image_id": 2325550,
+ "entity": "bird",
+ "caption": "the bird is on a pole",
+ "question": [
+ "is there the bird ?",
+ "is there a pole ?"
+ ],
+ "prompt": "the {} is on a pole"
+ },
+ {
+ "index": 320,
+ "image_id": 2325550,
+ "entity": "bird",
+ "caption": "the bird has yellow feathers",
+ "question": [
+ "is there the bird ?",
+ "are there yellow feathers ?"
+ ],
+ "prompt": "the {} has yellow feathers"
+ },
+ {
+ "index": 321,
+ "image_id": 2325550,
+ "entity": "bird",
+ "caption": "the bird has yellow spiked hair",
+ "question": [
+ "is there the bird ?",
+ "is there yellow spiked hair ?"
+ ],
+ "prompt": "the {} has yellow spiked hair"
+ },
+ {
+ "index": 322,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has green breast",
+ "question": [
+ "is there bird ?",
+ "is there green breast ?"
+ ],
+ "prompt": "{} has green breast"
+ },
+ {
+ "index": 323,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has green tail",
+ "question": [
+ "is there bird ?",
+ "is there green tail ?"
+ ],
+ "prompt": "{} has green tail"
+ },
+ {
+ "index": 324,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has green head",
+ "question": [
+ "is there bird ?",
+ "is there green head ?"
+ ],
+ "prompt": "{} has green head"
+ },
+ {
+ "index": 325,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has orange talons",
+ "question": [
+ "is there bird ?",
+ "are there orange talons ?"
+ ],
+ "prompt": "{} has orange talons"
+ },
+ {
+ "index": 326,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has grey claws",
+ "question": [
+ "is there bird ?",
+ "are there grey claws ?"
+ ],
+ "prompt": "{} has grey claws"
+ },
+ {
+ "index": 327,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird stands on banana",
+ "question": [
+ "is there bird ?",
+ "is there banana ?"
+ ],
+ "prompt": "{} stands on banana"
+ },
+ {
+ "index": 328,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "Green bird is standing on banana.",
+ "question": [
+ "is there green bird ?",
+ "is there banana ?"
+ ],
+ "prompt": "Green {} is standing on banana."
+ },
+ {
+ "index": 329,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "Light is shining on bird.",
+ "question": [
+ "is there light ?",
+ "is there bird ?"
+ ],
+ "prompt": "Light is shining on {}."
+ },
+ {
+ "index": 330,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has orange feet",
+ "question": [
+ "is there bird ?",
+ "are there orange feet ?"
+ ],
+ "prompt": "{} has orange feet"
+ },
+ {
+ "index": 331,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird has black nails",
+ "question": [
+ "is there bird ?",
+ "are there black nails ?"
+ ],
+ "prompt": "{} has black nails"
+ },
+ {
+ "index": 332,
+ "image_id": 2325324,
+ "entity": "bird",
+ "caption": "bird's eye is purple blue and black",
+ "question": [
+ "is there bird's eye ?"
+ ],
+ "prompt": "{}'s eye is purple blue and black"
+ },
+ {
+ "index": 333,
+ "image_id": 2323975,
+ "entity": "bird",
+ "caption": "Orange beak on a brown and white bird.",
+ "question": [
+ "is there orange beak ?",
+ "is there a brown and white bird ?"
+ ],
+ "prompt": "Orange beak on a brown and white {}."
+ },
+ {
+ "index": 334,
+ "image_id": 2323560,
+ "entity": "bird",
+ "caption": "bird perched on a scarred limb",
+ "question": [
+ "is there bird ?",
+ "is there a scarred limb ?"
+ ],
+ "prompt": "{} perched on a scarred limb"
+ },
+ {
+ "index": 335,
+ "image_id": 2322830,
+ "entity": "bird",
+ "caption": "bird is drinking water from wood bucket",
+ "question": [
+ "is there bird ?",
+ "is there water ?",
+ "is there wood bucket ?"
+ ],
+ "prompt": "{} is drinking water from wood bucket"
+ },
+ {
+ "index": 336,
+ "image_id": 2322624,
+ "entity": "bird",
+ "caption": "The birds beak has a point.",
+ "question": [
+ "are there the birds beak ?",
+ "is there a point ?"
+ ],
+ "prompt": "The {}s beak has a point."
+ },
+ {
+ "index": 337,
+ "image_id": 2322624,
+ "entity": "bird",
+ "caption": "The birds chest is white.",
+ "question": [
+ "are there the birds ?"
+ ],
+ "prompt": "The {}s chest is white."
+ },
+ {
+ "index": 338,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "orange bird with black and white wings perched",
+ "question": [
+ "are there black and white wings ?"
+ ],
+ "prompt": "orange {} with black and white wings perched"
+ },
+ {
+ "index": 339,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "bird's beak contains blood and other animal remains",
+ "question": [
+ "is there bird's beak ?",
+ "is there blood ?",
+ "is there other animal ?"
+ ],
+ "prompt": "{}'s beak contains blood and other animal remains"
+ },
+ {
+ "index": 340,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "bird pereched of grey rock",
+ "question": [
+ "is there grey rock ?"
+ ],
+ "prompt": "{} pereched of grey rock"
+ },
+ {
+ "index": 341,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "a large tree branch with a bird nested on it",
+ "question": [
+ "is there a large tree branch ?",
+ "is there a bird ?"
+ ],
+ "prompt": "a large tree branch with a {} nested on it"
+ },
+ {
+ "index": 342,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "a tree limb with a bird rested on it",
+ "question": [
+ "is there a tree limb ?",
+ "is there a bird ?"
+ ],
+ "prompt": "a tree limb with a {} rested on it"
+ },
+ {
+ "index": 343,
+ "image_id": 2320805,
+ "entity": "bird",
+ "caption": "bird has grey head",
+ "question": [
+ "is there bird ?",
+ "is there grey head ?"
+ ],
+ "prompt": "{} has grey head"
+ },
+ {
+ "index": 344,
+ "image_id": 2318439,
+ "entity": "bird",
+ "caption": "Baby bird is standing in ground.",
+ "question": [
+ "is there baby bird ?",
+ "is there ground ?"
+ ],
+ "prompt": "Baby {} is standing in ground."
+ },
+ {
+ "index": 345,
+ "image_id": 2318290,
+ "entity": "bird",
+ "caption": "section of brown tipped bird wing feather",
+ "question": [
+ "is there section ?",
+ "is there bird wing feather ?"
+ ],
+ "prompt": "section of brown tipped {} wing feather"
+ },
+ {
+ "index": 346,
+ "image_id": 2318104,
+ "entity": "bird",
+ "caption": "a bird that is standing outside",
+ "question": [
+ "is there a bird ?"
+ ],
+ "prompt": "a {} that is standing outside"
+ },
+ {
+ "index": 347,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird has long gray legs",
+ "question": [
+ "is there the bird ?",
+ "are there long gray legs ?"
+ ],
+ "prompt": "the {} has long gray legs"
+ },
+ {
+ "index": 348,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird has a small beady eye",
+ "question": [
+ "is there the bird ?",
+ "is there a small beady eye ?"
+ ],
+ "prompt": "the {} has a small beady eye"
+ },
+ {
+ "index": 349,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird has a big beak",
+ "question": [
+ "is there the bird ?",
+ "is there a big beak ?"
+ ],
+ "prompt": "the {} has a big beak"
+ },
+ {
+ "index": 350,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird has tons of feathers",
+ "question": [
+ "is there the bird ?",
+ "are there tons ?",
+ "are there feathers ?"
+ ],
+ "prompt": "the {} has tons of feathers"
+ },
+ {
+ "index": 351,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird has its mouth open",
+ "question": [
+ "is there the bird ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has its mouth open"
+ },
+ {
+ "index": 352,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird is standing in grass",
+ "question": [
+ "is there the bird ?",
+ "is there grass ?"
+ ],
+ "prompt": "the {} is standing in grass"
+ },
+ {
+ "index": 353,
+ "image_id": 2317875,
+ "entity": "bird",
+ "caption": "the bird is near a pond",
+ "question": [
+ "is there the bird ?",
+ "is there a pond ?"
+ ],
+ "prompt": "the {} is near a pond"
+ },
+ {
+ "index": 354,
+ "image_id": 2317249,
+ "entity": "bird",
+ "caption": "The birds are out in the forest",
+ "question": [
+ "are there the birds ?",
+ "is there the forest ?"
+ ],
+ "prompt": "The {}s are out in the forest"
+ },
+ {
+ "index": 355,
+ "image_id": 2317249,
+ "entity": "bird",
+ "caption": "The birds are watching for predators",
+ "question": [
+ "are there the birds ?",
+ "are there predators ?"
+ ],
+ "prompt": "The {}s are watching for predators"
+ },
+ {
+ "index": 356,
+ "image_id": 2316597,
+ "entity": "bird",
+ "caption": "the pool of bird feeding ",
+ "question": [
+ "is there the pool ?",
+ "is there bird feeding ?"
+ ],
+ "prompt": "the pool of {} feeding "
+ },
+ {
+ "index": 357,
+ "image_id": 2316597,
+ "entity": "bird",
+ "caption": "a bird iwth a beak",
+ "question": [
+ "is there a bird ?",
+ "is there a beak ?"
+ ],
+ "prompt": "a {} iwth a beak"
+ },
+ {
+ "index": 358,
+ "image_id": 2316285,
+ "entity": "bird",
+ "caption": "bird perched on a branch",
+ "question": [
+ "is there bird ?",
+ "is there a branch ?"
+ ],
+ "prompt": "{} perched on a branch"
+ },
+ {
+ "index": 359,
+ "image_id": 2414525,
+ "entity": "bird",
+ "caption": "man giving bird wine",
+ "question": [
+ "is there man ?",
+ "is there bird wine ?"
+ ],
+ "prompt": "man giving {} wine"
+ },
+ {
+ "index": 360,
+ "image_id": 2413894,
+ "entity": "bird",
+ "caption": "the bird has two eyes",
+ "question": [
+ "is there the bird ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "the {} has two eyes"
+ },
+ {
+ "index": 361,
+ "image_id": 2413894,
+ "entity": "bird",
+ "caption": "The bird is standing in calm water.",
+ "question": [
+ "is there the bird ?",
+ "is there calm water ?"
+ ],
+ "prompt": "The {} is standing in calm water."
+ },
+ {
+ "index": 362,
+ "image_id": 2413604,
+ "entity": "bird",
+ "caption": "the bird is on the chair",
+ "question": [
+ "is there the bird ?",
+ "is there the chair ?"
+ ],
+ "prompt": "the {} is on the chair"
+ },
+ {
+ "index": 363,
+ "image_id": 2413604,
+ "entity": "bird",
+ "caption": "The bird is outside resting on the edge of a wicker basket chair. ",
+ "question": [
+ "is there the bird ?",
+ "is there the edge ?",
+ "is there a wicker basket chair ?"
+ ],
+ "prompt": "The {} is outside resting on the edge of a wicker basket chair. "
+ },
+ {
+ "index": 364,
+ "image_id": 2413604,
+ "entity": "bird",
+ "caption": "The bird has thick black feathers. ",
+ "question": [
+ "is there the bird ?",
+ "are there thick black feathers ?"
+ ],
+ "prompt": "The {} has thick black feathers. "
+ },
+ {
+ "index": 365,
+ "image_id": 2413604,
+ "entity": "bird",
+ "caption": "little bird has extremely expressive eyes",
+ "question": [
+ "is there little bird ?",
+ "are there extremely expressive eyes ?"
+ ],
+ "prompt": "little {} has extremely expressive eyes"
+ },
+ {
+ "index": 366,
+ "image_id": 2413070,
+ "entity": "bird",
+ "caption": "two birds feet",
+ "question": [
+ "are there two birds ?"
+ ],
+ "prompt": "two {}s feet"
+ },
+ {
+ "index": 367,
+ "image_id": 2416459,
+ "entity": "bird",
+ "caption": "bird perched on the flower",
+ "question": [
+ "is there bird ?",
+ "is there the flower ?"
+ ],
+ "prompt": "{} perched on the flower"
+ },
+ {
+ "index": 368,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "the bird has red color beak",
+ "question": [
+ "is there the bird ?",
+ "is there red color beak ?"
+ ],
+ "prompt": "the {} has red color beak"
+ },
+ {
+ "index": 369,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "the bird has paddle feet",
+ "question": [
+ "is there the bird ?",
+ "are there paddle feet ?"
+ ],
+ "prompt": "the {} has paddle feet"
+ },
+ {
+ "index": 370,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "the wings of the bird are gray",
+ "question": [
+ "are there the wings ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the wings of the {} are gray"
+ },
+ {
+ "index": 371,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "birds foot ",
+ "question": [
+ "are there birds ?"
+ ],
+ "prompt": "{}s foot "
+ },
+ {
+ "index": 372,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "beak of bird is closed",
+ "question": [
+ "is there beak ?",
+ "is there bird ?"
+ ],
+ "prompt": "beak of {} is closed"
+ },
+ {
+ "index": 373,
+ "image_id": 2417074,
+ "entity": "bird",
+ "caption": "foot of bird is on dock",
+ "question": [
+ "is there foot ?",
+ "is there bird ?",
+ "is there dock ?"
+ ],
+ "prompt": "foot of {} is on dock"
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n01558993.json b/data/imagenet/compositions/prompts/n01558993.json
new file mode 100644
index 0000000000000000000000000000000000000000..d2f6a90f12f4f06cb56b687a87e91c16757b699c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01558993.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2220, "entity": "bird", "caption": "the bird has a fish in its mouth", "question": ["is there the bird ?", "is there a fish ?", "is there its mouth ?"], "prompt": "the {} has a fish in its mouth"}, {"index": 1, "image_id": 2612, "entity": "bird", "caption": "bird has tan beak", "question": ["is there bird ?", "is there tan beak ?"], "prompt": "{} has tan beak"}, {"index": 2, "image_id": 2612, "entity": "bird", "caption": "bird has brown eye", "question": ["is there bird ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 3, "image_id": 2612, "entity": "bird", "caption": "bird has black feathers", "question": ["is there bird ?", "are there black feathers ?"], "prompt": "{} has black feathers"}, {"index": 4, "image_id": 2613, "entity": "bird", "caption": "birds have orange beaks", "question": ["are there birds ?", "are there orange beaks ?"], "prompt": "{}s have orange beaks"}, {"index": 5, "image_id": 2613, "entity": "bird", "caption": "bird has white feathers", "question": ["is there bird ?", "are there white feathers ?"], "prompt": "{} has white feathers"}, {"index": 6, "image_id": 2613, "entity": "bird", "caption": "bird has grey leg", "question": ["is there bird ?"], "prompt": "{} has grey leg"}, {"index": 7, "image_id": 2613, "entity": "bird", "caption": "bird stands on one leg", "question": ["is there bird ?", "is there one leg ?"], "prompt": "{} stands on one leg"}, {"index": 8, "image_id": 2619, "entity": "bird", "caption": "the eye of the bird is black", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "the eye of the {} is black"}, {"index": 9, "image_id": 2619, "entity": "bird", "caption": "the bird feet is black", "question": ["are there the bird feet ?"], "prompt": "the {} feet is black"}, {"index": 10, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food out of the person's hand", "question": ["is there the bird ?", "is there food ?", "is there the person's hand ?"], "prompt": "The {} is eating food out of the person's hand"}, {"index": 11, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food", "question": ["is there the bird ?", "is there food ?"], "prompt": "The {} is eating food"}, {"index": 12, "image_id": 2415095, "entity": "bird", "caption": "A bird with red feathers is eating food", "question": ["is there a bird ?", "are there red feathers ?", "is there food ?"], "prompt": "A {} with red feathers is eating food"}, {"index": 13, "image_id": 2415095, "entity": "bird", "caption": "The red feather bird is eating food out of a person's hand", "question": ["is there the red feather bird ?", "is there food ?", "is there a person's hand ?"], "prompt": "The red feather {} is eating food out of a person's hand"}, {"index": 14, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating an apples from the person's hand", "question": ["is there the bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The {} is eating an apples from the person's hand"}, {"index": 15, "image_id": 2415095, "entity": "bird", "caption": "The red-feathered bird is eating an apples from the person's hand", "question": ["is there the red-feathered bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The red-feathered {} is eating an apples from the person's hand"}, {"index": 16, "image_id": 2414024, "entity": "bird", "caption": "little bird with chest puffed out", "question": ["is there little bird ?", "is there chest ?"], "prompt": "little {} with chest puffed out"}, {"index": 17, "image_id": 2412521, "entity": "bird", "caption": "bird has red patch", "question": ["is there bird ?", "is there red patch ?"], "prompt": "{} has red patch"}, {"index": 18, "image_id": 2412521, "entity": "bird", "caption": "wood is under bird", "question": ["is there wood ?", "is there bird ?"], "prompt": "wood is under {}"}, {"index": 19, "image_id": 2412521, "entity": "bird", "caption": "black bird has it's mouth open", "question": ["is there black bird ?"], "prompt": "black {} has it's mouth open"}, {"index": 20, "image_id": 2412521, "entity": "bird", "caption": "bird perched on log", "question": ["is there bird ?", "is there log ?"], "prompt": "{} perched on log"}, {"index": 21, "image_id": 2412521, "entity": "bird", "caption": "black bird leg slanted from body", "question": ["is there black bird leg ?", "is there body ?"], "prompt": "black {} leg slanted from body"}, {"index": 22, "image_id": 2412061, "entity": "bird", "caption": "Black bird beak", "question": ["is there black bird beak ?"], "prompt": "Black {} beak"}, {"index": 23, "image_id": 2412061, "entity": "bird", "caption": "Black-feathered bird looks up to the sky", "question": ["is there black-feathered bird ?", "is there the sky ?"], "prompt": "Black-feathered {} looks up to the sky"}, {"index": 24, "image_id": 2409570, "entity": "bird", "caption": "the bird has two feet", "question": ["is there the bird ?", "are there two feet ?"], "prompt": "the {} has two feet"}, {"index": 25, "image_id": 2409570, "entity": "bird", "caption": "the bird is biting its tail", "question": ["is there the bird ?", "is there its tail ?"], "prompt": "the {} is biting its tail"}, {"index": 26, "image_id": 2409570, "entity": "bird", "caption": "the bird has wings", "question": ["is there the bird ?", "are there wings ?"], "prompt": "the {} has wings"}, {"index": 27, "image_id": 2409570, "entity": "bird", "caption": "White bird with black tail feathers standing on the sand", "question": ["is there white bird ?", "are there black tail feathers ?", "is there the sand ?"], "prompt": "White {} with black tail feathers standing on the sand"}, {"index": 28, "image_id": 2409306, "entity": "bird", "caption": "a fragment of ground that a young bird is standing on", "question": ["is there a fragment ?", "is there ground ?", "is there a young bird ?"], "prompt": "a fragment of ground that a young {} is standing on"}, {"index": 29, "image_id": 2409306, "entity": "bird", "caption": "head of bird is polka dotted", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is polka dotted"}, {"index": 30, "image_id": 2409306, "entity": "bird", "caption": "a baby bird stands on the ground", "question": ["is there a baby bird ?", "is there the ground ?"], "prompt": "a baby {} stands on the ground"}, {"index": 31, "image_id": 2409215, "entity": "bird", "caption": "The bird's beak is orange. ", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is orange. "}, {"index": 32, "image_id": 2409215, "entity": "bird", "caption": "The bird is flying above water. ", "question": ["is there the bird ?", "is there water ?"], "prompt": "The {} is flying above water. "}, {"index": 33, "image_id": 2409215, "entity": "bird", "caption": "End of the bird's wing that is primarily black", "question": ["is there end ?", "is there the bird's wing ?"], "prompt": "End of the {}'s wing that is primarily black"}, {"index": 34, "image_id": 2409045, "entity": "bird", "caption": "Neck of bird has S shape", "question": ["is there neck ?", "is there bird ?", "are there s ?", "is there shape ?"], "prompt": "Neck of {} has S shape"}, {"index": 35, "image_id": 2409045, "entity": "bird", "caption": "Grey bird rising into the air", "question": ["is there grey bird ?", "is there the air ?"], "prompt": "Grey {} rising into the air"}, {"index": 36, "image_id": 2409010, "entity": "bird", "caption": "a bird has a small creature in its mouth", "question": ["is there a bird ?", "is there a small creature ?", "is there its mouth ?"], "prompt": "a {} has a small creature in its mouth"}, {"index": 37, "image_id": 2409010, "entity": "bird", "caption": "a bird walks along the wet sand", "question": ["is there a bird ?", "is there the wet sand ?"], "prompt": "a {} walks along the wet sand"}, {"index": 38, "image_id": 2408592, "entity": "bird", "caption": "a bird stands at the edge of the water", "question": ["is there a bird ?", "is there the edge ?", "is there the water ?"], "prompt": "a {} stands at the edge of the water"}, {"index": 39, "image_id": 2408592, "entity": "bird", "caption": "The bird has webbed feet", "question": ["is there the bird ?"], "prompt": "The {} has webbed feet"}, {"index": 40, "image_id": 2408592, "entity": "bird", "caption": "The bird is standing in the dirt", "question": ["is there the bird ?", "is there the dirt ?"], "prompt": "The {} is standing in the dirt"}, {"index": 41, "image_id": 2408592, "entity": "bird", "caption": "the ground the bird is standing on", "question": ["is there the ground ?", "is there the bird ?"], "prompt": "the ground the {} is standing on"}, {"index": 42, "image_id": 2408299, "entity": "bird", "caption": "the bird is hiding in a plant", "question": ["is there the bird ?", "is there a plant ?"], "prompt": "the {} is hiding in a plant"}, {"index": 43, "image_id": 2408299, "entity": "bird", "caption": "the bird has a white belly", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 44, "image_id": 2407737, "entity": "bird", "caption": "this is a birds eye", "question": ["are there a birds ?"], "prompt": "this is a {}s eye"}, {"index": 45, "image_id": 2407737, "entity": "bird", "caption": "this is a bird tail", "question": ["is there a bird tail ?"], "prompt": "this is a {} tail"}, {"index": 46, "image_id": 2407737, "entity": "bird", "caption": "the bird has sharp beak", "question": ["is there the bird ?", "is there sharp beak ?"], "prompt": "the {} has sharp beak"}, {"index": 47, "image_id": 2407737, "entity": "bird", "caption": "the branches are beside the bird", "question": ["are there the branches ?", "is there the bird ?"], "prompt": "the branches are beside the {}"}, {"index": 48, "image_id": 2407737, "entity": "bird", "caption": "the bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "the {} has thin legs"}, {"index": 49, "image_id": 2407737, "entity": "bird", "caption": "the bird has black eyes", "question": ["is there the bird ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 50, "image_id": 2407316, "entity": "bird", "caption": "the bird has black legs", "question": ["is there the bird ?", "are there black legs ?"], "prompt": "the {} has black legs"}, {"index": 51, "image_id": 2407316, "entity": "bird", "caption": "the bird has three toes", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "the {} has three toes"}, {"index": 52, "image_id": 2406956, "entity": "bird", "caption": "black feathers on top of birds head", "question": ["are there black feathers ?", "is there top ?", "are there birds ?"], "prompt": "black feathers on top of {}s head"}, {"index": 53, "image_id": 2406956, "entity": "bird", "caption": "this is the bird's eye", "question": ["is there the bird's eye ?"], "prompt": "this is the {}'s eye"}, {"index": 54, "image_id": 2406956, "entity": "bird", "caption": "an object is in the bird's beak", "question": ["is there an object ?", "is there the bird's beak ?"], "prompt": "an object is in the {}'s beak"}, {"index": 55, "image_id": 2406956, "entity": "bird", "caption": "the bird's eye is black in color", "question": ["is there the bird's eye ?", "is there color ?"], "prompt": "the {}'s eye is black in color"}, {"index": 56, "image_id": 2404798, "entity": "bird", "caption": "bird has long beak", "question": ["is there bird ?", "is there long beak ?"], "prompt": "{} has long beak"}, {"index": 57, "image_id": 2404798, "entity": "bird", "caption": "bird has pink feathers", "question": ["is there bird ?", "are there pink feathers ?"], "prompt": "{} has pink feathers"}, {"index": 58, "image_id": 2404798, "entity": "bird", "caption": "bird has red eye", "question": ["is there bird ?", "is there red eye ?"], "prompt": "{} has red eye"}, {"index": 59, "image_id": 2404798, "entity": "bird", "caption": "head of bird is featherless", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is featherless"}, {"index": 60, "image_id": 2404798, "entity": "bird", "caption": "bird has green tag on leg", "question": ["is there bird ?", "is there green tag ?", "is there leg ?"], "prompt": "{} has green tag on leg"}, {"index": 61, "image_id": 2404798, "entity": "bird", "caption": "The bird is in the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 62, "image_id": 2404798, "entity": "bird", "caption": "The bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "The {} has a beak"}, {"index": 63, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is open", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 64, "image_id": 2404798, "entity": "bird", "caption": "The bird is wading in the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is wading in the water."}, {"index": 65, "image_id": 2404798, "entity": "bird", "caption": "The bird has a long beak.", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak."}, {"index": 66, "image_id": 2404798, "entity": "bird", "caption": "The bird has light and dark pink feathers.", "question": ["is there the bird ?", "are there light and dark pink feathers ?"], "prompt": "The {} has light and dark pink feathers."}, {"index": 67, "image_id": 2404798, "entity": "bird", "caption": "The bird has a green band around the leg.", "question": ["is there the bird ?", "is there a green band ?", "is there the leg ?"], "prompt": "The {} has a green band around the leg."}, {"index": 68, "image_id": 2404798, "entity": "bird", "caption": "The bird has white neck feathers.", "question": ["is there the bird ?", "are there white neck feathers ?"], "prompt": "The {} has white neck feathers."}, {"index": 69, "image_id": 2404798, "entity": "bird", "caption": "Large rocks are behind the birds.", "question": ["are there large rocks ?", "are there the birds ?"], "prompt": "Large rocks are behind the {}s."}, {"index": 70, "image_id": 2404798, "entity": "bird", "caption": "Water is dripping from the bird's beak.", "question": ["is there water ?", "is there the bird's beak ?"], "prompt": "Water is dripping from the {}'s beak."}, {"index": 71, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is yellow and black.", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is yellow and black."}, {"index": 72, "image_id": 2404673, "entity": "bird", "caption": "the bird is on a long black metal piece", "question": ["is there the bird ?", "is there a long black metal piece ?"], "prompt": "the {} is on a long black metal piece"}, {"index": 73, "image_id": 2404673, "entity": "bird", "caption": "glass sun catchers are hanging in front of the wooden bird", "question": ["are there glass sun catchers ?", "is there front ?", "is there the wooden bird ?"], "prompt": "glass sun catchers are hanging in front of the wooden {}"}, {"index": 74, "image_id": 2404673, "entity": "bird", "caption": "the bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "the {} has a beak"}, {"index": 75, "image_id": 2404673, "entity": "bird", "caption": "the window is reflecting the bird", "question": ["is there the window ?", "is there the bird ?"], "prompt": "the window is reflecting the {}"}, {"index": 76, "image_id": 2404673, "entity": "bird", "caption": "the bird has 1 leg", "question": ["is there the bird ?", "is there 1 leg ?"], "prompt": "the {} has 1 leg"}, {"index": 77, "image_id": 2404673, "entity": "bird", "caption": "the bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "the {} has a long beak"}, {"index": 78, "image_id": 2404673, "entity": "bird", "caption": "the bird's eye is black", "question": ["is there the bird's eye ?"], "prompt": "the {}'s eye is black"}, {"index": 79, "image_id": 2404673, "entity": "bird", "caption": "the bird's leg is long", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is long"}, {"index": 80, "image_id": 2404673, "entity": "bird", "caption": "the bird is sitting on the window", "question": ["is there the bird ?", "is there the window ?"], "prompt": "the {} is sitting on the window"}, {"index": 81, "image_id": 2404673, "entity": "bird", "caption": "The bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak"}, {"index": 82, "image_id": 2403435, "entity": "bird", "caption": "person is feeding bird", "question": ["is there person ?", "is there bird ?"], "prompt": "person is feeding {}"}, {"index": 83, "image_id": 2401304, "entity": "bird", "caption": "a bird is standing on weathered wood", "question": ["is there a bird ?", "is there weathered wood ?"], "prompt": "a {} is standing on weathered wood"}, {"index": 84, "image_id": 2401079, "entity": "bird", "caption": "bird's beak is black and red", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black and red"}, {"index": 85, "image_id": 2401079, "entity": "bird", "caption": "the bird's feet are black", "question": ["are there the bird's feet ?"], "prompt": "the {}'s feet are black"}, {"index": 86, "image_id": 2400985, "entity": "bird", "caption": "the bird has a short black beak", "question": ["is there the bird ?", "is there a short black beak ?"], "prompt": "the {} has a short black beak"}, {"index": 87, "image_id": 2400985, "entity": "bird", "caption": "the bird has sharp claws", "question": ["is there the bird ?", "are there sharp claws ?"], "prompt": "the {} has sharp claws"}, {"index": 88, "image_id": 2400985, "entity": "bird", "caption": "A birds left side wing. ", "question": ["are there a birds ?", "is there side wing ?"], "prompt": "A {}s left side wing. "}, {"index": 89, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds right foot", "question": ["are there the fully shown birds ?"], "prompt": "The fully shown {}s right foot"}, {"index": 90, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds left foot", "question": ["are there the fully shown birds ?", "is there foot ?"], "prompt": "The fully shown {}s left foot"}, {"index": 91, "image_id": 2396390, "entity": "bird", "caption": "bird perched on wooden pole ", "question": ["is there bird ?", "is there wooden pole ?"], "prompt": "{} perched on wooden pole "}, {"index": 92, "image_id": 2396390, "entity": "bird", "caption": "bird angled sideways with feet tightly gripping", "question": ["is there bird ?", "are there feet ?"], "prompt": "{} angled sideways with feet tightly gripping"}, {"index": 93, "image_id": 2396109, "entity": "bird", "caption": "The bird has yellow eyes.", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes."}, {"index": 94, "image_id": 2396109, "entity": "bird", "caption": "The bird stands on the tree.", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "The {} stands on the tree."}, {"index": 95, "image_id": 2396109, "entity": "bird", "caption": "this is a bird", "question": ["is there a bird ?"], "prompt": "this is a {}"}, {"index": 96, "image_id": 2396109, "entity": "bird", "caption": "the bird is on the tree", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "the {} is on the tree"}, {"index": 97, "image_id": 2396109, "entity": "bird", "caption": "the bird has yellow eyes", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "the {} has yellow eyes"}, {"index": 98, "image_id": 2396109, "entity": "bird", "caption": "the bird's legs are long", "question": ["are there the bird's legs ?"], "prompt": "the {}'s legs are long"}, {"index": 99, "image_id": 2396109, "entity": "bird", "caption": "The bird has a pointy beak.", "question": ["is there the bird ?", "is there a pointy beak ?"], "prompt": "The {} has a pointy beak."}, {"index": 100, "image_id": 2396109, "entity": "bird", "caption": "The bird has two legs.", "question": ["is there the bird ?", "are there two legs ?"], "prompt": "The {} has two legs."}, {"index": 101, "image_id": 2396109, "entity": "bird", "caption": "The bird has a yellow eye.", "question": ["is there the bird ?", "is there a yellow eye ?"], "prompt": "The {} has a yellow eye."}, {"index": 102, "image_id": 2396109, "entity": "bird", "caption": "The bird has a wing.", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "The {} has a wing."}, {"index": 103, "image_id": 2395577, "entity": "bird", "caption": "the bird has a wing", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "the {} has a wing"}, {"index": 104, "image_id": 2395577, "entity": "bird", "caption": "the bird has an eye", "question": ["is there the bird ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 105, "image_id": 2394957, "entity": "bird", "caption": "bird stand on rim of bowl", "question": ["is there bird ?", "is there rim ?", "is there bowl ?"], "prompt": "{} stand on rim of bowl"}, {"index": 106, "image_id": 2394957, "entity": "bird", "caption": "bird's head is black and blue in color", "question": ["is there bird's head ?", "is there color ?"], "prompt": "{}'s head is black and blue in color"}, {"index": 107, "image_id": 2394957, "entity": "bird", "caption": "bird's eye is red", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is red"}, {"index": 108, "image_id": 2393198, "entity": "bird", "caption": "the birds long beak", "question": ["are there the birds ?"], "prompt": "the {}s long beak"}, {"index": 109, "image_id": 2393198, "entity": "bird", "caption": "the feathers on the birds chest", "question": ["are there the feathers ?", "are there the birds ?"], "prompt": "the feathers on the {}s chest"}, {"index": 110, "image_id": 2393198, "entity": "bird", "caption": "the log the birds standing on", "question": ["is there the log ?", "are there the birds ?"], "prompt": "the log the {}s standing on"}, {"index": 111, "image_id": 2392907, "entity": "bird", "caption": "bird has yellow legs", "question": ["is there bird ?", "are there yellow legs ?"], "prompt": "{} has yellow legs"}, {"index": 112, "image_id": 2392907, "entity": "bird", "caption": "bird has large toe nails", "question": ["is there bird ?", "are there large toe nails ?"], "prompt": "{} has large toe nails"}, {"index": 113, "image_id": 2392255, "entity": "bird", "caption": "The birds tail feathers.", "question": ["are there the birds tail feathers ?"], "prompt": "The {}s tail feathers."}, {"index": 114, "image_id": 2392255, "entity": "bird", "caption": "The bird is standing on a person's hand.", "question": ["is there the bird ?", "is there a person's hand ?"], "prompt": "The {} is standing on a person's hand."}, {"index": 115, "image_id": 2392255, "entity": "bird", "caption": "The bird has grey feathers.", "question": ["is there the bird ?", "are there grey feathers ?"], "prompt": "The {} has grey feathers."}, {"index": 116, "image_id": 2392255, "entity": "bird", "caption": "The bird has a black beak.", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "The {} has a black beak."}, {"index": 117, "image_id": 2392255, "entity": "bird", "caption": "the bird has a black beak", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "the {} has a black beak"}, {"index": 118, "image_id": 2392255, "entity": "bird", "caption": "the bird has black legs and claws", "question": ["is there the bird ?", "are there black legs ?", "are there claws ?"], "prompt": "the {} has black legs and claws"}, {"index": 119, "image_id": 2392255, "entity": "bird", "caption": "the bird's head is white and gray", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is white and gray"}, {"index": 120, "image_id": 2391103, "entity": "bird", "caption": "Top of bird's head is jet black", "question": ["is there top ?", "is there bird's head ?", "is there jet black ?"], "prompt": "Top of {}'s head is jet black"}, {"index": 121, "image_id": 2390453, "entity": "bird", "caption": "the bird has eye", "question": ["is there the bird ?", "is there eye ?"], "prompt": "the {} has eye"}, {"index": 122, "image_id": 2389247, "entity": "bird", "caption": "a birds head", "question": ["are there a birds ?"], "prompt": "a {}s head"}, {"index": 123, "image_id": 2389247, "entity": "bird", "caption": "The birds beak.", "question": ["are there the birds ?"], "prompt": "The {}s beak."}, {"index": 124, "image_id": 2388774, "entity": "bird", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the {} is in the car "}, {"index": 125, "image_id": 2388774, "entity": "bird", "caption": "The bird has small black feathers ", "question": ["is there the bird ?", "are there small black feathers ?"], "prompt": "The {} has small black feathers "}, {"index": 126, "image_id": 2387336, "entity": "bird", "caption": "part of branch birds are sitting on", "question": ["is there part ?", "are there branch birds ?"], "prompt": "part of branch {}s are sitting on"}, {"index": 127, "image_id": 2385839, "entity": "bird", "caption": "the bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "the {} has black and white feathers"}, {"index": 128, "image_id": 2384739, "entity": "bird", "caption": "bird's legs are curled", "question": ["are there bird's legs ?"], "prompt": "{}'s legs are curled"}, {"index": 129, "image_id": 2384739, "entity": "bird", "caption": "a bird is lying on the pavement", "question": ["is there a bird ?", "is there the pavement ?"], "prompt": "a {} is lying on the pavement"}, {"index": 130, "image_id": 2384739, "entity": "bird", "caption": "the bird's head is upside down", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is upside down"}, {"index": 131, "image_id": 2384739, "entity": "bird", "caption": "the black cat is lying next to the bird", "question": ["is there the black cat ?", "is there the bird ?"], "prompt": "the black cat is lying next to the {}"}, {"index": 132, "image_id": 2384582, "entity": "bird", "caption": "This bird has a red beak.", "question": ["is there this bird ?", "is there a red beak ?"], "prompt": "This {} has a red beak."}, {"index": 133, "image_id": 2384582, "entity": "bird", "caption": "The bird is standing on a sandy beach.", "question": ["is there the bird ?", "is there a sandy beach ?"], "prompt": "The {} is standing on a sandy beach."}, {"index": 134, "image_id": 2384582, "entity": "bird", "caption": "This bird has black eyes.", "question": ["is there this bird ?", "are there black eyes ?"], "prompt": "This {} has black eyes."}, {"index": 135, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white belly.", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "The {} has a white belly."}, {"index": 136, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white body.", "question": ["is there the bird ?", "is there a white body ?"], "prompt": "The {} has a white body."}, {"index": 137, "image_id": 2384582, "entity": "bird", "caption": "The bird has black and white tail feathers.", "question": ["is there the bird ?", "are there black and white tail feathers ?"], "prompt": "The {} has black and white tail feathers."}, {"index": 138, "image_id": 2384582, "entity": "bird", "caption": "The bird has orange legs.", "question": ["is there the bird ?", "are there orange legs ?"], "prompt": "The {} has orange legs."}, {"index": 139, "image_id": 2384582, "entity": "bird", "caption": "The bird has an orange beak.", "question": ["is there the bird ?", "is there an orange beak ?"], "prompt": "The {} has an orange beak."}, {"index": 140, "image_id": 2382811, "entity": "bird", "caption": "The bird is above the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is above the water"}, {"index": 141, "image_id": 2382811, "entity": "bird", "caption": "body of seabird is white", "question": ["is there body ?", "is there seabird ?"], "prompt": "body of sea{} is white"}, {"index": 142, "image_id": 2381448, "entity": "bird", "caption": "birds feet are visible", "question": ["are there birds ?", "are there feet ?"], "prompt": "{}s feet are visible"}, {"index": 143, "image_id": 2381401, "entity": "bird", "caption": "the bird has a slender beak", "question": ["is there the bird ?", "is there a slender beak ?"], "prompt": "the {} has a slender beak"}, {"index": 144, "image_id": 2381401, "entity": "bird", "caption": "the bird has stripes on his back", "question": ["is there the bird ?", "are there stripes ?", "is there his back ?"], "prompt": "the {} has stripes on his back"}, {"index": 145, "image_id": 2381401, "entity": "bird", "caption": "the birds beak is very long", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is very long"}, {"index": 146, "image_id": 2381401, "entity": "bird", "caption": "The bird is standing on the branches of the tree.", "question": ["is there the bird ?", "are there the branches ?", "is there the tree ?"], "prompt": "The {} is standing on the branches of the tree."}, {"index": 147, "image_id": 2381401, "entity": "bird", "caption": "The bird has a long black beak.", "question": ["is there the bird ?", "is there a long black beak ?"], "prompt": "The {} has a long black beak."}, {"index": 148, "image_id": 2381401, "entity": "bird", "caption": "The bird has long red legs.", "question": ["is there the bird ?", "are there long red legs ?"], "prompt": "The {} has long red legs."}, {"index": 149, "image_id": 2381401, "entity": "bird", "caption": "the bird is red and beautiful", "question": ["is there the bird ?"], "prompt": "the {} is red and beautiful"}, {"index": 150, "image_id": 2380312, "entity": "bird", "caption": "the bird has a tail", "question": ["is there the bird ?", "is there a tail ?"], "prompt": "the {} has a tail"}, {"index": 151, "image_id": 2380312, "entity": "bird", "caption": "the bird has a head", "question": ["is there the bird ?", "is there a head ?"], "prompt": "the {} has a head"}, {"index": 152, "image_id": 2380026, "entity": "bird", "caption": "the bird has a blue head.", "question": ["is there the bird ?", "is there a blue head ?"], "prompt": "the {} has a blue head."}, {"index": 153, "image_id": 2380026, "entity": "bird", "caption": "The bird has yellow and orange on it's chest.", "question": ["is there the bird ?", "is there it's chest ?"], "prompt": "The {} has yellow and orange on it's chest."}, {"index": 154, "image_id": 2380026, "entity": "bird", "caption": "The bird has three toes.", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "The {} has three toes."}, {"index": 155, "image_id": 2380026, "entity": "bird", "caption": "bird's wings are green", "question": ["are there bird's wings ?"], "prompt": "{}'s wings are green"}, {"index": 156, "image_id": 2380026, "entity": "bird", "caption": "bird has blue head", "question": ["is there bird ?", "is there blue head ?"], "prompt": "{} has blue head"}, {"index": 157, "image_id": 2380026, "entity": "bird", "caption": "bird has orange beak", "question": ["is there bird ?", "is there orange beak ?"], "prompt": "{} has orange beak"}, {"index": 158, "image_id": 2380026, "entity": "bird", "caption": "bird has green body", "question": ["is there bird ?", "is there green body ?"], "prompt": "{} has green body"}, {"index": 159, "image_id": 2380026, "entity": "bird", "caption": "bird has brown talons", "question": ["is there bird ?", "are there brown talons ?"], "prompt": "{} has brown talons"}, {"index": 160, "image_id": 2378627, "entity": "bird", "caption": "A birds beak", "question": ["are there a birds ?"], "prompt": "A {}s beak"}, {"index": 161, "image_id": 2378627, "entity": "bird", "caption": "A birds wing", "question": ["are there a birds ?"], "prompt": "A {}s wing"}, {"index": 162, "image_id": 2377993, "entity": "bird", "caption": "The birds claws are black.", "question": ["are there the birds ?", "are there claws ?"], "prompt": "The {}s claws are black."}, {"index": 163, "image_id": 2377993, "entity": "bird", "caption": "The birds eye is black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is black."}, {"index": 164, "image_id": 2377993, "entity": "bird", "caption": "The birds beak is black.", "question": ["are there the birds beak ?"], "prompt": "The {}s beak is black."}, {"index": 165, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a bird", "question": ["is there a bird ?"], "prompt": "Pink felt on a {}"}, {"index": 166, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a white bird", "question": ["is there a white bird ?"], "prompt": "Pink felt on a white {}"}, {"index": 167, "image_id": 2376795, "entity": "bird", "caption": "A bird has pink felt on it", "question": ["is there a bird ?"], "prompt": "A {} has pink felt on it"}, {"index": 168, "image_id": 2376795, "entity": "bird", "caption": "bird head turned right", "question": ["is there bird head ?"], "prompt": "{} head turned right"}, {"index": 169, "image_id": 2376340, "entity": "bird", "caption": "the birds legs ", "question": ["are there the birds ?"], "prompt": "the {}s legs "}, {"index": 170, "image_id": 2376340, "entity": "bird", "caption": "The bird has long legs. ", "question": ["is there the bird ?", "are there long legs ?"], "prompt": "The {} has long legs. "}, {"index": 171, "image_id": 2376224, "entity": "bird", "caption": "The bird's eyes are open", "question": ["are there the bird's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 172, "image_id": 2376224, "entity": "bird", "caption": "The bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "The {} has thin legs"}, {"index": 173, "image_id": 2375434, "entity": "bird", "caption": "The bird is holding a stick in its mouth", "question": ["is there the bird ?", "is there a stick ?", "is there its mouth ?"], "prompt": "The {} is holding a stick in its mouth"}, {"index": 174, "image_id": 2375434, "entity": "bird", "caption": "birds flying in the sky", "question": ["are there birds ?", "is there the sky ?"], "prompt": "{}s flying in the sky"}, {"index": 175, "image_id": 2375434, "entity": "bird", "caption": "birds flapping their wings", "question": ["are there birds ?", "are there their wings ?"], "prompt": "{}s flapping their wings"}, {"index": 176, "image_id": 2375434, "entity": "bird", "caption": "four birds flapping their wings", "question": ["are there four birds ?", "are there their wings ?"], "prompt": "four {}s flapping their wings"}, {"index": 177, "image_id": 2375434, "entity": "bird", "caption": "a bird with its wings spread to full length", "question": ["is there a bird ?", "are there its wings ?", "is there full length ?"], "prompt": "a {} with its wings spread to full length"}, {"index": 178, "image_id": 2372589, "entity": "bird", "caption": "belly of the bird is white", "question": ["is there belly ?", "is there the bird ?"], "prompt": "belly of the {} is white"}, {"index": 179, "image_id": 2372589, "entity": "bird", "caption": "bird's feet are black", "question": ["are there bird's feet ?"], "prompt": "{}'s feet are black"}, {"index": 180, "image_id": 2372589, "entity": "bird", "caption": "bird's beak is black", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black"}, {"index": 181, "image_id": 2372267, "entity": "bird", "caption": "bird has green face", "question": ["is there bird ?", "is there green face ?"], "prompt": "{} has green face"}, {"index": 182, "image_id": 2372267, "entity": "bird", "caption": "bird has white beak", "question": ["is there bird ?", "is there white beak ?"], "prompt": "{} has white beak"}, {"index": 183, "image_id": 2371979, "entity": "bird", "caption": "bird's head is black", "question": ["is there bird's head ?"], "prompt": "{}'s head is black"}, {"index": 184, "image_id": 2371979, "entity": "bird", "caption": "bird's wing is black and red", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is black and red"}, {"index": 185, "image_id": 2371266, "entity": "bird", "caption": "birds beak that is two toned", "question": ["are there birds ?"], "prompt": "{}s beak that is two toned"}, {"index": 186, "image_id": 2370174, "entity": "bird", "caption": "water is behind the bird", "question": ["is there water ?", "is there the bird ?"], "prompt": "water is behind the {}"}, {"index": 187, "image_id": 2370174, "entity": "bird", "caption": "The bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "The {} has black and white feathers"}, {"index": 188, "image_id": 2366794, "entity": "bird", "caption": "the bird's leg is skinny", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is skinny"}, {"index": 189, "image_id": 2366794, "entity": "bird", "caption": "the bird's tail is black ", "question": ["is there the bird's tail ?"], "prompt": "the {}'s tail is black "}, {"index": 190, "image_id": 2366794, "entity": "bird", "caption": "teh bird's beak is smll", "question": ["is there teh bird's beak ?", "is there smll ?"], "prompt": "teh {}'s beak is smll"}, {"index": 191, "image_id": 2366794, "entity": "bird", "caption": "the bird is on the beach ", "question": ["is there the bird ?", "is there the beach ?"], "prompt": "the {} is on the beach "}, {"index": 192, "image_id": 2366548, "entity": "bird", "caption": "the birds have long legs", "question": ["are there the birds ?", "are there long legs ?"], "prompt": "the {}s have long legs"}, {"index": 193, "image_id": 2366548, "entity": "bird", "caption": "tall grass is behind the bird", "question": ["is there tall grass ?", "is there the bird ?"], "prompt": "tall grass is behind the {}"}, {"index": 194, "image_id": 2366548, "entity": "bird", "caption": "the bird closest to us has a few black feathers", "question": ["is there the bird ?", "are there a few black feathers ?"], "prompt": "the {} closest to us has a few black feathers"}, {"index": 195, "image_id": 2365606, "entity": "bird", "caption": "This is a bird", "question": ["is there a bird ?"], "prompt": "This is a {}"}, {"index": 196, "image_id": 2364373, "entity": "bird", "caption": "The bird has brown legs.", "question": ["is there the bird ?", "are there brown legs ?"], "prompt": "The {} has brown legs."}, {"index": 197, "image_id": 2363673, "entity": "bird", "caption": "A white and grey bird with its head turned to the left. ", "question": ["is there a white and grey bird ?", "is there its head ?", "is there the left ?"], "prompt": "A white and grey {} with its head turned to the left. "}, {"index": 198, "image_id": 2362480, "entity": "bird", "caption": "this bird has skinny legs", "question": ["is there this bird ?", "are there skinny legs ?"], "prompt": "this {} has skinny legs"}, {"index": 199, "image_id": 2362036, "entity": "bird", "caption": "it is the eye of the bird", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "it is the eye of the {}"}, {"index": 200, "image_id": 2362036, "entity": "bird", "caption": "the birds left side of the wing", "question": ["are there the birds ?", "is there side ?", "is there the wing ?"], "prompt": "the {}s left side of the wing"}, {"index": 201, "image_id": 2362031, "entity": "bird", "caption": "The bird's feather are shiny.", "question": ["is there the bird's feather ?"], "prompt": "The {}'s feather are shiny."}, {"index": 202, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are glossy.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are glossy."}, {"index": 203, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are black.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are black."}, {"index": 204, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is black.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is black."}, {"index": 205, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is open.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is open."}, {"index": 206, "image_id": 2362031, "entity": "bird", "caption": "The bird's talons are gripping a rock.", "question": ["are there the bird's talons ?", "is there a rock ?"], "prompt": "The {}'s talons are gripping a rock."}, {"index": 207, "image_id": 2361417, "entity": "bird", "caption": "Blue bird's feet wrapped about branch", "question": ["are there blue bird's feet ?", "is there branch ?"], "prompt": "Blue {}'s feet wrapped about branch"}, {"index": 208, "image_id": 2360048, "entity": "bird", "caption": "The bird is standing on a multi level white surface.", "question": ["is there the bird ?", "is there a multi level white surface ?"], "prompt": "The {} is standing on a multi level white surface."}, {"index": 209, "image_id": 2359558, "entity": "bird", "caption": "the birds feet ", "question": ["are there the birds ?"], "prompt": "the {}s feet "}, {"index": 210, "image_id": 2359558, "entity": "bird", "caption": "birds nail ", "question": ["are there birds ?"], "prompt": "{}s nail "}, {"index": 211, "image_id": 2359558, "entity": "bird", "caption": "the birds eye ", "question": ["are there the birds ?"], "prompt": "the {}s eye "}, {"index": 212, "image_id": 2359558, "entity": "bird", "caption": "the birds tail ", "question": ["are there the birds ?"], "prompt": "the {}s tail "}, {"index": 213, "image_id": 2359558, "entity": "bird", "caption": "the birds beak", "question": ["are there the birds ?"], "prompt": "the {}s beak"}, {"index": 214, "image_id": 2359558, "entity": "bird", "caption": "black bird beak", "question": ["is there black bird beak ?"], "prompt": "black {} beak"}, {"index": 215, "image_id": 2359461, "entity": "bird", "caption": "Caterpillar in the birds beak.", "question": ["are there the birds ?"], "prompt": "Caterpillar in the {}s beak."}, {"index": 216, "image_id": 2359036, "entity": "bird", "caption": "Back of bird's neck is green.", "question": ["is there bird's neck ?"], "prompt": "Back of {}'s neck is green."}, {"index": 217, "image_id": 2359036, "entity": "bird", "caption": "yellow and orange feathers for birds chest", "question": ["are there yellow and orange feathers ?", "are there birds ?"], "prompt": "yellow and orange feathers for {}s chest"}, {"index": 218, "image_id": 2359036, "entity": "bird", "caption": "blue with black accent feathers on birds head", "question": ["are there black accent feathers ?", "are there birds ?"], "prompt": "blue with black accent feathers on {}s head"}, {"index": 219, "image_id": 2358738, "entity": "bird", "caption": "the bird has a brown spot on its head", "question": ["is there the bird ?", "is there a brown spot ?", "is there its head ?"], "prompt": "the {} has a brown spot on its head"}, {"index": 220, "image_id": 2358738, "entity": "bird", "caption": "the birds wings are brown with a few white spots", "question": ["are there the birds wings ?", "are there a few white spots ?"], "prompt": "the {}s wings are brown with a few white spots"}, {"index": 221, "image_id": 2358256, "entity": "bird", "caption": "bird with wings spread", "question": ["is there bird ?", "are there wings ?"], "prompt": "{} with wings spread"}, {"index": 222, "image_id": 2358256, "entity": "bird", "caption": "nice bird with wings spread", "question": ["is there nice bird ?", "are there wings ?"], "prompt": "nice {} with wings spread"}, {"index": 223, "image_id": 2358256, "entity": "bird", "caption": "healthy bird with wings spread", "question": ["is there healthy bird ?", "are there wings ?"], "prompt": "healthy {} with wings spread"}, {"index": 224, "image_id": 2358256, "entity": "bird", "caption": "beautiful bird with wings spread", "question": ["is there beautiful bird ?", "are there wings ?"], "prompt": "beautiful {} with wings spread"}, {"index": 225, "image_id": 2358256, "entity": "bird", "caption": "bird with pretty wings spread", "question": ["is there bird ?", "are there pretty wings ?"], "prompt": "{} with pretty wings spread"}, {"index": 226, "image_id": 2358256, "entity": "bird", "caption": "bird with colorful wings spread", "question": ["is there bird ?", "are there colorful wings ?"], "prompt": "{} with colorful wings spread"}, {"index": 227, "image_id": 2357787, "entity": "bird", "caption": "The bird has gray feathers", "question": ["is there the bird ?", "are there gray feathers ?"], "prompt": "The {} has gray feathers"}, {"index": 228, "image_id": 2356534, "entity": "bird", "caption": "dead insect in birds beak", "question": ["is there dead insect ?", "are there birds ?"], "prompt": "dead insect in {}s beak"}, {"index": 229, "image_id": 2356534, "entity": "bird", "caption": "The bird has brown feathers", "question": ["is there the bird ?", "are there brown feathers ?"], "prompt": "The {} has brown feathers"}, {"index": 230, "image_id": 2356534, "entity": "bird", "caption": "The bird is on the ground", "question": ["is there the bird ?", "is there the ground ?"], "prompt": "The {} is on the ground"}, {"index": 231, "image_id": 2355976, "entity": "bird", "caption": "A bird is next to a zebra", "question": ["is there a bird ?", "is there a zebra ?"], "prompt": "A {} is next to a zebra"}, {"index": 232, "image_id": 2355976, "entity": "bird", "caption": "The bird has black feathers", "question": ["is there the bird ?", "are there black feathers ?"], "prompt": "The {} has black feathers"}, {"index": 233, "image_id": 2355730, "entity": "bird", "caption": "bird has grey feathers", "question": ["is there bird ?", "are there grey feathers ?"], "prompt": "{} has grey feathers"}, {"index": 234, "image_id": 2355730, "entity": "bird", "caption": "The bird has claws", "question": ["is there the bird ?", "are there claws ?"], "prompt": "The {} has claws"}, {"index": 235, "image_id": 2355730, "entity": "bird", "caption": "Grey beak of a bird. ", "question": ["is there grey beak ?", "is there a bird ?"], "prompt": "Grey beak of a {}. "}, {"index": 236, "image_id": 2354530, "entity": "bird", "caption": "cement area where a bird stands", "question": ["is there cement area ?", "is there a bird ?"], "prompt": "cement area where a {} stands"}, {"index": 237, "image_id": 2354530, "entity": "bird", "caption": "bird has black streak on head", "question": ["is there bird ?", "is there black streak ?", "is there head ?"], "prompt": "{} has black streak on head"}, {"index": 238, "image_id": 2354530, "entity": "bird", "caption": "bird has yellow eye", "question": ["is there bird ?", "is there yellow eye ?"], "prompt": "{} has yellow eye"}, {"index": 239, "image_id": 2353113, "entity": "bird", "caption": "bird has brown beak", "question": ["is there bird ?", "is there brown beak ?"], "prompt": "{} has brown beak"}, {"index": 240, "image_id": 2353113, "entity": "bird", "caption": "bird is behind fence", "question": ["is there bird ?", "is there fence ?"], "prompt": "{} is behind fence"}, {"index": 241, "image_id": 2353113, "entity": "bird", "caption": "bird is near water", "question": ["is there bird ?", "is there water ?"], "prompt": "{} is near water"}, {"index": 242, "image_id": 2352371, "entity": "bird", "caption": "wood platform for bird to stand on", "question": ["is there wood platform ?", "is there bird ?"], "prompt": "wood platform for {} to stand on"}, {"index": 243, "image_id": 2349694, "entity": "bird", "caption": "tail of bird is white", "question": ["is there tail ?", "is there bird ?"], "prompt": "tail of {} is white"}, {"index": 244, "image_id": 2349587, "entity": "bird", "caption": "The bird is eating the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is eating the branch."}, {"index": 245, "image_id": 2349587, "entity": "bird", "caption": "The bird is holding the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is holding the branch."}, {"index": 246, "image_id": 2349248, "entity": "bird", "caption": "the food the bird is eating", "question": ["is there the food ?", "is there the bird ?"], "prompt": "the food the {} is eating"}, {"index": 247, "image_id": 2349109, "entity": "bird", "caption": "the branch the bird is biting", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "the branch the {} is biting"}, {"index": 248, "image_id": 2348860, "entity": "bird", "caption": "A bird has an orange beak.", "question": ["is there a bird ?", "is there an orange beak ?"], "prompt": "A {} has an orange beak."}, {"index": 249, "image_id": 2348860, "entity": "bird", "caption": "A birds claw is grasping a potato.", "question": ["is there a birds ?", "is there a potato ?"], "prompt": "A {}s claw is grasping a potato."}, {"index": 250, "image_id": 2348860, "entity": "bird", "caption": "A bird is eating a potato.", "question": ["is there a bird ?", "is there a potato ?"], "prompt": "A {} is eating a potato."}, {"index": 251, "image_id": 2348860, "entity": "bird", "caption": "A bird is on a tree branch.", "question": ["is there a bird ?", "is there a tree branch ?"], "prompt": "A {} is on a tree branch."}, {"index": 252, "image_id": 2348860, "entity": "bird", "caption": "A tropical bird is on a tree branch.", "question": ["is there a tropical bird ?", "is there a tree branch ?"], "prompt": "A tropical {} is on a tree branch."}, {"index": 253, "image_id": 2348860, "entity": "bird", "caption": "bird's wing is green", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is green"}, {"index": 254, "image_id": 2348860, "entity": "bird", "caption": "The peice of food in the birds mouth", "question": ["is there the peice ?", "is there food ?", "are there the birds ?"], "prompt": "The peice of food in the {}s mouth"}, {"index": 255, "image_id": 2348860, "entity": "bird", "caption": "The birds red orange eye", "question": ["are there the birds ?"], "prompt": "The {}s red orange eye"}, {"index": 256, "image_id": 2348860, "entity": "bird", "caption": "The birds blue face", "question": ["are there the birds ?"], "prompt": "The {}s blue face"}, {"index": 257, "image_id": 2348860, "entity": "bird", "caption": "The birds foot on the fruit", "question": ["are there the birds ?", "is there the fruit ?"], "prompt": "The {}s foot on the fruit"}, {"index": 258, "image_id": 2348860, "entity": "bird", "caption": "The piece of fruit the bird is eating", "question": ["is there the piece ?", "is there fruit ?", "is there the bird ?"], "prompt": "The piece of fruit the {} is eating"}, {"index": 259, "image_id": 2348860, "entity": "bird", "caption": "The branch the bird is sitting on", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "The branch the {} is sitting on"}, {"index": 260, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw", "question": ["is there a bird ?", "is there a claw ?"], "prompt": "a {} has a claw"}, {"index": 261, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw holding onto a branch", "question": ["is there a bird ?", "is there a claw ?", "is there a branch ?"], "prompt": "a {} has a claw holding onto a branch"}, {"index": 262, "image_id": 2348795, "entity": "bird", "caption": "Black bird beak white around face. ", "question": ["is there black bird beak ?", "is there face ?"], "prompt": "Black {} beak white around face. "}, {"index": 263, "image_id": 2348671, "entity": "bird", "caption": "that is the leg of the bird", "question": ["is there the leg ?", "is there the bird ?"], "prompt": "that is the leg of the {}"}, {"index": 264, "image_id": 2348089, "entity": "bird", "caption": "a wood platform the bird is on ", "question": ["is there a wood platform ?", "is there the bird ?"], "prompt": "a wood platform the {} is on "}, {"index": 265, "image_id": 2347493, "entity": "bird", "caption": "bird with its mouth open", "question": ["is there bird ?", "is there its mouth ?"], "prompt": "{} with its mouth open"}, {"index": 266, "image_id": 2347493, "entity": "bird", "caption": "The bird is on the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 267, "image_id": 2347493, "entity": "bird", "caption": "The birds beak has a sharp point.", "question": ["are there the birds beak ?", "is there a sharp point ?"], "prompt": "The {}s beak has a sharp point."}, {"index": 268, "image_id": 2347493, "entity": "bird", "caption": "The birds feet are orange.", "question": ["are there the birds ?", "are there feet ?"], "prompt": "The {}s feet are orange."}, {"index": 269, "image_id": 2345609, "entity": "bird", "caption": "the bird has very long legs", "question": ["is there the bird ?", "are there very long legs ?"], "prompt": "the {} has very long legs"}, {"index": 270, "image_id": 2345609, "entity": "bird", "caption": "the bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "the {} has a yellow beak"}, {"index": 271, "image_id": 2344912, "entity": "bird", "caption": "grass that small bird is standing in", "question": ["is there grass ?", "is there small bird ?"], "prompt": "grass that small {} is standing in"}, {"index": 272, "image_id": 2344341, "entity": "bird", "caption": "Feathers of the bird laid back", "question": ["are there feathers ?", "is there the bird ?"], "prompt": "Feathers of the {} laid back"}, {"index": 273, "image_id": 2344328, "entity": "bird", "caption": "A birds head and neck.", "question": ["are there a birds ?", "is there neck ?"], "prompt": "A {}s head and neck."}, {"index": 274, "image_id": 2344328, "entity": "bird", "caption": "bird has grey beak", "question": ["is there bird ?", "is there grey beak ?"], "prompt": "{} has grey beak"}, {"index": 275, "image_id": 2344328, "entity": "bird", "caption": "bird has red eyes", "question": ["is there bird ?", "are there red eyes ?"], "prompt": "{} has red eyes"}, {"index": 276, "image_id": 2344328, "entity": "bird", "caption": "bird has black head", "question": ["is there bird ?", "is there black head ?"], "prompt": "{} has black head"}, {"index": 277, "image_id": 2344328, "entity": "bird", "caption": "bird has blue neck", "question": ["is there bird ?", "is there blue neck ?"], "prompt": "{} has blue neck"}, {"index": 278, "image_id": 2341438, "entity": "bird", "caption": "head of bird is gray", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is gray"}, {"index": 279, "image_id": 2341438, "entity": "bird", "caption": "eye of bird is red", "question": ["is there eye ?", "is there bird ?"], "prompt": "eye of {} is red"}, {"index": 280, "image_id": 2341058, "entity": "bird", "caption": "two birds standing on branches", "question": ["are there two birds ?", "are there branches ?"], "prompt": "two {}s standing on branches"}, {"index": 281, "image_id": 2339258, "entity": "bird", "caption": "the all black beak on the birds face", "question": ["is there the all black beak ?", "are there the birds ?"], "prompt": "the all black beak on the {}s face"}, {"index": 282, "image_id": 2339258, "entity": "bird", "caption": "the claw on the birds foot", "question": ["is there the claw ?", "are there the birds ?"], "prompt": "the claw on the {}s foot"}, {"index": 283, "image_id": 2338848, "entity": "bird", "caption": "the bird is eating the fruit", "question": ["is there the bird ?", "is there the fruit ?"], "prompt": "the {} is eating the fruit"}, {"index": 284, "image_id": 2338848, "entity": "bird", "caption": "A bird is eating some fruit", "question": ["is there a bird ?", "is there some fruit ?"], "prompt": "A {} is eating some fruit"}, {"index": 285, "image_id": 2338848, "entity": "bird", "caption": "A bird is getting some food", "question": ["is there a bird ?", "is there some food ?"], "prompt": "A {} is getting some food"}, {"index": 286, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is red and black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is red and black."}, {"index": 287, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is round.", "question": ["are there the birds ?"], "prompt": "The {}s eye is round."}, {"index": 288, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is small.", "question": ["are there the birds ?"], "prompt": "The {}s eye is small."}, {"index": 289, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are blue.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are blue."}, {"index": 290, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are red.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are red."}, {"index": 291, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are green.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are green."}, {"index": 292, "image_id": 2338848, "entity": "bird", "caption": "the birds beak is orange", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is orange"}, {"index": 293, "image_id": 2338638, "entity": "bird", "caption": "Blue and black bird standing on wood.", "question": ["is there blue and black bird ?", "is there wood ?"], "prompt": "Blue and black {} standing on wood."}, {"index": 294, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s tail", "question": ["is there tail ?"], "prompt": "this is a {}''s tail"}, {"index": 295, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s beak", "question": ["is there a bird''s beak ?"], "prompt": "this is a {}''s beak"}, {"index": 296, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s head", "question": ["is there a bird''s head ?"], "prompt": "this is a {}''s head"}, {"index": 297, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s wing", "question": ["is there wing ?"], "prompt": "this is a {}''s wing"}, {"index": 298, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s eye", "question": ["is there eye ?"], "prompt": "this is a {}''s eye"}, {"index": 299, "image_id": 2338318, "entity": "bird", "caption": "bird is on brown branch", "question": ["is there bird ?", "is there brown branch ?"], "prompt": "{} is on brown branch"}, {"index": 300, "image_id": 2336219, "entity": "bird", "caption": "bird has white eyes", "question": ["is there bird ?", "are there white eyes ?"], "prompt": "{} has white eyes"}, {"index": 301, "image_id": 2335105, "entity": "bird", "caption": "the ear lobes on the bird are red", "question": ["are there the ear lobes ?", "is there the bird ?"], "prompt": "the ear lobes on the {} are red"}, {"index": 302, "image_id": 2332681, "entity": "bird", "caption": "the bird has tiny ears", "question": ["is there the bird ?", "are there tiny ears ?"], "prompt": "the {} has tiny ears"}, {"index": 303, "image_id": 2331468, "entity": "bird", "caption": "the bird is in the water ", "question": ["is there the bird ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 304, "image_id": 2331215, "entity": "bird", "caption": "the birds wings are up", "question": ["are there the birds ?", "are there wings ?"], "prompt": "the {}s wings are up"}, {"index": 305, "image_id": 2331215, "entity": "bird", "caption": "A bird is afraid of the elephant", "question": ["is there a bird ?", "is there the elephant ?"], "prompt": "A {} is afraid of the elephant"}, {"index": 306, "image_id": 2331215, "entity": "bird", "caption": "A bird has spread out its wings", "question": ["is there a bird ?", "are there its wings ?"], "prompt": "A {} has spread out its wings"}, {"index": 307, "image_id": 2331215, "entity": "bird", "caption": "The bird has a long wingspan", "question": ["is there the bird ?", "is there a long wingspan ?"], "prompt": "The {} has a long wingspan"}, {"index": 308, "image_id": 2330695, "entity": "bird", "caption": "bird has a black beak ", "question": ["is there bird ?", "is there a black beak ?"], "prompt": "{} has a black beak "}, {"index": 309, "image_id": 2330695, "entity": "bird", "caption": "bird has gray feet", "question": ["is there bird ?", "are there gray feet ?"], "prompt": "{} has gray feet"}, {"index": 310, "image_id": 2330307, "entity": "bird", "caption": "bird has beady eye", "question": ["is there bird ?", "is there beady eye ?"], "prompt": "{} has beady eye"}, {"index": 311, "image_id": 2330307, "entity": "bird", "caption": "bird has black beak", "question": ["is there bird ?", "is there black beak ?"], "prompt": "{} has black beak"}, {"index": 312, "image_id": 2330307, "entity": "bird", "caption": "bird has 2 feet", "question": ["is there bird ?", "are there 2 feet ?"], "prompt": "{} has 2 feet"}, {"index": 313, "image_id": 2330080, "entity": "bird", "caption": "The bird is looking a yard gnome", "question": ["is there the bird ?", "is there a yard gnome ?"], "prompt": "The {} is looking a yard gnome"}, {"index": 314, "image_id": 2330080, "entity": "bird", "caption": "The bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "The {} has a yellow beak"}, {"index": 315, "image_id": 2328246, "entity": "bird", "caption": "tree leaves behind the bird", "question": ["is there tree ?", "is there the bird ?"], "prompt": "tree leaves behind the {}"}, {"index": 316, "image_id": 2326461, "entity": "bird", "caption": "white feathers on a birds head", "question": ["are there white feathers ?", "are there a birds ?"], "prompt": "white feathers on a {}s head"}, {"index": 317, "image_id": 2326461, "entity": "bird", "caption": "The bird is on a handle", "question": ["is there the bird ?", "is there a handle ?"], "prompt": "The {} is on a handle"}, {"index": 318, "image_id": 2326461, "entity": "bird", "caption": "Small black bird beak", "question": ["is there small black bird beak ?"], "prompt": "Small black {} beak"}, {"index": 319, "image_id": 2325550, "entity": "bird", "caption": "the bird is on a pole", "question": ["is there the bird ?", "is there a pole ?"], "prompt": "the {} is on a pole"}, {"index": 320, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow feathers", "question": ["is there the bird ?", "are there yellow feathers ?"], "prompt": "the {} has yellow feathers"}, {"index": 321, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow spiked hair", "question": ["is there the bird ?", "is there yellow spiked hair ?"], "prompt": "the {} has yellow spiked hair"}, {"index": 322, "image_id": 2325324, "entity": "bird", "caption": "bird has green breast", "question": ["is there bird ?", "is there green breast ?"], "prompt": "{} has green breast"}, {"index": 323, "image_id": 2325324, "entity": "bird", "caption": "bird has green tail", "question": ["is there bird ?", "is there green tail ?"], "prompt": "{} has green tail"}, {"index": 324, "image_id": 2325324, "entity": "bird", "caption": "bird has green head", "question": ["is there bird ?", "is there green head ?"], "prompt": "{} has green head"}, {"index": 325, "image_id": 2325324, "entity": "bird", "caption": "bird has orange talons", "question": ["is there bird ?", "are there orange talons ?"], "prompt": "{} has orange talons"}, {"index": 326, "image_id": 2325324, "entity": "bird", "caption": "bird has grey claws", "question": ["is there bird ?", "are there grey claws ?"], "prompt": "{} has grey claws"}, {"index": 327, "image_id": 2325324, "entity": "bird", "caption": "bird stands on banana", "question": ["is there bird ?", "is there banana ?"], "prompt": "{} stands on banana"}, {"index": 328, "image_id": 2325324, "entity": "bird", "caption": "Green bird is standing on banana.", "question": ["is there green bird ?", "is there banana ?"], "prompt": "Green {} is standing on banana."}, {"index": 329, "image_id": 2325324, "entity": "bird", "caption": "Light is shining on bird.", "question": ["is there light ?", "is there bird ?"], "prompt": "Light is shining on {}."}, {"index": 330, "image_id": 2325324, "entity": "bird", "caption": "bird has orange feet", "question": ["is there bird ?", "are there orange feet ?"], "prompt": "{} has orange feet"}, {"index": 331, "image_id": 2325324, "entity": "bird", "caption": "bird has black nails", "question": ["is there bird ?", "are there black nails ?"], "prompt": "{} has black nails"}, {"index": 332, "image_id": 2325324, "entity": "bird", "caption": "bird's eye is purple blue and black", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is purple blue and black"}, {"index": 333, "image_id": 2323975, "entity": "bird", "caption": "Orange beak on a brown and white bird.", "question": ["is there orange beak ?", "is there a brown and white bird ?"], "prompt": "Orange beak on a brown and white {}."}, {"index": 334, "image_id": 2323560, "entity": "bird", "caption": "bird perched on a scarred limb", "question": ["is there bird ?", "is there a scarred limb ?"], "prompt": "{} perched on a scarred limb"}, {"index": 335, "image_id": 2322830, "entity": "bird", "caption": "bird is drinking water from wood bucket", "question": ["is there bird ?", "is there water ?", "is there wood bucket ?"], "prompt": "{} is drinking water from wood bucket"}, {"index": 336, "image_id": 2322624, "entity": "bird", "caption": "The birds beak has a point.", "question": ["are there the birds beak ?", "is there a point ?"], "prompt": "The {}s beak has a point."}, {"index": 337, "image_id": 2322624, "entity": "bird", "caption": "The birds chest is white.", "question": ["are there the birds ?"], "prompt": "The {}s chest is white."}, {"index": 338, "image_id": 2320805, "entity": "bird", "caption": "orange bird with black and white wings perched", "question": ["are there black and white wings ?"], "prompt": "orange {} with black and white wings perched"}, {"index": 339, "image_id": 2320805, "entity": "bird", "caption": "bird's beak contains blood and other animal remains", "question": ["is there bird's beak ?", "is there blood ?", "is there other animal ?"], "prompt": "{}'s beak contains blood and other animal remains"}, {"index": 340, "image_id": 2320805, "entity": "bird", "caption": "bird pereched of grey rock", "question": ["is there grey rock ?"], "prompt": "{} pereched of grey rock"}, {"index": 341, "image_id": 2320805, "entity": "bird", "caption": "a large tree branch with a bird nested on it", "question": ["is there a large tree branch ?", "is there a bird ?"], "prompt": "a large tree branch with a {} nested on it"}, {"index": 342, "image_id": 2320805, "entity": "bird", "caption": "a tree limb with a bird rested on it", "question": ["is there a tree limb ?", "is there a bird ?"], "prompt": "a tree limb with a {} rested on it"}, {"index": 343, "image_id": 2320805, "entity": "bird", "caption": "bird has grey head", "question": ["is there bird ?", "is there grey head ?"], "prompt": "{} has grey head"}, {"index": 344, "image_id": 2318439, "entity": "bird", "caption": "Baby bird is standing in ground.", "question": ["is there baby bird ?", "is there ground ?"], "prompt": "Baby {} is standing in ground."}, {"index": 345, "image_id": 2318290, "entity": "bird", "caption": "section of brown tipped bird wing feather", "question": ["is there section ?", "is there bird wing feather ?"], "prompt": "section of brown tipped {} wing feather"}, {"index": 346, "image_id": 2318104, "entity": "bird", "caption": "a bird that is standing outside", "question": ["is there a bird ?"], "prompt": "a {} that is standing outside"}, {"index": 347, "image_id": 2317875, "entity": "bird", "caption": "the bird has long gray legs", "question": ["is there the bird ?", "are there long gray legs ?"], "prompt": "the {} has long gray legs"}, {"index": 348, "image_id": 2317875, "entity": "bird", "caption": "the bird has a small beady eye", "question": ["is there the bird ?", "is there a small beady eye ?"], "prompt": "the {} has a small beady eye"}, {"index": 349, "image_id": 2317875, "entity": "bird", "caption": "the bird has a big beak", "question": ["is there the bird ?", "is there a big beak ?"], "prompt": "the {} has a big beak"}, {"index": 350, "image_id": 2317875, "entity": "bird", "caption": "the bird has tons of feathers", "question": ["is there the bird ?", "are there tons ?", "are there feathers ?"], "prompt": "the {} has tons of feathers"}, {"index": 351, "image_id": 2317875, "entity": "bird", "caption": "the bird has its mouth open", "question": ["is there the bird ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 352, "image_id": 2317875, "entity": "bird", "caption": "the bird is standing in grass", "question": ["is there the bird ?", "is there grass ?"], "prompt": "the {} is standing in grass"}, {"index": 353, "image_id": 2317875, "entity": "bird", "caption": "the bird is near a pond", "question": ["is there the bird ?", "is there a pond ?"], "prompt": "the {} is near a pond"}, {"index": 354, "image_id": 2317249, "entity": "bird", "caption": "The birds are out in the forest", "question": ["are there the birds ?", "is there the forest ?"], "prompt": "The {}s are out in the forest"}, {"index": 355, "image_id": 2317249, "entity": "bird", "caption": "The birds are watching for predators", "question": ["are there the birds ?", "are there predators ?"], "prompt": "The {}s are watching for predators"}, {"index": 356, "image_id": 2316597, "entity": "bird", "caption": "the pool of bird feeding ", "question": ["is there the pool ?", "is there bird feeding ?"], "prompt": "the pool of {} feeding "}, {"index": 357, "image_id": 2316597, "entity": "bird", "caption": "a bird iwth a beak", "question": ["is there a bird ?", "is there a beak ?"], "prompt": "a {} iwth a beak"}, {"index": 358, "image_id": 2316285, "entity": "bird", "caption": "bird perched on a branch", "question": ["is there bird ?", "is there a branch ?"], "prompt": "{} perched on a branch"}, {"index": 359, "image_id": 2414525, "entity": "bird", "caption": "man giving bird wine", "question": ["is there man ?", "is there bird wine ?"], "prompt": "man giving {} wine"}, {"index": 360, "image_id": 2413894, "entity": "bird", "caption": "the bird has two eyes", "question": ["is there the bird ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 361, "image_id": 2413894, "entity": "bird", "caption": "The bird is standing in calm water.", "question": ["is there the bird ?", "is there calm water ?"], "prompt": "The {} is standing in calm water."}, {"index": 362, "image_id": 2413604, "entity": "bird", "caption": "the bird is on the chair", "question": ["is there the bird ?", "is there the chair ?"], "prompt": "the {} is on the chair"}, {"index": 363, "image_id": 2413604, "entity": "bird", "caption": "The bird is outside resting on the edge of a wicker basket chair. ", "question": ["is there the bird ?", "is there the edge ?", "is there a wicker basket chair ?"], "prompt": "The {} is outside resting on the edge of a wicker basket chair. "}, {"index": 364, "image_id": 2413604, "entity": "bird", "caption": "The bird has thick black feathers. ", "question": ["is there the bird ?", "are there thick black feathers ?"], "prompt": "The {} has thick black feathers. "}, {"index": 365, "image_id": 2413604, "entity": "bird", "caption": "little bird has extremely expressive eyes", "question": ["is there little bird ?", "are there extremely expressive eyes ?"], "prompt": "little {} has extremely expressive eyes"}, {"index": 366, "image_id": 2413070, "entity": "bird", "caption": "two birds feet", "question": ["are there two birds ?"], "prompt": "two {}s feet"}, {"index": 367, "image_id": 2416459, "entity": "bird", "caption": "bird perched on the flower", "question": ["is there bird ?", "is there the flower ?"], "prompt": "{} perched on the flower"}, {"index": 368, "image_id": 2417074, "entity": "bird", "caption": "the bird has red color beak", "question": ["is there the bird ?", "is there red color beak ?"], "prompt": "the {} has red color beak"}, {"index": 369, "image_id": 2417074, "entity": "bird", "caption": "the bird has paddle feet", "question": ["is there the bird ?", "are there paddle feet ?"], "prompt": "the {} has paddle feet"}, {"index": 370, "image_id": 2417074, "entity": "bird", "caption": "the wings of the bird are gray", "question": ["are there the wings ?", "is there the bird ?"], "prompt": "the wings of the {} are gray"}, {"index": 371, "image_id": 2417074, "entity": "bird", "caption": "birds foot ", "question": ["are there birds ?"], "prompt": "{}s foot "}, {"index": 372, "image_id": 2417074, "entity": "bird", "caption": "beak of bird is closed", "question": ["is there beak ?", "is there bird ?"], "prompt": "beak of {} is closed"}, {"index": 373, "image_id": 2417074, "entity": "bird", "caption": "foot of bird is on dock", "question": ["is there foot ?", "is there bird ?", "is there dock ?"], "prompt": "foot of {} is on dock"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n01560419.json b/data/imagenet/compositions/prompts/n01560419.json
new file mode 100644
index 0000000000000000000000000000000000000000..d2f6a90f12f4f06cb56b687a87e91c16757b699c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01560419.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2220, "entity": "bird", "caption": "the bird has a fish in its mouth", "question": ["is there the bird ?", "is there a fish ?", "is there its mouth ?"], "prompt": "the {} has a fish in its mouth"}, {"index": 1, "image_id": 2612, "entity": "bird", "caption": "bird has tan beak", "question": ["is there bird ?", "is there tan beak ?"], "prompt": "{} has tan beak"}, {"index": 2, "image_id": 2612, "entity": "bird", "caption": "bird has brown eye", "question": ["is there bird ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 3, "image_id": 2612, "entity": "bird", "caption": "bird has black feathers", "question": ["is there bird ?", "are there black feathers ?"], "prompt": "{} has black feathers"}, {"index": 4, "image_id": 2613, "entity": "bird", "caption": "birds have orange beaks", "question": ["are there birds ?", "are there orange beaks ?"], "prompt": "{}s have orange beaks"}, {"index": 5, "image_id": 2613, "entity": "bird", "caption": "bird has white feathers", "question": ["is there bird ?", "are there white feathers ?"], "prompt": "{} has white feathers"}, {"index": 6, "image_id": 2613, "entity": "bird", "caption": "bird has grey leg", "question": ["is there bird ?"], "prompt": "{} has grey leg"}, {"index": 7, "image_id": 2613, "entity": "bird", "caption": "bird stands on one leg", "question": ["is there bird ?", "is there one leg ?"], "prompt": "{} stands on one leg"}, {"index": 8, "image_id": 2619, "entity": "bird", "caption": "the eye of the bird is black", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "the eye of the {} is black"}, {"index": 9, "image_id": 2619, "entity": "bird", "caption": "the bird feet is black", "question": ["are there the bird feet ?"], "prompt": "the {} feet is black"}, {"index": 10, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food out of the person's hand", "question": ["is there the bird ?", "is there food ?", "is there the person's hand ?"], "prompt": "The {} is eating food out of the person's hand"}, {"index": 11, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food", "question": ["is there the bird ?", "is there food ?"], "prompt": "The {} is eating food"}, {"index": 12, "image_id": 2415095, "entity": "bird", "caption": "A bird with red feathers is eating food", "question": ["is there a bird ?", "are there red feathers ?", "is there food ?"], "prompt": "A {} with red feathers is eating food"}, {"index": 13, "image_id": 2415095, "entity": "bird", "caption": "The red feather bird is eating food out of a person's hand", "question": ["is there the red feather bird ?", "is there food ?", "is there a person's hand ?"], "prompt": "The red feather {} is eating food out of a person's hand"}, {"index": 14, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating an apples from the person's hand", "question": ["is there the bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The {} is eating an apples from the person's hand"}, {"index": 15, "image_id": 2415095, "entity": "bird", "caption": "The red-feathered bird is eating an apples from the person's hand", "question": ["is there the red-feathered bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The red-feathered {} is eating an apples from the person's hand"}, {"index": 16, "image_id": 2414024, "entity": "bird", "caption": "little bird with chest puffed out", "question": ["is there little bird ?", "is there chest ?"], "prompt": "little {} with chest puffed out"}, {"index": 17, "image_id": 2412521, "entity": "bird", "caption": "bird has red patch", "question": ["is there bird ?", "is there red patch ?"], "prompt": "{} has red patch"}, {"index": 18, "image_id": 2412521, "entity": "bird", "caption": "wood is under bird", "question": ["is there wood ?", "is there bird ?"], "prompt": "wood is under {}"}, {"index": 19, "image_id": 2412521, "entity": "bird", "caption": "black bird has it's mouth open", "question": ["is there black bird ?"], "prompt": "black {} has it's mouth open"}, {"index": 20, "image_id": 2412521, "entity": "bird", "caption": "bird perched on log", "question": ["is there bird ?", "is there log ?"], "prompt": "{} perched on log"}, {"index": 21, "image_id": 2412521, "entity": "bird", "caption": "black bird leg slanted from body", "question": ["is there black bird leg ?", "is there body ?"], "prompt": "black {} leg slanted from body"}, {"index": 22, "image_id": 2412061, "entity": "bird", "caption": "Black bird beak", "question": ["is there black bird beak ?"], "prompt": "Black {} beak"}, {"index": 23, "image_id": 2412061, "entity": "bird", "caption": "Black-feathered bird looks up to the sky", "question": ["is there black-feathered bird ?", "is there the sky ?"], "prompt": "Black-feathered {} looks up to the sky"}, {"index": 24, "image_id": 2409570, "entity": "bird", "caption": "the bird has two feet", "question": ["is there the bird ?", "are there two feet ?"], "prompt": "the {} has two feet"}, {"index": 25, "image_id": 2409570, "entity": "bird", "caption": "the bird is biting its tail", "question": ["is there the bird ?", "is there its tail ?"], "prompt": "the {} is biting its tail"}, {"index": 26, "image_id": 2409570, "entity": "bird", "caption": "the bird has wings", "question": ["is there the bird ?", "are there wings ?"], "prompt": "the {} has wings"}, {"index": 27, "image_id": 2409570, "entity": "bird", "caption": "White bird with black tail feathers standing on the sand", "question": ["is there white bird ?", "are there black tail feathers ?", "is there the sand ?"], "prompt": "White {} with black tail feathers standing on the sand"}, {"index": 28, "image_id": 2409306, "entity": "bird", "caption": "a fragment of ground that a young bird is standing on", "question": ["is there a fragment ?", "is there ground ?", "is there a young bird ?"], "prompt": "a fragment of ground that a young {} is standing on"}, {"index": 29, "image_id": 2409306, "entity": "bird", "caption": "head of bird is polka dotted", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is polka dotted"}, {"index": 30, "image_id": 2409306, "entity": "bird", "caption": "a baby bird stands on the ground", "question": ["is there a baby bird ?", "is there the ground ?"], "prompt": "a baby {} stands on the ground"}, {"index": 31, "image_id": 2409215, "entity": "bird", "caption": "The bird's beak is orange. ", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is orange. "}, {"index": 32, "image_id": 2409215, "entity": "bird", "caption": "The bird is flying above water. ", "question": ["is there the bird ?", "is there water ?"], "prompt": "The {} is flying above water. "}, {"index": 33, "image_id": 2409215, "entity": "bird", "caption": "End of the bird's wing that is primarily black", "question": ["is there end ?", "is there the bird's wing ?"], "prompt": "End of the {}'s wing that is primarily black"}, {"index": 34, "image_id": 2409045, "entity": "bird", "caption": "Neck of bird has S shape", "question": ["is there neck ?", "is there bird ?", "are there s ?", "is there shape ?"], "prompt": "Neck of {} has S shape"}, {"index": 35, "image_id": 2409045, "entity": "bird", "caption": "Grey bird rising into the air", "question": ["is there grey bird ?", "is there the air ?"], "prompt": "Grey {} rising into the air"}, {"index": 36, "image_id": 2409010, "entity": "bird", "caption": "a bird has a small creature in its mouth", "question": ["is there a bird ?", "is there a small creature ?", "is there its mouth ?"], "prompt": "a {} has a small creature in its mouth"}, {"index": 37, "image_id": 2409010, "entity": "bird", "caption": "a bird walks along the wet sand", "question": ["is there a bird ?", "is there the wet sand ?"], "prompt": "a {} walks along the wet sand"}, {"index": 38, "image_id": 2408592, "entity": "bird", "caption": "a bird stands at the edge of the water", "question": ["is there a bird ?", "is there the edge ?", "is there the water ?"], "prompt": "a {} stands at the edge of the water"}, {"index": 39, "image_id": 2408592, "entity": "bird", "caption": "The bird has webbed feet", "question": ["is there the bird ?"], "prompt": "The {} has webbed feet"}, {"index": 40, "image_id": 2408592, "entity": "bird", "caption": "The bird is standing in the dirt", "question": ["is there the bird ?", "is there the dirt ?"], "prompt": "The {} is standing in the dirt"}, {"index": 41, "image_id": 2408592, "entity": "bird", "caption": "the ground the bird is standing on", "question": ["is there the ground ?", "is there the bird ?"], "prompt": "the ground the {} is standing on"}, {"index": 42, "image_id": 2408299, "entity": "bird", "caption": "the bird is hiding in a plant", "question": ["is there the bird ?", "is there a plant ?"], "prompt": "the {} is hiding in a plant"}, {"index": 43, "image_id": 2408299, "entity": "bird", "caption": "the bird has a white belly", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 44, "image_id": 2407737, "entity": "bird", "caption": "this is a birds eye", "question": ["are there a birds ?"], "prompt": "this is a {}s eye"}, {"index": 45, "image_id": 2407737, "entity": "bird", "caption": "this is a bird tail", "question": ["is there a bird tail ?"], "prompt": "this is a {} tail"}, {"index": 46, "image_id": 2407737, "entity": "bird", "caption": "the bird has sharp beak", "question": ["is there the bird ?", "is there sharp beak ?"], "prompt": "the {} has sharp beak"}, {"index": 47, "image_id": 2407737, "entity": "bird", "caption": "the branches are beside the bird", "question": ["are there the branches ?", "is there the bird ?"], "prompt": "the branches are beside the {}"}, {"index": 48, "image_id": 2407737, "entity": "bird", "caption": "the bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "the {} has thin legs"}, {"index": 49, "image_id": 2407737, "entity": "bird", "caption": "the bird has black eyes", "question": ["is there the bird ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 50, "image_id": 2407316, "entity": "bird", "caption": "the bird has black legs", "question": ["is there the bird ?", "are there black legs ?"], "prompt": "the {} has black legs"}, {"index": 51, "image_id": 2407316, "entity": "bird", "caption": "the bird has three toes", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "the {} has three toes"}, {"index": 52, "image_id": 2406956, "entity": "bird", "caption": "black feathers on top of birds head", "question": ["are there black feathers ?", "is there top ?", "are there birds ?"], "prompt": "black feathers on top of {}s head"}, {"index": 53, "image_id": 2406956, "entity": "bird", "caption": "this is the bird's eye", "question": ["is there the bird's eye ?"], "prompt": "this is the {}'s eye"}, {"index": 54, "image_id": 2406956, "entity": "bird", "caption": "an object is in the bird's beak", "question": ["is there an object ?", "is there the bird's beak ?"], "prompt": "an object is in the {}'s beak"}, {"index": 55, "image_id": 2406956, "entity": "bird", "caption": "the bird's eye is black in color", "question": ["is there the bird's eye ?", "is there color ?"], "prompt": "the {}'s eye is black in color"}, {"index": 56, "image_id": 2404798, "entity": "bird", "caption": "bird has long beak", "question": ["is there bird ?", "is there long beak ?"], "prompt": "{} has long beak"}, {"index": 57, "image_id": 2404798, "entity": "bird", "caption": "bird has pink feathers", "question": ["is there bird ?", "are there pink feathers ?"], "prompt": "{} has pink feathers"}, {"index": 58, "image_id": 2404798, "entity": "bird", "caption": "bird has red eye", "question": ["is there bird ?", "is there red eye ?"], "prompt": "{} has red eye"}, {"index": 59, "image_id": 2404798, "entity": "bird", "caption": "head of bird is featherless", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is featherless"}, {"index": 60, "image_id": 2404798, "entity": "bird", "caption": "bird has green tag on leg", "question": ["is there bird ?", "is there green tag ?", "is there leg ?"], "prompt": "{} has green tag on leg"}, {"index": 61, "image_id": 2404798, "entity": "bird", "caption": "The bird is in the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 62, "image_id": 2404798, "entity": "bird", "caption": "The bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "The {} has a beak"}, {"index": 63, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is open", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 64, "image_id": 2404798, "entity": "bird", "caption": "The bird is wading in the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is wading in the water."}, {"index": 65, "image_id": 2404798, "entity": "bird", "caption": "The bird has a long beak.", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak."}, {"index": 66, "image_id": 2404798, "entity": "bird", "caption": "The bird has light and dark pink feathers.", "question": ["is there the bird ?", "are there light and dark pink feathers ?"], "prompt": "The {} has light and dark pink feathers."}, {"index": 67, "image_id": 2404798, "entity": "bird", "caption": "The bird has a green band around the leg.", "question": ["is there the bird ?", "is there a green band ?", "is there the leg ?"], "prompt": "The {} has a green band around the leg."}, {"index": 68, "image_id": 2404798, "entity": "bird", "caption": "The bird has white neck feathers.", "question": ["is there the bird ?", "are there white neck feathers ?"], "prompt": "The {} has white neck feathers."}, {"index": 69, "image_id": 2404798, "entity": "bird", "caption": "Large rocks are behind the birds.", "question": ["are there large rocks ?", "are there the birds ?"], "prompt": "Large rocks are behind the {}s."}, {"index": 70, "image_id": 2404798, "entity": "bird", "caption": "Water is dripping from the bird's beak.", "question": ["is there water ?", "is there the bird's beak ?"], "prompt": "Water is dripping from the {}'s beak."}, {"index": 71, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is yellow and black.", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is yellow and black."}, {"index": 72, "image_id": 2404673, "entity": "bird", "caption": "the bird is on a long black metal piece", "question": ["is there the bird ?", "is there a long black metal piece ?"], "prompt": "the {} is on a long black metal piece"}, {"index": 73, "image_id": 2404673, "entity": "bird", "caption": "glass sun catchers are hanging in front of the wooden bird", "question": ["are there glass sun catchers ?", "is there front ?", "is there the wooden bird ?"], "prompt": "glass sun catchers are hanging in front of the wooden {}"}, {"index": 74, "image_id": 2404673, "entity": "bird", "caption": "the bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "the {} has a beak"}, {"index": 75, "image_id": 2404673, "entity": "bird", "caption": "the window is reflecting the bird", "question": ["is there the window ?", "is there the bird ?"], "prompt": "the window is reflecting the {}"}, {"index": 76, "image_id": 2404673, "entity": "bird", "caption": "the bird has 1 leg", "question": ["is there the bird ?", "is there 1 leg ?"], "prompt": "the {} has 1 leg"}, {"index": 77, "image_id": 2404673, "entity": "bird", "caption": "the bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "the {} has a long beak"}, {"index": 78, "image_id": 2404673, "entity": "bird", "caption": "the bird's eye is black", "question": ["is there the bird's eye ?"], "prompt": "the {}'s eye is black"}, {"index": 79, "image_id": 2404673, "entity": "bird", "caption": "the bird's leg is long", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is long"}, {"index": 80, "image_id": 2404673, "entity": "bird", "caption": "the bird is sitting on the window", "question": ["is there the bird ?", "is there the window ?"], "prompt": "the {} is sitting on the window"}, {"index": 81, "image_id": 2404673, "entity": "bird", "caption": "The bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak"}, {"index": 82, "image_id": 2403435, "entity": "bird", "caption": "person is feeding bird", "question": ["is there person ?", "is there bird ?"], "prompt": "person is feeding {}"}, {"index": 83, "image_id": 2401304, "entity": "bird", "caption": "a bird is standing on weathered wood", "question": ["is there a bird ?", "is there weathered wood ?"], "prompt": "a {} is standing on weathered wood"}, {"index": 84, "image_id": 2401079, "entity": "bird", "caption": "bird's beak is black and red", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black and red"}, {"index": 85, "image_id": 2401079, "entity": "bird", "caption": "the bird's feet are black", "question": ["are there the bird's feet ?"], "prompt": "the {}'s feet are black"}, {"index": 86, "image_id": 2400985, "entity": "bird", "caption": "the bird has a short black beak", "question": ["is there the bird ?", "is there a short black beak ?"], "prompt": "the {} has a short black beak"}, {"index": 87, "image_id": 2400985, "entity": "bird", "caption": "the bird has sharp claws", "question": ["is there the bird ?", "are there sharp claws ?"], "prompt": "the {} has sharp claws"}, {"index": 88, "image_id": 2400985, "entity": "bird", "caption": "A birds left side wing. ", "question": ["are there a birds ?", "is there side wing ?"], "prompt": "A {}s left side wing. "}, {"index": 89, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds right foot", "question": ["are there the fully shown birds ?"], "prompt": "The fully shown {}s right foot"}, {"index": 90, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds left foot", "question": ["are there the fully shown birds ?", "is there foot ?"], "prompt": "The fully shown {}s left foot"}, {"index": 91, "image_id": 2396390, "entity": "bird", "caption": "bird perched on wooden pole ", "question": ["is there bird ?", "is there wooden pole ?"], "prompt": "{} perched on wooden pole "}, {"index": 92, "image_id": 2396390, "entity": "bird", "caption": "bird angled sideways with feet tightly gripping", "question": ["is there bird ?", "are there feet ?"], "prompt": "{} angled sideways with feet tightly gripping"}, {"index": 93, "image_id": 2396109, "entity": "bird", "caption": "The bird has yellow eyes.", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes."}, {"index": 94, "image_id": 2396109, "entity": "bird", "caption": "The bird stands on the tree.", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "The {} stands on the tree."}, {"index": 95, "image_id": 2396109, "entity": "bird", "caption": "this is a bird", "question": ["is there a bird ?"], "prompt": "this is a {}"}, {"index": 96, "image_id": 2396109, "entity": "bird", "caption": "the bird is on the tree", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "the {} is on the tree"}, {"index": 97, "image_id": 2396109, "entity": "bird", "caption": "the bird has yellow eyes", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "the {} has yellow eyes"}, {"index": 98, "image_id": 2396109, "entity": "bird", "caption": "the bird's legs are long", "question": ["are there the bird's legs ?"], "prompt": "the {}'s legs are long"}, {"index": 99, "image_id": 2396109, "entity": "bird", "caption": "The bird has a pointy beak.", "question": ["is there the bird ?", "is there a pointy beak ?"], "prompt": "The {} has a pointy beak."}, {"index": 100, "image_id": 2396109, "entity": "bird", "caption": "The bird has two legs.", "question": ["is there the bird ?", "are there two legs ?"], "prompt": "The {} has two legs."}, {"index": 101, "image_id": 2396109, "entity": "bird", "caption": "The bird has a yellow eye.", "question": ["is there the bird ?", "is there a yellow eye ?"], "prompt": "The {} has a yellow eye."}, {"index": 102, "image_id": 2396109, "entity": "bird", "caption": "The bird has a wing.", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "The {} has a wing."}, {"index": 103, "image_id": 2395577, "entity": "bird", "caption": "the bird has a wing", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "the {} has a wing"}, {"index": 104, "image_id": 2395577, "entity": "bird", "caption": "the bird has an eye", "question": ["is there the bird ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 105, "image_id": 2394957, "entity": "bird", "caption": "bird stand on rim of bowl", "question": ["is there bird ?", "is there rim ?", "is there bowl ?"], "prompt": "{} stand on rim of bowl"}, {"index": 106, "image_id": 2394957, "entity": "bird", "caption": "bird's head is black and blue in color", "question": ["is there bird's head ?", "is there color ?"], "prompt": "{}'s head is black and blue in color"}, {"index": 107, "image_id": 2394957, "entity": "bird", "caption": "bird's eye is red", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is red"}, {"index": 108, "image_id": 2393198, "entity": "bird", "caption": "the birds long beak", "question": ["are there the birds ?"], "prompt": "the {}s long beak"}, {"index": 109, "image_id": 2393198, "entity": "bird", "caption": "the feathers on the birds chest", "question": ["are there the feathers ?", "are there the birds ?"], "prompt": "the feathers on the {}s chest"}, {"index": 110, "image_id": 2393198, "entity": "bird", "caption": "the log the birds standing on", "question": ["is there the log ?", "are there the birds ?"], "prompt": "the log the {}s standing on"}, {"index": 111, "image_id": 2392907, "entity": "bird", "caption": "bird has yellow legs", "question": ["is there bird ?", "are there yellow legs ?"], "prompt": "{} has yellow legs"}, {"index": 112, "image_id": 2392907, "entity": "bird", "caption": "bird has large toe nails", "question": ["is there bird ?", "are there large toe nails ?"], "prompt": "{} has large toe nails"}, {"index": 113, "image_id": 2392255, "entity": "bird", "caption": "The birds tail feathers.", "question": ["are there the birds tail feathers ?"], "prompt": "The {}s tail feathers."}, {"index": 114, "image_id": 2392255, "entity": "bird", "caption": "The bird is standing on a person's hand.", "question": ["is there the bird ?", "is there a person's hand ?"], "prompt": "The {} is standing on a person's hand."}, {"index": 115, "image_id": 2392255, "entity": "bird", "caption": "The bird has grey feathers.", "question": ["is there the bird ?", "are there grey feathers ?"], "prompt": "The {} has grey feathers."}, {"index": 116, "image_id": 2392255, "entity": "bird", "caption": "The bird has a black beak.", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "The {} has a black beak."}, {"index": 117, "image_id": 2392255, "entity": "bird", "caption": "the bird has a black beak", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "the {} has a black beak"}, {"index": 118, "image_id": 2392255, "entity": "bird", "caption": "the bird has black legs and claws", "question": ["is there the bird ?", "are there black legs ?", "are there claws ?"], "prompt": "the {} has black legs and claws"}, {"index": 119, "image_id": 2392255, "entity": "bird", "caption": "the bird's head is white and gray", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is white and gray"}, {"index": 120, "image_id": 2391103, "entity": "bird", "caption": "Top of bird's head is jet black", "question": ["is there top ?", "is there bird's head ?", "is there jet black ?"], "prompt": "Top of {}'s head is jet black"}, {"index": 121, "image_id": 2390453, "entity": "bird", "caption": "the bird has eye", "question": ["is there the bird ?", "is there eye ?"], "prompt": "the {} has eye"}, {"index": 122, "image_id": 2389247, "entity": "bird", "caption": "a birds head", "question": ["are there a birds ?"], "prompt": "a {}s head"}, {"index": 123, "image_id": 2389247, "entity": "bird", "caption": "The birds beak.", "question": ["are there the birds ?"], "prompt": "The {}s beak."}, {"index": 124, "image_id": 2388774, "entity": "bird", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the {} is in the car "}, {"index": 125, "image_id": 2388774, "entity": "bird", "caption": "The bird has small black feathers ", "question": ["is there the bird ?", "are there small black feathers ?"], "prompt": "The {} has small black feathers "}, {"index": 126, "image_id": 2387336, "entity": "bird", "caption": "part of branch birds are sitting on", "question": ["is there part ?", "are there branch birds ?"], "prompt": "part of branch {}s are sitting on"}, {"index": 127, "image_id": 2385839, "entity": "bird", "caption": "the bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "the {} has black and white feathers"}, {"index": 128, "image_id": 2384739, "entity": "bird", "caption": "bird's legs are curled", "question": ["are there bird's legs ?"], "prompt": "{}'s legs are curled"}, {"index": 129, "image_id": 2384739, "entity": "bird", "caption": "a bird is lying on the pavement", "question": ["is there a bird ?", "is there the pavement ?"], "prompt": "a {} is lying on the pavement"}, {"index": 130, "image_id": 2384739, "entity": "bird", "caption": "the bird's head is upside down", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is upside down"}, {"index": 131, "image_id": 2384739, "entity": "bird", "caption": "the black cat is lying next to the bird", "question": ["is there the black cat ?", "is there the bird ?"], "prompt": "the black cat is lying next to the {}"}, {"index": 132, "image_id": 2384582, "entity": "bird", "caption": "This bird has a red beak.", "question": ["is there this bird ?", "is there a red beak ?"], "prompt": "This {} has a red beak."}, {"index": 133, "image_id": 2384582, "entity": "bird", "caption": "The bird is standing on a sandy beach.", "question": ["is there the bird ?", "is there a sandy beach ?"], "prompt": "The {} is standing on a sandy beach."}, {"index": 134, "image_id": 2384582, "entity": "bird", "caption": "This bird has black eyes.", "question": ["is there this bird ?", "are there black eyes ?"], "prompt": "This {} has black eyes."}, {"index": 135, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white belly.", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "The {} has a white belly."}, {"index": 136, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white body.", "question": ["is there the bird ?", "is there a white body ?"], "prompt": "The {} has a white body."}, {"index": 137, "image_id": 2384582, "entity": "bird", "caption": "The bird has black and white tail feathers.", "question": ["is there the bird ?", "are there black and white tail feathers ?"], "prompt": "The {} has black and white tail feathers."}, {"index": 138, "image_id": 2384582, "entity": "bird", "caption": "The bird has orange legs.", "question": ["is there the bird ?", "are there orange legs ?"], "prompt": "The {} has orange legs."}, {"index": 139, "image_id": 2384582, "entity": "bird", "caption": "The bird has an orange beak.", "question": ["is there the bird ?", "is there an orange beak ?"], "prompt": "The {} has an orange beak."}, {"index": 140, "image_id": 2382811, "entity": "bird", "caption": "The bird is above the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is above the water"}, {"index": 141, "image_id": 2382811, "entity": "bird", "caption": "body of seabird is white", "question": ["is there body ?", "is there seabird ?"], "prompt": "body of sea{} is white"}, {"index": 142, "image_id": 2381448, "entity": "bird", "caption": "birds feet are visible", "question": ["are there birds ?", "are there feet ?"], "prompt": "{}s feet are visible"}, {"index": 143, "image_id": 2381401, "entity": "bird", "caption": "the bird has a slender beak", "question": ["is there the bird ?", "is there a slender beak ?"], "prompt": "the {} has a slender beak"}, {"index": 144, "image_id": 2381401, "entity": "bird", "caption": "the bird has stripes on his back", "question": ["is there the bird ?", "are there stripes ?", "is there his back ?"], "prompt": "the {} has stripes on his back"}, {"index": 145, "image_id": 2381401, "entity": "bird", "caption": "the birds beak is very long", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is very long"}, {"index": 146, "image_id": 2381401, "entity": "bird", "caption": "The bird is standing on the branches of the tree.", "question": ["is there the bird ?", "are there the branches ?", "is there the tree ?"], "prompt": "The {} is standing on the branches of the tree."}, {"index": 147, "image_id": 2381401, "entity": "bird", "caption": "The bird has a long black beak.", "question": ["is there the bird ?", "is there a long black beak ?"], "prompt": "The {} has a long black beak."}, {"index": 148, "image_id": 2381401, "entity": "bird", "caption": "The bird has long red legs.", "question": ["is there the bird ?", "are there long red legs ?"], "prompt": "The {} has long red legs."}, {"index": 149, "image_id": 2381401, "entity": "bird", "caption": "the bird is red and beautiful", "question": ["is there the bird ?"], "prompt": "the {} is red and beautiful"}, {"index": 150, "image_id": 2380312, "entity": "bird", "caption": "the bird has a tail", "question": ["is there the bird ?", "is there a tail ?"], "prompt": "the {} has a tail"}, {"index": 151, "image_id": 2380312, "entity": "bird", "caption": "the bird has a head", "question": ["is there the bird ?", "is there a head ?"], "prompt": "the {} has a head"}, {"index": 152, "image_id": 2380026, "entity": "bird", "caption": "the bird has a blue head.", "question": ["is there the bird ?", "is there a blue head ?"], "prompt": "the {} has a blue head."}, {"index": 153, "image_id": 2380026, "entity": "bird", "caption": "The bird has yellow and orange on it's chest.", "question": ["is there the bird ?", "is there it's chest ?"], "prompt": "The {} has yellow and orange on it's chest."}, {"index": 154, "image_id": 2380026, "entity": "bird", "caption": "The bird has three toes.", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "The {} has three toes."}, {"index": 155, "image_id": 2380026, "entity": "bird", "caption": "bird's wings are green", "question": ["are there bird's wings ?"], "prompt": "{}'s wings are green"}, {"index": 156, "image_id": 2380026, "entity": "bird", "caption": "bird has blue head", "question": ["is there bird ?", "is there blue head ?"], "prompt": "{} has blue head"}, {"index": 157, "image_id": 2380026, "entity": "bird", "caption": "bird has orange beak", "question": ["is there bird ?", "is there orange beak ?"], "prompt": "{} has orange beak"}, {"index": 158, "image_id": 2380026, "entity": "bird", "caption": "bird has green body", "question": ["is there bird ?", "is there green body ?"], "prompt": "{} has green body"}, {"index": 159, "image_id": 2380026, "entity": "bird", "caption": "bird has brown talons", "question": ["is there bird ?", "are there brown talons ?"], "prompt": "{} has brown talons"}, {"index": 160, "image_id": 2378627, "entity": "bird", "caption": "A birds beak", "question": ["are there a birds ?"], "prompt": "A {}s beak"}, {"index": 161, "image_id": 2378627, "entity": "bird", "caption": "A birds wing", "question": ["are there a birds ?"], "prompt": "A {}s wing"}, {"index": 162, "image_id": 2377993, "entity": "bird", "caption": "The birds claws are black.", "question": ["are there the birds ?", "are there claws ?"], "prompt": "The {}s claws are black."}, {"index": 163, "image_id": 2377993, "entity": "bird", "caption": "The birds eye is black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is black."}, {"index": 164, "image_id": 2377993, "entity": "bird", "caption": "The birds beak is black.", "question": ["are there the birds beak ?"], "prompt": "The {}s beak is black."}, {"index": 165, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a bird", "question": ["is there a bird ?"], "prompt": "Pink felt on a {}"}, {"index": 166, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a white bird", "question": ["is there a white bird ?"], "prompt": "Pink felt on a white {}"}, {"index": 167, "image_id": 2376795, "entity": "bird", "caption": "A bird has pink felt on it", "question": ["is there a bird ?"], "prompt": "A {} has pink felt on it"}, {"index": 168, "image_id": 2376795, "entity": "bird", "caption": "bird head turned right", "question": ["is there bird head ?"], "prompt": "{} head turned right"}, {"index": 169, "image_id": 2376340, "entity": "bird", "caption": "the birds legs ", "question": ["are there the birds ?"], "prompt": "the {}s legs "}, {"index": 170, "image_id": 2376340, "entity": "bird", "caption": "The bird has long legs. ", "question": ["is there the bird ?", "are there long legs ?"], "prompt": "The {} has long legs. "}, {"index": 171, "image_id": 2376224, "entity": "bird", "caption": "The bird's eyes are open", "question": ["are there the bird's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 172, "image_id": 2376224, "entity": "bird", "caption": "The bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "The {} has thin legs"}, {"index": 173, "image_id": 2375434, "entity": "bird", "caption": "The bird is holding a stick in its mouth", "question": ["is there the bird ?", "is there a stick ?", "is there its mouth ?"], "prompt": "The {} is holding a stick in its mouth"}, {"index": 174, "image_id": 2375434, "entity": "bird", "caption": "birds flying in the sky", "question": ["are there birds ?", "is there the sky ?"], "prompt": "{}s flying in the sky"}, {"index": 175, "image_id": 2375434, "entity": "bird", "caption": "birds flapping their wings", "question": ["are there birds ?", "are there their wings ?"], "prompt": "{}s flapping their wings"}, {"index": 176, "image_id": 2375434, "entity": "bird", "caption": "four birds flapping their wings", "question": ["are there four birds ?", "are there their wings ?"], "prompt": "four {}s flapping their wings"}, {"index": 177, "image_id": 2375434, "entity": "bird", "caption": "a bird with its wings spread to full length", "question": ["is there a bird ?", "are there its wings ?", "is there full length ?"], "prompt": "a {} with its wings spread to full length"}, {"index": 178, "image_id": 2372589, "entity": "bird", "caption": "belly of the bird is white", "question": ["is there belly ?", "is there the bird ?"], "prompt": "belly of the {} is white"}, {"index": 179, "image_id": 2372589, "entity": "bird", "caption": "bird's feet are black", "question": ["are there bird's feet ?"], "prompt": "{}'s feet are black"}, {"index": 180, "image_id": 2372589, "entity": "bird", "caption": "bird's beak is black", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black"}, {"index": 181, "image_id": 2372267, "entity": "bird", "caption": "bird has green face", "question": ["is there bird ?", "is there green face ?"], "prompt": "{} has green face"}, {"index": 182, "image_id": 2372267, "entity": "bird", "caption": "bird has white beak", "question": ["is there bird ?", "is there white beak ?"], "prompt": "{} has white beak"}, {"index": 183, "image_id": 2371979, "entity": "bird", "caption": "bird's head is black", "question": ["is there bird's head ?"], "prompt": "{}'s head is black"}, {"index": 184, "image_id": 2371979, "entity": "bird", "caption": "bird's wing is black and red", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is black and red"}, {"index": 185, "image_id": 2371266, "entity": "bird", "caption": "birds beak that is two toned", "question": ["are there birds ?"], "prompt": "{}s beak that is two toned"}, {"index": 186, "image_id": 2370174, "entity": "bird", "caption": "water is behind the bird", "question": ["is there water ?", "is there the bird ?"], "prompt": "water is behind the {}"}, {"index": 187, "image_id": 2370174, "entity": "bird", "caption": "The bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "The {} has black and white feathers"}, {"index": 188, "image_id": 2366794, "entity": "bird", "caption": "the bird's leg is skinny", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is skinny"}, {"index": 189, "image_id": 2366794, "entity": "bird", "caption": "the bird's tail is black ", "question": ["is there the bird's tail ?"], "prompt": "the {}'s tail is black "}, {"index": 190, "image_id": 2366794, "entity": "bird", "caption": "teh bird's beak is smll", "question": ["is there teh bird's beak ?", "is there smll ?"], "prompt": "teh {}'s beak is smll"}, {"index": 191, "image_id": 2366794, "entity": "bird", "caption": "the bird is on the beach ", "question": ["is there the bird ?", "is there the beach ?"], "prompt": "the {} is on the beach "}, {"index": 192, "image_id": 2366548, "entity": "bird", "caption": "the birds have long legs", "question": ["are there the birds ?", "are there long legs ?"], "prompt": "the {}s have long legs"}, {"index": 193, "image_id": 2366548, "entity": "bird", "caption": "tall grass is behind the bird", "question": ["is there tall grass ?", "is there the bird ?"], "prompt": "tall grass is behind the {}"}, {"index": 194, "image_id": 2366548, "entity": "bird", "caption": "the bird closest to us has a few black feathers", "question": ["is there the bird ?", "are there a few black feathers ?"], "prompt": "the {} closest to us has a few black feathers"}, {"index": 195, "image_id": 2365606, "entity": "bird", "caption": "This is a bird", "question": ["is there a bird ?"], "prompt": "This is a {}"}, {"index": 196, "image_id": 2364373, "entity": "bird", "caption": "The bird has brown legs.", "question": ["is there the bird ?", "are there brown legs ?"], "prompt": "The {} has brown legs."}, {"index": 197, "image_id": 2363673, "entity": "bird", "caption": "A white and grey bird with its head turned to the left. ", "question": ["is there a white and grey bird ?", "is there its head ?", "is there the left ?"], "prompt": "A white and grey {} with its head turned to the left. "}, {"index": 198, "image_id": 2362480, "entity": "bird", "caption": "this bird has skinny legs", "question": ["is there this bird ?", "are there skinny legs ?"], "prompt": "this {} has skinny legs"}, {"index": 199, "image_id": 2362036, "entity": "bird", "caption": "it is the eye of the bird", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "it is the eye of the {}"}, {"index": 200, "image_id": 2362036, "entity": "bird", "caption": "the birds left side of the wing", "question": ["are there the birds ?", "is there side ?", "is there the wing ?"], "prompt": "the {}s left side of the wing"}, {"index": 201, "image_id": 2362031, "entity": "bird", "caption": "The bird's feather are shiny.", "question": ["is there the bird's feather ?"], "prompt": "The {}'s feather are shiny."}, {"index": 202, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are glossy.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are glossy."}, {"index": 203, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are black.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are black."}, {"index": 204, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is black.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is black."}, {"index": 205, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is open.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is open."}, {"index": 206, "image_id": 2362031, "entity": "bird", "caption": "The bird's talons are gripping a rock.", "question": ["are there the bird's talons ?", "is there a rock ?"], "prompt": "The {}'s talons are gripping a rock."}, {"index": 207, "image_id": 2361417, "entity": "bird", "caption": "Blue bird's feet wrapped about branch", "question": ["are there blue bird's feet ?", "is there branch ?"], "prompt": "Blue {}'s feet wrapped about branch"}, {"index": 208, "image_id": 2360048, "entity": "bird", "caption": "The bird is standing on a multi level white surface.", "question": ["is there the bird ?", "is there a multi level white surface ?"], "prompt": "The {} is standing on a multi level white surface."}, {"index": 209, "image_id": 2359558, "entity": "bird", "caption": "the birds feet ", "question": ["are there the birds ?"], "prompt": "the {}s feet "}, {"index": 210, "image_id": 2359558, "entity": "bird", "caption": "birds nail ", "question": ["are there birds ?"], "prompt": "{}s nail "}, {"index": 211, "image_id": 2359558, "entity": "bird", "caption": "the birds eye ", "question": ["are there the birds ?"], "prompt": "the {}s eye "}, {"index": 212, "image_id": 2359558, "entity": "bird", "caption": "the birds tail ", "question": ["are there the birds ?"], "prompt": "the {}s tail "}, {"index": 213, "image_id": 2359558, "entity": "bird", "caption": "the birds beak", "question": ["are there the birds ?"], "prompt": "the {}s beak"}, {"index": 214, "image_id": 2359558, "entity": "bird", "caption": "black bird beak", "question": ["is there black bird beak ?"], "prompt": "black {} beak"}, {"index": 215, "image_id": 2359461, "entity": "bird", "caption": "Caterpillar in the birds beak.", "question": ["are there the birds ?"], "prompt": "Caterpillar in the {}s beak."}, {"index": 216, "image_id": 2359036, "entity": "bird", "caption": "Back of bird's neck is green.", "question": ["is there bird's neck ?"], "prompt": "Back of {}'s neck is green."}, {"index": 217, "image_id": 2359036, "entity": "bird", "caption": "yellow and orange feathers for birds chest", "question": ["are there yellow and orange feathers ?", "are there birds ?"], "prompt": "yellow and orange feathers for {}s chest"}, {"index": 218, "image_id": 2359036, "entity": "bird", "caption": "blue with black accent feathers on birds head", "question": ["are there black accent feathers ?", "are there birds ?"], "prompt": "blue with black accent feathers on {}s head"}, {"index": 219, "image_id": 2358738, "entity": "bird", "caption": "the bird has a brown spot on its head", "question": ["is there the bird ?", "is there a brown spot ?", "is there its head ?"], "prompt": "the {} has a brown spot on its head"}, {"index": 220, "image_id": 2358738, "entity": "bird", "caption": "the birds wings are brown with a few white spots", "question": ["are there the birds wings ?", "are there a few white spots ?"], "prompt": "the {}s wings are brown with a few white spots"}, {"index": 221, "image_id": 2358256, "entity": "bird", "caption": "bird with wings spread", "question": ["is there bird ?", "are there wings ?"], "prompt": "{} with wings spread"}, {"index": 222, "image_id": 2358256, "entity": "bird", "caption": "nice bird with wings spread", "question": ["is there nice bird ?", "are there wings ?"], "prompt": "nice {} with wings spread"}, {"index": 223, "image_id": 2358256, "entity": "bird", "caption": "healthy bird with wings spread", "question": ["is there healthy bird ?", "are there wings ?"], "prompt": "healthy {} with wings spread"}, {"index": 224, "image_id": 2358256, "entity": "bird", "caption": "beautiful bird with wings spread", "question": ["is there beautiful bird ?", "are there wings ?"], "prompt": "beautiful {} with wings spread"}, {"index": 225, "image_id": 2358256, "entity": "bird", "caption": "bird with pretty wings spread", "question": ["is there bird ?", "are there pretty wings ?"], "prompt": "{} with pretty wings spread"}, {"index": 226, "image_id": 2358256, "entity": "bird", "caption": "bird with colorful wings spread", "question": ["is there bird ?", "are there colorful wings ?"], "prompt": "{} with colorful wings spread"}, {"index": 227, "image_id": 2357787, "entity": "bird", "caption": "The bird has gray feathers", "question": ["is there the bird ?", "are there gray feathers ?"], "prompt": "The {} has gray feathers"}, {"index": 228, "image_id": 2356534, "entity": "bird", "caption": "dead insect in birds beak", "question": ["is there dead insect ?", "are there birds ?"], "prompt": "dead insect in {}s beak"}, {"index": 229, "image_id": 2356534, "entity": "bird", "caption": "The bird has brown feathers", "question": ["is there the bird ?", "are there brown feathers ?"], "prompt": "The {} has brown feathers"}, {"index": 230, "image_id": 2356534, "entity": "bird", "caption": "The bird is on the ground", "question": ["is there the bird ?", "is there the ground ?"], "prompt": "The {} is on the ground"}, {"index": 231, "image_id": 2355976, "entity": "bird", "caption": "A bird is next to a zebra", "question": ["is there a bird ?", "is there a zebra ?"], "prompt": "A {} is next to a zebra"}, {"index": 232, "image_id": 2355976, "entity": "bird", "caption": "The bird has black feathers", "question": ["is there the bird ?", "are there black feathers ?"], "prompt": "The {} has black feathers"}, {"index": 233, "image_id": 2355730, "entity": "bird", "caption": "bird has grey feathers", "question": ["is there bird ?", "are there grey feathers ?"], "prompt": "{} has grey feathers"}, {"index": 234, "image_id": 2355730, "entity": "bird", "caption": "The bird has claws", "question": ["is there the bird ?", "are there claws ?"], "prompt": "The {} has claws"}, {"index": 235, "image_id": 2355730, "entity": "bird", "caption": "Grey beak of a bird. ", "question": ["is there grey beak ?", "is there a bird ?"], "prompt": "Grey beak of a {}. "}, {"index": 236, "image_id": 2354530, "entity": "bird", "caption": "cement area where a bird stands", "question": ["is there cement area ?", "is there a bird ?"], "prompt": "cement area where a {} stands"}, {"index": 237, "image_id": 2354530, "entity": "bird", "caption": "bird has black streak on head", "question": ["is there bird ?", "is there black streak ?", "is there head ?"], "prompt": "{} has black streak on head"}, {"index": 238, "image_id": 2354530, "entity": "bird", "caption": "bird has yellow eye", "question": ["is there bird ?", "is there yellow eye ?"], "prompt": "{} has yellow eye"}, {"index": 239, "image_id": 2353113, "entity": "bird", "caption": "bird has brown beak", "question": ["is there bird ?", "is there brown beak ?"], "prompt": "{} has brown beak"}, {"index": 240, "image_id": 2353113, "entity": "bird", "caption": "bird is behind fence", "question": ["is there bird ?", "is there fence ?"], "prompt": "{} is behind fence"}, {"index": 241, "image_id": 2353113, "entity": "bird", "caption": "bird is near water", "question": ["is there bird ?", "is there water ?"], "prompt": "{} is near water"}, {"index": 242, "image_id": 2352371, "entity": "bird", "caption": "wood platform for bird to stand on", "question": ["is there wood platform ?", "is there bird ?"], "prompt": "wood platform for {} to stand on"}, {"index": 243, "image_id": 2349694, "entity": "bird", "caption": "tail of bird is white", "question": ["is there tail ?", "is there bird ?"], "prompt": "tail of {} is white"}, {"index": 244, "image_id": 2349587, "entity": "bird", "caption": "The bird is eating the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is eating the branch."}, {"index": 245, "image_id": 2349587, "entity": "bird", "caption": "The bird is holding the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is holding the branch."}, {"index": 246, "image_id": 2349248, "entity": "bird", "caption": "the food the bird is eating", "question": ["is there the food ?", "is there the bird ?"], "prompt": "the food the {} is eating"}, {"index": 247, "image_id": 2349109, "entity": "bird", "caption": "the branch the bird is biting", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "the branch the {} is biting"}, {"index": 248, "image_id": 2348860, "entity": "bird", "caption": "A bird has an orange beak.", "question": ["is there a bird ?", "is there an orange beak ?"], "prompt": "A {} has an orange beak."}, {"index": 249, "image_id": 2348860, "entity": "bird", "caption": "A birds claw is grasping a potato.", "question": ["is there a birds ?", "is there a potato ?"], "prompt": "A {}s claw is grasping a potato."}, {"index": 250, "image_id": 2348860, "entity": "bird", "caption": "A bird is eating a potato.", "question": ["is there a bird ?", "is there a potato ?"], "prompt": "A {} is eating a potato."}, {"index": 251, "image_id": 2348860, "entity": "bird", "caption": "A bird is on a tree branch.", "question": ["is there a bird ?", "is there a tree branch ?"], "prompt": "A {} is on a tree branch."}, {"index": 252, "image_id": 2348860, "entity": "bird", "caption": "A tropical bird is on a tree branch.", "question": ["is there a tropical bird ?", "is there a tree branch ?"], "prompt": "A tropical {} is on a tree branch."}, {"index": 253, "image_id": 2348860, "entity": "bird", "caption": "bird's wing is green", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is green"}, {"index": 254, "image_id": 2348860, "entity": "bird", "caption": "The peice of food in the birds mouth", "question": ["is there the peice ?", "is there food ?", "are there the birds ?"], "prompt": "The peice of food in the {}s mouth"}, {"index": 255, "image_id": 2348860, "entity": "bird", "caption": "The birds red orange eye", "question": ["are there the birds ?"], "prompt": "The {}s red orange eye"}, {"index": 256, "image_id": 2348860, "entity": "bird", "caption": "The birds blue face", "question": ["are there the birds ?"], "prompt": "The {}s blue face"}, {"index": 257, "image_id": 2348860, "entity": "bird", "caption": "The birds foot on the fruit", "question": ["are there the birds ?", "is there the fruit ?"], "prompt": "The {}s foot on the fruit"}, {"index": 258, "image_id": 2348860, "entity": "bird", "caption": "The piece of fruit the bird is eating", "question": ["is there the piece ?", "is there fruit ?", "is there the bird ?"], "prompt": "The piece of fruit the {} is eating"}, {"index": 259, "image_id": 2348860, "entity": "bird", "caption": "The branch the bird is sitting on", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "The branch the {} is sitting on"}, {"index": 260, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw", "question": ["is there a bird ?", "is there a claw ?"], "prompt": "a {} has a claw"}, {"index": 261, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw holding onto a branch", "question": ["is there a bird ?", "is there a claw ?", "is there a branch ?"], "prompt": "a {} has a claw holding onto a branch"}, {"index": 262, "image_id": 2348795, "entity": "bird", "caption": "Black bird beak white around face. ", "question": ["is there black bird beak ?", "is there face ?"], "prompt": "Black {} beak white around face. "}, {"index": 263, "image_id": 2348671, "entity": "bird", "caption": "that is the leg of the bird", "question": ["is there the leg ?", "is there the bird ?"], "prompt": "that is the leg of the {}"}, {"index": 264, "image_id": 2348089, "entity": "bird", "caption": "a wood platform the bird is on ", "question": ["is there a wood platform ?", "is there the bird ?"], "prompt": "a wood platform the {} is on "}, {"index": 265, "image_id": 2347493, "entity": "bird", "caption": "bird with its mouth open", "question": ["is there bird ?", "is there its mouth ?"], "prompt": "{} with its mouth open"}, {"index": 266, "image_id": 2347493, "entity": "bird", "caption": "The bird is on the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 267, "image_id": 2347493, "entity": "bird", "caption": "The birds beak has a sharp point.", "question": ["are there the birds beak ?", "is there a sharp point ?"], "prompt": "The {}s beak has a sharp point."}, {"index": 268, "image_id": 2347493, "entity": "bird", "caption": "The birds feet are orange.", "question": ["are there the birds ?", "are there feet ?"], "prompt": "The {}s feet are orange."}, {"index": 269, "image_id": 2345609, "entity": "bird", "caption": "the bird has very long legs", "question": ["is there the bird ?", "are there very long legs ?"], "prompt": "the {} has very long legs"}, {"index": 270, "image_id": 2345609, "entity": "bird", "caption": "the bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "the {} has a yellow beak"}, {"index": 271, "image_id": 2344912, "entity": "bird", "caption": "grass that small bird is standing in", "question": ["is there grass ?", "is there small bird ?"], "prompt": "grass that small {} is standing in"}, {"index": 272, "image_id": 2344341, "entity": "bird", "caption": "Feathers of the bird laid back", "question": ["are there feathers ?", "is there the bird ?"], "prompt": "Feathers of the {} laid back"}, {"index": 273, "image_id": 2344328, "entity": "bird", "caption": "A birds head and neck.", "question": ["are there a birds ?", "is there neck ?"], "prompt": "A {}s head and neck."}, {"index": 274, "image_id": 2344328, "entity": "bird", "caption": "bird has grey beak", "question": ["is there bird ?", "is there grey beak ?"], "prompt": "{} has grey beak"}, {"index": 275, "image_id": 2344328, "entity": "bird", "caption": "bird has red eyes", "question": ["is there bird ?", "are there red eyes ?"], "prompt": "{} has red eyes"}, {"index": 276, "image_id": 2344328, "entity": "bird", "caption": "bird has black head", "question": ["is there bird ?", "is there black head ?"], "prompt": "{} has black head"}, {"index": 277, "image_id": 2344328, "entity": "bird", "caption": "bird has blue neck", "question": ["is there bird ?", "is there blue neck ?"], "prompt": "{} has blue neck"}, {"index": 278, "image_id": 2341438, "entity": "bird", "caption": "head of bird is gray", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is gray"}, {"index": 279, "image_id": 2341438, "entity": "bird", "caption": "eye of bird is red", "question": ["is there eye ?", "is there bird ?"], "prompt": "eye of {} is red"}, {"index": 280, "image_id": 2341058, "entity": "bird", "caption": "two birds standing on branches", "question": ["are there two birds ?", "are there branches ?"], "prompt": "two {}s standing on branches"}, {"index": 281, "image_id": 2339258, "entity": "bird", "caption": "the all black beak on the birds face", "question": ["is there the all black beak ?", "are there the birds ?"], "prompt": "the all black beak on the {}s face"}, {"index": 282, "image_id": 2339258, "entity": "bird", "caption": "the claw on the birds foot", "question": ["is there the claw ?", "are there the birds ?"], "prompt": "the claw on the {}s foot"}, {"index": 283, "image_id": 2338848, "entity": "bird", "caption": "the bird is eating the fruit", "question": ["is there the bird ?", "is there the fruit ?"], "prompt": "the {} is eating the fruit"}, {"index": 284, "image_id": 2338848, "entity": "bird", "caption": "A bird is eating some fruit", "question": ["is there a bird ?", "is there some fruit ?"], "prompt": "A {} is eating some fruit"}, {"index": 285, "image_id": 2338848, "entity": "bird", "caption": "A bird is getting some food", "question": ["is there a bird ?", "is there some food ?"], "prompt": "A {} is getting some food"}, {"index": 286, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is red and black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is red and black."}, {"index": 287, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is round.", "question": ["are there the birds ?"], "prompt": "The {}s eye is round."}, {"index": 288, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is small.", "question": ["are there the birds ?"], "prompt": "The {}s eye is small."}, {"index": 289, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are blue.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are blue."}, {"index": 290, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are red.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are red."}, {"index": 291, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are green.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are green."}, {"index": 292, "image_id": 2338848, "entity": "bird", "caption": "the birds beak is orange", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is orange"}, {"index": 293, "image_id": 2338638, "entity": "bird", "caption": "Blue and black bird standing on wood.", "question": ["is there blue and black bird ?", "is there wood ?"], "prompt": "Blue and black {} standing on wood."}, {"index": 294, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s tail", "question": ["is there tail ?"], "prompt": "this is a {}''s tail"}, {"index": 295, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s beak", "question": ["is there a bird''s beak ?"], "prompt": "this is a {}''s beak"}, {"index": 296, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s head", "question": ["is there a bird''s head ?"], "prompt": "this is a {}''s head"}, {"index": 297, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s wing", "question": ["is there wing ?"], "prompt": "this is a {}''s wing"}, {"index": 298, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s eye", "question": ["is there eye ?"], "prompt": "this is a {}''s eye"}, {"index": 299, "image_id": 2338318, "entity": "bird", "caption": "bird is on brown branch", "question": ["is there bird ?", "is there brown branch ?"], "prompt": "{} is on brown branch"}, {"index": 300, "image_id": 2336219, "entity": "bird", "caption": "bird has white eyes", "question": ["is there bird ?", "are there white eyes ?"], "prompt": "{} has white eyes"}, {"index": 301, "image_id": 2335105, "entity": "bird", "caption": "the ear lobes on the bird are red", "question": ["are there the ear lobes ?", "is there the bird ?"], "prompt": "the ear lobes on the {} are red"}, {"index": 302, "image_id": 2332681, "entity": "bird", "caption": "the bird has tiny ears", "question": ["is there the bird ?", "are there tiny ears ?"], "prompt": "the {} has tiny ears"}, {"index": 303, "image_id": 2331468, "entity": "bird", "caption": "the bird is in the water ", "question": ["is there the bird ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 304, "image_id": 2331215, "entity": "bird", "caption": "the birds wings are up", "question": ["are there the birds ?", "are there wings ?"], "prompt": "the {}s wings are up"}, {"index": 305, "image_id": 2331215, "entity": "bird", "caption": "A bird is afraid of the elephant", "question": ["is there a bird ?", "is there the elephant ?"], "prompt": "A {} is afraid of the elephant"}, {"index": 306, "image_id": 2331215, "entity": "bird", "caption": "A bird has spread out its wings", "question": ["is there a bird ?", "are there its wings ?"], "prompt": "A {} has spread out its wings"}, {"index": 307, "image_id": 2331215, "entity": "bird", "caption": "The bird has a long wingspan", "question": ["is there the bird ?", "is there a long wingspan ?"], "prompt": "The {} has a long wingspan"}, {"index": 308, "image_id": 2330695, "entity": "bird", "caption": "bird has a black beak ", "question": ["is there bird ?", "is there a black beak ?"], "prompt": "{} has a black beak "}, {"index": 309, "image_id": 2330695, "entity": "bird", "caption": "bird has gray feet", "question": ["is there bird ?", "are there gray feet ?"], "prompt": "{} has gray feet"}, {"index": 310, "image_id": 2330307, "entity": "bird", "caption": "bird has beady eye", "question": ["is there bird ?", "is there beady eye ?"], "prompt": "{} has beady eye"}, {"index": 311, "image_id": 2330307, "entity": "bird", "caption": "bird has black beak", "question": ["is there bird ?", "is there black beak ?"], "prompt": "{} has black beak"}, {"index": 312, "image_id": 2330307, "entity": "bird", "caption": "bird has 2 feet", "question": ["is there bird ?", "are there 2 feet ?"], "prompt": "{} has 2 feet"}, {"index": 313, "image_id": 2330080, "entity": "bird", "caption": "The bird is looking a yard gnome", "question": ["is there the bird ?", "is there a yard gnome ?"], "prompt": "The {} is looking a yard gnome"}, {"index": 314, "image_id": 2330080, "entity": "bird", "caption": "The bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "The {} has a yellow beak"}, {"index": 315, "image_id": 2328246, "entity": "bird", "caption": "tree leaves behind the bird", "question": ["is there tree ?", "is there the bird ?"], "prompt": "tree leaves behind the {}"}, {"index": 316, "image_id": 2326461, "entity": "bird", "caption": "white feathers on a birds head", "question": ["are there white feathers ?", "are there a birds ?"], "prompt": "white feathers on a {}s head"}, {"index": 317, "image_id": 2326461, "entity": "bird", "caption": "The bird is on a handle", "question": ["is there the bird ?", "is there a handle ?"], "prompt": "The {} is on a handle"}, {"index": 318, "image_id": 2326461, "entity": "bird", "caption": "Small black bird beak", "question": ["is there small black bird beak ?"], "prompt": "Small black {} beak"}, {"index": 319, "image_id": 2325550, "entity": "bird", "caption": "the bird is on a pole", "question": ["is there the bird ?", "is there a pole ?"], "prompt": "the {} is on a pole"}, {"index": 320, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow feathers", "question": ["is there the bird ?", "are there yellow feathers ?"], "prompt": "the {} has yellow feathers"}, {"index": 321, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow spiked hair", "question": ["is there the bird ?", "is there yellow spiked hair ?"], "prompt": "the {} has yellow spiked hair"}, {"index": 322, "image_id": 2325324, "entity": "bird", "caption": "bird has green breast", "question": ["is there bird ?", "is there green breast ?"], "prompt": "{} has green breast"}, {"index": 323, "image_id": 2325324, "entity": "bird", "caption": "bird has green tail", "question": ["is there bird ?", "is there green tail ?"], "prompt": "{} has green tail"}, {"index": 324, "image_id": 2325324, "entity": "bird", "caption": "bird has green head", "question": ["is there bird ?", "is there green head ?"], "prompt": "{} has green head"}, {"index": 325, "image_id": 2325324, "entity": "bird", "caption": "bird has orange talons", "question": ["is there bird ?", "are there orange talons ?"], "prompt": "{} has orange talons"}, {"index": 326, "image_id": 2325324, "entity": "bird", "caption": "bird has grey claws", "question": ["is there bird ?", "are there grey claws ?"], "prompt": "{} has grey claws"}, {"index": 327, "image_id": 2325324, "entity": "bird", "caption": "bird stands on banana", "question": ["is there bird ?", "is there banana ?"], "prompt": "{} stands on banana"}, {"index": 328, "image_id": 2325324, "entity": "bird", "caption": "Green bird is standing on banana.", "question": ["is there green bird ?", "is there banana ?"], "prompt": "Green {} is standing on banana."}, {"index": 329, "image_id": 2325324, "entity": "bird", "caption": "Light is shining on bird.", "question": ["is there light ?", "is there bird ?"], "prompt": "Light is shining on {}."}, {"index": 330, "image_id": 2325324, "entity": "bird", "caption": "bird has orange feet", "question": ["is there bird ?", "are there orange feet ?"], "prompt": "{} has orange feet"}, {"index": 331, "image_id": 2325324, "entity": "bird", "caption": "bird has black nails", "question": ["is there bird ?", "are there black nails ?"], "prompt": "{} has black nails"}, {"index": 332, "image_id": 2325324, "entity": "bird", "caption": "bird's eye is purple blue and black", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is purple blue and black"}, {"index": 333, "image_id": 2323975, "entity": "bird", "caption": "Orange beak on a brown and white bird.", "question": ["is there orange beak ?", "is there a brown and white bird ?"], "prompt": "Orange beak on a brown and white {}."}, {"index": 334, "image_id": 2323560, "entity": "bird", "caption": "bird perched on a scarred limb", "question": ["is there bird ?", "is there a scarred limb ?"], "prompt": "{} perched on a scarred limb"}, {"index": 335, "image_id": 2322830, "entity": "bird", "caption": "bird is drinking water from wood bucket", "question": ["is there bird ?", "is there water ?", "is there wood bucket ?"], "prompt": "{} is drinking water from wood bucket"}, {"index": 336, "image_id": 2322624, "entity": "bird", "caption": "The birds beak has a point.", "question": ["are there the birds beak ?", "is there a point ?"], "prompt": "The {}s beak has a point."}, {"index": 337, "image_id": 2322624, "entity": "bird", "caption": "The birds chest is white.", "question": ["are there the birds ?"], "prompt": "The {}s chest is white."}, {"index": 338, "image_id": 2320805, "entity": "bird", "caption": "orange bird with black and white wings perched", "question": ["are there black and white wings ?"], "prompt": "orange {} with black and white wings perched"}, {"index": 339, "image_id": 2320805, "entity": "bird", "caption": "bird's beak contains blood and other animal remains", "question": ["is there bird's beak ?", "is there blood ?", "is there other animal ?"], "prompt": "{}'s beak contains blood and other animal remains"}, {"index": 340, "image_id": 2320805, "entity": "bird", "caption": "bird pereched of grey rock", "question": ["is there grey rock ?"], "prompt": "{} pereched of grey rock"}, {"index": 341, "image_id": 2320805, "entity": "bird", "caption": "a large tree branch with a bird nested on it", "question": ["is there a large tree branch ?", "is there a bird ?"], "prompt": "a large tree branch with a {} nested on it"}, {"index": 342, "image_id": 2320805, "entity": "bird", "caption": "a tree limb with a bird rested on it", "question": ["is there a tree limb ?", "is there a bird ?"], "prompt": "a tree limb with a {} rested on it"}, {"index": 343, "image_id": 2320805, "entity": "bird", "caption": "bird has grey head", "question": ["is there bird ?", "is there grey head ?"], "prompt": "{} has grey head"}, {"index": 344, "image_id": 2318439, "entity": "bird", "caption": "Baby bird is standing in ground.", "question": ["is there baby bird ?", "is there ground ?"], "prompt": "Baby {} is standing in ground."}, {"index": 345, "image_id": 2318290, "entity": "bird", "caption": "section of brown tipped bird wing feather", "question": ["is there section ?", "is there bird wing feather ?"], "prompt": "section of brown tipped {} wing feather"}, {"index": 346, "image_id": 2318104, "entity": "bird", "caption": "a bird that is standing outside", "question": ["is there a bird ?"], "prompt": "a {} that is standing outside"}, {"index": 347, "image_id": 2317875, "entity": "bird", "caption": "the bird has long gray legs", "question": ["is there the bird ?", "are there long gray legs ?"], "prompt": "the {} has long gray legs"}, {"index": 348, "image_id": 2317875, "entity": "bird", "caption": "the bird has a small beady eye", "question": ["is there the bird ?", "is there a small beady eye ?"], "prompt": "the {} has a small beady eye"}, {"index": 349, "image_id": 2317875, "entity": "bird", "caption": "the bird has a big beak", "question": ["is there the bird ?", "is there a big beak ?"], "prompt": "the {} has a big beak"}, {"index": 350, "image_id": 2317875, "entity": "bird", "caption": "the bird has tons of feathers", "question": ["is there the bird ?", "are there tons ?", "are there feathers ?"], "prompt": "the {} has tons of feathers"}, {"index": 351, "image_id": 2317875, "entity": "bird", "caption": "the bird has its mouth open", "question": ["is there the bird ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 352, "image_id": 2317875, "entity": "bird", "caption": "the bird is standing in grass", "question": ["is there the bird ?", "is there grass ?"], "prompt": "the {} is standing in grass"}, {"index": 353, "image_id": 2317875, "entity": "bird", "caption": "the bird is near a pond", "question": ["is there the bird ?", "is there a pond ?"], "prompt": "the {} is near a pond"}, {"index": 354, "image_id": 2317249, "entity": "bird", "caption": "The birds are out in the forest", "question": ["are there the birds ?", "is there the forest ?"], "prompt": "The {}s are out in the forest"}, {"index": 355, "image_id": 2317249, "entity": "bird", "caption": "The birds are watching for predators", "question": ["are there the birds ?", "are there predators ?"], "prompt": "The {}s are watching for predators"}, {"index": 356, "image_id": 2316597, "entity": "bird", "caption": "the pool of bird feeding ", "question": ["is there the pool ?", "is there bird feeding ?"], "prompt": "the pool of {} feeding "}, {"index": 357, "image_id": 2316597, "entity": "bird", "caption": "a bird iwth a beak", "question": ["is there a bird ?", "is there a beak ?"], "prompt": "a {} iwth a beak"}, {"index": 358, "image_id": 2316285, "entity": "bird", "caption": "bird perched on a branch", "question": ["is there bird ?", "is there a branch ?"], "prompt": "{} perched on a branch"}, {"index": 359, "image_id": 2414525, "entity": "bird", "caption": "man giving bird wine", "question": ["is there man ?", "is there bird wine ?"], "prompt": "man giving {} wine"}, {"index": 360, "image_id": 2413894, "entity": "bird", "caption": "the bird has two eyes", "question": ["is there the bird ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 361, "image_id": 2413894, "entity": "bird", "caption": "The bird is standing in calm water.", "question": ["is there the bird ?", "is there calm water ?"], "prompt": "The {} is standing in calm water."}, {"index": 362, "image_id": 2413604, "entity": "bird", "caption": "the bird is on the chair", "question": ["is there the bird ?", "is there the chair ?"], "prompt": "the {} is on the chair"}, {"index": 363, "image_id": 2413604, "entity": "bird", "caption": "The bird is outside resting on the edge of a wicker basket chair. ", "question": ["is there the bird ?", "is there the edge ?", "is there a wicker basket chair ?"], "prompt": "The {} is outside resting on the edge of a wicker basket chair. "}, {"index": 364, "image_id": 2413604, "entity": "bird", "caption": "The bird has thick black feathers. ", "question": ["is there the bird ?", "are there thick black feathers ?"], "prompt": "The {} has thick black feathers. "}, {"index": 365, "image_id": 2413604, "entity": "bird", "caption": "little bird has extremely expressive eyes", "question": ["is there little bird ?", "are there extremely expressive eyes ?"], "prompt": "little {} has extremely expressive eyes"}, {"index": 366, "image_id": 2413070, "entity": "bird", "caption": "two birds feet", "question": ["are there two birds ?"], "prompt": "two {}s feet"}, {"index": 367, "image_id": 2416459, "entity": "bird", "caption": "bird perched on the flower", "question": ["is there bird ?", "is there the flower ?"], "prompt": "{} perched on the flower"}, {"index": 368, "image_id": 2417074, "entity": "bird", "caption": "the bird has red color beak", "question": ["is there the bird ?", "is there red color beak ?"], "prompt": "the {} has red color beak"}, {"index": 369, "image_id": 2417074, "entity": "bird", "caption": "the bird has paddle feet", "question": ["is there the bird ?", "are there paddle feet ?"], "prompt": "the {} has paddle feet"}, {"index": 370, "image_id": 2417074, "entity": "bird", "caption": "the wings of the bird are gray", "question": ["are there the wings ?", "is there the bird ?"], "prompt": "the wings of the {} are gray"}, {"index": 371, "image_id": 2417074, "entity": "bird", "caption": "birds foot ", "question": ["are there birds ?"], "prompt": "{}s foot "}, {"index": 372, "image_id": 2417074, "entity": "bird", "caption": "beak of bird is closed", "question": ["is there beak ?", "is there bird ?"], "prompt": "beak of {} is closed"}, {"index": 373, "image_id": 2417074, "entity": "bird", "caption": "foot of bird is on dock", "question": ["is there foot ?", "is there bird ?", "is there dock ?"], "prompt": "foot of {} is on dock"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n01580077.json b/data/imagenet/compositions/prompts/n01580077.json
new file mode 100644
index 0000000000000000000000000000000000000000..d2f6a90f12f4f06cb56b687a87e91c16757b699c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01580077.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2220, "entity": "bird", "caption": "the bird has a fish in its mouth", "question": ["is there the bird ?", "is there a fish ?", "is there its mouth ?"], "prompt": "the {} has a fish in its mouth"}, {"index": 1, "image_id": 2612, "entity": "bird", "caption": "bird has tan beak", "question": ["is there bird ?", "is there tan beak ?"], "prompt": "{} has tan beak"}, {"index": 2, "image_id": 2612, "entity": "bird", "caption": "bird has brown eye", "question": ["is there bird ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 3, "image_id": 2612, "entity": "bird", "caption": "bird has black feathers", "question": ["is there bird ?", "are there black feathers ?"], "prompt": "{} has black feathers"}, {"index": 4, "image_id": 2613, "entity": "bird", "caption": "birds have orange beaks", "question": ["are there birds ?", "are there orange beaks ?"], "prompt": "{}s have orange beaks"}, {"index": 5, "image_id": 2613, "entity": "bird", "caption": "bird has white feathers", "question": ["is there bird ?", "are there white feathers ?"], "prompt": "{} has white feathers"}, {"index": 6, "image_id": 2613, "entity": "bird", "caption": "bird has grey leg", "question": ["is there bird ?"], "prompt": "{} has grey leg"}, {"index": 7, "image_id": 2613, "entity": "bird", "caption": "bird stands on one leg", "question": ["is there bird ?", "is there one leg ?"], "prompt": "{} stands on one leg"}, {"index": 8, "image_id": 2619, "entity": "bird", "caption": "the eye of the bird is black", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "the eye of the {} is black"}, {"index": 9, "image_id": 2619, "entity": "bird", "caption": "the bird feet is black", "question": ["are there the bird feet ?"], "prompt": "the {} feet is black"}, {"index": 10, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food out of the person's hand", "question": ["is there the bird ?", "is there food ?", "is there the person's hand ?"], "prompt": "The {} is eating food out of the person's hand"}, {"index": 11, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food", "question": ["is there the bird ?", "is there food ?"], "prompt": "The {} is eating food"}, {"index": 12, "image_id": 2415095, "entity": "bird", "caption": "A bird with red feathers is eating food", "question": ["is there a bird ?", "are there red feathers ?", "is there food ?"], "prompt": "A {} with red feathers is eating food"}, {"index": 13, "image_id": 2415095, "entity": "bird", "caption": "The red feather bird is eating food out of a person's hand", "question": ["is there the red feather bird ?", "is there food ?", "is there a person's hand ?"], "prompt": "The red feather {} is eating food out of a person's hand"}, {"index": 14, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating an apples from the person's hand", "question": ["is there the bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The {} is eating an apples from the person's hand"}, {"index": 15, "image_id": 2415095, "entity": "bird", "caption": "The red-feathered bird is eating an apples from the person's hand", "question": ["is there the red-feathered bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The red-feathered {} is eating an apples from the person's hand"}, {"index": 16, "image_id": 2414024, "entity": "bird", "caption": "little bird with chest puffed out", "question": ["is there little bird ?", "is there chest ?"], "prompt": "little {} with chest puffed out"}, {"index": 17, "image_id": 2412521, "entity": "bird", "caption": "bird has red patch", "question": ["is there bird ?", "is there red patch ?"], "prompt": "{} has red patch"}, {"index": 18, "image_id": 2412521, "entity": "bird", "caption": "wood is under bird", "question": ["is there wood ?", "is there bird ?"], "prompt": "wood is under {}"}, {"index": 19, "image_id": 2412521, "entity": "bird", "caption": "black bird has it's mouth open", "question": ["is there black bird ?"], "prompt": "black {} has it's mouth open"}, {"index": 20, "image_id": 2412521, "entity": "bird", "caption": "bird perched on log", "question": ["is there bird ?", "is there log ?"], "prompt": "{} perched on log"}, {"index": 21, "image_id": 2412521, "entity": "bird", "caption": "black bird leg slanted from body", "question": ["is there black bird leg ?", "is there body ?"], "prompt": "black {} leg slanted from body"}, {"index": 22, "image_id": 2412061, "entity": "bird", "caption": "Black bird beak", "question": ["is there black bird beak ?"], "prompt": "Black {} beak"}, {"index": 23, "image_id": 2412061, "entity": "bird", "caption": "Black-feathered bird looks up to the sky", "question": ["is there black-feathered bird ?", "is there the sky ?"], "prompt": "Black-feathered {} looks up to the sky"}, {"index": 24, "image_id": 2409570, "entity": "bird", "caption": "the bird has two feet", "question": ["is there the bird ?", "are there two feet ?"], "prompt": "the {} has two feet"}, {"index": 25, "image_id": 2409570, "entity": "bird", "caption": "the bird is biting its tail", "question": ["is there the bird ?", "is there its tail ?"], "prompt": "the {} is biting its tail"}, {"index": 26, "image_id": 2409570, "entity": "bird", "caption": "the bird has wings", "question": ["is there the bird ?", "are there wings ?"], "prompt": "the {} has wings"}, {"index": 27, "image_id": 2409570, "entity": "bird", "caption": "White bird with black tail feathers standing on the sand", "question": ["is there white bird ?", "are there black tail feathers ?", "is there the sand ?"], "prompt": "White {} with black tail feathers standing on the sand"}, {"index": 28, "image_id": 2409306, "entity": "bird", "caption": "a fragment of ground that a young bird is standing on", "question": ["is there a fragment ?", "is there ground ?", "is there a young bird ?"], "prompt": "a fragment of ground that a young {} is standing on"}, {"index": 29, "image_id": 2409306, "entity": "bird", "caption": "head of bird is polka dotted", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is polka dotted"}, {"index": 30, "image_id": 2409306, "entity": "bird", "caption": "a baby bird stands on the ground", "question": ["is there a baby bird ?", "is there the ground ?"], "prompt": "a baby {} stands on the ground"}, {"index": 31, "image_id": 2409215, "entity": "bird", "caption": "The bird's beak is orange. ", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is orange. "}, {"index": 32, "image_id": 2409215, "entity": "bird", "caption": "The bird is flying above water. ", "question": ["is there the bird ?", "is there water ?"], "prompt": "The {} is flying above water. "}, {"index": 33, "image_id": 2409215, "entity": "bird", "caption": "End of the bird's wing that is primarily black", "question": ["is there end ?", "is there the bird's wing ?"], "prompt": "End of the {}'s wing that is primarily black"}, {"index": 34, "image_id": 2409045, "entity": "bird", "caption": "Neck of bird has S shape", "question": ["is there neck ?", "is there bird ?", "are there s ?", "is there shape ?"], "prompt": "Neck of {} has S shape"}, {"index": 35, "image_id": 2409045, "entity": "bird", "caption": "Grey bird rising into the air", "question": ["is there grey bird ?", "is there the air ?"], "prompt": "Grey {} rising into the air"}, {"index": 36, "image_id": 2409010, "entity": "bird", "caption": "a bird has a small creature in its mouth", "question": ["is there a bird ?", "is there a small creature ?", "is there its mouth ?"], "prompt": "a {} has a small creature in its mouth"}, {"index": 37, "image_id": 2409010, "entity": "bird", "caption": "a bird walks along the wet sand", "question": ["is there a bird ?", "is there the wet sand ?"], "prompt": "a {} walks along the wet sand"}, {"index": 38, "image_id": 2408592, "entity": "bird", "caption": "a bird stands at the edge of the water", "question": ["is there a bird ?", "is there the edge ?", "is there the water ?"], "prompt": "a {} stands at the edge of the water"}, {"index": 39, "image_id": 2408592, "entity": "bird", "caption": "The bird has webbed feet", "question": ["is there the bird ?"], "prompt": "The {} has webbed feet"}, {"index": 40, "image_id": 2408592, "entity": "bird", "caption": "The bird is standing in the dirt", "question": ["is there the bird ?", "is there the dirt ?"], "prompt": "The {} is standing in the dirt"}, {"index": 41, "image_id": 2408592, "entity": "bird", "caption": "the ground the bird is standing on", "question": ["is there the ground ?", "is there the bird ?"], "prompt": "the ground the {} is standing on"}, {"index": 42, "image_id": 2408299, "entity": "bird", "caption": "the bird is hiding in a plant", "question": ["is there the bird ?", "is there a plant ?"], "prompt": "the {} is hiding in a plant"}, {"index": 43, "image_id": 2408299, "entity": "bird", "caption": "the bird has a white belly", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 44, "image_id": 2407737, "entity": "bird", "caption": "this is a birds eye", "question": ["are there a birds ?"], "prompt": "this is a {}s eye"}, {"index": 45, "image_id": 2407737, "entity": "bird", "caption": "this is a bird tail", "question": ["is there a bird tail ?"], "prompt": "this is a {} tail"}, {"index": 46, "image_id": 2407737, "entity": "bird", "caption": "the bird has sharp beak", "question": ["is there the bird ?", "is there sharp beak ?"], "prompt": "the {} has sharp beak"}, {"index": 47, "image_id": 2407737, "entity": "bird", "caption": "the branches are beside the bird", "question": ["are there the branches ?", "is there the bird ?"], "prompt": "the branches are beside the {}"}, {"index": 48, "image_id": 2407737, "entity": "bird", "caption": "the bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "the {} has thin legs"}, {"index": 49, "image_id": 2407737, "entity": "bird", "caption": "the bird has black eyes", "question": ["is there the bird ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 50, "image_id": 2407316, "entity": "bird", "caption": "the bird has black legs", "question": ["is there the bird ?", "are there black legs ?"], "prompt": "the {} has black legs"}, {"index": 51, "image_id": 2407316, "entity": "bird", "caption": "the bird has three toes", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "the {} has three toes"}, {"index": 52, "image_id": 2406956, "entity": "bird", "caption": "black feathers on top of birds head", "question": ["are there black feathers ?", "is there top ?", "are there birds ?"], "prompt": "black feathers on top of {}s head"}, {"index": 53, "image_id": 2406956, "entity": "bird", "caption": "this is the bird's eye", "question": ["is there the bird's eye ?"], "prompt": "this is the {}'s eye"}, {"index": 54, "image_id": 2406956, "entity": "bird", "caption": "an object is in the bird's beak", "question": ["is there an object ?", "is there the bird's beak ?"], "prompt": "an object is in the {}'s beak"}, {"index": 55, "image_id": 2406956, "entity": "bird", "caption": "the bird's eye is black in color", "question": ["is there the bird's eye ?", "is there color ?"], "prompt": "the {}'s eye is black in color"}, {"index": 56, "image_id": 2404798, "entity": "bird", "caption": "bird has long beak", "question": ["is there bird ?", "is there long beak ?"], "prompt": "{} has long beak"}, {"index": 57, "image_id": 2404798, "entity": "bird", "caption": "bird has pink feathers", "question": ["is there bird ?", "are there pink feathers ?"], "prompt": "{} has pink feathers"}, {"index": 58, "image_id": 2404798, "entity": "bird", "caption": "bird has red eye", "question": ["is there bird ?", "is there red eye ?"], "prompt": "{} has red eye"}, {"index": 59, "image_id": 2404798, "entity": "bird", "caption": "head of bird is featherless", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is featherless"}, {"index": 60, "image_id": 2404798, "entity": "bird", "caption": "bird has green tag on leg", "question": ["is there bird ?", "is there green tag ?", "is there leg ?"], "prompt": "{} has green tag on leg"}, {"index": 61, "image_id": 2404798, "entity": "bird", "caption": "The bird is in the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 62, "image_id": 2404798, "entity": "bird", "caption": "The bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "The {} has a beak"}, {"index": 63, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is open", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 64, "image_id": 2404798, "entity": "bird", "caption": "The bird is wading in the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is wading in the water."}, {"index": 65, "image_id": 2404798, "entity": "bird", "caption": "The bird has a long beak.", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak."}, {"index": 66, "image_id": 2404798, "entity": "bird", "caption": "The bird has light and dark pink feathers.", "question": ["is there the bird ?", "are there light and dark pink feathers ?"], "prompt": "The {} has light and dark pink feathers."}, {"index": 67, "image_id": 2404798, "entity": "bird", "caption": "The bird has a green band around the leg.", "question": ["is there the bird ?", "is there a green band ?", "is there the leg ?"], "prompt": "The {} has a green band around the leg."}, {"index": 68, "image_id": 2404798, "entity": "bird", "caption": "The bird has white neck feathers.", "question": ["is there the bird ?", "are there white neck feathers ?"], "prompt": "The {} has white neck feathers."}, {"index": 69, "image_id": 2404798, "entity": "bird", "caption": "Large rocks are behind the birds.", "question": ["are there large rocks ?", "are there the birds ?"], "prompt": "Large rocks are behind the {}s."}, {"index": 70, "image_id": 2404798, "entity": "bird", "caption": "Water is dripping from the bird's beak.", "question": ["is there water ?", "is there the bird's beak ?"], "prompt": "Water is dripping from the {}'s beak."}, {"index": 71, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is yellow and black.", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is yellow and black."}, {"index": 72, "image_id": 2404673, "entity": "bird", "caption": "the bird is on a long black metal piece", "question": ["is there the bird ?", "is there a long black metal piece ?"], "prompt": "the {} is on a long black metal piece"}, {"index": 73, "image_id": 2404673, "entity": "bird", "caption": "glass sun catchers are hanging in front of the wooden bird", "question": ["are there glass sun catchers ?", "is there front ?", "is there the wooden bird ?"], "prompt": "glass sun catchers are hanging in front of the wooden {}"}, {"index": 74, "image_id": 2404673, "entity": "bird", "caption": "the bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "the {} has a beak"}, {"index": 75, "image_id": 2404673, "entity": "bird", "caption": "the window is reflecting the bird", "question": ["is there the window ?", "is there the bird ?"], "prompt": "the window is reflecting the {}"}, {"index": 76, "image_id": 2404673, "entity": "bird", "caption": "the bird has 1 leg", "question": ["is there the bird ?", "is there 1 leg ?"], "prompt": "the {} has 1 leg"}, {"index": 77, "image_id": 2404673, "entity": "bird", "caption": "the bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "the {} has a long beak"}, {"index": 78, "image_id": 2404673, "entity": "bird", "caption": "the bird's eye is black", "question": ["is there the bird's eye ?"], "prompt": "the {}'s eye is black"}, {"index": 79, "image_id": 2404673, "entity": "bird", "caption": "the bird's leg is long", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is long"}, {"index": 80, "image_id": 2404673, "entity": "bird", "caption": "the bird is sitting on the window", "question": ["is there the bird ?", "is there the window ?"], "prompt": "the {} is sitting on the window"}, {"index": 81, "image_id": 2404673, "entity": "bird", "caption": "The bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak"}, {"index": 82, "image_id": 2403435, "entity": "bird", "caption": "person is feeding bird", "question": ["is there person ?", "is there bird ?"], "prompt": "person is feeding {}"}, {"index": 83, "image_id": 2401304, "entity": "bird", "caption": "a bird is standing on weathered wood", "question": ["is there a bird ?", "is there weathered wood ?"], "prompt": "a {} is standing on weathered wood"}, {"index": 84, "image_id": 2401079, "entity": "bird", "caption": "bird's beak is black and red", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black and red"}, {"index": 85, "image_id": 2401079, "entity": "bird", "caption": "the bird's feet are black", "question": ["are there the bird's feet ?"], "prompt": "the {}'s feet are black"}, {"index": 86, "image_id": 2400985, "entity": "bird", "caption": "the bird has a short black beak", "question": ["is there the bird ?", "is there a short black beak ?"], "prompt": "the {} has a short black beak"}, {"index": 87, "image_id": 2400985, "entity": "bird", "caption": "the bird has sharp claws", "question": ["is there the bird ?", "are there sharp claws ?"], "prompt": "the {} has sharp claws"}, {"index": 88, "image_id": 2400985, "entity": "bird", "caption": "A birds left side wing. ", "question": ["are there a birds ?", "is there side wing ?"], "prompt": "A {}s left side wing. "}, {"index": 89, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds right foot", "question": ["are there the fully shown birds ?"], "prompt": "The fully shown {}s right foot"}, {"index": 90, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds left foot", "question": ["are there the fully shown birds ?", "is there foot ?"], "prompt": "The fully shown {}s left foot"}, {"index": 91, "image_id": 2396390, "entity": "bird", "caption": "bird perched on wooden pole ", "question": ["is there bird ?", "is there wooden pole ?"], "prompt": "{} perched on wooden pole "}, {"index": 92, "image_id": 2396390, "entity": "bird", "caption": "bird angled sideways with feet tightly gripping", "question": ["is there bird ?", "are there feet ?"], "prompt": "{} angled sideways with feet tightly gripping"}, {"index": 93, "image_id": 2396109, "entity": "bird", "caption": "The bird has yellow eyes.", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes."}, {"index": 94, "image_id": 2396109, "entity": "bird", "caption": "The bird stands on the tree.", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "The {} stands on the tree."}, {"index": 95, "image_id": 2396109, "entity": "bird", "caption": "this is a bird", "question": ["is there a bird ?"], "prompt": "this is a {}"}, {"index": 96, "image_id": 2396109, "entity": "bird", "caption": "the bird is on the tree", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "the {} is on the tree"}, {"index": 97, "image_id": 2396109, "entity": "bird", "caption": "the bird has yellow eyes", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "the {} has yellow eyes"}, {"index": 98, "image_id": 2396109, "entity": "bird", "caption": "the bird's legs are long", "question": ["are there the bird's legs ?"], "prompt": "the {}'s legs are long"}, {"index": 99, "image_id": 2396109, "entity": "bird", "caption": "The bird has a pointy beak.", "question": ["is there the bird ?", "is there a pointy beak ?"], "prompt": "The {} has a pointy beak."}, {"index": 100, "image_id": 2396109, "entity": "bird", "caption": "The bird has two legs.", "question": ["is there the bird ?", "are there two legs ?"], "prompt": "The {} has two legs."}, {"index": 101, "image_id": 2396109, "entity": "bird", "caption": "The bird has a yellow eye.", "question": ["is there the bird ?", "is there a yellow eye ?"], "prompt": "The {} has a yellow eye."}, {"index": 102, "image_id": 2396109, "entity": "bird", "caption": "The bird has a wing.", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "The {} has a wing."}, {"index": 103, "image_id": 2395577, "entity": "bird", "caption": "the bird has a wing", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "the {} has a wing"}, {"index": 104, "image_id": 2395577, "entity": "bird", "caption": "the bird has an eye", "question": ["is there the bird ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 105, "image_id": 2394957, "entity": "bird", "caption": "bird stand on rim of bowl", "question": ["is there bird ?", "is there rim ?", "is there bowl ?"], "prompt": "{} stand on rim of bowl"}, {"index": 106, "image_id": 2394957, "entity": "bird", "caption": "bird's head is black and blue in color", "question": ["is there bird's head ?", "is there color ?"], "prompt": "{}'s head is black and blue in color"}, {"index": 107, "image_id": 2394957, "entity": "bird", "caption": "bird's eye is red", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is red"}, {"index": 108, "image_id": 2393198, "entity": "bird", "caption": "the birds long beak", "question": ["are there the birds ?"], "prompt": "the {}s long beak"}, {"index": 109, "image_id": 2393198, "entity": "bird", "caption": "the feathers on the birds chest", "question": ["are there the feathers ?", "are there the birds ?"], "prompt": "the feathers on the {}s chest"}, {"index": 110, "image_id": 2393198, "entity": "bird", "caption": "the log the birds standing on", "question": ["is there the log ?", "are there the birds ?"], "prompt": "the log the {}s standing on"}, {"index": 111, "image_id": 2392907, "entity": "bird", "caption": "bird has yellow legs", "question": ["is there bird ?", "are there yellow legs ?"], "prompt": "{} has yellow legs"}, {"index": 112, "image_id": 2392907, "entity": "bird", "caption": "bird has large toe nails", "question": ["is there bird ?", "are there large toe nails ?"], "prompt": "{} has large toe nails"}, {"index": 113, "image_id": 2392255, "entity": "bird", "caption": "The birds tail feathers.", "question": ["are there the birds tail feathers ?"], "prompt": "The {}s tail feathers."}, {"index": 114, "image_id": 2392255, "entity": "bird", "caption": "The bird is standing on a person's hand.", "question": ["is there the bird ?", "is there a person's hand ?"], "prompt": "The {} is standing on a person's hand."}, {"index": 115, "image_id": 2392255, "entity": "bird", "caption": "The bird has grey feathers.", "question": ["is there the bird ?", "are there grey feathers ?"], "prompt": "The {} has grey feathers."}, {"index": 116, "image_id": 2392255, "entity": "bird", "caption": "The bird has a black beak.", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "The {} has a black beak."}, {"index": 117, "image_id": 2392255, "entity": "bird", "caption": "the bird has a black beak", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "the {} has a black beak"}, {"index": 118, "image_id": 2392255, "entity": "bird", "caption": "the bird has black legs and claws", "question": ["is there the bird ?", "are there black legs ?", "are there claws ?"], "prompt": "the {} has black legs and claws"}, {"index": 119, "image_id": 2392255, "entity": "bird", "caption": "the bird's head is white and gray", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is white and gray"}, {"index": 120, "image_id": 2391103, "entity": "bird", "caption": "Top of bird's head is jet black", "question": ["is there top ?", "is there bird's head ?", "is there jet black ?"], "prompt": "Top of {}'s head is jet black"}, {"index": 121, "image_id": 2390453, "entity": "bird", "caption": "the bird has eye", "question": ["is there the bird ?", "is there eye ?"], "prompt": "the {} has eye"}, {"index": 122, "image_id": 2389247, "entity": "bird", "caption": "a birds head", "question": ["are there a birds ?"], "prompt": "a {}s head"}, {"index": 123, "image_id": 2389247, "entity": "bird", "caption": "The birds beak.", "question": ["are there the birds ?"], "prompt": "The {}s beak."}, {"index": 124, "image_id": 2388774, "entity": "bird", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the {} is in the car "}, {"index": 125, "image_id": 2388774, "entity": "bird", "caption": "The bird has small black feathers ", "question": ["is there the bird ?", "are there small black feathers ?"], "prompt": "The {} has small black feathers "}, {"index": 126, "image_id": 2387336, "entity": "bird", "caption": "part of branch birds are sitting on", "question": ["is there part ?", "are there branch birds ?"], "prompt": "part of branch {}s are sitting on"}, {"index": 127, "image_id": 2385839, "entity": "bird", "caption": "the bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "the {} has black and white feathers"}, {"index": 128, "image_id": 2384739, "entity": "bird", "caption": "bird's legs are curled", "question": ["are there bird's legs ?"], "prompt": "{}'s legs are curled"}, {"index": 129, "image_id": 2384739, "entity": "bird", "caption": "a bird is lying on the pavement", "question": ["is there a bird ?", "is there the pavement ?"], "prompt": "a {} is lying on the pavement"}, {"index": 130, "image_id": 2384739, "entity": "bird", "caption": "the bird's head is upside down", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is upside down"}, {"index": 131, "image_id": 2384739, "entity": "bird", "caption": "the black cat is lying next to the bird", "question": ["is there the black cat ?", "is there the bird ?"], "prompt": "the black cat is lying next to the {}"}, {"index": 132, "image_id": 2384582, "entity": "bird", "caption": "This bird has a red beak.", "question": ["is there this bird ?", "is there a red beak ?"], "prompt": "This {} has a red beak."}, {"index": 133, "image_id": 2384582, "entity": "bird", "caption": "The bird is standing on a sandy beach.", "question": ["is there the bird ?", "is there a sandy beach ?"], "prompt": "The {} is standing on a sandy beach."}, {"index": 134, "image_id": 2384582, "entity": "bird", "caption": "This bird has black eyes.", "question": ["is there this bird ?", "are there black eyes ?"], "prompt": "This {} has black eyes."}, {"index": 135, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white belly.", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "The {} has a white belly."}, {"index": 136, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white body.", "question": ["is there the bird ?", "is there a white body ?"], "prompt": "The {} has a white body."}, {"index": 137, "image_id": 2384582, "entity": "bird", "caption": "The bird has black and white tail feathers.", "question": ["is there the bird ?", "are there black and white tail feathers ?"], "prompt": "The {} has black and white tail feathers."}, {"index": 138, "image_id": 2384582, "entity": "bird", "caption": "The bird has orange legs.", "question": ["is there the bird ?", "are there orange legs ?"], "prompt": "The {} has orange legs."}, {"index": 139, "image_id": 2384582, "entity": "bird", "caption": "The bird has an orange beak.", "question": ["is there the bird ?", "is there an orange beak ?"], "prompt": "The {} has an orange beak."}, {"index": 140, "image_id": 2382811, "entity": "bird", "caption": "The bird is above the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is above the water"}, {"index": 141, "image_id": 2382811, "entity": "bird", "caption": "body of seabird is white", "question": ["is there body ?", "is there seabird ?"], "prompt": "body of sea{} is white"}, {"index": 142, "image_id": 2381448, "entity": "bird", "caption": "birds feet are visible", "question": ["are there birds ?", "are there feet ?"], "prompt": "{}s feet are visible"}, {"index": 143, "image_id": 2381401, "entity": "bird", "caption": "the bird has a slender beak", "question": ["is there the bird ?", "is there a slender beak ?"], "prompt": "the {} has a slender beak"}, {"index": 144, "image_id": 2381401, "entity": "bird", "caption": "the bird has stripes on his back", "question": ["is there the bird ?", "are there stripes ?", "is there his back ?"], "prompt": "the {} has stripes on his back"}, {"index": 145, "image_id": 2381401, "entity": "bird", "caption": "the birds beak is very long", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is very long"}, {"index": 146, "image_id": 2381401, "entity": "bird", "caption": "The bird is standing on the branches of the tree.", "question": ["is there the bird ?", "are there the branches ?", "is there the tree ?"], "prompt": "The {} is standing on the branches of the tree."}, {"index": 147, "image_id": 2381401, "entity": "bird", "caption": "The bird has a long black beak.", "question": ["is there the bird ?", "is there a long black beak ?"], "prompt": "The {} has a long black beak."}, {"index": 148, "image_id": 2381401, "entity": "bird", "caption": "The bird has long red legs.", "question": ["is there the bird ?", "are there long red legs ?"], "prompt": "The {} has long red legs."}, {"index": 149, "image_id": 2381401, "entity": "bird", "caption": "the bird is red and beautiful", "question": ["is there the bird ?"], "prompt": "the {} is red and beautiful"}, {"index": 150, "image_id": 2380312, "entity": "bird", "caption": "the bird has a tail", "question": ["is there the bird ?", "is there a tail ?"], "prompt": "the {} has a tail"}, {"index": 151, "image_id": 2380312, "entity": "bird", "caption": "the bird has a head", "question": ["is there the bird ?", "is there a head ?"], "prompt": "the {} has a head"}, {"index": 152, "image_id": 2380026, "entity": "bird", "caption": "the bird has a blue head.", "question": ["is there the bird ?", "is there a blue head ?"], "prompt": "the {} has a blue head."}, {"index": 153, "image_id": 2380026, "entity": "bird", "caption": "The bird has yellow and orange on it's chest.", "question": ["is there the bird ?", "is there it's chest ?"], "prompt": "The {} has yellow and orange on it's chest."}, {"index": 154, "image_id": 2380026, "entity": "bird", "caption": "The bird has three toes.", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "The {} has three toes."}, {"index": 155, "image_id": 2380026, "entity": "bird", "caption": "bird's wings are green", "question": ["are there bird's wings ?"], "prompt": "{}'s wings are green"}, {"index": 156, "image_id": 2380026, "entity": "bird", "caption": "bird has blue head", "question": ["is there bird ?", "is there blue head ?"], "prompt": "{} has blue head"}, {"index": 157, "image_id": 2380026, "entity": "bird", "caption": "bird has orange beak", "question": ["is there bird ?", "is there orange beak ?"], "prompt": "{} has orange beak"}, {"index": 158, "image_id": 2380026, "entity": "bird", "caption": "bird has green body", "question": ["is there bird ?", "is there green body ?"], "prompt": "{} has green body"}, {"index": 159, "image_id": 2380026, "entity": "bird", "caption": "bird has brown talons", "question": ["is there bird ?", "are there brown talons ?"], "prompt": "{} has brown talons"}, {"index": 160, "image_id": 2378627, "entity": "bird", "caption": "A birds beak", "question": ["are there a birds ?"], "prompt": "A {}s beak"}, {"index": 161, "image_id": 2378627, "entity": "bird", "caption": "A birds wing", "question": ["are there a birds ?"], "prompt": "A {}s wing"}, {"index": 162, "image_id": 2377993, "entity": "bird", "caption": "The birds claws are black.", "question": ["are there the birds ?", "are there claws ?"], "prompt": "The {}s claws are black."}, {"index": 163, "image_id": 2377993, "entity": "bird", "caption": "The birds eye is black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is black."}, {"index": 164, "image_id": 2377993, "entity": "bird", "caption": "The birds beak is black.", "question": ["are there the birds beak ?"], "prompt": "The {}s beak is black."}, {"index": 165, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a bird", "question": ["is there a bird ?"], "prompt": "Pink felt on a {}"}, {"index": 166, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a white bird", "question": ["is there a white bird ?"], "prompt": "Pink felt on a white {}"}, {"index": 167, "image_id": 2376795, "entity": "bird", "caption": "A bird has pink felt on it", "question": ["is there a bird ?"], "prompt": "A {} has pink felt on it"}, {"index": 168, "image_id": 2376795, "entity": "bird", "caption": "bird head turned right", "question": ["is there bird head ?"], "prompt": "{} head turned right"}, {"index": 169, "image_id": 2376340, "entity": "bird", "caption": "the birds legs ", "question": ["are there the birds ?"], "prompt": "the {}s legs "}, {"index": 170, "image_id": 2376340, "entity": "bird", "caption": "The bird has long legs. ", "question": ["is there the bird ?", "are there long legs ?"], "prompt": "The {} has long legs. "}, {"index": 171, "image_id": 2376224, "entity": "bird", "caption": "The bird's eyes are open", "question": ["are there the bird's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 172, "image_id": 2376224, "entity": "bird", "caption": "The bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "The {} has thin legs"}, {"index": 173, "image_id": 2375434, "entity": "bird", "caption": "The bird is holding a stick in its mouth", "question": ["is there the bird ?", "is there a stick ?", "is there its mouth ?"], "prompt": "The {} is holding a stick in its mouth"}, {"index": 174, "image_id": 2375434, "entity": "bird", "caption": "birds flying in the sky", "question": ["are there birds ?", "is there the sky ?"], "prompt": "{}s flying in the sky"}, {"index": 175, "image_id": 2375434, "entity": "bird", "caption": "birds flapping their wings", "question": ["are there birds ?", "are there their wings ?"], "prompt": "{}s flapping their wings"}, {"index": 176, "image_id": 2375434, "entity": "bird", "caption": "four birds flapping their wings", "question": ["are there four birds ?", "are there their wings ?"], "prompt": "four {}s flapping their wings"}, {"index": 177, "image_id": 2375434, "entity": "bird", "caption": "a bird with its wings spread to full length", "question": ["is there a bird ?", "are there its wings ?", "is there full length ?"], "prompt": "a {} with its wings spread to full length"}, {"index": 178, "image_id": 2372589, "entity": "bird", "caption": "belly of the bird is white", "question": ["is there belly ?", "is there the bird ?"], "prompt": "belly of the {} is white"}, {"index": 179, "image_id": 2372589, "entity": "bird", "caption": "bird's feet are black", "question": ["are there bird's feet ?"], "prompt": "{}'s feet are black"}, {"index": 180, "image_id": 2372589, "entity": "bird", "caption": "bird's beak is black", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black"}, {"index": 181, "image_id": 2372267, "entity": "bird", "caption": "bird has green face", "question": ["is there bird ?", "is there green face ?"], "prompt": "{} has green face"}, {"index": 182, "image_id": 2372267, "entity": "bird", "caption": "bird has white beak", "question": ["is there bird ?", "is there white beak ?"], "prompt": "{} has white beak"}, {"index": 183, "image_id": 2371979, "entity": "bird", "caption": "bird's head is black", "question": ["is there bird's head ?"], "prompt": "{}'s head is black"}, {"index": 184, "image_id": 2371979, "entity": "bird", "caption": "bird's wing is black and red", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is black and red"}, {"index": 185, "image_id": 2371266, "entity": "bird", "caption": "birds beak that is two toned", "question": ["are there birds ?"], "prompt": "{}s beak that is two toned"}, {"index": 186, "image_id": 2370174, "entity": "bird", "caption": "water is behind the bird", "question": ["is there water ?", "is there the bird ?"], "prompt": "water is behind the {}"}, {"index": 187, "image_id": 2370174, "entity": "bird", "caption": "The bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "The {} has black and white feathers"}, {"index": 188, "image_id": 2366794, "entity": "bird", "caption": "the bird's leg is skinny", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is skinny"}, {"index": 189, "image_id": 2366794, "entity": "bird", "caption": "the bird's tail is black ", "question": ["is there the bird's tail ?"], "prompt": "the {}'s tail is black "}, {"index": 190, "image_id": 2366794, "entity": "bird", "caption": "teh bird's beak is smll", "question": ["is there teh bird's beak ?", "is there smll ?"], "prompt": "teh {}'s beak is smll"}, {"index": 191, "image_id": 2366794, "entity": "bird", "caption": "the bird is on the beach ", "question": ["is there the bird ?", "is there the beach ?"], "prompt": "the {} is on the beach "}, {"index": 192, "image_id": 2366548, "entity": "bird", "caption": "the birds have long legs", "question": ["are there the birds ?", "are there long legs ?"], "prompt": "the {}s have long legs"}, {"index": 193, "image_id": 2366548, "entity": "bird", "caption": "tall grass is behind the bird", "question": ["is there tall grass ?", "is there the bird ?"], "prompt": "tall grass is behind the {}"}, {"index": 194, "image_id": 2366548, "entity": "bird", "caption": "the bird closest to us has a few black feathers", "question": ["is there the bird ?", "are there a few black feathers ?"], "prompt": "the {} closest to us has a few black feathers"}, {"index": 195, "image_id": 2365606, "entity": "bird", "caption": "This is a bird", "question": ["is there a bird ?"], "prompt": "This is a {}"}, {"index": 196, "image_id": 2364373, "entity": "bird", "caption": "The bird has brown legs.", "question": ["is there the bird ?", "are there brown legs ?"], "prompt": "The {} has brown legs."}, {"index": 197, "image_id": 2363673, "entity": "bird", "caption": "A white and grey bird with its head turned to the left. ", "question": ["is there a white and grey bird ?", "is there its head ?", "is there the left ?"], "prompt": "A white and grey {} with its head turned to the left. "}, {"index": 198, "image_id": 2362480, "entity": "bird", "caption": "this bird has skinny legs", "question": ["is there this bird ?", "are there skinny legs ?"], "prompt": "this {} has skinny legs"}, {"index": 199, "image_id": 2362036, "entity": "bird", "caption": "it is the eye of the bird", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "it is the eye of the {}"}, {"index": 200, "image_id": 2362036, "entity": "bird", "caption": "the birds left side of the wing", "question": ["are there the birds ?", "is there side ?", "is there the wing ?"], "prompt": "the {}s left side of the wing"}, {"index": 201, "image_id": 2362031, "entity": "bird", "caption": "The bird's feather are shiny.", "question": ["is there the bird's feather ?"], "prompt": "The {}'s feather are shiny."}, {"index": 202, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are glossy.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are glossy."}, {"index": 203, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are black.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are black."}, {"index": 204, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is black.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is black."}, {"index": 205, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is open.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is open."}, {"index": 206, "image_id": 2362031, "entity": "bird", "caption": "The bird's talons are gripping a rock.", "question": ["are there the bird's talons ?", "is there a rock ?"], "prompt": "The {}'s talons are gripping a rock."}, {"index": 207, "image_id": 2361417, "entity": "bird", "caption": "Blue bird's feet wrapped about branch", "question": ["are there blue bird's feet ?", "is there branch ?"], "prompt": "Blue {}'s feet wrapped about branch"}, {"index": 208, "image_id": 2360048, "entity": "bird", "caption": "The bird is standing on a multi level white surface.", "question": ["is there the bird ?", "is there a multi level white surface ?"], "prompt": "The {} is standing on a multi level white surface."}, {"index": 209, "image_id": 2359558, "entity": "bird", "caption": "the birds feet ", "question": ["are there the birds ?"], "prompt": "the {}s feet "}, {"index": 210, "image_id": 2359558, "entity": "bird", "caption": "birds nail ", "question": ["are there birds ?"], "prompt": "{}s nail "}, {"index": 211, "image_id": 2359558, "entity": "bird", "caption": "the birds eye ", "question": ["are there the birds ?"], "prompt": "the {}s eye "}, {"index": 212, "image_id": 2359558, "entity": "bird", "caption": "the birds tail ", "question": ["are there the birds ?"], "prompt": "the {}s tail "}, {"index": 213, "image_id": 2359558, "entity": "bird", "caption": "the birds beak", "question": ["are there the birds ?"], "prompt": "the {}s beak"}, {"index": 214, "image_id": 2359558, "entity": "bird", "caption": "black bird beak", "question": ["is there black bird beak ?"], "prompt": "black {} beak"}, {"index": 215, "image_id": 2359461, "entity": "bird", "caption": "Caterpillar in the birds beak.", "question": ["are there the birds ?"], "prompt": "Caterpillar in the {}s beak."}, {"index": 216, "image_id": 2359036, "entity": "bird", "caption": "Back of bird's neck is green.", "question": ["is there bird's neck ?"], "prompt": "Back of {}'s neck is green."}, {"index": 217, "image_id": 2359036, "entity": "bird", "caption": "yellow and orange feathers for birds chest", "question": ["are there yellow and orange feathers ?", "are there birds ?"], "prompt": "yellow and orange feathers for {}s chest"}, {"index": 218, "image_id": 2359036, "entity": "bird", "caption": "blue with black accent feathers on birds head", "question": ["are there black accent feathers ?", "are there birds ?"], "prompt": "blue with black accent feathers on {}s head"}, {"index": 219, "image_id": 2358738, "entity": "bird", "caption": "the bird has a brown spot on its head", "question": ["is there the bird ?", "is there a brown spot ?", "is there its head ?"], "prompt": "the {} has a brown spot on its head"}, {"index": 220, "image_id": 2358738, "entity": "bird", "caption": "the birds wings are brown with a few white spots", "question": ["are there the birds wings ?", "are there a few white spots ?"], "prompt": "the {}s wings are brown with a few white spots"}, {"index": 221, "image_id": 2358256, "entity": "bird", "caption": "bird with wings spread", "question": ["is there bird ?", "are there wings ?"], "prompt": "{} with wings spread"}, {"index": 222, "image_id": 2358256, "entity": "bird", "caption": "nice bird with wings spread", "question": ["is there nice bird ?", "are there wings ?"], "prompt": "nice {} with wings spread"}, {"index": 223, "image_id": 2358256, "entity": "bird", "caption": "healthy bird with wings spread", "question": ["is there healthy bird ?", "are there wings ?"], "prompt": "healthy {} with wings spread"}, {"index": 224, "image_id": 2358256, "entity": "bird", "caption": "beautiful bird with wings spread", "question": ["is there beautiful bird ?", "are there wings ?"], "prompt": "beautiful {} with wings spread"}, {"index": 225, "image_id": 2358256, "entity": "bird", "caption": "bird with pretty wings spread", "question": ["is there bird ?", "are there pretty wings ?"], "prompt": "{} with pretty wings spread"}, {"index": 226, "image_id": 2358256, "entity": "bird", "caption": "bird with colorful wings spread", "question": ["is there bird ?", "are there colorful wings ?"], "prompt": "{} with colorful wings spread"}, {"index": 227, "image_id": 2357787, "entity": "bird", "caption": "The bird has gray feathers", "question": ["is there the bird ?", "are there gray feathers ?"], "prompt": "The {} has gray feathers"}, {"index": 228, "image_id": 2356534, "entity": "bird", "caption": "dead insect in birds beak", "question": ["is there dead insect ?", "are there birds ?"], "prompt": "dead insect in {}s beak"}, {"index": 229, "image_id": 2356534, "entity": "bird", "caption": "The bird has brown feathers", "question": ["is there the bird ?", "are there brown feathers ?"], "prompt": "The {} has brown feathers"}, {"index": 230, "image_id": 2356534, "entity": "bird", "caption": "The bird is on the ground", "question": ["is there the bird ?", "is there the ground ?"], "prompt": "The {} is on the ground"}, {"index": 231, "image_id": 2355976, "entity": "bird", "caption": "A bird is next to a zebra", "question": ["is there a bird ?", "is there a zebra ?"], "prompt": "A {} is next to a zebra"}, {"index": 232, "image_id": 2355976, "entity": "bird", "caption": "The bird has black feathers", "question": ["is there the bird ?", "are there black feathers ?"], "prompt": "The {} has black feathers"}, {"index": 233, "image_id": 2355730, "entity": "bird", "caption": "bird has grey feathers", "question": ["is there bird ?", "are there grey feathers ?"], "prompt": "{} has grey feathers"}, {"index": 234, "image_id": 2355730, "entity": "bird", "caption": "The bird has claws", "question": ["is there the bird ?", "are there claws ?"], "prompt": "The {} has claws"}, {"index": 235, "image_id": 2355730, "entity": "bird", "caption": "Grey beak of a bird. ", "question": ["is there grey beak ?", "is there a bird ?"], "prompt": "Grey beak of a {}. "}, {"index": 236, "image_id": 2354530, "entity": "bird", "caption": "cement area where a bird stands", "question": ["is there cement area ?", "is there a bird ?"], "prompt": "cement area where a {} stands"}, {"index": 237, "image_id": 2354530, "entity": "bird", "caption": "bird has black streak on head", "question": ["is there bird ?", "is there black streak ?", "is there head ?"], "prompt": "{} has black streak on head"}, {"index": 238, "image_id": 2354530, "entity": "bird", "caption": "bird has yellow eye", "question": ["is there bird ?", "is there yellow eye ?"], "prompt": "{} has yellow eye"}, {"index": 239, "image_id": 2353113, "entity": "bird", "caption": "bird has brown beak", "question": ["is there bird ?", "is there brown beak ?"], "prompt": "{} has brown beak"}, {"index": 240, "image_id": 2353113, "entity": "bird", "caption": "bird is behind fence", "question": ["is there bird ?", "is there fence ?"], "prompt": "{} is behind fence"}, {"index": 241, "image_id": 2353113, "entity": "bird", "caption": "bird is near water", "question": ["is there bird ?", "is there water ?"], "prompt": "{} is near water"}, {"index": 242, "image_id": 2352371, "entity": "bird", "caption": "wood platform for bird to stand on", "question": ["is there wood platform ?", "is there bird ?"], "prompt": "wood platform for {} to stand on"}, {"index": 243, "image_id": 2349694, "entity": "bird", "caption": "tail of bird is white", "question": ["is there tail ?", "is there bird ?"], "prompt": "tail of {} is white"}, {"index": 244, "image_id": 2349587, "entity": "bird", "caption": "The bird is eating the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is eating the branch."}, {"index": 245, "image_id": 2349587, "entity": "bird", "caption": "The bird is holding the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is holding the branch."}, {"index": 246, "image_id": 2349248, "entity": "bird", "caption": "the food the bird is eating", "question": ["is there the food ?", "is there the bird ?"], "prompt": "the food the {} is eating"}, {"index": 247, "image_id": 2349109, "entity": "bird", "caption": "the branch the bird is biting", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "the branch the {} is biting"}, {"index": 248, "image_id": 2348860, "entity": "bird", "caption": "A bird has an orange beak.", "question": ["is there a bird ?", "is there an orange beak ?"], "prompt": "A {} has an orange beak."}, {"index": 249, "image_id": 2348860, "entity": "bird", "caption": "A birds claw is grasping a potato.", "question": ["is there a birds ?", "is there a potato ?"], "prompt": "A {}s claw is grasping a potato."}, {"index": 250, "image_id": 2348860, "entity": "bird", "caption": "A bird is eating a potato.", "question": ["is there a bird ?", "is there a potato ?"], "prompt": "A {} is eating a potato."}, {"index": 251, "image_id": 2348860, "entity": "bird", "caption": "A bird is on a tree branch.", "question": ["is there a bird ?", "is there a tree branch ?"], "prompt": "A {} is on a tree branch."}, {"index": 252, "image_id": 2348860, "entity": "bird", "caption": "A tropical bird is on a tree branch.", "question": ["is there a tropical bird ?", "is there a tree branch ?"], "prompt": "A tropical {} is on a tree branch."}, {"index": 253, "image_id": 2348860, "entity": "bird", "caption": "bird's wing is green", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is green"}, {"index": 254, "image_id": 2348860, "entity": "bird", "caption": "The peice of food in the birds mouth", "question": ["is there the peice ?", "is there food ?", "are there the birds ?"], "prompt": "The peice of food in the {}s mouth"}, {"index": 255, "image_id": 2348860, "entity": "bird", "caption": "The birds red orange eye", "question": ["are there the birds ?"], "prompt": "The {}s red orange eye"}, {"index": 256, "image_id": 2348860, "entity": "bird", "caption": "The birds blue face", "question": ["are there the birds ?"], "prompt": "The {}s blue face"}, {"index": 257, "image_id": 2348860, "entity": "bird", "caption": "The birds foot on the fruit", "question": ["are there the birds ?", "is there the fruit ?"], "prompt": "The {}s foot on the fruit"}, {"index": 258, "image_id": 2348860, "entity": "bird", "caption": "The piece of fruit the bird is eating", "question": ["is there the piece ?", "is there fruit ?", "is there the bird ?"], "prompt": "The piece of fruit the {} is eating"}, {"index": 259, "image_id": 2348860, "entity": "bird", "caption": "The branch the bird is sitting on", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "The branch the {} is sitting on"}, {"index": 260, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw", "question": ["is there a bird ?", "is there a claw ?"], "prompt": "a {} has a claw"}, {"index": 261, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw holding onto a branch", "question": ["is there a bird ?", "is there a claw ?", "is there a branch ?"], "prompt": "a {} has a claw holding onto a branch"}, {"index": 262, "image_id": 2348795, "entity": "bird", "caption": "Black bird beak white around face. ", "question": ["is there black bird beak ?", "is there face ?"], "prompt": "Black {} beak white around face. "}, {"index": 263, "image_id": 2348671, "entity": "bird", "caption": "that is the leg of the bird", "question": ["is there the leg ?", "is there the bird ?"], "prompt": "that is the leg of the {}"}, {"index": 264, "image_id": 2348089, "entity": "bird", "caption": "a wood platform the bird is on ", "question": ["is there a wood platform ?", "is there the bird ?"], "prompt": "a wood platform the {} is on "}, {"index": 265, "image_id": 2347493, "entity": "bird", "caption": "bird with its mouth open", "question": ["is there bird ?", "is there its mouth ?"], "prompt": "{} with its mouth open"}, {"index": 266, "image_id": 2347493, "entity": "bird", "caption": "The bird is on the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 267, "image_id": 2347493, "entity": "bird", "caption": "The birds beak has a sharp point.", "question": ["are there the birds beak ?", "is there a sharp point ?"], "prompt": "The {}s beak has a sharp point."}, {"index": 268, "image_id": 2347493, "entity": "bird", "caption": "The birds feet are orange.", "question": ["are there the birds ?", "are there feet ?"], "prompt": "The {}s feet are orange."}, {"index": 269, "image_id": 2345609, "entity": "bird", "caption": "the bird has very long legs", "question": ["is there the bird ?", "are there very long legs ?"], "prompt": "the {} has very long legs"}, {"index": 270, "image_id": 2345609, "entity": "bird", "caption": "the bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "the {} has a yellow beak"}, {"index": 271, "image_id": 2344912, "entity": "bird", "caption": "grass that small bird is standing in", "question": ["is there grass ?", "is there small bird ?"], "prompt": "grass that small {} is standing in"}, {"index": 272, "image_id": 2344341, "entity": "bird", "caption": "Feathers of the bird laid back", "question": ["are there feathers ?", "is there the bird ?"], "prompt": "Feathers of the {} laid back"}, {"index": 273, "image_id": 2344328, "entity": "bird", "caption": "A birds head and neck.", "question": ["are there a birds ?", "is there neck ?"], "prompt": "A {}s head and neck."}, {"index": 274, "image_id": 2344328, "entity": "bird", "caption": "bird has grey beak", "question": ["is there bird ?", "is there grey beak ?"], "prompt": "{} has grey beak"}, {"index": 275, "image_id": 2344328, "entity": "bird", "caption": "bird has red eyes", "question": ["is there bird ?", "are there red eyes ?"], "prompt": "{} has red eyes"}, {"index": 276, "image_id": 2344328, "entity": "bird", "caption": "bird has black head", "question": ["is there bird ?", "is there black head ?"], "prompt": "{} has black head"}, {"index": 277, "image_id": 2344328, "entity": "bird", "caption": "bird has blue neck", "question": ["is there bird ?", "is there blue neck ?"], "prompt": "{} has blue neck"}, {"index": 278, "image_id": 2341438, "entity": "bird", "caption": "head of bird is gray", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is gray"}, {"index": 279, "image_id": 2341438, "entity": "bird", "caption": "eye of bird is red", "question": ["is there eye ?", "is there bird ?"], "prompt": "eye of {} is red"}, {"index": 280, "image_id": 2341058, "entity": "bird", "caption": "two birds standing on branches", "question": ["are there two birds ?", "are there branches ?"], "prompt": "two {}s standing on branches"}, {"index": 281, "image_id": 2339258, "entity": "bird", "caption": "the all black beak on the birds face", "question": ["is there the all black beak ?", "are there the birds ?"], "prompt": "the all black beak on the {}s face"}, {"index": 282, "image_id": 2339258, "entity": "bird", "caption": "the claw on the birds foot", "question": ["is there the claw ?", "are there the birds ?"], "prompt": "the claw on the {}s foot"}, {"index": 283, "image_id": 2338848, "entity": "bird", "caption": "the bird is eating the fruit", "question": ["is there the bird ?", "is there the fruit ?"], "prompt": "the {} is eating the fruit"}, {"index": 284, "image_id": 2338848, "entity": "bird", "caption": "A bird is eating some fruit", "question": ["is there a bird ?", "is there some fruit ?"], "prompt": "A {} is eating some fruit"}, {"index": 285, "image_id": 2338848, "entity": "bird", "caption": "A bird is getting some food", "question": ["is there a bird ?", "is there some food ?"], "prompt": "A {} is getting some food"}, {"index": 286, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is red and black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is red and black."}, {"index": 287, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is round.", "question": ["are there the birds ?"], "prompt": "The {}s eye is round."}, {"index": 288, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is small.", "question": ["are there the birds ?"], "prompt": "The {}s eye is small."}, {"index": 289, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are blue.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are blue."}, {"index": 290, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are red.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are red."}, {"index": 291, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are green.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are green."}, {"index": 292, "image_id": 2338848, "entity": "bird", "caption": "the birds beak is orange", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is orange"}, {"index": 293, "image_id": 2338638, "entity": "bird", "caption": "Blue and black bird standing on wood.", "question": ["is there blue and black bird ?", "is there wood ?"], "prompt": "Blue and black {} standing on wood."}, {"index": 294, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s tail", "question": ["is there tail ?"], "prompt": "this is a {}''s tail"}, {"index": 295, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s beak", "question": ["is there a bird''s beak ?"], "prompt": "this is a {}''s beak"}, {"index": 296, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s head", "question": ["is there a bird''s head ?"], "prompt": "this is a {}''s head"}, {"index": 297, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s wing", "question": ["is there wing ?"], "prompt": "this is a {}''s wing"}, {"index": 298, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s eye", "question": ["is there eye ?"], "prompt": "this is a {}''s eye"}, {"index": 299, "image_id": 2338318, "entity": "bird", "caption": "bird is on brown branch", "question": ["is there bird ?", "is there brown branch ?"], "prompt": "{} is on brown branch"}, {"index": 300, "image_id": 2336219, "entity": "bird", "caption": "bird has white eyes", "question": ["is there bird ?", "are there white eyes ?"], "prompt": "{} has white eyes"}, {"index": 301, "image_id": 2335105, "entity": "bird", "caption": "the ear lobes on the bird are red", "question": ["are there the ear lobes ?", "is there the bird ?"], "prompt": "the ear lobes on the {} are red"}, {"index": 302, "image_id": 2332681, "entity": "bird", "caption": "the bird has tiny ears", "question": ["is there the bird ?", "are there tiny ears ?"], "prompt": "the {} has tiny ears"}, {"index": 303, "image_id": 2331468, "entity": "bird", "caption": "the bird is in the water ", "question": ["is there the bird ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 304, "image_id": 2331215, "entity": "bird", "caption": "the birds wings are up", "question": ["are there the birds ?", "are there wings ?"], "prompt": "the {}s wings are up"}, {"index": 305, "image_id": 2331215, "entity": "bird", "caption": "A bird is afraid of the elephant", "question": ["is there a bird ?", "is there the elephant ?"], "prompt": "A {} is afraid of the elephant"}, {"index": 306, "image_id": 2331215, "entity": "bird", "caption": "A bird has spread out its wings", "question": ["is there a bird ?", "are there its wings ?"], "prompt": "A {} has spread out its wings"}, {"index": 307, "image_id": 2331215, "entity": "bird", "caption": "The bird has a long wingspan", "question": ["is there the bird ?", "is there a long wingspan ?"], "prompt": "The {} has a long wingspan"}, {"index": 308, "image_id": 2330695, "entity": "bird", "caption": "bird has a black beak ", "question": ["is there bird ?", "is there a black beak ?"], "prompt": "{} has a black beak "}, {"index": 309, "image_id": 2330695, "entity": "bird", "caption": "bird has gray feet", "question": ["is there bird ?", "are there gray feet ?"], "prompt": "{} has gray feet"}, {"index": 310, "image_id": 2330307, "entity": "bird", "caption": "bird has beady eye", "question": ["is there bird ?", "is there beady eye ?"], "prompt": "{} has beady eye"}, {"index": 311, "image_id": 2330307, "entity": "bird", "caption": "bird has black beak", "question": ["is there bird ?", "is there black beak ?"], "prompt": "{} has black beak"}, {"index": 312, "image_id": 2330307, "entity": "bird", "caption": "bird has 2 feet", "question": ["is there bird ?", "are there 2 feet ?"], "prompt": "{} has 2 feet"}, {"index": 313, "image_id": 2330080, "entity": "bird", "caption": "The bird is looking a yard gnome", "question": ["is there the bird ?", "is there a yard gnome ?"], "prompt": "The {} is looking a yard gnome"}, {"index": 314, "image_id": 2330080, "entity": "bird", "caption": "The bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "The {} has a yellow beak"}, {"index": 315, "image_id": 2328246, "entity": "bird", "caption": "tree leaves behind the bird", "question": ["is there tree ?", "is there the bird ?"], "prompt": "tree leaves behind the {}"}, {"index": 316, "image_id": 2326461, "entity": "bird", "caption": "white feathers on a birds head", "question": ["are there white feathers ?", "are there a birds ?"], "prompt": "white feathers on a {}s head"}, {"index": 317, "image_id": 2326461, "entity": "bird", "caption": "The bird is on a handle", "question": ["is there the bird ?", "is there a handle ?"], "prompt": "The {} is on a handle"}, {"index": 318, "image_id": 2326461, "entity": "bird", "caption": "Small black bird beak", "question": ["is there small black bird beak ?"], "prompt": "Small black {} beak"}, {"index": 319, "image_id": 2325550, "entity": "bird", "caption": "the bird is on a pole", "question": ["is there the bird ?", "is there a pole ?"], "prompt": "the {} is on a pole"}, {"index": 320, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow feathers", "question": ["is there the bird ?", "are there yellow feathers ?"], "prompt": "the {} has yellow feathers"}, {"index": 321, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow spiked hair", "question": ["is there the bird ?", "is there yellow spiked hair ?"], "prompt": "the {} has yellow spiked hair"}, {"index": 322, "image_id": 2325324, "entity": "bird", "caption": "bird has green breast", "question": ["is there bird ?", "is there green breast ?"], "prompt": "{} has green breast"}, {"index": 323, "image_id": 2325324, "entity": "bird", "caption": "bird has green tail", "question": ["is there bird ?", "is there green tail ?"], "prompt": "{} has green tail"}, {"index": 324, "image_id": 2325324, "entity": "bird", "caption": "bird has green head", "question": ["is there bird ?", "is there green head ?"], "prompt": "{} has green head"}, {"index": 325, "image_id": 2325324, "entity": "bird", "caption": "bird has orange talons", "question": ["is there bird ?", "are there orange talons ?"], "prompt": "{} has orange talons"}, {"index": 326, "image_id": 2325324, "entity": "bird", "caption": "bird has grey claws", "question": ["is there bird ?", "are there grey claws ?"], "prompt": "{} has grey claws"}, {"index": 327, "image_id": 2325324, "entity": "bird", "caption": "bird stands on banana", "question": ["is there bird ?", "is there banana ?"], "prompt": "{} stands on banana"}, {"index": 328, "image_id": 2325324, "entity": "bird", "caption": "Green bird is standing on banana.", "question": ["is there green bird ?", "is there banana ?"], "prompt": "Green {} is standing on banana."}, {"index": 329, "image_id": 2325324, "entity": "bird", "caption": "Light is shining on bird.", "question": ["is there light ?", "is there bird ?"], "prompt": "Light is shining on {}."}, {"index": 330, "image_id": 2325324, "entity": "bird", "caption": "bird has orange feet", "question": ["is there bird ?", "are there orange feet ?"], "prompt": "{} has orange feet"}, {"index": 331, "image_id": 2325324, "entity": "bird", "caption": "bird has black nails", "question": ["is there bird ?", "are there black nails ?"], "prompt": "{} has black nails"}, {"index": 332, "image_id": 2325324, "entity": "bird", "caption": "bird's eye is purple blue and black", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is purple blue and black"}, {"index": 333, "image_id": 2323975, "entity": "bird", "caption": "Orange beak on a brown and white bird.", "question": ["is there orange beak ?", "is there a brown and white bird ?"], "prompt": "Orange beak on a brown and white {}."}, {"index": 334, "image_id": 2323560, "entity": "bird", "caption": "bird perched on a scarred limb", "question": ["is there bird ?", "is there a scarred limb ?"], "prompt": "{} perched on a scarred limb"}, {"index": 335, "image_id": 2322830, "entity": "bird", "caption": "bird is drinking water from wood bucket", "question": ["is there bird ?", "is there water ?", "is there wood bucket ?"], "prompt": "{} is drinking water from wood bucket"}, {"index": 336, "image_id": 2322624, "entity": "bird", "caption": "The birds beak has a point.", "question": ["are there the birds beak ?", "is there a point ?"], "prompt": "The {}s beak has a point."}, {"index": 337, "image_id": 2322624, "entity": "bird", "caption": "The birds chest is white.", "question": ["are there the birds ?"], "prompt": "The {}s chest is white."}, {"index": 338, "image_id": 2320805, "entity": "bird", "caption": "orange bird with black and white wings perched", "question": ["are there black and white wings ?"], "prompt": "orange {} with black and white wings perched"}, {"index": 339, "image_id": 2320805, "entity": "bird", "caption": "bird's beak contains blood and other animal remains", "question": ["is there bird's beak ?", "is there blood ?", "is there other animal ?"], "prompt": "{}'s beak contains blood and other animal remains"}, {"index": 340, "image_id": 2320805, "entity": "bird", "caption": "bird pereched of grey rock", "question": ["is there grey rock ?"], "prompt": "{} pereched of grey rock"}, {"index": 341, "image_id": 2320805, "entity": "bird", "caption": "a large tree branch with a bird nested on it", "question": ["is there a large tree branch ?", "is there a bird ?"], "prompt": "a large tree branch with a {} nested on it"}, {"index": 342, "image_id": 2320805, "entity": "bird", "caption": "a tree limb with a bird rested on it", "question": ["is there a tree limb ?", "is there a bird ?"], "prompt": "a tree limb with a {} rested on it"}, {"index": 343, "image_id": 2320805, "entity": "bird", "caption": "bird has grey head", "question": ["is there bird ?", "is there grey head ?"], "prompt": "{} has grey head"}, {"index": 344, "image_id": 2318439, "entity": "bird", "caption": "Baby bird is standing in ground.", "question": ["is there baby bird ?", "is there ground ?"], "prompt": "Baby {} is standing in ground."}, {"index": 345, "image_id": 2318290, "entity": "bird", "caption": "section of brown tipped bird wing feather", "question": ["is there section ?", "is there bird wing feather ?"], "prompt": "section of brown tipped {} wing feather"}, {"index": 346, "image_id": 2318104, "entity": "bird", "caption": "a bird that is standing outside", "question": ["is there a bird ?"], "prompt": "a {} that is standing outside"}, {"index": 347, "image_id": 2317875, "entity": "bird", "caption": "the bird has long gray legs", "question": ["is there the bird ?", "are there long gray legs ?"], "prompt": "the {} has long gray legs"}, {"index": 348, "image_id": 2317875, "entity": "bird", "caption": "the bird has a small beady eye", "question": ["is there the bird ?", "is there a small beady eye ?"], "prompt": "the {} has a small beady eye"}, {"index": 349, "image_id": 2317875, "entity": "bird", "caption": "the bird has a big beak", "question": ["is there the bird ?", "is there a big beak ?"], "prompt": "the {} has a big beak"}, {"index": 350, "image_id": 2317875, "entity": "bird", "caption": "the bird has tons of feathers", "question": ["is there the bird ?", "are there tons ?", "are there feathers ?"], "prompt": "the {} has tons of feathers"}, {"index": 351, "image_id": 2317875, "entity": "bird", "caption": "the bird has its mouth open", "question": ["is there the bird ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 352, "image_id": 2317875, "entity": "bird", "caption": "the bird is standing in grass", "question": ["is there the bird ?", "is there grass ?"], "prompt": "the {} is standing in grass"}, {"index": 353, "image_id": 2317875, "entity": "bird", "caption": "the bird is near a pond", "question": ["is there the bird ?", "is there a pond ?"], "prompt": "the {} is near a pond"}, {"index": 354, "image_id": 2317249, "entity": "bird", "caption": "The birds are out in the forest", "question": ["are there the birds ?", "is there the forest ?"], "prompt": "The {}s are out in the forest"}, {"index": 355, "image_id": 2317249, "entity": "bird", "caption": "The birds are watching for predators", "question": ["are there the birds ?", "are there predators ?"], "prompt": "The {}s are watching for predators"}, {"index": 356, "image_id": 2316597, "entity": "bird", "caption": "the pool of bird feeding ", "question": ["is there the pool ?", "is there bird feeding ?"], "prompt": "the pool of {} feeding "}, {"index": 357, "image_id": 2316597, "entity": "bird", "caption": "a bird iwth a beak", "question": ["is there a bird ?", "is there a beak ?"], "prompt": "a {} iwth a beak"}, {"index": 358, "image_id": 2316285, "entity": "bird", "caption": "bird perched on a branch", "question": ["is there bird ?", "is there a branch ?"], "prompt": "{} perched on a branch"}, {"index": 359, "image_id": 2414525, "entity": "bird", "caption": "man giving bird wine", "question": ["is there man ?", "is there bird wine ?"], "prompt": "man giving {} wine"}, {"index": 360, "image_id": 2413894, "entity": "bird", "caption": "the bird has two eyes", "question": ["is there the bird ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 361, "image_id": 2413894, "entity": "bird", "caption": "The bird is standing in calm water.", "question": ["is there the bird ?", "is there calm water ?"], "prompt": "The {} is standing in calm water."}, {"index": 362, "image_id": 2413604, "entity": "bird", "caption": "the bird is on the chair", "question": ["is there the bird ?", "is there the chair ?"], "prompt": "the {} is on the chair"}, {"index": 363, "image_id": 2413604, "entity": "bird", "caption": "The bird is outside resting on the edge of a wicker basket chair. ", "question": ["is there the bird ?", "is there the edge ?", "is there a wicker basket chair ?"], "prompt": "The {} is outside resting on the edge of a wicker basket chair. "}, {"index": 364, "image_id": 2413604, "entity": "bird", "caption": "The bird has thick black feathers. ", "question": ["is there the bird ?", "are there thick black feathers ?"], "prompt": "The {} has thick black feathers. "}, {"index": 365, "image_id": 2413604, "entity": "bird", "caption": "little bird has extremely expressive eyes", "question": ["is there little bird ?", "are there extremely expressive eyes ?"], "prompt": "little {} has extremely expressive eyes"}, {"index": 366, "image_id": 2413070, "entity": "bird", "caption": "two birds feet", "question": ["are there two birds ?"], "prompt": "two {}s feet"}, {"index": 367, "image_id": 2416459, "entity": "bird", "caption": "bird perched on the flower", "question": ["is there bird ?", "is there the flower ?"], "prompt": "{} perched on the flower"}, {"index": 368, "image_id": 2417074, "entity": "bird", "caption": "the bird has red color beak", "question": ["is there the bird ?", "is there red color beak ?"], "prompt": "the {} has red color beak"}, {"index": 369, "image_id": 2417074, "entity": "bird", "caption": "the bird has paddle feet", "question": ["is there the bird ?", "are there paddle feet ?"], "prompt": "the {} has paddle feet"}, {"index": 370, "image_id": 2417074, "entity": "bird", "caption": "the wings of the bird are gray", "question": ["are there the wings ?", "is there the bird ?"], "prompt": "the wings of the {} are gray"}, {"index": 371, "image_id": 2417074, "entity": "bird", "caption": "birds foot ", "question": ["are there birds ?"], "prompt": "{}s foot "}, {"index": 372, "image_id": 2417074, "entity": "bird", "caption": "beak of bird is closed", "question": ["is there beak ?", "is there bird ?"], "prompt": "beak of {} is closed"}, {"index": 373, "image_id": 2417074, "entity": "bird", "caption": "foot of bird is on dock", "question": ["is there foot ?", "is there bird ?", "is there dock ?"], "prompt": "foot of {} is on dock"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n01582220.json b/data/imagenet/compositions/prompts/n01582220.json
new file mode 100644
index 0000000000000000000000000000000000000000..d2f6a90f12f4f06cb56b687a87e91c16757b699c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01582220.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2220, "entity": "bird", "caption": "the bird has a fish in its mouth", "question": ["is there the bird ?", "is there a fish ?", "is there its mouth ?"], "prompt": "the {} has a fish in its mouth"}, {"index": 1, "image_id": 2612, "entity": "bird", "caption": "bird has tan beak", "question": ["is there bird ?", "is there tan beak ?"], "prompt": "{} has tan beak"}, {"index": 2, "image_id": 2612, "entity": "bird", "caption": "bird has brown eye", "question": ["is there bird ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 3, "image_id": 2612, "entity": "bird", "caption": "bird has black feathers", "question": ["is there bird ?", "are there black feathers ?"], "prompt": "{} has black feathers"}, {"index": 4, "image_id": 2613, "entity": "bird", "caption": "birds have orange beaks", "question": ["are there birds ?", "are there orange beaks ?"], "prompt": "{}s have orange beaks"}, {"index": 5, "image_id": 2613, "entity": "bird", "caption": "bird has white feathers", "question": ["is there bird ?", "are there white feathers ?"], "prompt": "{} has white feathers"}, {"index": 6, "image_id": 2613, "entity": "bird", "caption": "bird has grey leg", "question": ["is there bird ?"], "prompt": "{} has grey leg"}, {"index": 7, "image_id": 2613, "entity": "bird", "caption": "bird stands on one leg", "question": ["is there bird ?", "is there one leg ?"], "prompt": "{} stands on one leg"}, {"index": 8, "image_id": 2619, "entity": "bird", "caption": "the eye of the bird is black", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "the eye of the {} is black"}, {"index": 9, "image_id": 2619, "entity": "bird", "caption": "the bird feet is black", "question": ["are there the bird feet ?"], "prompt": "the {} feet is black"}, {"index": 10, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food out of the person's hand", "question": ["is there the bird ?", "is there food ?", "is there the person's hand ?"], "prompt": "The {} is eating food out of the person's hand"}, {"index": 11, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food", "question": ["is there the bird ?", "is there food ?"], "prompt": "The {} is eating food"}, {"index": 12, "image_id": 2415095, "entity": "bird", "caption": "A bird with red feathers is eating food", "question": ["is there a bird ?", "are there red feathers ?", "is there food ?"], "prompt": "A {} with red feathers is eating food"}, {"index": 13, "image_id": 2415095, "entity": "bird", "caption": "The red feather bird is eating food out of a person's hand", "question": ["is there the red feather bird ?", "is there food ?", "is there a person's hand ?"], "prompt": "The red feather {} is eating food out of a person's hand"}, {"index": 14, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating an apples from the person's hand", "question": ["is there the bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The {} is eating an apples from the person's hand"}, {"index": 15, "image_id": 2415095, "entity": "bird", "caption": "The red-feathered bird is eating an apples from the person's hand", "question": ["is there the red-feathered bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The red-feathered {} is eating an apples from the person's hand"}, {"index": 16, "image_id": 2414024, "entity": "bird", "caption": "little bird with chest puffed out", "question": ["is there little bird ?", "is there chest ?"], "prompt": "little {} with chest puffed out"}, {"index": 17, "image_id": 2412521, "entity": "bird", "caption": "bird has red patch", "question": ["is there bird ?", "is there red patch ?"], "prompt": "{} has red patch"}, {"index": 18, "image_id": 2412521, "entity": "bird", "caption": "wood is under bird", "question": ["is there wood ?", "is there bird ?"], "prompt": "wood is under {}"}, {"index": 19, "image_id": 2412521, "entity": "bird", "caption": "black bird has it's mouth open", "question": ["is there black bird ?"], "prompt": "black {} has it's mouth open"}, {"index": 20, "image_id": 2412521, "entity": "bird", "caption": "bird perched on log", "question": ["is there bird ?", "is there log ?"], "prompt": "{} perched on log"}, {"index": 21, "image_id": 2412521, "entity": "bird", "caption": "black bird leg slanted from body", "question": ["is there black bird leg ?", "is there body ?"], "prompt": "black {} leg slanted from body"}, {"index": 22, "image_id": 2412061, "entity": "bird", "caption": "Black bird beak", "question": ["is there black bird beak ?"], "prompt": "Black {} beak"}, {"index": 23, "image_id": 2412061, "entity": "bird", "caption": "Black-feathered bird looks up to the sky", "question": ["is there black-feathered bird ?", "is there the sky ?"], "prompt": "Black-feathered {} looks up to the sky"}, {"index": 24, "image_id": 2409570, "entity": "bird", "caption": "the bird has two feet", "question": ["is there the bird ?", "are there two feet ?"], "prompt": "the {} has two feet"}, {"index": 25, "image_id": 2409570, "entity": "bird", "caption": "the bird is biting its tail", "question": ["is there the bird ?", "is there its tail ?"], "prompt": "the {} is biting its tail"}, {"index": 26, "image_id": 2409570, "entity": "bird", "caption": "the bird has wings", "question": ["is there the bird ?", "are there wings ?"], "prompt": "the {} has wings"}, {"index": 27, "image_id": 2409570, "entity": "bird", "caption": "White bird with black tail feathers standing on the sand", "question": ["is there white bird ?", "are there black tail feathers ?", "is there the sand ?"], "prompt": "White {} with black tail feathers standing on the sand"}, {"index": 28, "image_id": 2409306, "entity": "bird", "caption": "a fragment of ground that a young bird is standing on", "question": ["is there a fragment ?", "is there ground ?", "is there a young bird ?"], "prompt": "a fragment of ground that a young {} is standing on"}, {"index": 29, "image_id": 2409306, "entity": "bird", "caption": "head of bird is polka dotted", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is polka dotted"}, {"index": 30, "image_id": 2409306, "entity": "bird", "caption": "a baby bird stands on the ground", "question": ["is there a baby bird ?", "is there the ground ?"], "prompt": "a baby {} stands on the ground"}, {"index": 31, "image_id": 2409215, "entity": "bird", "caption": "The bird's beak is orange. ", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is orange. "}, {"index": 32, "image_id": 2409215, "entity": "bird", "caption": "The bird is flying above water. ", "question": ["is there the bird ?", "is there water ?"], "prompt": "The {} is flying above water. "}, {"index": 33, "image_id": 2409215, "entity": "bird", "caption": "End of the bird's wing that is primarily black", "question": ["is there end ?", "is there the bird's wing ?"], "prompt": "End of the {}'s wing that is primarily black"}, {"index": 34, "image_id": 2409045, "entity": "bird", "caption": "Neck of bird has S shape", "question": ["is there neck ?", "is there bird ?", "are there s ?", "is there shape ?"], "prompt": "Neck of {} has S shape"}, {"index": 35, "image_id": 2409045, "entity": "bird", "caption": "Grey bird rising into the air", "question": ["is there grey bird ?", "is there the air ?"], "prompt": "Grey {} rising into the air"}, {"index": 36, "image_id": 2409010, "entity": "bird", "caption": "a bird has a small creature in its mouth", "question": ["is there a bird ?", "is there a small creature ?", "is there its mouth ?"], "prompt": "a {} has a small creature in its mouth"}, {"index": 37, "image_id": 2409010, "entity": "bird", "caption": "a bird walks along the wet sand", "question": ["is there a bird ?", "is there the wet sand ?"], "prompt": "a {} walks along the wet sand"}, {"index": 38, "image_id": 2408592, "entity": "bird", "caption": "a bird stands at the edge of the water", "question": ["is there a bird ?", "is there the edge ?", "is there the water ?"], "prompt": "a {} stands at the edge of the water"}, {"index": 39, "image_id": 2408592, "entity": "bird", "caption": "The bird has webbed feet", "question": ["is there the bird ?"], "prompt": "The {} has webbed feet"}, {"index": 40, "image_id": 2408592, "entity": "bird", "caption": "The bird is standing in the dirt", "question": ["is there the bird ?", "is there the dirt ?"], "prompt": "The {} is standing in the dirt"}, {"index": 41, "image_id": 2408592, "entity": "bird", "caption": "the ground the bird is standing on", "question": ["is there the ground ?", "is there the bird ?"], "prompt": "the ground the {} is standing on"}, {"index": 42, "image_id": 2408299, "entity": "bird", "caption": "the bird is hiding in a plant", "question": ["is there the bird ?", "is there a plant ?"], "prompt": "the {} is hiding in a plant"}, {"index": 43, "image_id": 2408299, "entity": "bird", "caption": "the bird has a white belly", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 44, "image_id": 2407737, "entity": "bird", "caption": "this is a birds eye", "question": ["are there a birds ?"], "prompt": "this is a {}s eye"}, {"index": 45, "image_id": 2407737, "entity": "bird", "caption": "this is a bird tail", "question": ["is there a bird tail ?"], "prompt": "this is a {} tail"}, {"index": 46, "image_id": 2407737, "entity": "bird", "caption": "the bird has sharp beak", "question": ["is there the bird ?", "is there sharp beak ?"], "prompt": "the {} has sharp beak"}, {"index": 47, "image_id": 2407737, "entity": "bird", "caption": "the branches are beside the bird", "question": ["are there the branches ?", "is there the bird ?"], "prompt": "the branches are beside the {}"}, {"index": 48, "image_id": 2407737, "entity": "bird", "caption": "the bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "the {} has thin legs"}, {"index": 49, "image_id": 2407737, "entity": "bird", "caption": "the bird has black eyes", "question": ["is there the bird ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 50, "image_id": 2407316, "entity": "bird", "caption": "the bird has black legs", "question": ["is there the bird ?", "are there black legs ?"], "prompt": "the {} has black legs"}, {"index": 51, "image_id": 2407316, "entity": "bird", "caption": "the bird has three toes", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "the {} has three toes"}, {"index": 52, "image_id": 2406956, "entity": "bird", "caption": "black feathers on top of birds head", "question": ["are there black feathers ?", "is there top ?", "are there birds ?"], "prompt": "black feathers on top of {}s head"}, {"index": 53, "image_id": 2406956, "entity": "bird", "caption": "this is the bird's eye", "question": ["is there the bird's eye ?"], "prompt": "this is the {}'s eye"}, {"index": 54, "image_id": 2406956, "entity": "bird", "caption": "an object is in the bird's beak", "question": ["is there an object ?", "is there the bird's beak ?"], "prompt": "an object is in the {}'s beak"}, {"index": 55, "image_id": 2406956, "entity": "bird", "caption": "the bird's eye is black in color", "question": ["is there the bird's eye ?", "is there color ?"], "prompt": "the {}'s eye is black in color"}, {"index": 56, "image_id": 2404798, "entity": "bird", "caption": "bird has long beak", "question": ["is there bird ?", "is there long beak ?"], "prompt": "{} has long beak"}, {"index": 57, "image_id": 2404798, "entity": "bird", "caption": "bird has pink feathers", "question": ["is there bird ?", "are there pink feathers ?"], "prompt": "{} has pink feathers"}, {"index": 58, "image_id": 2404798, "entity": "bird", "caption": "bird has red eye", "question": ["is there bird ?", "is there red eye ?"], "prompt": "{} has red eye"}, {"index": 59, "image_id": 2404798, "entity": "bird", "caption": "head of bird is featherless", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is featherless"}, {"index": 60, "image_id": 2404798, "entity": "bird", "caption": "bird has green tag on leg", "question": ["is there bird ?", "is there green tag ?", "is there leg ?"], "prompt": "{} has green tag on leg"}, {"index": 61, "image_id": 2404798, "entity": "bird", "caption": "The bird is in the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 62, "image_id": 2404798, "entity": "bird", "caption": "The bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "The {} has a beak"}, {"index": 63, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is open", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 64, "image_id": 2404798, "entity": "bird", "caption": "The bird is wading in the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is wading in the water."}, {"index": 65, "image_id": 2404798, "entity": "bird", "caption": "The bird has a long beak.", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak."}, {"index": 66, "image_id": 2404798, "entity": "bird", "caption": "The bird has light and dark pink feathers.", "question": ["is there the bird ?", "are there light and dark pink feathers ?"], "prompt": "The {} has light and dark pink feathers."}, {"index": 67, "image_id": 2404798, "entity": "bird", "caption": "The bird has a green band around the leg.", "question": ["is there the bird ?", "is there a green band ?", "is there the leg ?"], "prompt": "The {} has a green band around the leg."}, {"index": 68, "image_id": 2404798, "entity": "bird", "caption": "The bird has white neck feathers.", "question": ["is there the bird ?", "are there white neck feathers ?"], "prompt": "The {} has white neck feathers."}, {"index": 69, "image_id": 2404798, "entity": "bird", "caption": "Large rocks are behind the birds.", "question": ["are there large rocks ?", "are there the birds ?"], "prompt": "Large rocks are behind the {}s."}, {"index": 70, "image_id": 2404798, "entity": "bird", "caption": "Water is dripping from the bird's beak.", "question": ["is there water ?", "is there the bird's beak ?"], "prompt": "Water is dripping from the {}'s beak."}, {"index": 71, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is yellow and black.", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is yellow and black."}, {"index": 72, "image_id": 2404673, "entity": "bird", "caption": "the bird is on a long black metal piece", "question": ["is there the bird ?", "is there a long black metal piece ?"], "prompt": "the {} is on a long black metal piece"}, {"index": 73, "image_id": 2404673, "entity": "bird", "caption": "glass sun catchers are hanging in front of the wooden bird", "question": ["are there glass sun catchers ?", "is there front ?", "is there the wooden bird ?"], "prompt": "glass sun catchers are hanging in front of the wooden {}"}, {"index": 74, "image_id": 2404673, "entity": "bird", "caption": "the bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "the {} has a beak"}, {"index": 75, "image_id": 2404673, "entity": "bird", "caption": "the window is reflecting the bird", "question": ["is there the window ?", "is there the bird ?"], "prompt": "the window is reflecting the {}"}, {"index": 76, "image_id": 2404673, "entity": "bird", "caption": "the bird has 1 leg", "question": ["is there the bird ?", "is there 1 leg ?"], "prompt": "the {} has 1 leg"}, {"index": 77, "image_id": 2404673, "entity": "bird", "caption": "the bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "the {} has a long beak"}, {"index": 78, "image_id": 2404673, "entity": "bird", "caption": "the bird's eye is black", "question": ["is there the bird's eye ?"], "prompt": "the {}'s eye is black"}, {"index": 79, "image_id": 2404673, "entity": "bird", "caption": "the bird's leg is long", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is long"}, {"index": 80, "image_id": 2404673, "entity": "bird", "caption": "the bird is sitting on the window", "question": ["is there the bird ?", "is there the window ?"], "prompt": "the {} is sitting on the window"}, {"index": 81, "image_id": 2404673, "entity": "bird", "caption": "The bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak"}, {"index": 82, "image_id": 2403435, "entity": "bird", "caption": "person is feeding bird", "question": ["is there person ?", "is there bird ?"], "prompt": "person is feeding {}"}, {"index": 83, "image_id": 2401304, "entity": "bird", "caption": "a bird is standing on weathered wood", "question": ["is there a bird ?", "is there weathered wood ?"], "prompt": "a {} is standing on weathered wood"}, {"index": 84, "image_id": 2401079, "entity": "bird", "caption": "bird's beak is black and red", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black and red"}, {"index": 85, "image_id": 2401079, "entity": "bird", "caption": "the bird's feet are black", "question": ["are there the bird's feet ?"], "prompt": "the {}'s feet are black"}, {"index": 86, "image_id": 2400985, "entity": "bird", "caption": "the bird has a short black beak", "question": ["is there the bird ?", "is there a short black beak ?"], "prompt": "the {} has a short black beak"}, {"index": 87, "image_id": 2400985, "entity": "bird", "caption": "the bird has sharp claws", "question": ["is there the bird ?", "are there sharp claws ?"], "prompt": "the {} has sharp claws"}, {"index": 88, "image_id": 2400985, "entity": "bird", "caption": "A birds left side wing. ", "question": ["are there a birds ?", "is there side wing ?"], "prompt": "A {}s left side wing. "}, {"index": 89, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds right foot", "question": ["are there the fully shown birds ?"], "prompt": "The fully shown {}s right foot"}, {"index": 90, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds left foot", "question": ["are there the fully shown birds ?", "is there foot ?"], "prompt": "The fully shown {}s left foot"}, {"index": 91, "image_id": 2396390, "entity": "bird", "caption": "bird perched on wooden pole ", "question": ["is there bird ?", "is there wooden pole ?"], "prompt": "{} perched on wooden pole "}, {"index": 92, "image_id": 2396390, "entity": "bird", "caption": "bird angled sideways with feet tightly gripping", "question": ["is there bird ?", "are there feet ?"], "prompt": "{} angled sideways with feet tightly gripping"}, {"index": 93, "image_id": 2396109, "entity": "bird", "caption": "The bird has yellow eyes.", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes."}, {"index": 94, "image_id": 2396109, "entity": "bird", "caption": "The bird stands on the tree.", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "The {} stands on the tree."}, {"index": 95, "image_id": 2396109, "entity": "bird", "caption": "this is a bird", "question": ["is there a bird ?"], "prompt": "this is a {}"}, {"index": 96, "image_id": 2396109, "entity": "bird", "caption": "the bird is on the tree", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "the {} is on the tree"}, {"index": 97, "image_id": 2396109, "entity": "bird", "caption": "the bird has yellow eyes", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "the {} has yellow eyes"}, {"index": 98, "image_id": 2396109, "entity": "bird", "caption": "the bird's legs are long", "question": ["are there the bird's legs ?"], "prompt": "the {}'s legs are long"}, {"index": 99, "image_id": 2396109, "entity": "bird", "caption": "The bird has a pointy beak.", "question": ["is there the bird ?", "is there a pointy beak ?"], "prompt": "The {} has a pointy beak."}, {"index": 100, "image_id": 2396109, "entity": "bird", "caption": "The bird has two legs.", "question": ["is there the bird ?", "are there two legs ?"], "prompt": "The {} has two legs."}, {"index": 101, "image_id": 2396109, "entity": "bird", "caption": "The bird has a yellow eye.", "question": ["is there the bird ?", "is there a yellow eye ?"], "prompt": "The {} has a yellow eye."}, {"index": 102, "image_id": 2396109, "entity": "bird", "caption": "The bird has a wing.", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "The {} has a wing."}, {"index": 103, "image_id": 2395577, "entity": "bird", "caption": "the bird has a wing", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "the {} has a wing"}, {"index": 104, "image_id": 2395577, "entity": "bird", "caption": "the bird has an eye", "question": ["is there the bird ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 105, "image_id": 2394957, "entity": "bird", "caption": "bird stand on rim of bowl", "question": ["is there bird ?", "is there rim ?", "is there bowl ?"], "prompt": "{} stand on rim of bowl"}, {"index": 106, "image_id": 2394957, "entity": "bird", "caption": "bird's head is black and blue in color", "question": ["is there bird's head ?", "is there color ?"], "prompt": "{}'s head is black and blue in color"}, {"index": 107, "image_id": 2394957, "entity": "bird", "caption": "bird's eye is red", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is red"}, {"index": 108, "image_id": 2393198, "entity": "bird", "caption": "the birds long beak", "question": ["are there the birds ?"], "prompt": "the {}s long beak"}, {"index": 109, "image_id": 2393198, "entity": "bird", "caption": "the feathers on the birds chest", "question": ["are there the feathers ?", "are there the birds ?"], "prompt": "the feathers on the {}s chest"}, {"index": 110, "image_id": 2393198, "entity": "bird", "caption": "the log the birds standing on", "question": ["is there the log ?", "are there the birds ?"], "prompt": "the log the {}s standing on"}, {"index": 111, "image_id": 2392907, "entity": "bird", "caption": "bird has yellow legs", "question": ["is there bird ?", "are there yellow legs ?"], "prompt": "{} has yellow legs"}, {"index": 112, "image_id": 2392907, "entity": "bird", "caption": "bird has large toe nails", "question": ["is there bird ?", "are there large toe nails ?"], "prompt": "{} has large toe nails"}, {"index": 113, "image_id": 2392255, "entity": "bird", "caption": "The birds tail feathers.", "question": ["are there the birds tail feathers ?"], "prompt": "The {}s tail feathers."}, {"index": 114, "image_id": 2392255, "entity": "bird", "caption": "The bird is standing on a person's hand.", "question": ["is there the bird ?", "is there a person's hand ?"], "prompt": "The {} is standing on a person's hand."}, {"index": 115, "image_id": 2392255, "entity": "bird", "caption": "The bird has grey feathers.", "question": ["is there the bird ?", "are there grey feathers ?"], "prompt": "The {} has grey feathers."}, {"index": 116, "image_id": 2392255, "entity": "bird", "caption": "The bird has a black beak.", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "The {} has a black beak."}, {"index": 117, "image_id": 2392255, "entity": "bird", "caption": "the bird has a black beak", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "the {} has a black beak"}, {"index": 118, "image_id": 2392255, "entity": "bird", "caption": "the bird has black legs and claws", "question": ["is there the bird ?", "are there black legs ?", "are there claws ?"], "prompt": "the {} has black legs and claws"}, {"index": 119, "image_id": 2392255, "entity": "bird", "caption": "the bird's head is white and gray", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is white and gray"}, {"index": 120, "image_id": 2391103, "entity": "bird", "caption": "Top of bird's head is jet black", "question": ["is there top ?", "is there bird's head ?", "is there jet black ?"], "prompt": "Top of {}'s head is jet black"}, {"index": 121, "image_id": 2390453, "entity": "bird", "caption": "the bird has eye", "question": ["is there the bird ?", "is there eye ?"], "prompt": "the {} has eye"}, {"index": 122, "image_id": 2389247, "entity": "bird", "caption": "a birds head", "question": ["are there a birds ?"], "prompt": "a {}s head"}, {"index": 123, "image_id": 2389247, "entity": "bird", "caption": "The birds beak.", "question": ["are there the birds ?"], "prompt": "The {}s beak."}, {"index": 124, "image_id": 2388774, "entity": "bird", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the {} is in the car "}, {"index": 125, "image_id": 2388774, "entity": "bird", "caption": "The bird has small black feathers ", "question": ["is there the bird ?", "are there small black feathers ?"], "prompt": "The {} has small black feathers "}, {"index": 126, "image_id": 2387336, "entity": "bird", "caption": "part of branch birds are sitting on", "question": ["is there part ?", "are there branch birds ?"], "prompt": "part of branch {}s are sitting on"}, {"index": 127, "image_id": 2385839, "entity": "bird", "caption": "the bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "the {} has black and white feathers"}, {"index": 128, "image_id": 2384739, "entity": "bird", "caption": "bird's legs are curled", "question": ["are there bird's legs ?"], "prompt": "{}'s legs are curled"}, {"index": 129, "image_id": 2384739, "entity": "bird", "caption": "a bird is lying on the pavement", "question": ["is there a bird ?", "is there the pavement ?"], "prompt": "a {} is lying on the pavement"}, {"index": 130, "image_id": 2384739, "entity": "bird", "caption": "the bird's head is upside down", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is upside down"}, {"index": 131, "image_id": 2384739, "entity": "bird", "caption": "the black cat is lying next to the bird", "question": ["is there the black cat ?", "is there the bird ?"], "prompt": "the black cat is lying next to the {}"}, {"index": 132, "image_id": 2384582, "entity": "bird", "caption": "This bird has a red beak.", "question": ["is there this bird ?", "is there a red beak ?"], "prompt": "This {} has a red beak."}, {"index": 133, "image_id": 2384582, "entity": "bird", "caption": "The bird is standing on a sandy beach.", "question": ["is there the bird ?", "is there a sandy beach ?"], "prompt": "The {} is standing on a sandy beach."}, {"index": 134, "image_id": 2384582, "entity": "bird", "caption": "This bird has black eyes.", "question": ["is there this bird ?", "are there black eyes ?"], "prompt": "This {} has black eyes."}, {"index": 135, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white belly.", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "The {} has a white belly."}, {"index": 136, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white body.", "question": ["is there the bird ?", "is there a white body ?"], "prompt": "The {} has a white body."}, {"index": 137, "image_id": 2384582, "entity": "bird", "caption": "The bird has black and white tail feathers.", "question": ["is there the bird ?", "are there black and white tail feathers ?"], "prompt": "The {} has black and white tail feathers."}, {"index": 138, "image_id": 2384582, "entity": "bird", "caption": "The bird has orange legs.", "question": ["is there the bird ?", "are there orange legs ?"], "prompt": "The {} has orange legs."}, {"index": 139, "image_id": 2384582, "entity": "bird", "caption": "The bird has an orange beak.", "question": ["is there the bird ?", "is there an orange beak ?"], "prompt": "The {} has an orange beak."}, {"index": 140, "image_id": 2382811, "entity": "bird", "caption": "The bird is above the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is above the water"}, {"index": 141, "image_id": 2382811, "entity": "bird", "caption": "body of seabird is white", "question": ["is there body ?", "is there seabird ?"], "prompt": "body of sea{} is white"}, {"index": 142, "image_id": 2381448, "entity": "bird", "caption": "birds feet are visible", "question": ["are there birds ?", "are there feet ?"], "prompt": "{}s feet are visible"}, {"index": 143, "image_id": 2381401, "entity": "bird", "caption": "the bird has a slender beak", "question": ["is there the bird ?", "is there a slender beak ?"], "prompt": "the {} has a slender beak"}, {"index": 144, "image_id": 2381401, "entity": "bird", "caption": "the bird has stripes on his back", "question": ["is there the bird ?", "are there stripes ?", "is there his back ?"], "prompt": "the {} has stripes on his back"}, {"index": 145, "image_id": 2381401, "entity": "bird", "caption": "the birds beak is very long", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is very long"}, {"index": 146, "image_id": 2381401, "entity": "bird", "caption": "The bird is standing on the branches of the tree.", "question": ["is there the bird ?", "are there the branches ?", "is there the tree ?"], "prompt": "The {} is standing on the branches of the tree."}, {"index": 147, "image_id": 2381401, "entity": "bird", "caption": "The bird has a long black beak.", "question": ["is there the bird ?", "is there a long black beak ?"], "prompt": "The {} has a long black beak."}, {"index": 148, "image_id": 2381401, "entity": "bird", "caption": "The bird has long red legs.", "question": ["is there the bird ?", "are there long red legs ?"], "prompt": "The {} has long red legs."}, {"index": 149, "image_id": 2381401, "entity": "bird", "caption": "the bird is red and beautiful", "question": ["is there the bird ?"], "prompt": "the {} is red and beautiful"}, {"index": 150, "image_id": 2380312, "entity": "bird", "caption": "the bird has a tail", "question": ["is there the bird ?", "is there a tail ?"], "prompt": "the {} has a tail"}, {"index": 151, "image_id": 2380312, "entity": "bird", "caption": "the bird has a head", "question": ["is there the bird ?", "is there a head ?"], "prompt": "the {} has a head"}, {"index": 152, "image_id": 2380026, "entity": "bird", "caption": "the bird has a blue head.", "question": ["is there the bird ?", "is there a blue head ?"], "prompt": "the {} has a blue head."}, {"index": 153, "image_id": 2380026, "entity": "bird", "caption": "The bird has yellow and orange on it's chest.", "question": ["is there the bird ?", "is there it's chest ?"], "prompt": "The {} has yellow and orange on it's chest."}, {"index": 154, "image_id": 2380026, "entity": "bird", "caption": "The bird has three toes.", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "The {} has three toes."}, {"index": 155, "image_id": 2380026, "entity": "bird", "caption": "bird's wings are green", "question": ["are there bird's wings ?"], "prompt": "{}'s wings are green"}, {"index": 156, "image_id": 2380026, "entity": "bird", "caption": "bird has blue head", "question": ["is there bird ?", "is there blue head ?"], "prompt": "{} has blue head"}, {"index": 157, "image_id": 2380026, "entity": "bird", "caption": "bird has orange beak", "question": ["is there bird ?", "is there orange beak ?"], "prompt": "{} has orange beak"}, {"index": 158, "image_id": 2380026, "entity": "bird", "caption": "bird has green body", "question": ["is there bird ?", "is there green body ?"], "prompt": "{} has green body"}, {"index": 159, "image_id": 2380026, "entity": "bird", "caption": "bird has brown talons", "question": ["is there bird ?", "are there brown talons ?"], "prompt": "{} has brown talons"}, {"index": 160, "image_id": 2378627, "entity": "bird", "caption": "A birds beak", "question": ["are there a birds ?"], "prompt": "A {}s beak"}, {"index": 161, "image_id": 2378627, "entity": "bird", "caption": "A birds wing", "question": ["are there a birds ?"], "prompt": "A {}s wing"}, {"index": 162, "image_id": 2377993, "entity": "bird", "caption": "The birds claws are black.", "question": ["are there the birds ?", "are there claws ?"], "prompt": "The {}s claws are black."}, {"index": 163, "image_id": 2377993, "entity": "bird", "caption": "The birds eye is black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is black."}, {"index": 164, "image_id": 2377993, "entity": "bird", "caption": "The birds beak is black.", "question": ["are there the birds beak ?"], "prompt": "The {}s beak is black."}, {"index": 165, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a bird", "question": ["is there a bird ?"], "prompt": "Pink felt on a {}"}, {"index": 166, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a white bird", "question": ["is there a white bird ?"], "prompt": "Pink felt on a white {}"}, {"index": 167, "image_id": 2376795, "entity": "bird", "caption": "A bird has pink felt on it", "question": ["is there a bird ?"], "prompt": "A {} has pink felt on it"}, {"index": 168, "image_id": 2376795, "entity": "bird", "caption": "bird head turned right", "question": ["is there bird head ?"], "prompt": "{} head turned right"}, {"index": 169, "image_id": 2376340, "entity": "bird", "caption": "the birds legs ", "question": ["are there the birds ?"], "prompt": "the {}s legs "}, {"index": 170, "image_id": 2376340, "entity": "bird", "caption": "The bird has long legs. ", "question": ["is there the bird ?", "are there long legs ?"], "prompt": "The {} has long legs. "}, {"index": 171, "image_id": 2376224, "entity": "bird", "caption": "The bird's eyes are open", "question": ["are there the bird's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 172, "image_id": 2376224, "entity": "bird", "caption": "The bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "The {} has thin legs"}, {"index": 173, "image_id": 2375434, "entity": "bird", "caption": "The bird is holding a stick in its mouth", "question": ["is there the bird ?", "is there a stick ?", "is there its mouth ?"], "prompt": "The {} is holding a stick in its mouth"}, {"index": 174, "image_id": 2375434, "entity": "bird", "caption": "birds flying in the sky", "question": ["are there birds ?", "is there the sky ?"], "prompt": "{}s flying in the sky"}, {"index": 175, "image_id": 2375434, "entity": "bird", "caption": "birds flapping their wings", "question": ["are there birds ?", "are there their wings ?"], "prompt": "{}s flapping their wings"}, {"index": 176, "image_id": 2375434, "entity": "bird", "caption": "four birds flapping their wings", "question": ["are there four birds ?", "are there their wings ?"], "prompt": "four {}s flapping their wings"}, {"index": 177, "image_id": 2375434, "entity": "bird", "caption": "a bird with its wings spread to full length", "question": ["is there a bird ?", "are there its wings ?", "is there full length ?"], "prompt": "a {} with its wings spread to full length"}, {"index": 178, "image_id": 2372589, "entity": "bird", "caption": "belly of the bird is white", "question": ["is there belly ?", "is there the bird ?"], "prompt": "belly of the {} is white"}, {"index": 179, "image_id": 2372589, "entity": "bird", "caption": "bird's feet are black", "question": ["are there bird's feet ?"], "prompt": "{}'s feet are black"}, {"index": 180, "image_id": 2372589, "entity": "bird", "caption": "bird's beak is black", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black"}, {"index": 181, "image_id": 2372267, "entity": "bird", "caption": "bird has green face", "question": ["is there bird ?", "is there green face ?"], "prompt": "{} has green face"}, {"index": 182, "image_id": 2372267, "entity": "bird", "caption": "bird has white beak", "question": ["is there bird ?", "is there white beak ?"], "prompt": "{} has white beak"}, {"index": 183, "image_id": 2371979, "entity": "bird", "caption": "bird's head is black", "question": ["is there bird's head ?"], "prompt": "{}'s head is black"}, {"index": 184, "image_id": 2371979, "entity": "bird", "caption": "bird's wing is black and red", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is black and red"}, {"index": 185, "image_id": 2371266, "entity": "bird", "caption": "birds beak that is two toned", "question": ["are there birds ?"], "prompt": "{}s beak that is two toned"}, {"index": 186, "image_id": 2370174, "entity": "bird", "caption": "water is behind the bird", "question": ["is there water ?", "is there the bird ?"], "prompt": "water is behind the {}"}, {"index": 187, "image_id": 2370174, "entity": "bird", "caption": "The bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "The {} has black and white feathers"}, {"index": 188, "image_id": 2366794, "entity": "bird", "caption": "the bird's leg is skinny", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is skinny"}, {"index": 189, "image_id": 2366794, "entity": "bird", "caption": "the bird's tail is black ", "question": ["is there the bird's tail ?"], "prompt": "the {}'s tail is black "}, {"index": 190, "image_id": 2366794, "entity": "bird", "caption": "teh bird's beak is smll", "question": ["is there teh bird's beak ?", "is there smll ?"], "prompt": "teh {}'s beak is smll"}, {"index": 191, "image_id": 2366794, "entity": "bird", "caption": "the bird is on the beach ", "question": ["is there the bird ?", "is there the beach ?"], "prompt": "the {} is on the beach "}, {"index": 192, "image_id": 2366548, "entity": "bird", "caption": "the birds have long legs", "question": ["are there the birds ?", "are there long legs ?"], "prompt": "the {}s have long legs"}, {"index": 193, "image_id": 2366548, "entity": "bird", "caption": "tall grass is behind the bird", "question": ["is there tall grass ?", "is there the bird ?"], "prompt": "tall grass is behind the {}"}, {"index": 194, "image_id": 2366548, "entity": "bird", "caption": "the bird closest to us has a few black feathers", "question": ["is there the bird ?", "are there a few black feathers ?"], "prompt": "the {} closest to us has a few black feathers"}, {"index": 195, "image_id": 2365606, "entity": "bird", "caption": "This is a bird", "question": ["is there a bird ?"], "prompt": "This is a {}"}, {"index": 196, "image_id": 2364373, "entity": "bird", "caption": "The bird has brown legs.", "question": ["is there the bird ?", "are there brown legs ?"], "prompt": "The {} has brown legs."}, {"index": 197, "image_id": 2363673, "entity": "bird", "caption": "A white and grey bird with its head turned to the left. ", "question": ["is there a white and grey bird ?", "is there its head ?", "is there the left ?"], "prompt": "A white and grey {} with its head turned to the left. "}, {"index": 198, "image_id": 2362480, "entity": "bird", "caption": "this bird has skinny legs", "question": ["is there this bird ?", "are there skinny legs ?"], "prompt": "this {} has skinny legs"}, {"index": 199, "image_id": 2362036, "entity": "bird", "caption": "it is the eye of the bird", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "it is the eye of the {}"}, {"index": 200, "image_id": 2362036, "entity": "bird", "caption": "the birds left side of the wing", "question": ["are there the birds ?", "is there side ?", "is there the wing ?"], "prompt": "the {}s left side of the wing"}, {"index": 201, "image_id": 2362031, "entity": "bird", "caption": "The bird's feather are shiny.", "question": ["is there the bird's feather ?"], "prompt": "The {}'s feather are shiny."}, {"index": 202, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are glossy.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are glossy."}, {"index": 203, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are black.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are black."}, {"index": 204, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is black.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is black."}, {"index": 205, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is open.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is open."}, {"index": 206, "image_id": 2362031, "entity": "bird", "caption": "The bird's talons are gripping a rock.", "question": ["are there the bird's talons ?", "is there a rock ?"], "prompt": "The {}'s talons are gripping a rock."}, {"index": 207, "image_id": 2361417, "entity": "bird", "caption": "Blue bird's feet wrapped about branch", "question": ["are there blue bird's feet ?", "is there branch ?"], "prompt": "Blue {}'s feet wrapped about branch"}, {"index": 208, "image_id": 2360048, "entity": "bird", "caption": "The bird is standing on a multi level white surface.", "question": ["is there the bird ?", "is there a multi level white surface ?"], "prompt": "The {} is standing on a multi level white surface."}, {"index": 209, "image_id": 2359558, "entity": "bird", "caption": "the birds feet ", "question": ["are there the birds ?"], "prompt": "the {}s feet "}, {"index": 210, "image_id": 2359558, "entity": "bird", "caption": "birds nail ", "question": ["are there birds ?"], "prompt": "{}s nail "}, {"index": 211, "image_id": 2359558, "entity": "bird", "caption": "the birds eye ", "question": ["are there the birds ?"], "prompt": "the {}s eye "}, {"index": 212, "image_id": 2359558, "entity": "bird", "caption": "the birds tail ", "question": ["are there the birds ?"], "prompt": "the {}s tail "}, {"index": 213, "image_id": 2359558, "entity": "bird", "caption": "the birds beak", "question": ["are there the birds ?"], "prompt": "the {}s beak"}, {"index": 214, "image_id": 2359558, "entity": "bird", "caption": "black bird beak", "question": ["is there black bird beak ?"], "prompt": "black {} beak"}, {"index": 215, "image_id": 2359461, "entity": "bird", "caption": "Caterpillar in the birds beak.", "question": ["are there the birds ?"], "prompt": "Caterpillar in the {}s beak."}, {"index": 216, "image_id": 2359036, "entity": "bird", "caption": "Back of bird's neck is green.", "question": ["is there bird's neck ?"], "prompt": "Back of {}'s neck is green."}, {"index": 217, "image_id": 2359036, "entity": "bird", "caption": "yellow and orange feathers for birds chest", "question": ["are there yellow and orange feathers ?", "are there birds ?"], "prompt": "yellow and orange feathers for {}s chest"}, {"index": 218, "image_id": 2359036, "entity": "bird", "caption": "blue with black accent feathers on birds head", "question": ["are there black accent feathers ?", "are there birds ?"], "prompt": "blue with black accent feathers on {}s head"}, {"index": 219, "image_id": 2358738, "entity": "bird", "caption": "the bird has a brown spot on its head", "question": ["is there the bird ?", "is there a brown spot ?", "is there its head ?"], "prompt": "the {} has a brown spot on its head"}, {"index": 220, "image_id": 2358738, "entity": "bird", "caption": "the birds wings are brown with a few white spots", "question": ["are there the birds wings ?", "are there a few white spots ?"], "prompt": "the {}s wings are brown with a few white spots"}, {"index": 221, "image_id": 2358256, "entity": "bird", "caption": "bird with wings spread", "question": ["is there bird ?", "are there wings ?"], "prompt": "{} with wings spread"}, {"index": 222, "image_id": 2358256, "entity": "bird", "caption": "nice bird with wings spread", "question": ["is there nice bird ?", "are there wings ?"], "prompt": "nice {} with wings spread"}, {"index": 223, "image_id": 2358256, "entity": "bird", "caption": "healthy bird with wings spread", "question": ["is there healthy bird ?", "are there wings ?"], "prompt": "healthy {} with wings spread"}, {"index": 224, "image_id": 2358256, "entity": "bird", "caption": "beautiful bird with wings spread", "question": ["is there beautiful bird ?", "are there wings ?"], "prompt": "beautiful {} with wings spread"}, {"index": 225, "image_id": 2358256, "entity": "bird", "caption": "bird with pretty wings spread", "question": ["is there bird ?", "are there pretty wings ?"], "prompt": "{} with pretty wings spread"}, {"index": 226, "image_id": 2358256, "entity": "bird", "caption": "bird with colorful wings spread", "question": ["is there bird ?", "are there colorful wings ?"], "prompt": "{} with colorful wings spread"}, {"index": 227, "image_id": 2357787, "entity": "bird", "caption": "The bird has gray feathers", "question": ["is there the bird ?", "are there gray feathers ?"], "prompt": "The {} has gray feathers"}, {"index": 228, "image_id": 2356534, "entity": "bird", "caption": "dead insect in birds beak", "question": ["is there dead insect ?", "are there birds ?"], "prompt": "dead insect in {}s beak"}, {"index": 229, "image_id": 2356534, "entity": "bird", "caption": "The bird has brown feathers", "question": ["is there the bird ?", "are there brown feathers ?"], "prompt": "The {} has brown feathers"}, {"index": 230, "image_id": 2356534, "entity": "bird", "caption": "The bird is on the ground", "question": ["is there the bird ?", "is there the ground ?"], "prompt": "The {} is on the ground"}, {"index": 231, "image_id": 2355976, "entity": "bird", "caption": "A bird is next to a zebra", "question": ["is there a bird ?", "is there a zebra ?"], "prompt": "A {} is next to a zebra"}, {"index": 232, "image_id": 2355976, "entity": "bird", "caption": "The bird has black feathers", "question": ["is there the bird ?", "are there black feathers ?"], "prompt": "The {} has black feathers"}, {"index": 233, "image_id": 2355730, "entity": "bird", "caption": "bird has grey feathers", "question": ["is there bird ?", "are there grey feathers ?"], "prompt": "{} has grey feathers"}, {"index": 234, "image_id": 2355730, "entity": "bird", "caption": "The bird has claws", "question": ["is there the bird ?", "are there claws ?"], "prompt": "The {} has claws"}, {"index": 235, "image_id": 2355730, "entity": "bird", "caption": "Grey beak of a bird. ", "question": ["is there grey beak ?", "is there a bird ?"], "prompt": "Grey beak of a {}. "}, {"index": 236, "image_id": 2354530, "entity": "bird", "caption": "cement area where a bird stands", "question": ["is there cement area ?", "is there a bird ?"], "prompt": "cement area where a {} stands"}, {"index": 237, "image_id": 2354530, "entity": "bird", "caption": "bird has black streak on head", "question": ["is there bird ?", "is there black streak ?", "is there head ?"], "prompt": "{} has black streak on head"}, {"index": 238, "image_id": 2354530, "entity": "bird", "caption": "bird has yellow eye", "question": ["is there bird ?", "is there yellow eye ?"], "prompt": "{} has yellow eye"}, {"index": 239, "image_id": 2353113, "entity": "bird", "caption": "bird has brown beak", "question": ["is there bird ?", "is there brown beak ?"], "prompt": "{} has brown beak"}, {"index": 240, "image_id": 2353113, "entity": "bird", "caption": "bird is behind fence", "question": ["is there bird ?", "is there fence ?"], "prompt": "{} is behind fence"}, {"index": 241, "image_id": 2353113, "entity": "bird", "caption": "bird is near water", "question": ["is there bird ?", "is there water ?"], "prompt": "{} is near water"}, {"index": 242, "image_id": 2352371, "entity": "bird", "caption": "wood platform for bird to stand on", "question": ["is there wood platform ?", "is there bird ?"], "prompt": "wood platform for {} to stand on"}, {"index": 243, "image_id": 2349694, "entity": "bird", "caption": "tail of bird is white", "question": ["is there tail ?", "is there bird ?"], "prompt": "tail of {} is white"}, {"index": 244, "image_id": 2349587, "entity": "bird", "caption": "The bird is eating the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is eating the branch."}, {"index": 245, "image_id": 2349587, "entity": "bird", "caption": "The bird is holding the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is holding the branch."}, {"index": 246, "image_id": 2349248, "entity": "bird", "caption": "the food the bird is eating", "question": ["is there the food ?", "is there the bird ?"], "prompt": "the food the {} is eating"}, {"index": 247, "image_id": 2349109, "entity": "bird", "caption": "the branch the bird is biting", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "the branch the {} is biting"}, {"index": 248, "image_id": 2348860, "entity": "bird", "caption": "A bird has an orange beak.", "question": ["is there a bird ?", "is there an orange beak ?"], "prompt": "A {} has an orange beak."}, {"index": 249, "image_id": 2348860, "entity": "bird", "caption": "A birds claw is grasping a potato.", "question": ["is there a birds ?", "is there a potato ?"], "prompt": "A {}s claw is grasping a potato."}, {"index": 250, "image_id": 2348860, "entity": "bird", "caption": "A bird is eating a potato.", "question": ["is there a bird ?", "is there a potato ?"], "prompt": "A {} is eating a potato."}, {"index": 251, "image_id": 2348860, "entity": "bird", "caption": "A bird is on a tree branch.", "question": ["is there a bird ?", "is there a tree branch ?"], "prompt": "A {} is on a tree branch."}, {"index": 252, "image_id": 2348860, "entity": "bird", "caption": "A tropical bird is on a tree branch.", "question": ["is there a tropical bird ?", "is there a tree branch ?"], "prompt": "A tropical {} is on a tree branch."}, {"index": 253, "image_id": 2348860, "entity": "bird", "caption": "bird's wing is green", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is green"}, {"index": 254, "image_id": 2348860, "entity": "bird", "caption": "The peice of food in the birds mouth", "question": ["is there the peice ?", "is there food ?", "are there the birds ?"], "prompt": "The peice of food in the {}s mouth"}, {"index": 255, "image_id": 2348860, "entity": "bird", "caption": "The birds red orange eye", "question": ["are there the birds ?"], "prompt": "The {}s red orange eye"}, {"index": 256, "image_id": 2348860, "entity": "bird", "caption": "The birds blue face", "question": ["are there the birds ?"], "prompt": "The {}s blue face"}, {"index": 257, "image_id": 2348860, "entity": "bird", "caption": "The birds foot on the fruit", "question": ["are there the birds ?", "is there the fruit ?"], "prompt": "The {}s foot on the fruit"}, {"index": 258, "image_id": 2348860, "entity": "bird", "caption": "The piece of fruit the bird is eating", "question": ["is there the piece ?", "is there fruit ?", "is there the bird ?"], "prompt": "The piece of fruit the {} is eating"}, {"index": 259, "image_id": 2348860, "entity": "bird", "caption": "The branch the bird is sitting on", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "The branch the {} is sitting on"}, {"index": 260, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw", "question": ["is there a bird ?", "is there a claw ?"], "prompt": "a {} has a claw"}, {"index": 261, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw holding onto a branch", "question": ["is there a bird ?", "is there a claw ?", "is there a branch ?"], "prompt": "a {} has a claw holding onto a branch"}, {"index": 262, "image_id": 2348795, "entity": "bird", "caption": "Black bird beak white around face. ", "question": ["is there black bird beak ?", "is there face ?"], "prompt": "Black {} beak white around face. "}, {"index": 263, "image_id": 2348671, "entity": "bird", "caption": "that is the leg of the bird", "question": ["is there the leg ?", "is there the bird ?"], "prompt": "that is the leg of the {}"}, {"index": 264, "image_id": 2348089, "entity": "bird", "caption": "a wood platform the bird is on ", "question": ["is there a wood platform ?", "is there the bird ?"], "prompt": "a wood platform the {} is on "}, {"index": 265, "image_id": 2347493, "entity": "bird", "caption": "bird with its mouth open", "question": ["is there bird ?", "is there its mouth ?"], "prompt": "{} with its mouth open"}, {"index": 266, "image_id": 2347493, "entity": "bird", "caption": "The bird is on the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 267, "image_id": 2347493, "entity": "bird", "caption": "The birds beak has a sharp point.", "question": ["are there the birds beak ?", "is there a sharp point ?"], "prompt": "The {}s beak has a sharp point."}, {"index": 268, "image_id": 2347493, "entity": "bird", "caption": "The birds feet are orange.", "question": ["are there the birds ?", "are there feet ?"], "prompt": "The {}s feet are orange."}, {"index": 269, "image_id": 2345609, "entity": "bird", "caption": "the bird has very long legs", "question": ["is there the bird ?", "are there very long legs ?"], "prompt": "the {} has very long legs"}, {"index": 270, "image_id": 2345609, "entity": "bird", "caption": "the bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "the {} has a yellow beak"}, {"index": 271, "image_id": 2344912, "entity": "bird", "caption": "grass that small bird is standing in", "question": ["is there grass ?", "is there small bird ?"], "prompt": "grass that small {} is standing in"}, {"index": 272, "image_id": 2344341, "entity": "bird", "caption": "Feathers of the bird laid back", "question": ["are there feathers ?", "is there the bird ?"], "prompt": "Feathers of the {} laid back"}, {"index": 273, "image_id": 2344328, "entity": "bird", "caption": "A birds head and neck.", "question": ["are there a birds ?", "is there neck ?"], "prompt": "A {}s head and neck."}, {"index": 274, "image_id": 2344328, "entity": "bird", "caption": "bird has grey beak", "question": ["is there bird ?", "is there grey beak ?"], "prompt": "{} has grey beak"}, {"index": 275, "image_id": 2344328, "entity": "bird", "caption": "bird has red eyes", "question": ["is there bird ?", "are there red eyes ?"], "prompt": "{} has red eyes"}, {"index": 276, "image_id": 2344328, "entity": "bird", "caption": "bird has black head", "question": ["is there bird ?", "is there black head ?"], "prompt": "{} has black head"}, {"index": 277, "image_id": 2344328, "entity": "bird", "caption": "bird has blue neck", "question": ["is there bird ?", "is there blue neck ?"], "prompt": "{} has blue neck"}, {"index": 278, "image_id": 2341438, "entity": "bird", "caption": "head of bird is gray", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is gray"}, {"index": 279, "image_id": 2341438, "entity": "bird", "caption": "eye of bird is red", "question": ["is there eye ?", "is there bird ?"], "prompt": "eye of {} is red"}, {"index": 280, "image_id": 2341058, "entity": "bird", "caption": "two birds standing on branches", "question": ["are there two birds ?", "are there branches ?"], "prompt": "two {}s standing on branches"}, {"index": 281, "image_id": 2339258, "entity": "bird", "caption": "the all black beak on the birds face", "question": ["is there the all black beak ?", "are there the birds ?"], "prompt": "the all black beak on the {}s face"}, {"index": 282, "image_id": 2339258, "entity": "bird", "caption": "the claw on the birds foot", "question": ["is there the claw ?", "are there the birds ?"], "prompt": "the claw on the {}s foot"}, {"index": 283, "image_id": 2338848, "entity": "bird", "caption": "the bird is eating the fruit", "question": ["is there the bird ?", "is there the fruit ?"], "prompt": "the {} is eating the fruit"}, {"index": 284, "image_id": 2338848, "entity": "bird", "caption": "A bird is eating some fruit", "question": ["is there a bird ?", "is there some fruit ?"], "prompt": "A {} is eating some fruit"}, {"index": 285, "image_id": 2338848, "entity": "bird", "caption": "A bird is getting some food", "question": ["is there a bird ?", "is there some food ?"], "prompt": "A {} is getting some food"}, {"index": 286, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is red and black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is red and black."}, {"index": 287, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is round.", "question": ["are there the birds ?"], "prompt": "The {}s eye is round."}, {"index": 288, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is small.", "question": ["are there the birds ?"], "prompt": "The {}s eye is small."}, {"index": 289, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are blue.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are blue."}, {"index": 290, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are red.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are red."}, {"index": 291, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are green.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are green."}, {"index": 292, "image_id": 2338848, "entity": "bird", "caption": "the birds beak is orange", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is orange"}, {"index": 293, "image_id": 2338638, "entity": "bird", "caption": "Blue and black bird standing on wood.", "question": ["is there blue and black bird ?", "is there wood ?"], "prompt": "Blue and black {} standing on wood."}, {"index": 294, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s tail", "question": ["is there tail ?"], "prompt": "this is a {}''s tail"}, {"index": 295, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s beak", "question": ["is there a bird''s beak ?"], "prompt": "this is a {}''s beak"}, {"index": 296, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s head", "question": ["is there a bird''s head ?"], "prompt": "this is a {}''s head"}, {"index": 297, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s wing", "question": ["is there wing ?"], "prompt": "this is a {}''s wing"}, {"index": 298, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s eye", "question": ["is there eye ?"], "prompt": "this is a {}''s eye"}, {"index": 299, "image_id": 2338318, "entity": "bird", "caption": "bird is on brown branch", "question": ["is there bird ?", "is there brown branch ?"], "prompt": "{} is on brown branch"}, {"index": 300, "image_id": 2336219, "entity": "bird", "caption": "bird has white eyes", "question": ["is there bird ?", "are there white eyes ?"], "prompt": "{} has white eyes"}, {"index": 301, "image_id": 2335105, "entity": "bird", "caption": "the ear lobes on the bird are red", "question": ["are there the ear lobes ?", "is there the bird ?"], "prompt": "the ear lobes on the {} are red"}, {"index": 302, "image_id": 2332681, "entity": "bird", "caption": "the bird has tiny ears", "question": ["is there the bird ?", "are there tiny ears ?"], "prompt": "the {} has tiny ears"}, {"index": 303, "image_id": 2331468, "entity": "bird", "caption": "the bird is in the water ", "question": ["is there the bird ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 304, "image_id": 2331215, "entity": "bird", "caption": "the birds wings are up", "question": ["are there the birds ?", "are there wings ?"], "prompt": "the {}s wings are up"}, {"index": 305, "image_id": 2331215, "entity": "bird", "caption": "A bird is afraid of the elephant", "question": ["is there a bird ?", "is there the elephant ?"], "prompt": "A {} is afraid of the elephant"}, {"index": 306, "image_id": 2331215, "entity": "bird", "caption": "A bird has spread out its wings", "question": ["is there a bird ?", "are there its wings ?"], "prompt": "A {} has spread out its wings"}, {"index": 307, "image_id": 2331215, "entity": "bird", "caption": "The bird has a long wingspan", "question": ["is there the bird ?", "is there a long wingspan ?"], "prompt": "The {} has a long wingspan"}, {"index": 308, "image_id": 2330695, "entity": "bird", "caption": "bird has a black beak ", "question": ["is there bird ?", "is there a black beak ?"], "prompt": "{} has a black beak "}, {"index": 309, "image_id": 2330695, "entity": "bird", "caption": "bird has gray feet", "question": ["is there bird ?", "are there gray feet ?"], "prompt": "{} has gray feet"}, {"index": 310, "image_id": 2330307, "entity": "bird", "caption": "bird has beady eye", "question": ["is there bird ?", "is there beady eye ?"], "prompt": "{} has beady eye"}, {"index": 311, "image_id": 2330307, "entity": "bird", "caption": "bird has black beak", "question": ["is there bird ?", "is there black beak ?"], "prompt": "{} has black beak"}, {"index": 312, "image_id": 2330307, "entity": "bird", "caption": "bird has 2 feet", "question": ["is there bird ?", "are there 2 feet ?"], "prompt": "{} has 2 feet"}, {"index": 313, "image_id": 2330080, "entity": "bird", "caption": "The bird is looking a yard gnome", "question": ["is there the bird ?", "is there a yard gnome ?"], "prompt": "The {} is looking a yard gnome"}, {"index": 314, "image_id": 2330080, "entity": "bird", "caption": "The bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "The {} has a yellow beak"}, {"index": 315, "image_id": 2328246, "entity": "bird", "caption": "tree leaves behind the bird", "question": ["is there tree ?", "is there the bird ?"], "prompt": "tree leaves behind the {}"}, {"index": 316, "image_id": 2326461, "entity": "bird", "caption": "white feathers on a birds head", "question": ["are there white feathers ?", "are there a birds ?"], "prompt": "white feathers on a {}s head"}, {"index": 317, "image_id": 2326461, "entity": "bird", "caption": "The bird is on a handle", "question": ["is there the bird ?", "is there a handle ?"], "prompt": "The {} is on a handle"}, {"index": 318, "image_id": 2326461, "entity": "bird", "caption": "Small black bird beak", "question": ["is there small black bird beak ?"], "prompt": "Small black {} beak"}, {"index": 319, "image_id": 2325550, "entity": "bird", "caption": "the bird is on a pole", "question": ["is there the bird ?", "is there a pole ?"], "prompt": "the {} is on a pole"}, {"index": 320, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow feathers", "question": ["is there the bird ?", "are there yellow feathers ?"], "prompt": "the {} has yellow feathers"}, {"index": 321, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow spiked hair", "question": ["is there the bird ?", "is there yellow spiked hair ?"], "prompt": "the {} has yellow spiked hair"}, {"index": 322, "image_id": 2325324, "entity": "bird", "caption": "bird has green breast", "question": ["is there bird ?", "is there green breast ?"], "prompt": "{} has green breast"}, {"index": 323, "image_id": 2325324, "entity": "bird", "caption": "bird has green tail", "question": ["is there bird ?", "is there green tail ?"], "prompt": "{} has green tail"}, {"index": 324, "image_id": 2325324, "entity": "bird", "caption": "bird has green head", "question": ["is there bird ?", "is there green head ?"], "prompt": "{} has green head"}, {"index": 325, "image_id": 2325324, "entity": "bird", "caption": "bird has orange talons", "question": ["is there bird ?", "are there orange talons ?"], "prompt": "{} has orange talons"}, {"index": 326, "image_id": 2325324, "entity": "bird", "caption": "bird has grey claws", "question": ["is there bird ?", "are there grey claws ?"], "prompt": "{} has grey claws"}, {"index": 327, "image_id": 2325324, "entity": "bird", "caption": "bird stands on banana", "question": ["is there bird ?", "is there banana ?"], "prompt": "{} stands on banana"}, {"index": 328, "image_id": 2325324, "entity": "bird", "caption": "Green bird is standing on banana.", "question": ["is there green bird ?", "is there banana ?"], "prompt": "Green {} is standing on banana."}, {"index": 329, "image_id": 2325324, "entity": "bird", "caption": "Light is shining on bird.", "question": ["is there light ?", "is there bird ?"], "prompt": "Light is shining on {}."}, {"index": 330, "image_id": 2325324, "entity": "bird", "caption": "bird has orange feet", "question": ["is there bird ?", "are there orange feet ?"], "prompt": "{} has orange feet"}, {"index": 331, "image_id": 2325324, "entity": "bird", "caption": "bird has black nails", "question": ["is there bird ?", "are there black nails ?"], "prompt": "{} has black nails"}, {"index": 332, "image_id": 2325324, "entity": "bird", "caption": "bird's eye is purple blue and black", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is purple blue and black"}, {"index": 333, "image_id": 2323975, "entity": "bird", "caption": "Orange beak on a brown and white bird.", "question": ["is there orange beak ?", "is there a brown and white bird ?"], "prompt": "Orange beak on a brown and white {}."}, {"index": 334, "image_id": 2323560, "entity": "bird", "caption": "bird perched on a scarred limb", "question": ["is there bird ?", "is there a scarred limb ?"], "prompt": "{} perched on a scarred limb"}, {"index": 335, "image_id": 2322830, "entity": "bird", "caption": "bird is drinking water from wood bucket", "question": ["is there bird ?", "is there water ?", "is there wood bucket ?"], "prompt": "{} is drinking water from wood bucket"}, {"index": 336, "image_id": 2322624, "entity": "bird", "caption": "The birds beak has a point.", "question": ["are there the birds beak ?", "is there a point ?"], "prompt": "The {}s beak has a point."}, {"index": 337, "image_id": 2322624, "entity": "bird", "caption": "The birds chest is white.", "question": ["are there the birds ?"], "prompt": "The {}s chest is white."}, {"index": 338, "image_id": 2320805, "entity": "bird", "caption": "orange bird with black and white wings perched", "question": ["are there black and white wings ?"], "prompt": "orange {} with black and white wings perched"}, {"index": 339, "image_id": 2320805, "entity": "bird", "caption": "bird's beak contains blood and other animal remains", "question": ["is there bird's beak ?", "is there blood ?", "is there other animal ?"], "prompt": "{}'s beak contains blood and other animal remains"}, {"index": 340, "image_id": 2320805, "entity": "bird", "caption": "bird pereched of grey rock", "question": ["is there grey rock ?"], "prompt": "{} pereched of grey rock"}, {"index": 341, "image_id": 2320805, "entity": "bird", "caption": "a large tree branch with a bird nested on it", "question": ["is there a large tree branch ?", "is there a bird ?"], "prompt": "a large tree branch with a {} nested on it"}, {"index": 342, "image_id": 2320805, "entity": "bird", "caption": "a tree limb with a bird rested on it", "question": ["is there a tree limb ?", "is there a bird ?"], "prompt": "a tree limb with a {} rested on it"}, {"index": 343, "image_id": 2320805, "entity": "bird", "caption": "bird has grey head", "question": ["is there bird ?", "is there grey head ?"], "prompt": "{} has grey head"}, {"index": 344, "image_id": 2318439, "entity": "bird", "caption": "Baby bird is standing in ground.", "question": ["is there baby bird ?", "is there ground ?"], "prompt": "Baby {} is standing in ground."}, {"index": 345, "image_id": 2318290, "entity": "bird", "caption": "section of brown tipped bird wing feather", "question": ["is there section ?", "is there bird wing feather ?"], "prompt": "section of brown tipped {} wing feather"}, {"index": 346, "image_id": 2318104, "entity": "bird", "caption": "a bird that is standing outside", "question": ["is there a bird ?"], "prompt": "a {} that is standing outside"}, {"index": 347, "image_id": 2317875, "entity": "bird", "caption": "the bird has long gray legs", "question": ["is there the bird ?", "are there long gray legs ?"], "prompt": "the {} has long gray legs"}, {"index": 348, "image_id": 2317875, "entity": "bird", "caption": "the bird has a small beady eye", "question": ["is there the bird ?", "is there a small beady eye ?"], "prompt": "the {} has a small beady eye"}, {"index": 349, "image_id": 2317875, "entity": "bird", "caption": "the bird has a big beak", "question": ["is there the bird ?", "is there a big beak ?"], "prompt": "the {} has a big beak"}, {"index": 350, "image_id": 2317875, "entity": "bird", "caption": "the bird has tons of feathers", "question": ["is there the bird ?", "are there tons ?", "are there feathers ?"], "prompt": "the {} has tons of feathers"}, {"index": 351, "image_id": 2317875, "entity": "bird", "caption": "the bird has its mouth open", "question": ["is there the bird ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 352, "image_id": 2317875, "entity": "bird", "caption": "the bird is standing in grass", "question": ["is there the bird ?", "is there grass ?"], "prompt": "the {} is standing in grass"}, {"index": 353, "image_id": 2317875, "entity": "bird", "caption": "the bird is near a pond", "question": ["is there the bird ?", "is there a pond ?"], "prompt": "the {} is near a pond"}, {"index": 354, "image_id": 2317249, "entity": "bird", "caption": "The birds are out in the forest", "question": ["are there the birds ?", "is there the forest ?"], "prompt": "The {}s are out in the forest"}, {"index": 355, "image_id": 2317249, "entity": "bird", "caption": "The birds are watching for predators", "question": ["are there the birds ?", "are there predators ?"], "prompt": "The {}s are watching for predators"}, {"index": 356, "image_id": 2316597, "entity": "bird", "caption": "the pool of bird feeding ", "question": ["is there the pool ?", "is there bird feeding ?"], "prompt": "the pool of {} feeding "}, {"index": 357, "image_id": 2316597, "entity": "bird", "caption": "a bird iwth a beak", "question": ["is there a bird ?", "is there a beak ?"], "prompt": "a {} iwth a beak"}, {"index": 358, "image_id": 2316285, "entity": "bird", "caption": "bird perched on a branch", "question": ["is there bird ?", "is there a branch ?"], "prompt": "{} perched on a branch"}, {"index": 359, "image_id": 2414525, "entity": "bird", "caption": "man giving bird wine", "question": ["is there man ?", "is there bird wine ?"], "prompt": "man giving {} wine"}, {"index": 360, "image_id": 2413894, "entity": "bird", "caption": "the bird has two eyes", "question": ["is there the bird ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 361, "image_id": 2413894, "entity": "bird", "caption": "The bird is standing in calm water.", "question": ["is there the bird ?", "is there calm water ?"], "prompt": "The {} is standing in calm water."}, {"index": 362, "image_id": 2413604, "entity": "bird", "caption": "the bird is on the chair", "question": ["is there the bird ?", "is there the chair ?"], "prompt": "the {} is on the chair"}, {"index": 363, "image_id": 2413604, "entity": "bird", "caption": "The bird is outside resting on the edge of a wicker basket chair. ", "question": ["is there the bird ?", "is there the edge ?", "is there a wicker basket chair ?"], "prompt": "The {} is outside resting on the edge of a wicker basket chair. "}, {"index": 364, "image_id": 2413604, "entity": "bird", "caption": "The bird has thick black feathers. ", "question": ["is there the bird ?", "are there thick black feathers ?"], "prompt": "The {} has thick black feathers. "}, {"index": 365, "image_id": 2413604, "entity": "bird", "caption": "little bird has extremely expressive eyes", "question": ["is there little bird ?", "are there extremely expressive eyes ?"], "prompt": "little {} has extremely expressive eyes"}, {"index": 366, "image_id": 2413070, "entity": "bird", "caption": "two birds feet", "question": ["are there two birds ?"], "prompt": "two {}s feet"}, {"index": 367, "image_id": 2416459, "entity": "bird", "caption": "bird perched on the flower", "question": ["is there bird ?", "is there the flower ?"], "prompt": "{} perched on the flower"}, {"index": 368, "image_id": 2417074, "entity": "bird", "caption": "the bird has red color beak", "question": ["is there the bird ?", "is there red color beak ?"], "prompt": "the {} has red color beak"}, {"index": 369, "image_id": 2417074, "entity": "bird", "caption": "the bird has paddle feet", "question": ["is there the bird ?", "are there paddle feet ?"], "prompt": "the {} has paddle feet"}, {"index": 370, "image_id": 2417074, "entity": "bird", "caption": "the wings of the bird are gray", "question": ["are there the wings ?", "is there the bird ?"], "prompt": "the wings of the {} are gray"}, {"index": 371, "image_id": 2417074, "entity": "bird", "caption": "birds foot ", "question": ["are there birds ?"], "prompt": "{}s foot "}, {"index": 372, "image_id": 2417074, "entity": "bird", "caption": "beak of bird is closed", "question": ["is there beak ?", "is there bird ?"], "prompt": "beak of {} is closed"}, {"index": 373, "image_id": 2417074, "entity": "bird", "caption": "foot of bird is on dock", "question": ["is there foot ?", "is there bird ?", "is there dock ?"], "prompt": "foot of {} is on dock"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n01592084.json b/data/imagenet/compositions/prompts/n01592084.json
new file mode 100644
index 0000000000000000000000000000000000000000..d2f6a90f12f4f06cb56b687a87e91c16757b699c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01592084.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2220, "entity": "bird", "caption": "the bird has a fish in its mouth", "question": ["is there the bird ?", "is there a fish ?", "is there its mouth ?"], "prompt": "the {} has a fish in its mouth"}, {"index": 1, "image_id": 2612, "entity": "bird", "caption": "bird has tan beak", "question": ["is there bird ?", "is there tan beak ?"], "prompt": "{} has tan beak"}, {"index": 2, "image_id": 2612, "entity": "bird", "caption": "bird has brown eye", "question": ["is there bird ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 3, "image_id": 2612, "entity": "bird", "caption": "bird has black feathers", "question": ["is there bird ?", "are there black feathers ?"], "prompt": "{} has black feathers"}, {"index": 4, "image_id": 2613, "entity": "bird", "caption": "birds have orange beaks", "question": ["are there birds ?", "are there orange beaks ?"], "prompt": "{}s have orange beaks"}, {"index": 5, "image_id": 2613, "entity": "bird", "caption": "bird has white feathers", "question": ["is there bird ?", "are there white feathers ?"], "prompt": "{} has white feathers"}, {"index": 6, "image_id": 2613, "entity": "bird", "caption": "bird has grey leg", "question": ["is there bird ?"], "prompt": "{} has grey leg"}, {"index": 7, "image_id": 2613, "entity": "bird", "caption": "bird stands on one leg", "question": ["is there bird ?", "is there one leg ?"], "prompt": "{} stands on one leg"}, {"index": 8, "image_id": 2619, "entity": "bird", "caption": "the eye of the bird is black", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "the eye of the {} is black"}, {"index": 9, "image_id": 2619, "entity": "bird", "caption": "the bird feet is black", "question": ["are there the bird feet ?"], "prompt": "the {} feet is black"}, {"index": 10, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food out of the person's hand", "question": ["is there the bird ?", "is there food ?", "is there the person's hand ?"], "prompt": "The {} is eating food out of the person's hand"}, {"index": 11, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food", "question": ["is there the bird ?", "is there food ?"], "prompt": "The {} is eating food"}, {"index": 12, "image_id": 2415095, "entity": "bird", "caption": "A bird with red feathers is eating food", "question": ["is there a bird ?", "are there red feathers ?", "is there food ?"], "prompt": "A {} with red feathers is eating food"}, {"index": 13, "image_id": 2415095, "entity": "bird", "caption": "The red feather bird is eating food out of a person's hand", "question": ["is there the red feather bird ?", "is there food ?", "is there a person's hand ?"], "prompt": "The red feather {} is eating food out of a person's hand"}, {"index": 14, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating an apples from the person's hand", "question": ["is there the bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The {} is eating an apples from the person's hand"}, {"index": 15, "image_id": 2415095, "entity": "bird", "caption": "The red-feathered bird is eating an apples from the person's hand", "question": ["is there the red-feathered bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The red-feathered {} is eating an apples from the person's hand"}, {"index": 16, "image_id": 2414024, "entity": "bird", "caption": "little bird with chest puffed out", "question": ["is there little bird ?", "is there chest ?"], "prompt": "little {} with chest puffed out"}, {"index": 17, "image_id": 2412521, "entity": "bird", "caption": "bird has red patch", "question": ["is there bird ?", "is there red patch ?"], "prompt": "{} has red patch"}, {"index": 18, "image_id": 2412521, "entity": "bird", "caption": "wood is under bird", "question": ["is there wood ?", "is there bird ?"], "prompt": "wood is under {}"}, {"index": 19, "image_id": 2412521, "entity": "bird", "caption": "black bird has it's mouth open", "question": ["is there black bird ?"], "prompt": "black {} has it's mouth open"}, {"index": 20, "image_id": 2412521, "entity": "bird", "caption": "bird perched on log", "question": ["is there bird ?", "is there log ?"], "prompt": "{} perched on log"}, {"index": 21, "image_id": 2412521, "entity": "bird", "caption": "black bird leg slanted from body", "question": ["is there black bird leg ?", "is there body ?"], "prompt": "black {} leg slanted from body"}, {"index": 22, "image_id": 2412061, "entity": "bird", "caption": "Black bird beak", "question": ["is there black bird beak ?"], "prompt": "Black {} beak"}, {"index": 23, "image_id": 2412061, "entity": "bird", "caption": "Black-feathered bird looks up to the sky", "question": ["is there black-feathered bird ?", "is there the sky ?"], "prompt": "Black-feathered {} looks up to the sky"}, {"index": 24, "image_id": 2409570, "entity": "bird", "caption": "the bird has two feet", "question": ["is there the bird ?", "are there two feet ?"], "prompt": "the {} has two feet"}, {"index": 25, "image_id": 2409570, "entity": "bird", "caption": "the bird is biting its tail", "question": ["is there the bird ?", "is there its tail ?"], "prompt": "the {} is biting its tail"}, {"index": 26, "image_id": 2409570, "entity": "bird", "caption": "the bird has wings", "question": ["is there the bird ?", "are there wings ?"], "prompt": "the {} has wings"}, {"index": 27, "image_id": 2409570, "entity": "bird", "caption": "White bird with black tail feathers standing on the sand", "question": ["is there white bird ?", "are there black tail feathers ?", "is there the sand ?"], "prompt": "White {} with black tail feathers standing on the sand"}, {"index": 28, "image_id": 2409306, "entity": "bird", "caption": "a fragment of ground that a young bird is standing on", "question": ["is there a fragment ?", "is there ground ?", "is there a young bird ?"], "prompt": "a fragment of ground that a young {} is standing on"}, {"index": 29, "image_id": 2409306, "entity": "bird", "caption": "head of bird is polka dotted", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is polka dotted"}, {"index": 30, "image_id": 2409306, "entity": "bird", "caption": "a baby bird stands on the ground", "question": ["is there a baby bird ?", "is there the ground ?"], "prompt": "a baby {} stands on the ground"}, {"index": 31, "image_id": 2409215, "entity": "bird", "caption": "The bird's beak is orange. ", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is orange. "}, {"index": 32, "image_id": 2409215, "entity": "bird", "caption": "The bird is flying above water. ", "question": ["is there the bird ?", "is there water ?"], "prompt": "The {} is flying above water. "}, {"index": 33, "image_id": 2409215, "entity": "bird", "caption": "End of the bird's wing that is primarily black", "question": ["is there end ?", "is there the bird's wing ?"], "prompt": "End of the {}'s wing that is primarily black"}, {"index": 34, "image_id": 2409045, "entity": "bird", "caption": "Neck of bird has S shape", "question": ["is there neck ?", "is there bird ?", "are there s ?", "is there shape ?"], "prompt": "Neck of {} has S shape"}, {"index": 35, "image_id": 2409045, "entity": "bird", "caption": "Grey bird rising into the air", "question": ["is there grey bird ?", "is there the air ?"], "prompt": "Grey {} rising into the air"}, {"index": 36, "image_id": 2409010, "entity": "bird", "caption": "a bird has a small creature in its mouth", "question": ["is there a bird ?", "is there a small creature ?", "is there its mouth ?"], "prompt": "a {} has a small creature in its mouth"}, {"index": 37, "image_id": 2409010, "entity": "bird", "caption": "a bird walks along the wet sand", "question": ["is there a bird ?", "is there the wet sand ?"], "prompt": "a {} walks along the wet sand"}, {"index": 38, "image_id": 2408592, "entity": "bird", "caption": "a bird stands at the edge of the water", "question": ["is there a bird ?", "is there the edge ?", "is there the water ?"], "prompt": "a {} stands at the edge of the water"}, {"index": 39, "image_id": 2408592, "entity": "bird", "caption": "The bird has webbed feet", "question": ["is there the bird ?"], "prompt": "The {} has webbed feet"}, {"index": 40, "image_id": 2408592, "entity": "bird", "caption": "The bird is standing in the dirt", "question": ["is there the bird ?", "is there the dirt ?"], "prompt": "The {} is standing in the dirt"}, {"index": 41, "image_id": 2408592, "entity": "bird", "caption": "the ground the bird is standing on", "question": ["is there the ground ?", "is there the bird ?"], "prompt": "the ground the {} is standing on"}, {"index": 42, "image_id": 2408299, "entity": "bird", "caption": "the bird is hiding in a plant", "question": ["is there the bird ?", "is there a plant ?"], "prompt": "the {} is hiding in a plant"}, {"index": 43, "image_id": 2408299, "entity": "bird", "caption": "the bird has a white belly", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 44, "image_id": 2407737, "entity": "bird", "caption": "this is a birds eye", "question": ["are there a birds ?"], "prompt": "this is a {}s eye"}, {"index": 45, "image_id": 2407737, "entity": "bird", "caption": "this is a bird tail", "question": ["is there a bird tail ?"], "prompt": "this is a {} tail"}, {"index": 46, "image_id": 2407737, "entity": "bird", "caption": "the bird has sharp beak", "question": ["is there the bird ?", "is there sharp beak ?"], "prompt": "the {} has sharp beak"}, {"index": 47, "image_id": 2407737, "entity": "bird", "caption": "the branches are beside the bird", "question": ["are there the branches ?", "is there the bird ?"], "prompt": "the branches are beside the {}"}, {"index": 48, "image_id": 2407737, "entity": "bird", "caption": "the bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "the {} has thin legs"}, {"index": 49, "image_id": 2407737, "entity": "bird", "caption": "the bird has black eyes", "question": ["is there the bird ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 50, "image_id": 2407316, "entity": "bird", "caption": "the bird has black legs", "question": ["is there the bird ?", "are there black legs ?"], "prompt": "the {} has black legs"}, {"index": 51, "image_id": 2407316, "entity": "bird", "caption": "the bird has three toes", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "the {} has three toes"}, {"index": 52, "image_id": 2406956, "entity": "bird", "caption": "black feathers on top of birds head", "question": ["are there black feathers ?", "is there top ?", "are there birds ?"], "prompt": "black feathers on top of {}s head"}, {"index": 53, "image_id": 2406956, "entity": "bird", "caption": "this is the bird's eye", "question": ["is there the bird's eye ?"], "prompt": "this is the {}'s eye"}, {"index": 54, "image_id": 2406956, "entity": "bird", "caption": "an object is in the bird's beak", "question": ["is there an object ?", "is there the bird's beak ?"], "prompt": "an object is in the {}'s beak"}, {"index": 55, "image_id": 2406956, "entity": "bird", "caption": "the bird's eye is black in color", "question": ["is there the bird's eye ?", "is there color ?"], "prompt": "the {}'s eye is black in color"}, {"index": 56, "image_id": 2404798, "entity": "bird", "caption": "bird has long beak", "question": ["is there bird ?", "is there long beak ?"], "prompt": "{} has long beak"}, {"index": 57, "image_id": 2404798, "entity": "bird", "caption": "bird has pink feathers", "question": ["is there bird ?", "are there pink feathers ?"], "prompt": "{} has pink feathers"}, {"index": 58, "image_id": 2404798, "entity": "bird", "caption": "bird has red eye", "question": ["is there bird ?", "is there red eye ?"], "prompt": "{} has red eye"}, {"index": 59, "image_id": 2404798, "entity": "bird", "caption": "head of bird is featherless", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is featherless"}, {"index": 60, "image_id": 2404798, "entity": "bird", "caption": "bird has green tag on leg", "question": ["is there bird ?", "is there green tag ?", "is there leg ?"], "prompt": "{} has green tag on leg"}, {"index": 61, "image_id": 2404798, "entity": "bird", "caption": "The bird is in the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 62, "image_id": 2404798, "entity": "bird", "caption": "The bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "The {} has a beak"}, {"index": 63, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is open", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 64, "image_id": 2404798, "entity": "bird", "caption": "The bird is wading in the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is wading in the water."}, {"index": 65, "image_id": 2404798, "entity": "bird", "caption": "The bird has a long beak.", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak."}, {"index": 66, "image_id": 2404798, "entity": "bird", "caption": "The bird has light and dark pink feathers.", "question": ["is there the bird ?", "are there light and dark pink feathers ?"], "prompt": "The {} has light and dark pink feathers."}, {"index": 67, "image_id": 2404798, "entity": "bird", "caption": "The bird has a green band around the leg.", "question": ["is there the bird ?", "is there a green band ?", "is there the leg ?"], "prompt": "The {} has a green band around the leg."}, {"index": 68, "image_id": 2404798, "entity": "bird", "caption": "The bird has white neck feathers.", "question": ["is there the bird ?", "are there white neck feathers ?"], "prompt": "The {} has white neck feathers."}, {"index": 69, "image_id": 2404798, "entity": "bird", "caption": "Large rocks are behind the birds.", "question": ["are there large rocks ?", "are there the birds ?"], "prompt": "Large rocks are behind the {}s."}, {"index": 70, "image_id": 2404798, "entity": "bird", "caption": "Water is dripping from the bird's beak.", "question": ["is there water ?", "is there the bird's beak ?"], "prompt": "Water is dripping from the {}'s beak."}, {"index": 71, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is yellow and black.", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is yellow and black."}, {"index": 72, "image_id": 2404673, "entity": "bird", "caption": "the bird is on a long black metal piece", "question": ["is there the bird ?", "is there a long black metal piece ?"], "prompt": "the {} is on a long black metal piece"}, {"index": 73, "image_id": 2404673, "entity": "bird", "caption": "glass sun catchers are hanging in front of the wooden bird", "question": ["are there glass sun catchers ?", "is there front ?", "is there the wooden bird ?"], "prompt": "glass sun catchers are hanging in front of the wooden {}"}, {"index": 74, "image_id": 2404673, "entity": "bird", "caption": "the bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "the {} has a beak"}, {"index": 75, "image_id": 2404673, "entity": "bird", "caption": "the window is reflecting the bird", "question": ["is there the window ?", "is there the bird ?"], "prompt": "the window is reflecting the {}"}, {"index": 76, "image_id": 2404673, "entity": "bird", "caption": "the bird has 1 leg", "question": ["is there the bird ?", "is there 1 leg ?"], "prompt": "the {} has 1 leg"}, {"index": 77, "image_id": 2404673, "entity": "bird", "caption": "the bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "the {} has a long beak"}, {"index": 78, "image_id": 2404673, "entity": "bird", "caption": "the bird's eye is black", "question": ["is there the bird's eye ?"], "prompt": "the {}'s eye is black"}, {"index": 79, "image_id": 2404673, "entity": "bird", "caption": "the bird's leg is long", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is long"}, {"index": 80, "image_id": 2404673, "entity": "bird", "caption": "the bird is sitting on the window", "question": ["is there the bird ?", "is there the window ?"], "prompt": "the {} is sitting on the window"}, {"index": 81, "image_id": 2404673, "entity": "bird", "caption": "The bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak"}, {"index": 82, "image_id": 2403435, "entity": "bird", "caption": "person is feeding bird", "question": ["is there person ?", "is there bird ?"], "prompt": "person is feeding {}"}, {"index": 83, "image_id": 2401304, "entity": "bird", "caption": "a bird is standing on weathered wood", "question": ["is there a bird ?", "is there weathered wood ?"], "prompt": "a {} is standing on weathered wood"}, {"index": 84, "image_id": 2401079, "entity": "bird", "caption": "bird's beak is black and red", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black and red"}, {"index": 85, "image_id": 2401079, "entity": "bird", "caption": "the bird's feet are black", "question": ["are there the bird's feet ?"], "prompt": "the {}'s feet are black"}, {"index": 86, "image_id": 2400985, "entity": "bird", "caption": "the bird has a short black beak", "question": ["is there the bird ?", "is there a short black beak ?"], "prompt": "the {} has a short black beak"}, {"index": 87, "image_id": 2400985, "entity": "bird", "caption": "the bird has sharp claws", "question": ["is there the bird ?", "are there sharp claws ?"], "prompt": "the {} has sharp claws"}, {"index": 88, "image_id": 2400985, "entity": "bird", "caption": "A birds left side wing. ", "question": ["are there a birds ?", "is there side wing ?"], "prompt": "A {}s left side wing. "}, {"index": 89, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds right foot", "question": ["are there the fully shown birds ?"], "prompt": "The fully shown {}s right foot"}, {"index": 90, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds left foot", "question": ["are there the fully shown birds ?", "is there foot ?"], "prompt": "The fully shown {}s left foot"}, {"index": 91, "image_id": 2396390, "entity": "bird", "caption": "bird perched on wooden pole ", "question": ["is there bird ?", "is there wooden pole ?"], "prompt": "{} perched on wooden pole "}, {"index": 92, "image_id": 2396390, "entity": "bird", "caption": "bird angled sideways with feet tightly gripping", "question": ["is there bird ?", "are there feet ?"], "prompt": "{} angled sideways with feet tightly gripping"}, {"index": 93, "image_id": 2396109, "entity": "bird", "caption": "The bird has yellow eyes.", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes."}, {"index": 94, "image_id": 2396109, "entity": "bird", "caption": "The bird stands on the tree.", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "The {} stands on the tree."}, {"index": 95, "image_id": 2396109, "entity": "bird", "caption": "this is a bird", "question": ["is there a bird ?"], "prompt": "this is a {}"}, {"index": 96, "image_id": 2396109, "entity": "bird", "caption": "the bird is on the tree", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "the {} is on the tree"}, {"index": 97, "image_id": 2396109, "entity": "bird", "caption": "the bird has yellow eyes", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "the {} has yellow eyes"}, {"index": 98, "image_id": 2396109, "entity": "bird", "caption": "the bird's legs are long", "question": ["are there the bird's legs ?"], "prompt": "the {}'s legs are long"}, {"index": 99, "image_id": 2396109, "entity": "bird", "caption": "The bird has a pointy beak.", "question": ["is there the bird ?", "is there a pointy beak ?"], "prompt": "The {} has a pointy beak."}, {"index": 100, "image_id": 2396109, "entity": "bird", "caption": "The bird has two legs.", "question": ["is there the bird ?", "are there two legs ?"], "prompt": "The {} has two legs."}, {"index": 101, "image_id": 2396109, "entity": "bird", "caption": "The bird has a yellow eye.", "question": ["is there the bird ?", "is there a yellow eye ?"], "prompt": "The {} has a yellow eye."}, {"index": 102, "image_id": 2396109, "entity": "bird", "caption": "The bird has a wing.", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "The {} has a wing."}, {"index": 103, "image_id": 2395577, "entity": "bird", "caption": "the bird has a wing", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "the {} has a wing"}, {"index": 104, "image_id": 2395577, "entity": "bird", "caption": "the bird has an eye", "question": ["is there the bird ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 105, "image_id": 2394957, "entity": "bird", "caption": "bird stand on rim of bowl", "question": ["is there bird ?", "is there rim ?", "is there bowl ?"], "prompt": "{} stand on rim of bowl"}, {"index": 106, "image_id": 2394957, "entity": "bird", "caption": "bird's head is black and blue in color", "question": ["is there bird's head ?", "is there color ?"], "prompt": "{}'s head is black and blue in color"}, {"index": 107, "image_id": 2394957, "entity": "bird", "caption": "bird's eye is red", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is red"}, {"index": 108, "image_id": 2393198, "entity": "bird", "caption": "the birds long beak", "question": ["are there the birds ?"], "prompt": "the {}s long beak"}, {"index": 109, "image_id": 2393198, "entity": "bird", "caption": "the feathers on the birds chest", "question": ["are there the feathers ?", "are there the birds ?"], "prompt": "the feathers on the {}s chest"}, {"index": 110, "image_id": 2393198, "entity": "bird", "caption": "the log the birds standing on", "question": ["is there the log ?", "are there the birds ?"], "prompt": "the log the {}s standing on"}, {"index": 111, "image_id": 2392907, "entity": "bird", "caption": "bird has yellow legs", "question": ["is there bird ?", "are there yellow legs ?"], "prompt": "{} has yellow legs"}, {"index": 112, "image_id": 2392907, "entity": "bird", "caption": "bird has large toe nails", "question": ["is there bird ?", "are there large toe nails ?"], "prompt": "{} has large toe nails"}, {"index": 113, "image_id": 2392255, "entity": "bird", "caption": "The birds tail feathers.", "question": ["are there the birds tail feathers ?"], "prompt": "The {}s tail feathers."}, {"index": 114, "image_id": 2392255, "entity": "bird", "caption": "The bird is standing on a person's hand.", "question": ["is there the bird ?", "is there a person's hand ?"], "prompt": "The {} is standing on a person's hand."}, {"index": 115, "image_id": 2392255, "entity": "bird", "caption": "The bird has grey feathers.", "question": ["is there the bird ?", "are there grey feathers ?"], "prompt": "The {} has grey feathers."}, {"index": 116, "image_id": 2392255, "entity": "bird", "caption": "The bird has a black beak.", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "The {} has a black beak."}, {"index": 117, "image_id": 2392255, "entity": "bird", "caption": "the bird has a black beak", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "the {} has a black beak"}, {"index": 118, "image_id": 2392255, "entity": "bird", "caption": "the bird has black legs and claws", "question": ["is there the bird ?", "are there black legs ?", "are there claws ?"], "prompt": "the {} has black legs and claws"}, {"index": 119, "image_id": 2392255, "entity": "bird", "caption": "the bird's head is white and gray", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is white and gray"}, {"index": 120, "image_id": 2391103, "entity": "bird", "caption": "Top of bird's head is jet black", "question": ["is there top ?", "is there bird's head ?", "is there jet black ?"], "prompt": "Top of {}'s head is jet black"}, {"index": 121, "image_id": 2390453, "entity": "bird", "caption": "the bird has eye", "question": ["is there the bird ?", "is there eye ?"], "prompt": "the {} has eye"}, {"index": 122, "image_id": 2389247, "entity": "bird", "caption": "a birds head", "question": ["are there a birds ?"], "prompt": "a {}s head"}, {"index": 123, "image_id": 2389247, "entity": "bird", "caption": "The birds beak.", "question": ["are there the birds ?"], "prompt": "The {}s beak."}, {"index": 124, "image_id": 2388774, "entity": "bird", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the {} is in the car "}, {"index": 125, "image_id": 2388774, "entity": "bird", "caption": "The bird has small black feathers ", "question": ["is there the bird ?", "are there small black feathers ?"], "prompt": "The {} has small black feathers "}, {"index": 126, "image_id": 2387336, "entity": "bird", "caption": "part of branch birds are sitting on", "question": ["is there part ?", "are there branch birds ?"], "prompt": "part of branch {}s are sitting on"}, {"index": 127, "image_id": 2385839, "entity": "bird", "caption": "the bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "the {} has black and white feathers"}, {"index": 128, "image_id": 2384739, "entity": "bird", "caption": "bird's legs are curled", "question": ["are there bird's legs ?"], "prompt": "{}'s legs are curled"}, {"index": 129, "image_id": 2384739, "entity": "bird", "caption": "a bird is lying on the pavement", "question": ["is there a bird ?", "is there the pavement ?"], "prompt": "a {} is lying on the pavement"}, {"index": 130, "image_id": 2384739, "entity": "bird", "caption": "the bird's head is upside down", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is upside down"}, {"index": 131, "image_id": 2384739, "entity": "bird", "caption": "the black cat is lying next to the bird", "question": ["is there the black cat ?", "is there the bird ?"], "prompt": "the black cat is lying next to the {}"}, {"index": 132, "image_id": 2384582, "entity": "bird", "caption": "This bird has a red beak.", "question": ["is there this bird ?", "is there a red beak ?"], "prompt": "This {} has a red beak."}, {"index": 133, "image_id": 2384582, "entity": "bird", "caption": "The bird is standing on a sandy beach.", "question": ["is there the bird ?", "is there a sandy beach ?"], "prompt": "The {} is standing on a sandy beach."}, {"index": 134, "image_id": 2384582, "entity": "bird", "caption": "This bird has black eyes.", "question": ["is there this bird ?", "are there black eyes ?"], "prompt": "This {} has black eyes."}, {"index": 135, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white belly.", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "The {} has a white belly."}, {"index": 136, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white body.", "question": ["is there the bird ?", "is there a white body ?"], "prompt": "The {} has a white body."}, {"index": 137, "image_id": 2384582, "entity": "bird", "caption": "The bird has black and white tail feathers.", "question": ["is there the bird ?", "are there black and white tail feathers ?"], "prompt": "The {} has black and white tail feathers."}, {"index": 138, "image_id": 2384582, "entity": "bird", "caption": "The bird has orange legs.", "question": ["is there the bird ?", "are there orange legs ?"], "prompt": "The {} has orange legs."}, {"index": 139, "image_id": 2384582, "entity": "bird", "caption": "The bird has an orange beak.", "question": ["is there the bird ?", "is there an orange beak ?"], "prompt": "The {} has an orange beak."}, {"index": 140, "image_id": 2382811, "entity": "bird", "caption": "The bird is above the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is above the water"}, {"index": 141, "image_id": 2382811, "entity": "bird", "caption": "body of seabird is white", "question": ["is there body ?", "is there seabird ?"], "prompt": "body of sea{} is white"}, {"index": 142, "image_id": 2381448, "entity": "bird", "caption": "birds feet are visible", "question": ["are there birds ?", "are there feet ?"], "prompt": "{}s feet are visible"}, {"index": 143, "image_id": 2381401, "entity": "bird", "caption": "the bird has a slender beak", "question": ["is there the bird ?", "is there a slender beak ?"], "prompt": "the {} has a slender beak"}, {"index": 144, "image_id": 2381401, "entity": "bird", "caption": "the bird has stripes on his back", "question": ["is there the bird ?", "are there stripes ?", "is there his back ?"], "prompt": "the {} has stripes on his back"}, {"index": 145, "image_id": 2381401, "entity": "bird", "caption": "the birds beak is very long", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is very long"}, {"index": 146, "image_id": 2381401, "entity": "bird", "caption": "The bird is standing on the branches of the tree.", "question": ["is there the bird ?", "are there the branches ?", "is there the tree ?"], "prompt": "The {} is standing on the branches of the tree."}, {"index": 147, "image_id": 2381401, "entity": "bird", "caption": "The bird has a long black beak.", "question": ["is there the bird ?", "is there a long black beak ?"], "prompt": "The {} has a long black beak."}, {"index": 148, "image_id": 2381401, "entity": "bird", "caption": "The bird has long red legs.", "question": ["is there the bird ?", "are there long red legs ?"], "prompt": "The {} has long red legs."}, {"index": 149, "image_id": 2381401, "entity": "bird", "caption": "the bird is red and beautiful", "question": ["is there the bird ?"], "prompt": "the {} is red and beautiful"}, {"index": 150, "image_id": 2380312, "entity": "bird", "caption": "the bird has a tail", "question": ["is there the bird ?", "is there a tail ?"], "prompt": "the {} has a tail"}, {"index": 151, "image_id": 2380312, "entity": "bird", "caption": "the bird has a head", "question": ["is there the bird ?", "is there a head ?"], "prompt": "the {} has a head"}, {"index": 152, "image_id": 2380026, "entity": "bird", "caption": "the bird has a blue head.", "question": ["is there the bird ?", "is there a blue head ?"], "prompt": "the {} has a blue head."}, {"index": 153, "image_id": 2380026, "entity": "bird", "caption": "The bird has yellow and orange on it's chest.", "question": ["is there the bird ?", "is there it's chest ?"], "prompt": "The {} has yellow and orange on it's chest."}, {"index": 154, "image_id": 2380026, "entity": "bird", "caption": "The bird has three toes.", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "The {} has three toes."}, {"index": 155, "image_id": 2380026, "entity": "bird", "caption": "bird's wings are green", "question": ["are there bird's wings ?"], "prompt": "{}'s wings are green"}, {"index": 156, "image_id": 2380026, "entity": "bird", "caption": "bird has blue head", "question": ["is there bird ?", "is there blue head ?"], "prompt": "{} has blue head"}, {"index": 157, "image_id": 2380026, "entity": "bird", "caption": "bird has orange beak", "question": ["is there bird ?", "is there orange beak ?"], "prompt": "{} has orange beak"}, {"index": 158, "image_id": 2380026, "entity": "bird", "caption": "bird has green body", "question": ["is there bird ?", "is there green body ?"], "prompt": "{} has green body"}, {"index": 159, "image_id": 2380026, "entity": "bird", "caption": "bird has brown talons", "question": ["is there bird ?", "are there brown talons ?"], "prompt": "{} has brown talons"}, {"index": 160, "image_id": 2378627, "entity": "bird", "caption": "A birds beak", "question": ["are there a birds ?"], "prompt": "A {}s beak"}, {"index": 161, "image_id": 2378627, "entity": "bird", "caption": "A birds wing", "question": ["are there a birds ?"], "prompt": "A {}s wing"}, {"index": 162, "image_id": 2377993, "entity": "bird", "caption": "The birds claws are black.", "question": ["are there the birds ?", "are there claws ?"], "prompt": "The {}s claws are black."}, {"index": 163, "image_id": 2377993, "entity": "bird", "caption": "The birds eye is black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is black."}, {"index": 164, "image_id": 2377993, "entity": "bird", "caption": "The birds beak is black.", "question": ["are there the birds beak ?"], "prompt": "The {}s beak is black."}, {"index": 165, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a bird", "question": ["is there a bird ?"], "prompt": "Pink felt on a {}"}, {"index": 166, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a white bird", "question": ["is there a white bird ?"], "prompt": "Pink felt on a white {}"}, {"index": 167, "image_id": 2376795, "entity": "bird", "caption": "A bird has pink felt on it", "question": ["is there a bird ?"], "prompt": "A {} has pink felt on it"}, {"index": 168, "image_id": 2376795, "entity": "bird", "caption": "bird head turned right", "question": ["is there bird head ?"], "prompt": "{} head turned right"}, {"index": 169, "image_id": 2376340, "entity": "bird", "caption": "the birds legs ", "question": ["are there the birds ?"], "prompt": "the {}s legs "}, {"index": 170, "image_id": 2376340, "entity": "bird", "caption": "The bird has long legs. ", "question": ["is there the bird ?", "are there long legs ?"], "prompt": "The {} has long legs. "}, {"index": 171, "image_id": 2376224, "entity": "bird", "caption": "The bird's eyes are open", "question": ["are there the bird's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 172, "image_id": 2376224, "entity": "bird", "caption": "The bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "The {} has thin legs"}, {"index": 173, "image_id": 2375434, "entity": "bird", "caption": "The bird is holding a stick in its mouth", "question": ["is there the bird ?", "is there a stick ?", "is there its mouth ?"], "prompt": "The {} is holding a stick in its mouth"}, {"index": 174, "image_id": 2375434, "entity": "bird", "caption": "birds flying in the sky", "question": ["are there birds ?", "is there the sky ?"], "prompt": "{}s flying in the sky"}, {"index": 175, "image_id": 2375434, "entity": "bird", "caption": "birds flapping their wings", "question": ["are there birds ?", "are there their wings ?"], "prompt": "{}s flapping their wings"}, {"index": 176, "image_id": 2375434, "entity": "bird", "caption": "four birds flapping their wings", "question": ["are there four birds ?", "are there their wings ?"], "prompt": "four {}s flapping their wings"}, {"index": 177, "image_id": 2375434, "entity": "bird", "caption": "a bird with its wings spread to full length", "question": ["is there a bird ?", "are there its wings ?", "is there full length ?"], "prompt": "a {} with its wings spread to full length"}, {"index": 178, "image_id": 2372589, "entity": "bird", "caption": "belly of the bird is white", "question": ["is there belly ?", "is there the bird ?"], "prompt": "belly of the {} is white"}, {"index": 179, "image_id": 2372589, "entity": "bird", "caption": "bird's feet are black", "question": ["are there bird's feet ?"], "prompt": "{}'s feet are black"}, {"index": 180, "image_id": 2372589, "entity": "bird", "caption": "bird's beak is black", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black"}, {"index": 181, "image_id": 2372267, "entity": "bird", "caption": "bird has green face", "question": ["is there bird ?", "is there green face ?"], "prompt": "{} has green face"}, {"index": 182, "image_id": 2372267, "entity": "bird", "caption": "bird has white beak", "question": ["is there bird ?", "is there white beak ?"], "prompt": "{} has white beak"}, {"index": 183, "image_id": 2371979, "entity": "bird", "caption": "bird's head is black", "question": ["is there bird's head ?"], "prompt": "{}'s head is black"}, {"index": 184, "image_id": 2371979, "entity": "bird", "caption": "bird's wing is black and red", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is black and red"}, {"index": 185, "image_id": 2371266, "entity": "bird", "caption": "birds beak that is two toned", "question": ["are there birds ?"], "prompt": "{}s beak that is two toned"}, {"index": 186, "image_id": 2370174, "entity": "bird", "caption": "water is behind the bird", "question": ["is there water ?", "is there the bird ?"], "prompt": "water is behind the {}"}, {"index": 187, "image_id": 2370174, "entity": "bird", "caption": "The bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "The {} has black and white feathers"}, {"index": 188, "image_id": 2366794, "entity": "bird", "caption": "the bird's leg is skinny", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is skinny"}, {"index": 189, "image_id": 2366794, "entity": "bird", "caption": "the bird's tail is black ", "question": ["is there the bird's tail ?"], "prompt": "the {}'s tail is black "}, {"index": 190, "image_id": 2366794, "entity": "bird", "caption": "teh bird's beak is smll", "question": ["is there teh bird's beak ?", "is there smll ?"], "prompt": "teh {}'s beak is smll"}, {"index": 191, "image_id": 2366794, "entity": "bird", "caption": "the bird is on the beach ", "question": ["is there the bird ?", "is there the beach ?"], "prompt": "the {} is on the beach "}, {"index": 192, "image_id": 2366548, "entity": "bird", "caption": "the birds have long legs", "question": ["are there the birds ?", "are there long legs ?"], "prompt": "the {}s have long legs"}, {"index": 193, "image_id": 2366548, "entity": "bird", "caption": "tall grass is behind the bird", "question": ["is there tall grass ?", "is there the bird ?"], "prompt": "tall grass is behind the {}"}, {"index": 194, "image_id": 2366548, "entity": "bird", "caption": "the bird closest to us has a few black feathers", "question": ["is there the bird ?", "are there a few black feathers ?"], "prompt": "the {} closest to us has a few black feathers"}, {"index": 195, "image_id": 2365606, "entity": "bird", "caption": "This is a bird", "question": ["is there a bird ?"], "prompt": "This is a {}"}, {"index": 196, "image_id": 2364373, "entity": "bird", "caption": "The bird has brown legs.", "question": ["is there the bird ?", "are there brown legs ?"], "prompt": "The {} has brown legs."}, {"index": 197, "image_id": 2363673, "entity": "bird", "caption": "A white and grey bird with its head turned to the left. ", "question": ["is there a white and grey bird ?", "is there its head ?", "is there the left ?"], "prompt": "A white and grey {} with its head turned to the left. "}, {"index": 198, "image_id": 2362480, "entity": "bird", "caption": "this bird has skinny legs", "question": ["is there this bird ?", "are there skinny legs ?"], "prompt": "this {} has skinny legs"}, {"index": 199, "image_id": 2362036, "entity": "bird", "caption": "it is the eye of the bird", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "it is the eye of the {}"}, {"index": 200, "image_id": 2362036, "entity": "bird", "caption": "the birds left side of the wing", "question": ["are there the birds ?", "is there side ?", "is there the wing ?"], "prompt": "the {}s left side of the wing"}, {"index": 201, "image_id": 2362031, "entity": "bird", "caption": "The bird's feather are shiny.", "question": ["is there the bird's feather ?"], "prompt": "The {}'s feather are shiny."}, {"index": 202, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are glossy.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are glossy."}, {"index": 203, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are black.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are black."}, {"index": 204, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is black.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is black."}, {"index": 205, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is open.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is open."}, {"index": 206, "image_id": 2362031, "entity": "bird", "caption": "The bird's talons are gripping a rock.", "question": ["are there the bird's talons ?", "is there a rock ?"], "prompt": "The {}'s talons are gripping a rock."}, {"index": 207, "image_id": 2361417, "entity": "bird", "caption": "Blue bird's feet wrapped about branch", "question": ["are there blue bird's feet ?", "is there branch ?"], "prompt": "Blue {}'s feet wrapped about branch"}, {"index": 208, "image_id": 2360048, "entity": "bird", "caption": "The bird is standing on a multi level white surface.", "question": ["is there the bird ?", "is there a multi level white surface ?"], "prompt": "The {} is standing on a multi level white surface."}, {"index": 209, "image_id": 2359558, "entity": "bird", "caption": "the birds feet ", "question": ["are there the birds ?"], "prompt": "the {}s feet "}, {"index": 210, "image_id": 2359558, "entity": "bird", "caption": "birds nail ", "question": ["are there birds ?"], "prompt": "{}s nail "}, {"index": 211, "image_id": 2359558, "entity": "bird", "caption": "the birds eye ", "question": ["are there the birds ?"], "prompt": "the {}s eye "}, {"index": 212, "image_id": 2359558, "entity": "bird", "caption": "the birds tail ", "question": ["are there the birds ?"], "prompt": "the {}s tail "}, {"index": 213, "image_id": 2359558, "entity": "bird", "caption": "the birds beak", "question": ["are there the birds ?"], "prompt": "the {}s beak"}, {"index": 214, "image_id": 2359558, "entity": "bird", "caption": "black bird beak", "question": ["is there black bird beak ?"], "prompt": "black {} beak"}, {"index": 215, "image_id": 2359461, "entity": "bird", "caption": "Caterpillar in the birds beak.", "question": ["are there the birds ?"], "prompt": "Caterpillar in the {}s beak."}, {"index": 216, "image_id": 2359036, "entity": "bird", "caption": "Back of bird's neck is green.", "question": ["is there bird's neck ?"], "prompt": "Back of {}'s neck is green."}, {"index": 217, "image_id": 2359036, "entity": "bird", "caption": "yellow and orange feathers for birds chest", "question": ["are there yellow and orange feathers ?", "are there birds ?"], "prompt": "yellow and orange feathers for {}s chest"}, {"index": 218, "image_id": 2359036, "entity": "bird", "caption": "blue with black accent feathers on birds head", "question": ["are there black accent feathers ?", "are there birds ?"], "prompt": "blue with black accent feathers on {}s head"}, {"index": 219, "image_id": 2358738, "entity": "bird", "caption": "the bird has a brown spot on its head", "question": ["is there the bird ?", "is there a brown spot ?", "is there its head ?"], "prompt": "the {} has a brown spot on its head"}, {"index": 220, "image_id": 2358738, "entity": "bird", "caption": "the birds wings are brown with a few white spots", "question": ["are there the birds wings ?", "are there a few white spots ?"], "prompt": "the {}s wings are brown with a few white spots"}, {"index": 221, "image_id": 2358256, "entity": "bird", "caption": "bird with wings spread", "question": ["is there bird ?", "are there wings ?"], "prompt": "{} with wings spread"}, {"index": 222, "image_id": 2358256, "entity": "bird", "caption": "nice bird with wings spread", "question": ["is there nice bird ?", "are there wings ?"], "prompt": "nice {} with wings spread"}, {"index": 223, "image_id": 2358256, "entity": "bird", "caption": "healthy bird with wings spread", "question": ["is there healthy bird ?", "are there wings ?"], "prompt": "healthy {} with wings spread"}, {"index": 224, "image_id": 2358256, "entity": "bird", "caption": "beautiful bird with wings spread", "question": ["is there beautiful bird ?", "are there wings ?"], "prompt": "beautiful {} with wings spread"}, {"index": 225, "image_id": 2358256, "entity": "bird", "caption": "bird with pretty wings spread", "question": ["is there bird ?", "are there pretty wings ?"], "prompt": "{} with pretty wings spread"}, {"index": 226, "image_id": 2358256, "entity": "bird", "caption": "bird with colorful wings spread", "question": ["is there bird ?", "are there colorful wings ?"], "prompt": "{} with colorful wings spread"}, {"index": 227, "image_id": 2357787, "entity": "bird", "caption": "The bird has gray feathers", "question": ["is there the bird ?", "are there gray feathers ?"], "prompt": "The {} has gray feathers"}, {"index": 228, "image_id": 2356534, "entity": "bird", "caption": "dead insect in birds beak", "question": ["is there dead insect ?", "are there birds ?"], "prompt": "dead insect in {}s beak"}, {"index": 229, "image_id": 2356534, "entity": "bird", "caption": "The bird has brown feathers", "question": ["is there the bird ?", "are there brown feathers ?"], "prompt": "The {} has brown feathers"}, {"index": 230, "image_id": 2356534, "entity": "bird", "caption": "The bird is on the ground", "question": ["is there the bird ?", "is there the ground ?"], "prompt": "The {} is on the ground"}, {"index": 231, "image_id": 2355976, "entity": "bird", "caption": "A bird is next to a zebra", "question": ["is there a bird ?", "is there a zebra ?"], "prompt": "A {} is next to a zebra"}, {"index": 232, "image_id": 2355976, "entity": "bird", "caption": "The bird has black feathers", "question": ["is there the bird ?", "are there black feathers ?"], "prompt": "The {} has black feathers"}, {"index": 233, "image_id": 2355730, "entity": "bird", "caption": "bird has grey feathers", "question": ["is there bird ?", "are there grey feathers ?"], "prompt": "{} has grey feathers"}, {"index": 234, "image_id": 2355730, "entity": "bird", "caption": "The bird has claws", "question": ["is there the bird ?", "are there claws ?"], "prompt": "The {} has claws"}, {"index": 235, "image_id": 2355730, "entity": "bird", "caption": "Grey beak of a bird. ", "question": ["is there grey beak ?", "is there a bird ?"], "prompt": "Grey beak of a {}. "}, {"index": 236, "image_id": 2354530, "entity": "bird", "caption": "cement area where a bird stands", "question": ["is there cement area ?", "is there a bird ?"], "prompt": "cement area where a {} stands"}, {"index": 237, "image_id": 2354530, "entity": "bird", "caption": "bird has black streak on head", "question": ["is there bird ?", "is there black streak ?", "is there head ?"], "prompt": "{} has black streak on head"}, {"index": 238, "image_id": 2354530, "entity": "bird", "caption": "bird has yellow eye", "question": ["is there bird ?", "is there yellow eye ?"], "prompt": "{} has yellow eye"}, {"index": 239, "image_id": 2353113, "entity": "bird", "caption": "bird has brown beak", "question": ["is there bird ?", "is there brown beak ?"], "prompt": "{} has brown beak"}, {"index": 240, "image_id": 2353113, "entity": "bird", "caption": "bird is behind fence", "question": ["is there bird ?", "is there fence ?"], "prompt": "{} is behind fence"}, {"index": 241, "image_id": 2353113, "entity": "bird", "caption": "bird is near water", "question": ["is there bird ?", "is there water ?"], "prompt": "{} is near water"}, {"index": 242, "image_id": 2352371, "entity": "bird", "caption": "wood platform for bird to stand on", "question": ["is there wood platform ?", "is there bird ?"], "prompt": "wood platform for {} to stand on"}, {"index": 243, "image_id": 2349694, "entity": "bird", "caption": "tail of bird is white", "question": ["is there tail ?", "is there bird ?"], "prompt": "tail of {} is white"}, {"index": 244, "image_id": 2349587, "entity": "bird", "caption": "The bird is eating the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is eating the branch."}, {"index": 245, "image_id": 2349587, "entity": "bird", "caption": "The bird is holding the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is holding the branch."}, {"index": 246, "image_id": 2349248, "entity": "bird", "caption": "the food the bird is eating", "question": ["is there the food ?", "is there the bird ?"], "prompt": "the food the {} is eating"}, {"index": 247, "image_id": 2349109, "entity": "bird", "caption": "the branch the bird is biting", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "the branch the {} is biting"}, {"index": 248, "image_id": 2348860, "entity": "bird", "caption": "A bird has an orange beak.", "question": ["is there a bird ?", "is there an orange beak ?"], "prompt": "A {} has an orange beak."}, {"index": 249, "image_id": 2348860, "entity": "bird", "caption": "A birds claw is grasping a potato.", "question": ["is there a birds ?", "is there a potato ?"], "prompt": "A {}s claw is grasping a potato."}, {"index": 250, "image_id": 2348860, "entity": "bird", "caption": "A bird is eating a potato.", "question": ["is there a bird ?", "is there a potato ?"], "prompt": "A {} is eating a potato."}, {"index": 251, "image_id": 2348860, "entity": "bird", "caption": "A bird is on a tree branch.", "question": ["is there a bird ?", "is there a tree branch ?"], "prompt": "A {} is on a tree branch."}, {"index": 252, "image_id": 2348860, "entity": "bird", "caption": "A tropical bird is on a tree branch.", "question": ["is there a tropical bird ?", "is there a tree branch ?"], "prompt": "A tropical {} is on a tree branch."}, {"index": 253, "image_id": 2348860, "entity": "bird", "caption": "bird's wing is green", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is green"}, {"index": 254, "image_id": 2348860, "entity": "bird", "caption": "The peice of food in the birds mouth", "question": ["is there the peice ?", "is there food ?", "are there the birds ?"], "prompt": "The peice of food in the {}s mouth"}, {"index": 255, "image_id": 2348860, "entity": "bird", "caption": "The birds red orange eye", "question": ["are there the birds ?"], "prompt": "The {}s red orange eye"}, {"index": 256, "image_id": 2348860, "entity": "bird", "caption": "The birds blue face", "question": ["are there the birds ?"], "prompt": "The {}s blue face"}, {"index": 257, "image_id": 2348860, "entity": "bird", "caption": "The birds foot on the fruit", "question": ["are there the birds ?", "is there the fruit ?"], "prompt": "The {}s foot on the fruit"}, {"index": 258, "image_id": 2348860, "entity": "bird", "caption": "The piece of fruit the bird is eating", "question": ["is there the piece ?", "is there fruit ?", "is there the bird ?"], "prompt": "The piece of fruit the {} is eating"}, {"index": 259, "image_id": 2348860, "entity": "bird", "caption": "The branch the bird is sitting on", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "The branch the {} is sitting on"}, {"index": 260, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw", "question": ["is there a bird ?", "is there a claw ?"], "prompt": "a {} has a claw"}, {"index": 261, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw holding onto a branch", "question": ["is there a bird ?", "is there a claw ?", "is there a branch ?"], "prompt": "a {} has a claw holding onto a branch"}, {"index": 262, "image_id": 2348795, "entity": "bird", "caption": "Black bird beak white around face. ", "question": ["is there black bird beak ?", "is there face ?"], "prompt": "Black {} beak white around face. "}, {"index": 263, "image_id": 2348671, "entity": "bird", "caption": "that is the leg of the bird", "question": ["is there the leg ?", "is there the bird ?"], "prompt": "that is the leg of the {}"}, {"index": 264, "image_id": 2348089, "entity": "bird", "caption": "a wood platform the bird is on ", "question": ["is there a wood platform ?", "is there the bird ?"], "prompt": "a wood platform the {} is on "}, {"index": 265, "image_id": 2347493, "entity": "bird", "caption": "bird with its mouth open", "question": ["is there bird ?", "is there its mouth ?"], "prompt": "{} with its mouth open"}, {"index": 266, "image_id": 2347493, "entity": "bird", "caption": "The bird is on the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 267, "image_id": 2347493, "entity": "bird", "caption": "The birds beak has a sharp point.", "question": ["are there the birds beak ?", "is there a sharp point ?"], "prompt": "The {}s beak has a sharp point."}, {"index": 268, "image_id": 2347493, "entity": "bird", "caption": "The birds feet are orange.", "question": ["are there the birds ?", "are there feet ?"], "prompt": "The {}s feet are orange."}, {"index": 269, "image_id": 2345609, "entity": "bird", "caption": "the bird has very long legs", "question": ["is there the bird ?", "are there very long legs ?"], "prompt": "the {} has very long legs"}, {"index": 270, "image_id": 2345609, "entity": "bird", "caption": "the bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "the {} has a yellow beak"}, {"index": 271, "image_id": 2344912, "entity": "bird", "caption": "grass that small bird is standing in", "question": ["is there grass ?", "is there small bird ?"], "prompt": "grass that small {} is standing in"}, {"index": 272, "image_id": 2344341, "entity": "bird", "caption": "Feathers of the bird laid back", "question": ["are there feathers ?", "is there the bird ?"], "prompt": "Feathers of the {} laid back"}, {"index": 273, "image_id": 2344328, "entity": "bird", "caption": "A birds head and neck.", "question": ["are there a birds ?", "is there neck ?"], "prompt": "A {}s head and neck."}, {"index": 274, "image_id": 2344328, "entity": "bird", "caption": "bird has grey beak", "question": ["is there bird ?", "is there grey beak ?"], "prompt": "{} has grey beak"}, {"index": 275, "image_id": 2344328, "entity": "bird", "caption": "bird has red eyes", "question": ["is there bird ?", "are there red eyes ?"], "prompt": "{} has red eyes"}, {"index": 276, "image_id": 2344328, "entity": "bird", "caption": "bird has black head", "question": ["is there bird ?", "is there black head ?"], "prompt": "{} has black head"}, {"index": 277, "image_id": 2344328, "entity": "bird", "caption": "bird has blue neck", "question": ["is there bird ?", "is there blue neck ?"], "prompt": "{} has blue neck"}, {"index": 278, "image_id": 2341438, "entity": "bird", "caption": "head of bird is gray", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is gray"}, {"index": 279, "image_id": 2341438, "entity": "bird", "caption": "eye of bird is red", "question": ["is there eye ?", "is there bird ?"], "prompt": "eye of {} is red"}, {"index": 280, "image_id": 2341058, "entity": "bird", "caption": "two birds standing on branches", "question": ["are there two birds ?", "are there branches ?"], "prompt": "two {}s standing on branches"}, {"index": 281, "image_id": 2339258, "entity": "bird", "caption": "the all black beak on the birds face", "question": ["is there the all black beak ?", "are there the birds ?"], "prompt": "the all black beak on the {}s face"}, {"index": 282, "image_id": 2339258, "entity": "bird", "caption": "the claw on the birds foot", "question": ["is there the claw ?", "are there the birds ?"], "prompt": "the claw on the {}s foot"}, {"index": 283, "image_id": 2338848, "entity": "bird", "caption": "the bird is eating the fruit", "question": ["is there the bird ?", "is there the fruit ?"], "prompt": "the {} is eating the fruit"}, {"index": 284, "image_id": 2338848, "entity": "bird", "caption": "A bird is eating some fruit", "question": ["is there a bird ?", "is there some fruit ?"], "prompt": "A {} is eating some fruit"}, {"index": 285, "image_id": 2338848, "entity": "bird", "caption": "A bird is getting some food", "question": ["is there a bird ?", "is there some food ?"], "prompt": "A {} is getting some food"}, {"index": 286, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is red and black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is red and black."}, {"index": 287, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is round.", "question": ["are there the birds ?"], "prompt": "The {}s eye is round."}, {"index": 288, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is small.", "question": ["are there the birds ?"], "prompt": "The {}s eye is small."}, {"index": 289, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are blue.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are blue."}, {"index": 290, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are red.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are red."}, {"index": 291, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are green.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are green."}, {"index": 292, "image_id": 2338848, "entity": "bird", "caption": "the birds beak is orange", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is orange"}, {"index": 293, "image_id": 2338638, "entity": "bird", "caption": "Blue and black bird standing on wood.", "question": ["is there blue and black bird ?", "is there wood ?"], "prompt": "Blue and black {} standing on wood."}, {"index": 294, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s tail", "question": ["is there tail ?"], "prompt": "this is a {}''s tail"}, {"index": 295, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s beak", "question": ["is there a bird''s beak ?"], "prompt": "this is a {}''s beak"}, {"index": 296, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s head", "question": ["is there a bird''s head ?"], "prompt": "this is a {}''s head"}, {"index": 297, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s wing", "question": ["is there wing ?"], "prompt": "this is a {}''s wing"}, {"index": 298, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s eye", "question": ["is there eye ?"], "prompt": "this is a {}''s eye"}, {"index": 299, "image_id": 2338318, "entity": "bird", "caption": "bird is on brown branch", "question": ["is there bird ?", "is there brown branch ?"], "prompt": "{} is on brown branch"}, {"index": 300, "image_id": 2336219, "entity": "bird", "caption": "bird has white eyes", "question": ["is there bird ?", "are there white eyes ?"], "prompt": "{} has white eyes"}, {"index": 301, "image_id": 2335105, "entity": "bird", "caption": "the ear lobes on the bird are red", "question": ["are there the ear lobes ?", "is there the bird ?"], "prompt": "the ear lobes on the {} are red"}, {"index": 302, "image_id": 2332681, "entity": "bird", "caption": "the bird has tiny ears", "question": ["is there the bird ?", "are there tiny ears ?"], "prompt": "the {} has tiny ears"}, {"index": 303, "image_id": 2331468, "entity": "bird", "caption": "the bird is in the water ", "question": ["is there the bird ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 304, "image_id": 2331215, "entity": "bird", "caption": "the birds wings are up", "question": ["are there the birds ?", "are there wings ?"], "prompt": "the {}s wings are up"}, {"index": 305, "image_id": 2331215, "entity": "bird", "caption": "A bird is afraid of the elephant", "question": ["is there a bird ?", "is there the elephant ?"], "prompt": "A {} is afraid of the elephant"}, {"index": 306, "image_id": 2331215, "entity": "bird", "caption": "A bird has spread out its wings", "question": ["is there a bird ?", "are there its wings ?"], "prompt": "A {} has spread out its wings"}, {"index": 307, "image_id": 2331215, "entity": "bird", "caption": "The bird has a long wingspan", "question": ["is there the bird ?", "is there a long wingspan ?"], "prompt": "The {} has a long wingspan"}, {"index": 308, "image_id": 2330695, "entity": "bird", "caption": "bird has a black beak ", "question": ["is there bird ?", "is there a black beak ?"], "prompt": "{} has a black beak "}, {"index": 309, "image_id": 2330695, "entity": "bird", "caption": "bird has gray feet", "question": ["is there bird ?", "are there gray feet ?"], "prompt": "{} has gray feet"}, {"index": 310, "image_id": 2330307, "entity": "bird", "caption": "bird has beady eye", "question": ["is there bird ?", "is there beady eye ?"], "prompt": "{} has beady eye"}, {"index": 311, "image_id": 2330307, "entity": "bird", "caption": "bird has black beak", "question": ["is there bird ?", "is there black beak ?"], "prompt": "{} has black beak"}, {"index": 312, "image_id": 2330307, "entity": "bird", "caption": "bird has 2 feet", "question": ["is there bird ?", "are there 2 feet ?"], "prompt": "{} has 2 feet"}, {"index": 313, "image_id": 2330080, "entity": "bird", "caption": "The bird is looking a yard gnome", "question": ["is there the bird ?", "is there a yard gnome ?"], "prompt": "The {} is looking a yard gnome"}, {"index": 314, "image_id": 2330080, "entity": "bird", "caption": "The bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "The {} has a yellow beak"}, {"index": 315, "image_id": 2328246, "entity": "bird", "caption": "tree leaves behind the bird", "question": ["is there tree ?", "is there the bird ?"], "prompt": "tree leaves behind the {}"}, {"index": 316, "image_id": 2326461, "entity": "bird", "caption": "white feathers on a birds head", "question": ["are there white feathers ?", "are there a birds ?"], "prompt": "white feathers on a {}s head"}, {"index": 317, "image_id": 2326461, "entity": "bird", "caption": "The bird is on a handle", "question": ["is there the bird ?", "is there a handle ?"], "prompt": "The {} is on a handle"}, {"index": 318, "image_id": 2326461, "entity": "bird", "caption": "Small black bird beak", "question": ["is there small black bird beak ?"], "prompt": "Small black {} beak"}, {"index": 319, "image_id": 2325550, "entity": "bird", "caption": "the bird is on a pole", "question": ["is there the bird ?", "is there a pole ?"], "prompt": "the {} is on a pole"}, {"index": 320, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow feathers", "question": ["is there the bird ?", "are there yellow feathers ?"], "prompt": "the {} has yellow feathers"}, {"index": 321, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow spiked hair", "question": ["is there the bird ?", "is there yellow spiked hair ?"], "prompt": "the {} has yellow spiked hair"}, {"index": 322, "image_id": 2325324, "entity": "bird", "caption": "bird has green breast", "question": ["is there bird ?", "is there green breast ?"], "prompt": "{} has green breast"}, {"index": 323, "image_id": 2325324, "entity": "bird", "caption": "bird has green tail", "question": ["is there bird ?", "is there green tail ?"], "prompt": "{} has green tail"}, {"index": 324, "image_id": 2325324, "entity": "bird", "caption": "bird has green head", "question": ["is there bird ?", "is there green head ?"], "prompt": "{} has green head"}, {"index": 325, "image_id": 2325324, "entity": "bird", "caption": "bird has orange talons", "question": ["is there bird ?", "are there orange talons ?"], "prompt": "{} has orange talons"}, {"index": 326, "image_id": 2325324, "entity": "bird", "caption": "bird has grey claws", "question": ["is there bird ?", "are there grey claws ?"], "prompt": "{} has grey claws"}, {"index": 327, "image_id": 2325324, "entity": "bird", "caption": "bird stands on banana", "question": ["is there bird ?", "is there banana ?"], "prompt": "{} stands on banana"}, {"index": 328, "image_id": 2325324, "entity": "bird", "caption": "Green bird is standing on banana.", "question": ["is there green bird ?", "is there banana ?"], "prompt": "Green {} is standing on banana."}, {"index": 329, "image_id": 2325324, "entity": "bird", "caption": "Light is shining on bird.", "question": ["is there light ?", "is there bird ?"], "prompt": "Light is shining on {}."}, {"index": 330, "image_id": 2325324, "entity": "bird", "caption": "bird has orange feet", "question": ["is there bird ?", "are there orange feet ?"], "prompt": "{} has orange feet"}, {"index": 331, "image_id": 2325324, "entity": "bird", "caption": "bird has black nails", "question": ["is there bird ?", "are there black nails ?"], "prompt": "{} has black nails"}, {"index": 332, "image_id": 2325324, "entity": "bird", "caption": "bird's eye is purple blue and black", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is purple blue and black"}, {"index": 333, "image_id": 2323975, "entity": "bird", "caption": "Orange beak on a brown and white bird.", "question": ["is there orange beak ?", "is there a brown and white bird ?"], "prompt": "Orange beak on a brown and white {}."}, {"index": 334, "image_id": 2323560, "entity": "bird", "caption": "bird perched on a scarred limb", "question": ["is there bird ?", "is there a scarred limb ?"], "prompt": "{} perched on a scarred limb"}, {"index": 335, "image_id": 2322830, "entity": "bird", "caption": "bird is drinking water from wood bucket", "question": ["is there bird ?", "is there water ?", "is there wood bucket ?"], "prompt": "{} is drinking water from wood bucket"}, {"index": 336, "image_id": 2322624, "entity": "bird", "caption": "The birds beak has a point.", "question": ["are there the birds beak ?", "is there a point ?"], "prompt": "The {}s beak has a point."}, {"index": 337, "image_id": 2322624, "entity": "bird", "caption": "The birds chest is white.", "question": ["are there the birds ?"], "prompt": "The {}s chest is white."}, {"index": 338, "image_id": 2320805, "entity": "bird", "caption": "orange bird with black and white wings perched", "question": ["are there black and white wings ?"], "prompt": "orange {} with black and white wings perched"}, {"index": 339, "image_id": 2320805, "entity": "bird", "caption": "bird's beak contains blood and other animal remains", "question": ["is there bird's beak ?", "is there blood ?", "is there other animal ?"], "prompt": "{}'s beak contains blood and other animal remains"}, {"index": 340, "image_id": 2320805, "entity": "bird", "caption": "bird pereched of grey rock", "question": ["is there grey rock ?"], "prompt": "{} pereched of grey rock"}, {"index": 341, "image_id": 2320805, "entity": "bird", "caption": "a large tree branch with a bird nested on it", "question": ["is there a large tree branch ?", "is there a bird ?"], "prompt": "a large tree branch with a {} nested on it"}, {"index": 342, "image_id": 2320805, "entity": "bird", "caption": "a tree limb with a bird rested on it", "question": ["is there a tree limb ?", "is there a bird ?"], "prompt": "a tree limb with a {} rested on it"}, {"index": 343, "image_id": 2320805, "entity": "bird", "caption": "bird has grey head", "question": ["is there bird ?", "is there grey head ?"], "prompt": "{} has grey head"}, {"index": 344, "image_id": 2318439, "entity": "bird", "caption": "Baby bird is standing in ground.", "question": ["is there baby bird ?", "is there ground ?"], "prompt": "Baby {} is standing in ground."}, {"index": 345, "image_id": 2318290, "entity": "bird", "caption": "section of brown tipped bird wing feather", "question": ["is there section ?", "is there bird wing feather ?"], "prompt": "section of brown tipped {} wing feather"}, {"index": 346, "image_id": 2318104, "entity": "bird", "caption": "a bird that is standing outside", "question": ["is there a bird ?"], "prompt": "a {} that is standing outside"}, {"index": 347, "image_id": 2317875, "entity": "bird", "caption": "the bird has long gray legs", "question": ["is there the bird ?", "are there long gray legs ?"], "prompt": "the {} has long gray legs"}, {"index": 348, "image_id": 2317875, "entity": "bird", "caption": "the bird has a small beady eye", "question": ["is there the bird ?", "is there a small beady eye ?"], "prompt": "the {} has a small beady eye"}, {"index": 349, "image_id": 2317875, "entity": "bird", "caption": "the bird has a big beak", "question": ["is there the bird ?", "is there a big beak ?"], "prompt": "the {} has a big beak"}, {"index": 350, "image_id": 2317875, "entity": "bird", "caption": "the bird has tons of feathers", "question": ["is there the bird ?", "are there tons ?", "are there feathers ?"], "prompt": "the {} has tons of feathers"}, {"index": 351, "image_id": 2317875, "entity": "bird", "caption": "the bird has its mouth open", "question": ["is there the bird ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 352, "image_id": 2317875, "entity": "bird", "caption": "the bird is standing in grass", "question": ["is there the bird ?", "is there grass ?"], "prompt": "the {} is standing in grass"}, {"index": 353, "image_id": 2317875, "entity": "bird", "caption": "the bird is near a pond", "question": ["is there the bird ?", "is there a pond ?"], "prompt": "the {} is near a pond"}, {"index": 354, "image_id": 2317249, "entity": "bird", "caption": "The birds are out in the forest", "question": ["are there the birds ?", "is there the forest ?"], "prompt": "The {}s are out in the forest"}, {"index": 355, "image_id": 2317249, "entity": "bird", "caption": "The birds are watching for predators", "question": ["are there the birds ?", "are there predators ?"], "prompt": "The {}s are watching for predators"}, {"index": 356, "image_id": 2316597, "entity": "bird", "caption": "the pool of bird feeding ", "question": ["is there the pool ?", "is there bird feeding ?"], "prompt": "the pool of {} feeding "}, {"index": 357, "image_id": 2316597, "entity": "bird", "caption": "a bird iwth a beak", "question": ["is there a bird ?", "is there a beak ?"], "prompt": "a {} iwth a beak"}, {"index": 358, "image_id": 2316285, "entity": "bird", "caption": "bird perched on a branch", "question": ["is there bird ?", "is there a branch ?"], "prompt": "{} perched on a branch"}, {"index": 359, "image_id": 2414525, "entity": "bird", "caption": "man giving bird wine", "question": ["is there man ?", "is there bird wine ?"], "prompt": "man giving {} wine"}, {"index": 360, "image_id": 2413894, "entity": "bird", "caption": "the bird has two eyes", "question": ["is there the bird ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 361, "image_id": 2413894, "entity": "bird", "caption": "The bird is standing in calm water.", "question": ["is there the bird ?", "is there calm water ?"], "prompt": "The {} is standing in calm water."}, {"index": 362, "image_id": 2413604, "entity": "bird", "caption": "the bird is on the chair", "question": ["is there the bird ?", "is there the chair ?"], "prompt": "the {} is on the chair"}, {"index": 363, "image_id": 2413604, "entity": "bird", "caption": "The bird is outside resting on the edge of a wicker basket chair. ", "question": ["is there the bird ?", "is there the edge ?", "is there a wicker basket chair ?"], "prompt": "The {} is outside resting on the edge of a wicker basket chair. "}, {"index": 364, "image_id": 2413604, "entity": "bird", "caption": "The bird has thick black feathers. ", "question": ["is there the bird ?", "are there thick black feathers ?"], "prompt": "The {} has thick black feathers. "}, {"index": 365, "image_id": 2413604, "entity": "bird", "caption": "little bird has extremely expressive eyes", "question": ["is there little bird ?", "are there extremely expressive eyes ?"], "prompt": "little {} has extremely expressive eyes"}, {"index": 366, "image_id": 2413070, "entity": "bird", "caption": "two birds feet", "question": ["are there two birds ?"], "prompt": "two {}s feet"}, {"index": 367, "image_id": 2416459, "entity": "bird", "caption": "bird perched on the flower", "question": ["is there bird ?", "is there the flower ?"], "prompt": "{} perched on the flower"}, {"index": 368, "image_id": 2417074, "entity": "bird", "caption": "the bird has red color beak", "question": ["is there the bird ?", "is there red color beak ?"], "prompt": "the {} has red color beak"}, {"index": 369, "image_id": 2417074, "entity": "bird", "caption": "the bird has paddle feet", "question": ["is there the bird ?", "are there paddle feet ?"], "prompt": "the {} has paddle feet"}, {"index": 370, "image_id": 2417074, "entity": "bird", "caption": "the wings of the bird are gray", "question": ["are there the wings ?", "is there the bird ?"], "prompt": "the wings of the {} are gray"}, {"index": 371, "image_id": 2417074, "entity": "bird", "caption": "birds foot ", "question": ["are there birds ?"], "prompt": "{}s foot "}, {"index": 372, "image_id": 2417074, "entity": "bird", "caption": "beak of bird is closed", "question": ["is there beak ?", "is there bird ?"], "prompt": "beak of {} is closed"}, {"index": 373, "image_id": 2417074, "entity": "bird", "caption": "foot of bird is on dock", "question": ["is there foot ?", "is there bird ?", "is there dock ?"], "prompt": "foot of {} is on dock"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n01601694.json b/data/imagenet/compositions/prompts/n01601694.json
new file mode 100644
index 0000000000000000000000000000000000000000..d2f6a90f12f4f06cb56b687a87e91c16757b699c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n01601694.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2220, "entity": "bird", "caption": "the bird has a fish in its mouth", "question": ["is there the bird ?", "is there a fish ?", "is there its mouth ?"], "prompt": "the {} has a fish in its mouth"}, {"index": 1, "image_id": 2612, "entity": "bird", "caption": "bird has tan beak", "question": ["is there bird ?", "is there tan beak ?"], "prompt": "{} has tan beak"}, {"index": 2, "image_id": 2612, "entity": "bird", "caption": "bird has brown eye", "question": ["is there bird ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 3, "image_id": 2612, "entity": "bird", "caption": "bird has black feathers", "question": ["is there bird ?", "are there black feathers ?"], "prompt": "{} has black feathers"}, {"index": 4, "image_id": 2613, "entity": "bird", "caption": "birds have orange beaks", "question": ["are there birds ?", "are there orange beaks ?"], "prompt": "{}s have orange beaks"}, {"index": 5, "image_id": 2613, "entity": "bird", "caption": "bird has white feathers", "question": ["is there bird ?", "are there white feathers ?"], "prompt": "{} has white feathers"}, {"index": 6, "image_id": 2613, "entity": "bird", "caption": "bird has grey leg", "question": ["is there bird ?"], "prompt": "{} has grey leg"}, {"index": 7, "image_id": 2613, "entity": "bird", "caption": "bird stands on one leg", "question": ["is there bird ?", "is there one leg ?"], "prompt": "{} stands on one leg"}, {"index": 8, "image_id": 2619, "entity": "bird", "caption": "the eye of the bird is black", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "the eye of the {} is black"}, {"index": 9, "image_id": 2619, "entity": "bird", "caption": "the bird feet is black", "question": ["are there the bird feet ?"], "prompt": "the {} feet is black"}, {"index": 10, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food out of the person's hand", "question": ["is there the bird ?", "is there food ?", "is there the person's hand ?"], "prompt": "The {} is eating food out of the person's hand"}, {"index": 11, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating food", "question": ["is there the bird ?", "is there food ?"], "prompt": "The {} is eating food"}, {"index": 12, "image_id": 2415095, "entity": "bird", "caption": "A bird with red feathers is eating food", "question": ["is there a bird ?", "are there red feathers ?", "is there food ?"], "prompt": "A {} with red feathers is eating food"}, {"index": 13, "image_id": 2415095, "entity": "bird", "caption": "The red feather bird is eating food out of a person's hand", "question": ["is there the red feather bird ?", "is there food ?", "is there a person's hand ?"], "prompt": "The red feather {} is eating food out of a person's hand"}, {"index": 14, "image_id": 2415095, "entity": "bird", "caption": "The bird is eating an apples from the person's hand", "question": ["is there the bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The {} is eating an apples from the person's hand"}, {"index": 15, "image_id": 2415095, "entity": "bird", "caption": "The red-feathered bird is eating an apples from the person's hand", "question": ["is there the red-feathered bird ?", "are there an apples ?", "is there the person's hand ?"], "prompt": "The red-feathered {} is eating an apples from the person's hand"}, {"index": 16, "image_id": 2414024, "entity": "bird", "caption": "little bird with chest puffed out", "question": ["is there little bird ?", "is there chest ?"], "prompt": "little {} with chest puffed out"}, {"index": 17, "image_id": 2412521, "entity": "bird", "caption": "bird has red patch", "question": ["is there bird ?", "is there red patch ?"], "prompt": "{} has red patch"}, {"index": 18, "image_id": 2412521, "entity": "bird", "caption": "wood is under bird", "question": ["is there wood ?", "is there bird ?"], "prompt": "wood is under {}"}, {"index": 19, "image_id": 2412521, "entity": "bird", "caption": "black bird has it's mouth open", "question": ["is there black bird ?"], "prompt": "black {} has it's mouth open"}, {"index": 20, "image_id": 2412521, "entity": "bird", "caption": "bird perched on log", "question": ["is there bird ?", "is there log ?"], "prompt": "{} perched on log"}, {"index": 21, "image_id": 2412521, "entity": "bird", "caption": "black bird leg slanted from body", "question": ["is there black bird leg ?", "is there body ?"], "prompt": "black {} leg slanted from body"}, {"index": 22, "image_id": 2412061, "entity": "bird", "caption": "Black bird beak", "question": ["is there black bird beak ?"], "prompt": "Black {} beak"}, {"index": 23, "image_id": 2412061, "entity": "bird", "caption": "Black-feathered bird looks up to the sky", "question": ["is there black-feathered bird ?", "is there the sky ?"], "prompt": "Black-feathered {} looks up to the sky"}, {"index": 24, "image_id": 2409570, "entity": "bird", "caption": "the bird has two feet", "question": ["is there the bird ?", "are there two feet ?"], "prompt": "the {} has two feet"}, {"index": 25, "image_id": 2409570, "entity": "bird", "caption": "the bird is biting its tail", "question": ["is there the bird ?", "is there its tail ?"], "prompt": "the {} is biting its tail"}, {"index": 26, "image_id": 2409570, "entity": "bird", "caption": "the bird has wings", "question": ["is there the bird ?", "are there wings ?"], "prompt": "the {} has wings"}, {"index": 27, "image_id": 2409570, "entity": "bird", "caption": "White bird with black tail feathers standing on the sand", "question": ["is there white bird ?", "are there black tail feathers ?", "is there the sand ?"], "prompt": "White {} with black tail feathers standing on the sand"}, {"index": 28, "image_id": 2409306, "entity": "bird", "caption": "a fragment of ground that a young bird is standing on", "question": ["is there a fragment ?", "is there ground ?", "is there a young bird ?"], "prompt": "a fragment of ground that a young {} is standing on"}, {"index": 29, "image_id": 2409306, "entity": "bird", "caption": "head of bird is polka dotted", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is polka dotted"}, {"index": 30, "image_id": 2409306, "entity": "bird", "caption": "a baby bird stands on the ground", "question": ["is there a baby bird ?", "is there the ground ?"], "prompt": "a baby {} stands on the ground"}, {"index": 31, "image_id": 2409215, "entity": "bird", "caption": "The bird's beak is orange. ", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is orange. "}, {"index": 32, "image_id": 2409215, "entity": "bird", "caption": "The bird is flying above water. ", "question": ["is there the bird ?", "is there water ?"], "prompt": "The {} is flying above water. "}, {"index": 33, "image_id": 2409215, "entity": "bird", "caption": "End of the bird's wing that is primarily black", "question": ["is there end ?", "is there the bird's wing ?"], "prompt": "End of the {}'s wing that is primarily black"}, {"index": 34, "image_id": 2409045, "entity": "bird", "caption": "Neck of bird has S shape", "question": ["is there neck ?", "is there bird ?", "are there s ?", "is there shape ?"], "prompt": "Neck of {} has S shape"}, {"index": 35, "image_id": 2409045, "entity": "bird", "caption": "Grey bird rising into the air", "question": ["is there grey bird ?", "is there the air ?"], "prompt": "Grey {} rising into the air"}, {"index": 36, "image_id": 2409010, "entity": "bird", "caption": "a bird has a small creature in its mouth", "question": ["is there a bird ?", "is there a small creature ?", "is there its mouth ?"], "prompt": "a {} has a small creature in its mouth"}, {"index": 37, "image_id": 2409010, "entity": "bird", "caption": "a bird walks along the wet sand", "question": ["is there a bird ?", "is there the wet sand ?"], "prompt": "a {} walks along the wet sand"}, {"index": 38, "image_id": 2408592, "entity": "bird", "caption": "a bird stands at the edge of the water", "question": ["is there a bird ?", "is there the edge ?", "is there the water ?"], "prompt": "a {} stands at the edge of the water"}, {"index": 39, "image_id": 2408592, "entity": "bird", "caption": "The bird has webbed feet", "question": ["is there the bird ?"], "prompt": "The {} has webbed feet"}, {"index": 40, "image_id": 2408592, "entity": "bird", "caption": "The bird is standing in the dirt", "question": ["is there the bird ?", "is there the dirt ?"], "prompt": "The {} is standing in the dirt"}, {"index": 41, "image_id": 2408592, "entity": "bird", "caption": "the ground the bird is standing on", "question": ["is there the ground ?", "is there the bird ?"], "prompt": "the ground the {} is standing on"}, {"index": 42, "image_id": 2408299, "entity": "bird", "caption": "the bird is hiding in a plant", "question": ["is there the bird ?", "is there a plant ?"], "prompt": "the {} is hiding in a plant"}, {"index": 43, "image_id": 2408299, "entity": "bird", "caption": "the bird has a white belly", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 44, "image_id": 2407737, "entity": "bird", "caption": "this is a birds eye", "question": ["are there a birds ?"], "prompt": "this is a {}s eye"}, {"index": 45, "image_id": 2407737, "entity": "bird", "caption": "this is a bird tail", "question": ["is there a bird tail ?"], "prompt": "this is a {} tail"}, {"index": 46, "image_id": 2407737, "entity": "bird", "caption": "the bird has sharp beak", "question": ["is there the bird ?", "is there sharp beak ?"], "prompt": "the {} has sharp beak"}, {"index": 47, "image_id": 2407737, "entity": "bird", "caption": "the branches are beside the bird", "question": ["are there the branches ?", "is there the bird ?"], "prompt": "the branches are beside the {}"}, {"index": 48, "image_id": 2407737, "entity": "bird", "caption": "the bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "the {} has thin legs"}, {"index": 49, "image_id": 2407737, "entity": "bird", "caption": "the bird has black eyes", "question": ["is there the bird ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 50, "image_id": 2407316, "entity": "bird", "caption": "the bird has black legs", "question": ["is there the bird ?", "are there black legs ?"], "prompt": "the {} has black legs"}, {"index": 51, "image_id": 2407316, "entity": "bird", "caption": "the bird has three toes", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "the {} has three toes"}, {"index": 52, "image_id": 2406956, "entity": "bird", "caption": "black feathers on top of birds head", "question": ["are there black feathers ?", "is there top ?", "are there birds ?"], "prompt": "black feathers on top of {}s head"}, {"index": 53, "image_id": 2406956, "entity": "bird", "caption": "this is the bird's eye", "question": ["is there the bird's eye ?"], "prompt": "this is the {}'s eye"}, {"index": 54, "image_id": 2406956, "entity": "bird", "caption": "an object is in the bird's beak", "question": ["is there an object ?", "is there the bird's beak ?"], "prompt": "an object is in the {}'s beak"}, {"index": 55, "image_id": 2406956, "entity": "bird", "caption": "the bird's eye is black in color", "question": ["is there the bird's eye ?", "is there color ?"], "prompt": "the {}'s eye is black in color"}, {"index": 56, "image_id": 2404798, "entity": "bird", "caption": "bird has long beak", "question": ["is there bird ?", "is there long beak ?"], "prompt": "{} has long beak"}, {"index": 57, "image_id": 2404798, "entity": "bird", "caption": "bird has pink feathers", "question": ["is there bird ?", "are there pink feathers ?"], "prompt": "{} has pink feathers"}, {"index": 58, "image_id": 2404798, "entity": "bird", "caption": "bird has red eye", "question": ["is there bird ?", "is there red eye ?"], "prompt": "{} has red eye"}, {"index": 59, "image_id": 2404798, "entity": "bird", "caption": "head of bird is featherless", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is featherless"}, {"index": 60, "image_id": 2404798, "entity": "bird", "caption": "bird has green tag on leg", "question": ["is there bird ?", "is there green tag ?", "is there leg ?"], "prompt": "{} has green tag on leg"}, {"index": 61, "image_id": 2404798, "entity": "bird", "caption": "The bird is in the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 62, "image_id": 2404798, "entity": "bird", "caption": "The bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "The {} has a beak"}, {"index": 63, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is open", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 64, "image_id": 2404798, "entity": "bird", "caption": "The bird is wading in the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is wading in the water."}, {"index": 65, "image_id": 2404798, "entity": "bird", "caption": "The bird has a long beak.", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak."}, {"index": 66, "image_id": 2404798, "entity": "bird", "caption": "The bird has light and dark pink feathers.", "question": ["is there the bird ?", "are there light and dark pink feathers ?"], "prompt": "The {} has light and dark pink feathers."}, {"index": 67, "image_id": 2404798, "entity": "bird", "caption": "The bird has a green band around the leg.", "question": ["is there the bird ?", "is there a green band ?", "is there the leg ?"], "prompt": "The {} has a green band around the leg."}, {"index": 68, "image_id": 2404798, "entity": "bird", "caption": "The bird has white neck feathers.", "question": ["is there the bird ?", "are there white neck feathers ?"], "prompt": "The {} has white neck feathers."}, {"index": 69, "image_id": 2404798, "entity": "bird", "caption": "Large rocks are behind the birds.", "question": ["are there large rocks ?", "are there the birds ?"], "prompt": "Large rocks are behind the {}s."}, {"index": 70, "image_id": 2404798, "entity": "bird", "caption": "Water is dripping from the bird's beak.", "question": ["is there water ?", "is there the bird's beak ?"], "prompt": "Water is dripping from the {}'s beak."}, {"index": 71, "image_id": 2404798, "entity": "bird", "caption": "The bird's eye is yellow and black.", "question": ["is there the bird's eye ?"], "prompt": "The {}'s eye is yellow and black."}, {"index": 72, "image_id": 2404673, "entity": "bird", "caption": "the bird is on a long black metal piece", "question": ["is there the bird ?", "is there a long black metal piece ?"], "prompt": "the {} is on a long black metal piece"}, {"index": 73, "image_id": 2404673, "entity": "bird", "caption": "glass sun catchers are hanging in front of the wooden bird", "question": ["are there glass sun catchers ?", "is there front ?", "is there the wooden bird ?"], "prompt": "glass sun catchers are hanging in front of the wooden {}"}, {"index": 74, "image_id": 2404673, "entity": "bird", "caption": "the bird has a beak", "question": ["is there the bird ?", "is there a beak ?"], "prompt": "the {} has a beak"}, {"index": 75, "image_id": 2404673, "entity": "bird", "caption": "the window is reflecting the bird", "question": ["is there the window ?", "is there the bird ?"], "prompt": "the window is reflecting the {}"}, {"index": 76, "image_id": 2404673, "entity": "bird", "caption": "the bird has 1 leg", "question": ["is there the bird ?", "is there 1 leg ?"], "prompt": "the {} has 1 leg"}, {"index": 77, "image_id": 2404673, "entity": "bird", "caption": "the bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "the {} has a long beak"}, {"index": 78, "image_id": 2404673, "entity": "bird", "caption": "the bird's eye is black", "question": ["is there the bird's eye ?"], "prompt": "the {}'s eye is black"}, {"index": 79, "image_id": 2404673, "entity": "bird", "caption": "the bird's leg is long", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is long"}, {"index": 80, "image_id": 2404673, "entity": "bird", "caption": "the bird is sitting on the window", "question": ["is there the bird ?", "is there the window ?"], "prompt": "the {} is sitting on the window"}, {"index": 81, "image_id": 2404673, "entity": "bird", "caption": "The bird has a long beak", "question": ["is there the bird ?", "is there a long beak ?"], "prompt": "The {} has a long beak"}, {"index": 82, "image_id": 2403435, "entity": "bird", "caption": "person is feeding bird", "question": ["is there person ?", "is there bird ?"], "prompt": "person is feeding {}"}, {"index": 83, "image_id": 2401304, "entity": "bird", "caption": "a bird is standing on weathered wood", "question": ["is there a bird ?", "is there weathered wood ?"], "prompt": "a {} is standing on weathered wood"}, {"index": 84, "image_id": 2401079, "entity": "bird", "caption": "bird's beak is black and red", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black and red"}, {"index": 85, "image_id": 2401079, "entity": "bird", "caption": "the bird's feet are black", "question": ["are there the bird's feet ?"], "prompt": "the {}'s feet are black"}, {"index": 86, "image_id": 2400985, "entity": "bird", "caption": "the bird has a short black beak", "question": ["is there the bird ?", "is there a short black beak ?"], "prompt": "the {} has a short black beak"}, {"index": 87, "image_id": 2400985, "entity": "bird", "caption": "the bird has sharp claws", "question": ["is there the bird ?", "are there sharp claws ?"], "prompt": "the {} has sharp claws"}, {"index": 88, "image_id": 2400985, "entity": "bird", "caption": "A birds left side wing. ", "question": ["are there a birds ?", "is there side wing ?"], "prompt": "A {}s left side wing. "}, {"index": 89, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds right foot", "question": ["are there the fully shown birds ?"], "prompt": "The fully shown {}s right foot"}, {"index": 90, "image_id": 2400070, "entity": "bird", "caption": "The fully shown birds left foot", "question": ["are there the fully shown birds ?", "is there foot ?"], "prompt": "The fully shown {}s left foot"}, {"index": 91, "image_id": 2396390, "entity": "bird", "caption": "bird perched on wooden pole ", "question": ["is there bird ?", "is there wooden pole ?"], "prompt": "{} perched on wooden pole "}, {"index": 92, "image_id": 2396390, "entity": "bird", "caption": "bird angled sideways with feet tightly gripping", "question": ["is there bird ?", "are there feet ?"], "prompt": "{} angled sideways with feet tightly gripping"}, {"index": 93, "image_id": 2396109, "entity": "bird", "caption": "The bird has yellow eyes.", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes."}, {"index": 94, "image_id": 2396109, "entity": "bird", "caption": "The bird stands on the tree.", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "The {} stands on the tree."}, {"index": 95, "image_id": 2396109, "entity": "bird", "caption": "this is a bird", "question": ["is there a bird ?"], "prompt": "this is a {}"}, {"index": 96, "image_id": 2396109, "entity": "bird", "caption": "the bird is on the tree", "question": ["is there the bird ?", "is there the tree ?"], "prompt": "the {} is on the tree"}, {"index": 97, "image_id": 2396109, "entity": "bird", "caption": "the bird has yellow eyes", "question": ["is there the bird ?", "are there yellow eyes ?"], "prompt": "the {} has yellow eyes"}, {"index": 98, "image_id": 2396109, "entity": "bird", "caption": "the bird's legs are long", "question": ["are there the bird's legs ?"], "prompt": "the {}'s legs are long"}, {"index": 99, "image_id": 2396109, "entity": "bird", "caption": "The bird has a pointy beak.", "question": ["is there the bird ?", "is there a pointy beak ?"], "prompt": "The {} has a pointy beak."}, {"index": 100, "image_id": 2396109, "entity": "bird", "caption": "The bird has two legs.", "question": ["is there the bird ?", "are there two legs ?"], "prompt": "The {} has two legs."}, {"index": 101, "image_id": 2396109, "entity": "bird", "caption": "The bird has a yellow eye.", "question": ["is there the bird ?", "is there a yellow eye ?"], "prompt": "The {} has a yellow eye."}, {"index": 102, "image_id": 2396109, "entity": "bird", "caption": "The bird has a wing.", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "The {} has a wing."}, {"index": 103, "image_id": 2395577, "entity": "bird", "caption": "the bird has a wing", "question": ["is there the bird ?", "is there a wing ?"], "prompt": "the {} has a wing"}, {"index": 104, "image_id": 2395577, "entity": "bird", "caption": "the bird has an eye", "question": ["is there the bird ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 105, "image_id": 2394957, "entity": "bird", "caption": "bird stand on rim of bowl", "question": ["is there bird ?", "is there rim ?", "is there bowl ?"], "prompt": "{} stand on rim of bowl"}, {"index": 106, "image_id": 2394957, "entity": "bird", "caption": "bird's head is black and blue in color", "question": ["is there bird's head ?", "is there color ?"], "prompt": "{}'s head is black and blue in color"}, {"index": 107, "image_id": 2394957, "entity": "bird", "caption": "bird's eye is red", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is red"}, {"index": 108, "image_id": 2393198, "entity": "bird", "caption": "the birds long beak", "question": ["are there the birds ?"], "prompt": "the {}s long beak"}, {"index": 109, "image_id": 2393198, "entity": "bird", "caption": "the feathers on the birds chest", "question": ["are there the feathers ?", "are there the birds ?"], "prompt": "the feathers on the {}s chest"}, {"index": 110, "image_id": 2393198, "entity": "bird", "caption": "the log the birds standing on", "question": ["is there the log ?", "are there the birds ?"], "prompt": "the log the {}s standing on"}, {"index": 111, "image_id": 2392907, "entity": "bird", "caption": "bird has yellow legs", "question": ["is there bird ?", "are there yellow legs ?"], "prompt": "{} has yellow legs"}, {"index": 112, "image_id": 2392907, "entity": "bird", "caption": "bird has large toe nails", "question": ["is there bird ?", "are there large toe nails ?"], "prompt": "{} has large toe nails"}, {"index": 113, "image_id": 2392255, "entity": "bird", "caption": "The birds tail feathers.", "question": ["are there the birds tail feathers ?"], "prompt": "The {}s tail feathers."}, {"index": 114, "image_id": 2392255, "entity": "bird", "caption": "The bird is standing on a person's hand.", "question": ["is there the bird ?", "is there a person's hand ?"], "prompt": "The {} is standing on a person's hand."}, {"index": 115, "image_id": 2392255, "entity": "bird", "caption": "The bird has grey feathers.", "question": ["is there the bird ?", "are there grey feathers ?"], "prompt": "The {} has grey feathers."}, {"index": 116, "image_id": 2392255, "entity": "bird", "caption": "The bird has a black beak.", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "The {} has a black beak."}, {"index": 117, "image_id": 2392255, "entity": "bird", "caption": "the bird has a black beak", "question": ["is there the bird ?", "is there a black beak ?"], "prompt": "the {} has a black beak"}, {"index": 118, "image_id": 2392255, "entity": "bird", "caption": "the bird has black legs and claws", "question": ["is there the bird ?", "are there black legs ?", "are there claws ?"], "prompt": "the {} has black legs and claws"}, {"index": 119, "image_id": 2392255, "entity": "bird", "caption": "the bird's head is white and gray", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is white and gray"}, {"index": 120, "image_id": 2391103, "entity": "bird", "caption": "Top of bird's head is jet black", "question": ["is there top ?", "is there bird's head ?", "is there jet black ?"], "prompt": "Top of {}'s head is jet black"}, {"index": 121, "image_id": 2390453, "entity": "bird", "caption": "the bird has eye", "question": ["is there the bird ?", "is there eye ?"], "prompt": "the {} has eye"}, {"index": 122, "image_id": 2389247, "entity": "bird", "caption": "a birds head", "question": ["are there a birds ?"], "prompt": "a {}s head"}, {"index": 123, "image_id": 2389247, "entity": "bird", "caption": "The birds beak.", "question": ["are there the birds ?"], "prompt": "The {}s beak."}, {"index": 124, "image_id": 2388774, "entity": "bird", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the {} is in the car "}, {"index": 125, "image_id": 2388774, "entity": "bird", "caption": "The bird has small black feathers ", "question": ["is there the bird ?", "are there small black feathers ?"], "prompt": "The {} has small black feathers "}, {"index": 126, "image_id": 2387336, "entity": "bird", "caption": "part of branch birds are sitting on", "question": ["is there part ?", "are there branch birds ?"], "prompt": "part of branch {}s are sitting on"}, {"index": 127, "image_id": 2385839, "entity": "bird", "caption": "the bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "the {} has black and white feathers"}, {"index": 128, "image_id": 2384739, "entity": "bird", "caption": "bird's legs are curled", "question": ["are there bird's legs ?"], "prompt": "{}'s legs are curled"}, {"index": 129, "image_id": 2384739, "entity": "bird", "caption": "a bird is lying on the pavement", "question": ["is there a bird ?", "is there the pavement ?"], "prompt": "a {} is lying on the pavement"}, {"index": 130, "image_id": 2384739, "entity": "bird", "caption": "the bird's head is upside down", "question": ["is there the bird's head ?"], "prompt": "the {}'s head is upside down"}, {"index": 131, "image_id": 2384739, "entity": "bird", "caption": "the black cat is lying next to the bird", "question": ["is there the black cat ?", "is there the bird ?"], "prompt": "the black cat is lying next to the {}"}, {"index": 132, "image_id": 2384582, "entity": "bird", "caption": "This bird has a red beak.", "question": ["is there this bird ?", "is there a red beak ?"], "prompt": "This {} has a red beak."}, {"index": 133, "image_id": 2384582, "entity": "bird", "caption": "The bird is standing on a sandy beach.", "question": ["is there the bird ?", "is there a sandy beach ?"], "prompt": "The {} is standing on a sandy beach."}, {"index": 134, "image_id": 2384582, "entity": "bird", "caption": "This bird has black eyes.", "question": ["is there this bird ?", "are there black eyes ?"], "prompt": "This {} has black eyes."}, {"index": 135, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white belly.", "question": ["is there the bird ?", "is there a white belly ?"], "prompt": "The {} has a white belly."}, {"index": 136, "image_id": 2384582, "entity": "bird", "caption": "The bird has a white body.", "question": ["is there the bird ?", "is there a white body ?"], "prompt": "The {} has a white body."}, {"index": 137, "image_id": 2384582, "entity": "bird", "caption": "The bird has black and white tail feathers.", "question": ["is there the bird ?", "are there black and white tail feathers ?"], "prompt": "The {} has black and white tail feathers."}, {"index": 138, "image_id": 2384582, "entity": "bird", "caption": "The bird has orange legs.", "question": ["is there the bird ?", "are there orange legs ?"], "prompt": "The {} has orange legs."}, {"index": 139, "image_id": 2384582, "entity": "bird", "caption": "The bird has an orange beak.", "question": ["is there the bird ?", "is there an orange beak ?"], "prompt": "The {} has an orange beak."}, {"index": 140, "image_id": 2382811, "entity": "bird", "caption": "The bird is above the water", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is above the water"}, {"index": 141, "image_id": 2382811, "entity": "bird", "caption": "body of seabird is white", "question": ["is there body ?", "is there seabird ?"], "prompt": "body of sea{} is white"}, {"index": 142, "image_id": 2381448, "entity": "bird", "caption": "birds feet are visible", "question": ["are there birds ?", "are there feet ?"], "prompt": "{}s feet are visible"}, {"index": 143, "image_id": 2381401, "entity": "bird", "caption": "the bird has a slender beak", "question": ["is there the bird ?", "is there a slender beak ?"], "prompt": "the {} has a slender beak"}, {"index": 144, "image_id": 2381401, "entity": "bird", "caption": "the bird has stripes on his back", "question": ["is there the bird ?", "are there stripes ?", "is there his back ?"], "prompt": "the {} has stripes on his back"}, {"index": 145, "image_id": 2381401, "entity": "bird", "caption": "the birds beak is very long", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is very long"}, {"index": 146, "image_id": 2381401, "entity": "bird", "caption": "The bird is standing on the branches of the tree.", "question": ["is there the bird ?", "are there the branches ?", "is there the tree ?"], "prompt": "The {} is standing on the branches of the tree."}, {"index": 147, "image_id": 2381401, "entity": "bird", "caption": "The bird has a long black beak.", "question": ["is there the bird ?", "is there a long black beak ?"], "prompt": "The {} has a long black beak."}, {"index": 148, "image_id": 2381401, "entity": "bird", "caption": "The bird has long red legs.", "question": ["is there the bird ?", "are there long red legs ?"], "prompt": "The {} has long red legs."}, {"index": 149, "image_id": 2381401, "entity": "bird", "caption": "the bird is red and beautiful", "question": ["is there the bird ?"], "prompt": "the {} is red and beautiful"}, {"index": 150, "image_id": 2380312, "entity": "bird", "caption": "the bird has a tail", "question": ["is there the bird ?", "is there a tail ?"], "prompt": "the {} has a tail"}, {"index": 151, "image_id": 2380312, "entity": "bird", "caption": "the bird has a head", "question": ["is there the bird ?", "is there a head ?"], "prompt": "the {} has a head"}, {"index": 152, "image_id": 2380026, "entity": "bird", "caption": "the bird has a blue head.", "question": ["is there the bird ?", "is there a blue head ?"], "prompt": "the {} has a blue head."}, {"index": 153, "image_id": 2380026, "entity": "bird", "caption": "The bird has yellow and orange on it's chest.", "question": ["is there the bird ?", "is there it's chest ?"], "prompt": "The {} has yellow and orange on it's chest."}, {"index": 154, "image_id": 2380026, "entity": "bird", "caption": "The bird has three toes.", "question": ["is there the bird ?", "are there three toes ?"], "prompt": "The {} has three toes."}, {"index": 155, "image_id": 2380026, "entity": "bird", "caption": "bird's wings are green", "question": ["are there bird's wings ?"], "prompt": "{}'s wings are green"}, {"index": 156, "image_id": 2380026, "entity": "bird", "caption": "bird has blue head", "question": ["is there bird ?", "is there blue head ?"], "prompt": "{} has blue head"}, {"index": 157, "image_id": 2380026, "entity": "bird", "caption": "bird has orange beak", "question": ["is there bird ?", "is there orange beak ?"], "prompt": "{} has orange beak"}, {"index": 158, "image_id": 2380026, "entity": "bird", "caption": "bird has green body", "question": ["is there bird ?", "is there green body ?"], "prompt": "{} has green body"}, {"index": 159, "image_id": 2380026, "entity": "bird", "caption": "bird has brown talons", "question": ["is there bird ?", "are there brown talons ?"], "prompt": "{} has brown talons"}, {"index": 160, "image_id": 2378627, "entity": "bird", "caption": "A birds beak", "question": ["are there a birds ?"], "prompt": "A {}s beak"}, {"index": 161, "image_id": 2378627, "entity": "bird", "caption": "A birds wing", "question": ["are there a birds ?"], "prompt": "A {}s wing"}, {"index": 162, "image_id": 2377993, "entity": "bird", "caption": "The birds claws are black.", "question": ["are there the birds ?", "are there claws ?"], "prompt": "The {}s claws are black."}, {"index": 163, "image_id": 2377993, "entity": "bird", "caption": "The birds eye is black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is black."}, {"index": 164, "image_id": 2377993, "entity": "bird", "caption": "The birds beak is black.", "question": ["are there the birds beak ?"], "prompt": "The {}s beak is black."}, {"index": 165, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a bird", "question": ["is there a bird ?"], "prompt": "Pink felt on a {}"}, {"index": 166, "image_id": 2376795, "entity": "bird", "caption": "Pink felt on a white bird", "question": ["is there a white bird ?"], "prompt": "Pink felt on a white {}"}, {"index": 167, "image_id": 2376795, "entity": "bird", "caption": "A bird has pink felt on it", "question": ["is there a bird ?"], "prompt": "A {} has pink felt on it"}, {"index": 168, "image_id": 2376795, "entity": "bird", "caption": "bird head turned right", "question": ["is there bird head ?"], "prompt": "{} head turned right"}, {"index": 169, "image_id": 2376340, "entity": "bird", "caption": "the birds legs ", "question": ["are there the birds ?"], "prompt": "the {}s legs "}, {"index": 170, "image_id": 2376340, "entity": "bird", "caption": "The bird has long legs. ", "question": ["is there the bird ?", "are there long legs ?"], "prompt": "The {} has long legs. "}, {"index": 171, "image_id": 2376224, "entity": "bird", "caption": "The bird's eyes are open", "question": ["are there the bird's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 172, "image_id": 2376224, "entity": "bird", "caption": "The bird has thin legs", "question": ["is there the bird ?", "are there thin legs ?"], "prompt": "The {} has thin legs"}, {"index": 173, "image_id": 2375434, "entity": "bird", "caption": "The bird is holding a stick in its mouth", "question": ["is there the bird ?", "is there a stick ?", "is there its mouth ?"], "prompt": "The {} is holding a stick in its mouth"}, {"index": 174, "image_id": 2375434, "entity": "bird", "caption": "birds flying in the sky", "question": ["are there birds ?", "is there the sky ?"], "prompt": "{}s flying in the sky"}, {"index": 175, "image_id": 2375434, "entity": "bird", "caption": "birds flapping their wings", "question": ["are there birds ?", "are there their wings ?"], "prompt": "{}s flapping their wings"}, {"index": 176, "image_id": 2375434, "entity": "bird", "caption": "four birds flapping their wings", "question": ["are there four birds ?", "are there their wings ?"], "prompt": "four {}s flapping their wings"}, {"index": 177, "image_id": 2375434, "entity": "bird", "caption": "a bird with its wings spread to full length", "question": ["is there a bird ?", "are there its wings ?", "is there full length ?"], "prompt": "a {} with its wings spread to full length"}, {"index": 178, "image_id": 2372589, "entity": "bird", "caption": "belly of the bird is white", "question": ["is there belly ?", "is there the bird ?"], "prompt": "belly of the {} is white"}, {"index": 179, "image_id": 2372589, "entity": "bird", "caption": "bird's feet are black", "question": ["are there bird's feet ?"], "prompt": "{}'s feet are black"}, {"index": 180, "image_id": 2372589, "entity": "bird", "caption": "bird's beak is black", "question": ["is there bird's beak ?"], "prompt": "{}'s beak is black"}, {"index": 181, "image_id": 2372267, "entity": "bird", "caption": "bird has green face", "question": ["is there bird ?", "is there green face ?"], "prompt": "{} has green face"}, {"index": 182, "image_id": 2372267, "entity": "bird", "caption": "bird has white beak", "question": ["is there bird ?", "is there white beak ?"], "prompt": "{} has white beak"}, {"index": 183, "image_id": 2371979, "entity": "bird", "caption": "bird's head is black", "question": ["is there bird's head ?"], "prompt": "{}'s head is black"}, {"index": 184, "image_id": 2371979, "entity": "bird", "caption": "bird's wing is black and red", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is black and red"}, {"index": 185, "image_id": 2371266, "entity": "bird", "caption": "birds beak that is two toned", "question": ["are there birds ?"], "prompt": "{}s beak that is two toned"}, {"index": 186, "image_id": 2370174, "entity": "bird", "caption": "water is behind the bird", "question": ["is there water ?", "is there the bird ?"], "prompt": "water is behind the {}"}, {"index": 187, "image_id": 2370174, "entity": "bird", "caption": "The bird has black and white feathers", "question": ["is there the bird ?", "are there black and white feathers ?"], "prompt": "The {} has black and white feathers"}, {"index": 188, "image_id": 2366794, "entity": "bird", "caption": "the bird's leg is skinny", "question": ["is there the bird's leg ?"], "prompt": "the {}'s leg is skinny"}, {"index": 189, "image_id": 2366794, "entity": "bird", "caption": "the bird's tail is black ", "question": ["is there the bird's tail ?"], "prompt": "the {}'s tail is black "}, {"index": 190, "image_id": 2366794, "entity": "bird", "caption": "teh bird's beak is smll", "question": ["is there teh bird's beak ?", "is there smll ?"], "prompt": "teh {}'s beak is smll"}, {"index": 191, "image_id": 2366794, "entity": "bird", "caption": "the bird is on the beach ", "question": ["is there the bird ?", "is there the beach ?"], "prompt": "the {} is on the beach "}, {"index": 192, "image_id": 2366548, "entity": "bird", "caption": "the birds have long legs", "question": ["are there the birds ?", "are there long legs ?"], "prompt": "the {}s have long legs"}, {"index": 193, "image_id": 2366548, "entity": "bird", "caption": "tall grass is behind the bird", "question": ["is there tall grass ?", "is there the bird ?"], "prompt": "tall grass is behind the {}"}, {"index": 194, "image_id": 2366548, "entity": "bird", "caption": "the bird closest to us has a few black feathers", "question": ["is there the bird ?", "are there a few black feathers ?"], "prompt": "the {} closest to us has a few black feathers"}, {"index": 195, "image_id": 2365606, "entity": "bird", "caption": "This is a bird", "question": ["is there a bird ?"], "prompt": "This is a {}"}, {"index": 196, "image_id": 2364373, "entity": "bird", "caption": "The bird has brown legs.", "question": ["is there the bird ?", "are there brown legs ?"], "prompt": "The {} has brown legs."}, {"index": 197, "image_id": 2363673, "entity": "bird", "caption": "A white and grey bird with its head turned to the left. ", "question": ["is there a white and grey bird ?", "is there its head ?", "is there the left ?"], "prompt": "A white and grey {} with its head turned to the left. "}, {"index": 198, "image_id": 2362480, "entity": "bird", "caption": "this bird has skinny legs", "question": ["is there this bird ?", "are there skinny legs ?"], "prompt": "this {} has skinny legs"}, {"index": 199, "image_id": 2362036, "entity": "bird", "caption": "it is the eye of the bird", "question": ["is there the eye ?", "is there the bird ?"], "prompt": "it is the eye of the {}"}, {"index": 200, "image_id": 2362036, "entity": "bird", "caption": "the birds left side of the wing", "question": ["are there the birds ?", "is there side ?", "is there the wing ?"], "prompt": "the {}s left side of the wing"}, {"index": 201, "image_id": 2362031, "entity": "bird", "caption": "The bird's feather are shiny.", "question": ["is there the bird's feather ?"], "prompt": "The {}'s feather are shiny."}, {"index": 202, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are glossy.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are glossy."}, {"index": 203, "image_id": 2362031, "entity": "bird", "caption": "The bird's feathers are black.", "question": ["are there the bird's feathers ?"], "prompt": "The {}'s feathers are black."}, {"index": 204, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is black.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is black."}, {"index": 205, "image_id": 2362031, "entity": "bird", "caption": "The bird's beak is open.", "question": ["is there the bird's beak ?"], "prompt": "The {}'s beak is open."}, {"index": 206, "image_id": 2362031, "entity": "bird", "caption": "The bird's talons are gripping a rock.", "question": ["are there the bird's talons ?", "is there a rock ?"], "prompt": "The {}'s talons are gripping a rock."}, {"index": 207, "image_id": 2361417, "entity": "bird", "caption": "Blue bird's feet wrapped about branch", "question": ["are there blue bird's feet ?", "is there branch ?"], "prompt": "Blue {}'s feet wrapped about branch"}, {"index": 208, "image_id": 2360048, "entity": "bird", "caption": "The bird is standing on a multi level white surface.", "question": ["is there the bird ?", "is there a multi level white surface ?"], "prompt": "The {} is standing on a multi level white surface."}, {"index": 209, "image_id": 2359558, "entity": "bird", "caption": "the birds feet ", "question": ["are there the birds ?"], "prompt": "the {}s feet "}, {"index": 210, "image_id": 2359558, "entity": "bird", "caption": "birds nail ", "question": ["are there birds ?"], "prompt": "{}s nail "}, {"index": 211, "image_id": 2359558, "entity": "bird", "caption": "the birds eye ", "question": ["are there the birds ?"], "prompt": "the {}s eye "}, {"index": 212, "image_id": 2359558, "entity": "bird", "caption": "the birds tail ", "question": ["are there the birds ?"], "prompt": "the {}s tail "}, {"index": 213, "image_id": 2359558, "entity": "bird", "caption": "the birds beak", "question": ["are there the birds ?"], "prompt": "the {}s beak"}, {"index": 214, "image_id": 2359558, "entity": "bird", "caption": "black bird beak", "question": ["is there black bird beak ?"], "prompt": "black {} beak"}, {"index": 215, "image_id": 2359461, "entity": "bird", "caption": "Caterpillar in the birds beak.", "question": ["are there the birds ?"], "prompt": "Caterpillar in the {}s beak."}, {"index": 216, "image_id": 2359036, "entity": "bird", "caption": "Back of bird's neck is green.", "question": ["is there bird's neck ?"], "prompt": "Back of {}'s neck is green."}, {"index": 217, "image_id": 2359036, "entity": "bird", "caption": "yellow and orange feathers for birds chest", "question": ["are there yellow and orange feathers ?", "are there birds ?"], "prompt": "yellow and orange feathers for {}s chest"}, {"index": 218, "image_id": 2359036, "entity": "bird", "caption": "blue with black accent feathers on birds head", "question": ["are there black accent feathers ?", "are there birds ?"], "prompt": "blue with black accent feathers on {}s head"}, {"index": 219, "image_id": 2358738, "entity": "bird", "caption": "the bird has a brown spot on its head", "question": ["is there the bird ?", "is there a brown spot ?", "is there its head ?"], "prompt": "the {} has a brown spot on its head"}, {"index": 220, "image_id": 2358738, "entity": "bird", "caption": "the birds wings are brown with a few white spots", "question": ["are there the birds wings ?", "are there a few white spots ?"], "prompt": "the {}s wings are brown with a few white spots"}, {"index": 221, "image_id": 2358256, "entity": "bird", "caption": "bird with wings spread", "question": ["is there bird ?", "are there wings ?"], "prompt": "{} with wings spread"}, {"index": 222, "image_id": 2358256, "entity": "bird", "caption": "nice bird with wings spread", "question": ["is there nice bird ?", "are there wings ?"], "prompt": "nice {} with wings spread"}, {"index": 223, "image_id": 2358256, "entity": "bird", "caption": "healthy bird with wings spread", "question": ["is there healthy bird ?", "are there wings ?"], "prompt": "healthy {} with wings spread"}, {"index": 224, "image_id": 2358256, "entity": "bird", "caption": "beautiful bird with wings spread", "question": ["is there beautiful bird ?", "are there wings ?"], "prompt": "beautiful {} with wings spread"}, {"index": 225, "image_id": 2358256, "entity": "bird", "caption": "bird with pretty wings spread", "question": ["is there bird ?", "are there pretty wings ?"], "prompt": "{} with pretty wings spread"}, {"index": 226, "image_id": 2358256, "entity": "bird", "caption": "bird with colorful wings spread", "question": ["is there bird ?", "are there colorful wings ?"], "prompt": "{} with colorful wings spread"}, {"index": 227, "image_id": 2357787, "entity": "bird", "caption": "The bird has gray feathers", "question": ["is there the bird ?", "are there gray feathers ?"], "prompt": "The {} has gray feathers"}, {"index": 228, "image_id": 2356534, "entity": "bird", "caption": "dead insect in birds beak", "question": ["is there dead insect ?", "are there birds ?"], "prompt": "dead insect in {}s beak"}, {"index": 229, "image_id": 2356534, "entity": "bird", "caption": "The bird has brown feathers", "question": ["is there the bird ?", "are there brown feathers ?"], "prompt": "The {} has brown feathers"}, {"index": 230, "image_id": 2356534, "entity": "bird", "caption": "The bird is on the ground", "question": ["is there the bird ?", "is there the ground ?"], "prompt": "The {} is on the ground"}, {"index": 231, "image_id": 2355976, "entity": "bird", "caption": "A bird is next to a zebra", "question": ["is there a bird ?", "is there a zebra ?"], "prompt": "A {} is next to a zebra"}, {"index": 232, "image_id": 2355976, "entity": "bird", "caption": "The bird has black feathers", "question": ["is there the bird ?", "are there black feathers ?"], "prompt": "The {} has black feathers"}, {"index": 233, "image_id": 2355730, "entity": "bird", "caption": "bird has grey feathers", "question": ["is there bird ?", "are there grey feathers ?"], "prompt": "{} has grey feathers"}, {"index": 234, "image_id": 2355730, "entity": "bird", "caption": "The bird has claws", "question": ["is there the bird ?", "are there claws ?"], "prompt": "The {} has claws"}, {"index": 235, "image_id": 2355730, "entity": "bird", "caption": "Grey beak of a bird. ", "question": ["is there grey beak ?", "is there a bird ?"], "prompt": "Grey beak of a {}. "}, {"index": 236, "image_id": 2354530, "entity": "bird", "caption": "cement area where a bird stands", "question": ["is there cement area ?", "is there a bird ?"], "prompt": "cement area where a {} stands"}, {"index": 237, "image_id": 2354530, "entity": "bird", "caption": "bird has black streak on head", "question": ["is there bird ?", "is there black streak ?", "is there head ?"], "prompt": "{} has black streak on head"}, {"index": 238, "image_id": 2354530, "entity": "bird", "caption": "bird has yellow eye", "question": ["is there bird ?", "is there yellow eye ?"], "prompt": "{} has yellow eye"}, {"index": 239, "image_id": 2353113, "entity": "bird", "caption": "bird has brown beak", "question": ["is there bird ?", "is there brown beak ?"], "prompt": "{} has brown beak"}, {"index": 240, "image_id": 2353113, "entity": "bird", "caption": "bird is behind fence", "question": ["is there bird ?", "is there fence ?"], "prompt": "{} is behind fence"}, {"index": 241, "image_id": 2353113, "entity": "bird", "caption": "bird is near water", "question": ["is there bird ?", "is there water ?"], "prompt": "{} is near water"}, {"index": 242, "image_id": 2352371, "entity": "bird", "caption": "wood platform for bird to stand on", "question": ["is there wood platform ?", "is there bird ?"], "prompt": "wood platform for {} to stand on"}, {"index": 243, "image_id": 2349694, "entity": "bird", "caption": "tail of bird is white", "question": ["is there tail ?", "is there bird ?"], "prompt": "tail of {} is white"}, {"index": 244, "image_id": 2349587, "entity": "bird", "caption": "The bird is eating the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is eating the branch."}, {"index": 245, "image_id": 2349587, "entity": "bird", "caption": "The bird is holding the branch.", "question": ["is there the bird ?", "is there the branch ?"], "prompt": "The {} is holding the branch."}, {"index": 246, "image_id": 2349248, "entity": "bird", "caption": "the food the bird is eating", "question": ["is there the food ?", "is there the bird ?"], "prompt": "the food the {} is eating"}, {"index": 247, "image_id": 2349109, "entity": "bird", "caption": "the branch the bird is biting", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "the branch the {} is biting"}, {"index": 248, "image_id": 2348860, "entity": "bird", "caption": "A bird has an orange beak.", "question": ["is there a bird ?", "is there an orange beak ?"], "prompt": "A {} has an orange beak."}, {"index": 249, "image_id": 2348860, "entity": "bird", "caption": "A birds claw is grasping a potato.", "question": ["is there a birds ?", "is there a potato ?"], "prompt": "A {}s claw is grasping a potato."}, {"index": 250, "image_id": 2348860, "entity": "bird", "caption": "A bird is eating a potato.", "question": ["is there a bird ?", "is there a potato ?"], "prompt": "A {} is eating a potato."}, {"index": 251, "image_id": 2348860, "entity": "bird", "caption": "A bird is on a tree branch.", "question": ["is there a bird ?", "is there a tree branch ?"], "prompt": "A {} is on a tree branch."}, {"index": 252, "image_id": 2348860, "entity": "bird", "caption": "A tropical bird is on a tree branch.", "question": ["is there a tropical bird ?", "is there a tree branch ?"], "prompt": "A tropical {} is on a tree branch."}, {"index": 253, "image_id": 2348860, "entity": "bird", "caption": "bird's wing is green", "question": ["is there bird's wing ?"], "prompt": "{}'s wing is green"}, {"index": 254, "image_id": 2348860, "entity": "bird", "caption": "The peice of food in the birds mouth", "question": ["is there the peice ?", "is there food ?", "are there the birds ?"], "prompt": "The peice of food in the {}s mouth"}, {"index": 255, "image_id": 2348860, "entity": "bird", "caption": "The birds red orange eye", "question": ["are there the birds ?"], "prompt": "The {}s red orange eye"}, {"index": 256, "image_id": 2348860, "entity": "bird", "caption": "The birds blue face", "question": ["are there the birds ?"], "prompt": "The {}s blue face"}, {"index": 257, "image_id": 2348860, "entity": "bird", "caption": "The birds foot on the fruit", "question": ["are there the birds ?", "is there the fruit ?"], "prompt": "The {}s foot on the fruit"}, {"index": 258, "image_id": 2348860, "entity": "bird", "caption": "The piece of fruit the bird is eating", "question": ["is there the piece ?", "is there fruit ?", "is there the bird ?"], "prompt": "The piece of fruit the {} is eating"}, {"index": 259, "image_id": 2348860, "entity": "bird", "caption": "The branch the bird is sitting on", "question": ["is there the branch ?", "is there the bird ?"], "prompt": "The branch the {} is sitting on"}, {"index": 260, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw", "question": ["is there a bird ?", "is there a claw ?"], "prompt": "a {} has a claw"}, {"index": 261, "image_id": 2348860, "entity": "bird", "caption": "a bird has a claw holding onto a branch", "question": ["is there a bird ?", "is there a claw ?", "is there a branch ?"], "prompt": "a {} has a claw holding onto a branch"}, {"index": 262, "image_id": 2348795, "entity": "bird", "caption": "Black bird beak white around face. ", "question": ["is there black bird beak ?", "is there face ?"], "prompt": "Black {} beak white around face. "}, {"index": 263, "image_id": 2348671, "entity": "bird", "caption": "that is the leg of the bird", "question": ["is there the leg ?", "is there the bird ?"], "prompt": "that is the leg of the {}"}, {"index": 264, "image_id": 2348089, "entity": "bird", "caption": "a wood platform the bird is on ", "question": ["is there a wood platform ?", "is there the bird ?"], "prompt": "a wood platform the {} is on "}, {"index": 265, "image_id": 2347493, "entity": "bird", "caption": "bird with its mouth open", "question": ["is there bird ?", "is there its mouth ?"], "prompt": "{} with its mouth open"}, {"index": 266, "image_id": 2347493, "entity": "bird", "caption": "The bird is on the water.", "question": ["is there the bird ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 267, "image_id": 2347493, "entity": "bird", "caption": "The birds beak has a sharp point.", "question": ["are there the birds beak ?", "is there a sharp point ?"], "prompt": "The {}s beak has a sharp point."}, {"index": 268, "image_id": 2347493, "entity": "bird", "caption": "The birds feet are orange.", "question": ["are there the birds ?", "are there feet ?"], "prompt": "The {}s feet are orange."}, {"index": 269, "image_id": 2345609, "entity": "bird", "caption": "the bird has very long legs", "question": ["is there the bird ?", "are there very long legs ?"], "prompt": "the {} has very long legs"}, {"index": 270, "image_id": 2345609, "entity": "bird", "caption": "the bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "the {} has a yellow beak"}, {"index": 271, "image_id": 2344912, "entity": "bird", "caption": "grass that small bird is standing in", "question": ["is there grass ?", "is there small bird ?"], "prompt": "grass that small {} is standing in"}, {"index": 272, "image_id": 2344341, "entity": "bird", "caption": "Feathers of the bird laid back", "question": ["are there feathers ?", "is there the bird ?"], "prompt": "Feathers of the {} laid back"}, {"index": 273, "image_id": 2344328, "entity": "bird", "caption": "A birds head and neck.", "question": ["are there a birds ?", "is there neck ?"], "prompt": "A {}s head and neck."}, {"index": 274, "image_id": 2344328, "entity": "bird", "caption": "bird has grey beak", "question": ["is there bird ?", "is there grey beak ?"], "prompt": "{} has grey beak"}, {"index": 275, "image_id": 2344328, "entity": "bird", "caption": "bird has red eyes", "question": ["is there bird ?", "are there red eyes ?"], "prompt": "{} has red eyes"}, {"index": 276, "image_id": 2344328, "entity": "bird", "caption": "bird has black head", "question": ["is there bird ?", "is there black head ?"], "prompt": "{} has black head"}, {"index": 277, "image_id": 2344328, "entity": "bird", "caption": "bird has blue neck", "question": ["is there bird ?", "is there blue neck ?"], "prompt": "{} has blue neck"}, {"index": 278, "image_id": 2341438, "entity": "bird", "caption": "head of bird is gray", "question": ["is there head ?", "is there bird ?"], "prompt": "head of {} is gray"}, {"index": 279, "image_id": 2341438, "entity": "bird", "caption": "eye of bird is red", "question": ["is there eye ?", "is there bird ?"], "prompt": "eye of {} is red"}, {"index": 280, "image_id": 2341058, "entity": "bird", "caption": "two birds standing on branches", "question": ["are there two birds ?", "are there branches ?"], "prompt": "two {}s standing on branches"}, {"index": 281, "image_id": 2339258, "entity": "bird", "caption": "the all black beak on the birds face", "question": ["is there the all black beak ?", "are there the birds ?"], "prompt": "the all black beak on the {}s face"}, {"index": 282, "image_id": 2339258, "entity": "bird", "caption": "the claw on the birds foot", "question": ["is there the claw ?", "are there the birds ?"], "prompt": "the claw on the {}s foot"}, {"index": 283, "image_id": 2338848, "entity": "bird", "caption": "the bird is eating the fruit", "question": ["is there the bird ?", "is there the fruit ?"], "prompt": "the {} is eating the fruit"}, {"index": 284, "image_id": 2338848, "entity": "bird", "caption": "A bird is eating some fruit", "question": ["is there a bird ?", "is there some fruit ?"], "prompt": "A {} is eating some fruit"}, {"index": 285, "image_id": 2338848, "entity": "bird", "caption": "A bird is getting some food", "question": ["is there a bird ?", "is there some food ?"], "prompt": "A {} is getting some food"}, {"index": 286, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is red and black.", "question": ["are there the birds ?"], "prompt": "The {}s eye is red and black."}, {"index": 287, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is round.", "question": ["are there the birds ?"], "prompt": "The {}s eye is round."}, {"index": 288, "image_id": 2338848, "entity": "bird", "caption": "The birds eye is small.", "question": ["are there the birds ?"], "prompt": "The {}s eye is small."}, {"index": 289, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are blue.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are blue."}, {"index": 290, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are red.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are red."}, {"index": 291, "image_id": 2338848, "entity": "bird", "caption": "The birds feathers are green.", "question": ["are there the birds ?", "are there feathers ?"], "prompt": "The {}s feathers are green."}, {"index": 292, "image_id": 2338848, "entity": "bird", "caption": "the birds beak is orange", "question": ["are there the birds beak ?"], "prompt": "the {}s beak is orange"}, {"index": 293, "image_id": 2338638, "entity": "bird", "caption": "Blue and black bird standing on wood.", "question": ["is there blue and black bird ?", "is there wood ?"], "prompt": "Blue and black {} standing on wood."}, {"index": 294, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s tail", "question": ["is there tail ?"], "prompt": "this is a {}''s tail"}, {"index": 295, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s beak", "question": ["is there a bird''s beak ?"], "prompt": "this is a {}''s beak"}, {"index": 296, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s head", "question": ["is there a bird''s head ?"], "prompt": "this is a {}''s head"}, {"index": 297, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s wing", "question": ["is there wing ?"], "prompt": "this is a {}''s wing"}, {"index": 298, "image_id": 2338638, "entity": "bird", "caption": "this is a bird''s eye", "question": ["is there eye ?"], "prompt": "this is a {}''s eye"}, {"index": 299, "image_id": 2338318, "entity": "bird", "caption": "bird is on brown branch", "question": ["is there bird ?", "is there brown branch ?"], "prompt": "{} is on brown branch"}, {"index": 300, "image_id": 2336219, "entity": "bird", "caption": "bird has white eyes", "question": ["is there bird ?", "are there white eyes ?"], "prompt": "{} has white eyes"}, {"index": 301, "image_id": 2335105, "entity": "bird", "caption": "the ear lobes on the bird are red", "question": ["are there the ear lobes ?", "is there the bird ?"], "prompt": "the ear lobes on the {} are red"}, {"index": 302, "image_id": 2332681, "entity": "bird", "caption": "the bird has tiny ears", "question": ["is there the bird ?", "are there tiny ears ?"], "prompt": "the {} has tiny ears"}, {"index": 303, "image_id": 2331468, "entity": "bird", "caption": "the bird is in the water ", "question": ["is there the bird ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 304, "image_id": 2331215, "entity": "bird", "caption": "the birds wings are up", "question": ["are there the birds ?", "are there wings ?"], "prompt": "the {}s wings are up"}, {"index": 305, "image_id": 2331215, "entity": "bird", "caption": "A bird is afraid of the elephant", "question": ["is there a bird ?", "is there the elephant ?"], "prompt": "A {} is afraid of the elephant"}, {"index": 306, "image_id": 2331215, "entity": "bird", "caption": "A bird has spread out its wings", "question": ["is there a bird ?", "are there its wings ?"], "prompt": "A {} has spread out its wings"}, {"index": 307, "image_id": 2331215, "entity": "bird", "caption": "The bird has a long wingspan", "question": ["is there the bird ?", "is there a long wingspan ?"], "prompt": "The {} has a long wingspan"}, {"index": 308, "image_id": 2330695, "entity": "bird", "caption": "bird has a black beak ", "question": ["is there bird ?", "is there a black beak ?"], "prompt": "{} has a black beak "}, {"index": 309, "image_id": 2330695, "entity": "bird", "caption": "bird has gray feet", "question": ["is there bird ?", "are there gray feet ?"], "prompt": "{} has gray feet"}, {"index": 310, "image_id": 2330307, "entity": "bird", "caption": "bird has beady eye", "question": ["is there bird ?", "is there beady eye ?"], "prompt": "{} has beady eye"}, {"index": 311, "image_id": 2330307, "entity": "bird", "caption": "bird has black beak", "question": ["is there bird ?", "is there black beak ?"], "prompt": "{} has black beak"}, {"index": 312, "image_id": 2330307, "entity": "bird", "caption": "bird has 2 feet", "question": ["is there bird ?", "are there 2 feet ?"], "prompt": "{} has 2 feet"}, {"index": 313, "image_id": 2330080, "entity": "bird", "caption": "The bird is looking a yard gnome", "question": ["is there the bird ?", "is there a yard gnome ?"], "prompt": "The {} is looking a yard gnome"}, {"index": 314, "image_id": 2330080, "entity": "bird", "caption": "The bird has a yellow beak", "question": ["is there the bird ?", "is there a yellow beak ?"], "prompt": "The {} has a yellow beak"}, {"index": 315, "image_id": 2328246, "entity": "bird", "caption": "tree leaves behind the bird", "question": ["is there tree ?", "is there the bird ?"], "prompt": "tree leaves behind the {}"}, {"index": 316, "image_id": 2326461, "entity": "bird", "caption": "white feathers on a birds head", "question": ["are there white feathers ?", "are there a birds ?"], "prompt": "white feathers on a {}s head"}, {"index": 317, "image_id": 2326461, "entity": "bird", "caption": "The bird is on a handle", "question": ["is there the bird ?", "is there a handle ?"], "prompt": "The {} is on a handle"}, {"index": 318, "image_id": 2326461, "entity": "bird", "caption": "Small black bird beak", "question": ["is there small black bird beak ?"], "prompt": "Small black {} beak"}, {"index": 319, "image_id": 2325550, "entity": "bird", "caption": "the bird is on a pole", "question": ["is there the bird ?", "is there a pole ?"], "prompt": "the {} is on a pole"}, {"index": 320, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow feathers", "question": ["is there the bird ?", "are there yellow feathers ?"], "prompt": "the {} has yellow feathers"}, {"index": 321, "image_id": 2325550, "entity": "bird", "caption": "the bird has yellow spiked hair", "question": ["is there the bird ?", "is there yellow spiked hair ?"], "prompt": "the {} has yellow spiked hair"}, {"index": 322, "image_id": 2325324, "entity": "bird", "caption": "bird has green breast", "question": ["is there bird ?", "is there green breast ?"], "prompt": "{} has green breast"}, {"index": 323, "image_id": 2325324, "entity": "bird", "caption": "bird has green tail", "question": ["is there bird ?", "is there green tail ?"], "prompt": "{} has green tail"}, {"index": 324, "image_id": 2325324, "entity": "bird", "caption": "bird has green head", "question": ["is there bird ?", "is there green head ?"], "prompt": "{} has green head"}, {"index": 325, "image_id": 2325324, "entity": "bird", "caption": "bird has orange talons", "question": ["is there bird ?", "are there orange talons ?"], "prompt": "{} has orange talons"}, {"index": 326, "image_id": 2325324, "entity": "bird", "caption": "bird has grey claws", "question": ["is there bird ?", "are there grey claws ?"], "prompt": "{} has grey claws"}, {"index": 327, "image_id": 2325324, "entity": "bird", "caption": "bird stands on banana", "question": ["is there bird ?", "is there banana ?"], "prompt": "{} stands on banana"}, {"index": 328, "image_id": 2325324, "entity": "bird", "caption": "Green bird is standing on banana.", "question": ["is there green bird ?", "is there banana ?"], "prompt": "Green {} is standing on banana."}, {"index": 329, "image_id": 2325324, "entity": "bird", "caption": "Light is shining on bird.", "question": ["is there light ?", "is there bird ?"], "prompt": "Light is shining on {}."}, {"index": 330, "image_id": 2325324, "entity": "bird", "caption": "bird has orange feet", "question": ["is there bird ?", "are there orange feet ?"], "prompt": "{} has orange feet"}, {"index": 331, "image_id": 2325324, "entity": "bird", "caption": "bird has black nails", "question": ["is there bird ?", "are there black nails ?"], "prompt": "{} has black nails"}, {"index": 332, "image_id": 2325324, "entity": "bird", "caption": "bird's eye is purple blue and black", "question": ["is there bird's eye ?"], "prompt": "{}'s eye is purple blue and black"}, {"index": 333, "image_id": 2323975, "entity": "bird", "caption": "Orange beak on a brown and white bird.", "question": ["is there orange beak ?", "is there a brown and white bird ?"], "prompt": "Orange beak on a brown and white {}."}, {"index": 334, "image_id": 2323560, "entity": "bird", "caption": "bird perched on a scarred limb", "question": ["is there bird ?", "is there a scarred limb ?"], "prompt": "{} perched on a scarred limb"}, {"index": 335, "image_id": 2322830, "entity": "bird", "caption": "bird is drinking water from wood bucket", "question": ["is there bird ?", "is there water ?", "is there wood bucket ?"], "prompt": "{} is drinking water from wood bucket"}, {"index": 336, "image_id": 2322624, "entity": "bird", "caption": "The birds beak has a point.", "question": ["are there the birds beak ?", "is there a point ?"], "prompt": "The {}s beak has a point."}, {"index": 337, "image_id": 2322624, "entity": "bird", "caption": "The birds chest is white.", "question": ["are there the birds ?"], "prompt": "The {}s chest is white."}, {"index": 338, "image_id": 2320805, "entity": "bird", "caption": "orange bird with black and white wings perched", "question": ["are there black and white wings ?"], "prompt": "orange {} with black and white wings perched"}, {"index": 339, "image_id": 2320805, "entity": "bird", "caption": "bird's beak contains blood and other animal remains", "question": ["is there bird's beak ?", "is there blood ?", "is there other animal ?"], "prompt": "{}'s beak contains blood and other animal remains"}, {"index": 340, "image_id": 2320805, "entity": "bird", "caption": "bird pereched of grey rock", "question": ["is there grey rock ?"], "prompt": "{} pereched of grey rock"}, {"index": 341, "image_id": 2320805, "entity": "bird", "caption": "a large tree branch with a bird nested on it", "question": ["is there a large tree branch ?", "is there a bird ?"], "prompt": "a large tree branch with a {} nested on it"}, {"index": 342, "image_id": 2320805, "entity": "bird", "caption": "a tree limb with a bird rested on it", "question": ["is there a tree limb ?", "is there a bird ?"], "prompt": "a tree limb with a {} rested on it"}, {"index": 343, "image_id": 2320805, "entity": "bird", "caption": "bird has grey head", "question": ["is there bird ?", "is there grey head ?"], "prompt": "{} has grey head"}, {"index": 344, "image_id": 2318439, "entity": "bird", "caption": "Baby bird is standing in ground.", "question": ["is there baby bird ?", "is there ground ?"], "prompt": "Baby {} is standing in ground."}, {"index": 345, "image_id": 2318290, "entity": "bird", "caption": "section of brown tipped bird wing feather", "question": ["is there section ?", "is there bird wing feather ?"], "prompt": "section of brown tipped {} wing feather"}, {"index": 346, "image_id": 2318104, "entity": "bird", "caption": "a bird that is standing outside", "question": ["is there a bird ?"], "prompt": "a {} that is standing outside"}, {"index": 347, "image_id": 2317875, "entity": "bird", "caption": "the bird has long gray legs", "question": ["is there the bird ?", "are there long gray legs ?"], "prompt": "the {} has long gray legs"}, {"index": 348, "image_id": 2317875, "entity": "bird", "caption": "the bird has a small beady eye", "question": ["is there the bird ?", "is there a small beady eye ?"], "prompt": "the {} has a small beady eye"}, {"index": 349, "image_id": 2317875, "entity": "bird", "caption": "the bird has a big beak", "question": ["is there the bird ?", "is there a big beak ?"], "prompt": "the {} has a big beak"}, {"index": 350, "image_id": 2317875, "entity": "bird", "caption": "the bird has tons of feathers", "question": ["is there the bird ?", "are there tons ?", "are there feathers ?"], "prompt": "the {} has tons of feathers"}, {"index": 351, "image_id": 2317875, "entity": "bird", "caption": "the bird has its mouth open", "question": ["is there the bird ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 352, "image_id": 2317875, "entity": "bird", "caption": "the bird is standing in grass", "question": ["is there the bird ?", "is there grass ?"], "prompt": "the {} is standing in grass"}, {"index": 353, "image_id": 2317875, "entity": "bird", "caption": "the bird is near a pond", "question": ["is there the bird ?", "is there a pond ?"], "prompt": "the {} is near a pond"}, {"index": 354, "image_id": 2317249, "entity": "bird", "caption": "The birds are out in the forest", "question": ["are there the birds ?", "is there the forest ?"], "prompt": "The {}s are out in the forest"}, {"index": 355, "image_id": 2317249, "entity": "bird", "caption": "The birds are watching for predators", "question": ["are there the birds ?", "are there predators ?"], "prompt": "The {}s are watching for predators"}, {"index": 356, "image_id": 2316597, "entity": "bird", "caption": "the pool of bird feeding ", "question": ["is there the pool ?", "is there bird feeding ?"], "prompt": "the pool of {} feeding "}, {"index": 357, "image_id": 2316597, "entity": "bird", "caption": "a bird iwth a beak", "question": ["is there a bird ?", "is there a beak ?"], "prompt": "a {} iwth a beak"}, {"index": 358, "image_id": 2316285, "entity": "bird", "caption": "bird perched on a branch", "question": ["is there bird ?", "is there a branch ?"], "prompt": "{} perched on a branch"}, {"index": 359, "image_id": 2414525, "entity": "bird", "caption": "man giving bird wine", "question": ["is there man ?", "is there bird wine ?"], "prompt": "man giving {} wine"}, {"index": 360, "image_id": 2413894, "entity": "bird", "caption": "the bird has two eyes", "question": ["is there the bird ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 361, "image_id": 2413894, "entity": "bird", "caption": "The bird is standing in calm water.", "question": ["is there the bird ?", "is there calm water ?"], "prompt": "The {} is standing in calm water."}, {"index": 362, "image_id": 2413604, "entity": "bird", "caption": "the bird is on the chair", "question": ["is there the bird ?", "is there the chair ?"], "prompt": "the {} is on the chair"}, {"index": 363, "image_id": 2413604, "entity": "bird", "caption": "The bird is outside resting on the edge of a wicker basket chair. ", "question": ["is there the bird ?", "is there the edge ?", "is there a wicker basket chair ?"], "prompt": "The {} is outside resting on the edge of a wicker basket chair. "}, {"index": 364, "image_id": 2413604, "entity": "bird", "caption": "The bird has thick black feathers. ", "question": ["is there the bird ?", "are there thick black feathers ?"], "prompt": "The {} has thick black feathers. "}, {"index": 365, "image_id": 2413604, "entity": "bird", "caption": "little bird has extremely expressive eyes", "question": ["is there little bird ?", "are there extremely expressive eyes ?"], "prompt": "little {} has extremely expressive eyes"}, {"index": 366, "image_id": 2413070, "entity": "bird", "caption": "two birds feet", "question": ["are there two birds ?"], "prompt": "two {}s feet"}, {"index": 367, "image_id": 2416459, "entity": "bird", "caption": "bird perched on the flower", "question": ["is there bird ?", "is there the flower ?"], "prompt": "{} perched on the flower"}, {"index": 368, "image_id": 2417074, "entity": "bird", "caption": "the bird has red color beak", "question": ["is there the bird ?", "is there red color beak ?"], "prompt": "the {} has red color beak"}, {"index": 369, "image_id": 2417074, "entity": "bird", "caption": "the bird has paddle feet", "question": ["is there the bird ?", "are there paddle feet ?"], "prompt": "the {} has paddle feet"}, {"index": 370, "image_id": 2417074, "entity": "bird", "caption": "the wings of the bird are gray", "question": ["are there the wings ?", "is there the bird ?"], "prompt": "the wings of the {} are gray"}, {"index": 371, "image_id": 2417074, "entity": "bird", "caption": "birds foot ", "question": ["are there birds ?"], "prompt": "{}s foot "}, {"index": 372, "image_id": 2417074, "entity": "bird", "caption": "beak of bird is closed", "question": ["is there beak ?", "is there bird ?"], "prompt": "beak of {} is closed"}, {"index": 373, "image_id": 2417074, "entity": "bird", "caption": "foot of bird is on dock", "question": ["is there foot ?", "is there bird ?", "is there dock ?"], "prompt": "foot of {} is on dock"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02088094.json b/data/imagenet/compositions/prompts/n02088094.json
new file mode 100644
index 0000000000000000000000000000000000000000..52b4abb883afb593845d8e1b9e77621259749c5a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02088094.json
@@ -0,0 +1,13317 @@
+[
+ {
+ "index": 0,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog has a black nose",
+ "question": [
+ "is there dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "{} has a black nose"
+ },
+ {
+ "index": 1,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog's ears are up",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are up"
+ },
+ {
+ "index": 2,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog's eyes are dark",
+ "question": [
+ "are there dog's eyes ?"
+ ],
+ "prompt": "{}'s eyes are dark"
+ },
+ {
+ "index": 3,
+ "image_id": 3535,
+ "entity": "dog",
+ "caption": "The dog has four legs.",
+ "question": [
+ "is there the dog ?",
+ "are there four legs ?"
+ ],
+ "prompt": "The {} has four legs."
+ },
+ {
+ "index": 4,
+ "image_id": 3535,
+ "entity": "dog",
+ "caption": "tongue hanging out a dog's mouth",
+ "question": [
+ "is there tongue ?",
+ "is there a dog's mouth ?"
+ ],
+ "prompt": "tongue hanging out a {}'s mouth"
+ },
+ {
+ "index": 5,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "dog is sitting in grass",
+ "question": [
+ "is there dog ?",
+ "is there grass ?"
+ ],
+ "prompt": "{} is sitting in grass"
+ },
+ {
+ "index": 6,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "dog is mostly brown",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is mostly brown"
+ },
+ {
+ "index": 7,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the dog has a black nose",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "the {} has a black nose"
+ },
+ {
+ "index": 8,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the brown dog has a long brown tail",
+ "question": [
+ "is there the brown dog ?",
+ "is there a long brown tail ?"
+ ],
+ "prompt": "the brown {} has a long brown tail"
+ },
+ {
+ "index": 9,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the dog has large brown paws",
+ "question": [
+ "is there the dog ?",
+ "are there large brown paws ?"
+ ],
+ "prompt": "the {} has large brown paws"
+ },
+ {
+ "index": 10,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "a dog with its mouth open",
+ "question": [
+ "is there a dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "a {} with its mouth open"
+ },
+ {
+ "index": 11,
+ "image_id": 3752,
+ "entity": "dog",
+ "caption": "the dogs tail is black ",
+ "question": [
+ "are there the dogs tail ?"
+ ],
+ "prompt": "the {}s tail is black "
+ },
+ {
+ "index": 12,
+ "image_id": 3752,
+ "entity": "dog",
+ "caption": "the dogs feet is black ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s feet is black "
+ },
+ {
+ "index": 13,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "A dog and a cat are standing together on the sidewalk",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?",
+ "is there the sidewalk ?"
+ ],
+ "prompt": "A {} and a cat are standing together on the sidewalk"
+ },
+ {
+ "index": 14,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "dog has a brown patch",
+ "question": [
+ "is there dog ?",
+ "is there a brown patch ?"
+ ],
+ "prompt": "{} has a brown patch"
+ },
+ {
+ "index": 15,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "dog has a blue rope tied",
+ "question": [
+ "is there dog ?",
+ "is there a blue rope ?"
+ ],
+ "prompt": "{} has a blue rope tied"
+ },
+ {
+ "index": 16,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "the dog has a blue leash",
+ "question": [
+ "is there the dog ?",
+ "is there a blue leash ?"
+ ],
+ "prompt": "the {} has a blue leash"
+ },
+ {
+ "index": 17,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "A dog and a cat walk together.",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A {} and a cat walk together."
+ },
+ {
+ "index": 18,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "Both dog and cat are in the middle of the frame.",
+ "question": [
+ "is there both dog ?",
+ "is there cat ?",
+ "is there the middle ?",
+ "is there the frame ?"
+ ],
+ "prompt": "Both {} and cat are in the middle of the frame."
+ },
+ {
+ "index": 19,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "The dog is looking at the camera.",
+ "question": [
+ "is there the dog ?",
+ "is there the camera ?"
+ ],
+ "prompt": "The {} is looking at the camera."
+ },
+ {
+ "index": 20,
+ "image_id": 1159975,
+ "entity": "dog",
+ "caption": "The gray collar the dog is wearing.",
+ "question": [
+ "is there the gray collar ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The gray collar the {} is wearing."
+ },
+ {
+ "index": 21,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "The dog has a brown and white sweater",
+ "question": [
+ "is there the dog ?",
+ "is there a brown and white sweater ?"
+ ],
+ "prompt": "The {} has a brown and white sweater"
+ },
+ {
+ "index": 22,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "The dog has a brown nose",
+ "question": [
+ "is there the dog ?",
+ "is there a brown nose ?"
+ ],
+ "prompt": "The {} has a brown nose"
+ },
+ {
+ "index": 23,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog has a messed up eye",
+ "question": [
+ "is there the dog ?",
+ "is there a messed up eye ?"
+ ],
+ "prompt": "the {} has a messed up eye"
+ },
+ {
+ "index": 24,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog is wearing a sweater",
+ "question": [
+ "is there the dog ?",
+ "is there a sweater ?"
+ ],
+ "prompt": "the {} is wearing a sweater"
+ },
+ {
+ "index": 25,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog has a purple collar",
+ "question": [
+ "is there the dog ?",
+ "is there a purple collar ?"
+ ],
+ "prompt": "the {} has a purple collar"
+ },
+ {
+ "index": 26,
+ "image_id": 2413171,
+ "entity": "dog",
+ "caption": "Young man hold a cute dog",
+ "question": [
+ "is there young man ?",
+ "is there a cute dog ?"
+ ],
+ "prompt": "Young man hold a cute {}"
+ },
+ {
+ "index": 27,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "black fur grows on a dog",
+ "question": [
+ "is there black fur ?",
+ "is there a dog ?"
+ ],
+ "prompt": "black fur grows on a {}"
+ },
+ {
+ "index": 28,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "dog is sitting in the ground",
+ "question": [
+ "is there dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "{} is sitting in the ground"
+ },
+ {
+ "index": 29,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "dog is sitting in the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is sitting in the floor"
+ },
+ {
+ "index": 30,
+ "image_id": 2412546,
+ "entity": "dog",
+ "caption": "The dog has a collar on.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} has a collar on."
+ },
+ {
+ "index": 31,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog is long hair",
+ "question": [
+ "is there the dog ?",
+ "is there long hair ?"
+ ],
+ "prompt": "the {} is long hair"
+ },
+ {
+ "index": 32,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some white hair",
+ "question": [
+ "is there the dog ?",
+ "is there some white hair ?"
+ ],
+ "prompt": "the {} has some white hair"
+ },
+ {
+ "index": 33,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some black hair",
+ "question": [
+ "is there the dog ?",
+ "is there some black hair ?"
+ ],
+ "prompt": "the {} has some black hair"
+ },
+ {
+ "index": 34,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some brown hair",
+ "question": [
+ "is there the dog ?",
+ "is there some brown hair ?"
+ ],
+ "prompt": "the {} has some brown hair"
+ },
+ {
+ "index": 35,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog's nose is shiny",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "the {}'s nose is shiny"
+ },
+ {
+ "index": 36,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog's nose is black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "the {}'s nose is black"
+ },
+ {
+ "index": 37,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "this are dog canines",
+ "question": [
+ "are there dog canines ?"
+ ],
+ "prompt": "this are {} canines"
+ },
+ {
+ "index": 38,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "this is the dogs fur",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "this is the {}s fur"
+ },
+ {
+ "index": 39,
+ "image_id": 2411402,
+ "entity": "dog",
+ "caption": "Bed the dog is sleeping on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Bed the {} is sleeping on"
+ },
+ {
+ "index": 40,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is wearing a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} is wearing a collar"
+ },
+ {
+ "index": 41,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is wearing a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} is wearing a chain"
+ },
+ {
+ "index": 42,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is watching the oven",
+ "question": [
+ "is there the dog ?",
+ "is there the oven ?"
+ ],
+ "prompt": "the {} is watching the oven"
+ },
+ {
+ "index": 43,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog has a chain around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?",
+ "is there its neck ?"
+ ],
+ "prompt": "the {} has a chain around its neck"
+ },
+ {
+ "index": 44,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog has two ears",
+ "question": [
+ "is there the dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "the {} has two ears"
+ },
+ {
+ "index": 45,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "A dog is on a moped.",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "A {} is on a moped."
+ },
+ {
+ "index": 46,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog has a red leash.",
+ "question": [
+ "is there the dog ?",
+ "is there a red leash ?"
+ ],
+ "prompt": "The {} has a red leash."
+ },
+ {
+ "index": 47,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog's ears are up.",
+ "question": [
+ "are there the dog's ears ?"
+ ],
+ "prompt": "The {}'s ears are up."
+ },
+ {
+ "index": 48,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog's tail is hanging down.",
+ "question": [
+ "is there the dog's tail ?"
+ ],
+ "prompt": "The {}'s tail is hanging down."
+ },
+ {
+ "index": 49,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "a large dog sits on a scooter",
+ "question": [
+ "is there a large dog ?",
+ "is there a scooter ?"
+ ],
+ "prompt": "a large {} sits on a scooter"
+ },
+ {
+ "index": 50,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "a dog has a red leash",
+ "question": [
+ "is there a dog ?",
+ "is there a red leash ?"
+ ],
+ "prompt": "a {} has a red leash"
+ },
+ {
+ "index": 51,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog on the scooter has a long tail",
+ "question": [
+ "is there the dog ?",
+ "is there the scooter ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "The {} on the scooter has a long tail"
+ },
+ {
+ "index": 52,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "Brown dog on leash on moped",
+ "question": [
+ "is there brown dog ?",
+ "is there leash ?"
+ ],
+ "prompt": "Brown {} on leash on moped"
+ },
+ {
+ "index": 53,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "Red moped with dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "Red moped with {}"
+ },
+ {
+ "index": 54,
+ "image_id": 2410967,
+ "entity": "dog",
+ "caption": "a dog's ears bent over",
+ "question": [
+ "are there a dog's ears ?"
+ ],
+ "prompt": "a {}'s ears bent over"
+ },
+ {
+ "index": 55,
+ "image_id": 2410840,
+ "entity": "dog",
+ "caption": "a dog's mouth biting a frisbee",
+ "question": [
+ "is there a dog's mouth ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "a {}'s mouth biting a frisbee"
+ },
+ {
+ "index": 56,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "black and tan dog jumping to catch a frisbee",
+ "question": [
+ "is there black and tan dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "black and tan {} jumping to catch a frisbee"
+ },
+ {
+ "index": 57,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "leaping dog going after a frisbee",
+ "question": [
+ "is there leaping dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "leaping {} going after a frisbee"
+ },
+ {
+ "index": 58,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "German shepherd dog fetching a frisbee. ",
+ "question": [
+ "is there german shepherd dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "German shepherd {} fetching a frisbee. "
+ },
+ {
+ "index": 59,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "dog's eyes appear to be different colors",
+ "question": [
+ "are there dog's eyes ?",
+ "are there different colors ?"
+ ],
+ "prompt": "{}'s eyes appear to be different colors"
+ },
+ {
+ "index": 60,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "dog has black nose",
+ "question": [
+ "is there dog ?",
+ "is there black nose ?"
+ ],
+ "prompt": "{} has black nose"
+ },
+ {
+ "index": 61,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "the dog is wearing a cap",
+ "question": [
+ "is there the dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "the {} is wearing a cap"
+ },
+ {
+ "index": 62,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "Tongue of dog is pink",
+ "question": [
+ "is there tongue ?",
+ "is there dog ?"
+ ],
+ "prompt": "Tongue of {} is pink"
+ },
+ {
+ "index": 63,
+ "image_id": 2409626,
+ "entity": "dog",
+ "caption": "dog has two eyes",
+ "question": [
+ "is there dog ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "{} has two eyes"
+ },
+ {
+ "index": 64,
+ "image_id": 2409626,
+ "entity": "dog",
+ "caption": "the dog is wearing pirate hat",
+ "question": [
+ "is there the dog ?",
+ "is there pirate hat ?"
+ ],
+ "prompt": "the {} is wearing pirate hat"
+ },
+ {
+ "index": 65,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "White left foot of the dog",
+ "question": [
+ "is there white left foot ?",
+ "is there the dog ?"
+ ],
+ "prompt": "White left foot of the {}"
+ },
+ {
+ "index": 66,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog catch the frisbee",
+ "question": [
+ "is there dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{} catch the frisbee"
+ },
+ {
+ "index": 67,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's nose is black",
+ "question": [
+ "is there dog's nose ?"
+ ],
+ "prompt": "{}'s nose is black"
+ },
+ {
+ "index": 68,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's ears are black",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are black"
+ },
+ {
+ "index": 69,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's paws are white",
+ "question": [
+ "are there dog's paws ?"
+ ],
+ "prompt": "{}'s paws are white"
+ },
+ {
+ "index": 70,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "the dog is wearing a blue collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "the {} is wearing a blue collar"
+ },
+ {
+ "index": 71,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "a book by T.C. Boyle is next to the dog",
+ "question": [
+ "is there a book ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a book by T.C. Boyle is next to the {}"
+ },
+ {
+ "index": 72,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "the dog is laying on top of an embroidered sheet",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there an embroidered sheet ?"
+ ],
+ "prompt": "the {} is laying on top of an embroidered sheet"
+ },
+ {
+ "index": 73,
+ "image_id": 2408483,
+ "entity": "dog",
+ "caption": "Carpet is light in color under dog",
+ "question": [
+ "is there carpet ?",
+ "is there color ?",
+ "is there dog ?"
+ ],
+ "prompt": "Carpet is light in color under {}"
+ },
+ {
+ "index": 74,
+ "image_id": 2408383,
+ "entity": "dog",
+ "caption": "The dog and cat are looking in the same direction",
+ "question": [
+ "is there the dog ?",
+ "is there cat ?",
+ "is there the same direction ?"
+ ],
+ "prompt": "The {} and cat are looking in the same direction"
+ },
+ {
+ "index": 75,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Nose of dog is black",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "Nose of {} is black"
+ },
+ {
+ "index": 76,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Ears of dog is black and tan",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "Ears of {} is black and tan"
+ },
+ {
+ "index": 77,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Eyes of dog are open",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "Eyes of {} are open"
+ },
+ {
+ "index": 78,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "three dogs are lying on a bed",
+ "question": [
+ "are there three dogs ?",
+ "is there a bed ?"
+ ],
+ "prompt": "three {}s are lying on a bed"
+ },
+ {
+ "index": 79,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "the dog has his eyes open",
+ "question": [
+ "is there the dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "the {} has his eyes open"
+ },
+ {
+ "index": 80,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has red eyes",
+ "question": [
+ "is there the dog ?",
+ "are there red eyes ?"
+ ],
+ "prompt": "the {} has red eyes"
+ },
+ {
+ "index": 81,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog is holding carrot toy",
+ "question": [
+ "is there the dog ?",
+ "is there carrot toy ?"
+ ],
+ "prompt": "the {} is holding carrot toy"
+ },
+ {
+ "index": 82,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has green ribbon on its nech",
+ "question": [
+ "is there the dog ?",
+ "is there green ribbon ?"
+ ],
+ "prompt": "the {} has green ribbon on its nech"
+ },
+ {
+ "index": 83,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "a green toy is beside the dog",
+ "question": [
+ "is there a green toy ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a green toy is beside the {}"
+ },
+ {
+ "index": 84,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has brown legs",
+ "question": [
+ "is there the dog ?",
+ "are there brown legs ?"
+ ],
+ "prompt": "the {} has brown legs"
+ },
+ {
+ "index": 85,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "Brown dog laying on a bed with eyes open.",
+ "question": [
+ "is there brown dog ?",
+ "is there a bed ?",
+ "are there eyes ?"
+ ],
+ "prompt": "Brown {} laying on a bed with eyes open."
+ },
+ {
+ "index": 86,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog is lying down.",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is lying down."
+ },
+ {
+ "index": 87,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog is lying in cot.",
+ "question": [
+ "is there dog ?",
+ "is there cot ?"
+ ],
+ "prompt": "{} is lying in cot."
+ },
+ {
+ "index": 88,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog nose is black color.",
+ "question": [
+ "is there dog nose ?",
+ "is there black color ?"
+ ],
+ "prompt": "{} nose is black color."
+ },
+ {
+ "index": 89,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog has two eyes",
+ "question": [
+ "is there the dog ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "the {} has two eyes"
+ },
+ {
+ "index": 90,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "dog is wearing a collar",
+ "question": [
+ "is there dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "{} is wearing a collar"
+ },
+ {
+ "index": 91,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog is on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is on the couch"
+ },
+ {
+ "index": 92,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog has whiskers",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "the {} has whiskers"
+ },
+ {
+ "index": 93,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is on the beanbag",
+ "question": [
+ "is there the dog ?",
+ "is there the beanbag ?"
+ ],
+ "prompt": "the {} is on the beanbag"
+ },
+ {
+ "index": 94,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "a dog toy thats a rope",
+ "question": [
+ "is there a dog toy ?",
+ "is there a rope ?"
+ ],
+ "prompt": "a {} toy thats a rope"
+ },
+ {
+ "index": 95,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is on bean bag",
+ "question": [
+ "is there the dog ?",
+ "is there bean bag ?"
+ ],
+ "prompt": "the {} is on bean bag"
+ },
+ {
+ "index": 96,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is sad",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is sad"
+ },
+ {
+ "index": 97,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "the dog has goggles",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "the {} has goggles"
+ },
+ {
+ "index": 98,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dog has a vest on",
+ "question": [
+ "is there the dog ?",
+ "is there a vest ?"
+ ],
+ "prompt": "The {} has a vest on"
+ },
+ {
+ "index": 99,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dog has goggles on",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "The {} has goggles on"
+ },
+ {
+ "index": 100,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dogs tongue is out. ",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "The {}s tongue is out. "
+ },
+ {
+ "index": 101,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "The dog has amber-coloured eyes",
+ "question": [
+ "is there the dog ?",
+ "are there amber-coloured eyes ?"
+ ],
+ "prompt": "The {} has amber-coloured eyes"
+ },
+ {
+ "index": 102,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "The dog's hat is courdoroy",
+ "question": [
+ "is there the dog's hat ?"
+ ],
+ "prompt": "The {}'s hat is courdoroy"
+ },
+ {
+ "index": 103,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has collar",
+ "question": [
+ "is there dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} has collar"
+ },
+ {
+ "index": 104,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has whiskers",
+ "question": [
+ "is there dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "{} has whiskers"
+ },
+ {
+ "index": 105,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has black lips",
+ "question": [
+ "is there dog ?",
+ "are there black lips ?"
+ ],
+ "prompt": "{} has black lips"
+ },
+ {
+ "index": 106,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "dogs nose is black",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is black"
+ },
+ {
+ "index": 107,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has light brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there light brown eyes ?"
+ ],
+ "prompt": "the {} has light brown eyes"
+ },
+ {
+ "index": 108,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has pointy ears",
+ "question": [
+ "is there the dog ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "the {} has pointy ears"
+ },
+ {
+ "index": 109,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "something fuzzy is next to the dog",
+ "question": [
+ "is there something ?",
+ "is there the dog ?"
+ ],
+ "prompt": "something fuzzy is next to the {}"
+ },
+ {
+ "index": 110,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "the {} has brown eyes"
+ },
+ {
+ "index": 111,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog is lying on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is lying on a blanket"
+ },
+ {
+ "index": 112,
+ "image_id": 2405633,
+ "entity": "dog",
+ "caption": "Dog kennel with dog.",
+ "question": [
+ "is there dog kennel ?",
+ "is there dog ?"
+ ],
+ "prompt": "Dog kennel with {}."
+ },
+ {
+ "index": 113,
+ "image_id": 2405633,
+ "entity": "dog",
+ "caption": "The dog is lying on two blue and white pillows.",
+ "question": [
+ "is there the dog ?",
+ "are there two blue and white pillows ?"
+ ],
+ "prompt": "The {} is lying on two blue and white pillows."
+ },
+ {
+ "index": 114,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has a pink tongue",
+ "question": [
+ "is there the dog ?",
+ "is there a pink tongue ?"
+ ],
+ "prompt": "the {} has a pink tongue"
+ },
+ {
+ "index": 115,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is walking in the grass",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {} is walking in the grass"
+ },
+ {
+ "index": 116,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is wearing a metal collar",
+ "question": [
+ "is there the dog ?",
+ "is there a metal collar ?"
+ ],
+ "prompt": "the {} is wearing a metal collar"
+ },
+ {
+ "index": 117,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is standing on the grass",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {} is standing on the grass"
+ },
+ {
+ "index": 118,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has a collar on",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar on"
+ },
+ {
+ "index": 119,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has his tongue sticking out",
+ "question": [
+ "is there the dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "the {} has his tongue sticking out"
+ },
+ {
+ "index": 120,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is waggling his tail",
+ "question": [
+ "is there the dog ?",
+ "is there his tail ?"
+ ],
+ "prompt": "the {} is waggling his tail"
+ },
+ {
+ "index": 121,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog's collar is a chain",
+ "question": [
+ "is there the dog's collar ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {}'s collar is a chain"
+ },
+ {
+ "index": 122,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "dog's tongue is pink",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is pink"
+ },
+ {
+ "index": 123,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "dog is standing in the grass",
+ "question": [
+ "is there dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "{} is standing in the grass"
+ },
+ {
+ "index": 124,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar. ",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar. "
+ },
+ {
+ "index": 125,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "The dog has it's head down. ",
+ "question": [
+ "is there the dog ?",
+ "is there head ?"
+ ],
+ "prompt": "The {} has it's head down. "
+ },
+ {
+ "index": 126,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "the dog has sharp teeth",
+ "question": [
+ "is there the dog ?",
+ "are there sharp teeth ?"
+ ],
+ "prompt": "the {} has sharp teeth"
+ },
+ {
+ "index": 127,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "the dog is on the ground",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is on the ground"
+ },
+ {
+ "index": 128,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "dog is barking to the other dog",
+ "question": [
+ "is there dog ?",
+ "is there the other dog ?"
+ ],
+ "prompt": "{} is barking to the other {}"
+ },
+ {
+ "index": 129,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "Dog ready to bite another dog",
+ "question": [
+ "is there dog ?",
+ "is there another dog ?"
+ ],
+ "prompt": "Dog ready to bite another {}"
+ },
+ {
+ "index": 130,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "The dog is sleeping in a bed. ",
+ "question": [
+ "is there the dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "The {} is sleeping in a bed. "
+ },
+ {
+ "index": 131,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "The dog's nose hangs over the bed's edge.",
+ "question": [
+ "is there the dog's nose ?",
+ "is there the bed's edge ?"
+ ],
+ "prompt": "The {}'s nose hangs over the bed's edge."
+ },
+ {
+ "index": 132,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog is on a bed",
+ "question": [
+ "is there the dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "the {} is on a bed"
+ },
+ {
+ "index": 133,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog sleeps on a tan and white dog bed",
+ "question": [
+ "is there the dog ?",
+ "is there a tan and white dog bed ?"
+ ],
+ "prompt": "the {} sleeps on a tan and white {} bed"
+ },
+ {
+ "index": 134,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog lays curled up on a plush dog bed",
+ "question": [
+ "is there the dog ?",
+ "is there a plush dog bed ?"
+ ],
+ "prompt": "the {} lays curled up on a plush {} bed"
+ },
+ {
+ "index": 135,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "dogs ear on bottom left",
+ "question": [
+ "are there dogs ?",
+ "is there bottom ?"
+ ],
+ "prompt": "{}s ear on bottom left"
+ },
+ {
+ "index": 136,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "White dog curled up sleeping on its bed",
+ "question": [
+ "is there white dog ?",
+ "is there its bed ?"
+ ],
+ "prompt": "White {} curled up sleeping on its bed"
+ },
+ {
+ "index": 137,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a Santa hat on his head",
+ "question": [
+ "is there the dog ?",
+ "is there a santa hat ?",
+ "is there his head ?"
+ ],
+ "prompt": "the {} has a Santa hat on his head"
+ },
+ {
+ "index": 138,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a black eye",
+ "question": [
+ "is there the dog ?",
+ "is there a black eye ?"
+ ],
+ "prompt": "the {} has a black eye"
+ },
+ {
+ "index": 139,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the nose of the dog is black",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the nose of the {} is black"
+ },
+ {
+ "index": 140,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the fur on the dog is black and white ",
+ "question": [
+ "is there the fur ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the fur on the {} is black and white "
+ },
+ {
+ "index": 141,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a white chest",
+ "question": [
+ "is there the dog ?",
+ "is there a white chest ?"
+ ],
+ "prompt": "the {} has a white chest"
+ },
+ {
+ "index": 142,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog's ear is black",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is black"
+ },
+ {
+ "index": 143,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog's eye is open",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is open"
+ },
+ {
+ "index": 144,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "a cat sleeps on a dog",
+ "question": [
+ "is there a cat ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a cat sleeps on a {}"
+ },
+ {
+ "index": 145,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "a cat and dog lie on a wooden floor",
+ "question": [
+ "is there a cat ?",
+ "is there dog ?",
+ "is there a wooden floor ?"
+ ],
+ "prompt": "a cat and {} lie on a wooden floor"
+ },
+ {
+ "index": 146,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the cat is laying on the dog",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cat is laying on the {}"
+ },
+ {
+ "index": 147,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog is laying on the floor",
+ "question": [
+ "is there the dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "the {} is laying on the floor"
+ },
+ {
+ "index": 148,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog has something around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there something ?",
+ "is there its neck ?"
+ ],
+ "prompt": "the {} has something around its neck"
+ },
+ {
+ "index": 149,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog's ear is sticking up",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is sticking up"
+ },
+ {
+ "index": 150,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog is wearing a bandana on his neck",
+ "question": [
+ "is there the dog ?",
+ "is there a bandana ?",
+ "is there his neck ?"
+ ],
+ "prompt": "the {} is wearing a bandana on his neck"
+ },
+ {
+ "index": 151,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the kitten is laying on top of the dog",
+ "question": [
+ "is there top ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the kitten is laying on top of the {}"
+ },
+ {
+ "index": 152,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dogs paws are white",
+ "question": [
+ "are there the dogs paws ?"
+ ],
+ "prompt": "the {}s paws are white"
+ },
+ {
+ "index": 153,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog doesnt seem to mind the kitty laying on him",
+ "question": [
+ "is there the dog ?",
+ "is there the kitty ?"
+ ],
+ "prompt": "the {} doesnt seem to mind the kitty laying on him"
+ },
+ {
+ "index": 154,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "A black dog sits on stairs",
+ "question": [
+ "is there a black dog ?",
+ "are there stairs ?"
+ ],
+ "prompt": "A black {} sits on stairs"
+ },
+ {
+ "index": 155,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dog is wearing a red bow tie around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there a red bow tie ?",
+ "is there its neck ?"
+ ],
+ "prompt": "The {} is wearing a red bow tie around its neck"
+ },
+ {
+ "index": 156,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dog has its head cocked to the side",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there the side ?"
+ ],
+ "prompt": "The {} has its head cocked to the side"
+ },
+ {
+ "index": 157,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dogs left hind leg is hanging off the stair",
+ "question": [
+ "are there the dogs ?",
+ "is there hind leg ?",
+ "is there the stair ?"
+ ],
+ "prompt": "The {}s left hind leg is hanging off the stair"
+ },
+ {
+ "index": 158,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "a woman is petting the dog",
+ "question": [
+ "is there a woman ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a woman is petting the {}"
+ },
+ {
+ "index": 159,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog wears a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} wears a red collar"
+ },
+ {
+ "index": 160,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "person petting dog is wearing red scarf",
+ "question": [
+ "is there person ?",
+ "is there dog ?",
+ "is there red scarf ?"
+ ],
+ "prompt": "person petting {} is wearing red scarf"
+ },
+ {
+ "index": 161,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "person petting dog is wearing a black dress",
+ "question": [
+ "is there person ?",
+ "is there dog ?",
+ "is there a black dress ?"
+ ],
+ "prompt": "person petting {} is wearing a black dress"
+ },
+ {
+ "index": 162,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog is wearing a red and white scarf",
+ "question": [
+ "is there the dog ?",
+ "is there a red and white scarf ?"
+ ],
+ "prompt": "the {} is wearing a red and white scarf"
+ },
+ {
+ "index": 163,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog looks up at the woman",
+ "question": [
+ "is there the dog ?",
+ "is there the woman ?"
+ ],
+ "prompt": "the {} looks up at the woman"
+ },
+ {
+ "index": 164,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog is wearing a red halter style lead",
+ "question": [
+ "is there the dog ?",
+ "is there a red halter style ?"
+ ],
+ "prompt": "the {} is wearing a red halter style lead"
+ },
+ {
+ "index": 165,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "a woman reaches down to a dog",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a woman reaches down to a {}"
+ },
+ {
+ "index": 166,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the woman in the red shoes pets the dog",
+ "question": [
+ "is there the woman ?",
+ "are there the red shoes ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the woman in the red shoes pets the {}"
+ },
+ {
+ "index": 167,
+ "image_id": 2404075,
+ "entity": "dog",
+ "caption": "The dog is on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is on a blanket"
+ },
+ {
+ "index": 168,
+ "image_id": 2403923,
+ "entity": "dog",
+ "caption": "the dog has a green collar",
+ "question": [
+ "is there the dog ?",
+ "is there a green collar ?"
+ ],
+ "prompt": "the {} has a green collar"
+ },
+ {
+ "index": 169,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This dog has his eyes closed",
+ "question": [
+ "is there this dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "This {} has his eyes closed"
+ },
+ {
+ "index": 170,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This snauser dog has long ears",
+ "question": [
+ "is there this snauser dog ?",
+ "are there long ears ?"
+ ],
+ "prompt": "This snauser {} has long ears"
+ },
+ {
+ "index": 171,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This dog has a pug nose",
+ "question": [
+ "is there this dog ?",
+ "is there a pug nose ?"
+ ],
+ "prompt": "This {} has a pug nose"
+ },
+ {
+ "index": 172,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "A dog's ear peeking out from the other side of its head",
+ "question": [
+ "is there a dog's ear ?",
+ "is there the other side ?",
+ "is there its head ?"
+ ],
+ "prompt": "A {}'s ear peeking out from the other side of its head"
+ },
+ {
+ "index": 173,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The dog is laying on a couch.",
+ "question": [
+ "is there the dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "The {} is laying on a couch."
+ },
+ {
+ "index": 174,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "black dog with eyes open",
+ "question": [
+ "is there black dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "black {} with eyes open"
+ },
+ {
+ "index": 175,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The dog has brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "The {} has brown eyes"
+ },
+ {
+ "index": 176,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The black dog likes laying on the couch",
+ "question": [
+ "is there the black dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The black {} likes laying on the couch"
+ },
+ {
+ "index": 177,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "the dog is laying on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is laying on the couch"
+ },
+ {
+ "index": 178,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "the dog's eye is brown",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is brown"
+ },
+ {
+ "index": 179,
+ "image_id": 2403359,
+ "entity": "dog",
+ "caption": "a dog and a horse share an Eskimo kiss",
+ "question": [
+ "is there a dog ?",
+ "is there a horse share ?"
+ ],
+ "prompt": "a {} and a horse share an Eskimo kiss"
+ },
+ {
+ "index": 180,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "large brown dog leashed to chair",
+ "question": [
+ "is there large brown dog ?",
+ "is there chair ?"
+ ],
+ "prompt": "large brown {} leashed to chair"
+ },
+ {
+ "index": 181,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "the dog is on deck",
+ "question": [
+ "is there the dog ?",
+ "is there deck ?"
+ ],
+ "prompt": "the {} is on deck"
+ },
+ {
+ "index": 182,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "the leash is on dog",
+ "question": [
+ "is there the leash ?",
+ "is there dog ?"
+ ],
+ "prompt": "the leash is on {}"
+ },
+ {
+ "index": 183,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "Leash tied on golden dog",
+ "question": [
+ "is there golden dog ?"
+ ],
+ "prompt": "Leash tied on golden {}"
+ },
+ {
+ "index": 184,
+ "image_id": 2402933,
+ "entity": "dog",
+ "caption": "the doggy has a party hat on",
+ "question": [
+ "is there the doggy ?",
+ "is there a party hat ?"
+ ],
+ "prompt": "the {}gy has a party hat on"
+ },
+ {
+ "index": 185,
+ "image_id": 2402933,
+ "entity": "dog",
+ "caption": "a stuffed animal is next to the dog",
+ "question": [
+ "is there a stuffed animal ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a stuffed animal is next to the {}"
+ },
+ {
+ "index": 186,
+ "image_id": 2402907,
+ "entity": "dog",
+ "caption": "The dog is standing on carpet",
+ "question": [
+ "is there the dog ?",
+ "is there carpet ?"
+ ],
+ "prompt": "The {} is standing on carpet"
+ },
+ {
+ "index": 187,
+ "image_id": 2402907,
+ "entity": "dog",
+ "caption": "The dog has a collar and tags",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?",
+ "are there tags ?"
+ ],
+ "prompt": "The {} has a collar and tags"
+ },
+ {
+ "index": 188,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "a dog cover the book",
+ "question": [
+ "is there a dog ?",
+ "is there the book ?"
+ ],
+ "prompt": "a {} cover the book"
+ },
+ {
+ "index": 189,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "the dog is looking to the left",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is looking to the left"
+ },
+ {
+ "index": 190,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "the dog has black eyes",
+ "question": [
+ "is there the dog ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "the {} has black eyes"
+ },
+ {
+ "index": 191,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's eyes are brown.",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are brown."
+ },
+ {
+ "index": 192,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's fur is brown and black.",
+ "question": [
+ "is there the dog's fur ?"
+ ],
+ "prompt": "The {}'s fur is brown and black."
+ },
+ {
+ "index": 193,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's tongue is pink.",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "The {}'s tongue is pink."
+ },
+ {
+ "index": 194,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's ears are down.",
+ "question": [
+ "are there the dog's ears ?"
+ ],
+ "prompt": "The {}'s ears are down."
+ },
+ {
+ "index": 195,
+ "image_id": 2402363,
+ "entity": "dog",
+ "caption": "the dog and the cat are on the pillow together",
+ "question": [
+ "is there the dog ?",
+ "is there the cat ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "the {} and the cat are on the pillow together"
+ },
+ {
+ "index": 196,
+ "image_id": 2402363,
+ "entity": "dog",
+ "caption": "cat and dog sleeping on pet bed together",
+ "question": [
+ "is there cat ?",
+ "is there dog ?",
+ "is there pet bed ?"
+ ],
+ "prompt": "cat and {} sleeping on pet bed together"
+ },
+ {
+ "index": 197,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in his mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in his mouth."
+ },
+ {
+ "index": 198,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "The dog has a white bushy tail.",
+ "question": [
+ "is there the dog ?",
+ "is there a white bushy tail ?"
+ ],
+ "prompt": "The {} has a white bushy tail."
+ },
+ {
+ "index": 199,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "A flower pot is on the side of the dog.",
+ "question": [
+ "is there a flower pot ?",
+ "is there the side ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A flower pot is on the side of the {}."
+ },
+ {
+ "index": 200,
+ "image_id": 2402059,
+ "entity": "dog",
+ "caption": "the dog has a human's tie around it's neck",
+ "question": [
+ "is there the dog ?",
+ "is there a human's tie ?",
+ "is there neck ?"
+ ],
+ "prompt": "the {} has a human's tie around it's neck"
+ },
+ {
+ "index": 201,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The head of the dog sitting down.",
+ "question": [
+ "is there the head ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The head of the {} sitting down."
+ },
+ {
+ "index": 202,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "Soft brown chair the dog sits on",
+ "question": [
+ "is there soft brown chair ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Soft brown chair the {} sits on"
+ },
+ {
+ "index": 203,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "dog sittin gin brown chiar",
+ "question": [
+ "is there dog ?",
+ "is there gin brown chiar ?"
+ ],
+ "prompt": "{} sittin gin brown chiar"
+ },
+ {
+ "index": 204,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The dog is black and brown.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is black and brown."
+ },
+ {
+ "index": 205,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The dog's nose is black.",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black."
+ },
+ {
+ "index": 206,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "the dog has ears",
+ "question": [
+ "is there the dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "the {} has ears"
+ },
+ {
+ "index": 207,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "the dog is wearing strap",
+ "question": [
+ "is there the dog ?",
+ "is there strap ?"
+ ],
+ "prompt": "the {} is wearing strap"
+ },
+ {
+ "index": 208,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "dog is wearing sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} is wearing sweater"
+ },
+ {
+ "index": 209,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "The sweater the dog is wearing",
+ "question": [
+ "is there the sweater ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The sweater the {} is wearing"
+ },
+ {
+ "index": 210,
+ "image_id": 2400958,
+ "entity": "dog",
+ "caption": "the man behind the dogs has blue jeans on",
+ "question": [
+ "is there the man ?",
+ "are there the dogs ?",
+ "are there blue jeans ?"
+ ],
+ "prompt": "the man behind the {}s has blue jeans on"
+ },
+ {
+ "index": 211,
+ "image_id": 2400958,
+ "entity": "dog",
+ "caption": "dog with tongue hanging out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} with tongue hanging out"
+ },
+ {
+ "index": 212,
+ "image_id": 2400922,
+ "entity": "dog",
+ "caption": "The dog is staring out the window.",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is staring out the window."
+ },
+ {
+ "index": 213,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "The dog is on a blanket.",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is on a blanket."
+ },
+ {
+ "index": 214,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "the dogs nose is pink.",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is pink."
+ },
+ {
+ "index": 215,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "the dogs tongue is pink.",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "the {}s tongue is pink."
+ },
+ {
+ "index": 216,
+ "image_id": 2400378,
+ "entity": "dog",
+ "caption": "this is the dog's head",
+ "question": [
+ "is there the dog's head ?"
+ ],
+ "prompt": "this is the {}'s head"
+ },
+ {
+ "index": 217,
+ "image_id": 2400368,
+ "entity": "dog",
+ "caption": "a dogs left paw",
+ "question": [
+ "are there a dogs ?",
+ "is there paw ?"
+ ],
+ "prompt": "a {}s left paw"
+ },
+ {
+ "index": 218,
+ "image_id": 2399686,
+ "entity": "dog",
+ "caption": "a dog with its ears perked up",
+ "question": [
+ "is there a dog ?",
+ "are there its ears ?"
+ ],
+ "prompt": "a {} with its ears perked up"
+ },
+ {
+ "index": 219,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs left eye",
+ "question": [
+ "are there the black dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the black {}s left eye"
+ },
+ {
+ "index": 220,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs right eye",
+ "question": [
+ "are there the black dogs ?"
+ ],
+ "prompt": "the black {}s right eye"
+ },
+ {
+ "index": 221,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "piece of wood dog is lying on",
+ "question": [
+ "is there piece ?",
+ "is there wood dog ?"
+ ],
+ "prompt": "piece of wood {} is lying on"
+ },
+ {
+ "index": 222,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs left ear",
+ "question": [
+ "are there the black dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "the black {}s left ear"
+ },
+ {
+ "index": 223,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "she is holding a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "she is holding a {}"
+ },
+ {
+ "index": 224,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "The girl's hand that is resting on the dog.",
+ "question": [
+ "is there the girl's hand ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The girl's hand that is resting on the {}."
+ },
+ {
+ "index": 225,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "Girl's hand is on the dog.",
+ "question": [
+ "is there girl's hand ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Girl's hand is on the {}."
+ },
+ {
+ "index": 226,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "this is a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "this is a {}"
+ },
+ {
+ "index": 227,
+ "image_id": 2397742,
+ "entity": "dog",
+ "caption": "a green rug the dog is laying on",
+ "question": [
+ "is there a green rug ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a green rug the {} is laying on"
+ },
+ {
+ "index": 228,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog is in front of a motorcycle.",
+ "question": [
+ "is there a dog ?",
+ "is there front ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "A {} is in front of a motorcycle."
+ },
+ {
+ "index": 229,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog has black and white spots.",
+ "question": [
+ "is there a dog ?",
+ "are there black and white spots ?"
+ ],
+ "prompt": "A {} has black and white spots."
+ },
+ {
+ "index": 230,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog is behind another dog.",
+ "question": [
+ "is there a dog ?",
+ "is there another dog ?"
+ ],
+ "prompt": "A {} is behind another {}."
+ },
+ {
+ "index": 231,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "motorbike parked behind dogs",
+ "question": [
+ "is there motorbike ?",
+ "are there dogs ?"
+ ],
+ "prompt": "motorbike parked behind {}s"
+ },
+ {
+ "index": 232,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the red collar the dog is wearing",
+ "question": [
+ "is there the red collar ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the red collar the {} is wearing"
+ },
+ {
+ "index": 233,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the green grass the dog is standing on",
+ "question": [
+ "is there the green grass ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the green grass the {} is standing on"
+ },
+ {
+ "index": 234,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the dogs colored leash",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s colored leash"
+ },
+ {
+ "index": 235,
+ "image_id": 2397368,
+ "entity": "dog",
+ "caption": "the dog is holding something on its mouth",
+ "question": [
+ "is there the dog ?",
+ "is there something ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} is holding something on its mouth"
+ },
+ {
+ "index": 236,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "dog has big brown eyes",
+ "question": [
+ "is there dog ?",
+ "are there big brown eyes ?"
+ ],
+ "prompt": "{} has big brown eyes"
+ },
+ {
+ "index": 237,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "dog has small black nose",
+ "question": [
+ "is there dog ?",
+ "is there small black nose ?"
+ ],
+ "prompt": "{} has small black nose"
+ },
+ {
+ "index": 238,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "collar on dog is black",
+ "question": [
+ "is there collar ?",
+ "is there dog ?"
+ ],
+ "prompt": "collar on {} is black"
+ },
+ {
+ "index": 239,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "the carpet the dog is standing on",
+ "question": [
+ "is there the carpet ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the carpet the {} is standing on"
+ },
+ {
+ "index": 240,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "the dogs tail",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s tail"
+ },
+ {
+ "index": 241,
+ "image_id": 2397165,
+ "entity": "dog",
+ "caption": "a dogs left paw.",
+ "question": [
+ "are there a dogs ?",
+ "is there paw ?"
+ ],
+ "prompt": "a {}s left paw."
+ },
+ {
+ "index": 242,
+ "image_id": 2396130,
+ "entity": "dog",
+ "caption": "A cushion a dog is lying on. ",
+ "question": [
+ "is there a cushion ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A cushion a {} is lying on. "
+ },
+ {
+ "index": 243,
+ "image_id": 2396130,
+ "entity": "dog",
+ "caption": "The dog is laying on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is laying on the couch."
+ },
+ {
+ "index": 244,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "dog is wearing a tiara",
+ "question": [
+ "is there dog ?",
+ "is there a tiara ?"
+ ],
+ "prompt": "{} is wearing a tiara"
+ },
+ {
+ "index": 245,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "the dog is wearing a tutu",
+ "question": [
+ "is there the dog ?",
+ "is there a tutu ?"
+ ],
+ "prompt": "the {} is wearing a tutu"
+ },
+ {
+ "index": 246,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "bulldog has big brown eye",
+ "question": [
+ "is there big brown eye ?"
+ ],
+ "prompt": "bull{} has big brown eye"
+ },
+ {
+ "index": 247,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest",
+ "question": [
+ "is there green ribbon ?",
+ "is there orange collar+ribbed orange vest ?"
+ ],
+ "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"
+ },
+ {
+ "index": 248,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "The dog is on top of the pillow",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "The {} is on top of the pillow"
+ },
+ {
+ "index": 249,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "The dog is hugging the stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there the stuffed animal ?"
+ ],
+ "prompt": "The {} is hugging the stuffed animal"
+ },
+ {
+ "index": 250,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "stuff is on the floor behind the dog",
+ "question": [
+ "is there stuff ?",
+ "is there the floor ?",
+ "is there the dog ?"
+ ],
+ "prompt": "stuff is on the floor behind the {}"
+ },
+ {
+ "index": 251,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "a white pillow is underneath the dog",
+ "question": [
+ "is there a white pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a white pillow is underneath the {}"
+ },
+ {
+ "index": 252,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "a black speaker is behind the dog",
+ "question": [
+ "is there a black speaker ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a black speaker is behind the {}"
+ },
+ {
+ "index": 253,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "old looking curtains is above the dog's head",
+ "question": [
+ "are there old looking curtains ?",
+ "is there the dog's head ?"
+ ],
+ "prompt": "old looking curtains is above the {}'s head"
+ },
+ {
+ "index": 254,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "grey run the dog is standing on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "grey run the {} is standing on"
+ },
+ {
+ "index": 255,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "cat and dog playing with each other ",
+ "question": [
+ "is there cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "cat and {} playing with each other "
+ },
+ {
+ "index": 256,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "head of dog is black",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is black"
+ },
+ {
+ "index": 257,
+ "image_id": 2394681,
+ "entity": "dog",
+ "caption": "The dog's tail is visible.",
+ "question": [
+ "is there the dog's tail ?"
+ ],
+ "prompt": "The {}'s tail is visible."
+ },
+ {
+ "index": 258,
+ "image_id": 2394681,
+ "entity": "dog",
+ "caption": "the dog has tail",
+ "question": [
+ "is there the dog ?",
+ "is there tail ?"
+ ],
+ "prompt": "the {} has tail"
+ },
+ {
+ "index": 259,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "the dog is wearing a hat",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "the {} is wearing a hat"
+ },
+ {
+ "index": 260,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "dog is wearing a fedora",
+ "question": [
+ "is there dog ?",
+ "is there a fedora ?"
+ ],
+ "prompt": "{} is wearing a fedora"
+ },
+ {
+ "index": 261,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "The dog has a toy.",
+ "question": [
+ "is there the dog ?",
+ "is there a toy ?"
+ ],
+ "prompt": "The {} has a toy."
+ },
+ {
+ "index": 262,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "The dog is laying on a pillow.",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "The {} is laying on a pillow."
+ },
+ {
+ "index": 263,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog is black and white.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is black and white."
+ },
+ {
+ "index": 264,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has white body with black spots",
+ "question": [
+ "is there dog ?",
+ "is there white body ?",
+ "are there black spots ?"
+ ],
+ "prompt": "{} has white body with black spots"
+ },
+ {
+ "index": 265,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has cast a shadow",
+ "question": [
+ "is there dog ?",
+ "is there a shadow ?"
+ ],
+ "prompt": "{} has cast a shadow"
+ },
+ {
+ "index": 266,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has big fluffy tail",
+ "question": [
+ "is there dog ?",
+ "is there big fluffy tail ?"
+ ],
+ "prompt": "{} has big fluffy tail"
+ },
+ {
+ "index": 267,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has tags on collar",
+ "question": [
+ "is there dog ?",
+ "are there tags ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} has tags on collar"
+ },
+ {
+ "index": 268,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog is wearing a white collar",
+ "question": [
+ "is there dog ?",
+ "is there a white collar ?"
+ ],
+ "prompt": "{} is wearing a white collar"
+ },
+ {
+ "index": 269,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog is black and white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is black and white"
+ },
+ {
+ "index": 270,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has frilly tail",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has frilly tail"
+ },
+ {
+ "index": 271,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has brown spots",
+ "question": [
+ "is there dog ?",
+ "are there brown spots ?"
+ ],
+ "prompt": "{} has brown spots"
+ },
+ {
+ "index": 272,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog wears white collar",
+ "question": [
+ "is there dog ?",
+ "is there white collar ?"
+ ],
+ "prompt": "{} wears white collar"
+ },
+ {
+ "index": 273,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "A dog is on the sand.",
+ "question": [
+ "is there a dog ?",
+ "is there the sand ?"
+ ],
+ "prompt": "A {} is on the sand."
+ },
+ {
+ "index": 274,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog is balck and white.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is balck and white."
+ },
+ {
+ "index": 275,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog has a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} has a collar."
+ },
+ {
+ "index": 276,
+ "image_id": 2394065,
+ "entity": "dog",
+ "caption": "The dog is licking the water bottle.",
+ "question": [
+ "is there the dog ?",
+ "is there the water bottle ?"
+ ],
+ "prompt": "The {} is licking the water bottle."
+ },
+ {
+ "index": 277,
+ "image_id": 2394065,
+ "entity": "dog",
+ "caption": "The dog is standing next to the person.",
+ "question": [
+ "is there the dog ?",
+ "is there the person ?"
+ ],
+ "prompt": "The {} is standing next to the person."
+ },
+ {
+ "index": 278,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "Aviator glasses on dogs face",
+ "question": [
+ "are there aviator glasses ?",
+ "are there dogs ?"
+ ],
+ "prompt": "Aviator glasses on {}s face"
+ },
+ {
+ "index": 279,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has glasses on",
+ "question": [
+ "is there the dog ?",
+ "are there glasses ?"
+ ],
+ "prompt": "The {} has glasses on"
+ },
+ {
+ "index": 280,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has a hat on",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "The {} has a hat on"
+ },
+ {
+ "index": 281,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has on a red bib",
+ "question": [
+ "is there the dog ?",
+ "is there a red bib ?"
+ ],
+ "prompt": "The {} has on a red bib"
+ },
+ {
+ "index": 282,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog is sitting in a seat",
+ "question": [
+ "is there the dog ?",
+ "is there a seat ?"
+ ],
+ "prompt": "The {} is sitting in a seat"
+ },
+ {
+ "index": 283,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "this is the dog's nose",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "this is the {}'s nose"
+ },
+ {
+ "index": 284,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "these are the dog's eyes",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "these are the {}'s eyes"
+ },
+ {
+ "index": 285,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "the dog's eye is orange",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is orange"
+ },
+ {
+ "index": 286,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "a dog with his eyes closed",
+ "question": [
+ "is there a dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "a {} with his eyes closed"
+ },
+ {
+ "index": 287,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog is on a boat",
+ "question": [
+ "is there dog ?",
+ "is there a boat ?"
+ ],
+ "prompt": "{} is on a boat"
+ },
+ {
+ "index": 288,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has a red collar on",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "{} has a red collar on"
+ },
+ {
+ "index": 289,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has a name tag",
+ "question": [
+ "is there dog ?",
+ "is there a name tag ?"
+ ],
+ "prompt": "{} has a name tag"
+ },
+ {
+ "index": 290,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has partially white fur",
+ "question": [
+ "is there dog ?",
+ "is there partially white fur ?"
+ ],
+ "prompt": "{} has partially white fur"
+ },
+ {
+ "index": 291,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "a dog is on the grass",
+ "question": [
+ "is there a dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "a {} is on the grass"
+ },
+ {
+ "index": 292,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog is drinking water",
+ "question": [
+ "is there dog ?",
+ "is there water ?"
+ ],
+ "prompt": "{} is drinking water"
+ },
+ {
+ "index": 293,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog is drinking water from a bottle",
+ "question": [
+ "is there dog ?",
+ "is there water ?",
+ "is there a bottle ?"
+ ],
+ "prompt": "{} is drinking water from a bottle"
+ },
+ {
+ "index": 294,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "water is dripping from the dogs face",
+ "question": [
+ "is there water ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "water is dripping from the {}s face"
+ },
+ {
+ "index": 295,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "thirsty dog is taking a drink",
+ "question": [
+ "is there thirsty dog ?",
+ "is there a drink ?"
+ ],
+ "prompt": "thirsty {} is taking a drink"
+ },
+ {
+ "index": 296,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog has drunk half the water bottle",
+ "question": [
+ "is there dog ?",
+ "is there half the water bottle ?"
+ ],
+ "prompt": "{} has drunk half the water bottle"
+ },
+ {
+ "index": 297,
+ "image_id": 2392606,
+ "entity": "dog",
+ "caption": "The two dogs are waring party hats.",
+ "question": [
+ "are there the two dogs ?",
+ "are there party hats ?"
+ ],
+ "prompt": "The two {}s are waring party hats."
+ },
+ {
+ "index": 298,
+ "image_id": 2392334,
+ "entity": "dog",
+ "caption": "The dog has long hair.",
+ "question": [
+ "is there the dog ?",
+ "is there long hair ?"
+ ],
+ "prompt": "The {} has long hair."
+ },
+ {
+ "index": 299,
+ "image_id": 2392334,
+ "entity": "dog",
+ "caption": "white dog wagging its tail",
+ "question": [
+ "is there white dog ?",
+ "is there its tail ?"
+ ],
+ "prompt": "white {} wagging its tail"
+ },
+ {
+ "index": 300,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "ears of dog are long",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are long"
+ },
+ {
+ "index": 301,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "tail of brown dog is furry",
+ "question": [
+ "is there tail ?",
+ "is there brown dog ?"
+ ],
+ "prompt": "tail of brown {} is furry"
+ },
+ {
+ "index": 302,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "nose of dog is black",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is black"
+ },
+ {
+ "index": 303,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog wears attentive expression",
+ "question": [
+ "is there dog ?",
+ "is there attentive expression ?"
+ ],
+ "prompt": "{} wears attentive expression"
+ },
+ {
+ "index": 304,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog has soulful eye, folded down ear",
+ "question": [
+ "is there dog ?",
+ "is there soulful eye ?",
+ "is there ear ?"
+ ],
+ "prompt": "{} has soulful eye, folded down ear"
+ },
+ {
+ "index": 305,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog is wearing dog collar",
+ "question": [
+ "is there dog ?",
+ "is there dog collar ?"
+ ],
+ "prompt": "{} is wearing {} collar"
+ },
+ {
+ "index": 306,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "the dog collar is black",
+ "question": [
+ "is there the dog collar ?"
+ ],
+ "prompt": "the {} collar is black"
+ },
+ {
+ "index": 307,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "dog has black leash",
+ "question": [
+ "is there dog ?",
+ "is there black leash ?"
+ ],
+ "prompt": "{} has black leash"
+ },
+ {
+ "index": 308,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "dog has black fur",
+ "question": [
+ "is there dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "{} has black fur"
+ },
+ {
+ "index": 309,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "this is a dog collar",
+ "question": [
+ "is there a dog collar ?"
+ ],
+ "prompt": "this is a {} collar"
+ },
+ {
+ "index": 310,
+ "image_id": 2390915,
+ "entity": "dog",
+ "caption": "dog has brown eyes",
+ "question": [
+ "is there dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "{} has brown eyes"
+ },
+ {
+ "index": 311,
+ "image_id": 2390915,
+ "entity": "dog",
+ "caption": "these are the dog's paws",
+ "question": [
+ "are there the dog's paws ?"
+ ],
+ "prompt": "these are the {}'s paws"
+ },
+ {
+ "index": 312,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "a dog is lying on his side",
+ "question": [
+ "is there a dog ?",
+ "is there his side ?"
+ ],
+ "prompt": "a {} is lying on his side"
+ },
+ {
+ "index": 313,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "ear of dog is long",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is long"
+ },
+ {
+ "index": 314,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "The dog's eyes are wide open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are wide open"
+ },
+ {
+ "index": 315,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "The dog is relaxing",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is relaxing"
+ },
+ {
+ "index": 316,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "The dog has nose",
+ "question": [
+ "is there the dog ?",
+ "is there nose ?"
+ ],
+ "prompt": "The {} has nose"
+ },
+ {
+ "index": 317,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "the sling is on dog",
+ "question": [
+ "is there the sling ?",
+ "is there dog ?"
+ ],
+ "prompt": "the sling is on {}"
+ },
+ {
+ "index": 318,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "the eyes are on the dog",
+ "question": [
+ "are there the eyes ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the eyes are on the {}"
+ },
+ {
+ "index": 319,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog's tongue hanging out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue hanging out"
+ },
+ {
+ "index": 320,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog closes his eyes",
+ "question": [
+ "is there the dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "The {} closes his eyes"
+ },
+ {
+ "index": 321,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dogs fur is wet",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "The {}s fur is wet"
+ },
+ {
+ "index": 322,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog has collar on",
+ "question": [
+ "is there the dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "The {} has collar on"
+ },
+ {
+ "index": 323,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog has a black nose",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose"
+ },
+ {
+ "index": 324,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dogs eye is closed",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is closed"
+ },
+ {
+ "index": 325,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog has a large pink tounge",
+ "question": [
+ "is there dog ?",
+ "is there a large pink tounge ?"
+ ],
+ "prompt": "{} has a large pink tounge"
+ },
+ {
+ "index": 326,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "shallow water with dog paws submerged",
+ "question": [
+ "is there shallow water ?",
+ "are there dog paws ?"
+ ],
+ "prompt": "shallow water with {} paws submerged"
+ },
+ {
+ "index": 327,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "tan dog standing in the ocean",
+ "question": [
+ "is there the ocean ?"
+ ],
+ "prompt": "tan {} standing in the ocean"
+ },
+ {
+ "index": 328,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog with his tongue hanging out",
+ "question": [
+ "is there dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "{} with his tongue hanging out"
+ },
+ {
+ "index": 329,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "Th enose od the dog.",
+ "question": [
+ "is there th enose ?",
+ "is there od the dog ?"
+ ],
+ "prompt": "Th enose od the {}."
+ },
+ {
+ "index": 330,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dog rests his head.",
+ "question": [
+ "is there the dog ?",
+ "is there his head ?"
+ ],
+ "prompt": "The {} rests his head."
+ },
+ {
+ "index": 331,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dogs ear",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear"
+ },
+ {
+ "index": 332,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dogs left eye",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye"
+ },
+ {
+ "index": 333,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "long black dog tail curved up",
+ "question": [
+ "is there long black dog tail ?"
+ ],
+ "prompt": "long black {} tail curved up"
+ },
+ {
+ "index": 334,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has a white spot on it's leg",
+ "question": [
+ "is there the dog ?",
+ "is there a white spot ?",
+ "is there it's leg ?"
+ ],
+ "prompt": "the {} has a white spot on it's leg"
+ },
+ {
+ "index": 335,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has a long tail",
+ "question": [
+ "is there the dog ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "the {} has a long tail"
+ },
+ {
+ "index": 336,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has black paw pads",
+ "question": [
+ "is there the dog ?",
+ "are there black paw pads ?"
+ ],
+ "prompt": "the {} has black paw pads"
+ },
+ {
+ "index": 337,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "dog ears are floppy",
+ "question": [
+ "are there dog ears ?"
+ ],
+ "prompt": "{} ears are floppy"
+ },
+ {
+ "index": 338,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "dog eyes are cute",
+ "question": [
+ "are there dog eyes ?"
+ ],
+ "prompt": "{} eyes are cute"
+ },
+ {
+ "index": 339,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "the dog's eyes are closed",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are closed"
+ },
+ {
+ "index": 340,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "The dog has tags on ",
+ "question": [
+ "is there the dog ?",
+ "are there tags ?"
+ ],
+ "prompt": "The {} has tags on "
+ },
+ {
+ "index": 341,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "Mans toes beside dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "Mans toes beside {}"
+ },
+ {
+ "index": 342,
+ "image_id": 2389636,
+ "entity": "dog",
+ "caption": "the dog has nose",
+ "question": [
+ "is there the dog ?",
+ "is there nose ?"
+ ],
+ "prompt": "the {} has nose"
+ },
+ {
+ "index": 343,
+ "image_id": 2388972,
+ "entity": "dog",
+ "caption": "the grass is below the dog",
+ "question": [
+ "is there the grass ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the grass is below the {}"
+ },
+ {
+ "index": 344,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "white dog is standing looking out on the yard",
+ "question": [
+ "is there white dog ?",
+ "is there the yard ?"
+ ],
+ "prompt": "white {} is standing looking out on the yard"
+ },
+ {
+ "index": 345,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog is mostly white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is mostly white"
+ },
+ {
+ "index": 346,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has brown ears",
+ "question": [
+ "is there dog ?",
+ "are there brown ears ?"
+ ],
+ "prompt": "{} has brown ears"
+ },
+ {
+ "index": 347,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has black collar",
+ "question": [
+ "is there dog ?",
+ "is there black collar ?"
+ ],
+ "prompt": "{} has black collar"
+ },
+ {
+ "index": 348,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has white legs",
+ "question": [
+ "is there dog ?",
+ "are there white legs ?"
+ ],
+ "prompt": "{} has white legs"
+ },
+ {
+ "index": 349,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The dog has its head on a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "The {} has its head on a stuffed animal"
+ },
+ {
+ "index": 350,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The gate is behind the dog",
+ "question": [
+ "is there the gate ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The gate is behind the {}"
+ },
+ {
+ "index": 351,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The dog is lying on wood",
+ "question": [
+ "is there the dog ?",
+ "is there wood ?"
+ ],
+ "prompt": "The {} is lying on wood"
+ },
+ {
+ "index": 352,
+ "image_id": 2388066,
+ "entity": "dog",
+ "caption": "dog jumping for frisbee",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?"
+ ],
+ "prompt": "{} jumping for frisbee"
+ },
+ {
+ "index": 353,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "all are secondary to small dog chewing large toothbrush",
+ "question": [
+ "is there small dog ?",
+ "is there large toothbrush ?"
+ ],
+ "prompt": "all are secondary to small {} chewing large toothbrush"
+ },
+ {
+ "index": 354,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "a dog is lying on a bed",
+ "question": [
+ "is there a dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "a {} is lying on a bed"
+ },
+ {
+ "index": 355,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "body of dog is brown",
+ "question": [
+ "is there body ?",
+ "is there dog ?"
+ ],
+ "prompt": "body of {} is brown"
+ },
+ {
+ "index": 356,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "head of dog is brown and white",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is brown and white"
+ },
+ {
+ "index": 357,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "ears of dog are brown",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are brown"
+ },
+ {
+ "index": 358,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "dog has a toothbrush in his mouth",
+ "question": [
+ "is there dog ?",
+ "is there a toothbrush ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has a toothbrush in his mouth"
+ },
+ {
+ "index": 359,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "tail of dog is long and curly",
+ "question": [
+ "is there tail ?",
+ "is there dog ?"
+ ],
+ "prompt": "tail of {} is long and curly"
+ },
+ {
+ "index": 360,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "front legs of dog are long",
+ "question": [
+ "are there front legs ?",
+ "is there dog ?"
+ ],
+ "prompt": "front legs of {} are long"
+ },
+ {
+ "index": 361,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "The dog has a white spot.",
+ "question": [
+ "is there the dog ?",
+ "is there a white spot ?"
+ ],
+ "prompt": "The {} has a white spot."
+ },
+ {
+ "index": 362,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog looks out window",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} looks out window"
+ },
+ {
+ "index": 363,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has dark nose",
+ "question": [
+ "is there dog ?",
+ "is there dark nose ?"
+ ],
+ "prompt": "{} has dark nose"
+ },
+ {
+ "index": 364,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has spotted ears",
+ "question": [
+ "is there dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "{} has spotted ears"
+ },
+ {
+ "index": 365,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has spotted face",
+ "question": [
+ "is there dog ?",
+ "is there face ?"
+ ],
+ "prompt": "{} has spotted face"
+ },
+ {
+ "index": 366,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog is wearing glasses",
+ "question": [
+ "is there dog ?",
+ "are there glasses ?"
+ ],
+ "prompt": "{} is wearing glasses"
+ },
+ {
+ "index": 367,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog has multicolor bandanna",
+ "question": [
+ "is there dog ?",
+ "is there multicolor bandanna ?"
+ ],
+ "prompt": "{} has multicolor bandanna"
+ },
+ {
+ "index": 368,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog has white paws",
+ "question": [
+ "is there dog ?",
+ "are there white paws ?"
+ ],
+ "prompt": "{} has white paws"
+ },
+ {
+ "index": 369,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog is on skateboard",
+ "question": [
+ "is there dog ?",
+ "is there skateboard ?"
+ ],
+ "prompt": "{} is on skateboard"
+ },
+ {
+ "index": 370,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "The dog is on a leash.",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "The {} is on a leash."
+ },
+ {
+ "index": 371,
+ "image_id": 2387470,
+ "entity": "dog",
+ "caption": "The dog's mouth is open. ",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is open. "
+ },
+ {
+ "index": 372,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "black dog jumping in air",
+ "question": [
+ "is there black dog ?",
+ "is there air ?"
+ ],
+ "prompt": "black {} jumping in air"
+ },
+ {
+ "index": 373,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "dog has red collar",
+ "question": [
+ "is there dog ?",
+ "is there red collar ?"
+ ],
+ "prompt": "{} has red collar"
+ },
+ {
+ "index": 374,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "dog has short curly tail",
+ "question": [
+ "is there dog ?",
+ "is there short curly tail ?"
+ ],
+ "prompt": "{} has short curly tail"
+ },
+ {
+ "index": 375,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "grass under dog is green",
+ "question": [
+ "is there grass ?",
+ "is there dog ?"
+ ],
+ "prompt": "grass under {} is green"
+ },
+ {
+ "index": 376,
+ "image_id": 2387387,
+ "entity": "dog",
+ "caption": "dog's tongue sticking out of mouth",
+ "question": [
+ "is there dog's tongue ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{}'s tongue sticking out of mouth"
+ },
+ {
+ "index": 377,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} has a red collar"
+ },
+ {
+ "index": 378,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a brown nose",
+ "question": [
+ "is there the dog ?",
+ "is there a brown nose ?"
+ ],
+ "prompt": "the {} has a brown nose"
+ },
+ {
+ "index": 379,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the cat is under the dog's chin",
+ "question": [
+ "is there the cat ?",
+ "is there the dog's chin ?"
+ ],
+ "prompt": "the cat is under the {}'s chin"
+ },
+ {
+ "index": 380,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a white face",
+ "question": [
+ "is there the dog ?",
+ "is there a white face ?"
+ ],
+ "prompt": "the {} has a white face"
+ },
+ {
+ "index": 381,
+ "image_id": 2386600,
+ "entity": "dog",
+ "caption": "The frisbee is in front of the dog",
+ "question": [
+ "is there the frisbee ?",
+ "is there front ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The frisbee is in front of the {}"
+ },
+ {
+ "index": 382,
+ "image_id": 2386600,
+ "entity": "dog",
+ "caption": "dog's teeth showing",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth showing"
+ },
+ {
+ "index": 383,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "The dog has a black nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose."
+ },
+ {
+ "index": 384,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "red bandana dog is wearing",
+ "question": [
+ "is there red bandana dog ?"
+ ],
+ "prompt": "red bandana {} is wearing"
+ },
+ {
+ "index": 385,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "dog's face looking at frisbees",
+ "question": [
+ "is there dog's face ?",
+ "are there frisbees ?"
+ ],
+ "prompt": "{}'s face looking at frisbees"
+ },
+ {
+ "index": 386,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "dog is laying on suit case",
+ "question": [
+ "is there dog ?",
+ "is there suit case ?"
+ ],
+ "prompt": "{} is laying on suit case"
+ },
+ {
+ "index": 387,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "The dog is wearing a gold tag.",
+ "question": [
+ "is there the dog ?",
+ "is there a gold tag ?"
+ ],
+ "prompt": "The {} is wearing a gold tag."
+ },
+ {
+ "index": 388,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "The dog is sitting on a suitcase.",
+ "question": [
+ "is there the dog ?",
+ "is there a suitcase ?"
+ ],
+ "prompt": "The {} is sitting on a suitcase."
+ },
+ {
+ "index": 389,
+ "image_id": 2386037,
+ "entity": "dog",
+ "caption": "dog is jumping above ground",
+ "question": [
+ "is there dog ?",
+ "is there ground ?"
+ ],
+ "prompt": "{} is jumping above ground"
+ },
+ {
+ "index": 390,
+ "image_id": 2386037,
+ "entity": "dog",
+ "caption": "dog is wearing collar",
+ "question": [
+ "is there dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} is wearing collar"
+ },
+ {
+ "index": 391,
+ "image_id": 2386031,
+ "entity": "dog",
+ "caption": "dog's tail is up in the air",
+ "question": [
+ "is there dog's tail ?",
+ "is there the air ?"
+ ],
+ "prompt": "{}'s tail is up in the air"
+ },
+ {
+ "index": 392,
+ "image_id": 2386031,
+ "entity": "dog",
+ "caption": "dog's left perked up ear",
+ "question": [
+ "is there ear ?"
+ ],
+ "prompt": "{}'s left perked up ear"
+ },
+ {
+ "index": 393,
+ "image_id": 2386010,
+ "entity": "dog",
+ "caption": "dogs face in a side mirror",
+ "question": [
+ "are there dogs ?",
+ "is there a side mirror ?"
+ ],
+ "prompt": "{}s face in a side mirror"
+ },
+ {
+ "index": 394,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "nose of dog is wet",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is wet"
+ },
+ {
+ "index": 395,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "eyes of dog are wide open",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are wide open"
+ },
+ {
+ "index": 396,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the frisbee is in the dog's mouth",
+ "question": [
+ "is there the frisbee ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "the frisbee is in the {}'s mouth"
+ },
+ {
+ "index": 397,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the dog's eyes are wild and wide open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are wild and wide open"
+ },
+ {
+ "index": 398,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the face of the dog is tricolored",
+ "question": [
+ "is there the face ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the face of the {} is tricolored"
+ },
+ {
+ "index": 399,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the dog's paw is white",
+ "question": [
+ "is there the dog's paw ?"
+ ],
+ "prompt": "the {}'s paw is white"
+ },
+ {
+ "index": 400,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "grass is under the the dog",
+ "question": [
+ "is there grass ?",
+ "is there the the dog ?"
+ ],
+ "prompt": "grass is under the the {}"
+ },
+ {
+ "index": 401,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog is wearing a cap",
+ "question": [
+ "is there dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "{} is wearing a cap"
+ },
+ {
+ "index": 402,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog is wearing eyeglasses",
+ "question": [
+ "is there dog ?",
+ "are there eyeglasses ?"
+ ],
+ "prompt": "{} is wearing eyeglasses"
+ },
+ {
+ "index": 403,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog's mouth is open",
+ "question": [
+ "is there dog's mouth ?"
+ ],
+ "prompt": "{}'s mouth is open"
+ },
+ {
+ "index": 404,
+ "image_id": 2385762,
+ "entity": "dog",
+ "caption": "a dog has a retractable leash attached to the collar",
+ "question": [
+ "is there a dog ?",
+ "is there a retractable leash ?",
+ "is there the collar ?"
+ ],
+ "prompt": "a {} has a retractable leash attached to the collar"
+ },
+ {
+ "index": 405,
+ "image_id": 2385757,
+ "entity": "dog",
+ "caption": "dog laying in dirt with eyes closed",
+ "question": [
+ "is there dog ?",
+ "is there dirt ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} laying in dirt with eyes closed"
+ },
+ {
+ "index": 406,
+ "image_id": 2385595,
+ "entity": "dog",
+ "caption": "the dog is lying on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is lying on the bed"
+ },
+ {
+ "index": 407,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man is holding two dogs",
+ "question": [
+ "is there man ?",
+ "are there two dogs ?"
+ ],
+ "prompt": "man is holding two {}s"
+ },
+ {
+ "index": 408,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "dog in rear has red collar",
+ "question": [
+ "is there dog ?",
+ "is there rear ?",
+ "is there red collar ?"
+ ],
+ "prompt": "{} in rear has red collar"
+ },
+ {
+ "index": 409,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man is crouching near two dogs",
+ "question": [
+ "is there man ?",
+ "are there two dogs ?"
+ ],
+ "prompt": "man is crouching near two {}s"
+ },
+ {
+ "index": 410,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "dog with its mouth wide open",
+ "question": [
+ "is there dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "{} with its mouth wide open"
+ },
+ {
+ "index": 411,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man's hand resting on dog's hip",
+ "question": [
+ "is there man's hand ?",
+ "is there dog's hip ?"
+ ],
+ "prompt": "man's hand resting on {}'s hip"
+ },
+ {
+ "index": 412,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's eyes are brown",
+ "question": [
+ "are there dog's eyes ?"
+ ],
+ "prompt": "{}'s eyes are brown"
+ },
+ {
+ "index": 413,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's whiskers are white",
+ "question": [
+ "are there dog's whiskers ?"
+ ],
+ "prompt": "{}'s whiskers are white"
+ },
+ {
+ "index": 414,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog is next to the window",
+ "question": [
+ "is there dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "{} is next to the window"
+ },
+ {
+ "index": 415,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's ears are down",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are down"
+ },
+ {
+ "index": 416,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog has a silver tag",
+ "question": [
+ "is there the dog ?",
+ "is there a silver tag ?"
+ ],
+ "prompt": "the {} has a silver tag"
+ },
+ {
+ "index": 417,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog is in the passenger seat",
+ "question": [
+ "is there the dog ?",
+ "is there the passenger seat ?"
+ ],
+ "prompt": "the {} is in the passenger seat"
+ },
+ {
+ "index": 418,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog has white parts of the eyes showing",
+ "question": [
+ "is there the dog ?",
+ "are there white parts ?",
+ "are there the eyes ?"
+ ],
+ "prompt": "the {} has white parts of the eyes showing"
+ },
+ {
+ "index": 419,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "A dog has a tag",
+ "question": [
+ "is there a dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "A {} has a tag"
+ },
+ {
+ "index": 420,
+ "image_id": 2385345,
+ "entity": "dog",
+ "caption": "the dog is leaning on the bedding",
+ "question": [
+ "is there the dog ?",
+ "is there the bedding ?"
+ ],
+ "prompt": "the {} is leaning on the bedding"
+ },
+ {
+ "index": 421,
+ "image_id": 2385345,
+ "entity": "dog",
+ "caption": "the bed is behind the dog",
+ "question": [
+ "is there the bed ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the bed is behind the {}"
+ },
+ {
+ "index": 422,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "white dog is lying on a bed",
+ "question": [
+ "is there white dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "white {} is lying on a bed"
+ },
+ {
+ "index": 423,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "tail of dog is on bed",
+ "question": [
+ "is there tail ?",
+ "is there dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "tail of {} is on bed"
+ },
+ {
+ "index": 424,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "eyes of dog are black",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are black"
+ },
+ {
+ "index": 425,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "eyes and nose of dog are black",
+ "question": [
+ "are there eyes ?",
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes and nose of {} are black"
+ },
+ {
+ "index": 426,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "a dog collar has a tag",
+ "question": [
+ "is there a dog collar ?",
+ "is there a tag ?"
+ ],
+ "prompt": "a {} collar has a tag"
+ },
+ {
+ "index": 427,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "legs and chest of dog are white",
+ "question": [
+ "are there legs ?",
+ "is there chest ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs and chest of {} are white"
+ },
+ {
+ "index": 428,
+ "image_id": 2384917,
+ "entity": "dog",
+ "caption": "dogs tongue sticking out",
+ "question": [
+ "are there dogs ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{}s tongue sticking out"
+ },
+ {
+ "index": 429,
+ "image_id": 2384917,
+ "entity": "dog",
+ "caption": "brown pointy ear on dog",
+ "question": [
+ "is there brown pointy ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "brown pointy ear on {}"
+ },
+ {
+ "index": 430,
+ "image_id": 2384563,
+ "entity": "dog",
+ "caption": "dog curled up on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} curled up on a couch"
+ },
+ {
+ "index": 431,
+ "image_id": 2384563,
+ "entity": "dog",
+ "caption": "a dog curled up on a cushion",
+ "question": [
+ "is there a dog ?",
+ "is there a cushion ?"
+ ],
+ "prompt": "a {} curled up on a cushion"
+ },
+ {
+ "index": 432,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "dog is wearing a green collar ",
+ "question": [
+ "is there dog ?",
+ "is there a green collar ?"
+ ],
+ "prompt": "{} is wearing a green collar "
+ },
+ {
+ "index": 433,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "the dogs ear is bent ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s ear is bent "
+ },
+ {
+ "index": 434,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "the dogs ear ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s ear "
+ },
+ {
+ "index": 435,
+ "image_id": 2384424,
+ "entity": "dog",
+ "caption": "the dog is beside the bike",
+ "question": [
+ "is there the dog ?",
+ "is there the bike ?"
+ ],
+ "prompt": "the {} is beside the bike"
+ },
+ {
+ "index": 436,
+ "image_id": 2384322,
+ "entity": "dog",
+ "caption": "Reindeer stuffed animal on the dog.",
+ "question": [
+ "is there reindeer ?",
+ "is there animal ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Reindeer stuffed animal on the {}."
+ },
+ {
+ "index": 437,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "dog's collar is green",
+ "question": [
+ "is there dog's collar ?"
+ ],
+ "prompt": "{}'s collar is green"
+ },
+ {
+ "index": 438,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "the dog bed is plaid patterned",
+ "question": [
+ "is there the dog bed ?"
+ ],
+ "prompt": "the {} bed is plaid patterned"
+ },
+ {
+ "index": 439,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "dog's ears pointing upwards",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears pointing upwards"
+ },
+ {
+ "index": 440,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "Black pillow dog is laying on",
+ "question": [
+ "is there black pillow dog ?"
+ ],
+ "prompt": "Black pillow {} is laying on"
+ },
+ {
+ "index": 441,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "Collar dog is wearing",
+ "question": [
+ "is there collar dog ?"
+ ],
+ "prompt": "Collar {} is wearing"
+ },
+ {
+ "index": 442,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is tan",
+ "question": [
+ "is there dog toy ?",
+ "is there tan ?"
+ ],
+ "prompt": "{} toy is tan"
+ },
+ {
+ "index": 443,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is lying on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is lying on the floor"
+ },
+ {
+ "index": 444,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has the toy in it's mouth",
+ "question": [
+ "is there dog ?",
+ "is there the toy ?"
+ ],
+ "prompt": "{} has the toy in it's mouth"
+ },
+ {
+ "index": 445,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is tan and hairy",
+ "question": [
+ "is there dog toy ?"
+ ],
+ "prompt": "{} toy is tan and hairy"
+ },
+ {
+ "index": 446,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has whiskers that are white",
+ "question": [
+ "is there dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "{} has whiskers that are white"
+ },
+ {
+ "index": 447,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is laying on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is laying on the floor"
+ },
+ {
+ "index": 448,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has black ears",
+ "question": [
+ "is there dog ?",
+ "are there black ears ?"
+ ],
+ "prompt": "{} has black ears"
+ },
+ {
+ "index": 449,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is lying down on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is lying down on the floor"
+ },
+ {
+ "index": 450,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is brown",
+ "question": [
+ "is there dog toy ?"
+ ],
+ "prompt": "{} toy is brown"
+ },
+ {
+ "index": 451,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has toy in it's mouth",
+ "question": [
+ "is there dog ?",
+ "is there toy ?",
+ "is there it's mouth ?"
+ ],
+ "prompt": "{} has toy in it's mouth"
+ },
+ {
+ "index": 452,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has white whiskers",
+ "question": [
+ "is there dog ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "{} has white whiskers"
+ },
+ {
+ "index": 453,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has a nose",
+ "question": [
+ "is there the dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "the {} has a nose"
+ },
+ {
+ "index": 454,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has eyes",
+ "question": [
+ "is there the dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {} has eyes"
+ },
+ {
+ "index": 455,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has an ear",
+ "question": [
+ "is there the dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "the {} has an ear"
+ },
+ {
+ "index": 456,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "The dog's face looks angry",
+ "question": [
+ "is there the dog's face ?"
+ ],
+ "prompt": "The {}'s face looks angry"
+ },
+ {
+ "index": 457,
+ "image_id": 2383242,
+ "entity": "dog",
+ "caption": "The dog is between the persons legs",
+ "question": [
+ "is there the dog ?",
+ "are there the persons legs ?"
+ ],
+ "prompt": "The {} is between the persons legs"
+ },
+ {
+ "index": 458,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is on the counter",
+ "question": [
+ "is there the dog ?",
+ "is there the counter ?"
+ ],
+ "prompt": "The {} is on the counter"
+ },
+ {
+ "index": 459,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dogs nose is black",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is black"
+ },
+ {
+ "index": 460,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog has long fur.",
+ "question": [
+ "is there the dog ?",
+ "is there long fur ?"
+ ],
+ "prompt": "The {} has long fur."
+ },
+ {
+ "index": 461,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is on a table.",
+ "question": [
+ "is there the dog ?",
+ "is there a table ?"
+ ],
+ "prompt": "The {} is on a table."
+ },
+ {
+ "index": 462,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is sniffing the newspaper.",
+ "question": [
+ "is there the dog ?",
+ "is there the newspaper ?"
+ ],
+ "prompt": "The {} is sniffing the newspaper."
+ },
+ {
+ "index": 463,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog has curly fur",
+ "question": [
+ "is there the dog ?",
+ "is there curly fur ?"
+ ],
+ "prompt": "The {} has curly fur"
+ },
+ {
+ "index": 464,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s nose is black",
+ "question": [
+ "is there the dog`s nose ?"
+ ],
+ "prompt": "the {}`s nose is black"
+ },
+ {
+ "index": 465,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s eyes are black",
+ "question": [
+ "are there the dog`s eyes ?"
+ ],
+ "prompt": "the {}`s eyes are black"
+ },
+ {
+ "index": 466,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s hair is curly",
+ "question": [
+ "is there the dog`s hair ?"
+ ],
+ "prompt": "the {}`s hair is curly"
+ },
+ {
+ "index": 467,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog is smelling the paper",
+ "question": [
+ "is there the dog ?",
+ "is there the paper ?"
+ ],
+ "prompt": "the {} is smelling the paper"
+ },
+ {
+ "index": 468,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "a dog is asleep",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "a {} is asleep"
+ },
+ {
+ "index": 469,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog's paw is on the remote",
+ "question": [
+ "is there the dog's paw ?",
+ "is there the remote ?"
+ ],
+ "prompt": "The {}'s paw is on the remote"
+ },
+ {
+ "index": 470,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog's eyes are closed",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are closed"
+ },
+ {
+ "index": 471,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog is sleep on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there sleep ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is sleep on the couch."
+ },
+ {
+ "index": 472,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog has two ears.",
+ "question": [
+ "is there the dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "The {} has two ears."
+ },
+ {
+ "index": 473,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "A dog is in the foreground",
+ "question": [
+ "is there a dog ?",
+ "is there the foreground ?"
+ ],
+ "prompt": "A {} is in the foreground"
+ },
+ {
+ "index": 474,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "the dog`s nose is brown",
+ "question": [
+ "is there the dog`s nose ?"
+ ],
+ "prompt": "the {}`s nose is brown"
+ },
+ {
+ "index": 475,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "the dog`s stomach is wet",
+ "question": [
+ "is there the dog`s stomach ?"
+ ],
+ "prompt": "the {}`s stomach is wet"
+ },
+ {
+ "index": 476,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "dog is in the beach",
+ "question": [
+ "is there dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "{} is in the beach"
+ },
+ {
+ "index": 477,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "tail of dog is up",
+ "question": [
+ "is there tail ?",
+ "is there dog ?"
+ ],
+ "prompt": "tail of {} is up"
+ },
+ {
+ "index": 478,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "face of dog is white and brown",
+ "question": [
+ "is there face ?",
+ "is there dog ?"
+ ],
+ "prompt": "face of {} is white and brown"
+ },
+ {
+ "index": 479,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "collar of dog is black",
+ "question": [
+ "is there collar ?",
+ "is there dog ?"
+ ],
+ "prompt": "collar of {} is black"
+ },
+ {
+ "index": 480,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "ears of dog are down ",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are down "
+ },
+ {
+ "index": 481,
+ "image_id": 2381848,
+ "entity": "dog",
+ "caption": "ear of dog is brown",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is brown"
+ },
+ {
+ "index": 482,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "Leash attached to the dog",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Leash attached to the {}"
+ },
+ {
+ "index": 483,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "the dog is wearing a floater",
+ "question": [
+ "is there the dog ?",
+ "is there a floater ?"
+ ],
+ "prompt": "the {} is wearing a floater"
+ },
+ {
+ "index": 484,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "this is the rope tying the dog",
+ "question": [
+ "is there the rope ?",
+ "is there the dog ?"
+ ],
+ "prompt": "this is the rope tying the {}"
+ },
+ {
+ "index": 485,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "bull dog is wearing a black and red vest ",
+ "question": [
+ "is there bull dog ?",
+ "is there a black and red vest ?"
+ ],
+ "prompt": "bull {} is wearing a black and red vest "
+ },
+ {
+ "index": 486,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "bull dog is standing on a blue surfboard ",
+ "question": [
+ "is there bull dog ?",
+ "is there a blue surfboard ?"
+ ],
+ "prompt": "bull {} is standing on a blue surfboard "
+ },
+ {
+ "index": 487,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog has an overbite",
+ "question": [
+ "is there the dog ?",
+ "is there an overbite ?"
+ ],
+ "prompt": "the {} has an overbite"
+ },
+ {
+ "index": 488,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog is wearing a life vest",
+ "question": [
+ "is there the dog ?",
+ "is there a life vest ?"
+ ],
+ "prompt": "the {} is wearing a life vest"
+ },
+ {
+ "index": 489,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog has front legs",
+ "question": [
+ "is there the dog ?",
+ "are there front legs ?"
+ ],
+ "prompt": "the {} has front legs"
+ },
+ {
+ "index": 490,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog is on the board",
+ "question": [
+ "is there the dog ?",
+ "is there the board ?"
+ ],
+ "prompt": "the {} is on the board"
+ },
+ {
+ "index": 491,
+ "image_id": 2381375,
+ "entity": "dog",
+ "caption": "the dog is lying on the ground",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is lying on the ground"
+ },
+ {
+ "index": 492,
+ "image_id": 2381375,
+ "entity": "dog",
+ "caption": "the dog is on a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "the {} is on a leash"
+ },
+ {
+ "index": 493,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's reflection is in a mirror.",
+ "question": [
+ "is there the dog's reflection ?",
+ "is there a mirror ?"
+ ],
+ "prompt": "The {}'s reflection is in a mirror."
+ },
+ {
+ "index": 494,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's tongue is showing. ",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "The {}'s tongue is showing. "
+ },
+ {
+ "index": 495,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's legs are in the foreground.",
+ "question": [
+ "are there the dog's legs ?",
+ "is there the foreground ?"
+ ],
+ "prompt": "The {}'s legs are in the foreground."
+ },
+ {
+ "index": 496,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's nose is black. ",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black. "
+ },
+ {
+ "index": 497,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has an eye",
+ "question": [
+ "is there the dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "the {} has an eye"
+ },
+ {
+ "index": 498,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has a tongue",
+ "question": [
+ "is there the dog ?",
+ "is there a tongue ?"
+ ],
+ "prompt": "the {} has a tongue"
+ },
+ {
+ "index": 499,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has a long ear",
+ "question": [
+ "is there the dog ?",
+ "is there a long ear ?"
+ ],
+ "prompt": "the {} has a long ear"
+ },
+ {
+ "index": 500,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has its mouth open",
+ "question": [
+ "is there the dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has its mouth open"
+ },
+ {
+ "index": 501,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar"
+ },
+ {
+ "index": 502,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog's collar is blue",
+ "question": [
+ "is there the dog's collar ?"
+ ],
+ "prompt": "the {}'s collar is blue"
+ },
+ {
+ "index": 503,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has a pointy ear",
+ "question": [
+ "is there the dog ?",
+ "is there a pointy ear ?"
+ ],
+ "prompt": "the {} has a pointy ear"
+ },
+ {
+ "index": 504,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has pointy ears",
+ "question": [
+ "is there dog ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "{} has pointy ears"
+ },
+ {
+ "index": 505,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has short legs",
+ "question": [
+ "is there dog ?",
+ "are there short legs ?"
+ ],
+ "prompt": "{} has short legs"
+ },
+ {
+ "index": 506,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has pointy teeth",
+ "question": [
+ "is there dog ?",
+ "are there pointy teeth ?"
+ ],
+ "prompt": "{} has pointy teeth"
+ },
+ {
+ "index": 507,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog is attempting to catch a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is attempting to catch a frisbee"
+ },
+ {
+ "index": 508,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog is down on his \"knees\"",
+ "question": [
+ "is there the dog ?",
+ "are there his \"knees ?"
+ ],
+ "prompt": "the {} is down on his \"knees\""
+ },
+ {
+ "index": 509,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog's mouth wide open",
+ "question": [],
+ "prompt": "{}'s mouth wide open"
+ },
+ {
+ "index": 510,
+ "image_id": 2380220,
+ "entity": "dog",
+ "caption": "dog is laying on stuffed animal ",
+ "question": [
+ "is there dog ?",
+ "is there stuffed animal ?"
+ ],
+ "prompt": "{} is laying on stuffed animal "
+ },
+ {
+ "index": 511,
+ "image_id": 2380220,
+ "entity": "dog",
+ "caption": "dogs ear is black ",
+ "question": [
+ "are there dogs ?"
+ ],
+ "prompt": "{}s ear is black "
+ },
+ {
+ "index": 512,
+ "image_id": 2379710,
+ "entity": "dog",
+ "caption": "water splashing next to dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "water splashing next to {}"
+ },
+ {
+ "index": 513,
+ "image_id": 2379519,
+ "entity": "dog",
+ "caption": "The dog has it's tongue out.",
+ "question": [
+ "is there the dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "The {} has it's tongue out."
+ },
+ {
+ "index": 514,
+ "image_id": 2379519,
+ "entity": "dog",
+ "caption": "The dog has brown eyes.",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "The {} has brown eyes."
+ },
+ {
+ "index": 515,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a brown spot over one eye.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown spot ?",
+ "is there one eye ?"
+ ],
+ "prompt": "The {} has a brown spot over one eye."
+ },
+ {
+ "index": 516,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a spotted ear.",
+ "question": [
+ "is there the dog ?",
+ "is there a spotted ear ?"
+ ],
+ "prompt": "The {} has a spotted ear."
+ },
+ {
+ "index": 517,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a short tail.",
+ "question": [
+ "is there the dog ?",
+ "is there a short tail ?"
+ ],
+ "prompt": "The {} has a short tail."
+ },
+ {
+ "index": 518,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar."
+ },
+ {
+ "index": 519,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a closed mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a closed mouth ?"
+ ],
+ "prompt": "The {} has a closed mouth."
+ },
+ {
+ "index": 520,
+ "image_id": 2378890,
+ "entity": "dog",
+ "caption": "The dog has a chain collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a chain collar ?"
+ ],
+ "prompt": "The {} has a chain collar."
+ },
+ {
+ "index": 521,
+ "image_id": 2378890,
+ "entity": "dog",
+ "caption": "The dog is playing with the frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is playing with the frisbee."
+ },
+ {
+ "index": 522,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "dog has grey fur",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has grey fur"
+ },
+ {
+ "index": 523,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "other dog has black fur",
+ "question": [
+ "is there other dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "other {} has black fur"
+ },
+ {
+ "index": 524,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "other dog has brown face",
+ "question": [
+ "is there other dog ?",
+ "is there brown face ?"
+ ],
+ "prompt": "other {} has brown face"
+ },
+ {
+ "index": 525,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "nose of the dog with mouth closed",
+ "question": [
+ "is there nose ?",
+ "is there the dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "nose of the {} with mouth closed"
+ },
+ {
+ "index": 526,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "eye of the dog with mouth shut",
+ "question": [
+ "is there eye ?",
+ "is there the dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "eye of the {} with mouth shut"
+ },
+ {
+ "index": 527,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog's tongue is sticking out",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "the {}'s tongue is sticking out"
+ },
+ {
+ "index": 528,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog is wearing a harness",
+ "question": [
+ "is there the dog ?",
+ "is there a harness ?"
+ ],
+ "prompt": "the {} is wearing a harness"
+ },
+ {
+ "index": 529,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog has whiskers ",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "the {} has whiskers "
+ },
+ {
+ "index": 530,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog's collar has a silver tag",
+ "question": [
+ "is there the dog's collar ?",
+ "is there a silver tag ?"
+ ],
+ "prompt": "the {}'s collar has a silver tag"
+ },
+ {
+ "index": 531,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog has teeth",
+ "question": [
+ "is there the dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "the {} has teeth"
+ },
+ {
+ "index": 532,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dogs curved tail",
+ "question": [
+ "are there the dogs ?",
+ "is there tail ?"
+ ],
+ "prompt": "the {}s curved tail"
+ },
+ {
+ "index": 533,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog collar is dark brown",
+ "question": [
+ "is there the dog collar ?"
+ ],
+ "prompt": "the {} collar is dark brown"
+ },
+ {
+ "index": 534,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s mouth is open",
+ "question": [
+ "is there the dog`s mouth ?"
+ ],
+ "prompt": "the {}`s mouth is open"
+ },
+ {
+ "index": 535,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s neck is white",
+ "question": [
+ "is there the dog`s neck ?"
+ ],
+ "prompt": "the {}`s neck is white"
+ },
+ {
+ "index": 536,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s face is multi colored",
+ "question": [
+ "is there the dog`s face ?"
+ ],
+ "prompt": "the {}`s face is multi colored"
+ },
+ {
+ "index": 537,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "paws of dog are black",
+ "question": [
+ "are there paws ?",
+ "is there dog ?"
+ ],
+ "prompt": "paws of {} are black"
+ },
+ {
+ "index": 538,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "hair eyes of dog are big",
+ "question": [
+ "are there hair eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "hair eyes of {} are big"
+ },
+ {
+ "index": 539,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "dog is wearing a bandana",
+ "question": [
+ "is there dog ?",
+ "is there a bandana ?"
+ ],
+ "prompt": "{} is wearing a bandana"
+ },
+ {
+ "index": 540,
+ "image_id": 2377946,
+ "entity": "dog",
+ "caption": "The dog is on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The {} is on the bed"
+ },
+ {
+ "index": 541,
+ "image_id": 2377946,
+ "entity": "dog",
+ "caption": "The dog has a red blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a red blanket ?"
+ ],
+ "prompt": "The {} has a red blanket"
+ },
+ {
+ "index": 542,
+ "image_id": 2377695,
+ "entity": "dog",
+ "caption": "the dogs pink tounge",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s pink tounge"
+ },
+ {
+ "index": 543,
+ "image_id": 2377541,
+ "entity": "dog",
+ "caption": "a dogs ear with black spots",
+ "question": [
+ "are there a dogs ?",
+ "are there black spots ?"
+ ],
+ "prompt": "a {}s ear with black spots"
+ },
+ {
+ "index": 544,
+ "image_id": 2377541,
+ "entity": "dog",
+ "caption": "wet dog standing in pond",
+ "question": [
+ "is there wet dog ?",
+ "is there pond ?"
+ ],
+ "prompt": "wet {} standing in pond"
+ },
+ {
+ "index": 545,
+ "image_id": 2377276,
+ "entity": "dog",
+ "caption": "fur of dog is long",
+ "question": [
+ "is there fur ?",
+ "is there dog ?"
+ ],
+ "prompt": "fur of {} is long"
+ },
+ {
+ "index": 546,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog's snout is black",
+ "question": [
+ "is there the dog's snout ?"
+ ],
+ "prompt": "the {}'s snout is black"
+ },
+ {
+ "index": 547,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog has a leather collar",
+ "question": [
+ "is there the dog ?",
+ "is there a leather collar ?"
+ ],
+ "prompt": "the {} has a leather collar"
+ },
+ {
+ "index": 548,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog has black ears ",
+ "question": [
+ "is there the dog ?",
+ "are there black ears ?"
+ ],
+ "prompt": "the {} has black ears "
+ },
+ {
+ "index": 549,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "the dog has an orange collar ",
+ "question": [
+ "is there the dog ?",
+ "is there an orange collar ?"
+ ],
+ "prompt": "the {} has an orange collar "
+ },
+ {
+ "index": 550,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "this is an ear of a dog",
+ "question": [
+ "is there an ear ?",
+ "is there a dog ?"
+ ],
+ "prompt": "this is an ear of a {}"
+ },
+ {
+ "index": 551,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "this is a tongue of a dog",
+ "question": [
+ "is there a tongue ?",
+ "is there a dog ?"
+ ],
+ "prompt": "this is a tongue of a {}"
+ },
+ {
+ "index": 552,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "two dogs leashed to post",
+ "question": [
+ "are there two dogs ?"
+ ],
+ "prompt": "two {}s leashed to post"
+ },
+ {
+ "index": 553,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "two dogs tied to a tree",
+ "question": [
+ "are there two dogs ?",
+ "is there a tree ?"
+ ],
+ "prompt": "two {}s tied to a tree"
+ },
+ {
+ "index": 554,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog has it's mouth open",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has it's mouth open"
+ },
+ {
+ "index": 555,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog is leaning against the sofa",
+ "question": [
+ "is there dog ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "{} is leaning against the sofa"
+ },
+ {
+ "index": 556,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog's teeth are white",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth are white"
+ },
+ {
+ "index": 557,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "A dog is smelling a cat",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A {} is smelling a cat"
+ },
+ {
+ "index": 558,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "An old dog is greeting the new cat",
+ "question": [
+ "is there an old dog ?",
+ "is there the new cat ?"
+ ],
+ "prompt": "An old {} is greeting the new cat"
+ },
+ {
+ "index": 559,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "A cat is friends with a dog",
+ "question": [
+ "is there a cat ?",
+ "are there friends ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A cat is friends with a {}"
+ },
+ {
+ "index": 560,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "dog has two ears.",
+ "question": [
+ "is there dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "{} has two ears."
+ },
+ {
+ "index": 561,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has purple collar",
+ "question": [
+ "is there dog ?",
+ "is there purple collar ?"
+ ],
+ "prompt": "{} has purple collar"
+ },
+ {
+ "index": 562,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has brown nose",
+ "question": [
+ "is there dog ?",
+ "is there brown nose ?"
+ ],
+ "prompt": "{} has brown nose"
+ },
+ {
+ "index": 563,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has light brown hair",
+ "question": [
+ "is there dog ?",
+ "is there light brown hair ?"
+ ],
+ "prompt": "{} has light brown hair"
+ },
+ {
+ "index": 564,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has dark brown ears",
+ "question": [
+ "is there dog ?",
+ "are there dark brown ears ?"
+ ],
+ "prompt": "{} has dark brown ears"
+ },
+ {
+ "index": 565,
+ "image_id": 2375658,
+ "entity": "dog",
+ "caption": "Sad looking dog face",
+ "question": [
+ "is there sad looking dog face ?"
+ ],
+ "prompt": "Sad looking {} face"
+ },
+ {
+ "index": 566,
+ "image_id": 2375561,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue harness",
+ "question": [
+ "is there the dog ?",
+ "is there a blue harness ?"
+ ],
+ "prompt": "The {} is wearing a blue harness"
+ },
+ {
+ "index": 567,
+ "image_id": 2375561,
+ "entity": "dog",
+ "caption": "The dog is standing on a chair.",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "The {} is standing on a chair."
+ },
+ {
+ "index": 568,
+ "image_id": 2375451,
+ "entity": "dog",
+ "caption": "the dogs nose is black ",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is black "
+ },
+ {
+ "index": 569,
+ "image_id": 2375428,
+ "entity": "dog",
+ "caption": "The dog is looking at the camera",
+ "question": [
+ "is there the dog ?",
+ "is there the camera ?"
+ ],
+ "prompt": "The {} is looking at the camera"
+ },
+ {
+ "index": 570,
+ "image_id": 2375428,
+ "entity": "dog",
+ "caption": "The dog has long fur",
+ "question": [
+ "is there the dog ?",
+ "is there long fur ?"
+ ],
+ "prompt": "The {} has long fur"
+ },
+ {
+ "index": 571,
+ "image_id": 2374930,
+ "entity": "dog",
+ "caption": "baby is leaning on a dog",
+ "question": [
+ "is there baby ?",
+ "is there a dog ?"
+ ],
+ "prompt": "baby is leaning on a {}"
+ },
+ {
+ "index": 572,
+ "image_id": 2374930,
+ "entity": "dog",
+ "caption": "nose of dog is brown ",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is brown "
+ },
+ {
+ "index": 573,
+ "image_id": 2374268,
+ "entity": "dog",
+ "caption": "the dog's leg hanging over the sofa",
+ "question": [
+ "is there the dog's leg ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "the {}'s leg hanging over the sofa"
+ },
+ {
+ "index": 574,
+ "image_id": 2374268,
+ "entity": "dog",
+ "caption": "dog has face buried in the couch",
+ "question": [
+ "is there dog ?",
+ "is there face ?",
+ "is there the couch ?"
+ ],
+ "prompt": "{} has face buried in the couch"
+ },
+ {
+ "index": 575,
+ "image_id": 2374132,
+ "entity": "dog",
+ "caption": "dog has light brown paws",
+ "question": [
+ "is there dog ?",
+ "are there light brown paws ?"
+ ],
+ "prompt": "{} has light brown paws"
+ },
+ {
+ "index": 576,
+ "image_id": 2374013,
+ "entity": "dog",
+ "caption": "dog's ears are light brown",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are light brown"
+ },
+ {
+ "index": 577,
+ "image_id": 2373955,
+ "entity": "dog",
+ "caption": "a brown hat the dog is wearing",
+ "question": [
+ "is there a brown hat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a brown hat the {} is wearing"
+ },
+ {
+ "index": 578,
+ "image_id": 2373955,
+ "entity": "dog",
+ "caption": "black dog kissing man",
+ "question": [
+ "is there black dog kissing man ?"
+ ],
+ "prompt": "black {} kissing man"
+ },
+ {
+ "index": 579,
+ "image_id": 2373533,
+ "entity": "dog",
+ "caption": "eyes of dog are big",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are big"
+ },
+ {
+ "index": 580,
+ "image_id": 2373533,
+ "entity": "dog",
+ "caption": "mouth of dog is touching a rail",
+ "question": [
+ "is there mouth ?",
+ "is there dog ?",
+ "is there a rail ?"
+ ],
+ "prompt": "mouth of {} is touching a rail"
+ },
+ {
+ "index": 581,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dog is wearing pink collar",
+ "question": [
+ "is there dog ?",
+ "is there pink collar ?"
+ ],
+ "prompt": "{} is wearing pink collar"
+ },
+ {
+ "index": 582,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dogs nose is brown",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is brown"
+ },
+ {
+ "index": 583,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dog right ear is brown",
+ "question": [
+ "is there dog right ear ?"
+ ],
+ "prompt": "{} right ear is brown"
+ },
+ {
+ "index": 584,
+ "image_id": 2373155,
+ "entity": "dog",
+ "caption": "dogs has a chain on his neck",
+ "question": [
+ "are there dogs ?",
+ "is there a chain ?",
+ "is there his neck ?"
+ ],
+ "prompt": "{}s has a chain on his neck"
+ },
+ {
+ "index": 585,
+ "image_id": 2373141,
+ "entity": "dog",
+ "caption": "This is a man with a dog",
+ "question": [
+ "is there a man ?",
+ "is there a dog ?"
+ ],
+ "prompt": "This is a man with a {}"
+ },
+ {
+ "index": 586,
+ "image_id": 2373109,
+ "entity": "dog",
+ "caption": "the dog is on the ground ",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is on the ground "
+ },
+ {
+ "index": 587,
+ "image_id": 2373073,
+ "entity": "dog",
+ "caption": "dog is wearing a hat ",
+ "question": [
+ "is there dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "{} is wearing a hat "
+ },
+ {
+ "index": 588,
+ "image_id": 2372988,
+ "entity": "dog",
+ "caption": "Water drips down dog's face.",
+ "question": [
+ "is there water ?",
+ "is there dog's face ?"
+ ],
+ "prompt": "Water drips down {}'s face."
+ },
+ {
+ "index": 589,
+ "image_id": 2372988,
+ "entity": "dog",
+ "caption": "dog is wearing a chain",
+ "question": [
+ "is there dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "{} is wearing a chain"
+ },
+ {
+ "index": 590,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is riding in a car",
+ "question": [
+ "is there a dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "A {} is riding in a car"
+ },
+ {
+ "index": 591,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is riding in the passenger seat",
+ "question": [
+ "is there a dog ?",
+ "is there the passenger seat ?"
+ ],
+ "prompt": "A {} is riding in the passenger seat"
+ },
+ {
+ "index": 592,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is in its master's car",
+ "question": [
+ "is there a dog ?",
+ "is there its master's car ?"
+ ],
+ "prompt": "A {} is in its master's car"
+ },
+ {
+ "index": 593,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "The dog likes riding in a car",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "The {} likes riding in a car"
+ },
+ {
+ "index": 594,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "The dog is looking out the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is looking out the window"
+ },
+ {
+ "index": 595,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "The dog is sitting on a bench.",
+ "question": [
+ "is there the dog ?",
+ "is there a bench ?"
+ ],
+ "prompt": "The {} is sitting on a bench."
+ },
+ {
+ "index": 596,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "dog is wearing a blue harness",
+ "question": [
+ "is there dog ?",
+ "is there a blue harness ?"
+ ],
+ "prompt": "{} is wearing a blue harness"
+ },
+ {
+ "index": 597,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "the dog has a white belly",
+ "question": [
+ "is there the dog ?",
+ "is there a white belly ?"
+ ],
+ "prompt": "the {} has a white belly"
+ },
+ {
+ "index": 598,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog looks sleepy",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} looks sleepy"
+ },
+ {
+ "index": 599,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is laying on a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "the {} is laying on a stuffed animal"
+ },
+ {
+ "index": 600,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is pale tan in color",
+ "question": [
+ "is there the dog ?",
+ "is there pale tan ?",
+ "is there color ?"
+ ],
+ "prompt": "the {} is pale tan in color"
+ },
+ {
+ "index": 601,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "stuffed animal dog is sleeping on",
+ "question": [
+ "is there stuffed animal dog ?"
+ ],
+ "prompt": "stuffed animal {} is sleeping on"
+ },
+ {
+ "index": 602,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "red bed dog is sleeping on",
+ "question": [
+ "is there red bed dog ?"
+ ],
+ "prompt": "red bed {} is sleeping on"
+ },
+ {
+ "index": 603,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the cushion under the dog is red",
+ "question": [
+ "is there the cushion ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cushion under the {} is red"
+ },
+ {
+ "index": 604,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is laying on a cushion",
+ "question": [
+ "is there the dog ?",
+ "is there a cushion ?"
+ ],
+ "prompt": "the {} is laying on a cushion"
+ },
+ {
+ "index": 605,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "The dog ear on the right",
+ "question": [
+ "is there the dog ear ?",
+ "is there the right ?"
+ ],
+ "prompt": "The {} ear on the right"
+ },
+ {
+ "index": 606,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "Dog leash on the beige dog",
+ "question": [
+ "is there dog ?",
+ "is there the beige dog ?"
+ ],
+ "prompt": "Dog leash on the beige {}"
+ },
+ {
+ "index": 607,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "dog has white teeth",
+ "question": [
+ "is there dog ?",
+ "are there white teeth ?"
+ ],
+ "prompt": "{} has white teeth"
+ },
+ {
+ "index": 608,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "dog has black under his lip",
+ "question": [
+ "is there dog ?",
+ "is there his lip ?"
+ ],
+ "prompt": "{} has black under his lip"
+ },
+ {
+ "index": 609,
+ "image_id": 2372091,
+ "entity": "dog",
+ "caption": "wooden bench dog is sitting on",
+ "question": [
+ "is there wooden bench dog ?"
+ ],
+ "prompt": "wooden bench {} is sitting on"
+ },
+ {
+ "index": 610,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "Flowered leash going to the dog",
+ "question": [
+ "is there flowered leash ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Flowered leash going to the {}"
+ },
+ {
+ "index": 611,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog looks off into distance",
+ "question": [
+ "is there dog ?",
+ "is there distance ?"
+ ],
+ "prompt": "{} looks off into distance"
+ },
+ {
+ "index": 612,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog wears sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} wears sweater"
+ },
+ {
+ "index": 613,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog sits next to bicycle",
+ "question": [
+ "is there dog ?",
+ "is there bicycle ?"
+ ],
+ "prompt": "{} sits next to bicycle"
+ },
+ {
+ "index": 614,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog sits on sidewalk",
+ "question": [
+ "is there dog ?",
+ "is there sidewalk ?"
+ ],
+ "prompt": "{} sits on sidewalk"
+ },
+ {
+ "index": 615,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "sweater is on dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "sweater is on {}"
+ },
+ {
+ "index": 616,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog is inside sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} is inside sweater"
+ },
+ {
+ "index": 617,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The dog is on a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "The {} is on a leash"
+ },
+ {
+ "index": 618,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog is standing near a bicycle",
+ "question": [
+ "is there the white dog ?",
+ "is there a bicycle ?"
+ ],
+ "prompt": "The white {} is standing near a bicycle"
+ },
+ {
+ "index": 619,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog in the sweater has a bushy tail",
+ "question": [
+ "is there the white dog ?",
+ "is there the sweater ?",
+ "is there a bushy tail ?"
+ ],
+ "prompt": "The white {} in the sweater has a bushy tail"
+ },
+ {
+ "index": 620,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog is standing on the sidewalk",
+ "question": [
+ "is there the white dog ?",
+ "is there the sidewalk ?"
+ ],
+ "prompt": "The white {} is standing on the sidewalk"
+ },
+ {
+ "index": 621,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "the dog is using the laptop",
+ "question": [
+ "is there the dog ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "the {} is using the laptop"
+ },
+ {
+ "index": 622,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "A dog with it's paws on a laptop.",
+ "question": [
+ "is there a dog ?",
+ "are there it's paws ?",
+ "is there a laptop ?"
+ ],
+ "prompt": "A {} with it's paws on a laptop."
+ },
+ {
+ "index": 623,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The dog is using the computer ",
+ "question": [
+ "is there the dog ?",
+ "is there the computer ?"
+ ],
+ "prompt": "The {} is using the computer "
+ },
+ {
+ "index": 624,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The nose of the dog is black ",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The nose of the {} is black "
+ },
+ {
+ "index": 625,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The eye of the dog is brown ",
+ "question": [
+ "is there the eye ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The eye of the {} is brown "
+ },
+ {
+ "index": 626,
+ "image_id": 2371520,
+ "entity": "dog",
+ "caption": "carpet dog is playing on",
+ "question": [
+ "is there carpet dog ?"
+ ],
+ "prompt": "carpet {} is playing on"
+ },
+ {
+ "index": 627,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A dog has three colors of fur.",
+ "question": [
+ "is there a dog ?",
+ "are there three colors ?",
+ "is there fur ?"
+ ],
+ "prompt": "A {} has three colors of fur."
+ },
+ {
+ "index": 628,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A dog is wearing a scarf around the neck.",
+ "question": [
+ "is there a dog ?",
+ "is there a scarf ?",
+ "is there the neck ?"
+ ],
+ "prompt": "A {} is wearing a scarf around the neck."
+ },
+ {
+ "index": 629,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A woman is sitting close to a dog.",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A woman is sitting close to a {}."
+ },
+ {
+ "index": 630,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in mouth."
+ },
+ {
+ "index": 631,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "the dog is wearing a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} is wearing a collar."
+ },
+ {
+ "index": 632,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The back left leg of a dog",
+ "question": [
+ "is there the back left leg ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The back left leg of a {}"
+ },
+ {
+ "index": 633,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The front left leg of a dog",
+ "question": [
+ "is there the front left leg ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The front left leg of a {}"
+ },
+ {
+ "index": 634,
+ "image_id": 2371119,
+ "entity": "dog",
+ "caption": "the dog is laying on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is laying on the bed"
+ },
+ {
+ "index": 635,
+ "image_id": 2370667,
+ "entity": "dog",
+ "caption": "the dogs nail ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s nail "
+ },
+ {
+ "index": 636,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has a serious face",
+ "question": [
+ "is there the dog ?",
+ "is there a serious face ?"
+ ],
+ "prompt": "The {} has a serious face"
+ },
+ {
+ "index": 637,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has white whiskers.",
+ "question": [
+ "is there the dog ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "The {} has white whiskers."
+ },
+ {
+ "index": 638,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has a brown colar.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown colar ?"
+ ],
+ "prompt": "The {} has a brown colar."
+ },
+ {
+ "index": 639,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "eye of dog is black ",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is black "
+ },
+ {
+ "index": 640,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "chest of dog is white",
+ "question": [
+ "is there chest ?",
+ "is there dog ?"
+ ],
+ "prompt": "chest of {} is white"
+ },
+ {
+ "index": 641,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "dog has dog tags",
+ "question": [
+ "is there dog ?",
+ "are there dog tags ?"
+ ],
+ "prompt": "{} has {} tags"
+ },
+ {
+ "index": 642,
+ "image_id": 2370342,
+ "entity": "dog",
+ "caption": "dog's head is on the pillow",
+ "question": [
+ "is there dog's head ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "{}'s head is on the pillow"
+ },
+ {
+ "index": 643,
+ "image_id": 2370107,
+ "entity": "dog",
+ "caption": "bottom left tooth of dog",
+ "question": [
+ "is there bottom ?",
+ "is there tooth ?",
+ "is there dog ?"
+ ],
+ "prompt": "bottom left tooth of {}"
+ },
+ {
+ "index": 644,
+ "image_id": 2369919,
+ "entity": "dog",
+ "caption": "dogs nose is black ",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is black "
+ },
+ {
+ "index": 645,
+ "image_id": 2369919,
+ "entity": "dog",
+ "caption": "the dog is laying down on a shoe ",
+ "question": [
+ "is there the dog ?",
+ "is there a shoe ?"
+ ],
+ "prompt": "the {} is laying down on a shoe "
+ },
+ {
+ "index": 646,
+ "image_id": 2369591,
+ "entity": "dog",
+ "caption": "the dog has a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "the {} has a leash"
+ },
+ {
+ "index": 647,
+ "image_id": 2369591,
+ "entity": "dog",
+ "caption": "The dog's eye looking ahead",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye looking ahead"
+ },
+ {
+ "index": 648,
+ "image_id": 2369270,
+ "entity": "dog",
+ "caption": "Frisbee is in the dog's mouth",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "Frisbee is in the {}'s mouth"
+ },
+ {
+ "index": 649,
+ "image_id": 2368889,
+ "entity": "dog",
+ "caption": "Big brown dog spiked pink collar.",
+ "question": [
+ "is there big brown dog ?",
+ "is there pink collar ?"
+ ],
+ "prompt": "Big brown {} spiked pink collar."
+ },
+ {
+ "index": 650,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "dog is laying on the ground",
+ "question": [
+ "is there dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "{} is laying on the ground"
+ },
+ {
+ "index": 651,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "dog with tongue sticking out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} with tongue sticking out"
+ },
+ {
+ "index": 652,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog has a front paw",
+ "question": [
+ "is there the dog ?",
+ "is there a front paw ?"
+ ],
+ "prompt": "the {} has a front paw"
+ },
+ {
+ "index": 653,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog has nails",
+ "question": [
+ "is there the dog ?",
+ "are there nails ?"
+ ],
+ "prompt": "the {} has nails"
+ },
+ {
+ "index": 654,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog is lying down",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is lying down"
+ },
+ {
+ "index": 655,
+ "image_id": 2368714,
+ "entity": "dog",
+ "caption": "dog curled up with a teddy bear",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} curled up with a teddy bear"
+ },
+ {
+ "index": 656,
+ "image_id": 2368714,
+ "entity": "dog",
+ "caption": "ear of dog is black ",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is black "
+ },
+ {
+ "index": 657,
+ "image_id": 2368054,
+ "entity": "dog",
+ "caption": "dog has a purple leash",
+ "question": [
+ "is there dog ?",
+ "is there a purple leash ?"
+ ],
+ "prompt": "{} has a purple leash"
+ },
+ {
+ "index": 658,
+ "image_id": 2368054,
+ "entity": "dog",
+ "caption": "this dog is wearing a red harness",
+ "question": [
+ "is there this dog ?",
+ "is there a red harness ?"
+ ],
+ "prompt": "this {} is wearing a red harness"
+ },
+ {
+ "index": 659,
+ "image_id": 2367865,
+ "entity": "dog",
+ "caption": "The dog's eyes are yellow",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are yellow"
+ },
+ {
+ "index": 660,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "the dog is inside a van",
+ "question": [
+ "is there the dog ?",
+ "is there a van ?"
+ ],
+ "prompt": "the {} is inside a van"
+ },
+ {
+ "index": 661,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "the dog tag hanging",
+ "question": [
+ "is there the dog tag ?"
+ ],
+ "prompt": "the {} tag hanging"
+ },
+ {
+ "index": 662,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar"
+ },
+ {
+ "index": 663,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "navy blanket dog is laying on",
+ "question": [
+ "is there navy blanket dog ?"
+ ],
+ "prompt": "navy blanket {} is laying on"
+ },
+ {
+ "index": 664,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog's pink tongue is very long",
+ "question": [
+ "is there the dog's pink tongue ?"
+ ],
+ "prompt": "The {}'s pink tongue is very long"
+ },
+ {
+ "index": 665,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "A large tongue hanging out of the dog's mouth",
+ "question": [
+ "is there a large tongue ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "A large tongue hanging out of the {}'s mouth"
+ },
+ {
+ "index": 666,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog's eye is open",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye is open"
+ },
+ {
+ "index": 667,
+ "image_id": 2367433,
+ "entity": "dog",
+ "caption": "pizza that dog is eating",
+ "question": [
+ "is there pizza ?",
+ "is there that dog ?"
+ ],
+ "prompt": "pizza that {} is eating"
+ },
+ {
+ "index": 668,
+ "image_id": 2367433,
+ "entity": "dog",
+ "caption": "steel grate that dog is standing on",
+ "question": [
+ "is there steel grate ?",
+ "is there that dog ?"
+ ],
+ "prompt": "steel grate that {} is standing on"
+ },
+ {
+ "index": 669,
+ "image_id": 2367152,
+ "entity": "dog",
+ "caption": "mouth of dog is open",
+ "question": [
+ "is there mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "mouth of {} is open"
+ },
+ {
+ "index": 670,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "dog tail held high",
+ "question": [
+ "is there dog tail ?"
+ ],
+ "prompt": "{} tail held high"
+ },
+ {
+ "index": 671,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "a dog that has brown eyes",
+ "question": [
+ "is there a dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "a {} that has brown eyes"
+ },
+ {
+ "index": 672,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "the dog has a brown ear",
+ "question": [
+ "is there the dog ?",
+ "is there a brown ear ?"
+ ],
+ "prompt": "the {} has a brown ear"
+ },
+ {
+ "index": 673,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has eyes",
+ "question": [
+ "is there this dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "this {} has eyes"
+ },
+ {
+ "index": 674,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has ears",
+ "question": [
+ "is there this dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "this {} has ears"
+ },
+ {
+ "index": 675,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog's nose is black",
+ "question": [
+ "is there this dog's nose ?"
+ ],
+ "prompt": "this {}'s nose is black"
+ },
+ {
+ "index": 676,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has a long tail",
+ "question": [
+ "is there this dog ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "this {} has a long tail"
+ },
+ {
+ "index": 677,
+ "image_id": 2365888,
+ "entity": "dog",
+ "caption": "the dog has a small tail",
+ "question": [
+ "is there the dog ?",
+ "is there a small tail ?"
+ ],
+ "prompt": "the {} has a small tail"
+ },
+ {
+ "index": 678,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "th edog is in the car ",
+ "question": [
+ "is there the car ?"
+ ],
+ "prompt": "th e{} is in the car "
+ },
+ {
+ "index": 679,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking outside the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking outside the window"
+ },
+ {
+ "index": 680,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking outside ",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is looking outside "
+ },
+ {
+ "index": 681,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking through the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking through the window"
+ },
+ {
+ "index": 682,
+ "image_id": 2365756,
+ "entity": "dog",
+ "caption": "the doghas a seat belt on ",
+ "question": [
+ "is there a seat belt ?"
+ ],
+ "prompt": "the {}has a seat belt on "
+ },
+ {
+ "index": 683,
+ "image_id": 2365756,
+ "entity": "dog",
+ "caption": "Black seatbelt holding back a dog. ",
+ "question": [
+ "is there black seatbelt ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Black seatbelt holding back a {}. "
+ },
+ {
+ "index": 684,
+ "image_id": 2365712,
+ "entity": "dog",
+ "caption": "the dog is licking the cake",
+ "question": [
+ "is there the dog ?",
+ "is there the cake ?"
+ ],
+ "prompt": "the {} is licking the cake"
+ },
+ {
+ "index": 685,
+ "image_id": 2365044,
+ "entity": "dog",
+ "caption": "dog is wearing a bow tie ",
+ "question": [
+ "is there dog ?",
+ "is there a bow tie ?"
+ ],
+ "prompt": "{} is wearing a bow tie "
+ },
+ {
+ "index": 686,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "The pillow the dog is laying on.",
+ "question": [
+ "is there the pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The pillow the {} is laying on."
+ },
+ {
+ "index": 687,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "the dog is getting ready for bed",
+ "question": [
+ "is there the dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "the {} is getting ready for bed"
+ },
+ {
+ "index": 688,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "this dog looks comfortable in bed",
+ "question": [
+ "is there this dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "this {} looks comfortable in bed"
+ },
+ {
+ "index": 689,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "dog has hazel eyes",
+ "question": [
+ "is there dog ?",
+ "are there hazel eyes ?"
+ ],
+ "prompt": "{} has hazel eyes"
+ },
+ {
+ "index": 690,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "dog is holding a ball",
+ "question": [
+ "is there dog ?",
+ "is there a ball ?"
+ ],
+ "prompt": "{} is holding a ball"
+ },
+ {
+ "index": 691,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "black dog with paws forward looking at camera",
+ "question": [
+ "is there black dog ?",
+ "are there paws ?",
+ "is there camera ?"
+ ],
+ "prompt": "black {} with paws forward looking at camera"
+ },
+ {
+ "index": 692,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "dog has a ball inside his mouth",
+ "question": [
+ "is there dog ?",
+ "is there a ball ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has a ball inside his mouth"
+ },
+ {
+ "index": 693,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "snout of dog is color salt and pepper",
+ "question": [
+ "is there snout ?",
+ "is there dog ?",
+ "is there color salt ?",
+ "is there pepper ?"
+ ],
+ "prompt": "snout of {} is color salt and pepper"
+ },
+ {
+ "index": 694,
+ "image_id": 2364504,
+ "entity": "dog",
+ "caption": "The dog is wearing a purple collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a purple collar ?"
+ ],
+ "prompt": "The {} is wearing a purple collar."
+ },
+ {
+ "index": 695,
+ "image_id": 2364504,
+ "entity": "dog",
+ "caption": "One dog is sitting in the car.",
+ "question": [
+ "is there one dog ?",
+ "is there the car ?"
+ ],
+ "prompt": "One {} is sitting in the car."
+ },
+ {
+ "index": 696,
+ "image_id": 2364448,
+ "entity": "dog",
+ "caption": "the dog has a paw",
+ "question": [
+ "is there the dog ?",
+ "is there a paw ?"
+ ],
+ "prompt": "the {} has a paw"
+ },
+ {
+ "index": 697,
+ "image_id": 2364244,
+ "entity": "dog",
+ "caption": "the dog is wearing a tiara",
+ "question": [
+ "is there the dog ?",
+ "is there a tiara ?"
+ ],
+ "prompt": "the {} is wearing a tiara"
+ },
+ {
+ "index": 698,
+ "image_id": 2364208,
+ "entity": "dog",
+ "caption": "the cow is looking at the dog",
+ "question": [
+ "is there the cow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cow is looking at the {}"
+ },
+ {
+ "index": 699,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "a dog with his tooth sticking out",
+ "question": [
+ "is there a dog ?",
+ "is there his tooth ?"
+ ],
+ "prompt": "a {} with his tooth sticking out"
+ },
+ {
+ "index": 700,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "green couch cushion dog is sleeping on",
+ "question": [
+ "is there green couch cushion dog ?"
+ ],
+ "prompt": "green couch cushion {} is sleeping on"
+ },
+ {
+ "index": 701,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "dog lip pulled up against cushion",
+ "question": [
+ "is there dog lip ?",
+ "is there cushion ?"
+ ],
+ "prompt": "{} lip pulled up against cushion"
+ },
+ {
+ "index": 702,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "dog's tongue sticking out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue sticking out"
+ },
+ {
+ "index": 703,
+ "image_id": 2363350,
+ "entity": "dog",
+ "caption": "A dog is laying in his bed",
+ "question": [
+ "is there a dog ?",
+ "is there his bed ?"
+ ],
+ "prompt": "A {} is laying in his bed"
+ },
+ {
+ "index": 704,
+ "image_id": 2363350,
+ "entity": "dog",
+ "caption": "The dog is resting on a pillow",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "The {} is resting on a pillow"
+ },
+ {
+ "index": 705,
+ "image_id": 2362763,
+ "entity": "dog",
+ "caption": "dog's teeth are showing",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth are showing"
+ },
+ {
+ "index": 706,
+ "image_id": 2362553,
+ "entity": "dog",
+ "caption": "dog with head tilted up",
+ "question": [
+ "is there dog ?",
+ "is there head ?"
+ ],
+ "prompt": "{} with head tilted up"
+ },
+ {
+ "index": 707,
+ "image_id": 2362553,
+ "entity": "dog",
+ "caption": "the dog has a right eye",
+ "question": [
+ "is there the dog ?",
+ "is there a right eye ?"
+ ],
+ "prompt": "the {} has a right eye"
+ },
+ {
+ "index": 708,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The dog is in the bag",
+ "question": [
+ "is there the dog ?",
+ "is there the bag ?"
+ ],
+ "prompt": "The {} is in the bag"
+ },
+ {
+ "index": 709,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The bag is holding the dog",
+ "question": [
+ "is there the bag ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The bag is holding the {}"
+ },
+ {
+ "index": 710,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The small backpack holds a dog",
+ "question": [
+ "is there the small backpack ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The small backpack holds a {}"
+ },
+ {
+ "index": 711,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The dog is turning its head",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?"
+ ],
+ "prompt": "The {} is turning its head"
+ },
+ {
+ "index": 712,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "this is a \"doggy pack\"",
+ "question": [
+ "is there a \"doggy pack ?"
+ ],
+ "prompt": "this is a \"{}gy pack\""
+ },
+ {
+ "index": 713,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "dog is wearing chain collar",
+ "question": [
+ "is there dog ?",
+ "is there chain collar ?"
+ ],
+ "prompt": "{} is wearing chain collar"
+ },
+ {
+ "index": 714,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog is looking at the cake",
+ "question": [
+ "is there the dog ?",
+ "is there the cake ?"
+ ],
+ "prompt": "the {} is looking at the cake"
+ },
+ {
+ "index": 715,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog looks sad",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} looks sad"
+ },
+ {
+ "index": 716,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog lays head on arm",
+ "question": [
+ "is there the dog ?",
+ "is there head ?",
+ "is there arm ?"
+ ],
+ "prompt": "the {} lays head on arm"
+ },
+ {
+ "index": 717,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog has spots",
+ "question": [
+ "is there the dog ?",
+ "are there spots ?"
+ ],
+ "prompt": "the {} has spots"
+ },
+ {
+ "index": 718,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "eye of dog is black",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is black"
+ },
+ {
+ "index": 719,
+ "image_id": 2362196,
+ "entity": "dog",
+ "caption": " a dog with it's tongue sticking out",
+ "question": [
+ "is there a dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": " a {} with it's tongue sticking out"
+ },
+ {
+ "index": 720,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "this is a dog ",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "this is a {} "
+ },
+ {
+ "index": 721,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "the dog is lying down on the floor",
+ "question": [
+ "is there the dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "the {} is lying down on the floor"
+ },
+ {
+ "index": 722,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is in somebody's house",
+ "question": [
+ "is there the dog ?",
+ "is there somebody's house ?"
+ ],
+ "prompt": "The {} is in somebody's house"
+ },
+ {
+ "index": 723,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is laying by the door",
+ "question": [
+ "is there the dog ?",
+ "is there the door ?"
+ ],
+ "prompt": "The {} is laying by the door"
+ },
+ {
+ "index": 724,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is guarding the house",
+ "question": [
+ "is there the dog ?",
+ "is there the house ?"
+ ],
+ "prompt": "The {} is guarding the house"
+ },
+ {
+ "index": 725,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is awake in daytime",
+ "question": [
+ "is there the dog ?",
+ "is there daytime ?"
+ ],
+ "prompt": "The {} is awake in daytime"
+ },
+ {
+ "index": 726,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is waiting to go outside",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is waiting to go outside"
+ },
+ {
+ "index": 727,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is waiting to be let out",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "A {} is waiting to be let out"
+ },
+ {
+ "index": 728,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is sleeping on the floor",
+ "question": [
+ "is there a dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "A {} is sleeping on the floor"
+ },
+ {
+ "index": 729,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is looking for attention",
+ "question": [
+ "is there a dog ?",
+ "is there attention ?"
+ ],
+ "prompt": "A {} is looking for attention"
+ },
+ {
+ "index": 730,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is looking lonely",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is looking lonely"
+ },
+ {
+ "index": 731,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is waiting by the door",
+ "question": [
+ "is there a dog ?",
+ "is there the door ?"
+ ],
+ "prompt": "A {} is waiting by the door"
+ },
+ {
+ "index": 732,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is laying on the floor",
+ "question": [
+ "is there a dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "A {} is laying on the floor"
+ },
+ {
+ "index": 733,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is wanting to be fed",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is wanting to be fed"
+ },
+ {
+ "index": 734,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is enjoying its day",
+ "question": [
+ "is there the dog ?",
+ "is there its day ?"
+ ],
+ "prompt": "The {} is enjoying its day"
+ },
+ {
+ "index": 735,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is getting some rest",
+ "question": [
+ "is there the dog ?",
+ "is there some rest ?"
+ ],
+ "prompt": "The {} is getting some rest"
+ },
+ {
+ "index": 736,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog belongs to the home owner",
+ "question": [
+ "is there the dog ?",
+ "is there the home owner ?"
+ ],
+ "prompt": "The {} belongs to the home owner"
+ },
+ {
+ "index": 737,
+ "image_id": 2361653,
+ "entity": "dog",
+ "caption": "the dog has a left eye",
+ "question": [
+ "is there the dog ?",
+ "is there a left eye ?"
+ ],
+ "prompt": "the {} has a left eye"
+ },
+ {
+ "index": 738,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "floppy black dog ear ",
+ "question": [
+ "is there floppy black dog ear ?"
+ ],
+ "prompt": "floppy black {} ear "
+ },
+ {
+ "index": 739,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "two dog ear in different positions at same time ",
+ "question": [
+ "is there two dog ear ?",
+ "are there different positions ?",
+ "is there same time ?"
+ ],
+ "prompt": "two {} ear in different positions at same time "
+ },
+ {
+ "index": 740,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "The dog's left ear flopped down",
+ "question": [
+ "is there the dog's left ear ?"
+ ],
+ "prompt": "The {}'s left ear flopped down"
+ },
+ {
+ "index": 741,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "the dog's right ear is up",
+ "question": [
+ "is there the dog's right ear ?"
+ ],
+ "prompt": "the {}'s right ear is up"
+ },
+ {
+ "index": 742,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "the dog's eyes are open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are open"
+ },
+ {
+ "index": 743,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog is laying on dog bed",
+ "question": [
+ "is there dog ?",
+ "is there dog bed ?"
+ ],
+ "prompt": "{} is laying on {} bed"
+ },
+ {
+ "index": 744,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has small nose",
+ "question": [
+ "is there dog ?",
+ "is there small nose ?"
+ ],
+ "prompt": "{} has small nose"
+ },
+ {
+ "index": 745,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog bed is beige",
+ "question": [
+ "is there dog bed ?"
+ ],
+ "prompt": "{} bed is beige"
+ },
+ {
+ "index": 746,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has wavy fur",
+ "question": [
+ "is there dog ?",
+ "is there wavy fur ?"
+ ],
+ "prompt": "{} has wavy fur"
+ },
+ {
+ "index": 747,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has fluffy tail",
+ "question": [
+ "is there dog ?",
+ "is there fluffy tail ?"
+ ],
+ "prompt": "{} has fluffy tail"
+ },
+ {
+ "index": 748,
+ "image_id": 2360725,
+ "entity": "dog",
+ "caption": "the dog is biting an envelope",
+ "question": [
+ "is there the dog ?",
+ "is there an envelope ?"
+ ],
+ "prompt": "the {} is biting an envelope"
+ },
+ {
+ "index": 749,
+ "image_id": 2360725,
+ "entity": "dog",
+ "caption": "dog is carrying an envelope",
+ "question": [
+ "is there dog ?",
+ "is there an envelope ?"
+ ],
+ "prompt": "{} is carrying an envelope"
+ },
+ {
+ "index": 750,
+ "image_id": 2360542,
+ "entity": "dog",
+ "caption": "dog has black eyes",
+ "question": [
+ "is there dog ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "{} has black eyes"
+ },
+ {
+ "index": 751,
+ "image_id": 2360542,
+ "entity": "dog",
+ "caption": "pomeranian dog gets a ride inside duffle bag",
+ "question": [
+ "is there pomeranian dog ?",
+ "is there a ride inside duffle bag ?"
+ ],
+ "prompt": "pomeranian {} gets a ride inside duffle bag"
+ },
+ {
+ "index": 752,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "The front left leg of the dog.",
+ "question": [
+ "is there the front left leg ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The front left leg of the {}."
+ },
+ {
+ "index": 753,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "eyes of dog are round",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are round"
+ },
+ {
+ "index": 754,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "head of dog is brown",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is brown"
+ },
+ {
+ "index": 755,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "dog has dark eyes ",
+ "question": [
+ "is there dog ?",
+ "are there dark eyes ?"
+ ],
+ "prompt": "{} has dark eyes "
+ },
+ {
+ "index": 756,
+ "image_id": 2360299,
+ "entity": "dog",
+ "caption": "dog's right ear is black",
+ "question": [
+ "is there dog's right ear ?"
+ ],
+ "prompt": "{}'s right ear is black"
+ },
+ {
+ "index": 757,
+ "image_id": 2360145,
+ "entity": "dog",
+ "caption": "A shadow line is behind the dogs.",
+ "question": [
+ "is there a shadow line ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "A shadow line is behind the {}s."
+ },
+ {
+ "index": 758,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog with his eyes shut",
+ "question": [
+ "is there dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "{} with his eyes shut"
+ },
+ {
+ "index": 759,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog is on blanket",
+ "question": [
+ "is there dog ?",
+ "is there blanket ?"
+ ],
+ "prompt": "{} is on blanket"
+ },
+ {
+ "index": 760,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog has blonde hair",
+ "question": [
+ "is there dog ?",
+ "is there blonde hair ?"
+ ],
+ "prompt": "{} has blonde hair"
+ },
+ {
+ "index": 761,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog has long hair on ears",
+ "question": [
+ "is there dog ?",
+ "is there long hair ?",
+ "are there ears ?"
+ ],
+ "prompt": "{} has long hair on ears"
+ },
+ {
+ "index": 762,
+ "image_id": 2359809,
+ "entity": "dog",
+ "caption": "The rear left paw of the dog",
+ "question": [
+ "is there the rear left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The rear left paw of the {}"
+ },
+ {
+ "index": 763,
+ "image_id": 2359809,
+ "entity": "dog",
+ "caption": "dog is standing on cement floors",
+ "question": [
+ "is there dog ?",
+ "are there cement floors ?"
+ ],
+ "prompt": "{} is standing on cement floors"
+ },
+ {
+ "index": 764,
+ "image_id": 2359414,
+ "entity": "dog",
+ "caption": "the dog has a banana on its side",
+ "question": [
+ "is there the dog ?",
+ "is there a banana ?",
+ "is there its side ?"
+ ],
+ "prompt": "the {} has a banana on its side"
+ },
+ {
+ "index": 765,
+ "image_id": 2359172,
+ "entity": "dog",
+ "caption": "dog has brown ear",
+ "question": [
+ "is there dog ?",
+ "is there brown ear ?"
+ ],
+ "prompt": "{} has brown ear"
+ },
+ {
+ "index": 766,
+ "image_id": 2359172,
+ "entity": "dog",
+ "caption": "dog has brown eye",
+ "question": [
+ "is there dog ?",
+ "is there brown eye ?"
+ ],
+ "prompt": "{} has brown eye"
+ },
+ {
+ "index": 767,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "Cat is laying on top of dog.",
+ "question": [
+ "is there cat ?",
+ "is there top ?",
+ "is there dog ?"
+ ],
+ "prompt": "Cat is laying on top of {}."
+ },
+ {
+ "index": 768,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "The cat is on the dog.",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The cat is on the {}."
+ },
+ {
+ "index": 769,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "dog has brown eye brows",
+ "question": [
+ "is there dog ?",
+ "are there brown eye brows ?"
+ ],
+ "prompt": "{} has brown eye brows"
+ },
+ {
+ "index": 770,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "dog holds chew toy",
+ "question": [
+ "is there dog ?",
+ "is there toy ?"
+ ],
+ "prompt": "{} holds chew toy"
+ },
+ {
+ "index": 771,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "dog has pink tongue",
+ "question": [
+ "is there dog ?",
+ "is there pink tongue ?"
+ ],
+ "prompt": "{} has pink tongue"
+ },
+ {
+ "index": 772,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is chewing on a toy",
+ "question": [
+ "is there the dog ?",
+ "is there a toy ?"
+ ],
+ "prompt": "the {} is chewing on a toy"
+ },
+ {
+ "index": 773,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog chews on an orange toy",
+ "question": [
+ "is there the dog ?",
+ "is there an orange toy ?"
+ ],
+ "prompt": "the {} chews on an orange toy"
+ },
+ {
+ "index": 774,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is on a blanket"
+ },
+ {
+ "index": 775,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is laying on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is laying on a blanket"
+ },
+ {
+ "index": 776,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "Small orange looking stuffed animal a dog has. ",
+ "question": [
+ "is there small orange ?",
+ "is there stuffed animal ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Small orange looking stuffed animal a {} has. "
+ },
+ {
+ "index": 777,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "A brown dogs left side front paw. ",
+ "question": [
+ "are there a brown dogs ?",
+ "is there side front paw ?"
+ ],
+ "prompt": "A brown {}s left side front paw. "
+ },
+ {
+ "index": 778,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "A dogs left ear. ",
+ "question": [
+ "are there a dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "A {}s left ear. "
+ },
+ {
+ "index": 779,
+ "image_id": 2358486,
+ "entity": "dog",
+ "caption": "dog is leaning over railing",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is leaning over railing"
+ },
+ {
+ "index": 780,
+ "image_id": 2358453,
+ "entity": "dog",
+ "caption": "eye of dog is close",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is close"
+ },
+ {
+ "index": 781,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "dog has a long ear",
+ "question": [
+ "is there dog ?",
+ "is there a long ear ?"
+ ],
+ "prompt": "{} has a long ear"
+ },
+ {
+ "index": 782,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "the dog's head is on the blanket",
+ "question": [
+ "is there the dog's head ?",
+ "is there the blanket ?"
+ ],
+ "prompt": "the {}'s head is on the blanket"
+ },
+ {
+ "index": 783,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "the dog has on a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} has on a red collar"
+ },
+ {
+ "index": 784,
+ "image_id": 2357693,
+ "entity": "dog",
+ "caption": "dog has brown patch on eye",
+ "question": [
+ "is there dog ?",
+ "is there brown patch ?",
+ "is there eye ?"
+ ],
+ "prompt": "{} has brown patch on eye"
+ },
+ {
+ "index": 785,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog is wearing a tie",
+ "question": [
+ "is there the dog ?",
+ "is there a tie ?"
+ ],
+ "prompt": "the {} is wearing a tie"
+ },
+ {
+ "index": 786,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog is lying on the arm of a leather chair",
+ "question": [
+ "is there the dog ?",
+ "is there the arm ?",
+ "is there a leather chair ?"
+ ],
+ "prompt": "the {} is lying on the arm of a leather chair"
+ },
+ {
+ "index": 787,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog has bulgy eyes",
+ "question": [
+ "is there the dog ?",
+ "are there bulgy eyes ?"
+ ],
+ "prompt": "the {} has bulgy eyes"
+ },
+ {
+ "index": 788,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog has dark brown ears",
+ "question": [
+ "is there the dog ?",
+ "are there dark brown ears ?"
+ ],
+ "prompt": "the {} has dark brown ears"
+ },
+ {
+ "index": 789,
+ "image_id": 2356804,
+ "entity": "dog",
+ "caption": "two dogs with their tongues hanging out",
+ "question": [
+ "are there two dogs ?",
+ "are there their tongues ?"
+ ],
+ "prompt": "two {}s with their tongues hanging out"
+ },
+ {
+ "index": 790,
+ "image_id": 2356804,
+ "entity": "dog",
+ "caption": "the dogs are in long grass",
+ "question": [
+ "are there the dogs ?",
+ "is there long grass ?"
+ ],
+ "prompt": "the {}s are in long grass"
+ },
+ {
+ "index": 791,
+ "image_id": 2356762,
+ "entity": "dog",
+ "caption": "This is a dog trying to catch an apple.",
+ "question": [
+ "is there a dog ?",
+ "is there an apple ?"
+ ],
+ "prompt": "This is a {} trying to catch an apple."
+ },
+ {
+ "index": 792,
+ "image_id": 2356762,
+ "entity": "dog",
+ "caption": "The dog has only a few teeth.",
+ "question": [
+ "is there the dog ?",
+ "are there only a few teeth ?"
+ ],
+ "prompt": "The {} has only a few teeth."
+ },
+ {
+ "index": 793,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dog's nose is thru the hole",
+ "question": [
+ "is there the dog's nose ?",
+ "is there the hole ?"
+ ],
+ "prompt": "the {}'s nose is thru the hole"
+ },
+ {
+ "index": 794,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dogs head is stuck",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s head is stuck"
+ },
+ {
+ "index": 795,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dogs head is stuck in the wheel",
+ "question": [
+ "are there the dogs ?",
+ "is there the wheel ?"
+ ],
+ "prompt": "the {}s head is stuck in the wheel"
+ },
+ {
+ "index": 796,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog wears black glasses",
+ "question": [
+ "is there dog ?",
+ "are there black glasses ?"
+ ],
+ "prompt": "{} wears black glasses"
+ },
+ {
+ "index": 797,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog wears black jacket",
+ "question": [
+ "is there dog ?",
+ "is there black jacket ?"
+ ],
+ "prompt": "{} wears black jacket"
+ },
+ {
+ "index": 798,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog is near motorcycle",
+ "question": [
+ "is there dog ?",
+ "is there motorcycle ?"
+ ],
+ "prompt": "{} is near motorcycle"
+ },
+ {
+ "index": 799,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "the dog has sunglasses ",
+ "question": [
+ "is there the dog ?",
+ "are there sunglasses ?"
+ ],
+ "prompt": "the {} has sunglasses "
+ },
+ {
+ "index": 800,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "the dog is on the bike ",
+ "question": [
+ "is there the dog ?",
+ "is there the bike ?"
+ ],
+ "prompt": "the {} is on the bike "
+ },
+ {
+ "index": 801,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "This dog is wearing sunglasses.",
+ "question": [
+ "is there this dog ?",
+ "are there sunglasses ?"
+ ],
+ "prompt": "This {} is wearing sunglasses."
+ },
+ {
+ "index": 802,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog has leash on",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has leash on"
+ },
+ {
+ "index": 803,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog is sitting in side car",
+ "question": [
+ "is there dog ?",
+ "is there side car ?"
+ ],
+ "prompt": "{} is sitting in side car"
+ },
+ {
+ "index": 804,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "blue dog bone shaped tag",
+ "question": [
+ "is there blue dog bone shaped tag ?"
+ ],
+ "prompt": "blue {} bone shaped tag"
+ },
+ {
+ "index": 805,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "dog is wearing a red collar",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "{} is wearing a red collar"
+ },
+ {
+ "index": 806,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "dog is walking on the dirt",
+ "question": [
+ "is there dog ?",
+ "is there the dirt ?"
+ ],
+ "prompt": "{} is walking on the dirt"
+ },
+ {
+ "index": 807,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is wearing goggles",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "The {} is wearing goggles"
+ },
+ {
+ "index": 808,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is on a motorcycle",
+ "question": [
+ "is there the dog ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "The {} is on a motorcycle"
+ },
+ {
+ "index": 809,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is wearing a leather jacket",
+ "question": [
+ "is there the dog ?",
+ "is there a leather jacket ?"
+ ],
+ "prompt": "The {} is wearing a leather jacket"
+ },
+ {
+ "index": 810,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "the nose is black on the dog ",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the nose is black on the {} "
+ },
+ {
+ "index": 811,
+ "image_id": 2355964,
+ "entity": "dog",
+ "caption": "dog ears is pink inside ",
+ "question": [
+ "are there dog ears ?"
+ ],
+ "prompt": "{} ears is pink inside "
+ },
+ {
+ "index": 812,
+ "image_id": 2355964,
+ "entity": "dog",
+ "caption": "dog has black nose ",
+ "question": [
+ "is there dog ?",
+ "is there black nose ?"
+ ],
+ "prompt": "{} has black nose "
+ },
+ {
+ "index": 813,
+ "image_id": 2355944,
+ "entity": "dog",
+ "caption": "The dog is wearing a color",
+ "question": [
+ "is there the dog ?",
+ "is there a color ?"
+ ],
+ "prompt": "The {} is wearing a color"
+ },
+ {
+ "index": 814,
+ "image_id": 2355865,
+ "entity": "dog",
+ "caption": "it is the eye of the dog ",
+ "question": [
+ "is there the eye ?",
+ "is there the dog ?"
+ ],
+ "prompt": "it is the eye of the {} "
+ },
+ {
+ "index": 815,
+ "image_id": 2355519,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in its mouth",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in its mouth"
+ },
+ {
+ "index": 816,
+ "image_id": 2355511,
+ "entity": "dog",
+ "caption": "a black dog right ear ",
+ "question": [
+ "is there a black dog right ear ?"
+ ],
+ "prompt": "a black {} right ear "
+ },
+ {
+ "index": 817,
+ "image_id": 2355511,
+ "entity": "dog",
+ "caption": "A black dog ready to get a bath",
+ "question": [
+ "is there a black dog ?",
+ "is there a bath ?"
+ ],
+ "prompt": "A black {} ready to get a bath"
+ },
+ {
+ "index": 818,
+ "image_id": 2355409,
+ "entity": "dog",
+ "caption": "a dog catchign a freesbee",
+ "question": [
+ "is there a dog ?",
+ "is there a freesbee ?"
+ ],
+ "prompt": "a {} catchign a freesbee"
+ },
+ {
+ "index": 819,
+ "image_id": 2355409,
+ "entity": "dog",
+ "caption": "a white dog catchign a black freesbee",
+ "question": [
+ "is there a white dog ?"
+ ],
+ "prompt": "a white {} catchign a black freesbee"
+ },
+ {
+ "index": 820,
+ "image_id": 2355256,
+ "entity": "dog",
+ "caption": "dog is brown and white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is brown and white"
+ },
+ {
+ "index": 821,
+ "image_id": 2354835,
+ "entity": "dog",
+ "caption": "Brown dog's head sticking out of car window.",
+ "question": [
+ "is there brown dog's head ?",
+ "is there car window ?"
+ ],
+ "prompt": "Brown {}'s head sticking out of car window."
+ },
+ {
+ "index": 822,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "bike is behind the dog",
+ "question": [
+ "is there bike ?",
+ "is there the dog ?"
+ ],
+ "prompt": "bike is behind the {}"
+ },
+ {
+ "index": 823,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "dog has tongue out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} has tongue out"
+ },
+ {
+ "index": 824,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "dog is on the street",
+ "question": [
+ "is there dog ?",
+ "is there the street ?"
+ ],
+ "prompt": "{} is on the street"
+ },
+ {
+ "index": 825,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "This dog has a donut in his mouth",
+ "question": [
+ "is there this dog ?",
+ "is there a donut ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "This {} has a donut in his mouth"
+ },
+ {
+ "index": 826,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog is wearing a red color.",
+ "question": [
+ "is there the dog ?",
+ "is there a red color ?"
+ ],
+ "prompt": "The {} is wearing a red color."
+ },
+ {
+ "index": 827,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog is sitting on the grass.",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "The {} is sitting on the grass."
+ },
+ {
+ "index": 828,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog has two spots on his face.",
+ "question": [
+ "is there the dog ?",
+ "are there two spots ?",
+ "is there his face ?"
+ ],
+ "prompt": "The {} has two spots on his face."
+ },
+ {
+ "index": 829,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "The dog nose is black",
+ "question": [
+ "is there the dog nose ?"
+ ],
+ "prompt": "The {} nose is black"
+ },
+ {
+ "index": 830,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "tan/yellow dog laying across young girls lap",
+ "question": [
+ "is there tan/yellow dog ?",
+ "are there young girls ?"
+ ],
+ "prompt": "tan/yellow {} laying across young girls lap"
+ },
+ {
+ "index": 831,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "dog is wearing a red collar around neck",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?",
+ "is there neck ?"
+ ],
+ "prompt": "{} is wearing a red collar around neck"
+ },
+ {
+ "index": 832,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "Woman laying on the couch with dog.",
+ "question": [
+ "is there woman ?",
+ "is there the couch ?",
+ "is there dog ?"
+ ],
+ "prompt": "Woman laying on the couch with {}."
+ },
+ {
+ "index": 833,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "The dog's head is on the keyboard",
+ "question": [
+ "is there the dog's head ?",
+ "is there the keyboard ?"
+ ],
+ "prompt": "The {}'s head is on the keyboard"
+ },
+ {
+ "index": 834,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue and yellow collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue and yellow collar ?"
+ ],
+ "prompt": "The {} is wearing a blue and yellow collar"
+ },
+ {
+ "index": 835,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "dog is on the keys",
+ "question": [
+ "is there dog ?",
+ "are there the keys ?"
+ ],
+ "prompt": "{} is on the keys"
+ },
+ {
+ "index": 836,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "the dog has yellow and blue flowers",
+ "question": [
+ "is there the dog ?",
+ "are there yellow and blue flowers ?"
+ ],
+ "prompt": "the {} has yellow and blue flowers"
+ },
+ {
+ "index": 837,
+ "image_id": 2353969,
+ "entity": "dog",
+ "caption": "dog has white paw",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has white paw"
+ },
+ {
+ "index": 838,
+ "image_id": 2353969,
+ "entity": "dog",
+ "caption": "dog is laying down on rug",
+ "question": [
+ "is there dog ?",
+ "is there rug ?"
+ ],
+ "prompt": "{} is laying down on rug"
+ },
+ {
+ "index": 839,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "the dog's eye is yellowish",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is yellowish"
+ },
+ {
+ "index": 840,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog has long ears",
+ "question": [
+ "is there the dog ?",
+ "are there long ears ?"
+ ],
+ "prompt": "The {} has long ears"
+ },
+ {
+ "index": 841,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog is wide eyed",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is wide eyed"
+ },
+ {
+ "index": 842,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog's nose is very black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is very black"
+ },
+ {
+ "index": 843,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog is wearing a bowl",
+ "question": [
+ "is there the dog ?",
+ "is there a bowl ?"
+ ],
+ "prompt": "The {} is wearing a bowl"
+ },
+ {
+ "index": 844,
+ "image_id": 2353404,
+ "entity": "dog",
+ "caption": "the plastic buckle on the dog",
+ "question": [
+ "is there the plastic buckle ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the plastic buckle on the {}"
+ },
+ {
+ "index": 845,
+ "image_id": 2353404,
+ "entity": "dog",
+ "caption": "the dog walking and connected to a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} walking and connected to a chain"
+ },
+ {
+ "index": 846,
+ "image_id": 2353398,
+ "entity": "dog",
+ "caption": "green felt the dog is standing on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "green felt the {} is standing on"
+ },
+ {
+ "index": 847,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "the dog is on a sofa",
+ "question": [
+ "is there the dog ?",
+ "is there a sofa ?"
+ ],
+ "prompt": "the {} is on a sofa"
+ },
+ {
+ "index": 848,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "dog's eyes are amber",
+ "question": [
+ "are there dog's eyes ?",
+ "is there amber ?"
+ ],
+ "prompt": "{}'s eyes are amber"
+ },
+ {
+ "index": 849,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "dog is laying on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} is laying on a couch"
+ },
+ {
+ "index": 850,
+ "image_id": 2352757,
+ "entity": "dog",
+ "caption": "the dog is wearing a jacket",
+ "question": [
+ "is there the dog ?",
+ "is there a jacket ?"
+ ],
+ "prompt": "the {} is wearing a jacket"
+ },
+ {
+ "index": 851,
+ "image_id": 2352757,
+ "entity": "dog",
+ "caption": "the dog has a black tail",
+ "question": [
+ "is there the dog ?",
+ "is there a black tail ?"
+ ],
+ "prompt": "the {} has a black tail"
+ },
+ {
+ "index": 852,
+ "image_id": 2352502,
+ "entity": "dog",
+ "caption": "The dog is biting the frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is biting the frisbee."
+ },
+ {
+ "index": 853,
+ "image_id": 2352502,
+ "entity": "dog",
+ "caption": "The dog is on the beach.",
+ "question": [
+ "is there the dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "The {} is on the beach."
+ },
+ {
+ "index": 854,
+ "image_id": 2351971,
+ "entity": "dog",
+ "caption": "legs and paws of dog that allow dog to walk with ",
+ "question": [
+ "are there legs ?",
+ "are there paws ?",
+ "is there dog ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs and paws of {} that allow {} to walk with "
+ },
+ {
+ "index": 855,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "The dog is holding a bowl in his mouth",
+ "question": [
+ "is there the dog ?",
+ "is there a bowl ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} is holding a bowl in his mouth"
+ },
+ {
+ "index": 856,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "The dog's ear is hanging downwards",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "The {}'s ear is hanging downwards"
+ },
+ {
+ "index": 857,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "dog has light brown face",
+ "question": [
+ "is there dog ?",
+ "is there light brown face ?"
+ ],
+ "prompt": "{} has light brown face"
+ },
+ {
+ "index": 858,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "dog is holding bowl",
+ "question": [
+ "is there dog ?",
+ "is there bowl ?"
+ ],
+ "prompt": "{} is holding bowl"
+ },
+ {
+ "index": 859,
+ "image_id": 2351811,
+ "entity": "dog",
+ "caption": "the dogs head ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s head "
+ },
+ {
+ "index": 860,
+ "image_id": 2351083,
+ "entity": "dog",
+ "caption": "dog holds a cap",
+ "question": [
+ "is there dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "{} holds a cap"
+ },
+ {
+ "index": 861,
+ "image_id": 2351083,
+ "entity": "dog",
+ "caption": "the dogs nose is black",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is black"
+ },
+ {
+ "index": 862,
+ "image_id": 2350951,
+ "entity": "dog",
+ "caption": "the mouth of dog is open",
+ "question": [
+ "is there the mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "the mouth of {} is open"
+ },
+ {
+ "index": 863,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the unfortunate dog is wearing a Harley Davidson bandanna",
+ "question": [
+ "is there the unfortunate dog ?"
+ ],
+ "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"
+ },
+ {
+ "index": 864,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the unfortunate dog is wearing a biker headband",
+ "question": [
+ "is there the unfortunate dog ?",
+ "is there a biker headband ?"
+ ],
+ "prompt": "the unfortunate {} is wearing a biker headband"
+ },
+ {
+ "index": 865,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the dog has cropped ears",
+ "question": [
+ "is there the dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "the {} has cropped ears"
+ },
+ {
+ "index": 866,
+ "image_id": 2350609,
+ "entity": "dog",
+ "caption": "lot where dog and woman stand",
+ "question": [
+ "is there lot ?",
+ "is there dog ?",
+ "is there woman ?"
+ ],
+ "prompt": "lot where {} and woman stand"
+ },
+ {
+ "index": 867,
+ "image_id": 2350606,
+ "entity": "dog",
+ "caption": "the dog is on a white platform",
+ "question": [
+ "is there the dog ?",
+ "is there a white platform ?"
+ ],
+ "prompt": "the {} is on a white platform"
+ },
+ {
+ "index": 868,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "legs of dog running",
+ "question": [
+ "are there legs ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs of {} running"
+ },
+ {
+ "index": 869,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "open mouth of dog running",
+ "question": [
+ "is there open mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "open mouth of {} running"
+ },
+ {
+ "index": 870,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog is white with black spots",
+ "question": [
+ "is there the dog ?",
+ "are there black spots ?"
+ ],
+ "prompt": "the {} is white with black spots"
+ },
+ {
+ "index": 871,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog is running with his mouth open",
+ "question": [
+ "is there the dog ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "the {} is running with his mouth open"
+ },
+ {
+ "index": 872,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog has a black spot over his eye",
+ "question": [
+ "is there the dog ?",
+ "is there a black spot ?",
+ "is there his eye ?"
+ ],
+ "prompt": "the {} has a black spot over his eye"
+ },
+ {
+ "index": 873,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dirt is flying from the dog's paws",
+ "question": [
+ "is there the dirt ?",
+ "are there the dog's paws ?"
+ ],
+ "prompt": "the dirt is flying from the {}'s paws"
+ },
+ {
+ "index": 874,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog's paws are touching from running",
+ "question": [
+ "are there the dog's paws ?"
+ ],
+ "prompt": "the {}'s paws are touching from running"
+ },
+ {
+ "index": 875,
+ "image_id": 2349548,
+ "entity": "dog",
+ "caption": "The dogs ear is brown.",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear is brown."
+ },
+ {
+ "index": 876,
+ "image_id": 2349547,
+ "entity": "dog",
+ "caption": "The dog has a pinkish nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a pinkish nose ?"
+ ],
+ "prompt": "The {} has a pinkish nose."
+ },
+ {
+ "index": 877,
+ "image_id": 2349421,
+ "entity": "dog",
+ "caption": "The dog is sitting on the chair ",
+ "question": [
+ "is there the dog ?",
+ "is there the chair ?"
+ ],
+ "prompt": "The {} is sitting on the chair "
+ },
+ {
+ "index": 878,
+ "image_id": 2349268,
+ "entity": "dog",
+ "caption": "the dog has long nails",
+ "question": [
+ "is there the dog ?",
+ "are there long nails ?"
+ ],
+ "prompt": "the {} has long nails"
+ },
+ {
+ "index": 879,
+ "image_id": 2349268,
+ "entity": "dog",
+ "caption": "the dog lays with toy",
+ "question": [
+ "is there the dog ?",
+ "is there toy ?"
+ ],
+ "prompt": "the {} lays with toy"
+ },
+ {
+ "index": 880,
+ "image_id": 2348690,
+ "entity": "dog",
+ "caption": "the dog is chewing up a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "the {} is chewing up a stuffed animal"
+ },
+ {
+ "index": 881,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "dog with hind legs stretched out",
+ "question": [
+ "is there dog ?",
+ "are there hind legs ?"
+ ],
+ "prompt": "{} with hind legs stretched out"
+ },
+ {
+ "index": 882,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "A dog is laying on the bed",
+ "question": [
+ "is there a dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "A {} is laying on the bed"
+ },
+ {
+ "index": 883,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "The dog has white on her paws",
+ "question": [
+ "is there the dog ?",
+ "are there her paws ?"
+ ],
+ "prompt": "The {} has white on her paws"
+ },
+ {
+ "index": 884,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "tan dog's face as he holds the frisbee",
+ "question": [
+ "is there tan dog's face ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "tan {}'s face as he holds the frisbee"
+ },
+ {
+ "index": 885,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "dog's eye looking up past the frisbee",
+ "question": [
+ "is there dog's eye ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{}'s eye looking up past the frisbee"
+ },
+ {
+ "index": 886,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "dog's ear hanging down as he chews the frisbee",
+ "question": [
+ "is there dog's ear ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{}'s ear hanging down as he chews the frisbee"
+ },
+ {
+ "index": 887,
+ "image_id": 2347998,
+ "entity": "dog",
+ "caption": "dog is on the newspaper",
+ "question": [
+ "is there dog ?",
+ "is there the newspaper ?"
+ ],
+ "prompt": "{} is on the newspaper"
+ },
+ {
+ "index": 888,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "a dog tag shaped like a bone ",
+ "question": [
+ "is there a dog tag ?",
+ "is there a bone ?"
+ ],
+ "prompt": "a {} tag shaped like a bone "
+ },
+ {
+ "index": 889,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is inside a room",
+ "question": [
+ "is there the dog ?",
+ "is there a room ?"
+ ],
+ "prompt": "The {} is inside a room"
+ },
+ {
+ "index": 890,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is next to a television",
+ "question": [
+ "is there the dog ?",
+ "is there a television ?"
+ ],
+ "prompt": "The {} is next to a television"
+ },
+ {
+ "index": 891,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is next to a laptop computer",
+ "question": [
+ "is there the dog ?",
+ "is there a laptop computer ?"
+ ],
+ "prompt": "The {} is next to a laptop computer"
+ },
+ {
+ "index": 892,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is on a table",
+ "question": [
+ "is there the dog ?",
+ "is there a table ?"
+ ],
+ "prompt": "The {} is on a table"
+ },
+ {
+ "index": 893,
+ "image_id": 2347591,
+ "entity": "dog",
+ "caption": "A woman who is sitting with a dog",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A woman who is sitting with a {}"
+ },
+ {
+ "index": 894,
+ "image_id": 2347591,
+ "entity": "dog",
+ "caption": "Woman is holding the dog",
+ "question": [
+ "is there woman ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Woman is holding the {}"
+ },
+ {
+ "index": 895,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "a dog with a disc on it's face",
+ "question": [
+ "is there a dog ?",
+ "is there a disc ?"
+ ],
+ "prompt": "a {} with a disc on it's face"
+ },
+ {
+ "index": 896,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "dog has black and white tail",
+ "question": [
+ "is there dog ?",
+ "is there black and white tail ?"
+ ],
+ "prompt": "{} has black and white tail"
+ },
+ {
+ "index": 897,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "dog has white neck",
+ "question": [
+ "is there dog ?",
+ "is there white neck ?"
+ ],
+ "prompt": "{} has white neck"
+ },
+ {
+ "index": 898,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "The dogs tail",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s tail"
+ },
+ {
+ "index": 899,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "The ears that belong to the dog",
+ "question": [
+ "are there the ears ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The ears that belong to the {}"
+ },
+ {
+ "index": 900,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "A dog that is standing in the dirt",
+ "question": [
+ "is there a dog ?",
+ "is there the dirt ?"
+ ],
+ "prompt": "A {} that is standing in the dirt"
+ },
+ {
+ "index": 901,
+ "image_id": 2347473,
+ "entity": "dog",
+ "caption": "the brown patches on the dogs face",
+ "question": [
+ "are there the brown patches ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "the brown patches on the {}s face"
+ },
+ {
+ "index": 902,
+ "image_id": 2347340,
+ "entity": "dog",
+ "caption": "dog's dark eyes are open",
+ "question": [
+ "are there dog's dark eyes ?"
+ ],
+ "prompt": "{}'s dark eyes are open"
+ },
+ {
+ "index": 903,
+ "image_id": 2347340,
+ "entity": "dog",
+ "caption": "the dog is on a chair",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "the {} is on a chair"
+ },
+ {
+ "index": 904,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "the dog is in a car",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "the {} is in a car"
+ },
+ {
+ "index": 905,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "dog has tongue hanging out ",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} has tongue hanging out "
+ },
+ {
+ "index": 906,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "The dog have waggy ear.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} have waggy ear."
+ },
+ {
+ "index": 907,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is resting his head on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there his head ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is resting his head on the couch."
+ },
+ {
+ "index": 908,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "The {} is wearing a blue collar."
+ },
+ {
+ "index": 909,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog's eye is open.",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye is open."
+ },
+ {
+ "index": 910,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog's fur is very short.",
+ "question": [
+ "is there the dog's fur ?"
+ ],
+ "prompt": "The {}'s fur is very short."
+ },
+ {
+ "index": 911,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is sitting on top of white sheet.",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there white sheet ?"
+ ],
+ "prompt": "The {} is sitting on top of white sheet."
+ },
+ {
+ "index": 912,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "the dogs neck is long ",
+ "question": [
+ "are there the dogs neck ?"
+ ],
+ "prompt": "the {}s neck is long "
+ },
+ {
+ "index": 913,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "dog is catching frisbee",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?"
+ ],
+ "prompt": "{} is catching frisbee"
+ },
+ {
+ "index": 914,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "dog has white frisbee in mouth",
+ "question": [
+ "is there dog ?",
+ "is there white frisbee ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} has white frisbee in mouth"
+ },
+ {
+ "index": 915,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "tree is next to dog",
+ "question": [
+ "is there tree ?",
+ "is there dog ?"
+ ],
+ "prompt": "tree is next to {}"
+ },
+ {
+ "index": 916,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "man in cap leaning forward behind dog",
+ "question": [
+ "is there man ?",
+ "is there cap ?",
+ "is there dog ?"
+ ],
+ "prompt": "man in cap leaning forward behind {}"
+ },
+ {
+ "index": 917,
+ "image_id": 2346765,
+ "entity": "dog",
+ "caption": "neck of dog is white",
+ "question": [
+ "is there neck ?",
+ "is there dog ?"
+ ],
+ "prompt": "neck of {} is white"
+ },
+ {
+ "index": 918,
+ "image_id": 2346434,
+ "entity": "dog",
+ "caption": "the dog's eyes are black",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are black"
+ },
+ {
+ "index": 919,
+ "image_id": 2346434,
+ "entity": "dog",
+ "caption": "black pads and nails are on the dog's paws",
+ "question": [
+ "are there black pads ?",
+ "are there nails ?",
+ "are there the dog's paws ?"
+ ],
+ "prompt": "black pads and nails are on the {}'s paws"
+ },
+ {
+ "index": 920,
+ "image_id": 2346247,
+ "entity": "dog",
+ "caption": "Brown ear on the dog.",
+ "question": [
+ "is there brown ear ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Brown ear on the {}."
+ },
+ {
+ "index": 921,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "the black dog has a sad face",
+ "question": [
+ "is there the black dog ?",
+ "is there a sad face ?"
+ ],
+ "prompt": "the black {} has a sad face"
+ },
+ {
+ "index": 922,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "A dog is near a bag.",
+ "question": [
+ "is there a dog ?",
+ "is there a bag ?"
+ ],
+ "prompt": "A {} is near a bag."
+ },
+ {
+ "index": 923,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog's mouth is closed.",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is closed."
+ },
+ {
+ "index": 924,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog is wearing a crocheted hat.",
+ "question": [
+ "is there the dog ?",
+ "is there a crocheted hat ?"
+ ],
+ "prompt": "The {} is wearing a crocheted hat."
+ },
+ {
+ "index": 925,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog has an ear.",
+ "question": [
+ "is there the dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "The {} has an ear."
+ },
+ {
+ "index": 926,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog has an eye.",
+ "question": [
+ "is there the dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "The {} has an eye."
+ },
+ {
+ "index": 927,
+ "image_id": 2345642,
+ "entity": "dog",
+ "caption": "head of dog bowed down ",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} bowed down "
+ },
+ {
+ "index": 928,
+ "image_id": 2345642,
+ "entity": "dog",
+ "caption": "green blanket the dog is laying on",
+ "question": [
+ "is there green blanket ?",
+ "is there the dog ?"
+ ],
+ "prompt": "green blanket the {} is laying on"
+ },
+ {
+ "index": 929,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "the dogs tail ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s tail "
+ },
+ {
+ "index": 930,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "a black dog looks onward with his tongue hanging out",
+ "question": [
+ "is there a black dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "a black {} looks onward with his tongue hanging out"
+ },
+ {
+ "index": 931,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "a man stands on the boat holding a dog with a leash",
+ "question": [
+ "is there a man ?",
+ "is there the boat ?",
+ "is there a dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "a man stands on the boat holding a {} with a leash"
+ },
+ {
+ "index": 932,
+ "image_id": 2345231,
+ "entity": "dog",
+ "caption": "the dogs paws on on the computer",
+ "question": [
+ "are there the dogs ?",
+ "is there the computer ?"
+ ],
+ "prompt": "the {}s paws on on the computer"
+ },
+ {
+ "index": 933,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "Extra pillow for the dog to be comfortable",
+ "question": [
+ "is there extra pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Extra pillow for the {} to be comfortable"
+ },
+ {
+ "index": 934,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "Teddy bear for the dog",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Teddy bear for the {}"
+ },
+ {
+ "index": 935,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "a dog curled up on its bed ",
+ "question": [
+ "is there a dog ?",
+ "is there its bed ?"
+ ],
+ "prompt": "a {} curled up on its bed "
+ },
+ {
+ "index": 936,
+ "image_id": 2344922,
+ "entity": "dog",
+ "caption": "This dog has a very red collar",
+ "question": [
+ "is there this dog ?",
+ "is there a very red collar ?"
+ ],
+ "prompt": "This {} has a very red collar"
+ },
+ {
+ "index": 937,
+ "image_id": 2344729,
+ "entity": "dog",
+ "caption": "the dog is in the car",
+ "question": [
+ "is there the dog ?",
+ "is there the car ?"
+ ],
+ "prompt": "the {} is in the car"
+ },
+ {
+ "index": 938,
+ "image_id": 2344729,
+ "entity": "dog",
+ "caption": "this is the dogs leash",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "this is the {}s leash"
+ },
+ {
+ "index": 939,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "The dog is wearing a tag.",
+ "question": [
+ "is there the dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "The {} is wearing a tag."
+ },
+ {
+ "index": 940,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "dog is wearing a tag",
+ "question": [
+ "is there dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "{} is wearing a tag"
+ },
+ {
+ "index": 941,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "dogs eye looks white ",
+ "question": [
+ "are there dogs ?"
+ ],
+ "prompt": "{}s eye looks white "
+ },
+ {
+ "index": 942,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs nose is black.",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is black."
+ },
+ {
+ "index": 943,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs nose is small",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is small"
+ },
+ {
+ "index": 944,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs fur is white.",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "The {}s fur is white."
+ },
+ {
+ "index": 945,
+ "image_id": 2344358,
+ "entity": "dog",
+ "caption": "this dog is under a white blanket",
+ "question": [
+ "is there this dog ?",
+ "is there a white blanket ?"
+ ],
+ "prompt": "this {} is under a white blanket"
+ },
+ {
+ "index": 946,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "the dog is at the beach",
+ "question": [
+ "is there the dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "the {} is at the beach"
+ },
+ {
+ "index": 947,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "the dog is sitting on a towel",
+ "question": [
+ "is there the dog ?",
+ "is there a towel ?"
+ ],
+ "prompt": "the {} is sitting on a towel"
+ },
+ {
+ "index": 948,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "a bag is by the dog",
+ "question": [
+ "is there a bag ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a bag is by the {}"
+ },
+ {
+ "index": 949,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "Brown dog is on a towel",
+ "question": [
+ "is there brown dog ?",
+ "is there a towel ?"
+ ],
+ "prompt": "Brown {} is on a towel"
+ },
+ {
+ "index": 950,
+ "image_id": 2344228,
+ "entity": "dog",
+ "caption": "the dog has a brown part",
+ "question": [
+ "is there the dog ?",
+ "is there a brown part ?"
+ ],
+ "prompt": "the {} has a brown part"
+ },
+ {
+ "index": 951,
+ "image_id": 2344228,
+ "entity": "dog",
+ "caption": "the dog has a black spot",
+ "question": [
+ "is there the dog ?",
+ "is there a black spot ?"
+ ],
+ "prompt": "the {} has a black spot"
+ },
+ {
+ "index": 952,
+ "image_id": 2343539,
+ "entity": "dog",
+ "caption": "dog's tongue is hanging out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is hanging out"
+ },
+ {
+ "index": 953,
+ "image_id": 2343539,
+ "entity": "dog",
+ "caption": "dog's ears are back ",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are back "
+ },
+ {
+ "index": 954,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has three balls",
+ "question": [
+ "is there the dog ?",
+ "are there three balls ?"
+ ],
+ "prompt": "the {} has three balls"
+ },
+ {
+ "index": 955,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has balls in his mouth",
+ "question": [
+ "is there the dog ?",
+ "are there balls ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "the {} has balls in his mouth"
+ },
+ {
+ "index": 956,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has a spotted nose",
+ "question": [
+ "is there the dog ?",
+ "is there a spotted nose ?"
+ ],
+ "prompt": "the {} has a spotted nose"
+ },
+ {
+ "index": 957,
+ "image_id": 2343149,
+ "entity": "dog",
+ "caption": "The dog is splashing water",
+ "question": [
+ "is there the dog ?",
+ "is there water ?"
+ ],
+ "prompt": "The {} is splashing water"
+ },
+ {
+ "index": 958,
+ "image_id": 2343149,
+ "entity": "dog",
+ "caption": "The dog's teeth are visible",
+ "question": [
+ "are there the dog's teeth ?"
+ ],
+ "prompt": "The {}'s teeth are visible"
+ },
+ {
+ "index": 959,
+ "image_id": 2343038,
+ "entity": "dog",
+ "caption": "dog with eyes closed",
+ "question": [
+ "is there dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} with eyes closed"
+ },
+ {
+ "index": 960,
+ "image_id": 2342562,
+ "entity": "dog",
+ "caption": "dog mout to grab frisbees and eat food and drink water ",
+ "question": [
+ "is there dog mout ?",
+ "are there frisbees ?",
+ "is there food ?",
+ "is there water ?"
+ ],
+ "prompt": "{} mout to grab frisbees and eat food and drink water "
+ },
+ {
+ "index": 961,
+ "image_id": 2342562,
+ "entity": "dog",
+ "caption": "The dog has a black ear.",
+ "question": [
+ "is there the dog ?",
+ "is there a black ear ?"
+ ],
+ "prompt": "The {} has a black ear."
+ },
+ {
+ "index": 962,
+ "image_id": 2341045,
+ "entity": "dog",
+ "caption": "this dog and teddy bear are posing",
+ "question": [
+ "is there this dog ?",
+ "is there bear ?"
+ ],
+ "prompt": "this {} and teddy bear are posing"
+ },
+ {
+ "index": 963,
+ "image_id": 2341045,
+ "entity": "dog",
+ "caption": "The dog is resting on white shaggy carpet.",
+ "question": [
+ "is there the dog ?",
+ "is there white shaggy carpet ?"
+ ],
+ "prompt": "The {} is resting on white shaggy carpet."
+ },
+ {
+ "index": 964,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The banana is inside the dog's mouth.",
+ "question": [
+ "is there the banana ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The banana is inside the {}'s mouth."
+ },
+ {
+ "index": 965,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The little dog is sitting on top of the white blanket.",
+ "question": [
+ "is there the little dog ?",
+ "is there top ?",
+ "is there the white blanket ?"
+ ],
+ "prompt": "The little {} is sitting on top of the white blanket."
+ },
+ {
+ "index": 966,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The dog has a pink collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a pink collar ?"
+ ],
+ "prompt": "The {} has a pink collar."
+ },
+ {
+ "index": 967,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The dog is wearing a white collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a white collar ?"
+ ],
+ "prompt": "The {} is wearing a white collar."
+ },
+ {
+ "index": 968,
+ "image_id": 2340686,
+ "entity": "dog",
+ "caption": "The dog face is partially white.",
+ "question": [
+ "is there the dog face ?"
+ ],
+ "prompt": "The {} face is partially white."
+ },
+ {
+ "index": 969,
+ "image_id": 2339641,
+ "entity": "dog",
+ "caption": "dog has white spot on chest",
+ "question": [
+ "is there dog ?",
+ "is there white spot ?",
+ "is there chest ?"
+ ],
+ "prompt": "{} has white spot on chest"
+ },
+ {
+ "index": 970,
+ "image_id": 2339641,
+ "entity": "dog",
+ "caption": "dog is on a motorcycle",
+ "question": [
+ "is there dog ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "{} is on a motorcycle"
+ },
+ {
+ "index": 971,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "The dog sits on a chair. ",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "The {} sits on a chair. "
+ },
+ {
+ "index": 972,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "A blanket that the dog sits on.",
+ "question": [
+ "is there a blanket ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A blanket that the {} sits on."
+ },
+ {
+ "index": 973,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "dog has black back",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has black back"
+ },
+ {
+ "index": 974,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "The cat is next to the dog.",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The cat is next to the {}."
+ },
+ {
+ "index": 975,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "The paw on the dog is white.",
+ "question": [
+ "is there the paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The paw on the {} is white."
+ },
+ {
+ "index": 976,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "brown striped cat lays next to dog",
+ "question": [
+ "is there brown striped cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "brown striped cat lays next to {}"
+ },
+ {
+ "index": 977,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "white front left paw on dog",
+ "question": [
+ "is there white front ?",
+ "is there paw ?",
+ "is there dog ?"
+ ],
+ "prompt": "white front left paw on {}"
+ },
+ {
+ "index": 978,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "dog has white fur around nose",
+ "question": [
+ "is there dog ?",
+ "is there white fur ?",
+ "is there nose ?"
+ ],
+ "prompt": "{} has white fur around nose"
+ },
+ {
+ "index": 979,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "dog has white fur around paws",
+ "question": [
+ "is there dog ?",
+ "is there white fur ?",
+ "are there paws ?"
+ ],
+ "prompt": "{} has white fur around paws"
+ },
+ {
+ "index": 980,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has black ear",
+ "question": [
+ "is there dog ?",
+ "is there black ear ?"
+ ],
+ "prompt": "{} has black ear"
+ },
+ {
+ "index": 981,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has black eye",
+ "question": [
+ "is there dog ?",
+ "is there black eye ?"
+ ],
+ "prompt": "{} has black eye"
+ },
+ {
+ "index": 982,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has a white tooth",
+ "question": [
+ "is there dog ?",
+ "is there a white tooth ?"
+ ],
+ "prompt": "{} has a white tooth"
+ },
+ {
+ "index": 983,
+ "image_id": 2337950,
+ "entity": "dog",
+ "caption": "couch man and dog are sitting on",
+ "question": [
+ "is there couch man ?",
+ "is there dog ?"
+ ],
+ "prompt": "couch man and {} are sitting on"
+ },
+ {
+ "index": 984,
+ "image_id": 2337205,
+ "entity": "dog",
+ "caption": "the dog's eye is open ",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is open "
+ },
+ {
+ "index": 985,
+ "image_id": 2336811,
+ "entity": "dog",
+ "caption": "Front left paw of the dog",
+ "question": [
+ "is there front left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Front left paw of the {}"
+ },
+ {
+ "index": 986,
+ "image_id": 2336773,
+ "entity": "dog",
+ "caption": "Small dogs right eye",
+ "question": [
+ "are there small dogs ?"
+ ],
+ "prompt": "Small {}s right eye"
+ },
+ {
+ "index": 987,
+ "image_id": 2336773,
+ "entity": "dog",
+ "caption": "Small dogs left eye",
+ "question": [
+ "are there small dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "Small {}s left eye"
+ },
+ {
+ "index": 988,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog is carrying a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is carrying a frisbee"
+ },
+ {
+ "index": 989,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's front legs are white",
+ "question": [
+ "are there the dog's front legs ?"
+ ],
+ "prompt": "the {}'s front legs are white"
+ },
+ {
+ "index": 990,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's back legs are black",
+ "question": [
+ "are there the dog's back legs ?"
+ ],
+ "prompt": "the {}'s back legs are black"
+ },
+ {
+ "index": 991,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's shadow is in the grass",
+ "question": [
+ "is there the dog's shadow ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {}'s shadow is in the grass"
+ },
+ {
+ "index": 992,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "dog with it's head in a box",
+ "question": [
+ "is there dog ?",
+ "is there head ?",
+ "is there a box ?"
+ ],
+ "prompt": "{} with it's head in a box"
+ },
+ {
+ "index": 993,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "A black streak down dogs back",
+ "question": [
+ "is there a black streak ?"
+ ],
+ "prompt": "A black streak down {}s back"
+ },
+ {
+ "index": 994,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "the dogs head is in the box",
+ "question": [
+ "are there the dogs ?",
+ "is there the box ?"
+ ],
+ "prompt": "the {}s head is in the box"
+ },
+ {
+ "index": 995,
+ "image_id": 2336257,
+ "entity": "dog",
+ "caption": "the dog is in water",
+ "question": [
+ "is there the dog ?",
+ "is there water ?"
+ ],
+ "prompt": "the {} is in water"
+ },
+ {
+ "index": 996,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "Black and white dog standing on a sandy ground.",
+ "question": [
+ "is there black and white dog ?",
+ "is there a sandy ground ?"
+ ],
+ "prompt": "Black and white {} standing on a sandy ground."
+ },
+ {
+ "index": 997,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "The dog's pink tongue sticking out.",
+ "question": [
+ "is there the dog's pink tongue ?"
+ ],
+ "prompt": "The {}'s pink tongue sticking out."
+ },
+ {
+ "index": 998,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's face is black and white",
+ "question": [
+ "is there dog's face ?"
+ ],
+ "prompt": "{}'s face is black and white"
+ },
+ {
+ "index": 999,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's tongue is sticking out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is sticking out"
+ },
+ {
+ "index": 1000,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's paw is white",
+ "question": [
+ "is there dog's paw ?"
+ ],
+ "prompt": "{}'s paw is white"
+ },
+ {
+ "index": 1001,
+ "image_id": 2336045,
+ "entity": "dog",
+ "caption": "fake dog sits on bench",
+ "question": [
+ "is there fake dog ?",
+ "is there bench ?"
+ ],
+ "prompt": "fake {} sits on bench"
+ },
+ {
+ "index": 1002,
+ "image_id": 2336045,
+ "entity": "dog",
+ "caption": "fake dog wears red collar",
+ "question": [
+ "is there fake dog ?",
+ "is there red collar ?"
+ ],
+ "prompt": "fake {} wears red collar"
+ },
+ {
+ "index": 1003,
+ "image_id": 2335892,
+ "entity": "dog",
+ "caption": "Toy occupies leashed dog.",
+ "question": [
+ "is there toy ?",
+ "is there leashed dog ?"
+ ],
+ "prompt": "Toy occupies leashed {}."
+ },
+ {
+ "index": 1004,
+ "image_id": 2335707,
+ "entity": "dog",
+ "caption": "dog has dark claws",
+ "question": [
+ "is there dog ?",
+ "are there dark claws ?"
+ ],
+ "prompt": "{} has dark claws"
+ },
+ {
+ "index": 1005,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "Tan dog is holding toy in mouth.",
+ "question": [
+ "is there tan dog ?",
+ "is there toy ?",
+ "is there mouth ?"
+ ],
+ "prompt": "Tan {} is holding toy in mouth."
+ },
+ {
+ "index": 1006,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "This dog seems to have a white face",
+ "question": [
+ "is there this dog ?",
+ "is there a white face ?"
+ ],
+ "prompt": "This {} seems to have a white face"
+ },
+ {
+ "index": 1007,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "This dog has quite a paw visible here",
+ "question": [
+ "is there this dog ?",
+ "is there quite a paw ?"
+ ],
+ "prompt": "This {} has quite a paw visible here"
+ },
+ {
+ "index": 1008,
+ "image_id": 2335550,
+ "entity": "dog",
+ "caption": "dog is laying on the couch",
+ "question": [
+ "is there dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "{} is laying on the couch"
+ },
+ {
+ "index": 1009,
+ "image_id": 2335550,
+ "entity": "dog",
+ "caption": "dog has fluffy dark fur",
+ "question": [
+ "is there dog ?",
+ "is there fluffy dark fur ?"
+ ],
+ "prompt": "{} has fluffy dark fur"
+ },
+ {
+ "index": 1010,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "an ear is up on the dog",
+ "question": [
+ "is there an ear ?",
+ "is there the dog ?"
+ ],
+ "prompt": "an ear is up on the {}"
+ },
+ {
+ "index": 1011,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "the dog is wearing a yellow coat",
+ "question": [
+ "is there the dog ?",
+ "is there a yellow coat ?"
+ ],
+ "prompt": "the {} is wearing a yellow coat"
+ },
+ {
+ "index": 1012,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "dog's cloth is green",
+ "question": [
+ "is there dog's cloth ?"
+ ],
+ "prompt": "{}'s cloth is green"
+ },
+ {
+ "index": 1013,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "Chain connected to dog's collar.",
+ "question": [
+ "is there chain ?",
+ "is there dog's collar ?"
+ ],
+ "prompt": "Chain connected to {}'s collar."
+ },
+ {
+ "index": 1014,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "the dog has a collar ",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar "
+ },
+ {
+ "index": 1015,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "the collar is around the dog's neck",
+ "question": [
+ "is there the collar ?",
+ "is there the dog's neck ?"
+ ],
+ "prompt": "the collar is around the {}'s neck"
+ },
+ {
+ "index": 1016,
+ "image_id": 2334936,
+ "entity": "dog",
+ "caption": "dog has an eye",
+ "question": [
+ "is there dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "{} has an eye"
+ },
+ {
+ "index": 1017,
+ "image_id": 2334611,
+ "entity": "dog",
+ "caption": "front left foot on dog",
+ "question": [
+ "is there front left foot ?",
+ "is there dog ?"
+ ],
+ "prompt": "front left foot on {}"
+ },
+ {
+ "index": 1018,
+ "image_id": 2334526,
+ "entity": "dog",
+ "caption": "The dog nose is black.",
+ "question": [
+ "is there the dog nose ?"
+ ],
+ "prompt": "The {} nose is black."
+ },
+ {
+ "index": 1019,
+ "image_id": 2334526,
+ "entity": "dog",
+ "caption": "The dog eyes on his face.",
+ "question": [
+ "is there the dog ?",
+ "is there his face ?"
+ ],
+ "prompt": "The {} eyes on his face."
+ },
+ {
+ "index": 1020,
+ "image_id": 2334482,
+ "entity": "dog",
+ "caption": "This is a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "This is a {}"
+ },
+ {
+ "index": 1021,
+ "image_id": 2334482,
+ "entity": "dog",
+ "caption": "The dog is on a bench",
+ "question": [
+ "is there the dog ?",
+ "is there a bench ?"
+ ],
+ "prompt": "The {} is on a bench"
+ },
+ {
+ "index": 1022,
+ "image_id": 2334375,
+ "entity": "dog",
+ "caption": "dog nose is black",
+ "question": [
+ "is there dog nose ?"
+ ],
+ "prompt": "{} nose is black"
+ },
+ {
+ "index": 1023,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left eye is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye is black."
+ },
+ {
+ "index": 1024,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left eye is round.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye is round."
+ },
+ {
+ "index": 1025,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left ear is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "The {}s left ear is black."
+ },
+ {
+ "index": 1026,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs right eye is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there right eye ?"
+ ],
+ "prompt": "The {}s right eye is black."
+ },
+ {
+ "index": 1027,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "The dog is laying on the back of the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the back ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is laying on the back of the couch"
+ },
+ {
+ "index": 1028,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "The dogs tongue is sticking out of his mouth",
+ "question": [
+ "are there the dogs tongue ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {}s tongue is sticking out of his mouth"
+ },
+ {
+ "index": 1029,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has a nose",
+ "question": [
+ "is there dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "{} has a nose"
+ },
+ {
+ "index": 1030,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has an ear",
+ "question": [
+ "is there dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "{} has an ear"
+ },
+ {
+ "index": 1031,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has a tounge",
+ "question": [
+ "is there dog ?",
+ "is there a tounge ?"
+ ],
+ "prompt": "{} has a tounge"
+ },
+ {
+ "index": 1032,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has an arm",
+ "question": [
+ "is there dog ?",
+ "is there an arm ?"
+ ],
+ "prompt": "{} has an arm"
+ },
+ {
+ "index": 1033,
+ "image_id": 2333590,
+ "entity": "dog",
+ "caption": "the dog is smelling her hand",
+ "question": [
+ "is there the dog ?",
+ "is there her hand ?"
+ ],
+ "prompt": "the {} is smelling her hand"
+ },
+ {
+ "index": 1034,
+ "image_id": 2333443,
+ "entity": "dog",
+ "caption": "wet dog taking a bath in a tub",
+ "question": [
+ "is there wet dog ?",
+ "is there a bath ?",
+ "is there a tub ?"
+ ],
+ "prompt": "wet {} taking a bath in a tub"
+ },
+ {
+ "index": 1035,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a brown eye.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown eye ?"
+ ],
+ "prompt": "The {} has a brown eye."
+ },
+ {
+ "index": 1036,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dogs eye is open.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is open."
+ },
+ {
+ "index": 1037,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has teeth.",
+ "question": [
+ "is there the dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "The {} has teeth."
+ },
+ {
+ "index": 1038,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a tongue.",
+ "question": [
+ "is there the dog ?",
+ "is there a tongue ?"
+ ],
+ "prompt": "The {} has a tongue."
+ },
+ {
+ "index": 1039,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "The {} has a red collar"
+ },
+ {
+ "index": 1040,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog with its ears bag",
+ "question": [
+ "is there dog ?",
+ "are there its ears ?"
+ ],
+ "prompt": "{} with its ears bag"
+ },
+ {
+ "index": 1041,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog mouth open",
+ "question": [],
+ "prompt": "{} mouth open"
+ },
+ {
+ "index": 1042,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog has black and white paws",
+ "question": [
+ "is there dog ?",
+ "are there black and white paws ?"
+ ],
+ "prompt": "{} has black and white paws"
+ },
+ {
+ "index": 1043,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog's mouth is open with tounge out",
+ "question": [
+ "is there dog's mouth ?",
+ "is there tounge ?"
+ ],
+ "prompt": "{}'s mouth is open with tounge out"
+ },
+ {
+ "index": 1044,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog has its mouth open.",
+ "question": [
+ "is there the dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has its mouth open."
+ },
+ {
+ "index": 1045,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog's ear is standing straight up.",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is standing straight up."
+ },
+ {
+ "index": 1046,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog's left back leg.",
+ "question": [
+ "is there the dog ?",
+ "is there leg ?"
+ ],
+ "prompt": "the {}'s left back leg."
+ },
+ {
+ "index": 1047,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "dog mouth wide open ",
+ "question": [],
+ "prompt": "{} mouth wide open "
+ },
+ {
+ "index": 1048,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "dog's tongue is pink.",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is pink."
+ },
+ {
+ "index": 1049,
+ "image_id": 2332835,
+ "entity": "dog",
+ "caption": "The dogs tongue is pink.",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "The {}s tongue is pink."
+ },
+ {
+ "index": 1050,
+ "image_id": 2332835,
+ "entity": "dog",
+ "caption": "The dogs right eye is round.",
+ "question": [
+ "are there the dogs ?",
+ "is there right eye ?"
+ ],
+ "prompt": "The {}s right eye is round."
+ },
+ {
+ "index": 1051,
+ "image_id": 2332607,
+ "entity": "dog",
+ "caption": "dog's eyes looking at camera",
+ "question": [
+ "are there dog's eyes ?",
+ "is there camera ?"
+ ],
+ "prompt": "{}'s eyes looking at camera"
+ },
+ {
+ "index": 1052,
+ "image_id": 2332583,
+ "entity": "dog",
+ "caption": "dog has brown tail",
+ "question": [
+ "is there dog ?",
+ "is there brown tail ?"
+ ],
+ "prompt": "{} has brown tail"
+ },
+ {
+ "index": 1053,
+ "image_id": 2332583,
+ "entity": "dog",
+ "caption": "dog has brown back",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has brown back"
+ },
+ {
+ "index": 1054,
+ "image_id": 2332513,
+ "entity": "dog",
+ "caption": "two dogs are lying ",
+ "question": [
+ "are there two dogs ?"
+ ],
+ "prompt": "two {}s are lying "
+ },
+ {
+ "index": 1055,
+ "image_id": 2332513,
+ "entity": "dog",
+ "caption": "this dog's head is up ",
+ "question": [
+ "is there this dog's head ?"
+ ],
+ "prompt": "this {}'s head is up "
+ },
+ {
+ "index": 1056,
+ "image_id": 2332418,
+ "entity": "dog",
+ "caption": "dog has white ears",
+ "question": [
+ "is there dog ?",
+ "are there white ears ?"
+ ],
+ "prompt": "{} has white ears"
+ },
+ {
+ "index": 1057,
+ "image_id": 2331647,
+ "entity": "dog",
+ "caption": "The hat the dog is wearing.",
+ "question": [
+ "is there the hat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The hat the {} is wearing."
+ },
+ {
+ "index": 1058,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog tongue is pink.",
+ "question": [
+ "is there the dog tongue ?"
+ ],
+ "prompt": "The {} tongue is pink."
+ },
+ {
+ "index": 1059,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog is licking his tongue out.",
+ "question": [
+ "is there the dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "The {} is licking his tongue out."
+ },
+ {
+ "index": 1060,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The frisbee is near the dog leg.",
+ "question": [
+ "is there the dog leg ?"
+ ],
+ "prompt": "The frisbee is near the {} leg."
+ },
+ {
+ "index": 1061,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog is playing with the frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is playing with the frisbee"
+ },
+ {
+ "index": 1062,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The Frisbee is in front of the dog. ",
+ "question": [
+ "is there the frisbee ?",
+ "is there front ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The Frisbee is in front of the {}. "
+ },
+ {
+ "index": 1063,
+ "image_id": 2331395,
+ "entity": "dog",
+ "caption": "The front left paw of the dog.",
+ "question": [
+ "is there the front left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The front left paw of the {}."
+ },
+ {
+ "index": 1064,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has long nose",
+ "question": [
+ "is there dog ?",
+ "is there long nose ?"
+ ],
+ "prompt": "{} has long nose"
+ },
+ {
+ "index": 1065,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has nice coat",
+ "question": [
+ "is there dog ?",
+ "is there nice coat ?"
+ ],
+ "prompt": "{} has nice coat"
+ },
+ {
+ "index": 1066,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has big ear",
+ "question": [
+ "is there dog ?",
+ "is there big ear ?"
+ ],
+ "prompt": "{} has big ear"
+ },
+ {
+ "index": 1067,
+ "image_id": 2329335,
+ "entity": "dog",
+ "caption": "dog has brown paws",
+ "question": [
+ "is there dog ?",
+ "are there brown paws ?"
+ ],
+ "prompt": "{} has brown paws"
+ },
+ {
+ "index": 1068,
+ "image_id": 2329309,
+ "entity": "dog",
+ "caption": "brown white and black dog catching yellow Frisbee",
+ "question": [
+ "is there brown white and black dog ?",
+ "is there yellow frisbee ?"
+ ],
+ "prompt": "brown white and black {} catching yellow Frisbee"
+ },
+ {
+ "index": 1069,
+ "image_id": 2329309,
+ "entity": "dog",
+ "caption": "Frisbee caught by black and brown dog",
+ "question": [
+ "is there black and brown dog ?"
+ ],
+ "prompt": "Frisbee caught by black and brown {}"
+ },
+ {
+ "index": 1070,
+ "image_id": 2329275,
+ "entity": "dog",
+ "caption": "the dog is lying on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is lying on the couch"
+ },
+ {
+ "index": 1071,
+ "image_id": 2329129,
+ "entity": "dog",
+ "caption": "the dog is eating a cake",
+ "question": [
+ "is there the dog ?",
+ "is there a cake ?"
+ ],
+ "prompt": "the {} is eating a cake"
+ },
+ {
+ "index": 1072,
+ "image_id": 2328916,
+ "entity": "dog",
+ "caption": "The dog is sniffing the donut",
+ "question": [
+ "is there the dog ?",
+ "is there the donut ?"
+ ],
+ "prompt": "The {} is sniffing the donut"
+ },
+ {
+ "index": 1073,
+ "image_id": 2328916,
+ "entity": "dog",
+ "caption": "bulldog sniffing a doughnut ",
+ "question": [
+ "is there a doughnut ?"
+ ],
+ "prompt": "bull{} sniffing a doughnut "
+ },
+ {
+ "index": 1074,
+ "image_id": 2328869,
+ "entity": "dog",
+ "caption": "black hat dog is wearing",
+ "question": [
+ "is there black hat dog ?"
+ ],
+ "prompt": "black hat {} is wearing"
+ },
+ {
+ "index": 1075,
+ "image_id": 2328633,
+ "entity": "dog",
+ "caption": "a dog with black spots on it's ear",
+ "question": [
+ "is there a dog ?",
+ "are there black spots ?",
+ "is there ear ?"
+ ],
+ "prompt": "a {} with black spots on it's ear"
+ },
+ {
+ "index": 1076,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog is in a car ",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "the {} is in a car "
+ },
+ {
+ "index": 1077,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog is sticking its head out ",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?"
+ ],
+ "prompt": "the {} is sticking its head out "
+ },
+ {
+ "index": 1078,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog has its head out the window ",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} has its head out the window "
+ },
+ {
+ "index": 1079,
+ "image_id": 2327286,
+ "entity": "dog",
+ "caption": "the dogs eyes are closed",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are closed"
+ },
+ {
+ "index": 1080,
+ "image_id": 2326860,
+ "entity": "dog",
+ "caption": "The dog has a frisbee inside his mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} has a frisbee inside his mouth."
+ },
+ {
+ "index": 1081,
+ "image_id": 2326801,
+ "entity": "dog",
+ "caption": "A blue duffel bag a dog is on.",
+ "question": [
+ "is there a blue duffel bag ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A blue duffel bag a {} is on."
+ },
+ {
+ "index": 1082,
+ "image_id": 2325767,
+ "entity": "dog",
+ "caption": "A person is holding the dog",
+ "question": [
+ "is there a person ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A person is holding the {}"
+ },
+ {
+ "index": 1083,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's mouth is open",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is open"
+ },
+ {
+ "index": 1084,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's nose is black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black"
+ },
+ {
+ "index": 1085,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's eyes are open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open"
+ },
+ {
+ "index": 1086,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "dog has a black nose ",
+ "question": [
+ "is there dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "{} has a black nose "
+ },
+ {
+ "index": 1087,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dog has brown eye",
+ "question": [
+ "is there the dog ?",
+ "is there brown eye ?"
+ ],
+ "prompt": "the {} has brown eye"
+ },
+ {
+ "index": 1088,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dogs left eye ",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {}s left eye "
+ },
+ {
+ "index": 1089,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dogs left ear ",
+ "question": [
+ "are there the dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "the {}s left ear "
+ },
+ {
+ "index": 1090,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "dog has orange eyes",
+ "question": [
+ "is there dog ?",
+ "are there orange eyes ?"
+ ],
+ "prompt": "{} has orange eyes"
+ },
+ {
+ "index": 1091,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "brown dog has golden eyes",
+ "question": [
+ "is there brown dog ?",
+ "are there golden eyes ?"
+ ],
+ "prompt": "brown {} has golden eyes"
+ },
+ {
+ "index": 1092,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has brown eyes",
+ "question": [
+ "is there black dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "black {} has brown eyes"
+ },
+ {
+ "index": 1093,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has a black nose",
+ "question": [
+ "is there black dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "black {} has a black nose"
+ },
+ {
+ "index": 1094,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has some white hair in its ruff",
+ "question": [
+ "is there black dog ?",
+ "is there some white hair ?",
+ "is there its ruff ?"
+ ],
+ "prompt": "black {} has some white hair in its ruff"
+ },
+ {
+ "index": 1095,
+ "image_id": 2325500,
+ "entity": "dog",
+ "caption": "eyes of dog open wide",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} open wide"
+ },
+ {
+ "index": 1096,
+ "image_id": 2325500,
+ "entity": "dog",
+ "caption": "the dog has a safety vest",
+ "question": [
+ "is there the dog ?",
+ "is there a safety vest ?"
+ ],
+ "prompt": "the {} has a safety vest"
+ },
+ {
+ "index": 1097,
+ "image_id": 2325442,
+ "entity": "dog",
+ "caption": "dog's ears are pink",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are pink"
+ },
+ {
+ "index": 1098,
+ "image_id": 2325387,
+ "entity": "dog",
+ "caption": "Woman laying on the floor next to dog.",
+ "question": [
+ "is there woman ?",
+ "is there the floor ?",
+ "is there dog ?"
+ ],
+ "prompt": "Woman laying on the floor next to {}."
+ },
+ {
+ "index": 1099,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog has black patch over eye.",
+ "question": [
+ "is there the dog ?",
+ "is there black patch ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {} has black patch over eye."
+ },
+ {
+ "index": 1100,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog is carrying a blue frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there a blue frisbee ?"
+ ],
+ "prompt": "The {} is carrying a blue frisbee."
+ },
+ {
+ "index": 1101,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog has a nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "The {} has a nose."
+ },
+ {
+ "index": 1102,
+ "image_id": 2323880,
+ "entity": "dog",
+ "caption": "dog is in picture",
+ "question": [
+ "is there dog ?",
+ "is there picture ?"
+ ],
+ "prompt": "{} is in picture"
+ },
+ {
+ "index": 1103,
+ "image_id": 2323470,
+ "entity": "dog",
+ "caption": "the dog is laying in a green towel",
+ "question": [
+ "is there the dog ?",
+ "is there a green towel ?"
+ ],
+ "prompt": "the {} is laying in a green towel"
+ },
+ {
+ "index": 1104,
+ "image_id": 2322848,
+ "entity": "dog",
+ "caption": "the cat and the dog are good friends",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?",
+ "are there good friends ?"
+ ],
+ "prompt": "the cat and the {} are good friends"
+ },
+ {
+ "index": 1105,
+ "image_id": 2322848,
+ "entity": "dog",
+ "caption": "this cat and this dog are obviously best friends",
+ "question": [
+ "is there this cat ?",
+ "is there this dog ?",
+ "are there best friends ?"
+ ],
+ "prompt": "this cat and this {} are obviously best friends"
+ },
+ {
+ "index": 1106,
+ "image_id": 2322792,
+ "entity": "dog",
+ "caption": "extended wet dog ear ",
+ "question": [
+ "is there extended wet dog ear ?"
+ ],
+ "prompt": "extended wet {} ear "
+ },
+ {
+ "index": 1107,
+ "image_id": 2322792,
+ "entity": "dog",
+ "caption": "dog ear flipping up",
+ "question": [
+ "is there dog ear ?"
+ ],
+ "prompt": "{} ear flipping up"
+ },
+ {
+ "index": 1108,
+ "image_id": 2322492,
+ "entity": "dog",
+ "caption": "Pile of clothes a small dog is lying on",
+ "question": [
+ "is there pile ?",
+ "are there clothes ?",
+ "is there a small dog ?"
+ ],
+ "prompt": "Pile of clothes a small {} is lying on"
+ },
+ {
+ "index": 1109,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "a dog is lying in the bed",
+ "question": [
+ "is there a dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "a {} is lying in the bed"
+ },
+ {
+ "index": 1110,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dog is under the sheet",
+ "question": [
+ "is there the dog ?",
+ "is there the sheet ?"
+ ],
+ "prompt": "the {} is under the sheet"
+ },
+ {
+ "index": 1111,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dogs ears are brown",
+ "question": [
+ "are there the dogs ears ?"
+ ],
+ "prompt": "the {}s ears are brown"
+ },
+ {
+ "index": 1112,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dogs front legs are white",
+ "question": [
+ "are there the dogs ?",
+ "are there front legs ?"
+ ],
+ "prompt": "the {}s front legs are white"
+ },
+ {
+ "index": 1113,
+ "image_id": 2322086,
+ "entity": "dog",
+ "caption": "the dog has white spots",
+ "question": [
+ "is there the dog ?",
+ "are there white spots ?"
+ ],
+ "prompt": "the {} has white spots"
+ },
+ {
+ "index": 1114,
+ "image_id": 2321901,
+ "entity": "dog",
+ "caption": "the dog is laying on a pillow ",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "the {} is laying on a pillow "
+ },
+ {
+ "index": 1115,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "A silver chain is around the dog's neck.",
+ "question": [
+ "is there a silver chain ?",
+ "is there the dog's neck ?"
+ ],
+ "prompt": "A silver chain is around the {}'s neck."
+ },
+ {
+ "index": 1116,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "The dog's left ear is black and brown. ",
+ "question": [
+ "is there the dog's left ear ?"
+ ],
+ "prompt": "The {}'s left ear is black and brown. "
+ },
+ {
+ "index": 1117,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "The dog's right ear is black and brown. ",
+ "question": [
+ "is there the dog's right ear ?"
+ ],
+ "prompt": "The {}'s right ear is black and brown. "
+ },
+ {
+ "index": 1118,
+ "image_id": 2321386,
+ "entity": "dog",
+ "caption": "the dog has a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} has a chain"
+ },
+ {
+ "index": 1119,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "the dog has a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} has a frisbee"
+ },
+ {
+ "index": 1120,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "the dog has the frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "the {} has the frisbee"
+ },
+ {
+ "index": 1121,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "teh dog has brown eyes",
+ "question": [
+ "are there brown eyes ?"
+ ],
+ "prompt": "teh {} has brown eyes"
+ },
+ {
+ "index": 1122,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "dog has frisbee in his mouth",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has frisbee in his mouth"
+ },
+ {
+ "index": 1123,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "dog in mouth is pink",
+ "question": [
+ "is there dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} in mouth is pink"
+ },
+ {
+ "index": 1124,
+ "image_id": 2319884,
+ "entity": "dog",
+ "caption": "dog is eating a vitamin water",
+ "question": [
+ "is there dog ?",
+ "is there a vitamin water ?"
+ ],
+ "prompt": "{} is eating a vitamin water"
+ },
+ {
+ "index": 1125,
+ "image_id": 2319723,
+ "entity": "dog",
+ "caption": "the dog is kissing the cat",
+ "question": [
+ "is there the dog ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is kissing the cat"
+ },
+ {
+ "index": 1126,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is wearing a shirt",
+ "question": [
+ "is there the dog ?",
+ "is there a shirt ?"
+ ],
+ "prompt": "The {} is wearing a shirt"
+ },
+ {
+ "index": 1127,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog has on a nice shirt",
+ "question": [
+ "is there the dog ?",
+ "is there a nice shirt ?"
+ ],
+ "prompt": "The {} has on a nice shirt"
+ },
+ {
+ "index": 1128,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog has very long hair",
+ "question": [
+ "is there the dog ?",
+ "is there very long hair ?"
+ ],
+ "prompt": "The {} has very long hair"
+ },
+ {
+ "index": 1129,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is having a great time",
+ "question": [
+ "is there the dog ?",
+ "is there a great time ?"
+ ],
+ "prompt": "The {} is having a great time"
+ },
+ {
+ "index": 1130,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is out in the daytime",
+ "question": [
+ "is there the dog ?",
+ "is there the daytime ?"
+ ],
+ "prompt": "The {} is out in the daytime"
+ },
+ {
+ "index": 1131,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is enjoying the day",
+ "question": [
+ "is there the dog ?",
+ "is there the day ?"
+ ],
+ "prompt": "The {} is enjoying the day"
+ },
+ {
+ "index": 1132,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is wearing a shirt",
+ "question": [
+ "is there a dog ?",
+ "is there a shirt ?"
+ ],
+ "prompt": "A {} is wearing a shirt"
+ },
+ {
+ "index": 1133,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog has on a visor",
+ "question": [
+ "is there a dog ?",
+ "is there a visor ?"
+ ],
+ "prompt": "A {} has on a visor"
+ },
+ {
+ "index": 1134,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog has white curly hair",
+ "question": [
+ "is there a dog ?",
+ "is there white curly hair ?"
+ ],
+ "prompt": "A {} has white curly hair"
+ },
+ {
+ "index": 1135,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is sticking its tongue out",
+ "question": [
+ "is there a dog ?",
+ "is there its tongue ?"
+ ],
+ "prompt": "A {} is sticking its tongue out"
+ },
+ {
+ "index": 1136,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is with its master",
+ "question": [
+ "is there a dog ?",
+ "is there its master ?"
+ ],
+ "prompt": "A {} is with its master"
+ },
+ {
+ "index": 1137,
+ "image_id": 2318892,
+ "entity": "dog",
+ "caption": "The dog has black fur",
+ "question": [
+ "is there the dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "The {} has black fur"
+ },
+ {
+ "index": 1138,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "brown dog curled up with head on blanket",
+ "question": [
+ "is there brown dog ?",
+ "is there head ?",
+ "is there blanket ?"
+ ],
+ "prompt": "brown {} curled up with head on blanket"
+ },
+ {
+ "index": 1139,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "brown dog cuddled with toy with paw on bunny",
+ "question": [
+ "is there brown dog ?",
+ "is there toy ?",
+ "is there paw ?",
+ "is there bunny ?"
+ ],
+ "prompt": "brown {} cuddled with toy with paw on bunny"
+ },
+ {
+ "index": 1140,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "a dog is in bed",
+ "question": [
+ "is there a dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "a {} is in bed"
+ },
+ {
+ "index": 1141,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "the dog is holding a doll",
+ "question": [
+ "is there the dog ?",
+ "is there a doll ?"
+ ],
+ "prompt": "the {} is holding a doll"
+ },
+ {
+ "index": 1142,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "another doll lies close to the dog",
+ "question": [
+ "is there another doll ?",
+ "is there the dog ?"
+ ],
+ "prompt": "another doll lies close to the {}"
+ },
+ {
+ "index": 1143,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "dog eyes are open",
+ "question": [
+ "are there dog eyes ?"
+ ],
+ "prompt": "{} eyes are open"
+ },
+ {
+ "index": 1144,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "the dog's paw is on the toy",
+ "question": [
+ "is there the dog's paw ?",
+ "is there the toy ?"
+ ],
+ "prompt": "the {}'s paw is on the toy"
+ },
+ {
+ "index": 1145,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "dog holding white stuffed bunny",
+ "question": [
+ "is there white stuffed bunny ?"
+ ],
+ "prompt": "{} holding white stuffed bunny"
+ },
+ {
+ "index": 1146,
+ "image_id": 2318152,
+ "entity": "dog",
+ "caption": "Mulch dog is standing on",
+ "question": [
+ "is there mulch dog ?"
+ ],
+ "prompt": "Mulch {} is standing on"
+ },
+ {
+ "index": 1147,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "Brown leash on a dog",
+ "question": [
+ "is there brown leash ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Brown leash on a {}"
+ },
+ {
+ "index": 1148,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "A person on a skateboard walking their dog",
+ "question": [
+ "is there a person ?",
+ "is there a skateboard ?",
+ "is there their dog ?"
+ ],
+ "prompt": "A person on a skateboard walking their {}"
+ },
+ {
+ "index": 1149,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "person walking the dog",
+ "question": [
+ "is there person ?",
+ "is there the dog ?"
+ ],
+ "prompt": "person walking the {}"
+ },
+ {
+ "index": 1150,
+ "image_id": 2317836,
+ "entity": "dog",
+ "caption": "the dog is in costume",
+ "question": [
+ "is there the dog ?",
+ "is there costume ?"
+ ],
+ "prompt": "the {} is in costume"
+ },
+ {
+ "index": 1151,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "dog paws are tan",
+ "question": [
+ "are there dog paws ?",
+ "is there tan ?"
+ ],
+ "prompt": "{} paws are tan"
+ },
+ {
+ "index": 1152,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "dog has mouth open",
+ "question": [
+ "is there dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} has mouth open"
+ },
+ {
+ "index": 1153,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "The dog is in a car.",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "The {} is in a car."
+ },
+ {
+ "index": 1154,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "The dog's eyes are open.",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open."
+ },
+ {
+ "index": 1155,
+ "image_id": 2317002,
+ "entity": "dog",
+ "caption": "black whiskers are on the dog",
+ "question": [
+ "are there black whiskers ?",
+ "is there the dog ?"
+ ],
+ "prompt": "black whiskers are on the {}"
+ },
+ {
+ "index": 1156,
+ "image_id": 2317002,
+ "entity": "dog",
+ "caption": "brown nails are on the dog",
+ "question": [
+ "are there brown nails ?",
+ "is there the dog ?"
+ ],
+ "prompt": "brown nails are on the {}"
+ },
+ {
+ "index": 1157,
+ "image_id": 2316886,
+ "entity": "dog",
+ "caption": "the dog appears to be enjoying his snack",
+ "question": [
+ "is there the dog ?",
+ "is there his snack ?"
+ ],
+ "prompt": "the {} appears to be enjoying his snack"
+ },
+ {
+ "index": 1158,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "nose of dog is black ",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is black "
+ },
+ {
+ "index": 1159,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "dog sits on couch",
+ "question": [
+ "is there dog ?",
+ "is there couch ?"
+ ],
+ "prompt": "{} sits on couch"
+ },
+ {
+ "index": 1160,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "dog has pink dress",
+ "question": [
+ "is there dog ?",
+ "is there pink dress ?"
+ ],
+ "prompt": "{} has pink dress"
+ },
+ {
+ "index": 1161,
+ "image_id": 2316349,
+ "entity": "dog",
+ "caption": "dog ear on right",
+ "question": [
+ "is there dog ear ?"
+ ],
+ "prompt": "{} ear on right"
+ },
+ {
+ "index": 1162,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "a dog rests on a person",
+ "question": [
+ "is there a dog ?",
+ "is there a person ?"
+ ],
+ "prompt": "a {} rests on a person"
+ },
+ {
+ "index": 1163,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The dog is wearing a hat.",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "The {} is wearing a hat."
+ },
+ {
+ "index": 1164,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The hat is on the dog's head.",
+ "question": [
+ "is there the hat ?",
+ "is there the dog's head ?"
+ ],
+ "prompt": "The hat is on the {}'s head."
+ },
+ {
+ "index": 1165,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The dog has whiskers.",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "The {} has whiskers."
+ },
+ {
+ "index": 1166,
+ "image_id": 2316170,
+ "entity": "dog",
+ "caption": "small dog with eyes closed",
+ "question": [
+ "is there small dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "small {} with eyes closed"
+ },
+ {
+ "index": 1167,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs nose is black in color. ",
+ "question": [
+ "are there the dogs nose ?",
+ "is there color ?"
+ ],
+ "prompt": "The {}s nose is black in color. "
+ },
+ {
+ "index": 1168,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dog has a black nose. ",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose. "
+ },
+ {
+ "index": 1169,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs eye is brown.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is brown."
+ },
+ {
+ "index": 1170,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs ear is black. ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear is black. "
+ },
+ {
+ "index": 1171,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "dog has a leg",
+ "question": [
+ "is there dog ?",
+ "is there a leg ?"
+ ],
+ "prompt": "{} has a leg"
+ },
+ {
+ "index": 1172,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "the dog carries a green frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a green frisbee ?"
+ ],
+ "prompt": "the {} carries a green frisbee"
+ },
+ {
+ "index": 1173,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "the dog's collar is green",
+ "question": [
+ "is there the dog's collar ?"
+ ],
+ "prompt": "the {}'s collar is green"
+ },
+ {
+ "index": 1174,
+ "image_id": 2315447,
+ "entity": "dog",
+ "caption": "A dogs left black eye. ",
+ "question": [
+ "are there a dogs ?",
+ "is there black eye ?"
+ ],
+ "prompt": "A {}s left black eye. "
+ },
+ {
+ "index": 1175,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The 2 dogs lay on the bed together",
+ "question": [
+ "are there the 2 dogs ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The 2 {}s lay on the bed together"
+ },
+ {
+ "index": 1176,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dog is laying on the other dog",
+ "question": [
+ "is there the dog ?",
+ "is there the other dog ?"
+ ],
+ "prompt": "The {} is laying on the other {}"
+ },
+ {
+ "index": 1177,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dogs are on the comfortable looking bed",
+ "question": [
+ "are there the dogs ?",
+ "is there the comfortable looking bed ?"
+ ],
+ "prompt": "The {}s are on the comfortable looking bed"
+ },
+ {
+ "index": 1178,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dog has a blue collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "The {} has a blue collar"
+ },
+ {
+ "index": 1179,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "Brown dogs left eye.",
+ "question": [
+ "are there brown dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "Brown {}s left eye."
+ },
+ {
+ "index": 1180,
+ "image_id": 2414390,
+ "entity": "dog",
+ "caption": "the dog is playing with a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is playing with a frisbee"
+ },
+ {
+ "index": 1181,
+ "image_id": 2414390,
+ "entity": "dog",
+ "caption": "the dog has brown ears",
+ "question": [
+ "is there the dog ?",
+ "are there brown ears ?"
+ ],
+ "prompt": "the {} has brown ears"
+ },
+ {
+ "index": 1182,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "A dog is in the picture.",
+ "question": [
+ "is there a dog ?",
+ "is there the picture ?"
+ ],
+ "prompt": "A {} is in the picture."
+ },
+ {
+ "index": 1183,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog has on a black collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a black collar ?"
+ ],
+ "prompt": "The {} has on a black collar."
+ },
+ {
+ "index": 1184,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog is standing in the sand.",
+ "question": [
+ "is there the dog ?",
+ "is there the sand ?"
+ ],
+ "prompt": "The {} is standing in the sand."
+ },
+ {
+ "index": 1185,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog is staring at his master.",
+ "question": [
+ "is there the dog ?",
+ "is there his master ?"
+ ],
+ "prompt": "The {} is staring at his master."
+ },
+ {
+ "index": 1186,
+ "image_id": 2412940,
+ "entity": "dog",
+ "caption": "Sun light over the body of dogs",
+ "question": [
+ "is there sun light ?",
+ "is there the body ?",
+ "are there dogs ?"
+ ],
+ "prompt": "Sun light over the body of {}s"
+ },
+ {
+ "index": 1187,
+ "image_id": 2412940,
+ "entity": "dog",
+ "caption": "the dogs eyes are wide apart",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are wide apart"
+ },
+ {
+ "index": 1188,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog is resting on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is resting on a blanket"
+ },
+ {
+ "index": 1189,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has his ears bent",
+ "question": [
+ "is there the dog ?",
+ "are there his ears ?"
+ ],
+ "prompt": "the {} has his ears bent"
+ },
+ {
+ "index": 1190,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has pretty blue eyes",
+ "question": [
+ "is there the dog ?",
+ "are there pretty blue eyes ?"
+ ],
+ "prompt": "the {} has pretty blue eyes"
+ },
+ {
+ "index": 1191,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has brown feet",
+ "question": [
+ "is there the dog ?",
+ "are there brown feet ?"
+ ],
+ "prompt": "the {} has brown feet"
+ },
+ {
+ "index": 1192,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog is sitting on blankets",
+ "question": [
+ "is there the dog ?",
+ "are there blankets ?"
+ ],
+ "prompt": "The {} is sitting on blankets"
+ },
+ {
+ "index": 1193,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has 2 ears",
+ "question": [
+ "is there the dog ?",
+ "are there 2 ears ?"
+ ],
+ "prompt": "The {} has 2 ears"
+ },
+ {
+ "index": 1194,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has a tail",
+ "question": [
+ "is there the dog ?",
+ "is there a tail ?"
+ ],
+ "prompt": "The {} has a tail"
+ },
+ {
+ "index": 1195,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog's eyes are blue",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are blue"
+ },
+ {
+ "index": 1196,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has 4 paws",
+ "question": [
+ "is there the dog ?",
+ "are there 4 paws ?"
+ ],
+ "prompt": "The {} has 4 paws"
+ },
+ {
+ "index": 1197,
+ "image_id": 2412430,
+ "entity": "dog",
+ "caption": "A dog is laying down on a couch.",
+ "question": [
+ "is there a dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "A {} is laying down on a couch."
+ },
+ {
+ "index": 1198,
+ "image_id": 2412430,
+ "entity": "dog",
+ "caption": "The dog's nose is black in color.",
+ "question": [
+ "is there the dog's nose ?",
+ "is there color ?"
+ ],
+ "prompt": "The {}'s nose is black in color."
+ },
+ {
+ "index": 1199,
+ "image_id": 2412382,
+ "entity": "dog",
+ "caption": "the dogs are on the seat",
+ "question": [
+ "are there the dogs ?",
+ "is there the seat ?"
+ ],
+ "prompt": "the {}s are on the seat"
+ },
+ {
+ "index": 1200,
+ "image_id": 2412382,
+ "entity": "dog",
+ "caption": "the dogs eyes are black",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are black"
+ },
+ {
+ "index": 1201,
+ "image_id": 2412215,
+ "entity": "dog",
+ "caption": "The white sheet the dog's paw and mouth is resting on.",
+ "question": [
+ "is there the dog's paw ?",
+ "is there mouth ?"
+ ],
+ "prompt": "The white sheet the {}'s paw and mouth is resting on."
+ },
+ {
+ "index": 1202,
+ "image_id": 2412215,
+ "entity": "dog",
+ "caption": "The black dog's head resting on the bed.",
+ "question": [
+ "is there the black dog's head ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The black {}'s head resting on the bed."
+ },
+ {
+ "index": 1203,
+ "image_id": 2411734,
+ "entity": "dog",
+ "caption": "A dog with a white nose looks at a birthday cupcake",
+ "question": [
+ "is there a dog ?",
+ "is there a white nose ?",
+ "is there a birthday cupcake ?"
+ ],
+ "prompt": "A {} with a white nose looks at a birthday cupcake"
+ },
+ {
+ "index": 1204,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "White mouse and cat sitting on dog.",
+ "question": [
+ "is there cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "White mouse and cat sitting on {}."
+ },
+ {
+ "index": 1205,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "cat is on a dogs back",
+ "question": [
+ "is there cat ?",
+ "are there a dogs ?"
+ ],
+ "prompt": "cat is on a {}s back"
+ },
+ {
+ "index": 1206,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "dog is walking on sidewalk",
+ "question": [
+ "is there dog ?",
+ "is there sidewalk ?"
+ ],
+ "prompt": "{} is walking on sidewalk"
+ },
+ {
+ "index": 1207,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "dog is wearing a brown vest",
+ "question": [
+ "is there dog ?",
+ "is there a brown vest ?"
+ ],
+ "prompt": "{} is wearing a brown vest"
+ },
+ {
+ "index": 1208,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "a cat is on the dog's back",
+ "question": [
+ "is there a cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a cat is on the {}'s back"
+ },
+ {
+ "index": 1209,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "a cat and a mouse are both on a dog",
+ "question": [
+ "is there a cat ?",
+ "is there a mouse ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a cat and a mouse are both on a {}"
+ },
+ {
+ "index": 1210,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "the dog is wearing a vest",
+ "question": [
+ "is there the dog ?",
+ "is there a vest ?"
+ ],
+ "prompt": "the {} is wearing a vest"
+ },
+ {
+ "index": 1211,
+ "image_id": 2415243,
+ "entity": "dog",
+ "caption": "a dog lays on a television remote",
+ "question": [
+ "is there a dog ?",
+ "is there a television remote ?"
+ ],
+ "prompt": "a {} lays on a television remote"
+ },
+ {
+ "index": 1212,
+ "image_id": 2415243,
+ "entity": "dog",
+ "caption": "dog takes a nap on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a nap ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} takes a nap on a couch"
+ },
+ {
+ "index": 1213,
+ "image_id": 2415532,
+ "entity": "dog",
+ "caption": "Elbow on the far arm washing the dog.",
+ "question": [
+ "is there the far arm ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Elbow on the far arm washing the {}."
+ },
+ {
+ "index": 1214,
+ "image_id": 2416178,
+ "entity": "dog",
+ "caption": "the dogs left eye",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {}s left eye"
+ },
+ {
+ "index": 1215,
+ "image_id": 2416388,
+ "entity": "dog",
+ "caption": "pink bow the dog is wearing",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "pink bow the {} is wearing"
+ },
+ {
+ "index": 1216,
+ "image_id": 2416388,
+ "entity": "dog",
+ "caption": "dog getting teeth brushed",
+ "question": [
+ "is there dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "{} getting teeth brushed"
+ },
+ {
+ "index": 1217,
+ "image_id": 2416731,
+ "entity": "dog",
+ "caption": "the dog has black hair",
+ "question": [
+ "is there the dog ?",
+ "is there black hair ?"
+ ],
+ "prompt": "the {} has black hair"
+ },
+ {
+ "index": 1218,
+ "image_id": 2416731,
+ "entity": "dog",
+ "caption": "the dog has pointy teeth",
+ "question": [
+ "is there the dog ?",
+ "are there pointy teeth ?"
+ ],
+ "prompt": "the {} has pointy teeth"
+ },
+ {
+ "index": 1219,
+ "image_id": 2416944,
+ "entity": "dog",
+ "caption": "grassy field dog is playing in",
+ "question": [
+ "is there grassy field dog ?"
+ ],
+ "prompt": "grassy field {} is playing in"
+ },
+ {
+ "index": 1220,
+ "image_id": 2417227,
+ "entity": "dog",
+ "caption": "The sofa the dog is leaning on.",
+ "question": [
+ "is there the sofa ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The sofa the {} is leaning on."
+ },
+ {
+ "index": 1221,
+ "image_id": 2417721,
+ "entity": "dog",
+ "caption": "dog has brown legs",
+ "question": [
+ "is there dog ?",
+ "are there brown legs ?"
+ ],
+ "prompt": "{} has brown legs"
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02088238.json b/data/imagenet/compositions/prompts/n02088238.json
new file mode 100644
index 0000000000000000000000000000000000000000..52b4abb883afb593845d8e1b9e77621259749c5a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02088238.json
@@ -0,0 +1,13317 @@
+[
+ {
+ "index": 0,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog has a black nose",
+ "question": [
+ "is there dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "{} has a black nose"
+ },
+ {
+ "index": 1,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog's ears are up",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are up"
+ },
+ {
+ "index": 2,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog's eyes are dark",
+ "question": [
+ "are there dog's eyes ?"
+ ],
+ "prompt": "{}'s eyes are dark"
+ },
+ {
+ "index": 3,
+ "image_id": 3535,
+ "entity": "dog",
+ "caption": "The dog has four legs.",
+ "question": [
+ "is there the dog ?",
+ "are there four legs ?"
+ ],
+ "prompt": "The {} has four legs."
+ },
+ {
+ "index": 4,
+ "image_id": 3535,
+ "entity": "dog",
+ "caption": "tongue hanging out a dog's mouth",
+ "question": [
+ "is there tongue ?",
+ "is there a dog's mouth ?"
+ ],
+ "prompt": "tongue hanging out a {}'s mouth"
+ },
+ {
+ "index": 5,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "dog is sitting in grass",
+ "question": [
+ "is there dog ?",
+ "is there grass ?"
+ ],
+ "prompt": "{} is sitting in grass"
+ },
+ {
+ "index": 6,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "dog is mostly brown",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is mostly brown"
+ },
+ {
+ "index": 7,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the dog has a black nose",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "the {} has a black nose"
+ },
+ {
+ "index": 8,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the brown dog has a long brown tail",
+ "question": [
+ "is there the brown dog ?",
+ "is there a long brown tail ?"
+ ],
+ "prompt": "the brown {} has a long brown tail"
+ },
+ {
+ "index": 9,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the dog has large brown paws",
+ "question": [
+ "is there the dog ?",
+ "are there large brown paws ?"
+ ],
+ "prompt": "the {} has large brown paws"
+ },
+ {
+ "index": 10,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "a dog with its mouth open",
+ "question": [
+ "is there a dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "a {} with its mouth open"
+ },
+ {
+ "index": 11,
+ "image_id": 3752,
+ "entity": "dog",
+ "caption": "the dogs tail is black ",
+ "question": [
+ "are there the dogs tail ?"
+ ],
+ "prompt": "the {}s tail is black "
+ },
+ {
+ "index": 12,
+ "image_id": 3752,
+ "entity": "dog",
+ "caption": "the dogs feet is black ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s feet is black "
+ },
+ {
+ "index": 13,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "A dog and a cat are standing together on the sidewalk",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?",
+ "is there the sidewalk ?"
+ ],
+ "prompt": "A {} and a cat are standing together on the sidewalk"
+ },
+ {
+ "index": 14,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "dog has a brown patch",
+ "question": [
+ "is there dog ?",
+ "is there a brown patch ?"
+ ],
+ "prompt": "{} has a brown patch"
+ },
+ {
+ "index": 15,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "dog has a blue rope tied",
+ "question": [
+ "is there dog ?",
+ "is there a blue rope ?"
+ ],
+ "prompt": "{} has a blue rope tied"
+ },
+ {
+ "index": 16,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "the dog has a blue leash",
+ "question": [
+ "is there the dog ?",
+ "is there a blue leash ?"
+ ],
+ "prompt": "the {} has a blue leash"
+ },
+ {
+ "index": 17,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "A dog and a cat walk together.",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A {} and a cat walk together."
+ },
+ {
+ "index": 18,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "Both dog and cat are in the middle of the frame.",
+ "question": [
+ "is there both dog ?",
+ "is there cat ?",
+ "is there the middle ?",
+ "is there the frame ?"
+ ],
+ "prompt": "Both {} and cat are in the middle of the frame."
+ },
+ {
+ "index": 19,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "The dog is looking at the camera.",
+ "question": [
+ "is there the dog ?",
+ "is there the camera ?"
+ ],
+ "prompt": "The {} is looking at the camera."
+ },
+ {
+ "index": 20,
+ "image_id": 1159975,
+ "entity": "dog",
+ "caption": "The gray collar the dog is wearing.",
+ "question": [
+ "is there the gray collar ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The gray collar the {} is wearing."
+ },
+ {
+ "index": 21,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "The dog has a brown and white sweater",
+ "question": [
+ "is there the dog ?",
+ "is there a brown and white sweater ?"
+ ],
+ "prompt": "The {} has a brown and white sweater"
+ },
+ {
+ "index": 22,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "The dog has a brown nose",
+ "question": [
+ "is there the dog ?",
+ "is there a brown nose ?"
+ ],
+ "prompt": "The {} has a brown nose"
+ },
+ {
+ "index": 23,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog has a messed up eye",
+ "question": [
+ "is there the dog ?",
+ "is there a messed up eye ?"
+ ],
+ "prompt": "the {} has a messed up eye"
+ },
+ {
+ "index": 24,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog is wearing a sweater",
+ "question": [
+ "is there the dog ?",
+ "is there a sweater ?"
+ ],
+ "prompt": "the {} is wearing a sweater"
+ },
+ {
+ "index": 25,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog has a purple collar",
+ "question": [
+ "is there the dog ?",
+ "is there a purple collar ?"
+ ],
+ "prompt": "the {} has a purple collar"
+ },
+ {
+ "index": 26,
+ "image_id": 2413171,
+ "entity": "dog",
+ "caption": "Young man hold a cute dog",
+ "question": [
+ "is there young man ?",
+ "is there a cute dog ?"
+ ],
+ "prompt": "Young man hold a cute {}"
+ },
+ {
+ "index": 27,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "black fur grows on a dog",
+ "question": [
+ "is there black fur ?",
+ "is there a dog ?"
+ ],
+ "prompt": "black fur grows on a {}"
+ },
+ {
+ "index": 28,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "dog is sitting in the ground",
+ "question": [
+ "is there dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "{} is sitting in the ground"
+ },
+ {
+ "index": 29,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "dog is sitting in the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is sitting in the floor"
+ },
+ {
+ "index": 30,
+ "image_id": 2412546,
+ "entity": "dog",
+ "caption": "The dog has a collar on.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} has a collar on."
+ },
+ {
+ "index": 31,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog is long hair",
+ "question": [
+ "is there the dog ?",
+ "is there long hair ?"
+ ],
+ "prompt": "the {} is long hair"
+ },
+ {
+ "index": 32,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some white hair",
+ "question": [
+ "is there the dog ?",
+ "is there some white hair ?"
+ ],
+ "prompt": "the {} has some white hair"
+ },
+ {
+ "index": 33,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some black hair",
+ "question": [
+ "is there the dog ?",
+ "is there some black hair ?"
+ ],
+ "prompt": "the {} has some black hair"
+ },
+ {
+ "index": 34,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some brown hair",
+ "question": [
+ "is there the dog ?",
+ "is there some brown hair ?"
+ ],
+ "prompt": "the {} has some brown hair"
+ },
+ {
+ "index": 35,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog's nose is shiny",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "the {}'s nose is shiny"
+ },
+ {
+ "index": 36,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog's nose is black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "the {}'s nose is black"
+ },
+ {
+ "index": 37,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "this are dog canines",
+ "question": [
+ "are there dog canines ?"
+ ],
+ "prompt": "this are {} canines"
+ },
+ {
+ "index": 38,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "this is the dogs fur",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "this is the {}s fur"
+ },
+ {
+ "index": 39,
+ "image_id": 2411402,
+ "entity": "dog",
+ "caption": "Bed the dog is sleeping on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Bed the {} is sleeping on"
+ },
+ {
+ "index": 40,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is wearing a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} is wearing a collar"
+ },
+ {
+ "index": 41,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is wearing a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} is wearing a chain"
+ },
+ {
+ "index": 42,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is watching the oven",
+ "question": [
+ "is there the dog ?",
+ "is there the oven ?"
+ ],
+ "prompt": "the {} is watching the oven"
+ },
+ {
+ "index": 43,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog has a chain around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?",
+ "is there its neck ?"
+ ],
+ "prompt": "the {} has a chain around its neck"
+ },
+ {
+ "index": 44,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog has two ears",
+ "question": [
+ "is there the dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "the {} has two ears"
+ },
+ {
+ "index": 45,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "A dog is on a moped.",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "A {} is on a moped."
+ },
+ {
+ "index": 46,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog has a red leash.",
+ "question": [
+ "is there the dog ?",
+ "is there a red leash ?"
+ ],
+ "prompt": "The {} has a red leash."
+ },
+ {
+ "index": 47,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog's ears are up.",
+ "question": [
+ "are there the dog's ears ?"
+ ],
+ "prompt": "The {}'s ears are up."
+ },
+ {
+ "index": 48,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog's tail is hanging down.",
+ "question": [
+ "is there the dog's tail ?"
+ ],
+ "prompt": "The {}'s tail is hanging down."
+ },
+ {
+ "index": 49,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "a large dog sits on a scooter",
+ "question": [
+ "is there a large dog ?",
+ "is there a scooter ?"
+ ],
+ "prompt": "a large {} sits on a scooter"
+ },
+ {
+ "index": 50,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "a dog has a red leash",
+ "question": [
+ "is there a dog ?",
+ "is there a red leash ?"
+ ],
+ "prompt": "a {} has a red leash"
+ },
+ {
+ "index": 51,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog on the scooter has a long tail",
+ "question": [
+ "is there the dog ?",
+ "is there the scooter ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "The {} on the scooter has a long tail"
+ },
+ {
+ "index": 52,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "Brown dog on leash on moped",
+ "question": [
+ "is there brown dog ?",
+ "is there leash ?"
+ ],
+ "prompt": "Brown {} on leash on moped"
+ },
+ {
+ "index": 53,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "Red moped with dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "Red moped with {}"
+ },
+ {
+ "index": 54,
+ "image_id": 2410967,
+ "entity": "dog",
+ "caption": "a dog's ears bent over",
+ "question": [
+ "are there a dog's ears ?"
+ ],
+ "prompt": "a {}'s ears bent over"
+ },
+ {
+ "index": 55,
+ "image_id": 2410840,
+ "entity": "dog",
+ "caption": "a dog's mouth biting a frisbee",
+ "question": [
+ "is there a dog's mouth ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "a {}'s mouth biting a frisbee"
+ },
+ {
+ "index": 56,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "black and tan dog jumping to catch a frisbee",
+ "question": [
+ "is there black and tan dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "black and tan {} jumping to catch a frisbee"
+ },
+ {
+ "index": 57,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "leaping dog going after a frisbee",
+ "question": [
+ "is there leaping dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "leaping {} going after a frisbee"
+ },
+ {
+ "index": 58,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "German shepherd dog fetching a frisbee. ",
+ "question": [
+ "is there german shepherd dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "German shepherd {} fetching a frisbee. "
+ },
+ {
+ "index": 59,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "dog's eyes appear to be different colors",
+ "question": [
+ "are there dog's eyes ?",
+ "are there different colors ?"
+ ],
+ "prompt": "{}'s eyes appear to be different colors"
+ },
+ {
+ "index": 60,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "dog has black nose",
+ "question": [
+ "is there dog ?",
+ "is there black nose ?"
+ ],
+ "prompt": "{} has black nose"
+ },
+ {
+ "index": 61,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "the dog is wearing a cap",
+ "question": [
+ "is there the dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "the {} is wearing a cap"
+ },
+ {
+ "index": 62,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "Tongue of dog is pink",
+ "question": [
+ "is there tongue ?",
+ "is there dog ?"
+ ],
+ "prompt": "Tongue of {} is pink"
+ },
+ {
+ "index": 63,
+ "image_id": 2409626,
+ "entity": "dog",
+ "caption": "dog has two eyes",
+ "question": [
+ "is there dog ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "{} has two eyes"
+ },
+ {
+ "index": 64,
+ "image_id": 2409626,
+ "entity": "dog",
+ "caption": "the dog is wearing pirate hat",
+ "question": [
+ "is there the dog ?",
+ "is there pirate hat ?"
+ ],
+ "prompt": "the {} is wearing pirate hat"
+ },
+ {
+ "index": 65,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "White left foot of the dog",
+ "question": [
+ "is there white left foot ?",
+ "is there the dog ?"
+ ],
+ "prompt": "White left foot of the {}"
+ },
+ {
+ "index": 66,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog catch the frisbee",
+ "question": [
+ "is there dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{} catch the frisbee"
+ },
+ {
+ "index": 67,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's nose is black",
+ "question": [
+ "is there dog's nose ?"
+ ],
+ "prompt": "{}'s nose is black"
+ },
+ {
+ "index": 68,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's ears are black",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are black"
+ },
+ {
+ "index": 69,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's paws are white",
+ "question": [
+ "are there dog's paws ?"
+ ],
+ "prompt": "{}'s paws are white"
+ },
+ {
+ "index": 70,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "the dog is wearing a blue collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "the {} is wearing a blue collar"
+ },
+ {
+ "index": 71,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "a book by T.C. Boyle is next to the dog",
+ "question": [
+ "is there a book ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a book by T.C. Boyle is next to the {}"
+ },
+ {
+ "index": 72,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "the dog is laying on top of an embroidered sheet",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there an embroidered sheet ?"
+ ],
+ "prompt": "the {} is laying on top of an embroidered sheet"
+ },
+ {
+ "index": 73,
+ "image_id": 2408483,
+ "entity": "dog",
+ "caption": "Carpet is light in color under dog",
+ "question": [
+ "is there carpet ?",
+ "is there color ?",
+ "is there dog ?"
+ ],
+ "prompt": "Carpet is light in color under {}"
+ },
+ {
+ "index": 74,
+ "image_id": 2408383,
+ "entity": "dog",
+ "caption": "The dog and cat are looking in the same direction",
+ "question": [
+ "is there the dog ?",
+ "is there cat ?",
+ "is there the same direction ?"
+ ],
+ "prompt": "The {} and cat are looking in the same direction"
+ },
+ {
+ "index": 75,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Nose of dog is black",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "Nose of {} is black"
+ },
+ {
+ "index": 76,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Ears of dog is black and tan",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "Ears of {} is black and tan"
+ },
+ {
+ "index": 77,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Eyes of dog are open",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "Eyes of {} are open"
+ },
+ {
+ "index": 78,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "three dogs are lying on a bed",
+ "question": [
+ "are there three dogs ?",
+ "is there a bed ?"
+ ],
+ "prompt": "three {}s are lying on a bed"
+ },
+ {
+ "index": 79,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "the dog has his eyes open",
+ "question": [
+ "is there the dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "the {} has his eyes open"
+ },
+ {
+ "index": 80,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has red eyes",
+ "question": [
+ "is there the dog ?",
+ "are there red eyes ?"
+ ],
+ "prompt": "the {} has red eyes"
+ },
+ {
+ "index": 81,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog is holding carrot toy",
+ "question": [
+ "is there the dog ?",
+ "is there carrot toy ?"
+ ],
+ "prompt": "the {} is holding carrot toy"
+ },
+ {
+ "index": 82,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has green ribbon on its nech",
+ "question": [
+ "is there the dog ?",
+ "is there green ribbon ?"
+ ],
+ "prompt": "the {} has green ribbon on its nech"
+ },
+ {
+ "index": 83,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "a green toy is beside the dog",
+ "question": [
+ "is there a green toy ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a green toy is beside the {}"
+ },
+ {
+ "index": 84,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has brown legs",
+ "question": [
+ "is there the dog ?",
+ "are there brown legs ?"
+ ],
+ "prompt": "the {} has brown legs"
+ },
+ {
+ "index": 85,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "Brown dog laying on a bed with eyes open.",
+ "question": [
+ "is there brown dog ?",
+ "is there a bed ?",
+ "are there eyes ?"
+ ],
+ "prompt": "Brown {} laying on a bed with eyes open."
+ },
+ {
+ "index": 86,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog is lying down.",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is lying down."
+ },
+ {
+ "index": 87,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog is lying in cot.",
+ "question": [
+ "is there dog ?",
+ "is there cot ?"
+ ],
+ "prompt": "{} is lying in cot."
+ },
+ {
+ "index": 88,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog nose is black color.",
+ "question": [
+ "is there dog nose ?",
+ "is there black color ?"
+ ],
+ "prompt": "{} nose is black color."
+ },
+ {
+ "index": 89,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog has two eyes",
+ "question": [
+ "is there the dog ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "the {} has two eyes"
+ },
+ {
+ "index": 90,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "dog is wearing a collar",
+ "question": [
+ "is there dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "{} is wearing a collar"
+ },
+ {
+ "index": 91,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog is on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is on the couch"
+ },
+ {
+ "index": 92,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog has whiskers",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "the {} has whiskers"
+ },
+ {
+ "index": 93,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is on the beanbag",
+ "question": [
+ "is there the dog ?",
+ "is there the beanbag ?"
+ ],
+ "prompt": "the {} is on the beanbag"
+ },
+ {
+ "index": 94,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "a dog toy thats a rope",
+ "question": [
+ "is there a dog toy ?",
+ "is there a rope ?"
+ ],
+ "prompt": "a {} toy thats a rope"
+ },
+ {
+ "index": 95,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is on bean bag",
+ "question": [
+ "is there the dog ?",
+ "is there bean bag ?"
+ ],
+ "prompt": "the {} is on bean bag"
+ },
+ {
+ "index": 96,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is sad",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is sad"
+ },
+ {
+ "index": 97,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "the dog has goggles",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "the {} has goggles"
+ },
+ {
+ "index": 98,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dog has a vest on",
+ "question": [
+ "is there the dog ?",
+ "is there a vest ?"
+ ],
+ "prompt": "The {} has a vest on"
+ },
+ {
+ "index": 99,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dog has goggles on",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "The {} has goggles on"
+ },
+ {
+ "index": 100,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dogs tongue is out. ",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "The {}s tongue is out. "
+ },
+ {
+ "index": 101,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "The dog has amber-coloured eyes",
+ "question": [
+ "is there the dog ?",
+ "are there amber-coloured eyes ?"
+ ],
+ "prompt": "The {} has amber-coloured eyes"
+ },
+ {
+ "index": 102,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "The dog's hat is courdoroy",
+ "question": [
+ "is there the dog's hat ?"
+ ],
+ "prompt": "The {}'s hat is courdoroy"
+ },
+ {
+ "index": 103,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has collar",
+ "question": [
+ "is there dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} has collar"
+ },
+ {
+ "index": 104,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has whiskers",
+ "question": [
+ "is there dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "{} has whiskers"
+ },
+ {
+ "index": 105,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has black lips",
+ "question": [
+ "is there dog ?",
+ "are there black lips ?"
+ ],
+ "prompt": "{} has black lips"
+ },
+ {
+ "index": 106,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "dogs nose is black",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is black"
+ },
+ {
+ "index": 107,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has light brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there light brown eyes ?"
+ ],
+ "prompt": "the {} has light brown eyes"
+ },
+ {
+ "index": 108,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has pointy ears",
+ "question": [
+ "is there the dog ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "the {} has pointy ears"
+ },
+ {
+ "index": 109,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "something fuzzy is next to the dog",
+ "question": [
+ "is there something ?",
+ "is there the dog ?"
+ ],
+ "prompt": "something fuzzy is next to the {}"
+ },
+ {
+ "index": 110,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "the {} has brown eyes"
+ },
+ {
+ "index": 111,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog is lying on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is lying on a blanket"
+ },
+ {
+ "index": 112,
+ "image_id": 2405633,
+ "entity": "dog",
+ "caption": "Dog kennel with dog.",
+ "question": [
+ "is there dog kennel ?",
+ "is there dog ?"
+ ],
+ "prompt": "Dog kennel with {}."
+ },
+ {
+ "index": 113,
+ "image_id": 2405633,
+ "entity": "dog",
+ "caption": "The dog is lying on two blue and white pillows.",
+ "question": [
+ "is there the dog ?",
+ "are there two blue and white pillows ?"
+ ],
+ "prompt": "The {} is lying on two blue and white pillows."
+ },
+ {
+ "index": 114,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has a pink tongue",
+ "question": [
+ "is there the dog ?",
+ "is there a pink tongue ?"
+ ],
+ "prompt": "the {} has a pink tongue"
+ },
+ {
+ "index": 115,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is walking in the grass",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {} is walking in the grass"
+ },
+ {
+ "index": 116,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is wearing a metal collar",
+ "question": [
+ "is there the dog ?",
+ "is there a metal collar ?"
+ ],
+ "prompt": "the {} is wearing a metal collar"
+ },
+ {
+ "index": 117,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is standing on the grass",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {} is standing on the grass"
+ },
+ {
+ "index": 118,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has a collar on",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar on"
+ },
+ {
+ "index": 119,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has his tongue sticking out",
+ "question": [
+ "is there the dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "the {} has his tongue sticking out"
+ },
+ {
+ "index": 120,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is waggling his tail",
+ "question": [
+ "is there the dog ?",
+ "is there his tail ?"
+ ],
+ "prompt": "the {} is waggling his tail"
+ },
+ {
+ "index": 121,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog's collar is a chain",
+ "question": [
+ "is there the dog's collar ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {}'s collar is a chain"
+ },
+ {
+ "index": 122,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "dog's tongue is pink",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is pink"
+ },
+ {
+ "index": 123,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "dog is standing in the grass",
+ "question": [
+ "is there dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "{} is standing in the grass"
+ },
+ {
+ "index": 124,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar. ",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar. "
+ },
+ {
+ "index": 125,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "The dog has it's head down. ",
+ "question": [
+ "is there the dog ?",
+ "is there head ?"
+ ],
+ "prompt": "The {} has it's head down. "
+ },
+ {
+ "index": 126,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "the dog has sharp teeth",
+ "question": [
+ "is there the dog ?",
+ "are there sharp teeth ?"
+ ],
+ "prompt": "the {} has sharp teeth"
+ },
+ {
+ "index": 127,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "the dog is on the ground",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is on the ground"
+ },
+ {
+ "index": 128,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "dog is barking to the other dog",
+ "question": [
+ "is there dog ?",
+ "is there the other dog ?"
+ ],
+ "prompt": "{} is barking to the other {}"
+ },
+ {
+ "index": 129,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "Dog ready to bite another dog",
+ "question": [
+ "is there dog ?",
+ "is there another dog ?"
+ ],
+ "prompt": "Dog ready to bite another {}"
+ },
+ {
+ "index": 130,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "The dog is sleeping in a bed. ",
+ "question": [
+ "is there the dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "The {} is sleeping in a bed. "
+ },
+ {
+ "index": 131,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "The dog's nose hangs over the bed's edge.",
+ "question": [
+ "is there the dog's nose ?",
+ "is there the bed's edge ?"
+ ],
+ "prompt": "The {}'s nose hangs over the bed's edge."
+ },
+ {
+ "index": 132,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog is on a bed",
+ "question": [
+ "is there the dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "the {} is on a bed"
+ },
+ {
+ "index": 133,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog sleeps on a tan and white dog bed",
+ "question": [
+ "is there the dog ?",
+ "is there a tan and white dog bed ?"
+ ],
+ "prompt": "the {} sleeps on a tan and white {} bed"
+ },
+ {
+ "index": 134,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog lays curled up on a plush dog bed",
+ "question": [
+ "is there the dog ?",
+ "is there a plush dog bed ?"
+ ],
+ "prompt": "the {} lays curled up on a plush {} bed"
+ },
+ {
+ "index": 135,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "dogs ear on bottom left",
+ "question": [
+ "are there dogs ?",
+ "is there bottom ?"
+ ],
+ "prompt": "{}s ear on bottom left"
+ },
+ {
+ "index": 136,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "White dog curled up sleeping on its bed",
+ "question": [
+ "is there white dog ?",
+ "is there its bed ?"
+ ],
+ "prompt": "White {} curled up sleeping on its bed"
+ },
+ {
+ "index": 137,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a Santa hat on his head",
+ "question": [
+ "is there the dog ?",
+ "is there a santa hat ?",
+ "is there his head ?"
+ ],
+ "prompt": "the {} has a Santa hat on his head"
+ },
+ {
+ "index": 138,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a black eye",
+ "question": [
+ "is there the dog ?",
+ "is there a black eye ?"
+ ],
+ "prompt": "the {} has a black eye"
+ },
+ {
+ "index": 139,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the nose of the dog is black",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the nose of the {} is black"
+ },
+ {
+ "index": 140,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the fur on the dog is black and white ",
+ "question": [
+ "is there the fur ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the fur on the {} is black and white "
+ },
+ {
+ "index": 141,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a white chest",
+ "question": [
+ "is there the dog ?",
+ "is there a white chest ?"
+ ],
+ "prompt": "the {} has a white chest"
+ },
+ {
+ "index": 142,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog's ear is black",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is black"
+ },
+ {
+ "index": 143,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog's eye is open",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is open"
+ },
+ {
+ "index": 144,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "a cat sleeps on a dog",
+ "question": [
+ "is there a cat ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a cat sleeps on a {}"
+ },
+ {
+ "index": 145,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "a cat and dog lie on a wooden floor",
+ "question": [
+ "is there a cat ?",
+ "is there dog ?",
+ "is there a wooden floor ?"
+ ],
+ "prompt": "a cat and {} lie on a wooden floor"
+ },
+ {
+ "index": 146,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the cat is laying on the dog",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cat is laying on the {}"
+ },
+ {
+ "index": 147,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog is laying on the floor",
+ "question": [
+ "is there the dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "the {} is laying on the floor"
+ },
+ {
+ "index": 148,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog has something around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there something ?",
+ "is there its neck ?"
+ ],
+ "prompt": "the {} has something around its neck"
+ },
+ {
+ "index": 149,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog's ear is sticking up",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is sticking up"
+ },
+ {
+ "index": 150,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog is wearing a bandana on his neck",
+ "question": [
+ "is there the dog ?",
+ "is there a bandana ?",
+ "is there his neck ?"
+ ],
+ "prompt": "the {} is wearing a bandana on his neck"
+ },
+ {
+ "index": 151,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the kitten is laying on top of the dog",
+ "question": [
+ "is there top ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the kitten is laying on top of the {}"
+ },
+ {
+ "index": 152,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dogs paws are white",
+ "question": [
+ "are there the dogs paws ?"
+ ],
+ "prompt": "the {}s paws are white"
+ },
+ {
+ "index": 153,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog doesnt seem to mind the kitty laying on him",
+ "question": [
+ "is there the dog ?",
+ "is there the kitty ?"
+ ],
+ "prompt": "the {} doesnt seem to mind the kitty laying on him"
+ },
+ {
+ "index": 154,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "A black dog sits on stairs",
+ "question": [
+ "is there a black dog ?",
+ "are there stairs ?"
+ ],
+ "prompt": "A black {} sits on stairs"
+ },
+ {
+ "index": 155,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dog is wearing a red bow tie around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there a red bow tie ?",
+ "is there its neck ?"
+ ],
+ "prompt": "The {} is wearing a red bow tie around its neck"
+ },
+ {
+ "index": 156,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dog has its head cocked to the side",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there the side ?"
+ ],
+ "prompt": "The {} has its head cocked to the side"
+ },
+ {
+ "index": 157,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dogs left hind leg is hanging off the stair",
+ "question": [
+ "are there the dogs ?",
+ "is there hind leg ?",
+ "is there the stair ?"
+ ],
+ "prompt": "The {}s left hind leg is hanging off the stair"
+ },
+ {
+ "index": 158,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "a woman is petting the dog",
+ "question": [
+ "is there a woman ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a woman is petting the {}"
+ },
+ {
+ "index": 159,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog wears a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} wears a red collar"
+ },
+ {
+ "index": 160,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "person petting dog is wearing red scarf",
+ "question": [
+ "is there person ?",
+ "is there dog ?",
+ "is there red scarf ?"
+ ],
+ "prompt": "person petting {} is wearing red scarf"
+ },
+ {
+ "index": 161,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "person petting dog is wearing a black dress",
+ "question": [
+ "is there person ?",
+ "is there dog ?",
+ "is there a black dress ?"
+ ],
+ "prompt": "person petting {} is wearing a black dress"
+ },
+ {
+ "index": 162,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog is wearing a red and white scarf",
+ "question": [
+ "is there the dog ?",
+ "is there a red and white scarf ?"
+ ],
+ "prompt": "the {} is wearing a red and white scarf"
+ },
+ {
+ "index": 163,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog looks up at the woman",
+ "question": [
+ "is there the dog ?",
+ "is there the woman ?"
+ ],
+ "prompt": "the {} looks up at the woman"
+ },
+ {
+ "index": 164,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog is wearing a red halter style lead",
+ "question": [
+ "is there the dog ?",
+ "is there a red halter style ?"
+ ],
+ "prompt": "the {} is wearing a red halter style lead"
+ },
+ {
+ "index": 165,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "a woman reaches down to a dog",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a woman reaches down to a {}"
+ },
+ {
+ "index": 166,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the woman in the red shoes pets the dog",
+ "question": [
+ "is there the woman ?",
+ "are there the red shoes ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the woman in the red shoes pets the {}"
+ },
+ {
+ "index": 167,
+ "image_id": 2404075,
+ "entity": "dog",
+ "caption": "The dog is on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is on a blanket"
+ },
+ {
+ "index": 168,
+ "image_id": 2403923,
+ "entity": "dog",
+ "caption": "the dog has a green collar",
+ "question": [
+ "is there the dog ?",
+ "is there a green collar ?"
+ ],
+ "prompt": "the {} has a green collar"
+ },
+ {
+ "index": 169,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This dog has his eyes closed",
+ "question": [
+ "is there this dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "This {} has his eyes closed"
+ },
+ {
+ "index": 170,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This snauser dog has long ears",
+ "question": [
+ "is there this snauser dog ?",
+ "are there long ears ?"
+ ],
+ "prompt": "This snauser {} has long ears"
+ },
+ {
+ "index": 171,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This dog has a pug nose",
+ "question": [
+ "is there this dog ?",
+ "is there a pug nose ?"
+ ],
+ "prompt": "This {} has a pug nose"
+ },
+ {
+ "index": 172,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "A dog's ear peeking out from the other side of its head",
+ "question": [
+ "is there a dog's ear ?",
+ "is there the other side ?",
+ "is there its head ?"
+ ],
+ "prompt": "A {}'s ear peeking out from the other side of its head"
+ },
+ {
+ "index": 173,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The dog is laying on a couch.",
+ "question": [
+ "is there the dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "The {} is laying on a couch."
+ },
+ {
+ "index": 174,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "black dog with eyes open",
+ "question": [
+ "is there black dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "black {} with eyes open"
+ },
+ {
+ "index": 175,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The dog has brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "The {} has brown eyes"
+ },
+ {
+ "index": 176,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The black dog likes laying on the couch",
+ "question": [
+ "is there the black dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The black {} likes laying on the couch"
+ },
+ {
+ "index": 177,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "the dog is laying on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is laying on the couch"
+ },
+ {
+ "index": 178,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "the dog's eye is brown",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is brown"
+ },
+ {
+ "index": 179,
+ "image_id": 2403359,
+ "entity": "dog",
+ "caption": "a dog and a horse share an Eskimo kiss",
+ "question": [
+ "is there a dog ?",
+ "is there a horse share ?"
+ ],
+ "prompt": "a {} and a horse share an Eskimo kiss"
+ },
+ {
+ "index": 180,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "large brown dog leashed to chair",
+ "question": [
+ "is there large brown dog ?",
+ "is there chair ?"
+ ],
+ "prompt": "large brown {} leashed to chair"
+ },
+ {
+ "index": 181,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "the dog is on deck",
+ "question": [
+ "is there the dog ?",
+ "is there deck ?"
+ ],
+ "prompt": "the {} is on deck"
+ },
+ {
+ "index": 182,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "the leash is on dog",
+ "question": [
+ "is there the leash ?",
+ "is there dog ?"
+ ],
+ "prompt": "the leash is on {}"
+ },
+ {
+ "index": 183,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "Leash tied on golden dog",
+ "question": [
+ "is there golden dog ?"
+ ],
+ "prompt": "Leash tied on golden {}"
+ },
+ {
+ "index": 184,
+ "image_id": 2402933,
+ "entity": "dog",
+ "caption": "the doggy has a party hat on",
+ "question": [
+ "is there the doggy ?",
+ "is there a party hat ?"
+ ],
+ "prompt": "the {}gy has a party hat on"
+ },
+ {
+ "index": 185,
+ "image_id": 2402933,
+ "entity": "dog",
+ "caption": "a stuffed animal is next to the dog",
+ "question": [
+ "is there a stuffed animal ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a stuffed animal is next to the {}"
+ },
+ {
+ "index": 186,
+ "image_id": 2402907,
+ "entity": "dog",
+ "caption": "The dog is standing on carpet",
+ "question": [
+ "is there the dog ?",
+ "is there carpet ?"
+ ],
+ "prompt": "The {} is standing on carpet"
+ },
+ {
+ "index": 187,
+ "image_id": 2402907,
+ "entity": "dog",
+ "caption": "The dog has a collar and tags",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?",
+ "are there tags ?"
+ ],
+ "prompt": "The {} has a collar and tags"
+ },
+ {
+ "index": 188,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "a dog cover the book",
+ "question": [
+ "is there a dog ?",
+ "is there the book ?"
+ ],
+ "prompt": "a {} cover the book"
+ },
+ {
+ "index": 189,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "the dog is looking to the left",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is looking to the left"
+ },
+ {
+ "index": 190,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "the dog has black eyes",
+ "question": [
+ "is there the dog ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "the {} has black eyes"
+ },
+ {
+ "index": 191,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's eyes are brown.",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are brown."
+ },
+ {
+ "index": 192,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's fur is brown and black.",
+ "question": [
+ "is there the dog's fur ?"
+ ],
+ "prompt": "The {}'s fur is brown and black."
+ },
+ {
+ "index": 193,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's tongue is pink.",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "The {}'s tongue is pink."
+ },
+ {
+ "index": 194,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's ears are down.",
+ "question": [
+ "are there the dog's ears ?"
+ ],
+ "prompt": "The {}'s ears are down."
+ },
+ {
+ "index": 195,
+ "image_id": 2402363,
+ "entity": "dog",
+ "caption": "the dog and the cat are on the pillow together",
+ "question": [
+ "is there the dog ?",
+ "is there the cat ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "the {} and the cat are on the pillow together"
+ },
+ {
+ "index": 196,
+ "image_id": 2402363,
+ "entity": "dog",
+ "caption": "cat and dog sleeping on pet bed together",
+ "question": [
+ "is there cat ?",
+ "is there dog ?",
+ "is there pet bed ?"
+ ],
+ "prompt": "cat and {} sleeping on pet bed together"
+ },
+ {
+ "index": 197,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in his mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in his mouth."
+ },
+ {
+ "index": 198,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "The dog has a white bushy tail.",
+ "question": [
+ "is there the dog ?",
+ "is there a white bushy tail ?"
+ ],
+ "prompt": "The {} has a white bushy tail."
+ },
+ {
+ "index": 199,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "A flower pot is on the side of the dog.",
+ "question": [
+ "is there a flower pot ?",
+ "is there the side ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A flower pot is on the side of the {}."
+ },
+ {
+ "index": 200,
+ "image_id": 2402059,
+ "entity": "dog",
+ "caption": "the dog has a human's tie around it's neck",
+ "question": [
+ "is there the dog ?",
+ "is there a human's tie ?",
+ "is there neck ?"
+ ],
+ "prompt": "the {} has a human's tie around it's neck"
+ },
+ {
+ "index": 201,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The head of the dog sitting down.",
+ "question": [
+ "is there the head ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The head of the {} sitting down."
+ },
+ {
+ "index": 202,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "Soft brown chair the dog sits on",
+ "question": [
+ "is there soft brown chair ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Soft brown chair the {} sits on"
+ },
+ {
+ "index": 203,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "dog sittin gin brown chiar",
+ "question": [
+ "is there dog ?",
+ "is there gin brown chiar ?"
+ ],
+ "prompt": "{} sittin gin brown chiar"
+ },
+ {
+ "index": 204,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The dog is black and brown.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is black and brown."
+ },
+ {
+ "index": 205,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The dog's nose is black.",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black."
+ },
+ {
+ "index": 206,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "the dog has ears",
+ "question": [
+ "is there the dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "the {} has ears"
+ },
+ {
+ "index": 207,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "the dog is wearing strap",
+ "question": [
+ "is there the dog ?",
+ "is there strap ?"
+ ],
+ "prompt": "the {} is wearing strap"
+ },
+ {
+ "index": 208,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "dog is wearing sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} is wearing sweater"
+ },
+ {
+ "index": 209,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "The sweater the dog is wearing",
+ "question": [
+ "is there the sweater ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The sweater the {} is wearing"
+ },
+ {
+ "index": 210,
+ "image_id": 2400958,
+ "entity": "dog",
+ "caption": "the man behind the dogs has blue jeans on",
+ "question": [
+ "is there the man ?",
+ "are there the dogs ?",
+ "are there blue jeans ?"
+ ],
+ "prompt": "the man behind the {}s has blue jeans on"
+ },
+ {
+ "index": 211,
+ "image_id": 2400958,
+ "entity": "dog",
+ "caption": "dog with tongue hanging out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} with tongue hanging out"
+ },
+ {
+ "index": 212,
+ "image_id": 2400922,
+ "entity": "dog",
+ "caption": "The dog is staring out the window.",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is staring out the window."
+ },
+ {
+ "index": 213,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "The dog is on a blanket.",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is on a blanket."
+ },
+ {
+ "index": 214,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "the dogs nose is pink.",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is pink."
+ },
+ {
+ "index": 215,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "the dogs tongue is pink.",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "the {}s tongue is pink."
+ },
+ {
+ "index": 216,
+ "image_id": 2400378,
+ "entity": "dog",
+ "caption": "this is the dog's head",
+ "question": [
+ "is there the dog's head ?"
+ ],
+ "prompt": "this is the {}'s head"
+ },
+ {
+ "index": 217,
+ "image_id": 2400368,
+ "entity": "dog",
+ "caption": "a dogs left paw",
+ "question": [
+ "are there a dogs ?",
+ "is there paw ?"
+ ],
+ "prompt": "a {}s left paw"
+ },
+ {
+ "index": 218,
+ "image_id": 2399686,
+ "entity": "dog",
+ "caption": "a dog with its ears perked up",
+ "question": [
+ "is there a dog ?",
+ "are there its ears ?"
+ ],
+ "prompt": "a {} with its ears perked up"
+ },
+ {
+ "index": 219,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs left eye",
+ "question": [
+ "are there the black dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the black {}s left eye"
+ },
+ {
+ "index": 220,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs right eye",
+ "question": [
+ "are there the black dogs ?"
+ ],
+ "prompt": "the black {}s right eye"
+ },
+ {
+ "index": 221,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "piece of wood dog is lying on",
+ "question": [
+ "is there piece ?",
+ "is there wood dog ?"
+ ],
+ "prompt": "piece of wood {} is lying on"
+ },
+ {
+ "index": 222,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs left ear",
+ "question": [
+ "are there the black dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "the black {}s left ear"
+ },
+ {
+ "index": 223,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "she is holding a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "she is holding a {}"
+ },
+ {
+ "index": 224,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "The girl's hand that is resting on the dog.",
+ "question": [
+ "is there the girl's hand ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The girl's hand that is resting on the {}."
+ },
+ {
+ "index": 225,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "Girl's hand is on the dog.",
+ "question": [
+ "is there girl's hand ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Girl's hand is on the {}."
+ },
+ {
+ "index": 226,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "this is a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "this is a {}"
+ },
+ {
+ "index": 227,
+ "image_id": 2397742,
+ "entity": "dog",
+ "caption": "a green rug the dog is laying on",
+ "question": [
+ "is there a green rug ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a green rug the {} is laying on"
+ },
+ {
+ "index": 228,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog is in front of a motorcycle.",
+ "question": [
+ "is there a dog ?",
+ "is there front ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "A {} is in front of a motorcycle."
+ },
+ {
+ "index": 229,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog has black and white spots.",
+ "question": [
+ "is there a dog ?",
+ "are there black and white spots ?"
+ ],
+ "prompt": "A {} has black and white spots."
+ },
+ {
+ "index": 230,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog is behind another dog.",
+ "question": [
+ "is there a dog ?",
+ "is there another dog ?"
+ ],
+ "prompt": "A {} is behind another {}."
+ },
+ {
+ "index": 231,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "motorbike parked behind dogs",
+ "question": [
+ "is there motorbike ?",
+ "are there dogs ?"
+ ],
+ "prompt": "motorbike parked behind {}s"
+ },
+ {
+ "index": 232,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the red collar the dog is wearing",
+ "question": [
+ "is there the red collar ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the red collar the {} is wearing"
+ },
+ {
+ "index": 233,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the green grass the dog is standing on",
+ "question": [
+ "is there the green grass ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the green grass the {} is standing on"
+ },
+ {
+ "index": 234,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the dogs colored leash",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s colored leash"
+ },
+ {
+ "index": 235,
+ "image_id": 2397368,
+ "entity": "dog",
+ "caption": "the dog is holding something on its mouth",
+ "question": [
+ "is there the dog ?",
+ "is there something ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} is holding something on its mouth"
+ },
+ {
+ "index": 236,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "dog has big brown eyes",
+ "question": [
+ "is there dog ?",
+ "are there big brown eyes ?"
+ ],
+ "prompt": "{} has big brown eyes"
+ },
+ {
+ "index": 237,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "dog has small black nose",
+ "question": [
+ "is there dog ?",
+ "is there small black nose ?"
+ ],
+ "prompt": "{} has small black nose"
+ },
+ {
+ "index": 238,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "collar on dog is black",
+ "question": [
+ "is there collar ?",
+ "is there dog ?"
+ ],
+ "prompt": "collar on {} is black"
+ },
+ {
+ "index": 239,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "the carpet the dog is standing on",
+ "question": [
+ "is there the carpet ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the carpet the {} is standing on"
+ },
+ {
+ "index": 240,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "the dogs tail",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s tail"
+ },
+ {
+ "index": 241,
+ "image_id": 2397165,
+ "entity": "dog",
+ "caption": "a dogs left paw.",
+ "question": [
+ "are there a dogs ?",
+ "is there paw ?"
+ ],
+ "prompt": "a {}s left paw."
+ },
+ {
+ "index": 242,
+ "image_id": 2396130,
+ "entity": "dog",
+ "caption": "A cushion a dog is lying on. ",
+ "question": [
+ "is there a cushion ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A cushion a {} is lying on. "
+ },
+ {
+ "index": 243,
+ "image_id": 2396130,
+ "entity": "dog",
+ "caption": "The dog is laying on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is laying on the couch."
+ },
+ {
+ "index": 244,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "dog is wearing a tiara",
+ "question": [
+ "is there dog ?",
+ "is there a tiara ?"
+ ],
+ "prompt": "{} is wearing a tiara"
+ },
+ {
+ "index": 245,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "the dog is wearing a tutu",
+ "question": [
+ "is there the dog ?",
+ "is there a tutu ?"
+ ],
+ "prompt": "the {} is wearing a tutu"
+ },
+ {
+ "index": 246,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "bulldog has big brown eye",
+ "question": [
+ "is there big brown eye ?"
+ ],
+ "prompt": "bull{} has big brown eye"
+ },
+ {
+ "index": 247,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest",
+ "question": [
+ "is there green ribbon ?",
+ "is there orange collar+ribbed orange vest ?"
+ ],
+ "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"
+ },
+ {
+ "index": 248,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "The dog is on top of the pillow",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "The {} is on top of the pillow"
+ },
+ {
+ "index": 249,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "The dog is hugging the stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there the stuffed animal ?"
+ ],
+ "prompt": "The {} is hugging the stuffed animal"
+ },
+ {
+ "index": 250,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "stuff is on the floor behind the dog",
+ "question": [
+ "is there stuff ?",
+ "is there the floor ?",
+ "is there the dog ?"
+ ],
+ "prompt": "stuff is on the floor behind the {}"
+ },
+ {
+ "index": 251,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "a white pillow is underneath the dog",
+ "question": [
+ "is there a white pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a white pillow is underneath the {}"
+ },
+ {
+ "index": 252,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "a black speaker is behind the dog",
+ "question": [
+ "is there a black speaker ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a black speaker is behind the {}"
+ },
+ {
+ "index": 253,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "old looking curtains is above the dog's head",
+ "question": [
+ "are there old looking curtains ?",
+ "is there the dog's head ?"
+ ],
+ "prompt": "old looking curtains is above the {}'s head"
+ },
+ {
+ "index": 254,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "grey run the dog is standing on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "grey run the {} is standing on"
+ },
+ {
+ "index": 255,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "cat and dog playing with each other ",
+ "question": [
+ "is there cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "cat and {} playing with each other "
+ },
+ {
+ "index": 256,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "head of dog is black",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is black"
+ },
+ {
+ "index": 257,
+ "image_id": 2394681,
+ "entity": "dog",
+ "caption": "The dog's tail is visible.",
+ "question": [
+ "is there the dog's tail ?"
+ ],
+ "prompt": "The {}'s tail is visible."
+ },
+ {
+ "index": 258,
+ "image_id": 2394681,
+ "entity": "dog",
+ "caption": "the dog has tail",
+ "question": [
+ "is there the dog ?",
+ "is there tail ?"
+ ],
+ "prompt": "the {} has tail"
+ },
+ {
+ "index": 259,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "the dog is wearing a hat",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "the {} is wearing a hat"
+ },
+ {
+ "index": 260,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "dog is wearing a fedora",
+ "question": [
+ "is there dog ?",
+ "is there a fedora ?"
+ ],
+ "prompt": "{} is wearing a fedora"
+ },
+ {
+ "index": 261,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "The dog has a toy.",
+ "question": [
+ "is there the dog ?",
+ "is there a toy ?"
+ ],
+ "prompt": "The {} has a toy."
+ },
+ {
+ "index": 262,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "The dog is laying on a pillow.",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "The {} is laying on a pillow."
+ },
+ {
+ "index": 263,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog is black and white.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is black and white."
+ },
+ {
+ "index": 264,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has white body with black spots",
+ "question": [
+ "is there dog ?",
+ "is there white body ?",
+ "are there black spots ?"
+ ],
+ "prompt": "{} has white body with black spots"
+ },
+ {
+ "index": 265,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has cast a shadow",
+ "question": [
+ "is there dog ?",
+ "is there a shadow ?"
+ ],
+ "prompt": "{} has cast a shadow"
+ },
+ {
+ "index": 266,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has big fluffy tail",
+ "question": [
+ "is there dog ?",
+ "is there big fluffy tail ?"
+ ],
+ "prompt": "{} has big fluffy tail"
+ },
+ {
+ "index": 267,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has tags on collar",
+ "question": [
+ "is there dog ?",
+ "are there tags ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} has tags on collar"
+ },
+ {
+ "index": 268,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog is wearing a white collar",
+ "question": [
+ "is there dog ?",
+ "is there a white collar ?"
+ ],
+ "prompt": "{} is wearing a white collar"
+ },
+ {
+ "index": 269,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog is black and white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is black and white"
+ },
+ {
+ "index": 270,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has frilly tail",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has frilly tail"
+ },
+ {
+ "index": 271,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has brown spots",
+ "question": [
+ "is there dog ?",
+ "are there brown spots ?"
+ ],
+ "prompt": "{} has brown spots"
+ },
+ {
+ "index": 272,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog wears white collar",
+ "question": [
+ "is there dog ?",
+ "is there white collar ?"
+ ],
+ "prompt": "{} wears white collar"
+ },
+ {
+ "index": 273,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "A dog is on the sand.",
+ "question": [
+ "is there a dog ?",
+ "is there the sand ?"
+ ],
+ "prompt": "A {} is on the sand."
+ },
+ {
+ "index": 274,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog is balck and white.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is balck and white."
+ },
+ {
+ "index": 275,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog has a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} has a collar."
+ },
+ {
+ "index": 276,
+ "image_id": 2394065,
+ "entity": "dog",
+ "caption": "The dog is licking the water bottle.",
+ "question": [
+ "is there the dog ?",
+ "is there the water bottle ?"
+ ],
+ "prompt": "The {} is licking the water bottle."
+ },
+ {
+ "index": 277,
+ "image_id": 2394065,
+ "entity": "dog",
+ "caption": "The dog is standing next to the person.",
+ "question": [
+ "is there the dog ?",
+ "is there the person ?"
+ ],
+ "prompt": "The {} is standing next to the person."
+ },
+ {
+ "index": 278,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "Aviator glasses on dogs face",
+ "question": [
+ "are there aviator glasses ?",
+ "are there dogs ?"
+ ],
+ "prompt": "Aviator glasses on {}s face"
+ },
+ {
+ "index": 279,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has glasses on",
+ "question": [
+ "is there the dog ?",
+ "are there glasses ?"
+ ],
+ "prompt": "The {} has glasses on"
+ },
+ {
+ "index": 280,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has a hat on",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "The {} has a hat on"
+ },
+ {
+ "index": 281,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has on a red bib",
+ "question": [
+ "is there the dog ?",
+ "is there a red bib ?"
+ ],
+ "prompt": "The {} has on a red bib"
+ },
+ {
+ "index": 282,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog is sitting in a seat",
+ "question": [
+ "is there the dog ?",
+ "is there a seat ?"
+ ],
+ "prompt": "The {} is sitting in a seat"
+ },
+ {
+ "index": 283,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "this is the dog's nose",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "this is the {}'s nose"
+ },
+ {
+ "index": 284,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "these are the dog's eyes",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "these are the {}'s eyes"
+ },
+ {
+ "index": 285,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "the dog's eye is orange",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is orange"
+ },
+ {
+ "index": 286,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "a dog with his eyes closed",
+ "question": [
+ "is there a dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "a {} with his eyes closed"
+ },
+ {
+ "index": 287,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog is on a boat",
+ "question": [
+ "is there dog ?",
+ "is there a boat ?"
+ ],
+ "prompt": "{} is on a boat"
+ },
+ {
+ "index": 288,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has a red collar on",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "{} has a red collar on"
+ },
+ {
+ "index": 289,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has a name tag",
+ "question": [
+ "is there dog ?",
+ "is there a name tag ?"
+ ],
+ "prompt": "{} has a name tag"
+ },
+ {
+ "index": 290,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has partially white fur",
+ "question": [
+ "is there dog ?",
+ "is there partially white fur ?"
+ ],
+ "prompt": "{} has partially white fur"
+ },
+ {
+ "index": 291,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "a dog is on the grass",
+ "question": [
+ "is there a dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "a {} is on the grass"
+ },
+ {
+ "index": 292,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog is drinking water",
+ "question": [
+ "is there dog ?",
+ "is there water ?"
+ ],
+ "prompt": "{} is drinking water"
+ },
+ {
+ "index": 293,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog is drinking water from a bottle",
+ "question": [
+ "is there dog ?",
+ "is there water ?",
+ "is there a bottle ?"
+ ],
+ "prompt": "{} is drinking water from a bottle"
+ },
+ {
+ "index": 294,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "water is dripping from the dogs face",
+ "question": [
+ "is there water ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "water is dripping from the {}s face"
+ },
+ {
+ "index": 295,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "thirsty dog is taking a drink",
+ "question": [
+ "is there thirsty dog ?",
+ "is there a drink ?"
+ ],
+ "prompt": "thirsty {} is taking a drink"
+ },
+ {
+ "index": 296,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog has drunk half the water bottle",
+ "question": [
+ "is there dog ?",
+ "is there half the water bottle ?"
+ ],
+ "prompt": "{} has drunk half the water bottle"
+ },
+ {
+ "index": 297,
+ "image_id": 2392606,
+ "entity": "dog",
+ "caption": "The two dogs are waring party hats.",
+ "question": [
+ "are there the two dogs ?",
+ "are there party hats ?"
+ ],
+ "prompt": "The two {}s are waring party hats."
+ },
+ {
+ "index": 298,
+ "image_id": 2392334,
+ "entity": "dog",
+ "caption": "The dog has long hair.",
+ "question": [
+ "is there the dog ?",
+ "is there long hair ?"
+ ],
+ "prompt": "The {} has long hair."
+ },
+ {
+ "index": 299,
+ "image_id": 2392334,
+ "entity": "dog",
+ "caption": "white dog wagging its tail",
+ "question": [
+ "is there white dog ?",
+ "is there its tail ?"
+ ],
+ "prompt": "white {} wagging its tail"
+ },
+ {
+ "index": 300,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "ears of dog are long",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are long"
+ },
+ {
+ "index": 301,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "tail of brown dog is furry",
+ "question": [
+ "is there tail ?",
+ "is there brown dog ?"
+ ],
+ "prompt": "tail of brown {} is furry"
+ },
+ {
+ "index": 302,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "nose of dog is black",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is black"
+ },
+ {
+ "index": 303,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog wears attentive expression",
+ "question": [
+ "is there dog ?",
+ "is there attentive expression ?"
+ ],
+ "prompt": "{} wears attentive expression"
+ },
+ {
+ "index": 304,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog has soulful eye, folded down ear",
+ "question": [
+ "is there dog ?",
+ "is there soulful eye ?",
+ "is there ear ?"
+ ],
+ "prompt": "{} has soulful eye, folded down ear"
+ },
+ {
+ "index": 305,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog is wearing dog collar",
+ "question": [
+ "is there dog ?",
+ "is there dog collar ?"
+ ],
+ "prompt": "{} is wearing {} collar"
+ },
+ {
+ "index": 306,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "the dog collar is black",
+ "question": [
+ "is there the dog collar ?"
+ ],
+ "prompt": "the {} collar is black"
+ },
+ {
+ "index": 307,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "dog has black leash",
+ "question": [
+ "is there dog ?",
+ "is there black leash ?"
+ ],
+ "prompt": "{} has black leash"
+ },
+ {
+ "index": 308,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "dog has black fur",
+ "question": [
+ "is there dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "{} has black fur"
+ },
+ {
+ "index": 309,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "this is a dog collar",
+ "question": [
+ "is there a dog collar ?"
+ ],
+ "prompt": "this is a {} collar"
+ },
+ {
+ "index": 310,
+ "image_id": 2390915,
+ "entity": "dog",
+ "caption": "dog has brown eyes",
+ "question": [
+ "is there dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "{} has brown eyes"
+ },
+ {
+ "index": 311,
+ "image_id": 2390915,
+ "entity": "dog",
+ "caption": "these are the dog's paws",
+ "question": [
+ "are there the dog's paws ?"
+ ],
+ "prompt": "these are the {}'s paws"
+ },
+ {
+ "index": 312,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "a dog is lying on his side",
+ "question": [
+ "is there a dog ?",
+ "is there his side ?"
+ ],
+ "prompt": "a {} is lying on his side"
+ },
+ {
+ "index": 313,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "ear of dog is long",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is long"
+ },
+ {
+ "index": 314,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "The dog's eyes are wide open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are wide open"
+ },
+ {
+ "index": 315,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "The dog is relaxing",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is relaxing"
+ },
+ {
+ "index": 316,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "The dog has nose",
+ "question": [
+ "is there the dog ?",
+ "is there nose ?"
+ ],
+ "prompt": "The {} has nose"
+ },
+ {
+ "index": 317,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "the sling is on dog",
+ "question": [
+ "is there the sling ?",
+ "is there dog ?"
+ ],
+ "prompt": "the sling is on {}"
+ },
+ {
+ "index": 318,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "the eyes are on the dog",
+ "question": [
+ "are there the eyes ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the eyes are on the {}"
+ },
+ {
+ "index": 319,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog's tongue hanging out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue hanging out"
+ },
+ {
+ "index": 320,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog closes his eyes",
+ "question": [
+ "is there the dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "The {} closes his eyes"
+ },
+ {
+ "index": 321,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dogs fur is wet",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "The {}s fur is wet"
+ },
+ {
+ "index": 322,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog has collar on",
+ "question": [
+ "is there the dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "The {} has collar on"
+ },
+ {
+ "index": 323,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog has a black nose",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose"
+ },
+ {
+ "index": 324,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dogs eye is closed",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is closed"
+ },
+ {
+ "index": 325,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog has a large pink tounge",
+ "question": [
+ "is there dog ?",
+ "is there a large pink tounge ?"
+ ],
+ "prompt": "{} has a large pink tounge"
+ },
+ {
+ "index": 326,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "shallow water with dog paws submerged",
+ "question": [
+ "is there shallow water ?",
+ "are there dog paws ?"
+ ],
+ "prompt": "shallow water with {} paws submerged"
+ },
+ {
+ "index": 327,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "tan dog standing in the ocean",
+ "question": [
+ "is there the ocean ?"
+ ],
+ "prompt": "tan {} standing in the ocean"
+ },
+ {
+ "index": 328,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog with his tongue hanging out",
+ "question": [
+ "is there dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "{} with his tongue hanging out"
+ },
+ {
+ "index": 329,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "Th enose od the dog.",
+ "question": [
+ "is there th enose ?",
+ "is there od the dog ?"
+ ],
+ "prompt": "Th enose od the {}."
+ },
+ {
+ "index": 330,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dog rests his head.",
+ "question": [
+ "is there the dog ?",
+ "is there his head ?"
+ ],
+ "prompt": "The {} rests his head."
+ },
+ {
+ "index": 331,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dogs ear",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear"
+ },
+ {
+ "index": 332,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dogs left eye",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye"
+ },
+ {
+ "index": 333,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "long black dog tail curved up",
+ "question": [
+ "is there long black dog tail ?"
+ ],
+ "prompt": "long black {} tail curved up"
+ },
+ {
+ "index": 334,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has a white spot on it's leg",
+ "question": [
+ "is there the dog ?",
+ "is there a white spot ?",
+ "is there it's leg ?"
+ ],
+ "prompt": "the {} has a white spot on it's leg"
+ },
+ {
+ "index": 335,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has a long tail",
+ "question": [
+ "is there the dog ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "the {} has a long tail"
+ },
+ {
+ "index": 336,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has black paw pads",
+ "question": [
+ "is there the dog ?",
+ "are there black paw pads ?"
+ ],
+ "prompt": "the {} has black paw pads"
+ },
+ {
+ "index": 337,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "dog ears are floppy",
+ "question": [
+ "are there dog ears ?"
+ ],
+ "prompt": "{} ears are floppy"
+ },
+ {
+ "index": 338,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "dog eyes are cute",
+ "question": [
+ "are there dog eyes ?"
+ ],
+ "prompt": "{} eyes are cute"
+ },
+ {
+ "index": 339,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "the dog's eyes are closed",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are closed"
+ },
+ {
+ "index": 340,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "The dog has tags on ",
+ "question": [
+ "is there the dog ?",
+ "are there tags ?"
+ ],
+ "prompt": "The {} has tags on "
+ },
+ {
+ "index": 341,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "Mans toes beside dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "Mans toes beside {}"
+ },
+ {
+ "index": 342,
+ "image_id": 2389636,
+ "entity": "dog",
+ "caption": "the dog has nose",
+ "question": [
+ "is there the dog ?",
+ "is there nose ?"
+ ],
+ "prompt": "the {} has nose"
+ },
+ {
+ "index": 343,
+ "image_id": 2388972,
+ "entity": "dog",
+ "caption": "the grass is below the dog",
+ "question": [
+ "is there the grass ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the grass is below the {}"
+ },
+ {
+ "index": 344,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "white dog is standing looking out on the yard",
+ "question": [
+ "is there white dog ?",
+ "is there the yard ?"
+ ],
+ "prompt": "white {} is standing looking out on the yard"
+ },
+ {
+ "index": 345,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog is mostly white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is mostly white"
+ },
+ {
+ "index": 346,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has brown ears",
+ "question": [
+ "is there dog ?",
+ "are there brown ears ?"
+ ],
+ "prompt": "{} has brown ears"
+ },
+ {
+ "index": 347,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has black collar",
+ "question": [
+ "is there dog ?",
+ "is there black collar ?"
+ ],
+ "prompt": "{} has black collar"
+ },
+ {
+ "index": 348,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has white legs",
+ "question": [
+ "is there dog ?",
+ "are there white legs ?"
+ ],
+ "prompt": "{} has white legs"
+ },
+ {
+ "index": 349,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The dog has its head on a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "The {} has its head on a stuffed animal"
+ },
+ {
+ "index": 350,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The gate is behind the dog",
+ "question": [
+ "is there the gate ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The gate is behind the {}"
+ },
+ {
+ "index": 351,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The dog is lying on wood",
+ "question": [
+ "is there the dog ?",
+ "is there wood ?"
+ ],
+ "prompt": "The {} is lying on wood"
+ },
+ {
+ "index": 352,
+ "image_id": 2388066,
+ "entity": "dog",
+ "caption": "dog jumping for frisbee",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?"
+ ],
+ "prompt": "{} jumping for frisbee"
+ },
+ {
+ "index": 353,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "all are secondary to small dog chewing large toothbrush",
+ "question": [
+ "is there small dog ?",
+ "is there large toothbrush ?"
+ ],
+ "prompt": "all are secondary to small {} chewing large toothbrush"
+ },
+ {
+ "index": 354,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "a dog is lying on a bed",
+ "question": [
+ "is there a dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "a {} is lying on a bed"
+ },
+ {
+ "index": 355,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "body of dog is brown",
+ "question": [
+ "is there body ?",
+ "is there dog ?"
+ ],
+ "prompt": "body of {} is brown"
+ },
+ {
+ "index": 356,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "head of dog is brown and white",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is brown and white"
+ },
+ {
+ "index": 357,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "ears of dog are brown",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are brown"
+ },
+ {
+ "index": 358,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "dog has a toothbrush in his mouth",
+ "question": [
+ "is there dog ?",
+ "is there a toothbrush ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has a toothbrush in his mouth"
+ },
+ {
+ "index": 359,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "tail of dog is long and curly",
+ "question": [
+ "is there tail ?",
+ "is there dog ?"
+ ],
+ "prompt": "tail of {} is long and curly"
+ },
+ {
+ "index": 360,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "front legs of dog are long",
+ "question": [
+ "are there front legs ?",
+ "is there dog ?"
+ ],
+ "prompt": "front legs of {} are long"
+ },
+ {
+ "index": 361,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "The dog has a white spot.",
+ "question": [
+ "is there the dog ?",
+ "is there a white spot ?"
+ ],
+ "prompt": "The {} has a white spot."
+ },
+ {
+ "index": 362,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog looks out window",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} looks out window"
+ },
+ {
+ "index": 363,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has dark nose",
+ "question": [
+ "is there dog ?",
+ "is there dark nose ?"
+ ],
+ "prompt": "{} has dark nose"
+ },
+ {
+ "index": 364,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has spotted ears",
+ "question": [
+ "is there dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "{} has spotted ears"
+ },
+ {
+ "index": 365,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has spotted face",
+ "question": [
+ "is there dog ?",
+ "is there face ?"
+ ],
+ "prompt": "{} has spotted face"
+ },
+ {
+ "index": 366,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog is wearing glasses",
+ "question": [
+ "is there dog ?",
+ "are there glasses ?"
+ ],
+ "prompt": "{} is wearing glasses"
+ },
+ {
+ "index": 367,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog has multicolor bandanna",
+ "question": [
+ "is there dog ?",
+ "is there multicolor bandanna ?"
+ ],
+ "prompt": "{} has multicolor bandanna"
+ },
+ {
+ "index": 368,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog has white paws",
+ "question": [
+ "is there dog ?",
+ "are there white paws ?"
+ ],
+ "prompt": "{} has white paws"
+ },
+ {
+ "index": 369,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog is on skateboard",
+ "question": [
+ "is there dog ?",
+ "is there skateboard ?"
+ ],
+ "prompt": "{} is on skateboard"
+ },
+ {
+ "index": 370,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "The dog is on a leash.",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "The {} is on a leash."
+ },
+ {
+ "index": 371,
+ "image_id": 2387470,
+ "entity": "dog",
+ "caption": "The dog's mouth is open. ",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is open. "
+ },
+ {
+ "index": 372,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "black dog jumping in air",
+ "question": [
+ "is there black dog ?",
+ "is there air ?"
+ ],
+ "prompt": "black {} jumping in air"
+ },
+ {
+ "index": 373,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "dog has red collar",
+ "question": [
+ "is there dog ?",
+ "is there red collar ?"
+ ],
+ "prompt": "{} has red collar"
+ },
+ {
+ "index": 374,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "dog has short curly tail",
+ "question": [
+ "is there dog ?",
+ "is there short curly tail ?"
+ ],
+ "prompt": "{} has short curly tail"
+ },
+ {
+ "index": 375,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "grass under dog is green",
+ "question": [
+ "is there grass ?",
+ "is there dog ?"
+ ],
+ "prompt": "grass under {} is green"
+ },
+ {
+ "index": 376,
+ "image_id": 2387387,
+ "entity": "dog",
+ "caption": "dog's tongue sticking out of mouth",
+ "question": [
+ "is there dog's tongue ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{}'s tongue sticking out of mouth"
+ },
+ {
+ "index": 377,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} has a red collar"
+ },
+ {
+ "index": 378,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a brown nose",
+ "question": [
+ "is there the dog ?",
+ "is there a brown nose ?"
+ ],
+ "prompt": "the {} has a brown nose"
+ },
+ {
+ "index": 379,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the cat is under the dog's chin",
+ "question": [
+ "is there the cat ?",
+ "is there the dog's chin ?"
+ ],
+ "prompt": "the cat is under the {}'s chin"
+ },
+ {
+ "index": 380,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a white face",
+ "question": [
+ "is there the dog ?",
+ "is there a white face ?"
+ ],
+ "prompt": "the {} has a white face"
+ },
+ {
+ "index": 381,
+ "image_id": 2386600,
+ "entity": "dog",
+ "caption": "The frisbee is in front of the dog",
+ "question": [
+ "is there the frisbee ?",
+ "is there front ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The frisbee is in front of the {}"
+ },
+ {
+ "index": 382,
+ "image_id": 2386600,
+ "entity": "dog",
+ "caption": "dog's teeth showing",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth showing"
+ },
+ {
+ "index": 383,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "The dog has a black nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose."
+ },
+ {
+ "index": 384,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "red bandana dog is wearing",
+ "question": [
+ "is there red bandana dog ?"
+ ],
+ "prompt": "red bandana {} is wearing"
+ },
+ {
+ "index": 385,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "dog's face looking at frisbees",
+ "question": [
+ "is there dog's face ?",
+ "are there frisbees ?"
+ ],
+ "prompt": "{}'s face looking at frisbees"
+ },
+ {
+ "index": 386,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "dog is laying on suit case",
+ "question": [
+ "is there dog ?",
+ "is there suit case ?"
+ ],
+ "prompt": "{} is laying on suit case"
+ },
+ {
+ "index": 387,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "The dog is wearing a gold tag.",
+ "question": [
+ "is there the dog ?",
+ "is there a gold tag ?"
+ ],
+ "prompt": "The {} is wearing a gold tag."
+ },
+ {
+ "index": 388,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "The dog is sitting on a suitcase.",
+ "question": [
+ "is there the dog ?",
+ "is there a suitcase ?"
+ ],
+ "prompt": "The {} is sitting on a suitcase."
+ },
+ {
+ "index": 389,
+ "image_id": 2386037,
+ "entity": "dog",
+ "caption": "dog is jumping above ground",
+ "question": [
+ "is there dog ?",
+ "is there ground ?"
+ ],
+ "prompt": "{} is jumping above ground"
+ },
+ {
+ "index": 390,
+ "image_id": 2386037,
+ "entity": "dog",
+ "caption": "dog is wearing collar",
+ "question": [
+ "is there dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} is wearing collar"
+ },
+ {
+ "index": 391,
+ "image_id": 2386031,
+ "entity": "dog",
+ "caption": "dog's tail is up in the air",
+ "question": [
+ "is there dog's tail ?",
+ "is there the air ?"
+ ],
+ "prompt": "{}'s tail is up in the air"
+ },
+ {
+ "index": 392,
+ "image_id": 2386031,
+ "entity": "dog",
+ "caption": "dog's left perked up ear",
+ "question": [
+ "is there ear ?"
+ ],
+ "prompt": "{}'s left perked up ear"
+ },
+ {
+ "index": 393,
+ "image_id": 2386010,
+ "entity": "dog",
+ "caption": "dogs face in a side mirror",
+ "question": [
+ "are there dogs ?",
+ "is there a side mirror ?"
+ ],
+ "prompt": "{}s face in a side mirror"
+ },
+ {
+ "index": 394,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "nose of dog is wet",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is wet"
+ },
+ {
+ "index": 395,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "eyes of dog are wide open",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are wide open"
+ },
+ {
+ "index": 396,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the frisbee is in the dog's mouth",
+ "question": [
+ "is there the frisbee ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "the frisbee is in the {}'s mouth"
+ },
+ {
+ "index": 397,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the dog's eyes are wild and wide open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are wild and wide open"
+ },
+ {
+ "index": 398,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the face of the dog is tricolored",
+ "question": [
+ "is there the face ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the face of the {} is tricolored"
+ },
+ {
+ "index": 399,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the dog's paw is white",
+ "question": [
+ "is there the dog's paw ?"
+ ],
+ "prompt": "the {}'s paw is white"
+ },
+ {
+ "index": 400,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "grass is under the the dog",
+ "question": [
+ "is there grass ?",
+ "is there the the dog ?"
+ ],
+ "prompt": "grass is under the the {}"
+ },
+ {
+ "index": 401,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog is wearing a cap",
+ "question": [
+ "is there dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "{} is wearing a cap"
+ },
+ {
+ "index": 402,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog is wearing eyeglasses",
+ "question": [
+ "is there dog ?",
+ "are there eyeglasses ?"
+ ],
+ "prompt": "{} is wearing eyeglasses"
+ },
+ {
+ "index": 403,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog's mouth is open",
+ "question": [
+ "is there dog's mouth ?"
+ ],
+ "prompt": "{}'s mouth is open"
+ },
+ {
+ "index": 404,
+ "image_id": 2385762,
+ "entity": "dog",
+ "caption": "a dog has a retractable leash attached to the collar",
+ "question": [
+ "is there a dog ?",
+ "is there a retractable leash ?",
+ "is there the collar ?"
+ ],
+ "prompt": "a {} has a retractable leash attached to the collar"
+ },
+ {
+ "index": 405,
+ "image_id": 2385757,
+ "entity": "dog",
+ "caption": "dog laying in dirt with eyes closed",
+ "question": [
+ "is there dog ?",
+ "is there dirt ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} laying in dirt with eyes closed"
+ },
+ {
+ "index": 406,
+ "image_id": 2385595,
+ "entity": "dog",
+ "caption": "the dog is lying on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is lying on the bed"
+ },
+ {
+ "index": 407,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man is holding two dogs",
+ "question": [
+ "is there man ?",
+ "are there two dogs ?"
+ ],
+ "prompt": "man is holding two {}s"
+ },
+ {
+ "index": 408,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "dog in rear has red collar",
+ "question": [
+ "is there dog ?",
+ "is there rear ?",
+ "is there red collar ?"
+ ],
+ "prompt": "{} in rear has red collar"
+ },
+ {
+ "index": 409,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man is crouching near two dogs",
+ "question": [
+ "is there man ?",
+ "are there two dogs ?"
+ ],
+ "prompt": "man is crouching near two {}s"
+ },
+ {
+ "index": 410,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "dog with its mouth wide open",
+ "question": [
+ "is there dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "{} with its mouth wide open"
+ },
+ {
+ "index": 411,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man's hand resting on dog's hip",
+ "question": [
+ "is there man's hand ?",
+ "is there dog's hip ?"
+ ],
+ "prompt": "man's hand resting on {}'s hip"
+ },
+ {
+ "index": 412,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's eyes are brown",
+ "question": [
+ "are there dog's eyes ?"
+ ],
+ "prompt": "{}'s eyes are brown"
+ },
+ {
+ "index": 413,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's whiskers are white",
+ "question": [
+ "are there dog's whiskers ?"
+ ],
+ "prompt": "{}'s whiskers are white"
+ },
+ {
+ "index": 414,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog is next to the window",
+ "question": [
+ "is there dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "{} is next to the window"
+ },
+ {
+ "index": 415,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's ears are down",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are down"
+ },
+ {
+ "index": 416,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog has a silver tag",
+ "question": [
+ "is there the dog ?",
+ "is there a silver tag ?"
+ ],
+ "prompt": "the {} has a silver tag"
+ },
+ {
+ "index": 417,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog is in the passenger seat",
+ "question": [
+ "is there the dog ?",
+ "is there the passenger seat ?"
+ ],
+ "prompt": "the {} is in the passenger seat"
+ },
+ {
+ "index": 418,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog has white parts of the eyes showing",
+ "question": [
+ "is there the dog ?",
+ "are there white parts ?",
+ "are there the eyes ?"
+ ],
+ "prompt": "the {} has white parts of the eyes showing"
+ },
+ {
+ "index": 419,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "A dog has a tag",
+ "question": [
+ "is there a dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "A {} has a tag"
+ },
+ {
+ "index": 420,
+ "image_id": 2385345,
+ "entity": "dog",
+ "caption": "the dog is leaning on the bedding",
+ "question": [
+ "is there the dog ?",
+ "is there the bedding ?"
+ ],
+ "prompt": "the {} is leaning on the bedding"
+ },
+ {
+ "index": 421,
+ "image_id": 2385345,
+ "entity": "dog",
+ "caption": "the bed is behind the dog",
+ "question": [
+ "is there the bed ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the bed is behind the {}"
+ },
+ {
+ "index": 422,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "white dog is lying on a bed",
+ "question": [
+ "is there white dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "white {} is lying on a bed"
+ },
+ {
+ "index": 423,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "tail of dog is on bed",
+ "question": [
+ "is there tail ?",
+ "is there dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "tail of {} is on bed"
+ },
+ {
+ "index": 424,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "eyes of dog are black",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are black"
+ },
+ {
+ "index": 425,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "eyes and nose of dog are black",
+ "question": [
+ "are there eyes ?",
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes and nose of {} are black"
+ },
+ {
+ "index": 426,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "a dog collar has a tag",
+ "question": [
+ "is there a dog collar ?",
+ "is there a tag ?"
+ ],
+ "prompt": "a {} collar has a tag"
+ },
+ {
+ "index": 427,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "legs and chest of dog are white",
+ "question": [
+ "are there legs ?",
+ "is there chest ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs and chest of {} are white"
+ },
+ {
+ "index": 428,
+ "image_id": 2384917,
+ "entity": "dog",
+ "caption": "dogs tongue sticking out",
+ "question": [
+ "are there dogs ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{}s tongue sticking out"
+ },
+ {
+ "index": 429,
+ "image_id": 2384917,
+ "entity": "dog",
+ "caption": "brown pointy ear on dog",
+ "question": [
+ "is there brown pointy ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "brown pointy ear on {}"
+ },
+ {
+ "index": 430,
+ "image_id": 2384563,
+ "entity": "dog",
+ "caption": "dog curled up on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} curled up on a couch"
+ },
+ {
+ "index": 431,
+ "image_id": 2384563,
+ "entity": "dog",
+ "caption": "a dog curled up on a cushion",
+ "question": [
+ "is there a dog ?",
+ "is there a cushion ?"
+ ],
+ "prompt": "a {} curled up on a cushion"
+ },
+ {
+ "index": 432,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "dog is wearing a green collar ",
+ "question": [
+ "is there dog ?",
+ "is there a green collar ?"
+ ],
+ "prompt": "{} is wearing a green collar "
+ },
+ {
+ "index": 433,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "the dogs ear is bent ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s ear is bent "
+ },
+ {
+ "index": 434,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "the dogs ear ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s ear "
+ },
+ {
+ "index": 435,
+ "image_id": 2384424,
+ "entity": "dog",
+ "caption": "the dog is beside the bike",
+ "question": [
+ "is there the dog ?",
+ "is there the bike ?"
+ ],
+ "prompt": "the {} is beside the bike"
+ },
+ {
+ "index": 436,
+ "image_id": 2384322,
+ "entity": "dog",
+ "caption": "Reindeer stuffed animal on the dog.",
+ "question": [
+ "is there reindeer ?",
+ "is there animal ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Reindeer stuffed animal on the {}."
+ },
+ {
+ "index": 437,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "dog's collar is green",
+ "question": [
+ "is there dog's collar ?"
+ ],
+ "prompt": "{}'s collar is green"
+ },
+ {
+ "index": 438,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "the dog bed is plaid patterned",
+ "question": [
+ "is there the dog bed ?"
+ ],
+ "prompt": "the {} bed is plaid patterned"
+ },
+ {
+ "index": 439,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "dog's ears pointing upwards",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears pointing upwards"
+ },
+ {
+ "index": 440,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "Black pillow dog is laying on",
+ "question": [
+ "is there black pillow dog ?"
+ ],
+ "prompt": "Black pillow {} is laying on"
+ },
+ {
+ "index": 441,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "Collar dog is wearing",
+ "question": [
+ "is there collar dog ?"
+ ],
+ "prompt": "Collar {} is wearing"
+ },
+ {
+ "index": 442,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is tan",
+ "question": [
+ "is there dog toy ?",
+ "is there tan ?"
+ ],
+ "prompt": "{} toy is tan"
+ },
+ {
+ "index": 443,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is lying on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is lying on the floor"
+ },
+ {
+ "index": 444,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has the toy in it's mouth",
+ "question": [
+ "is there dog ?",
+ "is there the toy ?"
+ ],
+ "prompt": "{} has the toy in it's mouth"
+ },
+ {
+ "index": 445,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is tan and hairy",
+ "question": [
+ "is there dog toy ?"
+ ],
+ "prompt": "{} toy is tan and hairy"
+ },
+ {
+ "index": 446,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has whiskers that are white",
+ "question": [
+ "is there dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "{} has whiskers that are white"
+ },
+ {
+ "index": 447,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is laying on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is laying on the floor"
+ },
+ {
+ "index": 448,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has black ears",
+ "question": [
+ "is there dog ?",
+ "are there black ears ?"
+ ],
+ "prompt": "{} has black ears"
+ },
+ {
+ "index": 449,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is lying down on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is lying down on the floor"
+ },
+ {
+ "index": 450,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is brown",
+ "question": [
+ "is there dog toy ?"
+ ],
+ "prompt": "{} toy is brown"
+ },
+ {
+ "index": 451,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has toy in it's mouth",
+ "question": [
+ "is there dog ?",
+ "is there toy ?",
+ "is there it's mouth ?"
+ ],
+ "prompt": "{} has toy in it's mouth"
+ },
+ {
+ "index": 452,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has white whiskers",
+ "question": [
+ "is there dog ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "{} has white whiskers"
+ },
+ {
+ "index": 453,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has a nose",
+ "question": [
+ "is there the dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "the {} has a nose"
+ },
+ {
+ "index": 454,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has eyes",
+ "question": [
+ "is there the dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {} has eyes"
+ },
+ {
+ "index": 455,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has an ear",
+ "question": [
+ "is there the dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "the {} has an ear"
+ },
+ {
+ "index": 456,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "The dog's face looks angry",
+ "question": [
+ "is there the dog's face ?"
+ ],
+ "prompt": "The {}'s face looks angry"
+ },
+ {
+ "index": 457,
+ "image_id": 2383242,
+ "entity": "dog",
+ "caption": "The dog is between the persons legs",
+ "question": [
+ "is there the dog ?",
+ "are there the persons legs ?"
+ ],
+ "prompt": "The {} is between the persons legs"
+ },
+ {
+ "index": 458,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is on the counter",
+ "question": [
+ "is there the dog ?",
+ "is there the counter ?"
+ ],
+ "prompt": "The {} is on the counter"
+ },
+ {
+ "index": 459,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dogs nose is black",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is black"
+ },
+ {
+ "index": 460,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog has long fur.",
+ "question": [
+ "is there the dog ?",
+ "is there long fur ?"
+ ],
+ "prompt": "The {} has long fur."
+ },
+ {
+ "index": 461,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is on a table.",
+ "question": [
+ "is there the dog ?",
+ "is there a table ?"
+ ],
+ "prompt": "The {} is on a table."
+ },
+ {
+ "index": 462,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is sniffing the newspaper.",
+ "question": [
+ "is there the dog ?",
+ "is there the newspaper ?"
+ ],
+ "prompt": "The {} is sniffing the newspaper."
+ },
+ {
+ "index": 463,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog has curly fur",
+ "question": [
+ "is there the dog ?",
+ "is there curly fur ?"
+ ],
+ "prompt": "The {} has curly fur"
+ },
+ {
+ "index": 464,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s nose is black",
+ "question": [
+ "is there the dog`s nose ?"
+ ],
+ "prompt": "the {}`s nose is black"
+ },
+ {
+ "index": 465,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s eyes are black",
+ "question": [
+ "are there the dog`s eyes ?"
+ ],
+ "prompt": "the {}`s eyes are black"
+ },
+ {
+ "index": 466,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s hair is curly",
+ "question": [
+ "is there the dog`s hair ?"
+ ],
+ "prompt": "the {}`s hair is curly"
+ },
+ {
+ "index": 467,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog is smelling the paper",
+ "question": [
+ "is there the dog ?",
+ "is there the paper ?"
+ ],
+ "prompt": "the {} is smelling the paper"
+ },
+ {
+ "index": 468,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "a dog is asleep",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "a {} is asleep"
+ },
+ {
+ "index": 469,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog's paw is on the remote",
+ "question": [
+ "is there the dog's paw ?",
+ "is there the remote ?"
+ ],
+ "prompt": "The {}'s paw is on the remote"
+ },
+ {
+ "index": 470,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog's eyes are closed",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are closed"
+ },
+ {
+ "index": 471,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog is sleep on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there sleep ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is sleep on the couch."
+ },
+ {
+ "index": 472,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog has two ears.",
+ "question": [
+ "is there the dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "The {} has two ears."
+ },
+ {
+ "index": 473,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "A dog is in the foreground",
+ "question": [
+ "is there a dog ?",
+ "is there the foreground ?"
+ ],
+ "prompt": "A {} is in the foreground"
+ },
+ {
+ "index": 474,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "the dog`s nose is brown",
+ "question": [
+ "is there the dog`s nose ?"
+ ],
+ "prompt": "the {}`s nose is brown"
+ },
+ {
+ "index": 475,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "the dog`s stomach is wet",
+ "question": [
+ "is there the dog`s stomach ?"
+ ],
+ "prompt": "the {}`s stomach is wet"
+ },
+ {
+ "index": 476,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "dog is in the beach",
+ "question": [
+ "is there dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "{} is in the beach"
+ },
+ {
+ "index": 477,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "tail of dog is up",
+ "question": [
+ "is there tail ?",
+ "is there dog ?"
+ ],
+ "prompt": "tail of {} is up"
+ },
+ {
+ "index": 478,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "face of dog is white and brown",
+ "question": [
+ "is there face ?",
+ "is there dog ?"
+ ],
+ "prompt": "face of {} is white and brown"
+ },
+ {
+ "index": 479,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "collar of dog is black",
+ "question": [
+ "is there collar ?",
+ "is there dog ?"
+ ],
+ "prompt": "collar of {} is black"
+ },
+ {
+ "index": 480,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "ears of dog are down ",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are down "
+ },
+ {
+ "index": 481,
+ "image_id": 2381848,
+ "entity": "dog",
+ "caption": "ear of dog is brown",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is brown"
+ },
+ {
+ "index": 482,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "Leash attached to the dog",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Leash attached to the {}"
+ },
+ {
+ "index": 483,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "the dog is wearing a floater",
+ "question": [
+ "is there the dog ?",
+ "is there a floater ?"
+ ],
+ "prompt": "the {} is wearing a floater"
+ },
+ {
+ "index": 484,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "this is the rope tying the dog",
+ "question": [
+ "is there the rope ?",
+ "is there the dog ?"
+ ],
+ "prompt": "this is the rope tying the {}"
+ },
+ {
+ "index": 485,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "bull dog is wearing a black and red vest ",
+ "question": [
+ "is there bull dog ?",
+ "is there a black and red vest ?"
+ ],
+ "prompt": "bull {} is wearing a black and red vest "
+ },
+ {
+ "index": 486,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "bull dog is standing on a blue surfboard ",
+ "question": [
+ "is there bull dog ?",
+ "is there a blue surfboard ?"
+ ],
+ "prompt": "bull {} is standing on a blue surfboard "
+ },
+ {
+ "index": 487,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog has an overbite",
+ "question": [
+ "is there the dog ?",
+ "is there an overbite ?"
+ ],
+ "prompt": "the {} has an overbite"
+ },
+ {
+ "index": 488,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog is wearing a life vest",
+ "question": [
+ "is there the dog ?",
+ "is there a life vest ?"
+ ],
+ "prompt": "the {} is wearing a life vest"
+ },
+ {
+ "index": 489,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog has front legs",
+ "question": [
+ "is there the dog ?",
+ "are there front legs ?"
+ ],
+ "prompt": "the {} has front legs"
+ },
+ {
+ "index": 490,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog is on the board",
+ "question": [
+ "is there the dog ?",
+ "is there the board ?"
+ ],
+ "prompt": "the {} is on the board"
+ },
+ {
+ "index": 491,
+ "image_id": 2381375,
+ "entity": "dog",
+ "caption": "the dog is lying on the ground",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is lying on the ground"
+ },
+ {
+ "index": 492,
+ "image_id": 2381375,
+ "entity": "dog",
+ "caption": "the dog is on a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "the {} is on a leash"
+ },
+ {
+ "index": 493,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's reflection is in a mirror.",
+ "question": [
+ "is there the dog's reflection ?",
+ "is there a mirror ?"
+ ],
+ "prompt": "The {}'s reflection is in a mirror."
+ },
+ {
+ "index": 494,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's tongue is showing. ",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "The {}'s tongue is showing. "
+ },
+ {
+ "index": 495,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's legs are in the foreground.",
+ "question": [
+ "are there the dog's legs ?",
+ "is there the foreground ?"
+ ],
+ "prompt": "The {}'s legs are in the foreground."
+ },
+ {
+ "index": 496,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's nose is black. ",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black. "
+ },
+ {
+ "index": 497,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has an eye",
+ "question": [
+ "is there the dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "the {} has an eye"
+ },
+ {
+ "index": 498,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has a tongue",
+ "question": [
+ "is there the dog ?",
+ "is there a tongue ?"
+ ],
+ "prompt": "the {} has a tongue"
+ },
+ {
+ "index": 499,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has a long ear",
+ "question": [
+ "is there the dog ?",
+ "is there a long ear ?"
+ ],
+ "prompt": "the {} has a long ear"
+ },
+ {
+ "index": 500,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has its mouth open",
+ "question": [
+ "is there the dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has its mouth open"
+ },
+ {
+ "index": 501,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar"
+ },
+ {
+ "index": 502,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog's collar is blue",
+ "question": [
+ "is there the dog's collar ?"
+ ],
+ "prompt": "the {}'s collar is blue"
+ },
+ {
+ "index": 503,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has a pointy ear",
+ "question": [
+ "is there the dog ?",
+ "is there a pointy ear ?"
+ ],
+ "prompt": "the {} has a pointy ear"
+ },
+ {
+ "index": 504,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has pointy ears",
+ "question": [
+ "is there dog ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "{} has pointy ears"
+ },
+ {
+ "index": 505,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has short legs",
+ "question": [
+ "is there dog ?",
+ "are there short legs ?"
+ ],
+ "prompt": "{} has short legs"
+ },
+ {
+ "index": 506,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has pointy teeth",
+ "question": [
+ "is there dog ?",
+ "are there pointy teeth ?"
+ ],
+ "prompt": "{} has pointy teeth"
+ },
+ {
+ "index": 507,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog is attempting to catch a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is attempting to catch a frisbee"
+ },
+ {
+ "index": 508,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog is down on his \"knees\"",
+ "question": [
+ "is there the dog ?",
+ "are there his \"knees ?"
+ ],
+ "prompt": "the {} is down on his \"knees\""
+ },
+ {
+ "index": 509,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog's mouth wide open",
+ "question": [],
+ "prompt": "{}'s mouth wide open"
+ },
+ {
+ "index": 510,
+ "image_id": 2380220,
+ "entity": "dog",
+ "caption": "dog is laying on stuffed animal ",
+ "question": [
+ "is there dog ?",
+ "is there stuffed animal ?"
+ ],
+ "prompt": "{} is laying on stuffed animal "
+ },
+ {
+ "index": 511,
+ "image_id": 2380220,
+ "entity": "dog",
+ "caption": "dogs ear is black ",
+ "question": [
+ "are there dogs ?"
+ ],
+ "prompt": "{}s ear is black "
+ },
+ {
+ "index": 512,
+ "image_id": 2379710,
+ "entity": "dog",
+ "caption": "water splashing next to dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "water splashing next to {}"
+ },
+ {
+ "index": 513,
+ "image_id": 2379519,
+ "entity": "dog",
+ "caption": "The dog has it's tongue out.",
+ "question": [
+ "is there the dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "The {} has it's tongue out."
+ },
+ {
+ "index": 514,
+ "image_id": 2379519,
+ "entity": "dog",
+ "caption": "The dog has brown eyes.",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "The {} has brown eyes."
+ },
+ {
+ "index": 515,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a brown spot over one eye.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown spot ?",
+ "is there one eye ?"
+ ],
+ "prompt": "The {} has a brown spot over one eye."
+ },
+ {
+ "index": 516,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a spotted ear.",
+ "question": [
+ "is there the dog ?",
+ "is there a spotted ear ?"
+ ],
+ "prompt": "The {} has a spotted ear."
+ },
+ {
+ "index": 517,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a short tail.",
+ "question": [
+ "is there the dog ?",
+ "is there a short tail ?"
+ ],
+ "prompt": "The {} has a short tail."
+ },
+ {
+ "index": 518,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar."
+ },
+ {
+ "index": 519,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a closed mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a closed mouth ?"
+ ],
+ "prompt": "The {} has a closed mouth."
+ },
+ {
+ "index": 520,
+ "image_id": 2378890,
+ "entity": "dog",
+ "caption": "The dog has a chain collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a chain collar ?"
+ ],
+ "prompt": "The {} has a chain collar."
+ },
+ {
+ "index": 521,
+ "image_id": 2378890,
+ "entity": "dog",
+ "caption": "The dog is playing with the frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is playing with the frisbee."
+ },
+ {
+ "index": 522,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "dog has grey fur",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has grey fur"
+ },
+ {
+ "index": 523,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "other dog has black fur",
+ "question": [
+ "is there other dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "other {} has black fur"
+ },
+ {
+ "index": 524,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "other dog has brown face",
+ "question": [
+ "is there other dog ?",
+ "is there brown face ?"
+ ],
+ "prompt": "other {} has brown face"
+ },
+ {
+ "index": 525,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "nose of the dog with mouth closed",
+ "question": [
+ "is there nose ?",
+ "is there the dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "nose of the {} with mouth closed"
+ },
+ {
+ "index": 526,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "eye of the dog with mouth shut",
+ "question": [
+ "is there eye ?",
+ "is there the dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "eye of the {} with mouth shut"
+ },
+ {
+ "index": 527,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog's tongue is sticking out",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "the {}'s tongue is sticking out"
+ },
+ {
+ "index": 528,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog is wearing a harness",
+ "question": [
+ "is there the dog ?",
+ "is there a harness ?"
+ ],
+ "prompt": "the {} is wearing a harness"
+ },
+ {
+ "index": 529,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog has whiskers ",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "the {} has whiskers "
+ },
+ {
+ "index": 530,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog's collar has a silver tag",
+ "question": [
+ "is there the dog's collar ?",
+ "is there a silver tag ?"
+ ],
+ "prompt": "the {}'s collar has a silver tag"
+ },
+ {
+ "index": 531,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog has teeth",
+ "question": [
+ "is there the dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "the {} has teeth"
+ },
+ {
+ "index": 532,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dogs curved tail",
+ "question": [
+ "are there the dogs ?",
+ "is there tail ?"
+ ],
+ "prompt": "the {}s curved tail"
+ },
+ {
+ "index": 533,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog collar is dark brown",
+ "question": [
+ "is there the dog collar ?"
+ ],
+ "prompt": "the {} collar is dark brown"
+ },
+ {
+ "index": 534,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s mouth is open",
+ "question": [
+ "is there the dog`s mouth ?"
+ ],
+ "prompt": "the {}`s mouth is open"
+ },
+ {
+ "index": 535,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s neck is white",
+ "question": [
+ "is there the dog`s neck ?"
+ ],
+ "prompt": "the {}`s neck is white"
+ },
+ {
+ "index": 536,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s face is multi colored",
+ "question": [
+ "is there the dog`s face ?"
+ ],
+ "prompt": "the {}`s face is multi colored"
+ },
+ {
+ "index": 537,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "paws of dog are black",
+ "question": [
+ "are there paws ?",
+ "is there dog ?"
+ ],
+ "prompt": "paws of {} are black"
+ },
+ {
+ "index": 538,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "hair eyes of dog are big",
+ "question": [
+ "are there hair eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "hair eyes of {} are big"
+ },
+ {
+ "index": 539,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "dog is wearing a bandana",
+ "question": [
+ "is there dog ?",
+ "is there a bandana ?"
+ ],
+ "prompt": "{} is wearing a bandana"
+ },
+ {
+ "index": 540,
+ "image_id": 2377946,
+ "entity": "dog",
+ "caption": "The dog is on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The {} is on the bed"
+ },
+ {
+ "index": 541,
+ "image_id": 2377946,
+ "entity": "dog",
+ "caption": "The dog has a red blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a red blanket ?"
+ ],
+ "prompt": "The {} has a red blanket"
+ },
+ {
+ "index": 542,
+ "image_id": 2377695,
+ "entity": "dog",
+ "caption": "the dogs pink tounge",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s pink tounge"
+ },
+ {
+ "index": 543,
+ "image_id": 2377541,
+ "entity": "dog",
+ "caption": "a dogs ear with black spots",
+ "question": [
+ "are there a dogs ?",
+ "are there black spots ?"
+ ],
+ "prompt": "a {}s ear with black spots"
+ },
+ {
+ "index": 544,
+ "image_id": 2377541,
+ "entity": "dog",
+ "caption": "wet dog standing in pond",
+ "question": [
+ "is there wet dog ?",
+ "is there pond ?"
+ ],
+ "prompt": "wet {} standing in pond"
+ },
+ {
+ "index": 545,
+ "image_id": 2377276,
+ "entity": "dog",
+ "caption": "fur of dog is long",
+ "question": [
+ "is there fur ?",
+ "is there dog ?"
+ ],
+ "prompt": "fur of {} is long"
+ },
+ {
+ "index": 546,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog's snout is black",
+ "question": [
+ "is there the dog's snout ?"
+ ],
+ "prompt": "the {}'s snout is black"
+ },
+ {
+ "index": 547,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog has a leather collar",
+ "question": [
+ "is there the dog ?",
+ "is there a leather collar ?"
+ ],
+ "prompt": "the {} has a leather collar"
+ },
+ {
+ "index": 548,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog has black ears ",
+ "question": [
+ "is there the dog ?",
+ "are there black ears ?"
+ ],
+ "prompt": "the {} has black ears "
+ },
+ {
+ "index": 549,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "the dog has an orange collar ",
+ "question": [
+ "is there the dog ?",
+ "is there an orange collar ?"
+ ],
+ "prompt": "the {} has an orange collar "
+ },
+ {
+ "index": 550,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "this is an ear of a dog",
+ "question": [
+ "is there an ear ?",
+ "is there a dog ?"
+ ],
+ "prompt": "this is an ear of a {}"
+ },
+ {
+ "index": 551,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "this is a tongue of a dog",
+ "question": [
+ "is there a tongue ?",
+ "is there a dog ?"
+ ],
+ "prompt": "this is a tongue of a {}"
+ },
+ {
+ "index": 552,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "two dogs leashed to post",
+ "question": [
+ "are there two dogs ?"
+ ],
+ "prompt": "two {}s leashed to post"
+ },
+ {
+ "index": 553,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "two dogs tied to a tree",
+ "question": [
+ "are there two dogs ?",
+ "is there a tree ?"
+ ],
+ "prompt": "two {}s tied to a tree"
+ },
+ {
+ "index": 554,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog has it's mouth open",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has it's mouth open"
+ },
+ {
+ "index": 555,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog is leaning against the sofa",
+ "question": [
+ "is there dog ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "{} is leaning against the sofa"
+ },
+ {
+ "index": 556,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog's teeth are white",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth are white"
+ },
+ {
+ "index": 557,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "A dog is smelling a cat",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A {} is smelling a cat"
+ },
+ {
+ "index": 558,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "An old dog is greeting the new cat",
+ "question": [
+ "is there an old dog ?",
+ "is there the new cat ?"
+ ],
+ "prompt": "An old {} is greeting the new cat"
+ },
+ {
+ "index": 559,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "A cat is friends with a dog",
+ "question": [
+ "is there a cat ?",
+ "are there friends ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A cat is friends with a {}"
+ },
+ {
+ "index": 560,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "dog has two ears.",
+ "question": [
+ "is there dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "{} has two ears."
+ },
+ {
+ "index": 561,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has purple collar",
+ "question": [
+ "is there dog ?",
+ "is there purple collar ?"
+ ],
+ "prompt": "{} has purple collar"
+ },
+ {
+ "index": 562,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has brown nose",
+ "question": [
+ "is there dog ?",
+ "is there brown nose ?"
+ ],
+ "prompt": "{} has brown nose"
+ },
+ {
+ "index": 563,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has light brown hair",
+ "question": [
+ "is there dog ?",
+ "is there light brown hair ?"
+ ],
+ "prompt": "{} has light brown hair"
+ },
+ {
+ "index": 564,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has dark brown ears",
+ "question": [
+ "is there dog ?",
+ "are there dark brown ears ?"
+ ],
+ "prompt": "{} has dark brown ears"
+ },
+ {
+ "index": 565,
+ "image_id": 2375658,
+ "entity": "dog",
+ "caption": "Sad looking dog face",
+ "question": [
+ "is there sad looking dog face ?"
+ ],
+ "prompt": "Sad looking {} face"
+ },
+ {
+ "index": 566,
+ "image_id": 2375561,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue harness",
+ "question": [
+ "is there the dog ?",
+ "is there a blue harness ?"
+ ],
+ "prompt": "The {} is wearing a blue harness"
+ },
+ {
+ "index": 567,
+ "image_id": 2375561,
+ "entity": "dog",
+ "caption": "The dog is standing on a chair.",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "The {} is standing on a chair."
+ },
+ {
+ "index": 568,
+ "image_id": 2375451,
+ "entity": "dog",
+ "caption": "the dogs nose is black ",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is black "
+ },
+ {
+ "index": 569,
+ "image_id": 2375428,
+ "entity": "dog",
+ "caption": "The dog is looking at the camera",
+ "question": [
+ "is there the dog ?",
+ "is there the camera ?"
+ ],
+ "prompt": "The {} is looking at the camera"
+ },
+ {
+ "index": 570,
+ "image_id": 2375428,
+ "entity": "dog",
+ "caption": "The dog has long fur",
+ "question": [
+ "is there the dog ?",
+ "is there long fur ?"
+ ],
+ "prompt": "The {} has long fur"
+ },
+ {
+ "index": 571,
+ "image_id": 2374930,
+ "entity": "dog",
+ "caption": "baby is leaning on a dog",
+ "question": [
+ "is there baby ?",
+ "is there a dog ?"
+ ],
+ "prompt": "baby is leaning on a {}"
+ },
+ {
+ "index": 572,
+ "image_id": 2374930,
+ "entity": "dog",
+ "caption": "nose of dog is brown ",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is brown "
+ },
+ {
+ "index": 573,
+ "image_id": 2374268,
+ "entity": "dog",
+ "caption": "the dog's leg hanging over the sofa",
+ "question": [
+ "is there the dog's leg ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "the {}'s leg hanging over the sofa"
+ },
+ {
+ "index": 574,
+ "image_id": 2374268,
+ "entity": "dog",
+ "caption": "dog has face buried in the couch",
+ "question": [
+ "is there dog ?",
+ "is there face ?",
+ "is there the couch ?"
+ ],
+ "prompt": "{} has face buried in the couch"
+ },
+ {
+ "index": 575,
+ "image_id": 2374132,
+ "entity": "dog",
+ "caption": "dog has light brown paws",
+ "question": [
+ "is there dog ?",
+ "are there light brown paws ?"
+ ],
+ "prompt": "{} has light brown paws"
+ },
+ {
+ "index": 576,
+ "image_id": 2374013,
+ "entity": "dog",
+ "caption": "dog's ears are light brown",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are light brown"
+ },
+ {
+ "index": 577,
+ "image_id": 2373955,
+ "entity": "dog",
+ "caption": "a brown hat the dog is wearing",
+ "question": [
+ "is there a brown hat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a brown hat the {} is wearing"
+ },
+ {
+ "index": 578,
+ "image_id": 2373955,
+ "entity": "dog",
+ "caption": "black dog kissing man",
+ "question": [
+ "is there black dog kissing man ?"
+ ],
+ "prompt": "black {} kissing man"
+ },
+ {
+ "index": 579,
+ "image_id": 2373533,
+ "entity": "dog",
+ "caption": "eyes of dog are big",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are big"
+ },
+ {
+ "index": 580,
+ "image_id": 2373533,
+ "entity": "dog",
+ "caption": "mouth of dog is touching a rail",
+ "question": [
+ "is there mouth ?",
+ "is there dog ?",
+ "is there a rail ?"
+ ],
+ "prompt": "mouth of {} is touching a rail"
+ },
+ {
+ "index": 581,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dog is wearing pink collar",
+ "question": [
+ "is there dog ?",
+ "is there pink collar ?"
+ ],
+ "prompt": "{} is wearing pink collar"
+ },
+ {
+ "index": 582,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dogs nose is brown",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is brown"
+ },
+ {
+ "index": 583,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dog right ear is brown",
+ "question": [
+ "is there dog right ear ?"
+ ],
+ "prompt": "{} right ear is brown"
+ },
+ {
+ "index": 584,
+ "image_id": 2373155,
+ "entity": "dog",
+ "caption": "dogs has a chain on his neck",
+ "question": [
+ "are there dogs ?",
+ "is there a chain ?",
+ "is there his neck ?"
+ ],
+ "prompt": "{}s has a chain on his neck"
+ },
+ {
+ "index": 585,
+ "image_id": 2373141,
+ "entity": "dog",
+ "caption": "This is a man with a dog",
+ "question": [
+ "is there a man ?",
+ "is there a dog ?"
+ ],
+ "prompt": "This is a man with a {}"
+ },
+ {
+ "index": 586,
+ "image_id": 2373109,
+ "entity": "dog",
+ "caption": "the dog is on the ground ",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is on the ground "
+ },
+ {
+ "index": 587,
+ "image_id": 2373073,
+ "entity": "dog",
+ "caption": "dog is wearing a hat ",
+ "question": [
+ "is there dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "{} is wearing a hat "
+ },
+ {
+ "index": 588,
+ "image_id": 2372988,
+ "entity": "dog",
+ "caption": "Water drips down dog's face.",
+ "question": [
+ "is there water ?",
+ "is there dog's face ?"
+ ],
+ "prompt": "Water drips down {}'s face."
+ },
+ {
+ "index": 589,
+ "image_id": 2372988,
+ "entity": "dog",
+ "caption": "dog is wearing a chain",
+ "question": [
+ "is there dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "{} is wearing a chain"
+ },
+ {
+ "index": 590,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is riding in a car",
+ "question": [
+ "is there a dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "A {} is riding in a car"
+ },
+ {
+ "index": 591,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is riding in the passenger seat",
+ "question": [
+ "is there a dog ?",
+ "is there the passenger seat ?"
+ ],
+ "prompt": "A {} is riding in the passenger seat"
+ },
+ {
+ "index": 592,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is in its master's car",
+ "question": [
+ "is there a dog ?",
+ "is there its master's car ?"
+ ],
+ "prompt": "A {} is in its master's car"
+ },
+ {
+ "index": 593,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "The dog likes riding in a car",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "The {} likes riding in a car"
+ },
+ {
+ "index": 594,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "The dog is looking out the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is looking out the window"
+ },
+ {
+ "index": 595,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "The dog is sitting on a bench.",
+ "question": [
+ "is there the dog ?",
+ "is there a bench ?"
+ ],
+ "prompt": "The {} is sitting on a bench."
+ },
+ {
+ "index": 596,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "dog is wearing a blue harness",
+ "question": [
+ "is there dog ?",
+ "is there a blue harness ?"
+ ],
+ "prompt": "{} is wearing a blue harness"
+ },
+ {
+ "index": 597,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "the dog has a white belly",
+ "question": [
+ "is there the dog ?",
+ "is there a white belly ?"
+ ],
+ "prompt": "the {} has a white belly"
+ },
+ {
+ "index": 598,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog looks sleepy",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} looks sleepy"
+ },
+ {
+ "index": 599,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is laying on a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "the {} is laying on a stuffed animal"
+ },
+ {
+ "index": 600,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is pale tan in color",
+ "question": [
+ "is there the dog ?",
+ "is there pale tan ?",
+ "is there color ?"
+ ],
+ "prompt": "the {} is pale tan in color"
+ },
+ {
+ "index": 601,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "stuffed animal dog is sleeping on",
+ "question": [
+ "is there stuffed animal dog ?"
+ ],
+ "prompt": "stuffed animal {} is sleeping on"
+ },
+ {
+ "index": 602,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "red bed dog is sleeping on",
+ "question": [
+ "is there red bed dog ?"
+ ],
+ "prompt": "red bed {} is sleeping on"
+ },
+ {
+ "index": 603,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the cushion under the dog is red",
+ "question": [
+ "is there the cushion ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cushion under the {} is red"
+ },
+ {
+ "index": 604,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is laying on a cushion",
+ "question": [
+ "is there the dog ?",
+ "is there a cushion ?"
+ ],
+ "prompt": "the {} is laying on a cushion"
+ },
+ {
+ "index": 605,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "The dog ear on the right",
+ "question": [
+ "is there the dog ear ?",
+ "is there the right ?"
+ ],
+ "prompt": "The {} ear on the right"
+ },
+ {
+ "index": 606,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "Dog leash on the beige dog",
+ "question": [
+ "is there dog ?",
+ "is there the beige dog ?"
+ ],
+ "prompt": "Dog leash on the beige {}"
+ },
+ {
+ "index": 607,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "dog has white teeth",
+ "question": [
+ "is there dog ?",
+ "are there white teeth ?"
+ ],
+ "prompt": "{} has white teeth"
+ },
+ {
+ "index": 608,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "dog has black under his lip",
+ "question": [
+ "is there dog ?",
+ "is there his lip ?"
+ ],
+ "prompt": "{} has black under his lip"
+ },
+ {
+ "index": 609,
+ "image_id": 2372091,
+ "entity": "dog",
+ "caption": "wooden bench dog is sitting on",
+ "question": [
+ "is there wooden bench dog ?"
+ ],
+ "prompt": "wooden bench {} is sitting on"
+ },
+ {
+ "index": 610,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "Flowered leash going to the dog",
+ "question": [
+ "is there flowered leash ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Flowered leash going to the {}"
+ },
+ {
+ "index": 611,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog looks off into distance",
+ "question": [
+ "is there dog ?",
+ "is there distance ?"
+ ],
+ "prompt": "{} looks off into distance"
+ },
+ {
+ "index": 612,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog wears sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} wears sweater"
+ },
+ {
+ "index": 613,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog sits next to bicycle",
+ "question": [
+ "is there dog ?",
+ "is there bicycle ?"
+ ],
+ "prompt": "{} sits next to bicycle"
+ },
+ {
+ "index": 614,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog sits on sidewalk",
+ "question": [
+ "is there dog ?",
+ "is there sidewalk ?"
+ ],
+ "prompt": "{} sits on sidewalk"
+ },
+ {
+ "index": 615,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "sweater is on dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "sweater is on {}"
+ },
+ {
+ "index": 616,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog is inside sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} is inside sweater"
+ },
+ {
+ "index": 617,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The dog is on a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "The {} is on a leash"
+ },
+ {
+ "index": 618,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog is standing near a bicycle",
+ "question": [
+ "is there the white dog ?",
+ "is there a bicycle ?"
+ ],
+ "prompt": "The white {} is standing near a bicycle"
+ },
+ {
+ "index": 619,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog in the sweater has a bushy tail",
+ "question": [
+ "is there the white dog ?",
+ "is there the sweater ?",
+ "is there a bushy tail ?"
+ ],
+ "prompt": "The white {} in the sweater has a bushy tail"
+ },
+ {
+ "index": 620,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog is standing on the sidewalk",
+ "question": [
+ "is there the white dog ?",
+ "is there the sidewalk ?"
+ ],
+ "prompt": "The white {} is standing on the sidewalk"
+ },
+ {
+ "index": 621,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "the dog is using the laptop",
+ "question": [
+ "is there the dog ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "the {} is using the laptop"
+ },
+ {
+ "index": 622,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "A dog with it's paws on a laptop.",
+ "question": [
+ "is there a dog ?",
+ "are there it's paws ?",
+ "is there a laptop ?"
+ ],
+ "prompt": "A {} with it's paws on a laptop."
+ },
+ {
+ "index": 623,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The dog is using the computer ",
+ "question": [
+ "is there the dog ?",
+ "is there the computer ?"
+ ],
+ "prompt": "The {} is using the computer "
+ },
+ {
+ "index": 624,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The nose of the dog is black ",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The nose of the {} is black "
+ },
+ {
+ "index": 625,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The eye of the dog is brown ",
+ "question": [
+ "is there the eye ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The eye of the {} is brown "
+ },
+ {
+ "index": 626,
+ "image_id": 2371520,
+ "entity": "dog",
+ "caption": "carpet dog is playing on",
+ "question": [
+ "is there carpet dog ?"
+ ],
+ "prompt": "carpet {} is playing on"
+ },
+ {
+ "index": 627,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A dog has three colors of fur.",
+ "question": [
+ "is there a dog ?",
+ "are there three colors ?",
+ "is there fur ?"
+ ],
+ "prompt": "A {} has three colors of fur."
+ },
+ {
+ "index": 628,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A dog is wearing a scarf around the neck.",
+ "question": [
+ "is there a dog ?",
+ "is there a scarf ?",
+ "is there the neck ?"
+ ],
+ "prompt": "A {} is wearing a scarf around the neck."
+ },
+ {
+ "index": 629,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A woman is sitting close to a dog.",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A woman is sitting close to a {}."
+ },
+ {
+ "index": 630,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in mouth."
+ },
+ {
+ "index": 631,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "the dog is wearing a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} is wearing a collar."
+ },
+ {
+ "index": 632,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The back left leg of a dog",
+ "question": [
+ "is there the back left leg ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The back left leg of a {}"
+ },
+ {
+ "index": 633,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The front left leg of a dog",
+ "question": [
+ "is there the front left leg ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The front left leg of a {}"
+ },
+ {
+ "index": 634,
+ "image_id": 2371119,
+ "entity": "dog",
+ "caption": "the dog is laying on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is laying on the bed"
+ },
+ {
+ "index": 635,
+ "image_id": 2370667,
+ "entity": "dog",
+ "caption": "the dogs nail ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s nail "
+ },
+ {
+ "index": 636,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has a serious face",
+ "question": [
+ "is there the dog ?",
+ "is there a serious face ?"
+ ],
+ "prompt": "The {} has a serious face"
+ },
+ {
+ "index": 637,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has white whiskers.",
+ "question": [
+ "is there the dog ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "The {} has white whiskers."
+ },
+ {
+ "index": 638,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has a brown colar.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown colar ?"
+ ],
+ "prompt": "The {} has a brown colar."
+ },
+ {
+ "index": 639,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "eye of dog is black ",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is black "
+ },
+ {
+ "index": 640,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "chest of dog is white",
+ "question": [
+ "is there chest ?",
+ "is there dog ?"
+ ],
+ "prompt": "chest of {} is white"
+ },
+ {
+ "index": 641,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "dog has dog tags",
+ "question": [
+ "is there dog ?",
+ "are there dog tags ?"
+ ],
+ "prompt": "{} has {} tags"
+ },
+ {
+ "index": 642,
+ "image_id": 2370342,
+ "entity": "dog",
+ "caption": "dog's head is on the pillow",
+ "question": [
+ "is there dog's head ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "{}'s head is on the pillow"
+ },
+ {
+ "index": 643,
+ "image_id": 2370107,
+ "entity": "dog",
+ "caption": "bottom left tooth of dog",
+ "question": [
+ "is there bottom ?",
+ "is there tooth ?",
+ "is there dog ?"
+ ],
+ "prompt": "bottom left tooth of {}"
+ },
+ {
+ "index": 644,
+ "image_id": 2369919,
+ "entity": "dog",
+ "caption": "dogs nose is black ",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is black "
+ },
+ {
+ "index": 645,
+ "image_id": 2369919,
+ "entity": "dog",
+ "caption": "the dog is laying down on a shoe ",
+ "question": [
+ "is there the dog ?",
+ "is there a shoe ?"
+ ],
+ "prompt": "the {} is laying down on a shoe "
+ },
+ {
+ "index": 646,
+ "image_id": 2369591,
+ "entity": "dog",
+ "caption": "the dog has a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "the {} has a leash"
+ },
+ {
+ "index": 647,
+ "image_id": 2369591,
+ "entity": "dog",
+ "caption": "The dog's eye looking ahead",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye looking ahead"
+ },
+ {
+ "index": 648,
+ "image_id": 2369270,
+ "entity": "dog",
+ "caption": "Frisbee is in the dog's mouth",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "Frisbee is in the {}'s mouth"
+ },
+ {
+ "index": 649,
+ "image_id": 2368889,
+ "entity": "dog",
+ "caption": "Big brown dog spiked pink collar.",
+ "question": [
+ "is there big brown dog ?",
+ "is there pink collar ?"
+ ],
+ "prompt": "Big brown {} spiked pink collar."
+ },
+ {
+ "index": 650,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "dog is laying on the ground",
+ "question": [
+ "is there dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "{} is laying on the ground"
+ },
+ {
+ "index": 651,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "dog with tongue sticking out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} with tongue sticking out"
+ },
+ {
+ "index": 652,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog has a front paw",
+ "question": [
+ "is there the dog ?",
+ "is there a front paw ?"
+ ],
+ "prompt": "the {} has a front paw"
+ },
+ {
+ "index": 653,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog has nails",
+ "question": [
+ "is there the dog ?",
+ "are there nails ?"
+ ],
+ "prompt": "the {} has nails"
+ },
+ {
+ "index": 654,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog is lying down",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is lying down"
+ },
+ {
+ "index": 655,
+ "image_id": 2368714,
+ "entity": "dog",
+ "caption": "dog curled up with a teddy bear",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} curled up with a teddy bear"
+ },
+ {
+ "index": 656,
+ "image_id": 2368714,
+ "entity": "dog",
+ "caption": "ear of dog is black ",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is black "
+ },
+ {
+ "index": 657,
+ "image_id": 2368054,
+ "entity": "dog",
+ "caption": "dog has a purple leash",
+ "question": [
+ "is there dog ?",
+ "is there a purple leash ?"
+ ],
+ "prompt": "{} has a purple leash"
+ },
+ {
+ "index": 658,
+ "image_id": 2368054,
+ "entity": "dog",
+ "caption": "this dog is wearing a red harness",
+ "question": [
+ "is there this dog ?",
+ "is there a red harness ?"
+ ],
+ "prompt": "this {} is wearing a red harness"
+ },
+ {
+ "index": 659,
+ "image_id": 2367865,
+ "entity": "dog",
+ "caption": "The dog's eyes are yellow",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are yellow"
+ },
+ {
+ "index": 660,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "the dog is inside a van",
+ "question": [
+ "is there the dog ?",
+ "is there a van ?"
+ ],
+ "prompt": "the {} is inside a van"
+ },
+ {
+ "index": 661,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "the dog tag hanging",
+ "question": [
+ "is there the dog tag ?"
+ ],
+ "prompt": "the {} tag hanging"
+ },
+ {
+ "index": 662,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar"
+ },
+ {
+ "index": 663,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "navy blanket dog is laying on",
+ "question": [
+ "is there navy blanket dog ?"
+ ],
+ "prompt": "navy blanket {} is laying on"
+ },
+ {
+ "index": 664,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog's pink tongue is very long",
+ "question": [
+ "is there the dog's pink tongue ?"
+ ],
+ "prompt": "The {}'s pink tongue is very long"
+ },
+ {
+ "index": 665,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "A large tongue hanging out of the dog's mouth",
+ "question": [
+ "is there a large tongue ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "A large tongue hanging out of the {}'s mouth"
+ },
+ {
+ "index": 666,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog's eye is open",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye is open"
+ },
+ {
+ "index": 667,
+ "image_id": 2367433,
+ "entity": "dog",
+ "caption": "pizza that dog is eating",
+ "question": [
+ "is there pizza ?",
+ "is there that dog ?"
+ ],
+ "prompt": "pizza that {} is eating"
+ },
+ {
+ "index": 668,
+ "image_id": 2367433,
+ "entity": "dog",
+ "caption": "steel grate that dog is standing on",
+ "question": [
+ "is there steel grate ?",
+ "is there that dog ?"
+ ],
+ "prompt": "steel grate that {} is standing on"
+ },
+ {
+ "index": 669,
+ "image_id": 2367152,
+ "entity": "dog",
+ "caption": "mouth of dog is open",
+ "question": [
+ "is there mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "mouth of {} is open"
+ },
+ {
+ "index": 670,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "dog tail held high",
+ "question": [
+ "is there dog tail ?"
+ ],
+ "prompt": "{} tail held high"
+ },
+ {
+ "index": 671,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "a dog that has brown eyes",
+ "question": [
+ "is there a dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "a {} that has brown eyes"
+ },
+ {
+ "index": 672,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "the dog has a brown ear",
+ "question": [
+ "is there the dog ?",
+ "is there a brown ear ?"
+ ],
+ "prompt": "the {} has a brown ear"
+ },
+ {
+ "index": 673,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has eyes",
+ "question": [
+ "is there this dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "this {} has eyes"
+ },
+ {
+ "index": 674,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has ears",
+ "question": [
+ "is there this dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "this {} has ears"
+ },
+ {
+ "index": 675,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog's nose is black",
+ "question": [
+ "is there this dog's nose ?"
+ ],
+ "prompt": "this {}'s nose is black"
+ },
+ {
+ "index": 676,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has a long tail",
+ "question": [
+ "is there this dog ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "this {} has a long tail"
+ },
+ {
+ "index": 677,
+ "image_id": 2365888,
+ "entity": "dog",
+ "caption": "the dog has a small tail",
+ "question": [
+ "is there the dog ?",
+ "is there a small tail ?"
+ ],
+ "prompt": "the {} has a small tail"
+ },
+ {
+ "index": 678,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "th edog is in the car ",
+ "question": [
+ "is there the car ?"
+ ],
+ "prompt": "th e{} is in the car "
+ },
+ {
+ "index": 679,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking outside the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking outside the window"
+ },
+ {
+ "index": 680,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking outside ",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is looking outside "
+ },
+ {
+ "index": 681,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking through the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking through the window"
+ },
+ {
+ "index": 682,
+ "image_id": 2365756,
+ "entity": "dog",
+ "caption": "the doghas a seat belt on ",
+ "question": [
+ "is there a seat belt ?"
+ ],
+ "prompt": "the {}has a seat belt on "
+ },
+ {
+ "index": 683,
+ "image_id": 2365756,
+ "entity": "dog",
+ "caption": "Black seatbelt holding back a dog. ",
+ "question": [
+ "is there black seatbelt ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Black seatbelt holding back a {}. "
+ },
+ {
+ "index": 684,
+ "image_id": 2365712,
+ "entity": "dog",
+ "caption": "the dog is licking the cake",
+ "question": [
+ "is there the dog ?",
+ "is there the cake ?"
+ ],
+ "prompt": "the {} is licking the cake"
+ },
+ {
+ "index": 685,
+ "image_id": 2365044,
+ "entity": "dog",
+ "caption": "dog is wearing a bow tie ",
+ "question": [
+ "is there dog ?",
+ "is there a bow tie ?"
+ ],
+ "prompt": "{} is wearing a bow tie "
+ },
+ {
+ "index": 686,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "The pillow the dog is laying on.",
+ "question": [
+ "is there the pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The pillow the {} is laying on."
+ },
+ {
+ "index": 687,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "the dog is getting ready for bed",
+ "question": [
+ "is there the dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "the {} is getting ready for bed"
+ },
+ {
+ "index": 688,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "this dog looks comfortable in bed",
+ "question": [
+ "is there this dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "this {} looks comfortable in bed"
+ },
+ {
+ "index": 689,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "dog has hazel eyes",
+ "question": [
+ "is there dog ?",
+ "are there hazel eyes ?"
+ ],
+ "prompt": "{} has hazel eyes"
+ },
+ {
+ "index": 690,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "dog is holding a ball",
+ "question": [
+ "is there dog ?",
+ "is there a ball ?"
+ ],
+ "prompt": "{} is holding a ball"
+ },
+ {
+ "index": 691,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "black dog with paws forward looking at camera",
+ "question": [
+ "is there black dog ?",
+ "are there paws ?",
+ "is there camera ?"
+ ],
+ "prompt": "black {} with paws forward looking at camera"
+ },
+ {
+ "index": 692,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "dog has a ball inside his mouth",
+ "question": [
+ "is there dog ?",
+ "is there a ball ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has a ball inside his mouth"
+ },
+ {
+ "index": 693,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "snout of dog is color salt and pepper",
+ "question": [
+ "is there snout ?",
+ "is there dog ?",
+ "is there color salt ?",
+ "is there pepper ?"
+ ],
+ "prompt": "snout of {} is color salt and pepper"
+ },
+ {
+ "index": 694,
+ "image_id": 2364504,
+ "entity": "dog",
+ "caption": "The dog is wearing a purple collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a purple collar ?"
+ ],
+ "prompt": "The {} is wearing a purple collar."
+ },
+ {
+ "index": 695,
+ "image_id": 2364504,
+ "entity": "dog",
+ "caption": "One dog is sitting in the car.",
+ "question": [
+ "is there one dog ?",
+ "is there the car ?"
+ ],
+ "prompt": "One {} is sitting in the car."
+ },
+ {
+ "index": 696,
+ "image_id": 2364448,
+ "entity": "dog",
+ "caption": "the dog has a paw",
+ "question": [
+ "is there the dog ?",
+ "is there a paw ?"
+ ],
+ "prompt": "the {} has a paw"
+ },
+ {
+ "index": 697,
+ "image_id": 2364244,
+ "entity": "dog",
+ "caption": "the dog is wearing a tiara",
+ "question": [
+ "is there the dog ?",
+ "is there a tiara ?"
+ ],
+ "prompt": "the {} is wearing a tiara"
+ },
+ {
+ "index": 698,
+ "image_id": 2364208,
+ "entity": "dog",
+ "caption": "the cow is looking at the dog",
+ "question": [
+ "is there the cow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cow is looking at the {}"
+ },
+ {
+ "index": 699,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "a dog with his tooth sticking out",
+ "question": [
+ "is there a dog ?",
+ "is there his tooth ?"
+ ],
+ "prompt": "a {} with his tooth sticking out"
+ },
+ {
+ "index": 700,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "green couch cushion dog is sleeping on",
+ "question": [
+ "is there green couch cushion dog ?"
+ ],
+ "prompt": "green couch cushion {} is sleeping on"
+ },
+ {
+ "index": 701,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "dog lip pulled up against cushion",
+ "question": [
+ "is there dog lip ?",
+ "is there cushion ?"
+ ],
+ "prompt": "{} lip pulled up against cushion"
+ },
+ {
+ "index": 702,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "dog's tongue sticking out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue sticking out"
+ },
+ {
+ "index": 703,
+ "image_id": 2363350,
+ "entity": "dog",
+ "caption": "A dog is laying in his bed",
+ "question": [
+ "is there a dog ?",
+ "is there his bed ?"
+ ],
+ "prompt": "A {} is laying in his bed"
+ },
+ {
+ "index": 704,
+ "image_id": 2363350,
+ "entity": "dog",
+ "caption": "The dog is resting on a pillow",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "The {} is resting on a pillow"
+ },
+ {
+ "index": 705,
+ "image_id": 2362763,
+ "entity": "dog",
+ "caption": "dog's teeth are showing",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth are showing"
+ },
+ {
+ "index": 706,
+ "image_id": 2362553,
+ "entity": "dog",
+ "caption": "dog with head tilted up",
+ "question": [
+ "is there dog ?",
+ "is there head ?"
+ ],
+ "prompt": "{} with head tilted up"
+ },
+ {
+ "index": 707,
+ "image_id": 2362553,
+ "entity": "dog",
+ "caption": "the dog has a right eye",
+ "question": [
+ "is there the dog ?",
+ "is there a right eye ?"
+ ],
+ "prompt": "the {} has a right eye"
+ },
+ {
+ "index": 708,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The dog is in the bag",
+ "question": [
+ "is there the dog ?",
+ "is there the bag ?"
+ ],
+ "prompt": "The {} is in the bag"
+ },
+ {
+ "index": 709,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The bag is holding the dog",
+ "question": [
+ "is there the bag ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The bag is holding the {}"
+ },
+ {
+ "index": 710,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The small backpack holds a dog",
+ "question": [
+ "is there the small backpack ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The small backpack holds a {}"
+ },
+ {
+ "index": 711,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The dog is turning its head",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?"
+ ],
+ "prompt": "The {} is turning its head"
+ },
+ {
+ "index": 712,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "this is a \"doggy pack\"",
+ "question": [
+ "is there a \"doggy pack ?"
+ ],
+ "prompt": "this is a \"{}gy pack\""
+ },
+ {
+ "index": 713,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "dog is wearing chain collar",
+ "question": [
+ "is there dog ?",
+ "is there chain collar ?"
+ ],
+ "prompt": "{} is wearing chain collar"
+ },
+ {
+ "index": 714,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog is looking at the cake",
+ "question": [
+ "is there the dog ?",
+ "is there the cake ?"
+ ],
+ "prompt": "the {} is looking at the cake"
+ },
+ {
+ "index": 715,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog looks sad",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} looks sad"
+ },
+ {
+ "index": 716,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog lays head on arm",
+ "question": [
+ "is there the dog ?",
+ "is there head ?",
+ "is there arm ?"
+ ],
+ "prompt": "the {} lays head on arm"
+ },
+ {
+ "index": 717,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog has spots",
+ "question": [
+ "is there the dog ?",
+ "are there spots ?"
+ ],
+ "prompt": "the {} has spots"
+ },
+ {
+ "index": 718,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "eye of dog is black",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is black"
+ },
+ {
+ "index": 719,
+ "image_id": 2362196,
+ "entity": "dog",
+ "caption": " a dog with it's tongue sticking out",
+ "question": [
+ "is there a dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": " a {} with it's tongue sticking out"
+ },
+ {
+ "index": 720,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "this is a dog ",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "this is a {} "
+ },
+ {
+ "index": 721,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "the dog is lying down on the floor",
+ "question": [
+ "is there the dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "the {} is lying down on the floor"
+ },
+ {
+ "index": 722,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is in somebody's house",
+ "question": [
+ "is there the dog ?",
+ "is there somebody's house ?"
+ ],
+ "prompt": "The {} is in somebody's house"
+ },
+ {
+ "index": 723,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is laying by the door",
+ "question": [
+ "is there the dog ?",
+ "is there the door ?"
+ ],
+ "prompt": "The {} is laying by the door"
+ },
+ {
+ "index": 724,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is guarding the house",
+ "question": [
+ "is there the dog ?",
+ "is there the house ?"
+ ],
+ "prompt": "The {} is guarding the house"
+ },
+ {
+ "index": 725,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is awake in daytime",
+ "question": [
+ "is there the dog ?",
+ "is there daytime ?"
+ ],
+ "prompt": "The {} is awake in daytime"
+ },
+ {
+ "index": 726,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is waiting to go outside",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is waiting to go outside"
+ },
+ {
+ "index": 727,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is waiting to be let out",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "A {} is waiting to be let out"
+ },
+ {
+ "index": 728,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is sleeping on the floor",
+ "question": [
+ "is there a dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "A {} is sleeping on the floor"
+ },
+ {
+ "index": 729,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is looking for attention",
+ "question": [
+ "is there a dog ?",
+ "is there attention ?"
+ ],
+ "prompt": "A {} is looking for attention"
+ },
+ {
+ "index": 730,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is looking lonely",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is looking lonely"
+ },
+ {
+ "index": 731,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is waiting by the door",
+ "question": [
+ "is there a dog ?",
+ "is there the door ?"
+ ],
+ "prompt": "A {} is waiting by the door"
+ },
+ {
+ "index": 732,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is laying on the floor",
+ "question": [
+ "is there a dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "A {} is laying on the floor"
+ },
+ {
+ "index": 733,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is wanting to be fed",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is wanting to be fed"
+ },
+ {
+ "index": 734,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is enjoying its day",
+ "question": [
+ "is there the dog ?",
+ "is there its day ?"
+ ],
+ "prompt": "The {} is enjoying its day"
+ },
+ {
+ "index": 735,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is getting some rest",
+ "question": [
+ "is there the dog ?",
+ "is there some rest ?"
+ ],
+ "prompt": "The {} is getting some rest"
+ },
+ {
+ "index": 736,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog belongs to the home owner",
+ "question": [
+ "is there the dog ?",
+ "is there the home owner ?"
+ ],
+ "prompt": "The {} belongs to the home owner"
+ },
+ {
+ "index": 737,
+ "image_id": 2361653,
+ "entity": "dog",
+ "caption": "the dog has a left eye",
+ "question": [
+ "is there the dog ?",
+ "is there a left eye ?"
+ ],
+ "prompt": "the {} has a left eye"
+ },
+ {
+ "index": 738,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "floppy black dog ear ",
+ "question": [
+ "is there floppy black dog ear ?"
+ ],
+ "prompt": "floppy black {} ear "
+ },
+ {
+ "index": 739,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "two dog ear in different positions at same time ",
+ "question": [
+ "is there two dog ear ?",
+ "are there different positions ?",
+ "is there same time ?"
+ ],
+ "prompt": "two {} ear in different positions at same time "
+ },
+ {
+ "index": 740,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "The dog's left ear flopped down",
+ "question": [
+ "is there the dog's left ear ?"
+ ],
+ "prompt": "The {}'s left ear flopped down"
+ },
+ {
+ "index": 741,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "the dog's right ear is up",
+ "question": [
+ "is there the dog's right ear ?"
+ ],
+ "prompt": "the {}'s right ear is up"
+ },
+ {
+ "index": 742,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "the dog's eyes are open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are open"
+ },
+ {
+ "index": 743,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog is laying on dog bed",
+ "question": [
+ "is there dog ?",
+ "is there dog bed ?"
+ ],
+ "prompt": "{} is laying on {} bed"
+ },
+ {
+ "index": 744,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has small nose",
+ "question": [
+ "is there dog ?",
+ "is there small nose ?"
+ ],
+ "prompt": "{} has small nose"
+ },
+ {
+ "index": 745,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog bed is beige",
+ "question": [
+ "is there dog bed ?"
+ ],
+ "prompt": "{} bed is beige"
+ },
+ {
+ "index": 746,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has wavy fur",
+ "question": [
+ "is there dog ?",
+ "is there wavy fur ?"
+ ],
+ "prompt": "{} has wavy fur"
+ },
+ {
+ "index": 747,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has fluffy tail",
+ "question": [
+ "is there dog ?",
+ "is there fluffy tail ?"
+ ],
+ "prompt": "{} has fluffy tail"
+ },
+ {
+ "index": 748,
+ "image_id": 2360725,
+ "entity": "dog",
+ "caption": "the dog is biting an envelope",
+ "question": [
+ "is there the dog ?",
+ "is there an envelope ?"
+ ],
+ "prompt": "the {} is biting an envelope"
+ },
+ {
+ "index": 749,
+ "image_id": 2360725,
+ "entity": "dog",
+ "caption": "dog is carrying an envelope",
+ "question": [
+ "is there dog ?",
+ "is there an envelope ?"
+ ],
+ "prompt": "{} is carrying an envelope"
+ },
+ {
+ "index": 750,
+ "image_id": 2360542,
+ "entity": "dog",
+ "caption": "dog has black eyes",
+ "question": [
+ "is there dog ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "{} has black eyes"
+ },
+ {
+ "index": 751,
+ "image_id": 2360542,
+ "entity": "dog",
+ "caption": "pomeranian dog gets a ride inside duffle bag",
+ "question": [
+ "is there pomeranian dog ?",
+ "is there a ride inside duffle bag ?"
+ ],
+ "prompt": "pomeranian {} gets a ride inside duffle bag"
+ },
+ {
+ "index": 752,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "The front left leg of the dog.",
+ "question": [
+ "is there the front left leg ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The front left leg of the {}."
+ },
+ {
+ "index": 753,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "eyes of dog are round",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are round"
+ },
+ {
+ "index": 754,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "head of dog is brown",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is brown"
+ },
+ {
+ "index": 755,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "dog has dark eyes ",
+ "question": [
+ "is there dog ?",
+ "are there dark eyes ?"
+ ],
+ "prompt": "{} has dark eyes "
+ },
+ {
+ "index": 756,
+ "image_id": 2360299,
+ "entity": "dog",
+ "caption": "dog's right ear is black",
+ "question": [
+ "is there dog's right ear ?"
+ ],
+ "prompt": "{}'s right ear is black"
+ },
+ {
+ "index": 757,
+ "image_id": 2360145,
+ "entity": "dog",
+ "caption": "A shadow line is behind the dogs.",
+ "question": [
+ "is there a shadow line ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "A shadow line is behind the {}s."
+ },
+ {
+ "index": 758,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog with his eyes shut",
+ "question": [
+ "is there dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "{} with his eyes shut"
+ },
+ {
+ "index": 759,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog is on blanket",
+ "question": [
+ "is there dog ?",
+ "is there blanket ?"
+ ],
+ "prompt": "{} is on blanket"
+ },
+ {
+ "index": 760,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog has blonde hair",
+ "question": [
+ "is there dog ?",
+ "is there blonde hair ?"
+ ],
+ "prompt": "{} has blonde hair"
+ },
+ {
+ "index": 761,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog has long hair on ears",
+ "question": [
+ "is there dog ?",
+ "is there long hair ?",
+ "are there ears ?"
+ ],
+ "prompt": "{} has long hair on ears"
+ },
+ {
+ "index": 762,
+ "image_id": 2359809,
+ "entity": "dog",
+ "caption": "The rear left paw of the dog",
+ "question": [
+ "is there the rear left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The rear left paw of the {}"
+ },
+ {
+ "index": 763,
+ "image_id": 2359809,
+ "entity": "dog",
+ "caption": "dog is standing on cement floors",
+ "question": [
+ "is there dog ?",
+ "are there cement floors ?"
+ ],
+ "prompt": "{} is standing on cement floors"
+ },
+ {
+ "index": 764,
+ "image_id": 2359414,
+ "entity": "dog",
+ "caption": "the dog has a banana on its side",
+ "question": [
+ "is there the dog ?",
+ "is there a banana ?",
+ "is there its side ?"
+ ],
+ "prompt": "the {} has a banana on its side"
+ },
+ {
+ "index": 765,
+ "image_id": 2359172,
+ "entity": "dog",
+ "caption": "dog has brown ear",
+ "question": [
+ "is there dog ?",
+ "is there brown ear ?"
+ ],
+ "prompt": "{} has brown ear"
+ },
+ {
+ "index": 766,
+ "image_id": 2359172,
+ "entity": "dog",
+ "caption": "dog has brown eye",
+ "question": [
+ "is there dog ?",
+ "is there brown eye ?"
+ ],
+ "prompt": "{} has brown eye"
+ },
+ {
+ "index": 767,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "Cat is laying on top of dog.",
+ "question": [
+ "is there cat ?",
+ "is there top ?",
+ "is there dog ?"
+ ],
+ "prompt": "Cat is laying on top of {}."
+ },
+ {
+ "index": 768,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "The cat is on the dog.",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The cat is on the {}."
+ },
+ {
+ "index": 769,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "dog has brown eye brows",
+ "question": [
+ "is there dog ?",
+ "are there brown eye brows ?"
+ ],
+ "prompt": "{} has brown eye brows"
+ },
+ {
+ "index": 770,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "dog holds chew toy",
+ "question": [
+ "is there dog ?",
+ "is there toy ?"
+ ],
+ "prompt": "{} holds chew toy"
+ },
+ {
+ "index": 771,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "dog has pink tongue",
+ "question": [
+ "is there dog ?",
+ "is there pink tongue ?"
+ ],
+ "prompt": "{} has pink tongue"
+ },
+ {
+ "index": 772,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is chewing on a toy",
+ "question": [
+ "is there the dog ?",
+ "is there a toy ?"
+ ],
+ "prompt": "the {} is chewing on a toy"
+ },
+ {
+ "index": 773,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog chews on an orange toy",
+ "question": [
+ "is there the dog ?",
+ "is there an orange toy ?"
+ ],
+ "prompt": "the {} chews on an orange toy"
+ },
+ {
+ "index": 774,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is on a blanket"
+ },
+ {
+ "index": 775,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is laying on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is laying on a blanket"
+ },
+ {
+ "index": 776,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "Small orange looking stuffed animal a dog has. ",
+ "question": [
+ "is there small orange ?",
+ "is there stuffed animal ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Small orange looking stuffed animal a {} has. "
+ },
+ {
+ "index": 777,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "A brown dogs left side front paw. ",
+ "question": [
+ "are there a brown dogs ?",
+ "is there side front paw ?"
+ ],
+ "prompt": "A brown {}s left side front paw. "
+ },
+ {
+ "index": 778,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "A dogs left ear. ",
+ "question": [
+ "are there a dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "A {}s left ear. "
+ },
+ {
+ "index": 779,
+ "image_id": 2358486,
+ "entity": "dog",
+ "caption": "dog is leaning over railing",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is leaning over railing"
+ },
+ {
+ "index": 780,
+ "image_id": 2358453,
+ "entity": "dog",
+ "caption": "eye of dog is close",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is close"
+ },
+ {
+ "index": 781,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "dog has a long ear",
+ "question": [
+ "is there dog ?",
+ "is there a long ear ?"
+ ],
+ "prompt": "{} has a long ear"
+ },
+ {
+ "index": 782,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "the dog's head is on the blanket",
+ "question": [
+ "is there the dog's head ?",
+ "is there the blanket ?"
+ ],
+ "prompt": "the {}'s head is on the blanket"
+ },
+ {
+ "index": 783,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "the dog has on a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} has on a red collar"
+ },
+ {
+ "index": 784,
+ "image_id": 2357693,
+ "entity": "dog",
+ "caption": "dog has brown patch on eye",
+ "question": [
+ "is there dog ?",
+ "is there brown patch ?",
+ "is there eye ?"
+ ],
+ "prompt": "{} has brown patch on eye"
+ },
+ {
+ "index": 785,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog is wearing a tie",
+ "question": [
+ "is there the dog ?",
+ "is there a tie ?"
+ ],
+ "prompt": "the {} is wearing a tie"
+ },
+ {
+ "index": 786,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog is lying on the arm of a leather chair",
+ "question": [
+ "is there the dog ?",
+ "is there the arm ?",
+ "is there a leather chair ?"
+ ],
+ "prompt": "the {} is lying on the arm of a leather chair"
+ },
+ {
+ "index": 787,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog has bulgy eyes",
+ "question": [
+ "is there the dog ?",
+ "are there bulgy eyes ?"
+ ],
+ "prompt": "the {} has bulgy eyes"
+ },
+ {
+ "index": 788,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog has dark brown ears",
+ "question": [
+ "is there the dog ?",
+ "are there dark brown ears ?"
+ ],
+ "prompt": "the {} has dark brown ears"
+ },
+ {
+ "index": 789,
+ "image_id": 2356804,
+ "entity": "dog",
+ "caption": "two dogs with their tongues hanging out",
+ "question": [
+ "are there two dogs ?",
+ "are there their tongues ?"
+ ],
+ "prompt": "two {}s with their tongues hanging out"
+ },
+ {
+ "index": 790,
+ "image_id": 2356804,
+ "entity": "dog",
+ "caption": "the dogs are in long grass",
+ "question": [
+ "are there the dogs ?",
+ "is there long grass ?"
+ ],
+ "prompt": "the {}s are in long grass"
+ },
+ {
+ "index": 791,
+ "image_id": 2356762,
+ "entity": "dog",
+ "caption": "This is a dog trying to catch an apple.",
+ "question": [
+ "is there a dog ?",
+ "is there an apple ?"
+ ],
+ "prompt": "This is a {} trying to catch an apple."
+ },
+ {
+ "index": 792,
+ "image_id": 2356762,
+ "entity": "dog",
+ "caption": "The dog has only a few teeth.",
+ "question": [
+ "is there the dog ?",
+ "are there only a few teeth ?"
+ ],
+ "prompt": "The {} has only a few teeth."
+ },
+ {
+ "index": 793,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dog's nose is thru the hole",
+ "question": [
+ "is there the dog's nose ?",
+ "is there the hole ?"
+ ],
+ "prompt": "the {}'s nose is thru the hole"
+ },
+ {
+ "index": 794,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dogs head is stuck",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s head is stuck"
+ },
+ {
+ "index": 795,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dogs head is stuck in the wheel",
+ "question": [
+ "are there the dogs ?",
+ "is there the wheel ?"
+ ],
+ "prompt": "the {}s head is stuck in the wheel"
+ },
+ {
+ "index": 796,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog wears black glasses",
+ "question": [
+ "is there dog ?",
+ "are there black glasses ?"
+ ],
+ "prompt": "{} wears black glasses"
+ },
+ {
+ "index": 797,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog wears black jacket",
+ "question": [
+ "is there dog ?",
+ "is there black jacket ?"
+ ],
+ "prompt": "{} wears black jacket"
+ },
+ {
+ "index": 798,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog is near motorcycle",
+ "question": [
+ "is there dog ?",
+ "is there motorcycle ?"
+ ],
+ "prompt": "{} is near motorcycle"
+ },
+ {
+ "index": 799,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "the dog has sunglasses ",
+ "question": [
+ "is there the dog ?",
+ "are there sunglasses ?"
+ ],
+ "prompt": "the {} has sunglasses "
+ },
+ {
+ "index": 800,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "the dog is on the bike ",
+ "question": [
+ "is there the dog ?",
+ "is there the bike ?"
+ ],
+ "prompt": "the {} is on the bike "
+ },
+ {
+ "index": 801,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "This dog is wearing sunglasses.",
+ "question": [
+ "is there this dog ?",
+ "are there sunglasses ?"
+ ],
+ "prompt": "This {} is wearing sunglasses."
+ },
+ {
+ "index": 802,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog has leash on",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has leash on"
+ },
+ {
+ "index": 803,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog is sitting in side car",
+ "question": [
+ "is there dog ?",
+ "is there side car ?"
+ ],
+ "prompt": "{} is sitting in side car"
+ },
+ {
+ "index": 804,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "blue dog bone shaped tag",
+ "question": [
+ "is there blue dog bone shaped tag ?"
+ ],
+ "prompt": "blue {} bone shaped tag"
+ },
+ {
+ "index": 805,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "dog is wearing a red collar",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "{} is wearing a red collar"
+ },
+ {
+ "index": 806,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "dog is walking on the dirt",
+ "question": [
+ "is there dog ?",
+ "is there the dirt ?"
+ ],
+ "prompt": "{} is walking on the dirt"
+ },
+ {
+ "index": 807,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is wearing goggles",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "The {} is wearing goggles"
+ },
+ {
+ "index": 808,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is on a motorcycle",
+ "question": [
+ "is there the dog ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "The {} is on a motorcycle"
+ },
+ {
+ "index": 809,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is wearing a leather jacket",
+ "question": [
+ "is there the dog ?",
+ "is there a leather jacket ?"
+ ],
+ "prompt": "The {} is wearing a leather jacket"
+ },
+ {
+ "index": 810,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "the nose is black on the dog ",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the nose is black on the {} "
+ },
+ {
+ "index": 811,
+ "image_id": 2355964,
+ "entity": "dog",
+ "caption": "dog ears is pink inside ",
+ "question": [
+ "are there dog ears ?"
+ ],
+ "prompt": "{} ears is pink inside "
+ },
+ {
+ "index": 812,
+ "image_id": 2355964,
+ "entity": "dog",
+ "caption": "dog has black nose ",
+ "question": [
+ "is there dog ?",
+ "is there black nose ?"
+ ],
+ "prompt": "{} has black nose "
+ },
+ {
+ "index": 813,
+ "image_id": 2355944,
+ "entity": "dog",
+ "caption": "The dog is wearing a color",
+ "question": [
+ "is there the dog ?",
+ "is there a color ?"
+ ],
+ "prompt": "The {} is wearing a color"
+ },
+ {
+ "index": 814,
+ "image_id": 2355865,
+ "entity": "dog",
+ "caption": "it is the eye of the dog ",
+ "question": [
+ "is there the eye ?",
+ "is there the dog ?"
+ ],
+ "prompt": "it is the eye of the {} "
+ },
+ {
+ "index": 815,
+ "image_id": 2355519,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in its mouth",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in its mouth"
+ },
+ {
+ "index": 816,
+ "image_id": 2355511,
+ "entity": "dog",
+ "caption": "a black dog right ear ",
+ "question": [
+ "is there a black dog right ear ?"
+ ],
+ "prompt": "a black {} right ear "
+ },
+ {
+ "index": 817,
+ "image_id": 2355511,
+ "entity": "dog",
+ "caption": "A black dog ready to get a bath",
+ "question": [
+ "is there a black dog ?",
+ "is there a bath ?"
+ ],
+ "prompt": "A black {} ready to get a bath"
+ },
+ {
+ "index": 818,
+ "image_id": 2355409,
+ "entity": "dog",
+ "caption": "a dog catchign a freesbee",
+ "question": [
+ "is there a dog ?",
+ "is there a freesbee ?"
+ ],
+ "prompt": "a {} catchign a freesbee"
+ },
+ {
+ "index": 819,
+ "image_id": 2355409,
+ "entity": "dog",
+ "caption": "a white dog catchign a black freesbee",
+ "question": [
+ "is there a white dog ?"
+ ],
+ "prompt": "a white {} catchign a black freesbee"
+ },
+ {
+ "index": 820,
+ "image_id": 2355256,
+ "entity": "dog",
+ "caption": "dog is brown and white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is brown and white"
+ },
+ {
+ "index": 821,
+ "image_id": 2354835,
+ "entity": "dog",
+ "caption": "Brown dog's head sticking out of car window.",
+ "question": [
+ "is there brown dog's head ?",
+ "is there car window ?"
+ ],
+ "prompt": "Brown {}'s head sticking out of car window."
+ },
+ {
+ "index": 822,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "bike is behind the dog",
+ "question": [
+ "is there bike ?",
+ "is there the dog ?"
+ ],
+ "prompt": "bike is behind the {}"
+ },
+ {
+ "index": 823,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "dog has tongue out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} has tongue out"
+ },
+ {
+ "index": 824,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "dog is on the street",
+ "question": [
+ "is there dog ?",
+ "is there the street ?"
+ ],
+ "prompt": "{} is on the street"
+ },
+ {
+ "index": 825,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "This dog has a donut in his mouth",
+ "question": [
+ "is there this dog ?",
+ "is there a donut ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "This {} has a donut in his mouth"
+ },
+ {
+ "index": 826,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog is wearing a red color.",
+ "question": [
+ "is there the dog ?",
+ "is there a red color ?"
+ ],
+ "prompt": "The {} is wearing a red color."
+ },
+ {
+ "index": 827,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog is sitting on the grass.",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "The {} is sitting on the grass."
+ },
+ {
+ "index": 828,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog has two spots on his face.",
+ "question": [
+ "is there the dog ?",
+ "are there two spots ?",
+ "is there his face ?"
+ ],
+ "prompt": "The {} has two spots on his face."
+ },
+ {
+ "index": 829,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "The dog nose is black",
+ "question": [
+ "is there the dog nose ?"
+ ],
+ "prompt": "The {} nose is black"
+ },
+ {
+ "index": 830,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "tan/yellow dog laying across young girls lap",
+ "question": [
+ "is there tan/yellow dog ?",
+ "are there young girls ?"
+ ],
+ "prompt": "tan/yellow {} laying across young girls lap"
+ },
+ {
+ "index": 831,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "dog is wearing a red collar around neck",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?",
+ "is there neck ?"
+ ],
+ "prompt": "{} is wearing a red collar around neck"
+ },
+ {
+ "index": 832,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "Woman laying on the couch with dog.",
+ "question": [
+ "is there woman ?",
+ "is there the couch ?",
+ "is there dog ?"
+ ],
+ "prompt": "Woman laying on the couch with {}."
+ },
+ {
+ "index": 833,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "The dog's head is on the keyboard",
+ "question": [
+ "is there the dog's head ?",
+ "is there the keyboard ?"
+ ],
+ "prompt": "The {}'s head is on the keyboard"
+ },
+ {
+ "index": 834,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue and yellow collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue and yellow collar ?"
+ ],
+ "prompt": "The {} is wearing a blue and yellow collar"
+ },
+ {
+ "index": 835,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "dog is on the keys",
+ "question": [
+ "is there dog ?",
+ "are there the keys ?"
+ ],
+ "prompt": "{} is on the keys"
+ },
+ {
+ "index": 836,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "the dog has yellow and blue flowers",
+ "question": [
+ "is there the dog ?",
+ "are there yellow and blue flowers ?"
+ ],
+ "prompt": "the {} has yellow and blue flowers"
+ },
+ {
+ "index": 837,
+ "image_id": 2353969,
+ "entity": "dog",
+ "caption": "dog has white paw",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has white paw"
+ },
+ {
+ "index": 838,
+ "image_id": 2353969,
+ "entity": "dog",
+ "caption": "dog is laying down on rug",
+ "question": [
+ "is there dog ?",
+ "is there rug ?"
+ ],
+ "prompt": "{} is laying down on rug"
+ },
+ {
+ "index": 839,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "the dog's eye is yellowish",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is yellowish"
+ },
+ {
+ "index": 840,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog has long ears",
+ "question": [
+ "is there the dog ?",
+ "are there long ears ?"
+ ],
+ "prompt": "The {} has long ears"
+ },
+ {
+ "index": 841,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog is wide eyed",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is wide eyed"
+ },
+ {
+ "index": 842,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog's nose is very black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is very black"
+ },
+ {
+ "index": 843,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog is wearing a bowl",
+ "question": [
+ "is there the dog ?",
+ "is there a bowl ?"
+ ],
+ "prompt": "The {} is wearing a bowl"
+ },
+ {
+ "index": 844,
+ "image_id": 2353404,
+ "entity": "dog",
+ "caption": "the plastic buckle on the dog",
+ "question": [
+ "is there the plastic buckle ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the plastic buckle on the {}"
+ },
+ {
+ "index": 845,
+ "image_id": 2353404,
+ "entity": "dog",
+ "caption": "the dog walking and connected to a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} walking and connected to a chain"
+ },
+ {
+ "index": 846,
+ "image_id": 2353398,
+ "entity": "dog",
+ "caption": "green felt the dog is standing on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "green felt the {} is standing on"
+ },
+ {
+ "index": 847,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "the dog is on a sofa",
+ "question": [
+ "is there the dog ?",
+ "is there a sofa ?"
+ ],
+ "prompt": "the {} is on a sofa"
+ },
+ {
+ "index": 848,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "dog's eyes are amber",
+ "question": [
+ "are there dog's eyes ?",
+ "is there amber ?"
+ ],
+ "prompt": "{}'s eyes are amber"
+ },
+ {
+ "index": 849,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "dog is laying on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} is laying on a couch"
+ },
+ {
+ "index": 850,
+ "image_id": 2352757,
+ "entity": "dog",
+ "caption": "the dog is wearing a jacket",
+ "question": [
+ "is there the dog ?",
+ "is there a jacket ?"
+ ],
+ "prompt": "the {} is wearing a jacket"
+ },
+ {
+ "index": 851,
+ "image_id": 2352757,
+ "entity": "dog",
+ "caption": "the dog has a black tail",
+ "question": [
+ "is there the dog ?",
+ "is there a black tail ?"
+ ],
+ "prompt": "the {} has a black tail"
+ },
+ {
+ "index": 852,
+ "image_id": 2352502,
+ "entity": "dog",
+ "caption": "The dog is biting the frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is biting the frisbee."
+ },
+ {
+ "index": 853,
+ "image_id": 2352502,
+ "entity": "dog",
+ "caption": "The dog is on the beach.",
+ "question": [
+ "is there the dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "The {} is on the beach."
+ },
+ {
+ "index": 854,
+ "image_id": 2351971,
+ "entity": "dog",
+ "caption": "legs and paws of dog that allow dog to walk with ",
+ "question": [
+ "are there legs ?",
+ "are there paws ?",
+ "is there dog ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs and paws of {} that allow {} to walk with "
+ },
+ {
+ "index": 855,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "The dog is holding a bowl in his mouth",
+ "question": [
+ "is there the dog ?",
+ "is there a bowl ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} is holding a bowl in his mouth"
+ },
+ {
+ "index": 856,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "The dog's ear is hanging downwards",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "The {}'s ear is hanging downwards"
+ },
+ {
+ "index": 857,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "dog has light brown face",
+ "question": [
+ "is there dog ?",
+ "is there light brown face ?"
+ ],
+ "prompt": "{} has light brown face"
+ },
+ {
+ "index": 858,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "dog is holding bowl",
+ "question": [
+ "is there dog ?",
+ "is there bowl ?"
+ ],
+ "prompt": "{} is holding bowl"
+ },
+ {
+ "index": 859,
+ "image_id": 2351811,
+ "entity": "dog",
+ "caption": "the dogs head ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s head "
+ },
+ {
+ "index": 860,
+ "image_id": 2351083,
+ "entity": "dog",
+ "caption": "dog holds a cap",
+ "question": [
+ "is there dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "{} holds a cap"
+ },
+ {
+ "index": 861,
+ "image_id": 2351083,
+ "entity": "dog",
+ "caption": "the dogs nose is black",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is black"
+ },
+ {
+ "index": 862,
+ "image_id": 2350951,
+ "entity": "dog",
+ "caption": "the mouth of dog is open",
+ "question": [
+ "is there the mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "the mouth of {} is open"
+ },
+ {
+ "index": 863,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the unfortunate dog is wearing a Harley Davidson bandanna",
+ "question": [
+ "is there the unfortunate dog ?"
+ ],
+ "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"
+ },
+ {
+ "index": 864,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the unfortunate dog is wearing a biker headband",
+ "question": [
+ "is there the unfortunate dog ?",
+ "is there a biker headband ?"
+ ],
+ "prompt": "the unfortunate {} is wearing a biker headband"
+ },
+ {
+ "index": 865,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the dog has cropped ears",
+ "question": [
+ "is there the dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "the {} has cropped ears"
+ },
+ {
+ "index": 866,
+ "image_id": 2350609,
+ "entity": "dog",
+ "caption": "lot where dog and woman stand",
+ "question": [
+ "is there lot ?",
+ "is there dog ?",
+ "is there woman ?"
+ ],
+ "prompt": "lot where {} and woman stand"
+ },
+ {
+ "index": 867,
+ "image_id": 2350606,
+ "entity": "dog",
+ "caption": "the dog is on a white platform",
+ "question": [
+ "is there the dog ?",
+ "is there a white platform ?"
+ ],
+ "prompt": "the {} is on a white platform"
+ },
+ {
+ "index": 868,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "legs of dog running",
+ "question": [
+ "are there legs ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs of {} running"
+ },
+ {
+ "index": 869,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "open mouth of dog running",
+ "question": [
+ "is there open mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "open mouth of {} running"
+ },
+ {
+ "index": 870,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog is white with black spots",
+ "question": [
+ "is there the dog ?",
+ "are there black spots ?"
+ ],
+ "prompt": "the {} is white with black spots"
+ },
+ {
+ "index": 871,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog is running with his mouth open",
+ "question": [
+ "is there the dog ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "the {} is running with his mouth open"
+ },
+ {
+ "index": 872,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog has a black spot over his eye",
+ "question": [
+ "is there the dog ?",
+ "is there a black spot ?",
+ "is there his eye ?"
+ ],
+ "prompt": "the {} has a black spot over his eye"
+ },
+ {
+ "index": 873,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dirt is flying from the dog's paws",
+ "question": [
+ "is there the dirt ?",
+ "are there the dog's paws ?"
+ ],
+ "prompt": "the dirt is flying from the {}'s paws"
+ },
+ {
+ "index": 874,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog's paws are touching from running",
+ "question": [
+ "are there the dog's paws ?"
+ ],
+ "prompt": "the {}'s paws are touching from running"
+ },
+ {
+ "index": 875,
+ "image_id": 2349548,
+ "entity": "dog",
+ "caption": "The dogs ear is brown.",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear is brown."
+ },
+ {
+ "index": 876,
+ "image_id": 2349547,
+ "entity": "dog",
+ "caption": "The dog has a pinkish nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a pinkish nose ?"
+ ],
+ "prompt": "The {} has a pinkish nose."
+ },
+ {
+ "index": 877,
+ "image_id": 2349421,
+ "entity": "dog",
+ "caption": "The dog is sitting on the chair ",
+ "question": [
+ "is there the dog ?",
+ "is there the chair ?"
+ ],
+ "prompt": "The {} is sitting on the chair "
+ },
+ {
+ "index": 878,
+ "image_id": 2349268,
+ "entity": "dog",
+ "caption": "the dog has long nails",
+ "question": [
+ "is there the dog ?",
+ "are there long nails ?"
+ ],
+ "prompt": "the {} has long nails"
+ },
+ {
+ "index": 879,
+ "image_id": 2349268,
+ "entity": "dog",
+ "caption": "the dog lays with toy",
+ "question": [
+ "is there the dog ?",
+ "is there toy ?"
+ ],
+ "prompt": "the {} lays with toy"
+ },
+ {
+ "index": 880,
+ "image_id": 2348690,
+ "entity": "dog",
+ "caption": "the dog is chewing up a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "the {} is chewing up a stuffed animal"
+ },
+ {
+ "index": 881,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "dog with hind legs stretched out",
+ "question": [
+ "is there dog ?",
+ "are there hind legs ?"
+ ],
+ "prompt": "{} with hind legs stretched out"
+ },
+ {
+ "index": 882,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "A dog is laying on the bed",
+ "question": [
+ "is there a dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "A {} is laying on the bed"
+ },
+ {
+ "index": 883,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "The dog has white on her paws",
+ "question": [
+ "is there the dog ?",
+ "are there her paws ?"
+ ],
+ "prompt": "The {} has white on her paws"
+ },
+ {
+ "index": 884,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "tan dog's face as he holds the frisbee",
+ "question": [
+ "is there tan dog's face ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "tan {}'s face as he holds the frisbee"
+ },
+ {
+ "index": 885,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "dog's eye looking up past the frisbee",
+ "question": [
+ "is there dog's eye ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{}'s eye looking up past the frisbee"
+ },
+ {
+ "index": 886,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "dog's ear hanging down as he chews the frisbee",
+ "question": [
+ "is there dog's ear ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{}'s ear hanging down as he chews the frisbee"
+ },
+ {
+ "index": 887,
+ "image_id": 2347998,
+ "entity": "dog",
+ "caption": "dog is on the newspaper",
+ "question": [
+ "is there dog ?",
+ "is there the newspaper ?"
+ ],
+ "prompt": "{} is on the newspaper"
+ },
+ {
+ "index": 888,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "a dog tag shaped like a bone ",
+ "question": [
+ "is there a dog tag ?",
+ "is there a bone ?"
+ ],
+ "prompt": "a {} tag shaped like a bone "
+ },
+ {
+ "index": 889,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is inside a room",
+ "question": [
+ "is there the dog ?",
+ "is there a room ?"
+ ],
+ "prompt": "The {} is inside a room"
+ },
+ {
+ "index": 890,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is next to a television",
+ "question": [
+ "is there the dog ?",
+ "is there a television ?"
+ ],
+ "prompt": "The {} is next to a television"
+ },
+ {
+ "index": 891,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is next to a laptop computer",
+ "question": [
+ "is there the dog ?",
+ "is there a laptop computer ?"
+ ],
+ "prompt": "The {} is next to a laptop computer"
+ },
+ {
+ "index": 892,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is on a table",
+ "question": [
+ "is there the dog ?",
+ "is there a table ?"
+ ],
+ "prompt": "The {} is on a table"
+ },
+ {
+ "index": 893,
+ "image_id": 2347591,
+ "entity": "dog",
+ "caption": "A woman who is sitting with a dog",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A woman who is sitting with a {}"
+ },
+ {
+ "index": 894,
+ "image_id": 2347591,
+ "entity": "dog",
+ "caption": "Woman is holding the dog",
+ "question": [
+ "is there woman ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Woman is holding the {}"
+ },
+ {
+ "index": 895,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "a dog with a disc on it's face",
+ "question": [
+ "is there a dog ?",
+ "is there a disc ?"
+ ],
+ "prompt": "a {} with a disc on it's face"
+ },
+ {
+ "index": 896,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "dog has black and white tail",
+ "question": [
+ "is there dog ?",
+ "is there black and white tail ?"
+ ],
+ "prompt": "{} has black and white tail"
+ },
+ {
+ "index": 897,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "dog has white neck",
+ "question": [
+ "is there dog ?",
+ "is there white neck ?"
+ ],
+ "prompt": "{} has white neck"
+ },
+ {
+ "index": 898,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "The dogs tail",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s tail"
+ },
+ {
+ "index": 899,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "The ears that belong to the dog",
+ "question": [
+ "are there the ears ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The ears that belong to the {}"
+ },
+ {
+ "index": 900,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "A dog that is standing in the dirt",
+ "question": [
+ "is there a dog ?",
+ "is there the dirt ?"
+ ],
+ "prompt": "A {} that is standing in the dirt"
+ },
+ {
+ "index": 901,
+ "image_id": 2347473,
+ "entity": "dog",
+ "caption": "the brown patches on the dogs face",
+ "question": [
+ "are there the brown patches ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "the brown patches on the {}s face"
+ },
+ {
+ "index": 902,
+ "image_id": 2347340,
+ "entity": "dog",
+ "caption": "dog's dark eyes are open",
+ "question": [
+ "are there dog's dark eyes ?"
+ ],
+ "prompt": "{}'s dark eyes are open"
+ },
+ {
+ "index": 903,
+ "image_id": 2347340,
+ "entity": "dog",
+ "caption": "the dog is on a chair",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "the {} is on a chair"
+ },
+ {
+ "index": 904,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "the dog is in a car",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "the {} is in a car"
+ },
+ {
+ "index": 905,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "dog has tongue hanging out ",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} has tongue hanging out "
+ },
+ {
+ "index": 906,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "The dog have waggy ear.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} have waggy ear."
+ },
+ {
+ "index": 907,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is resting his head on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there his head ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is resting his head on the couch."
+ },
+ {
+ "index": 908,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "The {} is wearing a blue collar."
+ },
+ {
+ "index": 909,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog's eye is open.",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye is open."
+ },
+ {
+ "index": 910,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog's fur is very short.",
+ "question": [
+ "is there the dog's fur ?"
+ ],
+ "prompt": "The {}'s fur is very short."
+ },
+ {
+ "index": 911,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is sitting on top of white sheet.",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there white sheet ?"
+ ],
+ "prompt": "The {} is sitting on top of white sheet."
+ },
+ {
+ "index": 912,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "the dogs neck is long ",
+ "question": [
+ "are there the dogs neck ?"
+ ],
+ "prompt": "the {}s neck is long "
+ },
+ {
+ "index": 913,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "dog is catching frisbee",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?"
+ ],
+ "prompt": "{} is catching frisbee"
+ },
+ {
+ "index": 914,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "dog has white frisbee in mouth",
+ "question": [
+ "is there dog ?",
+ "is there white frisbee ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} has white frisbee in mouth"
+ },
+ {
+ "index": 915,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "tree is next to dog",
+ "question": [
+ "is there tree ?",
+ "is there dog ?"
+ ],
+ "prompt": "tree is next to {}"
+ },
+ {
+ "index": 916,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "man in cap leaning forward behind dog",
+ "question": [
+ "is there man ?",
+ "is there cap ?",
+ "is there dog ?"
+ ],
+ "prompt": "man in cap leaning forward behind {}"
+ },
+ {
+ "index": 917,
+ "image_id": 2346765,
+ "entity": "dog",
+ "caption": "neck of dog is white",
+ "question": [
+ "is there neck ?",
+ "is there dog ?"
+ ],
+ "prompt": "neck of {} is white"
+ },
+ {
+ "index": 918,
+ "image_id": 2346434,
+ "entity": "dog",
+ "caption": "the dog's eyes are black",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are black"
+ },
+ {
+ "index": 919,
+ "image_id": 2346434,
+ "entity": "dog",
+ "caption": "black pads and nails are on the dog's paws",
+ "question": [
+ "are there black pads ?",
+ "are there nails ?",
+ "are there the dog's paws ?"
+ ],
+ "prompt": "black pads and nails are on the {}'s paws"
+ },
+ {
+ "index": 920,
+ "image_id": 2346247,
+ "entity": "dog",
+ "caption": "Brown ear on the dog.",
+ "question": [
+ "is there brown ear ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Brown ear on the {}."
+ },
+ {
+ "index": 921,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "the black dog has a sad face",
+ "question": [
+ "is there the black dog ?",
+ "is there a sad face ?"
+ ],
+ "prompt": "the black {} has a sad face"
+ },
+ {
+ "index": 922,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "A dog is near a bag.",
+ "question": [
+ "is there a dog ?",
+ "is there a bag ?"
+ ],
+ "prompt": "A {} is near a bag."
+ },
+ {
+ "index": 923,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog's mouth is closed.",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is closed."
+ },
+ {
+ "index": 924,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog is wearing a crocheted hat.",
+ "question": [
+ "is there the dog ?",
+ "is there a crocheted hat ?"
+ ],
+ "prompt": "The {} is wearing a crocheted hat."
+ },
+ {
+ "index": 925,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog has an ear.",
+ "question": [
+ "is there the dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "The {} has an ear."
+ },
+ {
+ "index": 926,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog has an eye.",
+ "question": [
+ "is there the dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "The {} has an eye."
+ },
+ {
+ "index": 927,
+ "image_id": 2345642,
+ "entity": "dog",
+ "caption": "head of dog bowed down ",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} bowed down "
+ },
+ {
+ "index": 928,
+ "image_id": 2345642,
+ "entity": "dog",
+ "caption": "green blanket the dog is laying on",
+ "question": [
+ "is there green blanket ?",
+ "is there the dog ?"
+ ],
+ "prompt": "green blanket the {} is laying on"
+ },
+ {
+ "index": 929,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "the dogs tail ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s tail "
+ },
+ {
+ "index": 930,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "a black dog looks onward with his tongue hanging out",
+ "question": [
+ "is there a black dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "a black {} looks onward with his tongue hanging out"
+ },
+ {
+ "index": 931,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "a man stands on the boat holding a dog with a leash",
+ "question": [
+ "is there a man ?",
+ "is there the boat ?",
+ "is there a dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "a man stands on the boat holding a {} with a leash"
+ },
+ {
+ "index": 932,
+ "image_id": 2345231,
+ "entity": "dog",
+ "caption": "the dogs paws on on the computer",
+ "question": [
+ "are there the dogs ?",
+ "is there the computer ?"
+ ],
+ "prompt": "the {}s paws on on the computer"
+ },
+ {
+ "index": 933,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "Extra pillow for the dog to be comfortable",
+ "question": [
+ "is there extra pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Extra pillow for the {} to be comfortable"
+ },
+ {
+ "index": 934,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "Teddy bear for the dog",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Teddy bear for the {}"
+ },
+ {
+ "index": 935,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "a dog curled up on its bed ",
+ "question": [
+ "is there a dog ?",
+ "is there its bed ?"
+ ],
+ "prompt": "a {} curled up on its bed "
+ },
+ {
+ "index": 936,
+ "image_id": 2344922,
+ "entity": "dog",
+ "caption": "This dog has a very red collar",
+ "question": [
+ "is there this dog ?",
+ "is there a very red collar ?"
+ ],
+ "prompt": "This {} has a very red collar"
+ },
+ {
+ "index": 937,
+ "image_id": 2344729,
+ "entity": "dog",
+ "caption": "the dog is in the car",
+ "question": [
+ "is there the dog ?",
+ "is there the car ?"
+ ],
+ "prompt": "the {} is in the car"
+ },
+ {
+ "index": 938,
+ "image_id": 2344729,
+ "entity": "dog",
+ "caption": "this is the dogs leash",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "this is the {}s leash"
+ },
+ {
+ "index": 939,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "The dog is wearing a tag.",
+ "question": [
+ "is there the dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "The {} is wearing a tag."
+ },
+ {
+ "index": 940,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "dog is wearing a tag",
+ "question": [
+ "is there dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "{} is wearing a tag"
+ },
+ {
+ "index": 941,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "dogs eye looks white ",
+ "question": [
+ "are there dogs ?"
+ ],
+ "prompt": "{}s eye looks white "
+ },
+ {
+ "index": 942,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs nose is black.",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is black."
+ },
+ {
+ "index": 943,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs nose is small",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is small"
+ },
+ {
+ "index": 944,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs fur is white.",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "The {}s fur is white."
+ },
+ {
+ "index": 945,
+ "image_id": 2344358,
+ "entity": "dog",
+ "caption": "this dog is under a white blanket",
+ "question": [
+ "is there this dog ?",
+ "is there a white blanket ?"
+ ],
+ "prompt": "this {} is under a white blanket"
+ },
+ {
+ "index": 946,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "the dog is at the beach",
+ "question": [
+ "is there the dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "the {} is at the beach"
+ },
+ {
+ "index": 947,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "the dog is sitting on a towel",
+ "question": [
+ "is there the dog ?",
+ "is there a towel ?"
+ ],
+ "prompt": "the {} is sitting on a towel"
+ },
+ {
+ "index": 948,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "a bag is by the dog",
+ "question": [
+ "is there a bag ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a bag is by the {}"
+ },
+ {
+ "index": 949,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "Brown dog is on a towel",
+ "question": [
+ "is there brown dog ?",
+ "is there a towel ?"
+ ],
+ "prompt": "Brown {} is on a towel"
+ },
+ {
+ "index": 950,
+ "image_id": 2344228,
+ "entity": "dog",
+ "caption": "the dog has a brown part",
+ "question": [
+ "is there the dog ?",
+ "is there a brown part ?"
+ ],
+ "prompt": "the {} has a brown part"
+ },
+ {
+ "index": 951,
+ "image_id": 2344228,
+ "entity": "dog",
+ "caption": "the dog has a black spot",
+ "question": [
+ "is there the dog ?",
+ "is there a black spot ?"
+ ],
+ "prompt": "the {} has a black spot"
+ },
+ {
+ "index": 952,
+ "image_id": 2343539,
+ "entity": "dog",
+ "caption": "dog's tongue is hanging out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is hanging out"
+ },
+ {
+ "index": 953,
+ "image_id": 2343539,
+ "entity": "dog",
+ "caption": "dog's ears are back ",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are back "
+ },
+ {
+ "index": 954,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has three balls",
+ "question": [
+ "is there the dog ?",
+ "are there three balls ?"
+ ],
+ "prompt": "the {} has three balls"
+ },
+ {
+ "index": 955,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has balls in his mouth",
+ "question": [
+ "is there the dog ?",
+ "are there balls ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "the {} has balls in his mouth"
+ },
+ {
+ "index": 956,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has a spotted nose",
+ "question": [
+ "is there the dog ?",
+ "is there a spotted nose ?"
+ ],
+ "prompt": "the {} has a spotted nose"
+ },
+ {
+ "index": 957,
+ "image_id": 2343149,
+ "entity": "dog",
+ "caption": "The dog is splashing water",
+ "question": [
+ "is there the dog ?",
+ "is there water ?"
+ ],
+ "prompt": "The {} is splashing water"
+ },
+ {
+ "index": 958,
+ "image_id": 2343149,
+ "entity": "dog",
+ "caption": "The dog's teeth are visible",
+ "question": [
+ "are there the dog's teeth ?"
+ ],
+ "prompt": "The {}'s teeth are visible"
+ },
+ {
+ "index": 959,
+ "image_id": 2343038,
+ "entity": "dog",
+ "caption": "dog with eyes closed",
+ "question": [
+ "is there dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} with eyes closed"
+ },
+ {
+ "index": 960,
+ "image_id": 2342562,
+ "entity": "dog",
+ "caption": "dog mout to grab frisbees and eat food and drink water ",
+ "question": [
+ "is there dog mout ?",
+ "are there frisbees ?",
+ "is there food ?",
+ "is there water ?"
+ ],
+ "prompt": "{} mout to grab frisbees and eat food and drink water "
+ },
+ {
+ "index": 961,
+ "image_id": 2342562,
+ "entity": "dog",
+ "caption": "The dog has a black ear.",
+ "question": [
+ "is there the dog ?",
+ "is there a black ear ?"
+ ],
+ "prompt": "The {} has a black ear."
+ },
+ {
+ "index": 962,
+ "image_id": 2341045,
+ "entity": "dog",
+ "caption": "this dog and teddy bear are posing",
+ "question": [
+ "is there this dog ?",
+ "is there bear ?"
+ ],
+ "prompt": "this {} and teddy bear are posing"
+ },
+ {
+ "index": 963,
+ "image_id": 2341045,
+ "entity": "dog",
+ "caption": "The dog is resting on white shaggy carpet.",
+ "question": [
+ "is there the dog ?",
+ "is there white shaggy carpet ?"
+ ],
+ "prompt": "The {} is resting on white shaggy carpet."
+ },
+ {
+ "index": 964,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The banana is inside the dog's mouth.",
+ "question": [
+ "is there the banana ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The banana is inside the {}'s mouth."
+ },
+ {
+ "index": 965,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The little dog is sitting on top of the white blanket.",
+ "question": [
+ "is there the little dog ?",
+ "is there top ?",
+ "is there the white blanket ?"
+ ],
+ "prompt": "The little {} is sitting on top of the white blanket."
+ },
+ {
+ "index": 966,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The dog has a pink collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a pink collar ?"
+ ],
+ "prompt": "The {} has a pink collar."
+ },
+ {
+ "index": 967,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The dog is wearing a white collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a white collar ?"
+ ],
+ "prompt": "The {} is wearing a white collar."
+ },
+ {
+ "index": 968,
+ "image_id": 2340686,
+ "entity": "dog",
+ "caption": "The dog face is partially white.",
+ "question": [
+ "is there the dog face ?"
+ ],
+ "prompt": "The {} face is partially white."
+ },
+ {
+ "index": 969,
+ "image_id": 2339641,
+ "entity": "dog",
+ "caption": "dog has white spot on chest",
+ "question": [
+ "is there dog ?",
+ "is there white spot ?",
+ "is there chest ?"
+ ],
+ "prompt": "{} has white spot on chest"
+ },
+ {
+ "index": 970,
+ "image_id": 2339641,
+ "entity": "dog",
+ "caption": "dog is on a motorcycle",
+ "question": [
+ "is there dog ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "{} is on a motorcycle"
+ },
+ {
+ "index": 971,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "The dog sits on a chair. ",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "The {} sits on a chair. "
+ },
+ {
+ "index": 972,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "A blanket that the dog sits on.",
+ "question": [
+ "is there a blanket ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A blanket that the {} sits on."
+ },
+ {
+ "index": 973,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "dog has black back",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has black back"
+ },
+ {
+ "index": 974,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "The cat is next to the dog.",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The cat is next to the {}."
+ },
+ {
+ "index": 975,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "The paw on the dog is white.",
+ "question": [
+ "is there the paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The paw on the {} is white."
+ },
+ {
+ "index": 976,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "brown striped cat lays next to dog",
+ "question": [
+ "is there brown striped cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "brown striped cat lays next to {}"
+ },
+ {
+ "index": 977,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "white front left paw on dog",
+ "question": [
+ "is there white front ?",
+ "is there paw ?",
+ "is there dog ?"
+ ],
+ "prompt": "white front left paw on {}"
+ },
+ {
+ "index": 978,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "dog has white fur around nose",
+ "question": [
+ "is there dog ?",
+ "is there white fur ?",
+ "is there nose ?"
+ ],
+ "prompt": "{} has white fur around nose"
+ },
+ {
+ "index": 979,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "dog has white fur around paws",
+ "question": [
+ "is there dog ?",
+ "is there white fur ?",
+ "are there paws ?"
+ ],
+ "prompt": "{} has white fur around paws"
+ },
+ {
+ "index": 980,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has black ear",
+ "question": [
+ "is there dog ?",
+ "is there black ear ?"
+ ],
+ "prompt": "{} has black ear"
+ },
+ {
+ "index": 981,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has black eye",
+ "question": [
+ "is there dog ?",
+ "is there black eye ?"
+ ],
+ "prompt": "{} has black eye"
+ },
+ {
+ "index": 982,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has a white tooth",
+ "question": [
+ "is there dog ?",
+ "is there a white tooth ?"
+ ],
+ "prompt": "{} has a white tooth"
+ },
+ {
+ "index": 983,
+ "image_id": 2337950,
+ "entity": "dog",
+ "caption": "couch man and dog are sitting on",
+ "question": [
+ "is there couch man ?",
+ "is there dog ?"
+ ],
+ "prompt": "couch man and {} are sitting on"
+ },
+ {
+ "index": 984,
+ "image_id": 2337205,
+ "entity": "dog",
+ "caption": "the dog's eye is open ",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is open "
+ },
+ {
+ "index": 985,
+ "image_id": 2336811,
+ "entity": "dog",
+ "caption": "Front left paw of the dog",
+ "question": [
+ "is there front left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Front left paw of the {}"
+ },
+ {
+ "index": 986,
+ "image_id": 2336773,
+ "entity": "dog",
+ "caption": "Small dogs right eye",
+ "question": [
+ "are there small dogs ?"
+ ],
+ "prompt": "Small {}s right eye"
+ },
+ {
+ "index": 987,
+ "image_id": 2336773,
+ "entity": "dog",
+ "caption": "Small dogs left eye",
+ "question": [
+ "are there small dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "Small {}s left eye"
+ },
+ {
+ "index": 988,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog is carrying a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is carrying a frisbee"
+ },
+ {
+ "index": 989,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's front legs are white",
+ "question": [
+ "are there the dog's front legs ?"
+ ],
+ "prompt": "the {}'s front legs are white"
+ },
+ {
+ "index": 990,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's back legs are black",
+ "question": [
+ "are there the dog's back legs ?"
+ ],
+ "prompt": "the {}'s back legs are black"
+ },
+ {
+ "index": 991,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's shadow is in the grass",
+ "question": [
+ "is there the dog's shadow ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {}'s shadow is in the grass"
+ },
+ {
+ "index": 992,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "dog with it's head in a box",
+ "question": [
+ "is there dog ?",
+ "is there head ?",
+ "is there a box ?"
+ ],
+ "prompt": "{} with it's head in a box"
+ },
+ {
+ "index": 993,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "A black streak down dogs back",
+ "question": [
+ "is there a black streak ?"
+ ],
+ "prompt": "A black streak down {}s back"
+ },
+ {
+ "index": 994,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "the dogs head is in the box",
+ "question": [
+ "are there the dogs ?",
+ "is there the box ?"
+ ],
+ "prompt": "the {}s head is in the box"
+ },
+ {
+ "index": 995,
+ "image_id": 2336257,
+ "entity": "dog",
+ "caption": "the dog is in water",
+ "question": [
+ "is there the dog ?",
+ "is there water ?"
+ ],
+ "prompt": "the {} is in water"
+ },
+ {
+ "index": 996,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "Black and white dog standing on a sandy ground.",
+ "question": [
+ "is there black and white dog ?",
+ "is there a sandy ground ?"
+ ],
+ "prompt": "Black and white {} standing on a sandy ground."
+ },
+ {
+ "index": 997,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "The dog's pink tongue sticking out.",
+ "question": [
+ "is there the dog's pink tongue ?"
+ ],
+ "prompt": "The {}'s pink tongue sticking out."
+ },
+ {
+ "index": 998,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's face is black and white",
+ "question": [
+ "is there dog's face ?"
+ ],
+ "prompt": "{}'s face is black and white"
+ },
+ {
+ "index": 999,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's tongue is sticking out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is sticking out"
+ },
+ {
+ "index": 1000,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's paw is white",
+ "question": [
+ "is there dog's paw ?"
+ ],
+ "prompt": "{}'s paw is white"
+ },
+ {
+ "index": 1001,
+ "image_id": 2336045,
+ "entity": "dog",
+ "caption": "fake dog sits on bench",
+ "question": [
+ "is there fake dog ?",
+ "is there bench ?"
+ ],
+ "prompt": "fake {} sits on bench"
+ },
+ {
+ "index": 1002,
+ "image_id": 2336045,
+ "entity": "dog",
+ "caption": "fake dog wears red collar",
+ "question": [
+ "is there fake dog ?",
+ "is there red collar ?"
+ ],
+ "prompt": "fake {} wears red collar"
+ },
+ {
+ "index": 1003,
+ "image_id": 2335892,
+ "entity": "dog",
+ "caption": "Toy occupies leashed dog.",
+ "question": [
+ "is there toy ?",
+ "is there leashed dog ?"
+ ],
+ "prompt": "Toy occupies leashed {}."
+ },
+ {
+ "index": 1004,
+ "image_id": 2335707,
+ "entity": "dog",
+ "caption": "dog has dark claws",
+ "question": [
+ "is there dog ?",
+ "are there dark claws ?"
+ ],
+ "prompt": "{} has dark claws"
+ },
+ {
+ "index": 1005,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "Tan dog is holding toy in mouth.",
+ "question": [
+ "is there tan dog ?",
+ "is there toy ?",
+ "is there mouth ?"
+ ],
+ "prompt": "Tan {} is holding toy in mouth."
+ },
+ {
+ "index": 1006,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "This dog seems to have a white face",
+ "question": [
+ "is there this dog ?",
+ "is there a white face ?"
+ ],
+ "prompt": "This {} seems to have a white face"
+ },
+ {
+ "index": 1007,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "This dog has quite a paw visible here",
+ "question": [
+ "is there this dog ?",
+ "is there quite a paw ?"
+ ],
+ "prompt": "This {} has quite a paw visible here"
+ },
+ {
+ "index": 1008,
+ "image_id": 2335550,
+ "entity": "dog",
+ "caption": "dog is laying on the couch",
+ "question": [
+ "is there dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "{} is laying on the couch"
+ },
+ {
+ "index": 1009,
+ "image_id": 2335550,
+ "entity": "dog",
+ "caption": "dog has fluffy dark fur",
+ "question": [
+ "is there dog ?",
+ "is there fluffy dark fur ?"
+ ],
+ "prompt": "{} has fluffy dark fur"
+ },
+ {
+ "index": 1010,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "an ear is up on the dog",
+ "question": [
+ "is there an ear ?",
+ "is there the dog ?"
+ ],
+ "prompt": "an ear is up on the {}"
+ },
+ {
+ "index": 1011,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "the dog is wearing a yellow coat",
+ "question": [
+ "is there the dog ?",
+ "is there a yellow coat ?"
+ ],
+ "prompt": "the {} is wearing a yellow coat"
+ },
+ {
+ "index": 1012,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "dog's cloth is green",
+ "question": [
+ "is there dog's cloth ?"
+ ],
+ "prompt": "{}'s cloth is green"
+ },
+ {
+ "index": 1013,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "Chain connected to dog's collar.",
+ "question": [
+ "is there chain ?",
+ "is there dog's collar ?"
+ ],
+ "prompt": "Chain connected to {}'s collar."
+ },
+ {
+ "index": 1014,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "the dog has a collar ",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar "
+ },
+ {
+ "index": 1015,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "the collar is around the dog's neck",
+ "question": [
+ "is there the collar ?",
+ "is there the dog's neck ?"
+ ],
+ "prompt": "the collar is around the {}'s neck"
+ },
+ {
+ "index": 1016,
+ "image_id": 2334936,
+ "entity": "dog",
+ "caption": "dog has an eye",
+ "question": [
+ "is there dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "{} has an eye"
+ },
+ {
+ "index": 1017,
+ "image_id": 2334611,
+ "entity": "dog",
+ "caption": "front left foot on dog",
+ "question": [
+ "is there front left foot ?",
+ "is there dog ?"
+ ],
+ "prompt": "front left foot on {}"
+ },
+ {
+ "index": 1018,
+ "image_id": 2334526,
+ "entity": "dog",
+ "caption": "The dog nose is black.",
+ "question": [
+ "is there the dog nose ?"
+ ],
+ "prompt": "The {} nose is black."
+ },
+ {
+ "index": 1019,
+ "image_id": 2334526,
+ "entity": "dog",
+ "caption": "The dog eyes on his face.",
+ "question": [
+ "is there the dog ?",
+ "is there his face ?"
+ ],
+ "prompt": "The {} eyes on his face."
+ },
+ {
+ "index": 1020,
+ "image_id": 2334482,
+ "entity": "dog",
+ "caption": "This is a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "This is a {}"
+ },
+ {
+ "index": 1021,
+ "image_id": 2334482,
+ "entity": "dog",
+ "caption": "The dog is on a bench",
+ "question": [
+ "is there the dog ?",
+ "is there a bench ?"
+ ],
+ "prompt": "The {} is on a bench"
+ },
+ {
+ "index": 1022,
+ "image_id": 2334375,
+ "entity": "dog",
+ "caption": "dog nose is black",
+ "question": [
+ "is there dog nose ?"
+ ],
+ "prompt": "{} nose is black"
+ },
+ {
+ "index": 1023,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left eye is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye is black."
+ },
+ {
+ "index": 1024,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left eye is round.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye is round."
+ },
+ {
+ "index": 1025,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left ear is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "The {}s left ear is black."
+ },
+ {
+ "index": 1026,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs right eye is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there right eye ?"
+ ],
+ "prompt": "The {}s right eye is black."
+ },
+ {
+ "index": 1027,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "The dog is laying on the back of the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the back ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is laying on the back of the couch"
+ },
+ {
+ "index": 1028,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "The dogs tongue is sticking out of his mouth",
+ "question": [
+ "are there the dogs tongue ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {}s tongue is sticking out of his mouth"
+ },
+ {
+ "index": 1029,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has a nose",
+ "question": [
+ "is there dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "{} has a nose"
+ },
+ {
+ "index": 1030,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has an ear",
+ "question": [
+ "is there dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "{} has an ear"
+ },
+ {
+ "index": 1031,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has a tounge",
+ "question": [
+ "is there dog ?",
+ "is there a tounge ?"
+ ],
+ "prompt": "{} has a tounge"
+ },
+ {
+ "index": 1032,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has an arm",
+ "question": [
+ "is there dog ?",
+ "is there an arm ?"
+ ],
+ "prompt": "{} has an arm"
+ },
+ {
+ "index": 1033,
+ "image_id": 2333590,
+ "entity": "dog",
+ "caption": "the dog is smelling her hand",
+ "question": [
+ "is there the dog ?",
+ "is there her hand ?"
+ ],
+ "prompt": "the {} is smelling her hand"
+ },
+ {
+ "index": 1034,
+ "image_id": 2333443,
+ "entity": "dog",
+ "caption": "wet dog taking a bath in a tub",
+ "question": [
+ "is there wet dog ?",
+ "is there a bath ?",
+ "is there a tub ?"
+ ],
+ "prompt": "wet {} taking a bath in a tub"
+ },
+ {
+ "index": 1035,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a brown eye.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown eye ?"
+ ],
+ "prompt": "The {} has a brown eye."
+ },
+ {
+ "index": 1036,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dogs eye is open.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is open."
+ },
+ {
+ "index": 1037,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has teeth.",
+ "question": [
+ "is there the dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "The {} has teeth."
+ },
+ {
+ "index": 1038,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a tongue.",
+ "question": [
+ "is there the dog ?",
+ "is there a tongue ?"
+ ],
+ "prompt": "The {} has a tongue."
+ },
+ {
+ "index": 1039,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "The {} has a red collar"
+ },
+ {
+ "index": 1040,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog with its ears bag",
+ "question": [
+ "is there dog ?",
+ "are there its ears ?"
+ ],
+ "prompt": "{} with its ears bag"
+ },
+ {
+ "index": 1041,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog mouth open",
+ "question": [],
+ "prompt": "{} mouth open"
+ },
+ {
+ "index": 1042,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog has black and white paws",
+ "question": [
+ "is there dog ?",
+ "are there black and white paws ?"
+ ],
+ "prompt": "{} has black and white paws"
+ },
+ {
+ "index": 1043,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog's mouth is open with tounge out",
+ "question": [
+ "is there dog's mouth ?",
+ "is there tounge ?"
+ ],
+ "prompt": "{}'s mouth is open with tounge out"
+ },
+ {
+ "index": 1044,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog has its mouth open.",
+ "question": [
+ "is there the dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has its mouth open."
+ },
+ {
+ "index": 1045,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog's ear is standing straight up.",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is standing straight up."
+ },
+ {
+ "index": 1046,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog's left back leg.",
+ "question": [
+ "is there the dog ?",
+ "is there leg ?"
+ ],
+ "prompt": "the {}'s left back leg."
+ },
+ {
+ "index": 1047,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "dog mouth wide open ",
+ "question": [],
+ "prompt": "{} mouth wide open "
+ },
+ {
+ "index": 1048,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "dog's tongue is pink.",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is pink."
+ },
+ {
+ "index": 1049,
+ "image_id": 2332835,
+ "entity": "dog",
+ "caption": "The dogs tongue is pink.",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "The {}s tongue is pink."
+ },
+ {
+ "index": 1050,
+ "image_id": 2332835,
+ "entity": "dog",
+ "caption": "The dogs right eye is round.",
+ "question": [
+ "are there the dogs ?",
+ "is there right eye ?"
+ ],
+ "prompt": "The {}s right eye is round."
+ },
+ {
+ "index": 1051,
+ "image_id": 2332607,
+ "entity": "dog",
+ "caption": "dog's eyes looking at camera",
+ "question": [
+ "are there dog's eyes ?",
+ "is there camera ?"
+ ],
+ "prompt": "{}'s eyes looking at camera"
+ },
+ {
+ "index": 1052,
+ "image_id": 2332583,
+ "entity": "dog",
+ "caption": "dog has brown tail",
+ "question": [
+ "is there dog ?",
+ "is there brown tail ?"
+ ],
+ "prompt": "{} has brown tail"
+ },
+ {
+ "index": 1053,
+ "image_id": 2332583,
+ "entity": "dog",
+ "caption": "dog has brown back",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has brown back"
+ },
+ {
+ "index": 1054,
+ "image_id": 2332513,
+ "entity": "dog",
+ "caption": "two dogs are lying ",
+ "question": [
+ "are there two dogs ?"
+ ],
+ "prompt": "two {}s are lying "
+ },
+ {
+ "index": 1055,
+ "image_id": 2332513,
+ "entity": "dog",
+ "caption": "this dog's head is up ",
+ "question": [
+ "is there this dog's head ?"
+ ],
+ "prompt": "this {}'s head is up "
+ },
+ {
+ "index": 1056,
+ "image_id": 2332418,
+ "entity": "dog",
+ "caption": "dog has white ears",
+ "question": [
+ "is there dog ?",
+ "are there white ears ?"
+ ],
+ "prompt": "{} has white ears"
+ },
+ {
+ "index": 1057,
+ "image_id": 2331647,
+ "entity": "dog",
+ "caption": "The hat the dog is wearing.",
+ "question": [
+ "is there the hat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The hat the {} is wearing."
+ },
+ {
+ "index": 1058,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog tongue is pink.",
+ "question": [
+ "is there the dog tongue ?"
+ ],
+ "prompt": "The {} tongue is pink."
+ },
+ {
+ "index": 1059,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog is licking his tongue out.",
+ "question": [
+ "is there the dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "The {} is licking his tongue out."
+ },
+ {
+ "index": 1060,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The frisbee is near the dog leg.",
+ "question": [
+ "is there the dog leg ?"
+ ],
+ "prompt": "The frisbee is near the {} leg."
+ },
+ {
+ "index": 1061,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog is playing with the frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is playing with the frisbee"
+ },
+ {
+ "index": 1062,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The Frisbee is in front of the dog. ",
+ "question": [
+ "is there the frisbee ?",
+ "is there front ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The Frisbee is in front of the {}. "
+ },
+ {
+ "index": 1063,
+ "image_id": 2331395,
+ "entity": "dog",
+ "caption": "The front left paw of the dog.",
+ "question": [
+ "is there the front left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The front left paw of the {}."
+ },
+ {
+ "index": 1064,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has long nose",
+ "question": [
+ "is there dog ?",
+ "is there long nose ?"
+ ],
+ "prompt": "{} has long nose"
+ },
+ {
+ "index": 1065,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has nice coat",
+ "question": [
+ "is there dog ?",
+ "is there nice coat ?"
+ ],
+ "prompt": "{} has nice coat"
+ },
+ {
+ "index": 1066,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has big ear",
+ "question": [
+ "is there dog ?",
+ "is there big ear ?"
+ ],
+ "prompt": "{} has big ear"
+ },
+ {
+ "index": 1067,
+ "image_id": 2329335,
+ "entity": "dog",
+ "caption": "dog has brown paws",
+ "question": [
+ "is there dog ?",
+ "are there brown paws ?"
+ ],
+ "prompt": "{} has brown paws"
+ },
+ {
+ "index": 1068,
+ "image_id": 2329309,
+ "entity": "dog",
+ "caption": "brown white and black dog catching yellow Frisbee",
+ "question": [
+ "is there brown white and black dog ?",
+ "is there yellow frisbee ?"
+ ],
+ "prompt": "brown white and black {} catching yellow Frisbee"
+ },
+ {
+ "index": 1069,
+ "image_id": 2329309,
+ "entity": "dog",
+ "caption": "Frisbee caught by black and brown dog",
+ "question": [
+ "is there black and brown dog ?"
+ ],
+ "prompt": "Frisbee caught by black and brown {}"
+ },
+ {
+ "index": 1070,
+ "image_id": 2329275,
+ "entity": "dog",
+ "caption": "the dog is lying on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is lying on the couch"
+ },
+ {
+ "index": 1071,
+ "image_id": 2329129,
+ "entity": "dog",
+ "caption": "the dog is eating a cake",
+ "question": [
+ "is there the dog ?",
+ "is there a cake ?"
+ ],
+ "prompt": "the {} is eating a cake"
+ },
+ {
+ "index": 1072,
+ "image_id": 2328916,
+ "entity": "dog",
+ "caption": "The dog is sniffing the donut",
+ "question": [
+ "is there the dog ?",
+ "is there the donut ?"
+ ],
+ "prompt": "The {} is sniffing the donut"
+ },
+ {
+ "index": 1073,
+ "image_id": 2328916,
+ "entity": "dog",
+ "caption": "bulldog sniffing a doughnut ",
+ "question": [
+ "is there a doughnut ?"
+ ],
+ "prompt": "bull{} sniffing a doughnut "
+ },
+ {
+ "index": 1074,
+ "image_id": 2328869,
+ "entity": "dog",
+ "caption": "black hat dog is wearing",
+ "question": [
+ "is there black hat dog ?"
+ ],
+ "prompt": "black hat {} is wearing"
+ },
+ {
+ "index": 1075,
+ "image_id": 2328633,
+ "entity": "dog",
+ "caption": "a dog with black spots on it's ear",
+ "question": [
+ "is there a dog ?",
+ "are there black spots ?",
+ "is there ear ?"
+ ],
+ "prompt": "a {} with black spots on it's ear"
+ },
+ {
+ "index": 1076,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog is in a car ",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "the {} is in a car "
+ },
+ {
+ "index": 1077,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog is sticking its head out ",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?"
+ ],
+ "prompt": "the {} is sticking its head out "
+ },
+ {
+ "index": 1078,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog has its head out the window ",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} has its head out the window "
+ },
+ {
+ "index": 1079,
+ "image_id": 2327286,
+ "entity": "dog",
+ "caption": "the dogs eyes are closed",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are closed"
+ },
+ {
+ "index": 1080,
+ "image_id": 2326860,
+ "entity": "dog",
+ "caption": "The dog has a frisbee inside his mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} has a frisbee inside his mouth."
+ },
+ {
+ "index": 1081,
+ "image_id": 2326801,
+ "entity": "dog",
+ "caption": "A blue duffel bag a dog is on.",
+ "question": [
+ "is there a blue duffel bag ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A blue duffel bag a {} is on."
+ },
+ {
+ "index": 1082,
+ "image_id": 2325767,
+ "entity": "dog",
+ "caption": "A person is holding the dog",
+ "question": [
+ "is there a person ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A person is holding the {}"
+ },
+ {
+ "index": 1083,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's mouth is open",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is open"
+ },
+ {
+ "index": 1084,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's nose is black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black"
+ },
+ {
+ "index": 1085,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's eyes are open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open"
+ },
+ {
+ "index": 1086,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "dog has a black nose ",
+ "question": [
+ "is there dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "{} has a black nose "
+ },
+ {
+ "index": 1087,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dog has brown eye",
+ "question": [
+ "is there the dog ?",
+ "is there brown eye ?"
+ ],
+ "prompt": "the {} has brown eye"
+ },
+ {
+ "index": 1088,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dogs left eye ",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {}s left eye "
+ },
+ {
+ "index": 1089,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dogs left ear ",
+ "question": [
+ "are there the dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "the {}s left ear "
+ },
+ {
+ "index": 1090,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "dog has orange eyes",
+ "question": [
+ "is there dog ?",
+ "are there orange eyes ?"
+ ],
+ "prompt": "{} has orange eyes"
+ },
+ {
+ "index": 1091,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "brown dog has golden eyes",
+ "question": [
+ "is there brown dog ?",
+ "are there golden eyes ?"
+ ],
+ "prompt": "brown {} has golden eyes"
+ },
+ {
+ "index": 1092,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has brown eyes",
+ "question": [
+ "is there black dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "black {} has brown eyes"
+ },
+ {
+ "index": 1093,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has a black nose",
+ "question": [
+ "is there black dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "black {} has a black nose"
+ },
+ {
+ "index": 1094,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has some white hair in its ruff",
+ "question": [
+ "is there black dog ?",
+ "is there some white hair ?",
+ "is there its ruff ?"
+ ],
+ "prompt": "black {} has some white hair in its ruff"
+ },
+ {
+ "index": 1095,
+ "image_id": 2325500,
+ "entity": "dog",
+ "caption": "eyes of dog open wide",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} open wide"
+ },
+ {
+ "index": 1096,
+ "image_id": 2325500,
+ "entity": "dog",
+ "caption": "the dog has a safety vest",
+ "question": [
+ "is there the dog ?",
+ "is there a safety vest ?"
+ ],
+ "prompt": "the {} has a safety vest"
+ },
+ {
+ "index": 1097,
+ "image_id": 2325442,
+ "entity": "dog",
+ "caption": "dog's ears are pink",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are pink"
+ },
+ {
+ "index": 1098,
+ "image_id": 2325387,
+ "entity": "dog",
+ "caption": "Woman laying on the floor next to dog.",
+ "question": [
+ "is there woman ?",
+ "is there the floor ?",
+ "is there dog ?"
+ ],
+ "prompt": "Woman laying on the floor next to {}."
+ },
+ {
+ "index": 1099,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog has black patch over eye.",
+ "question": [
+ "is there the dog ?",
+ "is there black patch ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {} has black patch over eye."
+ },
+ {
+ "index": 1100,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog is carrying a blue frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there a blue frisbee ?"
+ ],
+ "prompt": "The {} is carrying a blue frisbee."
+ },
+ {
+ "index": 1101,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog has a nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "The {} has a nose."
+ },
+ {
+ "index": 1102,
+ "image_id": 2323880,
+ "entity": "dog",
+ "caption": "dog is in picture",
+ "question": [
+ "is there dog ?",
+ "is there picture ?"
+ ],
+ "prompt": "{} is in picture"
+ },
+ {
+ "index": 1103,
+ "image_id": 2323470,
+ "entity": "dog",
+ "caption": "the dog is laying in a green towel",
+ "question": [
+ "is there the dog ?",
+ "is there a green towel ?"
+ ],
+ "prompt": "the {} is laying in a green towel"
+ },
+ {
+ "index": 1104,
+ "image_id": 2322848,
+ "entity": "dog",
+ "caption": "the cat and the dog are good friends",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?",
+ "are there good friends ?"
+ ],
+ "prompt": "the cat and the {} are good friends"
+ },
+ {
+ "index": 1105,
+ "image_id": 2322848,
+ "entity": "dog",
+ "caption": "this cat and this dog are obviously best friends",
+ "question": [
+ "is there this cat ?",
+ "is there this dog ?",
+ "are there best friends ?"
+ ],
+ "prompt": "this cat and this {} are obviously best friends"
+ },
+ {
+ "index": 1106,
+ "image_id": 2322792,
+ "entity": "dog",
+ "caption": "extended wet dog ear ",
+ "question": [
+ "is there extended wet dog ear ?"
+ ],
+ "prompt": "extended wet {} ear "
+ },
+ {
+ "index": 1107,
+ "image_id": 2322792,
+ "entity": "dog",
+ "caption": "dog ear flipping up",
+ "question": [
+ "is there dog ear ?"
+ ],
+ "prompt": "{} ear flipping up"
+ },
+ {
+ "index": 1108,
+ "image_id": 2322492,
+ "entity": "dog",
+ "caption": "Pile of clothes a small dog is lying on",
+ "question": [
+ "is there pile ?",
+ "are there clothes ?",
+ "is there a small dog ?"
+ ],
+ "prompt": "Pile of clothes a small {} is lying on"
+ },
+ {
+ "index": 1109,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "a dog is lying in the bed",
+ "question": [
+ "is there a dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "a {} is lying in the bed"
+ },
+ {
+ "index": 1110,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dog is under the sheet",
+ "question": [
+ "is there the dog ?",
+ "is there the sheet ?"
+ ],
+ "prompt": "the {} is under the sheet"
+ },
+ {
+ "index": 1111,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dogs ears are brown",
+ "question": [
+ "are there the dogs ears ?"
+ ],
+ "prompt": "the {}s ears are brown"
+ },
+ {
+ "index": 1112,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dogs front legs are white",
+ "question": [
+ "are there the dogs ?",
+ "are there front legs ?"
+ ],
+ "prompt": "the {}s front legs are white"
+ },
+ {
+ "index": 1113,
+ "image_id": 2322086,
+ "entity": "dog",
+ "caption": "the dog has white spots",
+ "question": [
+ "is there the dog ?",
+ "are there white spots ?"
+ ],
+ "prompt": "the {} has white spots"
+ },
+ {
+ "index": 1114,
+ "image_id": 2321901,
+ "entity": "dog",
+ "caption": "the dog is laying on a pillow ",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "the {} is laying on a pillow "
+ },
+ {
+ "index": 1115,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "A silver chain is around the dog's neck.",
+ "question": [
+ "is there a silver chain ?",
+ "is there the dog's neck ?"
+ ],
+ "prompt": "A silver chain is around the {}'s neck."
+ },
+ {
+ "index": 1116,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "The dog's left ear is black and brown. ",
+ "question": [
+ "is there the dog's left ear ?"
+ ],
+ "prompt": "The {}'s left ear is black and brown. "
+ },
+ {
+ "index": 1117,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "The dog's right ear is black and brown. ",
+ "question": [
+ "is there the dog's right ear ?"
+ ],
+ "prompt": "The {}'s right ear is black and brown. "
+ },
+ {
+ "index": 1118,
+ "image_id": 2321386,
+ "entity": "dog",
+ "caption": "the dog has a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} has a chain"
+ },
+ {
+ "index": 1119,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "the dog has a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} has a frisbee"
+ },
+ {
+ "index": 1120,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "the dog has the frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "the {} has the frisbee"
+ },
+ {
+ "index": 1121,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "teh dog has brown eyes",
+ "question": [
+ "are there brown eyes ?"
+ ],
+ "prompt": "teh {} has brown eyes"
+ },
+ {
+ "index": 1122,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "dog has frisbee in his mouth",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has frisbee in his mouth"
+ },
+ {
+ "index": 1123,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "dog in mouth is pink",
+ "question": [
+ "is there dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} in mouth is pink"
+ },
+ {
+ "index": 1124,
+ "image_id": 2319884,
+ "entity": "dog",
+ "caption": "dog is eating a vitamin water",
+ "question": [
+ "is there dog ?",
+ "is there a vitamin water ?"
+ ],
+ "prompt": "{} is eating a vitamin water"
+ },
+ {
+ "index": 1125,
+ "image_id": 2319723,
+ "entity": "dog",
+ "caption": "the dog is kissing the cat",
+ "question": [
+ "is there the dog ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is kissing the cat"
+ },
+ {
+ "index": 1126,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is wearing a shirt",
+ "question": [
+ "is there the dog ?",
+ "is there a shirt ?"
+ ],
+ "prompt": "The {} is wearing a shirt"
+ },
+ {
+ "index": 1127,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog has on a nice shirt",
+ "question": [
+ "is there the dog ?",
+ "is there a nice shirt ?"
+ ],
+ "prompt": "The {} has on a nice shirt"
+ },
+ {
+ "index": 1128,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog has very long hair",
+ "question": [
+ "is there the dog ?",
+ "is there very long hair ?"
+ ],
+ "prompt": "The {} has very long hair"
+ },
+ {
+ "index": 1129,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is having a great time",
+ "question": [
+ "is there the dog ?",
+ "is there a great time ?"
+ ],
+ "prompt": "The {} is having a great time"
+ },
+ {
+ "index": 1130,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is out in the daytime",
+ "question": [
+ "is there the dog ?",
+ "is there the daytime ?"
+ ],
+ "prompt": "The {} is out in the daytime"
+ },
+ {
+ "index": 1131,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is enjoying the day",
+ "question": [
+ "is there the dog ?",
+ "is there the day ?"
+ ],
+ "prompt": "The {} is enjoying the day"
+ },
+ {
+ "index": 1132,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is wearing a shirt",
+ "question": [
+ "is there a dog ?",
+ "is there a shirt ?"
+ ],
+ "prompt": "A {} is wearing a shirt"
+ },
+ {
+ "index": 1133,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog has on a visor",
+ "question": [
+ "is there a dog ?",
+ "is there a visor ?"
+ ],
+ "prompt": "A {} has on a visor"
+ },
+ {
+ "index": 1134,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog has white curly hair",
+ "question": [
+ "is there a dog ?",
+ "is there white curly hair ?"
+ ],
+ "prompt": "A {} has white curly hair"
+ },
+ {
+ "index": 1135,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is sticking its tongue out",
+ "question": [
+ "is there a dog ?",
+ "is there its tongue ?"
+ ],
+ "prompt": "A {} is sticking its tongue out"
+ },
+ {
+ "index": 1136,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is with its master",
+ "question": [
+ "is there a dog ?",
+ "is there its master ?"
+ ],
+ "prompt": "A {} is with its master"
+ },
+ {
+ "index": 1137,
+ "image_id": 2318892,
+ "entity": "dog",
+ "caption": "The dog has black fur",
+ "question": [
+ "is there the dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "The {} has black fur"
+ },
+ {
+ "index": 1138,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "brown dog curled up with head on blanket",
+ "question": [
+ "is there brown dog ?",
+ "is there head ?",
+ "is there blanket ?"
+ ],
+ "prompt": "brown {} curled up with head on blanket"
+ },
+ {
+ "index": 1139,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "brown dog cuddled with toy with paw on bunny",
+ "question": [
+ "is there brown dog ?",
+ "is there toy ?",
+ "is there paw ?",
+ "is there bunny ?"
+ ],
+ "prompt": "brown {} cuddled with toy with paw on bunny"
+ },
+ {
+ "index": 1140,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "a dog is in bed",
+ "question": [
+ "is there a dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "a {} is in bed"
+ },
+ {
+ "index": 1141,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "the dog is holding a doll",
+ "question": [
+ "is there the dog ?",
+ "is there a doll ?"
+ ],
+ "prompt": "the {} is holding a doll"
+ },
+ {
+ "index": 1142,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "another doll lies close to the dog",
+ "question": [
+ "is there another doll ?",
+ "is there the dog ?"
+ ],
+ "prompt": "another doll lies close to the {}"
+ },
+ {
+ "index": 1143,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "dog eyes are open",
+ "question": [
+ "are there dog eyes ?"
+ ],
+ "prompt": "{} eyes are open"
+ },
+ {
+ "index": 1144,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "the dog's paw is on the toy",
+ "question": [
+ "is there the dog's paw ?",
+ "is there the toy ?"
+ ],
+ "prompt": "the {}'s paw is on the toy"
+ },
+ {
+ "index": 1145,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "dog holding white stuffed bunny",
+ "question": [
+ "is there white stuffed bunny ?"
+ ],
+ "prompt": "{} holding white stuffed bunny"
+ },
+ {
+ "index": 1146,
+ "image_id": 2318152,
+ "entity": "dog",
+ "caption": "Mulch dog is standing on",
+ "question": [
+ "is there mulch dog ?"
+ ],
+ "prompt": "Mulch {} is standing on"
+ },
+ {
+ "index": 1147,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "Brown leash on a dog",
+ "question": [
+ "is there brown leash ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Brown leash on a {}"
+ },
+ {
+ "index": 1148,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "A person on a skateboard walking their dog",
+ "question": [
+ "is there a person ?",
+ "is there a skateboard ?",
+ "is there their dog ?"
+ ],
+ "prompt": "A person on a skateboard walking their {}"
+ },
+ {
+ "index": 1149,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "person walking the dog",
+ "question": [
+ "is there person ?",
+ "is there the dog ?"
+ ],
+ "prompt": "person walking the {}"
+ },
+ {
+ "index": 1150,
+ "image_id": 2317836,
+ "entity": "dog",
+ "caption": "the dog is in costume",
+ "question": [
+ "is there the dog ?",
+ "is there costume ?"
+ ],
+ "prompt": "the {} is in costume"
+ },
+ {
+ "index": 1151,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "dog paws are tan",
+ "question": [
+ "are there dog paws ?",
+ "is there tan ?"
+ ],
+ "prompt": "{} paws are tan"
+ },
+ {
+ "index": 1152,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "dog has mouth open",
+ "question": [
+ "is there dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} has mouth open"
+ },
+ {
+ "index": 1153,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "The dog is in a car.",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "The {} is in a car."
+ },
+ {
+ "index": 1154,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "The dog's eyes are open.",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open."
+ },
+ {
+ "index": 1155,
+ "image_id": 2317002,
+ "entity": "dog",
+ "caption": "black whiskers are on the dog",
+ "question": [
+ "are there black whiskers ?",
+ "is there the dog ?"
+ ],
+ "prompt": "black whiskers are on the {}"
+ },
+ {
+ "index": 1156,
+ "image_id": 2317002,
+ "entity": "dog",
+ "caption": "brown nails are on the dog",
+ "question": [
+ "are there brown nails ?",
+ "is there the dog ?"
+ ],
+ "prompt": "brown nails are on the {}"
+ },
+ {
+ "index": 1157,
+ "image_id": 2316886,
+ "entity": "dog",
+ "caption": "the dog appears to be enjoying his snack",
+ "question": [
+ "is there the dog ?",
+ "is there his snack ?"
+ ],
+ "prompt": "the {} appears to be enjoying his snack"
+ },
+ {
+ "index": 1158,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "nose of dog is black ",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is black "
+ },
+ {
+ "index": 1159,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "dog sits on couch",
+ "question": [
+ "is there dog ?",
+ "is there couch ?"
+ ],
+ "prompt": "{} sits on couch"
+ },
+ {
+ "index": 1160,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "dog has pink dress",
+ "question": [
+ "is there dog ?",
+ "is there pink dress ?"
+ ],
+ "prompt": "{} has pink dress"
+ },
+ {
+ "index": 1161,
+ "image_id": 2316349,
+ "entity": "dog",
+ "caption": "dog ear on right",
+ "question": [
+ "is there dog ear ?"
+ ],
+ "prompt": "{} ear on right"
+ },
+ {
+ "index": 1162,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "a dog rests on a person",
+ "question": [
+ "is there a dog ?",
+ "is there a person ?"
+ ],
+ "prompt": "a {} rests on a person"
+ },
+ {
+ "index": 1163,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The dog is wearing a hat.",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "The {} is wearing a hat."
+ },
+ {
+ "index": 1164,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The hat is on the dog's head.",
+ "question": [
+ "is there the hat ?",
+ "is there the dog's head ?"
+ ],
+ "prompt": "The hat is on the {}'s head."
+ },
+ {
+ "index": 1165,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The dog has whiskers.",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "The {} has whiskers."
+ },
+ {
+ "index": 1166,
+ "image_id": 2316170,
+ "entity": "dog",
+ "caption": "small dog with eyes closed",
+ "question": [
+ "is there small dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "small {} with eyes closed"
+ },
+ {
+ "index": 1167,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs nose is black in color. ",
+ "question": [
+ "are there the dogs nose ?",
+ "is there color ?"
+ ],
+ "prompt": "The {}s nose is black in color. "
+ },
+ {
+ "index": 1168,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dog has a black nose. ",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose. "
+ },
+ {
+ "index": 1169,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs eye is brown.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is brown."
+ },
+ {
+ "index": 1170,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs ear is black. ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear is black. "
+ },
+ {
+ "index": 1171,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "dog has a leg",
+ "question": [
+ "is there dog ?",
+ "is there a leg ?"
+ ],
+ "prompt": "{} has a leg"
+ },
+ {
+ "index": 1172,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "the dog carries a green frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a green frisbee ?"
+ ],
+ "prompt": "the {} carries a green frisbee"
+ },
+ {
+ "index": 1173,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "the dog's collar is green",
+ "question": [
+ "is there the dog's collar ?"
+ ],
+ "prompt": "the {}'s collar is green"
+ },
+ {
+ "index": 1174,
+ "image_id": 2315447,
+ "entity": "dog",
+ "caption": "A dogs left black eye. ",
+ "question": [
+ "are there a dogs ?",
+ "is there black eye ?"
+ ],
+ "prompt": "A {}s left black eye. "
+ },
+ {
+ "index": 1175,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The 2 dogs lay on the bed together",
+ "question": [
+ "are there the 2 dogs ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The 2 {}s lay on the bed together"
+ },
+ {
+ "index": 1176,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dog is laying on the other dog",
+ "question": [
+ "is there the dog ?",
+ "is there the other dog ?"
+ ],
+ "prompt": "The {} is laying on the other {}"
+ },
+ {
+ "index": 1177,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dogs are on the comfortable looking bed",
+ "question": [
+ "are there the dogs ?",
+ "is there the comfortable looking bed ?"
+ ],
+ "prompt": "The {}s are on the comfortable looking bed"
+ },
+ {
+ "index": 1178,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dog has a blue collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "The {} has a blue collar"
+ },
+ {
+ "index": 1179,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "Brown dogs left eye.",
+ "question": [
+ "are there brown dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "Brown {}s left eye."
+ },
+ {
+ "index": 1180,
+ "image_id": 2414390,
+ "entity": "dog",
+ "caption": "the dog is playing with a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is playing with a frisbee"
+ },
+ {
+ "index": 1181,
+ "image_id": 2414390,
+ "entity": "dog",
+ "caption": "the dog has brown ears",
+ "question": [
+ "is there the dog ?",
+ "are there brown ears ?"
+ ],
+ "prompt": "the {} has brown ears"
+ },
+ {
+ "index": 1182,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "A dog is in the picture.",
+ "question": [
+ "is there a dog ?",
+ "is there the picture ?"
+ ],
+ "prompt": "A {} is in the picture."
+ },
+ {
+ "index": 1183,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog has on a black collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a black collar ?"
+ ],
+ "prompt": "The {} has on a black collar."
+ },
+ {
+ "index": 1184,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog is standing in the sand.",
+ "question": [
+ "is there the dog ?",
+ "is there the sand ?"
+ ],
+ "prompt": "The {} is standing in the sand."
+ },
+ {
+ "index": 1185,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog is staring at his master.",
+ "question": [
+ "is there the dog ?",
+ "is there his master ?"
+ ],
+ "prompt": "The {} is staring at his master."
+ },
+ {
+ "index": 1186,
+ "image_id": 2412940,
+ "entity": "dog",
+ "caption": "Sun light over the body of dogs",
+ "question": [
+ "is there sun light ?",
+ "is there the body ?",
+ "are there dogs ?"
+ ],
+ "prompt": "Sun light over the body of {}s"
+ },
+ {
+ "index": 1187,
+ "image_id": 2412940,
+ "entity": "dog",
+ "caption": "the dogs eyes are wide apart",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are wide apart"
+ },
+ {
+ "index": 1188,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog is resting on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is resting on a blanket"
+ },
+ {
+ "index": 1189,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has his ears bent",
+ "question": [
+ "is there the dog ?",
+ "are there his ears ?"
+ ],
+ "prompt": "the {} has his ears bent"
+ },
+ {
+ "index": 1190,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has pretty blue eyes",
+ "question": [
+ "is there the dog ?",
+ "are there pretty blue eyes ?"
+ ],
+ "prompt": "the {} has pretty blue eyes"
+ },
+ {
+ "index": 1191,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has brown feet",
+ "question": [
+ "is there the dog ?",
+ "are there brown feet ?"
+ ],
+ "prompt": "the {} has brown feet"
+ },
+ {
+ "index": 1192,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog is sitting on blankets",
+ "question": [
+ "is there the dog ?",
+ "are there blankets ?"
+ ],
+ "prompt": "The {} is sitting on blankets"
+ },
+ {
+ "index": 1193,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has 2 ears",
+ "question": [
+ "is there the dog ?",
+ "are there 2 ears ?"
+ ],
+ "prompt": "The {} has 2 ears"
+ },
+ {
+ "index": 1194,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has a tail",
+ "question": [
+ "is there the dog ?",
+ "is there a tail ?"
+ ],
+ "prompt": "The {} has a tail"
+ },
+ {
+ "index": 1195,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog's eyes are blue",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are blue"
+ },
+ {
+ "index": 1196,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has 4 paws",
+ "question": [
+ "is there the dog ?",
+ "are there 4 paws ?"
+ ],
+ "prompt": "The {} has 4 paws"
+ },
+ {
+ "index": 1197,
+ "image_id": 2412430,
+ "entity": "dog",
+ "caption": "A dog is laying down on a couch.",
+ "question": [
+ "is there a dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "A {} is laying down on a couch."
+ },
+ {
+ "index": 1198,
+ "image_id": 2412430,
+ "entity": "dog",
+ "caption": "The dog's nose is black in color.",
+ "question": [
+ "is there the dog's nose ?",
+ "is there color ?"
+ ],
+ "prompt": "The {}'s nose is black in color."
+ },
+ {
+ "index": 1199,
+ "image_id": 2412382,
+ "entity": "dog",
+ "caption": "the dogs are on the seat",
+ "question": [
+ "are there the dogs ?",
+ "is there the seat ?"
+ ],
+ "prompt": "the {}s are on the seat"
+ },
+ {
+ "index": 1200,
+ "image_id": 2412382,
+ "entity": "dog",
+ "caption": "the dogs eyes are black",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are black"
+ },
+ {
+ "index": 1201,
+ "image_id": 2412215,
+ "entity": "dog",
+ "caption": "The white sheet the dog's paw and mouth is resting on.",
+ "question": [
+ "is there the dog's paw ?",
+ "is there mouth ?"
+ ],
+ "prompt": "The white sheet the {}'s paw and mouth is resting on."
+ },
+ {
+ "index": 1202,
+ "image_id": 2412215,
+ "entity": "dog",
+ "caption": "The black dog's head resting on the bed.",
+ "question": [
+ "is there the black dog's head ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The black {}'s head resting on the bed."
+ },
+ {
+ "index": 1203,
+ "image_id": 2411734,
+ "entity": "dog",
+ "caption": "A dog with a white nose looks at a birthday cupcake",
+ "question": [
+ "is there a dog ?",
+ "is there a white nose ?",
+ "is there a birthday cupcake ?"
+ ],
+ "prompt": "A {} with a white nose looks at a birthday cupcake"
+ },
+ {
+ "index": 1204,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "White mouse and cat sitting on dog.",
+ "question": [
+ "is there cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "White mouse and cat sitting on {}."
+ },
+ {
+ "index": 1205,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "cat is on a dogs back",
+ "question": [
+ "is there cat ?",
+ "are there a dogs ?"
+ ],
+ "prompt": "cat is on a {}s back"
+ },
+ {
+ "index": 1206,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "dog is walking on sidewalk",
+ "question": [
+ "is there dog ?",
+ "is there sidewalk ?"
+ ],
+ "prompt": "{} is walking on sidewalk"
+ },
+ {
+ "index": 1207,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "dog is wearing a brown vest",
+ "question": [
+ "is there dog ?",
+ "is there a brown vest ?"
+ ],
+ "prompt": "{} is wearing a brown vest"
+ },
+ {
+ "index": 1208,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "a cat is on the dog's back",
+ "question": [
+ "is there a cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a cat is on the {}'s back"
+ },
+ {
+ "index": 1209,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "a cat and a mouse are both on a dog",
+ "question": [
+ "is there a cat ?",
+ "is there a mouse ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a cat and a mouse are both on a {}"
+ },
+ {
+ "index": 1210,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "the dog is wearing a vest",
+ "question": [
+ "is there the dog ?",
+ "is there a vest ?"
+ ],
+ "prompt": "the {} is wearing a vest"
+ },
+ {
+ "index": 1211,
+ "image_id": 2415243,
+ "entity": "dog",
+ "caption": "a dog lays on a television remote",
+ "question": [
+ "is there a dog ?",
+ "is there a television remote ?"
+ ],
+ "prompt": "a {} lays on a television remote"
+ },
+ {
+ "index": 1212,
+ "image_id": 2415243,
+ "entity": "dog",
+ "caption": "dog takes a nap on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a nap ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} takes a nap on a couch"
+ },
+ {
+ "index": 1213,
+ "image_id": 2415532,
+ "entity": "dog",
+ "caption": "Elbow on the far arm washing the dog.",
+ "question": [
+ "is there the far arm ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Elbow on the far arm washing the {}."
+ },
+ {
+ "index": 1214,
+ "image_id": 2416178,
+ "entity": "dog",
+ "caption": "the dogs left eye",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {}s left eye"
+ },
+ {
+ "index": 1215,
+ "image_id": 2416388,
+ "entity": "dog",
+ "caption": "pink bow the dog is wearing",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "pink bow the {} is wearing"
+ },
+ {
+ "index": 1216,
+ "image_id": 2416388,
+ "entity": "dog",
+ "caption": "dog getting teeth brushed",
+ "question": [
+ "is there dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "{} getting teeth brushed"
+ },
+ {
+ "index": 1217,
+ "image_id": 2416731,
+ "entity": "dog",
+ "caption": "the dog has black hair",
+ "question": [
+ "is there the dog ?",
+ "is there black hair ?"
+ ],
+ "prompt": "the {} has black hair"
+ },
+ {
+ "index": 1218,
+ "image_id": 2416731,
+ "entity": "dog",
+ "caption": "the dog has pointy teeth",
+ "question": [
+ "is there the dog ?",
+ "are there pointy teeth ?"
+ ],
+ "prompt": "the {} has pointy teeth"
+ },
+ {
+ "index": 1219,
+ "image_id": 2416944,
+ "entity": "dog",
+ "caption": "grassy field dog is playing in",
+ "question": [
+ "is there grassy field dog ?"
+ ],
+ "prompt": "grassy field {} is playing in"
+ },
+ {
+ "index": 1220,
+ "image_id": 2417227,
+ "entity": "dog",
+ "caption": "The sofa the dog is leaning on.",
+ "question": [
+ "is there the sofa ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The sofa the {} is leaning on."
+ },
+ {
+ "index": 1221,
+ "image_id": 2417721,
+ "entity": "dog",
+ "caption": "dog has brown legs",
+ "question": [
+ "is there dog ?",
+ "are there brown legs ?"
+ ],
+ "prompt": "{} has brown legs"
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02088364.json b/data/imagenet/compositions/prompts/n02088364.json
new file mode 100644
index 0000000000000000000000000000000000000000..db9508f2d519c121841f29d5b620aaf093b952ac
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02088364.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 561, "entity": "dog", "caption": "dog has a black nose", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose"}, {"index": 1, "image_id": 561, "entity": "dog", "caption": "dog's ears are up", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are up"}, {"index": 2, "image_id": 561, "entity": "dog", "caption": "dog's eyes are dark", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are dark"}, {"index": 3, "image_id": 3535, "entity": "dog", "caption": "The dog has four legs.", "question": ["is there the dog ?", "are there four legs ?"], "prompt": "The {} has four legs."}, {"index": 4, "image_id": 3535, "entity": "dog", "caption": "tongue hanging out a dog's mouth", "question": ["is there tongue ?", "is there a dog's mouth ?"], "prompt": "tongue hanging out a {}'s mouth"}, {"index": 5, "image_id": 3553, "entity": "dog", "caption": "dog is sitting in grass", "question": ["is there dog ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 6, "image_id": 3553, "entity": "dog", "caption": "dog is mostly brown", "question": ["is there dog ?"], "prompt": "{} is mostly brown"}, {"index": 7, "image_id": 3553, "entity": "dog", "caption": "the dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "the {} has a black nose"}, {"index": 8, "image_id": 3553, "entity": "dog", "caption": "the brown dog has a long brown tail", "question": ["is there the brown dog ?", "is there a long brown tail ?"], "prompt": "the brown {} has a long brown tail"}, {"index": 9, "image_id": 3553, "entity": "dog", "caption": "the dog has large brown paws", "question": ["is there the dog ?", "are there large brown paws ?"], "prompt": "the {} has large brown paws"}, {"index": 10, "image_id": 3553, "entity": "dog", "caption": "a dog with its mouth open", "question": ["is there a dog ?", "is there its mouth ?"], "prompt": "a {} with its mouth open"}, {"index": 11, "image_id": 3752, "entity": "dog", "caption": "the dogs tail is black ", "question": ["are there the dogs tail ?"], "prompt": "the {}s tail is black "}, {"index": 12, "image_id": 3752, "entity": "dog", "caption": "the dogs feet is black ", "question": ["are there the dogs ?"], "prompt": "the {}s feet is black "}, {"index": 13, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat are standing together on the sidewalk", "question": ["is there a dog ?", "is there a cat ?", "is there the sidewalk ?"], "prompt": "A {} and a cat are standing together on the sidewalk"}, {"index": 14, "image_id": 107934, "entity": "dog", "caption": "dog has a brown patch", "question": ["is there dog ?", "is there a brown patch ?"], "prompt": "{} has a brown patch"}, {"index": 15, "image_id": 107934, "entity": "dog", "caption": "dog has a blue rope tied", "question": ["is there dog ?", "is there a blue rope ?"], "prompt": "{} has a blue rope tied"}, {"index": 16, "image_id": 107934, "entity": "dog", "caption": "the dog has a blue leash", "question": ["is there the dog ?", "is there a blue leash ?"], "prompt": "the {} has a blue leash"}, {"index": 17, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat walk together.", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} and a cat walk together."}, {"index": 18, "image_id": 107934, "entity": "dog", "caption": "Both dog and cat are in the middle of the frame.", "question": ["is there both dog ?", "is there cat ?", "is there the middle ?", "is there the frame ?"], "prompt": "Both {} and cat are in the middle of the frame."}, {"index": 19, "image_id": 107934, "entity": "dog", "caption": "The dog is looking at the camera.", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera."}, {"index": 20, "image_id": 1159975, "entity": "dog", "caption": "The gray collar the dog is wearing.", "question": ["is there the gray collar ?", "is there the dog ?"], "prompt": "The gray collar the {} is wearing."}, {"index": 21, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown and white sweater", "question": ["is there the dog ?", "is there a brown and white sweater ?"], "prompt": "The {} has a brown and white sweater"}, {"index": 22, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "The {} has a brown nose"}, {"index": 23, "image_id": 2414023, "entity": "dog", "caption": "the dog has a messed up eye", "question": ["is there the dog ?", "is there a messed up eye ?"], "prompt": "the {} has a messed up eye"}, {"index": 24, "image_id": 2414023, "entity": "dog", "caption": "the dog is wearing a sweater", "question": ["is there the dog ?", "is there a sweater ?"], "prompt": "the {} is wearing a sweater"}, {"index": 25, "image_id": 2414023, "entity": "dog", "caption": "the dog has a purple collar", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "the {} has a purple collar"}, {"index": 26, "image_id": 2413171, "entity": "dog", "caption": "Young man hold a cute dog", "question": ["is there young man ?", "is there a cute dog ?"], "prompt": "Young man hold a cute {}"}, {"index": 27, "image_id": 2412707, "entity": "dog", "caption": "black fur grows on a dog", "question": ["is there black fur ?", "is there a dog ?"], "prompt": "black fur grows on a {}"}, {"index": 28, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is sitting in the ground"}, {"index": 29, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is sitting in the floor"}, {"index": 30, "image_id": 2412546, "entity": "dog", "caption": "The dog has a collar on.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar on."}, {"index": 31, "image_id": 2412049, "entity": "dog", "caption": "the dog is long hair", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "the {} is long hair"}, {"index": 32, "image_id": 2412049, "entity": "dog", "caption": "the dog has some white hair", "question": ["is there the dog ?", "is there some white hair ?"], "prompt": "the {} has some white hair"}, {"index": 33, "image_id": 2412049, "entity": "dog", "caption": "the dog has some black hair", "question": ["is there the dog ?", "is there some black hair ?"], "prompt": "the {} has some black hair"}, {"index": 34, "image_id": 2412049, "entity": "dog", "caption": "the dog has some brown hair", "question": ["is there the dog ?", "is there some brown hair ?"], "prompt": "the {} has some brown hair"}, {"index": 35, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is shiny", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is shiny"}, {"index": 36, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is black"}, {"index": 37, "image_id": 2412049, "entity": "dog", "caption": "this are dog canines", "question": ["are there dog canines ?"], "prompt": "this are {} canines"}, {"index": 38, "image_id": 2412049, "entity": "dog", "caption": "this is the dogs fur", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "this is the {}s fur"}, {"index": 39, "image_id": 2411402, "entity": "dog", "caption": "Bed the dog is sleeping on", "question": ["is there the dog ?"], "prompt": "Bed the {} is sleeping on"}, {"index": 40, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar"}, {"index": 41, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} is wearing a chain"}, {"index": 42, "image_id": 2411357, "entity": "dog", "caption": "the dog is watching the oven", "question": ["is there the dog ?", "is there the oven ?"], "prompt": "the {} is watching the oven"}, {"index": 43, "image_id": 2411357, "entity": "dog", "caption": "the dog has a chain around its neck", "question": ["is there the dog ?", "is there a chain ?", "is there its neck ?"], "prompt": "the {} has a chain around its neck"}, {"index": 44, "image_id": 2411357, "entity": "dog", "caption": "the dog has two ears", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "the {} has two ears"}, {"index": 45, "image_id": 2411201, "entity": "dog", "caption": "A dog is on a moped.", "question": ["is there a dog ?"], "prompt": "A {} is on a moped."}, {"index": 46, "image_id": 2411201, "entity": "dog", "caption": "The dog has a red leash.", "question": ["is there the dog ?", "is there a red leash ?"], "prompt": "The {} has a red leash."}, {"index": 47, "image_id": 2411201, "entity": "dog", "caption": "The dog's ears are up.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are up."}, {"index": 48, "image_id": 2411201, "entity": "dog", "caption": "The dog's tail is hanging down.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is hanging down."}, {"index": 49, "image_id": 2411201, "entity": "dog", "caption": "a large dog sits on a scooter", "question": ["is there a large dog ?", "is there a scooter ?"], "prompt": "a large {} sits on a scooter"}, {"index": 50, "image_id": 2411201, "entity": "dog", "caption": "a dog has a red leash", "question": ["is there a dog ?", "is there a red leash ?"], "prompt": "a {} has a red leash"}, {"index": 51, "image_id": 2411201, "entity": "dog", "caption": "The dog on the scooter has a long tail", "question": ["is there the dog ?", "is there the scooter ?", "is there a long tail ?"], "prompt": "The {} on the scooter has a long tail"}, {"index": 52, "image_id": 2411201, "entity": "dog", "caption": "Brown dog on leash on moped", "question": ["is there brown dog ?", "is there leash ?"], "prompt": "Brown {} on leash on moped"}, {"index": 53, "image_id": 2411201, "entity": "dog", "caption": "Red moped with dog", "question": ["is there dog ?"], "prompt": "Red moped with {}"}, {"index": 54, "image_id": 2410967, "entity": "dog", "caption": "a dog's ears bent over", "question": ["are there a dog's ears ?"], "prompt": "a {}'s ears bent over"}, {"index": 55, "image_id": 2410840, "entity": "dog", "caption": "a dog's mouth biting a frisbee", "question": ["is there a dog's mouth ?", "is there a frisbee ?"], "prompt": "a {}'s mouth biting a frisbee"}, {"index": 56, "image_id": 2410817, "entity": "dog", "caption": "black and tan dog jumping to catch a frisbee", "question": ["is there black and tan dog ?", "is there a frisbee ?"], "prompt": "black and tan {} jumping to catch a frisbee"}, {"index": 57, "image_id": 2410817, "entity": "dog", "caption": "leaping dog going after a frisbee", "question": ["is there leaping dog ?", "is there a frisbee ?"], "prompt": "leaping {} going after a frisbee"}, {"index": 58, "image_id": 2410817, "entity": "dog", "caption": "German shepherd dog fetching a frisbee. ", "question": ["is there german shepherd dog ?", "is there a frisbee ?"], "prompt": "German shepherd {} fetching a frisbee. "}, {"index": 59, "image_id": 2409859, "entity": "dog", "caption": "dog's eyes appear to be different colors", "question": ["are there dog's eyes ?", "are there different colors ?"], "prompt": "{}'s eyes appear to be different colors"}, {"index": 60, "image_id": 2409859, "entity": "dog", "caption": "dog has black nose", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose"}, {"index": 61, "image_id": 2409859, "entity": "dog", "caption": "the dog is wearing a cap", "question": ["is there the dog ?", "is there a cap ?"], "prompt": "the {} is wearing a cap"}, {"index": 62, "image_id": 2409859, "entity": "dog", "caption": "Tongue of dog is pink", "question": ["is there tongue ?", "is there dog ?"], "prompt": "Tongue of {} is pink"}, {"index": 63, "image_id": 2409626, "entity": "dog", "caption": "dog has two eyes", "question": ["is there dog ?", "are there two eyes ?"], "prompt": "{} has two eyes"}, {"index": 64, "image_id": 2409626, "entity": "dog", "caption": "the dog is wearing pirate hat", "question": ["is there the dog ?", "is there pirate hat ?"], "prompt": "the {} is wearing pirate hat"}, {"index": 65, "image_id": 2409304, "entity": "dog", "caption": "White left foot of the dog", "question": ["is there white left foot ?", "is there the dog ?"], "prompt": "White left foot of the {}"}, {"index": 66, "image_id": 2409304, "entity": "dog", "caption": "dog catch the frisbee", "question": ["is there dog ?", "is there the frisbee ?"], "prompt": "{} catch the frisbee"}, {"index": 67, "image_id": 2409304, "entity": "dog", "caption": "dog's nose is black", "question": ["is there dog's nose ?"], "prompt": "{}'s nose is black"}, {"index": 68, "image_id": 2409304, "entity": "dog", "caption": "dog's ears are black", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are black"}, {"index": 69, "image_id": 2409304, "entity": "dog", "caption": "dog's paws are white", "question": ["are there dog's paws ?"], "prompt": "{}'s paws are white"}, {"index": 70, "image_id": 2409103, "entity": "dog", "caption": "the dog is wearing a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "the {} is wearing a blue collar"}, {"index": 71, "image_id": 2409103, "entity": "dog", "caption": "a book by T.C. Boyle is next to the dog", "question": ["is there a book ?", "is there the dog ?"], "prompt": "a book by T.C. Boyle is next to the {}"}, {"index": 72, "image_id": 2409103, "entity": "dog", "caption": "the dog is laying on top of an embroidered sheet", "question": ["is there the dog ?", "is there top ?", "is there an embroidered sheet ?"], "prompt": "the {} is laying on top of an embroidered sheet"}, {"index": 73, "image_id": 2408483, "entity": "dog", "caption": "Carpet is light in color under dog", "question": ["is there carpet ?", "is there color ?", "is there dog ?"], "prompt": "Carpet is light in color under {}"}, {"index": 74, "image_id": 2408383, "entity": "dog", "caption": "The dog and cat are looking in the same direction", "question": ["is there the dog ?", "is there cat ?", "is there the same direction ?"], "prompt": "The {} and cat are looking in the same direction"}, {"index": 75, "image_id": 2408210, "entity": "dog", "caption": "Nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "Nose of {} is black"}, {"index": 76, "image_id": 2408210, "entity": "dog", "caption": "Ears of dog is black and tan", "question": ["are there ears ?", "is there dog ?"], "prompt": "Ears of {} is black and tan"}, {"index": 77, "image_id": 2408210, "entity": "dog", "caption": "Eyes of dog are open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "Eyes of {} are open"}, {"index": 78, "image_id": 2408210, "entity": "dog", "caption": "three dogs are lying on a bed", "question": ["are there three dogs ?", "is there a bed ?"], "prompt": "three {}s are lying on a bed"}, {"index": 79, "image_id": 2408210, "entity": "dog", "caption": "the dog has his eyes open", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "the {} has his eyes open"}, {"index": 80, "image_id": 2408037, "entity": "dog", "caption": "the dog has red eyes", "question": ["is there the dog ?", "are there red eyes ?"], "prompt": "the {} has red eyes"}, {"index": 81, "image_id": 2408037, "entity": "dog", "caption": "the dog is holding carrot toy", "question": ["is there the dog ?", "is there carrot toy ?"], "prompt": "the {} is holding carrot toy"}, {"index": 82, "image_id": 2408037, "entity": "dog", "caption": "the dog has green ribbon on its nech", "question": ["is there the dog ?", "is there green ribbon ?"], "prompt": "the {} has green ribbon on its nech"}, {"index": 83, "image_id": 2408037, "entity": "dog", "caption": "a green toy is beside the dog", "question": ["is there a green toy ?", "is there the dog ?"], "prompt": "a green toy is beside the {}"}, {"index": 84, "image_id": 2408037, "entity": "dog", "caption": "the dog has brown legs", "question": ["is there the dog ?", "are there brown legs ?"], "prompt": "the {} has brown legs"}, {"index": 85, "image_id": 2407835, "entity": "dog", "caption": "Brown dog laying on a bed with eyes open.", "question": ["is there brown dog ?", "is there a bed ?", "are there eyes ?"], "prompt": "Brown {} laying on a bed with eyes open."}, {"index": 86, "image_id": 2407835, "entity": "dog", "caption": "dog is lying down.", "question": ["is there dog ?"], "prompt": "{} is lying down."}, {"index": 87, "image_id": 2407835, "entity": "dog", "caption": "dog is lying in cot.", "question": ["is there dog ?", "is there cot ?"], "prompt": "{} is lying in cot."}, {"index": 88, "image_id": 2407835, "entity": "dog", "caption": "dog nose is black color.", "question": ["is there dog nose ?", "is there black color ?"], "prompt": "{} nose is black color."}, {"index": 89, "image_id": 2407825, "entity": "dog", "caption": "the dog has two eyes", "question": ["is there the dog ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 90, "image_id": 2407825, "entity": "dog", "caption": "dog is wearing a collar", "question": ["is there dog ?", "is there a collar ?"], "prompt": "{} is wearing a collar"}, {"index": 91, "image_id": 2407825, "entity": "dog", "caption": "the dog is on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is on the couch"}, {"index": 92, "image_id": 2407825, "entity": "dog", "caption": "the dog has whiskers", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers"}, {"index": 93, "image_id": 2407234, "entity": "dog", "caption": "the dog is on the beanbag", "question": ["is there the dog ?", "is there the beanbag ?"], "prompt": "the {} is on the beanbag"}, {"index": 94, "image_id": 2407234, "entity": "dog", "caption": "a dog toy thats a rope", "question": ["is there a dog toy ?", "is there a rope ?"], "prompt": "a {} toy thats a rope"}, {"index": 95, "image_id": 2407234, "entity": "dog", "caption": "the dog is on bean bag", "question": ["is there the dog ?", "is there bean bag ?"], "prompt": "the {} is on bean bag"}, {"index": 96, "image_id": 2407234, "entity": "dog", "caption": "the dog is sad", "question": ["is there the dog ?"], "prompt": "the {} is sad"}, {"index": 97, "image_id": 2406999, "entity": "dog", "caption": "the dog has goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "the {} has goggles"}, {"index": 98, "image_id": 2406999, "entity": "dog", "caption": "The dog has a vest on", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "The {} has a vest on"}, {"index": 99, "image_id": 2406999, "entity": "dog", "caption": "The dog has goggles on", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} has goggles on"}, {"index": 100, "image_id": 2406999, "entity": "dog", "caption": "The dogs tongue is out. ", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is out. "}, {"index": 101, "image_id": 2406384, "entity": "dog", "caption": "The dog has amber-coloured eyes", "question": ["is there the dog ?", "are there amber-coloured eyes ?"], "prompt": "The {} has amber-coloured eyes"}, {"index": 102, "image_id": 2406384, "entity": "dog", "caption": "The dog's hat is courdoroy", "question": ["is there the dog's hat ?"], "prompt": "The {}'s hat is courdoroy"}, {"index": 103, "image_id": 2406384, "entity": "dog", "caption": "dog has collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} has collar"}, {"index": 104, "image_id": 2406384, "entity": "dog", "caption": "dog has whiskers", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers"}, {"index": 105, "image_id": 2406384, "entity": "dog", "caption": "dog has black lips", "question": ["is there dog ?", "are there black lips ?"], "prompt": "{} has black lips"}, {"index": 106, "image_id": 2406275, "entity": "dog", "caption": "dogs nose is black", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black"}, {"index": 107, "image_id": 2406275, "entity": "dog", "caption": "the dog has light brown eyes", "question": ["is there the dog ?", "are there light brown eyes ?"], "prompt": "the {} has light brown eyes"}, {"index": 108, "image_id": 2406275, "entity": "dog", "caption": "the dog has pointy ears", "question": ["is there the dog ?", "are there pointy ears ?"], "prompt": "the {} has pointy ears"}, {"index": 109, "image_id": 2406275, "entity": "dog", "caption": "something fuzzy is next to the dog", "question": ["is there something ?", "is there the dog ?"], "prompt": "something fuzzy is next to the {}"}, {"index": 110, "image_id": 2406275, "entity": "dog", "caption": "the dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "the {} has brown eyes"}, {"index": 111, "image_id": 2406275, "entity": "dog", "caption": "the dog is lying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is lying on a blanket"}, {"index": 112, "image_id": 2405633, "entity": "dog", "caption": "Dog kennel with dog.", "question": ["is there dog kennel ?", "is there dog ?"], "prompt": "Dog kennel with {}."}, {"index": 113, "image_id": 2405633, "entity": "dog", "caption": "The dog is lying on two blue and white pillows.", "question": ["is there the dog ?", "are there two blue and white pillows ?"], "prompt": "The {} is lying on two blue and white pillows."}, {"index": 114, "image_id": 2405484, "entity": "dog", "caption": "the dog has a pink tongue", "question": ["is there the dog ?", "is there a pink tongue ?"], "prompt": "the {} has a pink tongue"}, {"index": 115, "image_id": 2405484, "entity": "dog", "caption": "the dog is walking in the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is walking in the grass"}, {"index": 116, "image_id": 2405484, "entity": "dog", "caption": "the dog is wearing a metal collar", "question": ["is there the dog ?", "is there a metal collar ?"], "prompt": "the {} is wearing a metal collar"}, {"index": 117, "image_id": 2405484, "entity": "dog", "caption": "the dog is standing on the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is standing on the grass"}, {"index": 118, "image_id": 2405484, "entity": "dog", "caption": "the dog has a collar on", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar on"}, {"index": 119, "image_id": 2405484, "entity": "dog", "caption": "the dog has his tongue sticking out", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "the {} has his tongue sticking out"}, {"index": 120, "image_id": 2405484, "entity": "dog", "caption": "the dog is waggling his tail", "question": ["is there the dog ?", "is there his tail ?"], "prompt": "the {} is waggling his tail"}, {"index": 121, "image_id": 2405484, "entity": "dog", "caption": "the dog's collar is a chain", "question": ["is there the dog's collar ?", "is there a chain ?"], "prompt": "the {}'s collar is a chain"}, {"index": 122, "image_id": 2405484, "entity": "dog", "caption": "dog's tongue is pink", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink"}, {"index": 123, "image_id": 2405484, "entity": "dog", "caption": "dog is standing in the grass", "question": ["is there dog ?", "is there the grass ?"], "prompt": "{} is standing in the grass"}, {"index": 124, "image_id": 2405469, "entity": "dog", "caption": "The dog is wearing a collar. ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar. "}, {"index": 125, "image_id": 2405469, "entity": "dog", "caption": "The dog has it's head down. ", "question": ["is there the dog ?", "is there head ?"], "prompt": "The {} has it's head down. "}, {"index": 126, "image_id": 2405469, "entity": "dog", "caption": "the dog has sharp teeth", "question": ["is there the dog ?", "are there sharp teeth ?"], "prompt": "the {} has sharp teeth"}, {"index": 127, "image_id": 2405469, "entity": "dog", "caption": "the dog is on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground"}, {"index": 128, "image_id": 2405469, "entity": "dog", "caption": "dog is barking to the other dog", "question": ["is there dog ?", "is there the other dog ?"], "prompt": "{} is barking to the other {}"}, {"index": 129, "image_id": 2405469, "entity": "dog", "caption": "Dog ready to bite another dog", "question": ["is there dog ?", "is there another dog ?"], "prompt": "Dog ready to bite another {}"}, {"index": 130, "image_id": 2405369, "entity": "dog", "caption": "The dog is sleeping in a bed. ", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "The {} is sleeping in a bed. "}, {"index": 131, "image_id": 2405369, "entity": "dog", "caption": "The dog's nose hangs over the bed's edge.", "question": ["is there the dog's nose ?", "is there the bed's edge ?"], "prompt": "The {}'s nose hangs over the bed's edge."}, {"index": 132, "image_id": 2405369, "entity": "dog", "caption": "the dog is on a bed", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "the {} is on a bed"}, {"index": 133, "image_id": 2405369, "entity": "dog", "caption": "the dog sleeps on a tan and white dog bed", "question": ["is there the dog ?", "is there a tan and white dog bed ?"], "prompt": "the {} sleeps on a tan and white {} bed"}, {"index": 134, "image_id": 2405369, "entity": "dog", "caption": "the dog lays curled up on a plush dog bed", "question": ["is there the dog ?", "is there a plush dog bed ?"], "prompt": "the {} lays curled up on a plush {} bed"}, {"index": 135, "image_id": 2405369, "entity": "dog", "caption": "dogs ear on bottom left", "question": ["are there dogs ?", "is there bottom ?"], "prompt": "{}s ear on bottom left"}, {"index": 136, "image_id": 2405369, "entity": "dog", "caption": "White dog curled up sleeping on its bed", "question": ["is there white dog ?", "is there its bed ?"], "prompt": "White {} curled up sleeping on its bed"}, {"index": 137, "image_id": 2405343, "entity": "dog", "caption": "the dog has a Santa hat on his head", "question": ["is there the dog ?", "is there a santa hat ?", "is there his head ?"], "prompt": "the {} has a Santa hat on his head"}, {"index": 138, "image_id": 2405343, "entity": "dog", "caption": "the dog has a black eye", "question": ["is there the dog ?", "is there a black eye ?"], "prompt": "the {} has a black eye"}, {"index": 139, "image_id": 2405343, "entity": "dog", "caption": "the nose of the dog is black", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose of the {} is black"}, {"index": 140, "image_id": 2405343, "entity": "dog", "caption": "the fur on the dog is black and white ", "question": ["is there the fur ?", "is there the dog ?"], "prompt": "the fur on the {} is black and white "}, {"index": 141, "image_id": 2405343, "entity": "dog", "caption": "the dog has a white chest", "question": ["is there the dog ?", "is there a white chest ?"], "prompt": "the {} has a white chest"}, {"index": 142, "image_id": 2405343, "entity": "dog", "caption": "the dog's ear is black", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is black"}, {"index": 143, "image_id": 2405343, "entity": "dog", "caption": "the dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open"}, {"index": 144, "image_id": 2404815, "entity": "dog", "caption": "a cat sleeps on a dog", "question": ["is there a cat ?", "is there a dog ?"], "prompt": "a cat sleeps on a {}"}, {"index": 145, "image_id": 2404815, "entity": "dog", "caption": "a cat and dog lie on a wooden floor", "question": ["is there a cat ?", "is there dog ?", "is there a wooden floor ?"], "prompt": "a cat and {} lie on a wooden floor"}, {"index": 146, "image_id": 2404815, "entity": "dog", "caption": "the cat is laying on the dog", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "the cat is laying on the {}"}, {"index": 147, "image_id": 2404815, "entity": "dog", "caption": "the dog is laying on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is laying on the floor"}, {"index": 148, "image_id": 2404815, "entity": "dog", "caption": "the dog has something around its neck", "question": ["is there the dog ?", "is there something ?", "is there its neck ?"], "prompt": "the {} has something around its neck"}, {"index": 149, "image_id": 2404815, "entity": "dog", "caption": "the dog's ear is sticking up", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is sticking up"}, {"index": 150, "image_id": 2404815, "entity": "dog", "caption": "the dog is wearing a bandana on his neck", "question": ["is there the dog ?", "is there a bandana ?", "is there his neck ?"], "prompt": "the {} is wearing a bandana on his neck"}, {"index": 151, "image_id": 2404815, "entity": "dog", "caption": "the kitten is laying on top of the dog", "question": ["is there top ?", "is there the dog ?"], "prompt": "the kitten is laying on top of the {}"}, {"index": 152, "image_id": 2404815, "entity": "dog", "caption": "the dogs paws are white", "question": ["are there the dogs paws ?"], "prompt": "the {}s paws are white"}, {"index": 153, "image_id": 2404815, "entity": "dog", "caption": "the dog doesnt seem to mind the kitty laying on him", "question": ["is there the dog ?", "is there the kitty ?"], "prompt": "the {} doesnt seem to mind the kitty laying on him"}, {"index": 154, "image_id": 2404707, "entity": "dog", "caption": "A black dog sits on stairs", "question": ["is there a black dog ?", "are there stairs ?"], "prompt": "A black {} sits on stairs"}, {"index": 155, "image_id": 2404707, "entity": "dog", "caption": "The dog is wearing a red bow tie around its neck", "question": ["is there the dog ?", "is there a red bow tie ?", "is there its neck ?"], "prompt": "The {} is wearing a red bow tie around its neck"}, {"index": 156, "image_id": 2404707, "entity": "dog", "caption": "The dog has its head cocked to the side", "question": ["is there the dog ?", "is there its head ?", "is there the side ?"], "prompt": "The {} has its head cocked to the side"}, {"index": 157, "image_id": 2404707, "entity": "dog", "caption": "The dogs left hind leg is hanging off the stair", "question": ["are there the dogs ?", "is there hind leg ?", "is there the stair ?"], "prompt": "The {}s left hind leg is hanging off the stair"}, {"index": 158, "image_id": 2404163, "entity": "dog", "caption": "a woman is petting the dog", "question": ["is there a woman ?", "is there the dog ?"], "prompt": "a woman is petting the {}"}, {"index": 159, "image_id": 2404163, "entity": "dog", "caption": "the dog wears a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} wears a red collar"}, {"index": 160, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing red scarf", "question": ["is there person ?", "is there dog ?", "is there red scarf ?"], "prompt": "person petting {} is wearing red scarf"}, {"index": 161, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing a black dress", "question": ["is there person ?", "is there dog ?", "is there a black dress ?"], "prompt": "person petting {} is wearing a black dress"}, {"index": 162, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red and white scarf", "question": ["is there the dog ?", "is there a red and white scarf ?"], "prompt": "the {} is wearing a red and white scarf"}, {"index": 163, "image_id": 2404163, "entity": "dog", "caption": "the dog looks up at the woman", "question": ["is there the dog ?", "is there the woman ?"], "prompt": "the {} looks up at the woman"}, {"index": 164, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red halter style lead", "question": ["is there the dog ?", "is there a red halter style ?"], "prompt": "the {} is wearing a red halter style lead"}, {"index": 165, "image_id": 2404163, "entity": "dog", "caption": "a woman reaches down to a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "a woman reaches down to a {}"}, {"index": 166, "image_id": 2404163, "entity": "dog", "caption": "the woman in the red shoes pets the dog", "question": ["is there the woman ?", "are there the red shoes ?", "is there the dog ?"], "prompt": "the woman in the red shoes pets the {}"}, {"index": 167, "image_id": 2404075, "entity": "dog", "caption": "The dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket"}, {"index": 168, "image_id": 2403923, "entity": "dog", "caption": "the dog has a green collar", "question": ["is there the dog ?", "is there a green collar ?"], "prompt": "the {} has a green collar"}, {"index": 169, "image_id": 2403914, "entity": "dog", "caption": "This dog has his eyes closed", "question": ["is there this dog ?", "are there his eyes ?"], "prompt": "This {} has his eyes closed"}, {"index": 170, "image_id": 2403914, "entity": "dog", "caption": "This snauser dog has long ears", "question": ["is there this snauser dog ?", "are there long ears ?"], "prompt": "This snauser {} has long ears"}, {"index": 171, "image_id": 2403914, "entity": "dog", "caption": "This dog has a pug nose", "question": ["is there this dog ?", "is there a pug nose ?"], "prompt": "This {} has a pug nose"}, {"index": 172, "image_id": 2403914, "entity": "dog", "caption": "A dog's ear peeking out from the other side of its head", "question": ["is there a dog's ear ?", "is there the other side ?", "is there its head ?"], "prompt": "A {}'s ear peeking out from the other side of its head"}, {"index": 173, "image_id": 2403430, "entity": "dog", "caption": "The dog is laying on a couch.", "question": ["is there the dog ?", "is there a couch ?"], "prompt": "The {} is laying on a couch."}, {"index": 174, "image_id": 2403430, "entity": "dog", "caption": "black dog with eyes open", "question": ["is there black dog ?", "are there eyes ?"], "prompt": "black {} with eyes open"}, {"index": 175, "image_id": 2403430, "entity": "dog", "caption": "The dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes"}, {"index": 176, "image_id": 2403430, "entity": "dog", "caption": "The black dog likes laying on the couch", "question": ["is there the black dog ?", "is there the couch ?"], "prompt": "The black {} likes laying on the couch"}, {"index": 177, "image_id": 2403430, "entity": "dog", "caption": "the dog is laying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is laying on the couch"}, {"index": 178, "image_id": 2403430, "entity": "dog", "caption": "the dog's eye is brown", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is brown"}, {"index": 179, "image_id": 2403359, "entity": "dog", "caption": "a dog and a horse share an Eskimo kiss", "question": ["is there a dog ?", "is there a horse share ?"], "prompt": "a {} and a horse share an Eskimo kiss"}, {"index": 180, "image_id": 2403245, "entity": "dog", "caption": "large brown dog leashed to chair", "question": ["is there large brown dog ?", "is there chair ?"], "prompt": "large brown {} leashed to chair"}, {"index": 181, "image_id": 2403245, "entity": "dog", "caption": "the dog is on deck", "question": ["is there the dog ?", "is there deck ?"], "prompt": "the {} is on deck"}, {"index": 182, "image_id": 2403245, "entity": "dog", "caption": "the leash is on dog", "question": ["is there the leash ?", "is there dog ?"], "prompt": "the leash is on {}"}, {"index": 183, "image_id": 2403245, "entity": "dog", "caption": "Leash tied on golden dog", "question": ["is there golden dog ?"], "prompt": "Leash tied on golden {}"}, {"index": 184, "image_id": 2402933, "entity": "dog", "caption": "the doggy has a party hat on", "question": ["is there the doggy ?", "is there a party hat ?"], "prompt": "the {}gy has a party hat on"}, {"index": 185, "image_id": 2402933, "entity": "dog", "caption": "a stuffed animal is next to the dog", "question": ["is there a stuffed animal ?", "is there the dog ?"], "prompt": "a stuffed animal is next to the {}"}, {"index": 186, "image_id": 2402907, "entity": "dog", "caption": "The dog is standing on carpet", "question": ["is there the dog ?", "is there carpet ?"], "prompt": "The {} is standing on carpet"}, {"index": 187, "image_id": 2402907, "entity": "dog", "caption": "The dog has a collar and tags", "question": ["is there the dog ?", "is there a collar ?", "are there tags ?"], "prompt": "The {} has a collar and tags"}, {"index": 188, "image_id": 2402906, "entity": "dog", "caption": "a dog cover the book", "question": ["is there a dog ?", "is there the book ?"], "prompt": "a {} cover the book"}, {"index": 189, "image_id": 2402906, "entity": "dog", "caption": "the dog is looking to the left", "question": ["is there the dog ?"], "prompt": "the {} is looking to the left"}, {"index": 190, "image_id": 2402906, "entity": "dog", "caption": "the dog has black eyes", "question": ["is there the dog ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 191, "image_id": 2402433, "entity": "dog", "caption": "The dog's eyes are brown.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are brown."}, {"index": 192, "image_id": 2402433, "entity": "dog", "caption": "The dog's fur is brown and black.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is brown and black."}, {"index": 193, "image_id": 2402433, "entity": "dog", "caption": "The dog's tongue is pink.", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is pink."}, {"index": 194, "image_id": 2402433, "entity": "dog", "caption": "The dog's ears are down.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are down."}, {"index": 195, "image_id": 2402363, "entity": "dog", "caption": "the dog and the cat are on the pillow together", "question": ["is there the dog ?", "is there the cat ?", "is there the pillow ?"], "prompt": "the {} and the cat are on the pillow together"}, {"index": 196, "image_id": 2402363, "entity": "dog", "caption": "cat and dog sleeping on pet bed together", "question": ["is there cat ?", "is there dog ?", "is there pet bed ?"], "prompt": "cat and {} sleeping on pet bed together"}, {"index": 197, "image_id": 2402351, "entity": "dog", "caption": "The dog has a frisbee in his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee in his mouth."}, {"index": 198, "image_id": 2402351, "entity": "dog", "caption": "The dog has a white bushy tail.", "question": ["is there the dog ?", "is there a white bushy tail ?"], "prompt": "The {} has a white bushy tail."}, {"index": 199, "image_id": 2402351, "entity": "dog", "caption": "A flower pot is on the side of the dog.", "question": ["is there a flower pot ?", "is there the side ?", "is there the dog ?"], "prompt": "A flower pot is on the side of the {}."}, {"index": 200, "image_id": 2402059, "entity": "dog", "caption": "the dog has a human's tie around it's neck", "question": ["is there the dog ?", "is there a human's tie ?", "is there neck ?"], "prompt": "the {} has a human's tie around it's neck"}, {"index": 201, "image_id": 2401271, "entity": "dog", "caption": "The head of the dog sitting down.", "question": ["is there the head ?", "is there the dog ?"], "prompt": "The head of the {} sitting down."}, {"index": 202, "image_id": 2401271, "entity": "dog", "caption": "Soft brown chair the dog sits on", "question": ["is there soft brown chair ?", "is there the dog ?"], "prompt": "Soft brown chair the {} sits on"}, {"index": 203, "image_id": 2401271, "entity": "dog", "caption": "dog sittin gin brown chiar", "question": ["is there dog ?", "is there gin brown chiar ?"], "prompt": "{} sittin gin brown chiar"}, {"index": 204, "image_id": 2401271, "entity": "dog", "caption": "The dog is black and brown.", "question": ["is there the dog ?"], "prompt": "The {} is black and brown."}, {"index": 205, "image_id": 2401271, "entity": "dog", "caption": "The dog's nose is black.", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black."}, {"index": 206, "image_id": 2401024, "entity": "dog", "caption": "the dog has ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has ears"}, {"index": 207, "image_id": 2401024, "entity": "dog", "caption": "the dog is wearing strap", "question": ["is there the dog ?", "is there strap ?"], "prompt": "the {} is wearing strap"}, {"index": 208, "image_id": 2401024, "entity": "dog", "caption": "dog is wearing sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is wearing sweater"}, {"index": 209, "image_id": 2401024, "entity": "dog", "caption": "The sweater the dog is wearing", "question": ["is there the sweater ?", "is there the dog ?"], "prompt": "The sweater the {} is wearing"}, {"index": 210, "image_id": 2400958, "entity": "dog", "caption": "the man behind the dogs has blue jeans on", "question": ["is there the man ?", "are there the dogs ?", "are there blue jeans ?"], "prompt": "the man behind the {}s has blue jeans on"}, {"index": 211, "image_id": 2400958, "entity": "dog", "caption": "dog with tongue hanging out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue hanging out"}, {"index": 212, "image_id": 2400922, "entity": "dog", "caption": "The dog is staring out the window.", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is staring out the window."}, {"index": 213, "image_id": 2400865, "entity": "dog", "caption": "The dog is on a blanket.", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket."}, {"index": 214, "image_id": 2400865, "entity": "dog", "caption": "the dogs nose is pink.", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is pink."}, {"index": 215, "image_id": 2400865, "entity": "dog", "caption": "the dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "the {}s tongue is pink."}, {"index": 216, "image_id": 2400378, "entity": "dog", "caption": "this is the dog's head", "question": ["is there the dog's head ?"], "prompt": "this is the {}'s head"}, {"index": 217, "image_id": 2400368, "entity": "dog", "caption": "a dogs left paw", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw"}, {"index": 218, "image_id": 2399686, "entity": "dog", "caption": "a dog with its ears perked up", "question": ["is there a dog ?", "are there its ears ?"], "prompt": "a {} with its ears perked up"}, {"index": 219, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left eye", "question": ["are there the black dogs ?", "is there eye ?"], "prompt": "the black {}s left eye"}, {"index": 220, "image_id": 2399125, "entity": "dog", "caption": "the black dogs right eye", "question": ["are there the black dogs ?"], "prompt": "the black {}s right eye"}, {"index": 221, "image_id": 2399125, "entity": "dog", "caption": "piece of wood dog is lying on", "question": ["is there piece ?", "is there wood dog ?"], "prompt": "piece of wood {} is lying on"}, {"index": 222, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left ear", "question": ["are there the black dogs ?", "is there ear ?"], "prompt": "the black {}s left ear"}, {"index": 223, "image_id": 2399037, "entity": "dog", "caption": "she is holding a dog", "question": ["is there a dog ?"], "prompt": "she is holding a {}"}, {"index": 224, "image_id": 2399037, "entity": "dog", "caption": "The girl's hand that is resting on the dog.", "question": ["is there the girl's hand ?", "is there the dog ?"], "prompt": "The girl's hand that is resting on the {}."}, {"index": 225, "image_id": 2399037, "entity": "dog", "caption": "Girl's hand is on the dog.", "question": ["is there girl's hand ?", "is there the dog ?"], "prompt": "Girl's hand is on the {}."}, {"index": 226, "image_id": 2399037, "entity": "dog", "caption": "this is a dog", "question": ["is there a dog ?"], "prompt": "this is a {}"}, {"index": 227, "image_id": 2397742, "entity": "dog", "caption": "a green rug the dog is laying on", "question": ["is there a green rug ?", "is there the dog ?"], "prompt": "a green rug the {} is laying on"}, {"index": 228, "image_id": 2397739, "entity": "dog", "caption": "A dog is in front of a motorcycle.", "question": ["is there a dog ?", "is there front ?", "is there a motorcycle ?"], "prompt": "A {} is in front of a motorcycle."}, {"index": 229, "image_id": 2397739, "entity": "dog", "caption": "A dog has black and white spots.", "question": ["is there a dog ?", "are there black and white spots ?"], "prompt": "A {} has black and white spots."}, {"index": 230, "image_id": 2397739, "entity": "dog", "caption": "A dog is behind another dog.", "question": ["is there a dog ?", "is there another dog ?"], "prompt": "A {} is behind another {}."}, {"index": 231, "image_id": 2397739, "entity": "dog", "caption": "motorbike parked behind dogs", "question": ["is there motorbike ?", "are there dogs ?"], "prompt": "motorbike parked behind {}s"}, {"index": 232, "image_id": 2397731, "entity": "dog", "caption": "the red collar the dog is wearing", "question": ["is there the red collar ?", "is there the dog ?"], "prompt": "the red collar the {} is wearing"}, {"index": 233, "image_id": 2397731, "entity": "dog", "caption": "the green grass the dog is standing on", "question": ["is there the green grass ?", "is there the dog ?"], "prompt": "the green grass the {} is standing on"}, {"index": 234, "image_id": 2397731, "entity": "dog", "caption": "the dogs colored leash", "question": ["are there the dogs ?"], "prompt": "the {}s colored leash"}, {"index": 235, "image_id": 2397368, "entity": "dog", "caption": "the dog is holding something on its mouth", "question": ["is there the dog ?", "is there something ?", "is there its mouth ?"], "prompt": "the {} is holding something on its mouth"}, {"index": 236, "image_id": 2397327, "entity": "dog", "caption": "dog has big brown eyes", "question": ["is there dog ?", "are there big brown eyes ?"], "prompt": "{} has big brown eyes"}, {"index": 237, "image_id": 2397327, "entity": "dog", "caption": "dog has small black nose", "question": ["is there dog ?", "is there small black nose ?"], "prompt": "{} has small black nose"}, {"index": 238, "image_id": 2397327, "entity": "dog", "caption": "collar on dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar on {} is black"}, {"index": 239, "image_id": 2397327, "entity": "dog", "caption": "the carpet the dog is standing on", "question": ["is there the carpet ?", "is there the dog ?"], "prompt": "the carpet the {} is standing on"}, {"index": 240, "image_id": 2397327, "entity": "dog", "caption": "the dogs tail", "question": ["are there the dogs ?"], "prompt": "the {}s tail"}, {"index": 241, "image_id": 2397165, "entity": "dog", "caption": "a dogs left paw.", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw."}, {"index": 242, "image_id": 2396130, "entity": "dog", "caption": "A cushion a dog is lying on. ", "question": ["is there a cushion ?", "is there a dog ?"], "prompt": "A cushion a {} is lying on. "}, {"index": 243, "image_id": 2396130, "entity": "dog", "caption": "The dog is laying on the couch.", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "The {} is laying on the couch."}, {"index": 244, "image_id": 2395670, "entity": "dog", "caption": "dog is wearing a tiara", "question": ["is there dog ?", "is there a tiara ?"], "prompt": "{} is wearing a tiara"}, {"index": 245, "image_id": 2395670, "entity": "dog", "caption": "the dog is wearing a tutu", "question": ["is there the dog ?", "is there a tutu ?"], "prompt": "the {} is wearing a tutu"}, {"index": 246, "image_id": 2395670, "entity": "dog", "caption": "bulldog has big brown eye", "question": ["is there big brown eye ?"], "prompt": "bull{} has big brown eye"}, {"index": 247, "image_id": 2395670, "entity": "dog", "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest", "question": ["is there green ribbon ?", "is there orange collar+ribbed orange vest ?"], "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"}, {"index": 248, "image_id": 2395473, "entity": "dog", "caption": "The dog is on top of the pillow", "question": ["is there the dog ?", "is there top ?", "is there the pillow ?"], "prompt": "The {} is on top of the pillow"}, {"index": 249, "image_id": 2395473, "entity": "dog", "caption": "The dog is hugging the stuffed animal", "question": ["is there the dog ?", "is there the stuffed animal ?"], "prompt": "The {} is hugging the stuffed animal"}, {"index": 250, "image_id": 2395473, "entity": "dog", "caption": "stuff is on the floor behind the dog", "question": ["is there stuff ?", "is there the floor ?", "is there the dog ?"], "prompt": "stuff is on the floor behind the {}"}, {"index": 251, "image_id": 2395473, "entity": "dog", "caption": "a white pillow is underneath the dog", "question": ["is there a white pillow ?", "is there the dog ?"], "prompt": "a white pillow is underneath the {}"}, {"index": 252, "image_id": 2395473, "entity": "dog", "caption": "a black speaker is behind the dog", "question": ["is there a black speaker ?", "is there the dog ?"], "prompt": "a black speaker is behind the {}"}, {"index": 253, "image_id": 2395473, "entity": "dog", "caption": "old looking curtains is above the dog's head", "question": ["are there old looking curtains ?", "is there the dog's head ?"], "prompt": "old looking curtains is above the {}'s head"}, {"index": 254, "image_id": 2395369, "entity": "dog", "caption": "grey run the dog is standing on", "question": ["is there the dog ?"], "prompt": "grey run the {} is standing on"}, {"index": 255, "image_id": 2395369, "entity": "dog", "caption": "cat and dog playing with each other ", "question": ["is there cat ?", "is there dog ?"], "prompt": "cat and {} playing with each other "}, {"index": 256, "image_id": 2395369, "entity": "dog", "caption": "head of dog is black", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is black"}, {"index": 257, "image_id": 2394681, "entity": "dog", "caption": "The dog's tail is visible.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is visible."}, {"index": 258, "image_id": 2394681, "entity": "dog", "caption": "the dog has tail", "question": ["is there the dog ?", "is there tail ?"], "prompt": "the {} has tail"}, {"index": 259, "image_id": 2394499, "entity": "dog", "caption": "the dog is wearing a hat", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "the {} is wearing a hat"}, {"index": 260, "image_id": 2394499, "entity": "dog", "caption": "dog is wearing a fedora", "question": ["is there dog ?", "is there a fedora ?"], "prompt": "{} is wearing a fedora"}, {"index": 261, "image_id": 2394499, "entity": "dog", "caption": "The dog has a toy.", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "The {} has a toy."}, {"index": 262, "image_id": 2394499, "entity": "dog", "caption": "The dog is laying on a pillow.", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is laying on a pillow."}, {"index": 263, "image_id": 2394372, "entity": "dog", "caption": "The dog is black and white.", "question": ["is there the dog ?"], "prompt": "The {} is black and white."}, {"index": 264, "image_id": 2394372, "entity": "dog", "caption": "dog has white body with black spots", "question": ["is there dog ?", "is there white body ?", "are there black spots ?"], "prompt": "{} has white body with black spots"}, {"index": 265, "image_id": 2394372, "entity": "dog", "caption": "dog has cast a shadow", "question": ["is there dog ?", "is there a shadow ?"], "prompt": "{} has cast a shadow"}, {"index": 266, "image_id": 2394372, "entity": "dog", "caption": "dog has big fluffy tail", "question": ["is there dog ?", "is there big fluffy tail ?"], "prompt": "{} has big fluffy tail"}, {"index": 267, "image_id": 2394372, "entity": "dog", "caption": "dog has tags on collar", "question": ["is there dog ?", "are there tags ?", "is there collar ?"], "prompt": "{} has tags on collar"}, {"index": 268, "image_id": 2394372, "entity": "dog", "caption": "dog is wearing a white collar", "question": ["is there dog ?", "is there a white collar ?"], "prompt": "{} is wearing a white collar"}, {"index": 269, "image_id": 2394372, "entity": "dog", "caption": "dog is black and white", "question": ["is there dog ?"], "prompt": "{} is black and white"}, {"index": 270, "image_id": 2394372, "entity": "dog", "caption": "dog has frilly tail", "question": ["is there dog ?"], "prompt": "{} has frilly tail"}, {"index": 271, "image_id": 2394372, "entity": "dog", "caption": "dog has brown spots", "question": ["is there dog ?", "are there brown spots ?"], "prompt": "{} has brown spots"}, {"index": 272, "image_id": 2394372, "entity": "dog", "caption": "dog wears white collar", "question": ["is there dog ?", "is there white collar ?"], "prompt": "{} wears white collar"}, {"index": 273, "image_id": 2394372, "entity": "dog", "caption": "A dog is on the sand.", "question": ["is there a dog ?", "is there the sand ?"], "prompt": "A {} is on the sand."}, {"index": 274, "image_id": 2394372, "entity": "dog", "caption": "The dog is balck and white.", "question": ["is there the dog ?"], "prompt": "The {} is balck and white."}, {"index": 275, "image_id": 2394372, "entity": "dog", "caption": "The dog has a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar."}, {"index": 276, "image_id": 2394065, "entity": "dog", "caption": "The dog is licking the water bottle.", "question": ["is there the dog ?", "is there the water bottle ?"], "prompt": "The {} is licking the water bottle."}, {"index": 277, "image_id": 2394065, "entity": "dog", "caption": "The dog is standing next to the person.", "question": ["is there the dog ?", "is there the person ?"], "prompt": "The {} is standing next to the person."}, {"index": 278, "image_id": 2393921, "entity": "dog", "caption": "Aviator glasses on dogs face", "question": ["are there aviator glasses ?", "are there dogs ?"], "prompt": "Aviator glasses on {}s face"}, {"index": 279, "image_id": 2393921, "entity": "dog", "caption": "The dog has glasses on", "question": ["is there the dog ?", "are there glasses ?"], "prompt": "The {} has glasses on"}, {"index": 280, "image_id": 2393921, "entity": "dog", "caption": "The dog has a hat on", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} has a hat on"}, {"index": 281, "image_id": 2393921, "entity": "dog", "caption": "The dog has on a red bib", "question": ["is there the dog ?", "is there a red bib ?"], "prompt": "The {} has on a red bib"}, {"index": 282, "image_id": 2393921, "entity": "dog", "caption": "The dog is sitting in a seat", "question": ["is there the dog ?", "is there a seat ?"], "prompt": "The {} is sitting in a seat"}, {"index": 283, "image_id": 2393366, "entity": "dog", "caption": "this is the dog's nose", "question": ["is there the dog's nose ?"], "prompt": "this is the {}'s nose"}, {"index": 284, "image_id": 2393366, "entity": "dog", "caption": "these are the dog's eyes", "question": ["are there the dog's eyes ?"], "prompt": "these are the {}'s eyes"}, {"index": 285, "image_id": 2393366, "entity": "dog", "caption": "the dog's eye is orange", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is orange"}, {"index": 286, "image_id": 2392895, "entity": "dog", "caption": "a dog with his eyes closed", "question": ["is there a dog ?", "are there his eyes ?"], "prompt": "a {} with his eyes closed"}, {"index": 287, "image_id": 2392895, "entity": "dog", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "{} is on a boat"}, {"index": 288, "image_id": 2392895, "entity": "dog", "caption": "dog has a red collar on", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} has a red collar on"}, {"index": 289, "image_id": 2392895, "entity": "dog", "caption": "dog has a name tag", "question": ["is there dog ?", "is there a name tag ?"], "prompt": "{} has a name tag"}, {"index": 290, "image_id": 2392895, "entity": "dog", "caption": "dog has partially white fur", "question": ["is there dog ?", "is there partially white fur ?"], "prompt": "{} has partially white fur"}, {"index": 291, "image_id": 2392690, "entity": "dog", "caption": "a dog is on the grass", "question": ["is there a dog ?", "is there the grass ?"], "prompt": "a {} is on the grass"}, {"index": 292, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water", "question": ["is there dog ?", "is there water ?"], "prompt": "{} is drinking water"}, {"index": 293, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water from a bottle", "question": ["is there dog ?", "is there water ?", "is there a bottle ?"], "prompt": "{} is drinking water from a bottle"}, {"index": 294, "image_id": 2392690, "entity": "dog", "caption": "water is dripping from the dogs face", "question": ["is there water ?", "are there the dogs ?"], "prompt": "water is dripping from the {}s face"}, {"index": 295, "image_id": 2392690, "entity": "dog", "caption": "thirsty dog is taking a drink", "question": ["is there thirsty dog ?", "is there a drink ?"], "prompt": "thirsty {} is taking a drink"}, {"index": 296, "image_id": 2392690, "entity": "dog", "caption": "dog has drunk half the water bottle", "question": ["is there dog ?", "is there half the water bottle ?"], "prompt": "{} has drunk half the water bottle"}, {"index": 297, "image_id": 2392606, "entity": "dog", "caption": "The two dogs are waring party hats.", "question": ["are there the two dogs ?", "are there party hats ?"], "prompt": "The two {}s are waring party hats."}, {"index": 298, "image_id": 2392334, "entity": "dog", "caption": "The dog has long hair.", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "The {} has long hair."}, {"index": 299, "image_id": 2392334, "entity": "dog", "caption": "white dog wagging its tail", "question": ["is there white dog ?", "is there its tail ?"], "prompt": "white {} wagging its tail"}, {"index": 300, "image_id": 2392033, "entity": "dog", "caption": "ears of dog are long", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are long"}, {"index": 301, "image_id": 2392033, "entity": "dog", "caption": "tail of brown dog is furry", "question": ["is there tail ?", "is there brown dog ?"], "prompt": "tail of brown {} is furry"}, {"index": 302, "image_id": 2392033, "entity": "dog", "caption": "nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black"}, {"index": 303, "image_id": 2391972, "entity": "dog", "caption": "dog wears attentive expression", "question": ["is there dog ?", "is there attentive expression ?"], "prompt": "{} wears attentive expression"}, {"index": 304, "image_id": 2391972, "entity": "dog", "caption": "dog has soulful eye, folded down ear", "question": ["is there dog ?", "is there soulful eye ?", "is there ear ?"], "prompt": "{} has soulful eye, folded down ear"}, {"index": 305, "image_id": 2391972, "entity": "dog", "caption": "dog is wearing dog collar", "question": ["is there dog ?", "is there dog collar ?"], "prompt": "{} is wearing {} collar"}, {"index": 306, "image_id": 2391972, "entity": "dog", "caption": "the dog collar is black", "question": ["is there the dog collar ?"], "prompt": "the {} collar is black"}, {"index": 307, "image_id": 2390997, "entity": "dog", "caption": "dog has black leash", "question": ["is there dog ?", "is there black leash ?"], "prompt": "{} has black leash"}, {"index": 308, "image_id": 2390997, "entity": "dog", "caption": "dog has black fur", "question": ["is there dog ?", "is there black fur ?"], "prompt": "{} has black fur"}, {"index": 309, "image_id": 2390997, "entity": "dog", "caption": "this is a dog collar", "question": ["is there a dog collar ?"], "prompt": "this is a {} collar"}, {"index": 310, "image_id": 2390915, "entity": "dog", "caption": "dog has brown eyes", "question": ["is there dog ?", "are there brown eyes ?"], "prompt": "{} has brown eyes"}, {"index": 311, "image_id": 2390915, "entity": "dog", "caption": "these are the dog's paws", "question": ["are there the dog's paws ?"], "prompt": "these are the {}'s paws"}, {"index": 312, "image_id": 2390745, "entity": "dog", "caption": "a dog is lying on his side", "question": ["is there a dog ?", "is there his side ?"], "prompt": "a {} is lying on his side"}, {"index": 313, "image_id": 2390745, "entity": "dog", "caption": "ear of dog is long", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is long"}, {"index": 314, "image_id": 2390745, "entity": "dog", "caption": "The dog's eyes are wide open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are wide open"}, {"index": 315, "image_id": 2390745, "entity": "dog", "caption": "The dog is relaxing", "question": ["is there the dog ?"], "prompt": "The {} is relaxing"}, {"index": 316, "image_id": 2390588, "entity": "dog", "caption": "The dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "The {} has nose"}, {"index": 317, "image_id": 2390588, "entity": "dog", "caption": "the sling is on dog", "question": ["is there the sling ?", "is there dog ?"], "prompt": "the sling is on {}"}, {"index": 318, "image_id": 2390588, "entity": "dog", "caption": "the eyes are on the dog", "question": ["are there the eyes ?", "is there the dog ?"], "prompt": "the eyes are on the {}"}, {"index": 319, "image_id": 2390301, "entity": "dog", "caption": "dog's tongue hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue hanging out"}, {"index": 320, "image_id": 2390301, "entity": "dog", "caption": "The dog closes his eyes", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "The {} closes his eyes"}, {"index": 321, "image_id": 2390301, "entity": "dog", "caption": "The dogs fur is wet", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is wet"}, {"index": 322, "image_id": 2390301, "entity": "dog", "caption": "The dog has collar on", "question": ["is there the dog ?", "is there collar ?"], "prompt": "The {} has collar on"}, {"index": 323, "image_id": 2390301, "entity": "dog", "caption": "The dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose"}, {"index": 324, "image_id": 2390301, "entity": "dog", "caption": "The dogs eye is closed", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is closed"}, {"index": 325, "image_id": 2390301, "entity": "dog", "caption": "dog has a large pink tounge", "question": ["is there dog ?", "is there a large pink tounge ?"], "prompt": "{} has a large pink tounge"}, {"index": 326, "image_id": 2390301, "entity": "dog", "caption": "shallow water with dog paws submerged", "question": ["is there shallow water ?", "are there dog paws ?"], "prompt": "shallow water with {} paws submerged"}, {"index": 327, "image_id": 2390301, "entity": "dog", "caption": "tan dog standing in the ocean", "question": ["is there the ocean ?"], "prompt": "tan {} standing in the ocean"}, {"index": 328, "image_id": 2390301, "entity": "dog", "caption": "dog with his tongue hanging out", "question": ["is there dog ?", "is there his tongue ?"], "prompt": "{} with his tongue hanging out"}, {"index": 329, "image_id": 2390135, "entity": "dog", "caption": "Th enose od the dog.", "question": ["is there th enose ?", "is there od the dog ?"], "prompt": "Th enose od the {}."}, {"index": 330, "image_id": 2390135, "entity": "dog", "caption": "The dog rests his head.", "question": ["is there the dog ?", "is there his head ?"], "prompt": "The {} rests his head."}, {"index": 331, "image_id": 2390135, "entity": "dog", "caption": "The dogs ear", "question": ["are there the dogs ?"], "prompt": "The {}s ear"}, {"index": 332, "image_id": 2390135, "entity": "dog", "caption": "The dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye"}, {"index": 333, "image_id": 2390107, "entity": "dog", "caption": "long black dog tail curved up", "question": ["is there long black dog tail ?"], "prompt": "long black {} tail curved up"}, {"index": 334, "image_id": 2390107, "entity": "dog", "caption": "the dog has a white spot on it's leg", "question": ["is there the dog ?", "is there a white spot ?", "is there it's leg ?"], "prompt": "the {} has a white spot on it's leg"}, {"index": 335, "image_id": 2390107, "entity": "dog", "caption": "the dog has a long tail", "question": ["is there the dog ?", "is there a long tail ?"], "prompt": "the {} has a long tail"}, {"index": 336, "image_id": 2390107, "entity": "dog", "caption": "the dog has black paw pads", "question": ["is there the dog ?", "are there black paw pads ?"], "prompt": "the {} has black paw pads"}, {"index": 337, "image_id": 2389769, "entity": "dog", "caption": "dog ears are floppy", "question": ["are there dog ears ?"], "prompt": "{} ears are floppy"}, {"index": 338, "image_id": 2389769, "entity": "dog", "caption": "dog eyes are cute", "question": ["are there dog eyes ?"], "prompt": "{} eyes are cute"}, {"index": 339, "image_id": 2389769, "entity": "dog", "caption": "the dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are closed"}, {"index": 340, "image_id": 2389769, "entity": "dog", "caption": "The dog has tags on ", "question": ["is there the dog ?", "are there tags ?"], "prompt": "The {} has tags on "}, {"index": 341, "image_id": 2389769, "entity": "dog", "caption": "Mans toes beside dog", "question": ["is there dog ?"], "prompt": "Mans toes beside {}"}, {"index": 342, "image_id": 2389636, "entity": "dog", "caption": "the dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "the {} has nose"}, {"index": 343, "image_id": 2388972, "entity": "dog", "caption": "the grass is below the dog", "question": ["is there the grass ?", "is there the dog ?"], "prompt": "the grass is below the {}"}, {"index": 344, "image_id": 2388671, "entity": "dog", "caption": "white dog is standing looking out on the yard", "question": ["is there white dog ?", "is there the yard ?"], "prompt": "white {} is standing looking out on the yard"}, {"index": 345, "image_id": 2388671, "entity": "dog", "caption": "dog is mostly white", "question": ["is there dog ?"], "prompt": "{} is mostly white"}, {"index": 346, "image_id": 2388671, "entity": "dog", "caption": "dog has brown ears", "question": ["is there dog ?", "are there brown ears ?"], "prompt": "{} has brown ears"}, {"index": 347, "image_id": 2388671, "entity": "dog", "caption": "dog has black collar", "question": ["is there dog ?", "is there black collar ?"], "prompt": "{} has black collar"}, {"index": 348, "image_id": 2388671, "entity": "dog", "caption": "dog has white legs", "question": ["is there dog ?", "are there white legs ?"], "prompt": "{} has white legs"}, {"index": 349, "image_id": 2388320, "entity": "dog", "caption": "The dog has its head on a stuffed animal", "question": ["is there the dog ?", "is there its head ?", "is there a stuffed animal ?"], "prompt": "The {} has its head on a stuffed animal"}, {"index": 350, "image_id": 2388320, "entity": "dog", "caption": "The gate is behind the dog", "question": ["is there the gate ?", "is there the dog ?"], "prompt": "The gate is behind the {}"}, {"index": 351, "image_id": 2388320, "entity": "dog", "caption": "The dog is lying on wood", "question": ["is there the dog ?", "is there wood ?"], "prompt": "The {} is lying on wood"}, {"index": 352, "image_id": 2388066, "entity": "dog", "caption": "dog jumping for frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} jumping for frisbee"}, {"index": 353, "image_id": 2388048, "entity": "dog", "caption": "all are secondary to small dog chewing large toothbrush", "question": ["is there small dog ?", "is there large toothbrush ?"], "prompt": "all are secondary to small {} chewing large toothbrush"}, {"index": 354, "image_id": 2388048, "entity": "dog", "caption": "a dog is lying on a bed", "question": ["is there a dog ?", "is there a bed ?"], "prompt": "a {} is lying on a bed"}, {"index": 355, "image_id": 2388048, "entity": "dog", "caption": "body of dog is brown", "question": ["is there body ?", "is there dog ?"], "prompt": "body of {} is brown"}, {"index": 356, "image_id": 2388048, "entity": "dog", "caption": "head of dog is brown and white", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown and white"}, {"index": 357, "image_id": 2388048, "entity": "dog", "caption": "ears of dog are brown", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are brown"}, {"index": 358, "image_id": 2388048, "entity": "dog", "caption": "dog has a toothbrush in his mouth", "question": ["is there dog ?", "is there a toothbrush ?", "is there his mouth ?"], "prompt": "{} has a toothbrush in his mouth"}, {"index": 359, "image_id": 2388004, "entity": "dog", "caption": "tail of dog is long and curly", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is long and curly"}, {"index": 360, "image_id": 2388004, "entity": "dog", "caption": "front legs of dog are long", "question": ["are there front legs ?", "is there dog ?"], "prompt": "front legs of {} are long"}, {"index": 361, "image_id": 2388004, "entity": "dog", "caption": "The dog has a white spot.", "question": ["is there the dog ?", "is there a white spot ?"], "prompt": "The {} has a white spot."}, {"index": 362, "image_id": 2387774, "entity": "dog", "caption": "dog looks out window", "question": ["is there dog ?"], "prompt": "{} looks out window"}, {"index": 363, "image_id": 2387774, "entity": "dog", "caption": "dog has dark nose", "question": ["is there dog ?", "is there dark nose ?"], "prompt": "{} has dark nose"}, {"index": 364, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted ears", "question": ["is there dog ?", "are there ears ?"], "prompt": "{} has spotted ears"}, {"index": 365, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted face", "question": ["is there dog ?", "is there face ?"], "prompt": "{} has spotted face"}, {"index": 366, "image_id": 2387596, "entity": "dog", "caption": "dog is wearing glasses", "question": ["is there dog ?", "are there glasses ?"], "prompt": "{} is wearing glasses"}, {"index": 367, "image_id": 2387596, "entity": "dog", "caption": "dog has multicolor bandanna", "question": ["is there dog ?", "is there multicolor bandanna ?"], "prompt": "{} has multicolor bandanna"}, {"index": 368, "image_id": 2387596, "entity": "dog", "caption": "dog has white paws", "question": ["is there dog ?", "are there white paws ?"], "prompt": "{} has white paws"}, {"index": 369, "image_id": 2387596, "entity": "dog", "caption": "dog is on skateboard", "question": ["is there dog ?", "is there skateboard ?"], "prompt": "{} is on skateboard"}, {"index": 370, "image_id": 2387596, "entity": "dog", "caption": "The dog is on a leash.", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash."}, {"index": 371, "image_id": 2387470, "entity": "dog", "caption": "The dog's mouth is open. ", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open. "}, {"index": 372, "image_id": 2387448, "entity": "dog", "caption": "black dog jumping in air", "question": ["is there black dog ?", "is there air ?"], "prompt": "black {} jumping in air"}, {"index": 373, "image_id": 2387448, "entity": "dog", "caption": "dog has red collar", "question": ["is there dog ?", "is there red collar ?"], "prompt": "{} has red collar"}, {"index": 374, "image_id": 2387448, "entity": "dog", "caption": "dog has short curly tail", "question": ["is there dog ?", "is there short curly tail ?"], "prompt": "{} has short curly tail"}, {"index": 375, "image_id": 2387448, "entity": "dog", "caption": "grass under dog is green", "question": ["is there grass ?", "is there dog ?"], "prompt": "grass under {} is green"}, {"index": 376, "image_id": 2387387, "entity": "dog", "caption": "dog's tongue sticking out of mouth", "question": ["is there dog's tongue ?", "is there mouth ?"], "prompt": "{}'s tongue sticking out of mouth"}, {"index": 377, "image_id": 2387104, "entity": "dog", "caption": "the dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has a red collar"}, {"index": 378, "image_id": 2387104, "entity": "dog", "caption": "the dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "the {} has a brown nose"}, {"index": 379, "image_id": 2387104, "entity": "dog", "caption": "the cat is under the dog's chin", "question": ["is there the cat ?", "is there the dog's chin ?"], "prompt": "the cat is under the {}'s chin"}, {"index": 380, "image_id": 2387104, "entity": "dog", "caption": "the dog has a white face", "question": ["is there the dog ?", "is there a white face ?"], "prompt": "the {} has a white face"}, {"index": 381, "image_id": 2386600, "entity": "dog", "caption": "The frisbee is in front of the dog", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The frisbee is in front of the {}"}, {"index": 382, "image_id": 2386600, "entity": "dog", "caption": "dog's teeth showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth showing"}, {"index": 383, "image_id": 2386411, "entity": "dog", "caption": "The dog has a black nose.", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose."}, {"index": 384, "image_id": 2386411, "entity": "dog", "caption": "red bandana dog is wearing", "question": ["is there red bandana dog ?"], "prompt": "red bandana {} is wearing"}, {"index": 385, "image_id": 2386411, "entity": "dog", "caption": "dog's face looking at frisbees", "question": ["is there dog's face ?", "are there frisbees ?"], "prompt": "{}'s face looking at frisbees"}, {"index": 386, "image_id": 2386323, "entity": "dog", "caption": "dog is laying on suit case", "question": ["is there dog ?", "is there suit case ?"], "prompt": "{} is laying on suit case"}, {"index": 387, "image_id": 2386323, "entity": "dog", "caption": "The dog is wearing a gold tag.", "question": ["is there the dog ?", "is there a gold tag ?"], "prompt": "The {} is wearing a gold tag."}, {"index": 388, "image_id": 2386323, "entity": "dog", "caption": "The dog is sitting on a suitcase.", "question": ["is there the dog ?", "is there a suitcase ?"], "prompt": "The {} is sitting on a suitcase."}, {"index": 389, "image_id": 2386037, "entity": "dog", "caption": "dog is jumping above ground", "question": ["is there dog ?", "is there ground ?"], "prompt": "{} is jumping above ground"}, {"index": 390, "image_id": 2386037, "entity": "dog", "caption": "dog is wearing collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} is wearing collar"}, {"index": 391, "image_id": 2386031, "entity": "dog", "caption": "dog's tail is up in the air", "question": ["is there dog's tail ?", "is there the air ?"], "prompt": "{}'s tail is up in the air"}, {"index": 392, "image_id": 2386031, "entity": "dog", "caption": "dog's left perked up ear", "question": ["is there ear ?"], "prompt": "{}'s left perked up ear"}, {"index": 393, "image_id": 2386010, "entity": "dog", "caption": "dogs face in a side mirror", "question": ["are there dogs ?", "is there a side mirror ?"], "prompt": "{}s face in a side mirror"}, {"index": 394, "image_id": 2385955, "entity": "dog", "caption": "nose of dog is wet", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is wet"}, {"index": 395, "image_id": 2385955, "entity": "dog", "caption": "eyes of dog are wide open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are wide open"}, {"index": 396, "image_id": 2385955, "entity": "dog", "caption": "the frisbee is in the dog's mouth", "question": ["is there the frisbee ?", "is there the dog's mouth ?"], "prompt": "the frisbee is in the {}'s mouth"}, {"index": 397, "image_id": 2385955, "entity": "dog", "caption": "the dog's eyes are wild and wide open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are wild and wide open"}, {"index": 398, "image_id": 2385955, "entity": "dog", "caption": "the face of the dog is tricolored", "question": ["is there the face ?", "is there the dog ?"], "prompt": "the face of the {} is tricolored"}, {"index": 399, "image_id": 2385955, "entity": "dog", "caption": "the dog's paw is white", "question": ["is there the dog's paw ?"], "prompt": "the {}'s paw is white"}, {"index": 400, "image_id": 2385955, "entity": "dog", "caption": "grass is under the the dog", "question": ["is there grass ?", "is there the the dog ?"], "prompt": "grass is under the the {}"}, {"index": 401, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} is wearing a cap"}, {"index": 402, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing eyeglasses", "question": ["is there dog ?", "are there eyeglasses ?"], "prompt": "{} is wearing eyeglasses"}, {"index": 403, "image_id": 2385853, "entity": "dog", "caption": "dog's mouth is open", "question": ["is there dog's mouth ?"], "prompt": "{}'s mouth is open"}, {"index": 404, "image_id": 2385762, "entity": "dog", "caption": "a dog has a retractable leash attached to the collar", "question": ["is there a dog ?", "is there a retractable leash ?", "is there the collar ?"], "prompt": "a {} has a retractable leash attached to the collar"}, {"index": 405, "image_id": 2385757, "entity": "dog", "caption": "dog laying in dirt with eyes closed", "question": ["is there dog ?", "is there dirt ?", "are there eyes ?"], "prompt": "{} laying in dirt with eyes closed"}, {"index": 406, "image_id": 2385595, "entity": "dog", "caption": "the dog is lying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is lying on the bed"}, {"index": 407, "image_id": 2385566, "entity": "dog", "caption": "man is holding two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is holding two {}s"}, {"index": 408, "image_id": 2385566, "entity": "dog", "caption": "dog in rear has red collar", "question": ["is there dog ?", "is there rear ?", "is there red collar ?"], "prompt": "{} in rear has red collar"}, {"index": 409, "image_id": 2385566, "entity": "dog", "caption": "man is crouching near two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is crouching near two {}s"}, {"index": 410, "image_id": 2385566, "entity": "dog", "caption": "dog with its mouth wide open", "question": ["is there dog ?", "is there its mouth ?"], "prompt": "{} with its mouth wide open"}, {"index": 411, "image_id": 2385566, "entity": "dog", "caption": "man's hand resting on dog's hip", "question": ["is there man's hand ?", "is there dog's hip ?"], "prompt": "man's hand resting on {}'s hip"}, {"index": 412, "image_id": 2385466, "entity": "dog", "caption": "dog's eyes are brown", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are brown"}, {"index": 413, "image_id": 2385466, "entity": "dog", "caption": "dog's whiskers are white", "question": ["are there dog's whiskers ?"], "prompt": "{}'s whiskers are white"}, {"index": 414, "image_id": 2385466, "entity": "dog", "caption": "dog is next to the window", "question": ["is there dog ?", "is there the window ?"], "prompt": "{} is next to the window"}, {"index": 415, "image_id": 2385466, "entity": "dog", "caption": "dog's ears are down", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are down"}, {"index": 416, "image_id": 2385466, "entity": "dog", "caption": "the dog has a silver tag", "question": ["is there the dog ?", "is there a silver tag ?"], "prompt": "the {} has a silver tag"}, {"index": 417, "image_id": 2385466, "entity": "dog", "caption": "the dog is in the passenger seat", "question": ["is there the dog ?", "is there the passenger seat ?"], "prompt": "the {} is in the passenger seat"}, {"index": 418, "image_id": 2385466, "entity": "dog", "caption": "the dog has white parts of the eyes showing", "question": ["is there the dog ?", "are there white parts ?", "are there the eyes ?"], "prompt": "the {} has white parts of the eyes showing"}, {"index": 419, "image_id": 2385466, "entity": "dog", "caption": "A dog has a tag", "question": ["is there a dog ?", "is there a tag ?"], "prompt": "A {} has a tag"}, {"index": 420, "image_id": 2385345, "entity": "dog", "caption": "the dog is leaning on the bedding", "question": ["is there the dog ?", "is there the bedding ?"], "prompt": "the {} is leaning on the bedding"}, {"index": 421, "image_id": 2385345, "entity": "dog", "caption": "the bed is behind the dog", "question": ["is there the bed ?", "is there the dog ?"], "prompt": "the bed is behind the {}"}, {"index": 422, "image_id": 2385299, "entity": "dog", "caption": "white dog is lying on a bed", "question": ["is there white dog ?", "is there a bed ?"], "prompt": "white {} is lying on a bed"}, {"index": 423, "image_id": 2385299, "entity": "dog", "caption": "tail of dog is on bed", "question": ["is there tail ?", "is there dog ?", "is there bed ?"], "prompt": "tail of {} is on bed"}, {"index": 424, "image_id": 2385299, "entity": "dog", "caption": "eyes of dog are black", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are black"}, {"index": 425, "image_id": 2385299, "entity": "dog", "caption": "eyes and nose of dog are black", "question": ["are there eyes ?", "is there nose ?", "is there dog ?"], "prompt": "eyes and nose of {} are black"}, {"index": 426, "image_id": 2385299, "entity": "dog", "caption": "a dog collar has a tag", "question": ["is there a dog collar ?", "is there a tag ?"], "prompt": "a {} collar has a tag"}, {"index": 427, "image_id": 2385299, "entity": "dog", "caption": "legs and chest of dog are white", "question": ["are there legs ?", "is there chest ?", "is there dog ?"], "prompt": "legs and chest of {} are white"}, {"index": 428, "image_id": 2384917, "entity": "dog", "caption": "dogs tongue sticking out", "question": ["are there dogs ?", "is there tongue ?"], "prompt": "{}s tongue sticking out"}, {"index": 429, "image_id": 2384917, "entity": "dog", "caption": "brown pointy ear on dog", "question": ["is there brown pointy ear ?", "is there dog ?"], "prompt": "brown pointy ear on {}"}, {"index": 430, "image_id": 2384563, "entity": "dog", "caption": "dog curled up on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} curled up on a couch"}, {"index": 431, "image_id": 2384563, "entity": "dog", "caption": "a dog curled up on a cushion", "question": ["is there a dog ?", "is there a cushion ?"], "prompt": "a {} curled up on a cushion"}, {"index": 432, "image_id": 2384452, "entity": "dog", "caption": "dog is wearing a green collar ", "question": ["is there dog ?", "is there a green collar ?"], "prompt": "{} is wearing a green collar "}, {"index": 433, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear is bent ", "question": ["are there the dogs ?"], "prompt": "the {}s ear is bent "}, {"index": 434, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear ", "question": ["are there the dogs ?"], "prompt": "the {}s ear "}, {"index": 435, "image_id": 2384424, "entity": "dog", "caption": "the dog is beside the bike", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is beside the bike"}, {"index": 436, "image_id": 2384322, "entity": "dog", "caption": "Reindeer stuffed animal on the dog.", "question": ["is there reindeer ?", "is there animal ?", "is there the dog ?"], "prompt": "Reindeer stuffed animal on the {}."}, {"index": 437, "image_id": 2384105, "entity": "dog", "caption": "dog's collar is green", "question": ["is there dog's collar ?"], "prompt": "{}'s collar is green"}, {"index": 438, "image_id": 2384105, "entity": "dog", "caption": "the dog bed is plaid patterned", "question": ["is there the dog bed ?"], "prompt": "the {} bed is plaid patterned"}, {"index": 439, "image_id": 2384105, "entity": "dog", "caption": "dog's ears pointing upwards", "question": ["are there dog's ears ?"], "prompt": "{}'s ears pointing upwards"}, {"index": 440, "image_id": 2384105, "entity": "dog", "caption": "Black pillow dog is laying on", "question": ["is there black pillow dog ?"], "prompt": "Black pillow {} is laying on"}, {"index": 441, "image_id": 2384105, "entity": "dog", "caption": "Collar dog is wearing", "question": ["is there collar dog ?"], "prompt": "Collar {} is wearing"}, {"index": 442, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan", "question": ["is there dog toy ?", "is there tan ?"], "prompt": "{} toy is tan"}, {"index": 443, "image_id": 2383524, "entity": "dog", "caption": "dog is lying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying on the floor"}, {"index": 444, "image_id": 2383524, "entity": "dog", "caption": "dog has the toy in it's mouth", "question": ["is there dog ?", "is there the toy ?"], "prompt": "{} has the toy in it's mouth"}, {"index": 445, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan and hairy", "question": ["is there dog toy ?"], "prompt": "{} toy is tan and hairy"}, {"index": 446, "image_id": 2383524, "entity": "dog", "caption": "dog has whiskers that are white", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers that are white"}, {"index": 447, "image_id": 2383524, "entity": "dog", "caption": "dog is laying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is laying on the floor"}, {"index": 448, "image_id": 2383524, "entity": "dog", "caption": "dog has black ears", "question": ["is there dog ?", "are there black ears ?"], "prompt": "{} has black ears"}, {"index": 449, "image_id": 2383524, "entity": "dog", "caption": "dog is lying down on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying down on the floor"}, {"index": 450, "image_id": 2383524, "entity": "dog", "caption": "dog toy is brown", "question": ["is there dog toy ?"], "prompt": "{} toy is brown"}, {"index": 451, "image_id": 2383524, "entity": "dog", "caption": "dog has toy in it's mouth", "question": ["is there dog ?", "is there toy ?", "is there it's mouth ?"], "prompt": "{} has toy in it's mouth"}, {"index": 452, "image_id": 2383524, "entity": "dog", "caption": "dog has white whiskers", "question": ["is there dog ?", "are there white whiskers ?"], "prompt": "{} has white whiskers"}, {"index": 453, "image_id": 2383524, "entity": "dog", "caption": "the dog has a nose", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "the {} has a nose"}, {"index": 454, "image_id": 2383524, "entity": "dog", "caption": "the dog has eyes", "question": ["is there the dog ?", "are there eyes ?"], "prompt": "the {} has eyes"}, {"index": 455, "image_id": 2383524, "entity": "dog", "caption": "the dog has an ear", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "the {} has an ear"}, {"index": 456, "image_id": 2383524, "entity": "dog", "caption": "The dog's face looks angry", "question": ["is there the dog's face ?"], "prompt": "The {}'s face looks angry"}, {"index": 457, "image_id": 2383242, "entity": "dog", "caption": "The dog is between the persons legs", "question": ["is there the dog ?", "are there the persons legs ?"], "prompt": "The {} is between the persons legs"}, {"index": 458, "image_id": 2382434, "entity": "dog", "caption": "The dog is on the counter", "question": ["is there the dog ?", "is there the counter ?"], "prompt": "The {} is on the counter"}, {"index": 459, "image_id": 2382434, "entity": "dog", "caption": "The dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black"}, {"index": 460, "image_id": 2382434, "entity": "dog", "caption": "The dog has long fur.", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur."}, {"index": 461, "image_id": 2382434, "entity": "dog", "caption": "The dog is on a table.", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table."}, {"index": 462, "image_id": 2382434, "entity": "dog", "caption": "The dog is sniffing the newspaper.", "question": ["is there the dog ?", "is there the newspaper ?"], "prompt": "The {} is sniffing the newspaper."}, {"index": 463, "image_id": 2382434, "entity": "dog", "caption": "The dog has curly fur", "question": ["is there the dog ?", "is there curly fur ?"], "prompt": "The {} has curly fur"}, {"index": 464, "image_id": 2382434, "entity": "dog", "caption": "the dog`s nose is black", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is black"}, {"index": 465, "image_id": 2382434, "entity": "dog", "caption": "the dog`s eyes are black", "question": ["are there the dog`s eyes ?"], "prompt": "the {}`s eyes are black"}, {"index": 466, "image_id": 2382434, "entity": "dog", "caption": "the dog`s hair is curly", "question": ["is there the dog`s hair ?"], "prompt": "the {}`s hair is curly"}, {"index": 467, "image_id": 2382434, "entity": "dog", "caption": "the dog is smelling the paper", "question": ["is there the dog ?", "is there the paper ?"], "prompt": "the {} is smelling the paper"}, {"index": 468, "image_id": 2382396, "entity": "dog", "caption": "a dog is asleep", "question": ["is there a dog ?"], "prompt": "a {} is asleep"}, {"index": 469, "image_id": 2382396, "entity": "dog", "caption": "The dog's paw is on the remote", "question": ["is there the dog's paw ?", "is there the remote ?"], "prompt": "The {}'s paw is on the remote"}, {"index": 470, "image_id": 2382396, "entity": "dog", "caption": "The dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are closed"}, {"index": 471, "image_id": 2382396, "entity": "dog", "caption": "The dog is sleep on the couch.", "question": ["is there the dog ?", "is there sleep ?", "is there the couch ?"], "prompt": "The {} is sleep on the couch."}, {"index": 472, "image_id": 2382396, "entity": "dog", "caption": "The dog has two ears.", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "The {} has two ears."}, {"index": 473, "image_id": 2382396, "entity": "dog", "caption": "A dog is in the foreground", "question": ["is there a dog ?", "is there the foreground ?"], "prompt": "A {} is in the foreground"}, {"index": 474, "image_id": 2382082, "entity": "dog", "caption": "the dog`s nose is brown", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is brown"}, {"index": 475, "image_id": 2382082, "entity": "dog", "caption": "the dog`s stomach is wet", "question": ["is there the dog`s stomach ?"], "prompt": "the {}`s stomach is wet"}, {"index": 476, "image_id": 2382082, "entity": "dog", "caption": "dog is in the beach", "question": ["is there dog ?", "is there the beach ?"], "prompt": "{} is in the beach"}, {"index": 477, "image_id": 2382082, "entity": "dog", "caption": "tail of dog is up", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is up"}, {"index": 478, "image_id": 2382082, "entity": "dog", "caption": "face of dog is white and brown", "question": ["is there face ?", "is there dog ?"], "prompt": "face of {} is white and brown"}, {"index": 479, "image_id": 2382082, "entity": "dog", "caption": "collar of dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar of {} is black"}, {"index": 480, "image_id": 2382082, "entity": "dog", "caption": "ears of dog are down ", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are down "}, {"index": 481, "image_id": 2381848, "entity": "dog", "caption": "ear of dog is brown", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is brown"}, {"index": 482, "image_id": 2381777, "entity": "dog", "caption": "Leash attached to the dog", "question": ["is there the dog ?"], "prompt": "Leash attached to the {}"}, {"index": 483, "image_id": 2381777, "entity": "dog", "caption": "the dog is wearing a floater", "question": ["is there the dog ?", "is there a floater ?"], "prompt": "the {} is wearing a floater"}, {"index": 484, "image_id": 2381777, "entity": "dog", "caption": "this is the rope tying the dog", "question": ["is there the rope ?", "is there the dog ?"], "prompt": "this is the rope tying the {}"}, {"index": 485, "image_id": 2381403, "entity": "dog", "caption": "bull dog is wearing a black and red vest ", "question": ["is there bull dog ?", "is there a black and red vest ?"], "prompt": "bull {} is wearing a black and red vest "}, {"index": 486, "image_id": 2381403, "entity": "dog", "caption": "bull dog is standing on a blue surfboard ", "question": ["is there bull dog ?", "is there a blue surfboard ?"], "prompt": "bull {} is standing on a blue surfboard "}, {"index": 487, "image_id": 2381403, "entity": "dog", "caption": "the dog has an overbite", "question": ["is there the dog ?", "is there an overbite ?"], "prompt": "the {} has an overbite"}, {"index": 488, "image_id": 2381403, "entity": "dog", "caption": "the dog is wearing a life vest", "question": ["is there the dog ?", "is there a life vest ?"], "prompt": "the {} is wearing a life vest"}, {"index": 489, "image_id": 2381403, "entity": "dog", "caption": "the dog has front legs", "question": ["is there the dog ?", "are there front legs ?"], "prompt": "the {} has front legs"}, {"index": 490, "image_id": 2381403, "entity": "dog", "caption": "the dog is on the board", "question": ["is there the dog ?", "is there the board ?"], "prompt": "the {} is on the board"}, {"index": 491, "image_id": 2381375, "entity": "dog", "caption": "the dog is lying on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is lying on the ground"}, {"index": 492, "image_id": 2381375, "entity": "dog", "caption": "the dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} is on a leash"}, {"index": 493, "image_id": 2380480, "entity": "dog", "caption": "The dog's reflection is in a mirror.", "question": ["is there the dog's reflection ?", "is there a mirror ?"], "prompt": "The {}'s reflection is in a mirror."}, {"index": 494, "image_id": 2380480, "entity": "dog", "caption": "The dog's tongue is showing. ", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is showing. "}, {"index": 495, "image_id": 2380480, "entity": "dog", "caption": "The dog's legs are in the foreground.", "question": ["are there the dog's legs ?", "is there the foreground ?"], "prompt": "The {}'s legs are in the foreground."}, {"index": 496, "image_id": 2380480, "entity": "dog", "caption": "The dog's nose is black. ", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black. "}, {"index": 497, "image_id": 2380480, "entity": "dog", "caption": "the dog has an eye", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 498, "image_id": 2380480, "entity": "dog", "caption": "the dog has a tongue", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "the {} has a tongue"}, {"index": 499, "image_id": 2380480, "entity": "dog", "caption": "the dog has a long ear", "question": ["is there the dog ?", "is there a long ear ?"], "prompt": "the {} has a long ear"}, {"index": 500, "image_id": 2380237, "entity": "dog", "caption": "the dog has its mouth open", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 501, "image_id": 2380237, "entity": "dog", "caption": "the dog has a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar"}, {"index": 502, "image_id": 2380237, "entity": "dog", "caption": "the dog's collar is blue", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is blue"}, {"index": 503, "image_id": 2380237, "entity": "dog", "caption": "the dog has a pointy ear", "question": ["is there the dog ?", "is there a pointy ear ?"], "prompt": "the {} has a pointy ear"}, {"index": 504, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy ears", "question": ["is there dog ?", "are there pointy ears ?"], "prompt": "{} has pointy ears"}, {"index": 505, "image_id": 2380237, "entity": "dog", "caption": "dog has short legs", "question": ["is there dog ?", "are there short legs ?"], "prompt": "{} has short legs"}, {"index": 506, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy teeth", "question": ["is there dog ?", "are there pointy teeth ?"], "prompt": "{} has pointy teeth"}, {"index": 507, "image_id": 2380237, "entity": "dog", "caption": "the dog is attempting to catch a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is attempting to catch a frisbee"}, {"index": 508, "image_id": 2380237, "entity": "dog", "caption": "the dog is down on his \"knees\"", "question": ["is there the dog ?", "are there his \"knees ?"], "prompt": "the {} is down on his \"knees\""}, {"index": 509, "image_id": 2380237, "entity": "dog", "caption": "dog's mouth wide open", "question": [], "prompt": "{}'s mouth wide open"}, {"index": 510, "image_id": 2380220, "entity": "dog", "caption": "dog is laying on stuffed animal ", "question": ["is there dog ?", "is there stuffed animal ?"], "prompt": "{} is laying on stuffed animal "}, {"index": 511, "image_id": 2380220, "entity": "dog", "caption": "dogs ear is black ", "question": ["are there dogs ?"], "prompt": "{}s ear is black "}, {"index": 512, "image_id": 2379710, "entity": "dog", "caption": "water splashing next to dog", "question": ["is there dog ?"], "prompt": "water splashing next to {}"}, {"index": 513, "image_id": 2379519, "entity": "dog", "caption": "The dog has it's tongue out.", "question": ["is there the dog ?", "is there tongue ?"], "prompt": "The {} has it's tongue out."}, {"index": 514, "image_id": 2379519, "entity": "dog", "caption": "The dog has brown eyes.", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes."}, {"index": 515, "image_id": 2379470, "entity": "dog", "caption": "The dog has a brown spot over one eye.", "question": ["is there the dog ?", "is there a brown spot ?", "is there one eye ?"], "prompt": "The {} has a brown spot over one eye."}, {"index": 516, "image_id": 2379470, "entity": "dog", "caption": "The dog has a spotted ear.", "question": ["is there the dog ?", "is there a spotted ear ?"], "prompt": "The {} has a spotted ear."}, {"index": 517, "image_id": 2379470, "entity": "dog", "caption": "The dog has a short tail.", "question": ["is there the dog ?", "is there a short tail ?"], "prompt": "The {} has a short tail."}, {"index": 518, "image_id": 2379470, "entity": "dog", "caption": "The dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar."}, {"index": 519, "image_id": 2379470, "entity": "dog", "caption": "The dog has a closed mouth.", "question": ["is there the dog ?", "is there a closed mouth ?"], "prompt": "The {} has a closed mouth."}, {"index": 520, "image_id": 2378890, "entity": "dog", "caption": "The dog has a chain collar.", "question": ["is there the dog ?", "is there a chain collar ?"], "prompt": "The {} has a chain collar."}, {"index": 521, "image_id": 2378890, "entity": "dog", "caption": "The dog is playing with the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee."}, {"index": 522, "image_id": 2378872, "entity": "dog", "caption": "dog has grey fur", "question": ["is there dog ?"], "prompt": "{} has grey fur"}, {"index": 523, "image_id": 2378872, "entity": "dog", "caption": "other dog has black fur", "question": ["is there other dog ?", "is there black fur ?"], "prompt": "other {} has black fur"}, {"index": 524, "image_id": 2378872, "entity": "dog", "caption": "other dog has brown face", "question": ["is there other dog ?", "is there brown face ?"], "prompt": "other {} has brown face"}, {"index": 525, "image_id": 2378872, "entity": "dog", "caption": "nose of the dog with mouth closed", "question": ["is there nose ?", "is there the dog ?", "is there mouth ?"], "prompt": "nose of the {} with mouth closed"}, {"index": 526, "image_id": 2378872, "entity": "dog", "caption": "eye of the dog with mouth shut", "question": ["is there eye ?", "is there the dog ?", "is there mouth ?"], "prompt": "eye of the {} with mouth shut"}, {"index": 527, "image_id": 2378738, "entity": "dog", "caption": "the dog's tongue is sticking out", "question": ["is there the dog's tongue ?"], "prompt": "the {}'s tongue is sticking out"}, {"index": 528, "image_id": 2378738, "entity": "dog", "caption": "the dog is wearing a harness", "question": ["is there the dog ?", "is there a harness ?"], "prompt": "the {} is wearing a harness"}, {"index": 529, "image_id": 2378738, "entity": "dog", "caption": "the dog has whiskers ", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers "}, {"index": 530, "image_id": 2378738, "entity": "dog", "caption": "the dog's collar has a silver tag", "question": ["is there the dog's collar ?", "is there a silver tag ?"], "prompt": "the {}'s collar has a silver tag"}, {"index": 531, "image_id": 2378738, "entity": "dog", "caption": "the dog has teeth", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "the {} has teeth"}, {"index": 532, "image_id": 2378738, "entity": "dog", "caption": "the dogs curved tail", "question": ["are there the dogs ?", "is there tail ?"], "prompt": "the {}s curved tail"}, {"index": 533, "image_id": 2378738, "entity": "dog", "caption": "the dog collar is dark brown", "question": ["is there the dog collar ?"], "prompt": "the {} collar is dark brown"}, {"index": 534, "image_id": 2378738, "entity": "dog", "caption": "the dog`s mouth is open", "question": ["is there the dog`s mouth ?"], "prompt": "the {}`s mouth is open"}, {"index": 535, "image_id": 2378738, "entity": "dog", "caption": "the dog`s neck is white", "question": ["is there the dog`s neck ?"], "prompt": "the {}`s neck is white"}, {"index": 536, "image_id": 2378738, "entity": "dog", "caption": "the dog`s face is multi colored", "question": ["is there the dog`s face ?"], "prompt": "the {}`s face is multi colored"}, {"index": 537, "image_id": 2378013, "entity": "dog", "caption": "paws of dog are black", "question": ["are there paws ?", "is there dog ?"], "prompt": "paws of {} are black"}, {"index": 538, "image_id": 2378013, "entity": "dog", "caption": "hair eyes of dog are big", "question": ["are there hair eyes ?", "is there dog ?"], "prompt": "hair eyes of {} are big"}, {"index": 539, "image_id": 2378013, "entity": "dog", "caption": "dog is wearing a bandana", "question": ["is there dog ?", "is there a bandana ?"], "prompt": "{} is wearing a bandana"}, {"index": 540, "image_id": 2377946, "entity": "dog", "caption": "The dog is on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "The {} is on the bed"}, {"index": 541, "image_id": 2377946, "entity": "dog", "caption": "The dog has a red blanket", "question": ["is there the dog ?", "is there a red blanket ?"], "prompt": "The {} has a red blanket"}, {"index": 542, "image_id": 2377695, "entity": "dog", "caption": "the dogs pink tounge", "question": ["are there the dogs ?"], "prompt": "the {}s pink tounge"}, {"index": 543, "image_id": 2377541, "entity": "dog", "caption": "a dogs ear with black spots", "question": ["are there a dogs ?", "are there black spots ?"], "prompt": "a {}s ear with black spots"}, {"index": 544, "image_id": 2377541, "entity": "dog", "caption": "wet dog standing in pond", "question": ["is there wet dog ?", "is there pond ?"], "prompt": "wet {} standing in pond"}, {"index": 545, "image_id": 2377276, "entity": "dog", "caption": "fur of dog is long", "question": ["is there fur ?", "is there dog ?"], "prompt": "fur of {} is long"}, {"index": 546, "image_id": 2377096, "entity": "dog", "caption": "the dog's snout is black", "question": ["is there the dog's snout ?"], "prompt": "the {}'s snout is black"}, {"index": 547, "image_id": 2377096, "entity": "dog", "caption": "the dog has a leather collar", "question": ["is there the dog ?", "is there a leather collar ?"], "prompt": "the {} has a leather collar"}, {"index": 548, "image_id": 2377096, "entity": "dog", "caption": "the dog has black ears ", "question": ["is there the dog ?", "are there black ears ?"], "prompt": "the {} has black ears "}, {"index": 549, "image_id": 2376453, "entity": "dog", "caption": "the dog has an orange collar ", "question": ["is there the dog ?", "is there an orange collar ?"], "prompt": "the {} has an orange collar "}, {"index": 550, "image_id": 2376453, "entity": "dog", "caption": "this is an ear of a dog", "question": ["is there an ear ?", "is there a dog ?"], "prompt": "this is an ear of a {}"}, {"index": 551, "image_id": 2376453, "entity": "dog", "caption": "this is a tongue of a dog", "question": ["is there a tongue ?", "is there a dog ?"], "prompt": "this is a tongue of a {}"}, {"index": 552, "image_id": 2376453, "entity": "dog", "caption": "two dogs leashed to post", "question": ["are there two dogs ?"], "prompt": "two {}s leashed to post"}, {"index": 553, "image_id": 2376453, "entity": "dog", "caption": "two dogs tied to a tree", "question": ["are there two dogs ?", "is there a tree ?"], "prompt": "two {}s tied to a tree"}, {"index": 554, "image_id": 2376406, "entity": "dog", "caption": "dog has it's mouth open", "question": ["is there dog ?"], "prompt": "{} has it's mouth open"}, {"index": 555, "image_id": 2376406, "entity": "dog", "caption": "dog is leaning against the sofa", "question": ["is there dog ?", "is there the sofa ?"], "prompt": "{} is leaning against the sofa"}, {"index": 556, "image_id": 2376406, "entity": "dog", "caption": "dog's teeth are white", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are white"}, {"index": 557, "image_id": 2376134, "entity": "dog", "caption": "A dog is smelling a cat", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} is smelling a cat"}, {"index": 558, "image_id": 2376134, "entity": "dog", "caption": "An old dog is greeting the new cat", "question": ["is there an old dog ?", "is there the new cat ?"], "prompt": "An old {} is greeting the new cat"}, {"index": 559, "image_id": 2376134, "entity": "dog", "caption": "A cat is friends with a dog", "question": ["is there a cat ?", "are there friends ?", "is there a dog ?"], "prompt": "A cat is friends with a {}"}, {"index": 560, "image_id": 2376134, "entity": "dog", "caption": "dog has two ears.", "question": ["is there dog ?", "are there two ears ?"], "prompt": "{} has two ears."}, {"index": 561, "image_id": 2376108, "entity": "dog", "caption": "dog has purple collar", "question": ["is there dog ?", "is there purple collar ?"], "prompt": "{} has purple collar"}, {"index": 562, "image_id": 2376108, "entity": "dog", "caption": "dog has brown nose", "question": ["is there dog ?", "is there brown nose ?"], "prompt": "{} has brown nose"}, {"index": 563, "image_id": 2376108, "entity": "dog", "caption": "dog has light brown hair", "question": ["is there dog ?", "is there light brown hair ?"], "prompt": "{} has light brown hair"}, {"index": 564, "image_id": 2376108, "entity": "dog", "caption": "dog has dark brown ears", "question": ["is there dog ?", "are there dark brown ears ?"], "prompt": "{} has dark brown ears"}, {"index": 565, "image_id": 2375658, "entity": "dog", "caption": "Sad looking dog face", "question": ["is there sad looking dog face ?"], "prompt": "Sad looking {} face"}, {"index": 566, "image_id": 2375561, "entity": "dog", "caption": "The dog is wearing a blue harness", "question": ["is there the dog ?", "is there a blue harness ?"], "prompt": "The {} is wearing a blue harness"}, {"index": 567, "image_id": 2375561, "entity": "dog", "caption": "The dog is standing on a chair.", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} is standing on a chair."}, {"index": 568, "image_id": 2375451, "entity": "dog", "caption": "the dogs nose is black ", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black "}, {"index": 569, "image_id": 2375428, "entity": "dog", "caption": "The dog is looking at the camera", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera"}, {"index": 570, "image_id": 2375428, "entity": "dog", "caption": "The dog has long fur", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur"}, {"index": 571, "image_id": 2374930, "entity": "dog", "caption": "baby is leaning on a dog", "question": ["is there baby ?", "is there a dog ?"], "prompt": "baby is leaning on a {}"}, {"index": 572, "image_id": 2374930, "entity": "dog", "caption": "nose of dog is brown ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is brown "}, {"index": 573, "image_id": 2374268, "entity": "dog", "caption": "the dog's leg hanging over the sofa", "question": ["is there the dog's leg ?", "is there the sofa ?"], "prompt": "the {}'s leg hanging over the sofa"}, {"index": 574, "image_id": 2374268, "entity": "dog", "caption": "dog has face buried in the couch", "question": ["is there dog ?", "is there face ?", "is there the couch ?"], "prompt": "{} has face buried in the couch"}, {"index": 575, "image_id": 2374132, "entity": "dog", "caption": "dog has light brown paws", "question": ["is there dog ?", "are there light brown paws ?"], "prompt": "{} has light brown paws"}, {"index": 576, "image_id": 2374013, "entity": "dog", "caption": "dog's ears are light brown", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are light brown"}, {"index": 577, "image_id": 2373955, "entity": "dog", "caption": "a brown hat the dog is wearing", "question": ["is there a brown hat ?", "is there the dog ?"], "prompt": "a brown hat the {} is wearing"}, {"index": 578, "image_id": 2373955, "entity": "dog", "caption": "black dog kissing man", "question": ["is there black dog kissing man ?"], "prompt": "black {} kissing man"}, {"index": 579, "image_id": 2373533, "entity": "dog", "caption": "eyes of dog are big", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are big"}, {"index": 580, "image_id": 2373533, "entity": "dog", "caption": "mouth of dog is touching a rail", "question": ["is there mouth ?", "is there dog ?", "is there a rail ?"], "prompt": "mouth of {} is touching a rail"}, {"index": 581, "image_id": 2373340, "entity": "dog", "caption": "dog is wearing pink collar", "question": ["is there dog ?", "is there pink collar ?"], "prompt": "{} is wearing pink collar"}, {"index": 582, "image_id": 2373340, "entity": "dog", "caption": "dogs nose is brown", "question": ["are there dogs nose ?"], "prompt": "{}s nose is brown"}, {"index": 583, "image_id": 2373340, "entity": "dog", "caption": "dog right ear is brown", "question": ["is there dog right ear ?"], "prompt": "{} right ear is brown"}, {"index": 584, "image_id": 2373155, "entity": "dog", "caption": "dogs has a chain on his neck", "question": ["are there dogs ?", "is there a chain ?", "is there his neck ?"], "prompt": "{}s has a chain on his neck"}, {"index": 585, "image_id": 2373141, "entity": "dog", "caption": "This is a man with a dog", "question": ["is there a man ?", "is there a dog ?"], "prompt": "This is a man with a {}"}, {"index": 586, "image_id": 2373109, "entity": "dog", "caption": "the dog is on the ground ", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground "}, {"index": 587, "image_id": 2373073, "entity": "dog", "caption": "dog is wearing a hat ", "question": ["is there dog ?", "is there a hat ?"], "prompt": "{} is wearing a hat "}, {"index": 588, "image_id": 2372988, "entity": "dog", "caption": "Water drips down dog's face.", "question": ["is there water ?", "is there dog's face ?"], "prompt": "Water drips down {}'s face."}, {"index": 589, "image_id": 2372988, "entity": "dog", "caption": "dog is wearing a chain", "question": ["is there dog ?", "is there a chain ?"], "prompt": "{} is wearing a chain"}, {"index": 590, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A {} is riding in a car"}, {"index": 591, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in the passenger seat", "question": ["is there a dog ?", "is there the passenger seat ?"], "prompt": "A {} is riding in the passenger seat"}, {"index": 592, "image_id": 2372618, "entity": "dog", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A {} is in its master's car"}, {"index": 593, "image_id": 2372618, "entity": "dog", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} likes riding in a car"}, {"index": 594, "image_id": 2372618, "entity": "dog", "caption": "The dog is looking out the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is looking out the window"}, {"index": 595, "image_id": 2372586, "entity": "dog", "caption": "The dog is sitting on a bench.", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is sitting on a bench."}, {"index": 596, "image_id": 2372586, "entity": "dog", "caption": "dog is wearing a blue harness", "question": ["is there dog ?", "is there a blue harness ?"], "prompt": "{} is wearing a blue harness"}, {"index": 597, "image_id": 2372586, "entity": "dog", "caption": "the dog has a white belly", "question": ["is there the dog ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 598, "image_id": 2372549, "entity": "dog", "caption": "the dog looks sleepy", "question": ["is there the dog ?"], "prompt": "the {} looks sleepy"}, {"index": 599, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is laying on a stuffed animal"}, {"index": 600, "image_id": 2372549, "entity": "dog", "caption": "the dog is pale tan in color", "question": ["is there the dog ?", "is there pale tan ?", "is there color ?"], "prompt": "the {} is pale tan in color"}, {"index": 601, "image_id": 2372549, "entity": "dog", "caption": "stuffed animal dog is sleeping on", "question": ["is there stuffed animal dog ?"], "prompt": "stuffed animal {} is sleeping on"}, {"index": 602, "image_id": 2372549, "entity": "dog", "caption": "red bed dog is sleeping on", "question": ["is there red bed dog ?"], "prompt": "red bed {} is sleeping on"}, {"index": 603, "image_id": 2372549, "entity": "dog", "caption": "the cushion under the dog is red", "question": ["is there the cushion ?", "is there the dog ?"], "prompt": "the cushion under the {} is red"}, {"index": 604, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a cushion", "question": ["is there the dog ?", "is there a cushion ?"], "prompt": "the {} is laying on a cushion"}, {"index": 605, "image_id": 2372549, "entity": "dog", "caption": "The dog ear on the right", "question": ["is there the dog ear ?", "is there the right ?"], "prompt": "The {} ear on the right"}, {"index": 606, "image_id": 2372293, "entity": "dog", "caption": "Dog leash on the beige dog", "question": ["is there dog ?", "is there the beige dog ?"], "prompt": "Dog leash on the beige {}"}, {"index": 607, "image_id": 2372293, "entity": "dog", "caption": "dog has white teeth", "question": ["is there dog ?", "are there white teeth ?"], "prompt": "{} has white teeth"}, {"index": 608, "image_id": 2372293, "entity": "dog", "caption": "dog has black under his lip", "question": ["is there dog ?", "is there his lip ?"], "prompt": "{} has black under his lip"}, {"index": 609, "image_id": 2372091, "entity": "dog", "caption": "wooden bench dog is sitting on", "question": ["is there wooden bench dog ?"], "prompt": "wooden bench {} is sitting on"}, {"index": 610, "image_id": 2371865, "entity": "dog", "caption": "Flowered leash going to the dog", "question": ["is there flowered leash ?", "is there the dog ?"], "prompt": "Flowered leash going to the {}"}, {"index": 611, "image_id": 2371865, "entity": "dog", "caption": "dog looks off into distance", "question": ["is there dog ?", "is there distance ?"], "prompt": "{} looks off into distance"}, {"index": 612, "image_id": 2371865, "entity": "dog", "caption": "dog wears sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} wears sweater"}, {"index": 613, "image_id": 2371865, "entity": "dog", "caption": "dog sits next to bicycle", "question": ["is there dog ?", "is there bicycle ?"], "prompt": "{} sits next to bicycle"}, {"index": 614, "image_id": 2371865, "entity": "dog", "caption": "dog sits on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} sits on sidewalk"}, {"index": 615, "image_id": 2371865, "entity": "dog", "caption": "sweater is on dog", "question": ["is there dog ?"], "prompt": "sweater is on {}"}, {"index": 616, "image_id": 2371865, "entity": "dog", "caption": "dog is inside sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is inside sweater"}, {"index": 617, "image_id": 2371865, "entity": "dog", "caption": "The dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash"}, {"index": 618, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing near a bicycle", "question": ["is there the white dog ?", "is there a bicycle ?"], "prompt": "The white {} is standing near a bicycle"}, {"index": 619, "image_id": 2371865, "entity": "dog", "caption": "The white dog in the sweater has a bushy tail", "question": ["is there the white dog ?", "is there the sweater ?", "is there a bushy tail ?"], "prompt": "The white {} in the sweater has a bushy tail"}, {"index": 620, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing on the sidewalk", "question": ["is there the white dog ?", "is there the sidewalk ?"], "prompt": "The white {} is standing on the sidewalk"}, {"index": 621, "image_id": 2371612, "entity": "dog", "caption": "the dog is using the laptop", "question": ["is there the dog ?", "is there the laptop ?"], "prompt": "the {} is using the laptop"}, {"index": 622, "image_id": 2371612, "entity": "dog", "caption": "A dog with it's paws on a laptop.", "question": ["is there a dog ?", "are there it's paws ?", "is there a laptop ?"], "prompt": "A {} with it's paws on a laptop."}, {"index": 623, "image_id": 2371612, "entity": "dog", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The {} is using the computer "}, {"index": 624, "image_id": 2371612, "entity": "dog", "caption": "The nose of the dog is black ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "The nose of the {} is black "}, {"index": 625, "image_id": 2371612, "entity": "dog", "caption": "The eye of the dog is brown ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "The eye of the {} is brown "}, {"index": 626, "image_id": 2371520, "entity": "dog", "caption": "carpet dog is playing on", "question": ["is there carpet dog ?"], "prompt": "carpet {} is playing on"}, {"index": 627, "image_id": 2371249, "entity": "dog", "caption": "A dog has three colors of fur.", "question": ["is there a dog ?", "are there three colors ?", "is there fur ?"], "prompt": "A {} has three colors of fur."}, {"index": 628, "image_id": 2371249, "entity": "dog", "caption": "A dog is wearing a scarf around the neck.", "question": ["is there a dog ?", "is there a scarf ?", "is there the neck ?"], "prompt": "A {} is wearing a scarf around the neck."}, {"index": 629, "image_id": 2371249, "entity": "dog", "caption": "A woman is sitting close to a dog.", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman is sitting close to a {}."}, {"index": 630, "image_id": 2371169, "entity": "dog", "caption": "The dog has a frisbee in mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there mouth ?"], "prompt": "The {} has a frisbee in mouth."}, {"index": 631, "image_id": 2371169, "entity": "dog", "caption": "the dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar."}, {"index": 632, "image_id": 2371169, "entity": "dog", "caption": "The back left leg of a dog", "question": ["is there the back left leg ?", "is there a dog ?"], "prompt": "The back left leg of a {}"}, {"index": 633, "image_id": 2371169, "entity": "dog", "caption": "The front left leg of a dog", "question": ["is there the front left leg ?", "is there a dog ?"], "prompt": "The front left leg of a {}"}, {"index": 634, "image_id": 2371119, "entity": "dog", "caption": "the dog is laying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is laying on the bed"}, {"index": 635, "image_id": 2370667, "entity": "dog", "caption": "the dogs nail ", "question": ["are there the dogs ?"], "prompt": "the {}s nail "}, {"index": 636, "image_id": 2370647, "entity": "dog", "caption": "The dog has a serious face", "question": ["is there the dog ?", "is there a serious face ?"], "prompt": "The {} has a serious face"}, {"index": 637, "image_id": 2370647, "entity": "dog", "caption": "The dog has white whiskers.", "question": ["is there the dog ?", "are there white whiskers ?"], "prompt": "The {} has white whiskers."}, {"index": 638, "image_id": 2370647, "entity": "dog", "caption": "The dog has a brown colar.", "question": ["is there the dog ?", "is there a brown colar ?"], "prompt": "The {} has a brown colar."}, {"index": 639, "image_id": 2370508, "entity": "dog", "caption": "eye of dog is black ", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black "}, {"index": 640, "image_id": 2370508, "entity": "dog", "caption": "chest of dog is white", "question": ["is there chest ?", "is there dog ?"], "prompt": "chest of {} is white"}, {"index": 641, "image_id": 2370508, "entity": "dog", "caption": "dog has dog tags", "question": ["is there dog ?", "are there dog tags ?"], "prompt": "{} has {} tags"}, {"index": 642, "image_id": 2370342, "entity": "dog", "caption": "dog's head is on the pillow", "question": ["is there dog's head ?", "is there the pillow ?"], "prompt": "{}'s head is on the pillow"}, {"index": 643, "image_id": 2370107, "entity": "dog", "caption": "bottom left tooth of dog", "question": ["is there bottom ?", "is there tooth ?", "is there dog ?"], "prompt": "bottom left tooth of {}"}, {"index": 644, "image_id": 2369919, "entity": "dog", "caption": "dogs nose is black ", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black "}, {"index": 645, "image_id": 2369919, "entity": "dog", "caption": "the dog is laying down on a shoe ", "question": ["is there the dog ?", "is there a shoe ?"], "prompt": "the {} is laying down on a shoe "}, {"index": 646, "image_id": 2369591, "entity": "dog", "caption": "the dog has a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} has a leash"}, {"index": 647, "image_id": 2369591, "entity": "dog", "caption": "The dog's eye looking ahead", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye looking ahead"}, {"index": 648, "image_id": 2369270, "entity": "dog", "caption": "Frisbee is in the dog's mouth", "question": ["is there the dog's mouth ?"], "prompt": "Frisbee is in the {}'s mouth"}, {"index": 649, "image_id": 2368889, "entity": "dog", "caption": "Big brown dog spiked pink collar.", "question": ["is there big brown dog ?", "is there pink collar ?"], "prompt": "Big brown {} spiked pink collar."}, {"index": 650, "image_id": 2368858, "entity": "dog", "caption": "dog is laying on the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is laying on the ground"}, {"index": 651, "image_id": 2368858, "entity": "dog", "caption": "dog with tongue sticking out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue sticking out"}, {"index": 652, "image_id": 2368858, "entity": "dog", "caption": "the dog has a front paw", "question": ["is there the dog ?", "is there a front paw ?"], "prompt": "the {} has a front paw"}, {"index": 653, "image_id": 2368858, "entity": "dog", "caption": "the dog has nails", "question": ["is there the dog ?", "are there nails ?"], "prompt": "the {} has nails"}, {"index": 654, "image_id": 2368858, "entity": "dog", "caption": "the dog is lying down", "question": ["is there the dog ?"], "prompt": "the {} is lying down"}, {"index": 655, "image_id": 2368714, "entity": "dog", "caption": "dog curled up with a teddy bear", "question": ["is there dog ?"], "prompt": "{} curled up with a teddy bear"}, {"index": 656, "image_id": 2368714, "entity": "dog", "caption": "ear of dog is black ", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is black "}, {"index": 657, "image_id": 2368054, "entity": "dog", "caption": "dog has a purple leash", "question": ["is there dog ?", "is there a purple leash ?"], "prompt": "{} has a purple leash"}, {"index": 658, "image_id": 2368054, "entity": "dog", "caption": "this dog is wearing a red harness", "question": ["is there this dog ?", "is there a red harness ?"], "prompt": "this {} is wearing a red harness"}, {"index": 659, "image_id": 2367865, "entity": "dog", "caption": "The dog's eyes are yellow", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are yellow"}, {"index": 660, "image_id": 2367488, "entity": "dog", "caption": "the dog is inside a van", "question": ["is there the dog ?", "is there a van ?"], "prompt": "the {} is inside a van"}, {"index": 661, "image_id": 2367488, "entity": "dog", "caption": "the dog tag hanging", "question": ["is there the dog tag ?"], "prompt": "the {} tag hanging"}, {"index": 662, "image_id": 2367488, "entity": "dog", "caption": "The dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar"}, {"index": 663, "image_id": 2367488, "entity": "dog", "caption": "navy blanket dog is laying on", "question": ["is there navy blanket dog ?"], "prompt": "navy blanket {} is laying on"}, {"index": 664, "image_id": 2367488, "entity": "dog", "caption": "The dog's pink tongue is very long", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue is very long"}, {"index": 665, "image_id": 2367488, "entity": "dog", "caption": "A large tongue hanging out of the dog's mouth", "question": ["is there a large tongue ?", "is there the dog's mouth ?"], "prompt": "A large tongue hanging out of the {}'s mouth"}, {"index": 666, "image_id": 2367488, "entity": "dog", "caption": "The dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 667, "image_id": 2367433, "entity": "dog", "caption": "pizza that dog is eating", "question": ["is there pizza ?", "is there that dog ?"], "prompt": "pizza that {} is eating"}, {"index": 668, "image_id": 2367433, "entity": "dog", "caption": "steel grate that dog is standing on", "question": ["is there steel grate ?", "is there that dog ?"], "prompt": "steel grate that {} is standing on"}, {"index": 669, "image_id": 2367152, "entity": "dog", "caption": "mouth of dog is open", "question": ["is there mouth ?", "is there dog ?"], "prompt": "mouth of {} is open"}, {"index": 670, "image_id": 2366422, "entity": "dog", "caption": "dog tail held high", "question": ["is there dog tail ?"], "prompt": "{} tail held high"}, {"index": 671, "image_id": 2366422, "entity": "dog", "caption": "a dog that has brown eyes", "question": ["is there a dog ?", "are there brown eyes ?"], "prompt": "a {} that has brown eyes"}, {"index": 672, "image_id": 2366422, "entity": "dog", "caption": "the dog has a brown ear", "question": ["is there the dog ?", "is there a brown ear ?"], "prompt": "the {} has a brown ear"}, {"index": 673, "image_id": 2366422, "entity": "dog", "caption": "this dog has eyes", "question": ["is there this dog ?", "are there eyes ?"], "prompt": "this {} has eyes"}, {"index": 674, "image_id": 2366422, "entity": "dog", "caption": "this dog has ears", "question": ["is there this dog ?", "are there ears ?"], "prompt": "this {} has ears"}, {"index": 675, "image_id": 2366422, "entity": "dog", "caption": "this dog's nose is black", "question": ["is there this dog's nose ?"], "prompt": "this {}'s nose is black"}, {"index": 676, "image_id": 2366422, "entity": "dog", "caption": "this dog has a long tail", "question": ["is there this dog ?", "is there a long tail ?"], "prompt": "this {} has a long tail"}, {"index": 677, "image_id": 2365888, "entity": "dog", "caption": "the dog has a small tail", "question": ["is there the dog ?", "is there a small tail ?"], "prompt": "the {} has a small tail"}, {"index": 678, "image_id": 2365787, "entity": "dog", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th e{} is in the car "}, {"index": 679, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking outside the window"}, {"index": 680, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside ", "question": ["is there the dog ?"], "prompt": "the {} is looking outside "}, {"index": 681, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking through the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking through the window"}, {"index": 682, "image_id": 2365756, "entity": "dog", "caption": "the doghas a seat belt on ", "question": ["is there a seat belt ?"], "prompt": "the {}has a seat belt on "}, {"index": 683, "image_id": 2365756, "entity": "dog", "caption": "Black seatbelt holding back a dog. ", "question": ["is there black seatbelt ?", "is there a dog ?"], "prompt": "Black seatbelt holding back a {}. "}, {"index": 684, "image_id": 2365712, "entity": "dog", "caption": "the dog is licking the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is licking the cake"}, {"index": 685, "image_id": 2365044, "entity": "dog", "caption": "dog is wearing a bow tie ", "question": ["is there dog ?", "is there a bow tie ?"], "prompt": "{} is wearing a bow tie "}, {"index": 686, "image_id": 2364811, "entity": "dog", "caption": "The pillow the dog is laying on.", "question": ["is there the pillow ?", "is there the dog ?"], "prompt": "The pillow the {} is laying on."}, {"index": 687, "image_id": 2364811, "entity": "dog", "caption": "the dog is getting ready for bed", "question": ["is there the dog ?", "is there bed ?"], "prompt": "the {} is getting ready for bed"}, {"index": 688, "image_id": 2364811, "entity": "dog", "caption": "this dog looks comfortable in bed", "question": ["is there this dog ?", "is there bed ?"], "prompt": "this {} looks comfortable in bed"}, {"index": 689, "image_id": 2364811, "entity": "dog", "caption": "dog has hazel eyes", "question": ["is there dog ?", "are there hazel eyes ?"], "prompt": "{} has hazel eyes"}, {"index": 690, "image_id": 2364543, "entity": "dog", "caption": "dog is holding a ball", "question": ["is there dog ?", "is there a ball ?"], "prompt": "{} is holding a ball"}, {"index": 691, "image_id": 2364543, "entity": "dog", "caption": "black dog with paws forward looking at camera", "question": ["is there black dog ?", "are there paws ?", "is there camera ?"], "prompt": "black {} with paws forward looking at camera"}, {"index": 692, "image_id": 2364543, "entity": "dog", "caption": "dog has a ball inside his mouth", "question": ["is there dog ?", "is there a ball ?", "is there his mouth ?"], "prompt": "{} has a ball inside his mouth"}, {"index": 693, "image_id": 2364543, "entity": "dog", "caption": "snout of dog is color salt and pepper", "question": ["is there snout ?", "is there dog ?", "is there color salt ?", "is there pepper ?"], "prompt": "snout of {} is color salt and pepper"}, {"index": 694, "image_id": 2364504, "entity": "dog", "caption": "The dog is wearing a purple collar.", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "The {} is wearing a purple collar."}, {"index": 695, "image_id": 2364504, "entity": "dog", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One {} is sitting in the car."}, {"index": 696, "image_id": 2364448, "entity": "dog", "caption": "the dog has a paw", "question": ["is there the dog ?", "is there a paw ?"], "prompt": "the {} has a paw"}, {"index": 697, "image_id": 2364244, "entity": "dog", "caption": "the dog is wearing a tiara", "question": ["is there the dog ?", "is there a tiara ?"], "prompt": "the {} is wearing a tiara"}, {"index": 698, "image_id": 2364208, "entity": "dog", "caption": "the cow is looking at the dog", "question": ["is there the cow ?", "is there the dog ?"], "prompt": "the cow is looking at the {}"}, {"index": 699, "image_id": 2363392, "entity": "dog", "caption": "a dog with his tooth sticking out", "question": ["is there a dog ?", "is there his tooth ?"], "prompt": "a {} with his tooth sticking out"}, {"index": 700, "image_id": 2363392, "entity": "dog", "caption": "green couch cushion dog is sleeping on", "question": ["is there green couch cushion dog ?"], "prompt": "green couch cushion {} is sleeping on"}, {"index": 701, "image_id": 2363392, "entity": "dog", "caption": "dog lip pulled up against cushion", "question": ["is there dog lip ?", "is there cushion ?"], "prompt": "{} lip pulled up against cushion"}, {"index": 702, "image_id": 2363392, "entity": "dog", "caption": "dog's tongue sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue sticking out"}, {"index": 703, "image_id": 2363350, "entity": "dog", "caption": "A dog is laying in his bed", "question": ["is there a dog ?", "is there his bed ?"], "prompt": "A {} is laying in his bed"}, {"index": 704, "image_id": 2363350, "entity": "dog", "caption": "The dog is resting on a pillow", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is resting on a pillow"}, {"index": 705, "image_id": 2362763, "entity": "dog", "caption": "dog's teeth are showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are showing"}, {"index": 706, "image_id": 2362553, "entity": "dog", "caption": "dog with head tilted up", "question": ["is there dog ?", "is there head ?"], "prompt": "{} with head tilted up"}, {"index": 707, "image_id": 2362553, "entity": "dog", "caption": "the dog has a right eye", "question": ["is there the dog ?", "is there a right eye ?"], "prompt": "the {} has a right eye"}, {"index": 708, "image_id": 2362525, "entity": "dog", "caption": "The dog is in the bag", "question": ["is there the dog ?", "is there the bag ?"], "prompt": "The {} is in the bag"}, {"index": 709, "image_id": 2362525, "entity": "dog", "caption": "The bag is holding the dog", "question": ["is there the bag ?", "is there the dog ?"], "prompt": "The bag is holding the {}"}, {"index": 710, "image_id": 2362525, "entity": "dog", "caption": "The small backpack holds a dog", "question": ["is there the small backpack ?", "is there a dog ?"], "prompt": "The small backpack holds a {}"}, {"index": 711, "image_id": 2362525, "entity": "dog", "caption": "The dog is turning its head", "question": ["is there the dog ?", "is there its head ?"], "prompt": "The {} is turning its head"}, {"index": 712, "image_id": 2362525, "entity": "dog", "caption": "this is a \"doggy pack\"", "question": ["is there a \"doggy pack ?"], "prompt": "this is a \"{}gy pack\""}, {"index": 713, "image_id": 2362323, "entity": "dog", "caption": "dog is wearing chain collar", "question": ["is there dog ?", "is there chain collar ?"], "prompt": "{} is wearing chain collar"}, {"index": 714, "image_id": 2362323, "entity": "dog", "caption": "the dog is looking at the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is looking at the cake"}, {"index": 715, "image_id": 2362323, "entity": "dog", "caption": "the dog looks sad", "question": ["is there the dog ?"], "prompt": "the {} looks sad"}, {"index": 716, "image_id": 2362323, "entity": "dog", "caption": "the dog lays head on arm", "question": ["is there the dog ?", "is there head ?", "is there arm ?"], "prompt": "the {} lays head on arm"}, {"index": 717, "image_id": 2362323, "entity": "dog", "caption": "the dog has spots", "question": ["is there the dog ?", "are there spots ?"], "prompt": "the {} has spots"}, {"index": 718, "image_id": 2362323, "entity": "dog", "caption": "eye of dog is black", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black"}, {"index": 719, "image_id": 2362196, "entity": "dog", "caption": " a dog with it's tongue sticking out", "question": ["is there a dog ?", "is there tongue ?"], "prompt": " a {} with it's tongue sticking out"}, {"index": 720, "image_id": 2362106, "entity": "dog", "caption": "this is a dog ", "question": ["is there a dog ?"], "prompt": "this is a {} "}, {"index": 721, "image_id": 2362106, "entity": "dog", "caption": "the dog is lying down on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is lying down on the floor"}, {"index": 722, "image_id": 2362106, "entity": "dog", "caption": "The dog is in somebody's house", "question": ["is there the dog ?", "is there somebody's house ?"], "prompt": "The {} is in somebody's house"}, {"index": 723, "image_id": 2362106, "entity": "dog", "caption": "The dog is laying by the door", "question": ["is there the dog ?", "is there the door ?"], "prompt": "The {} is laying by the door"}, {"index": 724, "image_id": 2362106, "entity": "dog", "caption": "The dog is guarding the house", "question": ["is there the dog ?", "is there the house ?"], "prompt": "The {} is guarding the house"}, {"index": 725, "image_id": 2362106, "entity": "dog", "caption": "The dog is awake in daytime", "question": ["is there the dog ?", "is there daytime ?"], "prompt": "The {} is awake in daytime"}, {"index": 726, "image_id": 2362106, "entity": "dog", "caption": "The dog is waiting to go outside", "question": ["is there the dog ?"], "prompt": "The {} is waiting to go outside"}, {"index": 727, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting to be let out", "question": ["is there a dog ?"], "prompt": "A {} is waiting to be let out"}, {"index": 728, "image_id": 2362106, "entity": "dog", "caption": "A dog is sleeping on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is sleeping on the floor"}, {"index": 729, "image_id": 2362106, "entity": "dog", "caption": "A dog is looking for attention", "question": ["is there a dog ?", "is there attention ?"], "prompt": "A {} is looking for attention"}, {"index": 730, "image_id": 2362106, "entity": "dog", "caption": "The dog is looking lonely", "question": ["is there the dog ?"], "prompt": "The {} is looking lonely"}, {"index": 731, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting by the door", "question": ["is there a dog ?", "is there the door ?"], "prompt": "A {} is waiting by the door"}, {"index": 732, "image_id": 2362106, "entity": "dog", "caption": "A dog is laying on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is laying on the floor"}, {"index": 733, "image_id": 2362106, "entity": "dog", "caption": "The dog is wanting to be fed", "question": ["is there the dog ?"], "prompt": "The {} is wanting to be fed"}, {"index": 734, "image_id": 2362106, "entity": "dog", "caption": "The dog is enjoying its day", "question": ["is there the dog ?", "is there its day ?"], "prompt": "The {} is enjoying its day"}, {"index": 735, "image_id": 2362106, "entity": "dog", "caption": "The dog is getting some rest", "question": ["is there the dog ?", "is there some rest ?"], "prompt": "The {} is getting some rest"}, {"index": 736, "image_id": 2362106, "entity": "dog", "caption": "The dog belongs to the home owner", "question": ["is there the dog ?", "is there the home owner ?"], "prompt": "The {} belongs to the home owner"}, {"index": 737, "image_id": 2361653, "entity": "dog", "caption": "the dog has a left eye", "question": ["is there the dog ?", "is there a left eye ?"], "prompt": "the {} has a left eye"}, {"index": 738, "image_id": 2361100, "entity": "dog", "caption": "floppy black dog ear ", "question": ["is there floppy black dog ear ?"], "prompt": "floppy black {} ear "}, {"index": 739, "image_id": 2361100, "entity": "dog", "caption": "two dog ear in different positions at same time ", "question": ["is there two dog ear ?", "are there different positions ?", "is there same time ?"], "prompt": "two {} ear in different positions at same time "}, {"index": 740, "image_id": 2361100, "entity": "dog", "caption": "The dog's left ear flopped down", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear flopped down"}, {"index": 741, "image_id": 2361100, "entity": "dog", "caption": "the dog's right ear is up", "question": ["is there the dog's right ear ?"], "prompt": "the {}'s right ear is up"}, {"index": 742, "image_id": 2361100, "entity": "dog", "caption": "the dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are open"}, {"index": 743, "image_id": 2360869, "entity": "dog", "caption": "dog is laying on dog bed", "question": ["is there dog ?", "is there dog bed ?"], "prompt": "{} is laying on {} bed"}, {"index": 744, "image_id": 2360869, "entity": "dog", "caption": "dog has small nose", "question": ["is there dog ?", "is there small nose ?"], "prompt": "{} has small nose"}, {"index": 745, "image_id": 2360869, "entity": "dog", "caption": "dog bed is beige", "question": ["is there dog bed ?"], "prompt": "{} bed is beige"}, {"index": 746, "image_id": 2360869, "entity": "dog", "caption": "dog has wavy fur", "question": ["is there dog ?", "is there wavy fur ?"], "prompt": "{} has wavy fur"}, {"index": 747, "image_id": 2360869, "entity": "dog", "caption": "dog has fluffy tail", "question": ["is there dog ?", "is there fluffy tail ?"], "prompt": "{} has fluffy tail"}, {"index": 748, "image_id": 2360725, "entity": "dog", "caption": "the dog is biting an envelope", "question": ["is there the dog ?", "is there an envelope ?"], "prompt": "the {} is biting an envelope"}, {"index": 749, "image_id": 2360725, "entity": "dog", "caption": "dog is carrying an envelope", "question": ["is there dog ?", "is there an envelope ?"], "prompt": "{} is carrying an envelope"}, {"index": 750, "image_id": 2360542, "entity": "dog", "caption": "dog has black eyes", "question": ["is there dog ?", "are there black eyes ?"], "prompt": "{} has black eyes"}, {"index": 751, "image_id": 2360542, "entity": "dog", "caption": "pomeranian dog gets a ride inside duffle bag", "question": ["is there pomeranian dog ?", "is there a ride inside duffle bag ?"], "prompt": "pomeranian {} gets a ride inside duffle bag"}, {"index": 752, "image_id": 2360357, "entity": "dog", "caption": "The front left leg of the dog.", "question": ["is there the front left leg ?", "is there the dog ?"], "prompt": "The front left leg of the {}."}, {"index": 753, "image_id": 2360357, "entity": "dog", "caption": "eyes of dog are round", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are round"}, {"index": 754, "image_id": 2360357, "entity": "dog", "caption": "head of dog is brown", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown"}, {"index": 755, "image_id": 2360357, "entity": "dog", "caption": "dog has dark eyes ", "question": ["is there dog ?", "are there dark eyes ?"], "prompt": "{} has dark eyes "}, {"index": 756, "image_id": 2360299, "entity": "dog", "caption": "dog's right ear is black", "question": ["is there dog's right ear ?"], "prompt": "{}'s right ear is black"}, {"index": 757, "image_id": 2360145, "entity": "dog", "caption": "A shadow line is behind the dogs.", "question": ["is there a shadow line ?", "are there the dogs ?"], "prompt": "A shadow line is behind the {}s."}, {"index": 758, "image_id": 2359887, "entity": "dog", "caption": "dog with his eyes shut", "question": ["is there dog ?", "are there his eyes ?"], "prompt": "{} with his eyes shut"}, {"index": 759, "image_id": 2359887, "entity": "dog", "caption": "dog is on blanket", "question": ["is there dog ?", "is there blanket ?"], "prompt": "{} is on blanket"}, {"index": 760, "image_id": 2359887, "entity": "dog", "caption": "dog has blonde hair", "question": ["is there dog ?", "is there blonde hair ?"], "prompt": "{} has blonde hair"}, {"index": 761, "image_id": 2359887, "entity": "dog", "caption": "dog has long hair on ears", "question": ["is there dog ?", "is there long hair ?", "are there ears ?"], "prompt": "{} has long hair on ears"}, {"index": 762, "image_id": 2359809, "entity": "dog", "caption": "The rear left paw of the dog", "question": ["is there the rear left paw ?", "is there the dog ?"], "prompt": "The rear left paw of the {}"}, {"index": 763, "image_id": 2359809, "entity": "dog", "caption": "dog is standing on cement floors", "question": ["is there dog ?", "are there cement floors ?"], "prompt": "{} is standing on cement floors"}, {"index": 764, "image_id": 2359414, "entity": "dog", "caption": "the dog has a banana on its side", "question": ["is there the dog ?", "is there a banana ?", "is there its side ?"], "prompt": "the {} has a banana on its side"}, {"index": 765, "image_id": 2359172, "entity": "dog", "caption": "dog has brown ear", "question": ["is there dog ?", "is there brown ear ?"], "prompt": "{} has brown ear"}, {"index": 766, "image_id": 2359172, "entity": "dog", "caption": "dog has brown eye", "question": ["is there dog ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 767, "image_id": 2359073, "entity": "dog", "caption": "Cat is laying on top of dog.", "question": ["is there cat ?", "is there top ?", "is there dog ?"], "prompt": "Cat is laying on top of {}."}, {"index": 768, "image_id": 2359073, "entity": "dog", "caption": "The cat is on the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is on the {}."}, {"index": 769, "image_id": 2359073, "entity": "dog", "caption": "dog has brown eye brows", "question": ["is there dog ?", "are there brown eye brows ?"], "prompt": "{} has brown eye brows"}, {"index": 770, "image_id": 2358914, "entity": "dog", "caption": "dog holds chew toy", "question": ["is there dog ?", "is there toy ?"], "prompt": "{} holds chew toy"}, {"index": 771, "image_id": 2358914, "entity": "dog", "caption": "dog has pink tongue", "question": ["is there dog ?", "is there pink tongue ?"], "prompt": "{} has pink tongue"}, {"index": 772, "image_id": 2358914, "entity": "dog", "caption": "the dog is chewing on a toy", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "the {} is chewing on a toy"}, {"index": 773, "image_id": 2358914, "entity": "dog", "caption": "the dog chews on an orange toy", "question": ["is there the dog ?", "is there an orange toy ?"], "prompt": "the {} chews on an orange toy"}, {"index": 774, "image_id": 2358914, "entity": "dog", "caption": "the dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is on a blanket"}, {"index": 775, "image_id": 2358914, "entity": "dog", "caption": "the dog is laying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is laying on a blanket"}, {"index": 776, "image_id": 2358914, "entity": "dog", "caption": "Small orange looking stuffed animal a dog has. ", "question": ["is there small orange ?", "is there stuffed animal ?", "is there a dog ?"], "prompt": "Small orange looking stuffed animal a {} has. "}, {"index": 777, "image_id": 2358914, "entity": "dog", "caption": "A brown dogs left side front paw. ", "question": ["are there a brown dogs ?", "is there side front paw ?"], "prompt": "A brown {}s left side front paw. "}, {"index": 778, "image_id": 2358914, "entity": "dog", "caption": "A dogs left ear. ", "question": ["are there a dogs ?", "is there ear ?"], "prompt": "A {}s left ear. "}, {"index": 779, "image_id": 2358486, "entity": "dog", "caption": "dog is leaning over railing", "question": ["is there dog ?"], "prompt": "{} is leaning over railing"}, {"index": 780, "image_id": 2358453, "entity": "dog", "caption": "eye of dog is close", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is close"}, {"index": 781, "image_id": 2357732, "entity": "dog", "caption": "dog has a long ear", "question": ["is there dog ?", "is there a long ear ?"], "prompt": "{} has a long ear"}, {"index": 782, "image_id": 2357732, "entity": "dog", "caption": "the dog's head is on the blanket", "question": ["is there the dog's head ?", "is there the blanket ?"], "prompt": "the {}'s head is on the blanket"}, {"index": 783, "image_id": 2357732, "entity": "dog", "caption": "the dog has on a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has on a red collar"}, {"index": 784, "image_id": 2357693, "entity": "dog", "caption": "dog has brown patch on eye", "question": ["is there dog ?", "is there brown patch ?", "is there eye ?"], "prompt": "{} has brown patch on eye"}, {"index": 785, "image_id": 2357667, "entity": "dog", "caption": "the dog is wearing a tie", "question": ["is there the dog ?", "is there a tie ?"], "prompt": "the {} is wearing a tie"}, {"index": 786, "image_id": 2357667, "entity": "dog", "caption": "the dog is lying on the arm of a leather chair", "question": ["is there the dog ?", "is there the arm ?", "is there a leather chair ?"], "prompt": "the {} is lying on the arm of a leather chair"}, {"index": 787, "image_id": 2357667, "entity": "dog", "caption": "the dog has bulgy eyes", "question": ["is there the dog ?", "are there bulgy eyes ?"], "prompt": "the {} has bulgy eyes"}, {"index": 788, "image_id": 2357667, "entity": "dog", "caption": "the dog has dark brown ears", "question": ["is there the dog ?", "are there dark brown ears ?"], "prompt": "the {} has dark brown ears"}, {"index": 789, "image_id": 2356804, "entity": "dog", "caption": "two dogs with their tongues hanging out", "question": ["are there two dogs ?", "are there their tongues ?"], "prompt": "two {}s with their tongues hanging out"}, {"index": 790, "image_id": 2356804, "entity": "dog", "caption": "the dogs are in long grass", "question": ["are there the dogs ?", "is there long grass ?"], "prompt": "the {}s are in long grass"}, {"index": 791, "image_id": 2356762, "entity": "dog", "caption": "This is a dog trying to catch an apple.", "question": ["is there a dog ?", "is there an apple ?"], "prompt": "This is a {} trying to catch an apple."}, {"index": 792, "image_id": 2356762, "entity": "dog", "caption": "The dog has only a few teeth.", "question": ["is there the dog ?", "are there only a few teeth ?"], "prompt": "The {} has only a few teeth."}, {"index": 793, "image_id": 2356701, "entity": "dog", "caption": "the dog's nose is thru the hole", "question": ["is there the dog's nose ?", "is there the hole ?"], "prompt": "the {}'s nose is thru the hole"}, {"index": 794, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck", "question": ["are there the dogs ?"], "prompt": "the {}s head is stuck"}, {"index": 795, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck in the wheel", "question": ["are there the dogs ?", "is there the wheel ?"], "prompt": "the {}s head is stuck in the wheel"}, {"index": 796, "image_id": 2356554, "entity": "dog", "caption": "dog wears black glasses", "question": ["is there dog ?", "are there black glasses ?"], "prompt": "{} wears black glasses"}, {"index": 797, "image_id": 2356554, "entity": "dog", "caption": "dog wears black jacket", "question": ["is there dog ?", "is there black jacket ?"], "prompt": "{} wears black jacket"}, {"index": 798, "image_id": 2356554, "entity": "dog", "caption": "dog is near motorcycle", "question": ["is there dog ?", "is there motorcycle ?"], "prompt": "{} is near motorcycle"}, {"index": 799, "image_id": 2356554, "entity": "dog", "caption": "the dog has sunglasses ", "question": ["is there the dog ?", "are there sunglasses ?"], "prompt": "the {} has sunglasses "}, {"index": 800, "image_id": 2356554, "entity": "dog", "caption": "the dog is on the bike ", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is on the bike "}, {"index": 801, "image_id": 2356554, "entity": "dog", "caption": "This dog is wearing sunglasses.", "question": ["is there this dog ?", "are there sunglasses ?"], "prompt": "This {} is wearing sunglasses."}, {"index": 802, "image_id": 2356554, "entity": "dog", "caption": "dog has leash on", "question": ["is there dog ?"], "prompt": "{} has leash on"}, {"index": 803, "image_id": 2356554, "entity": "dog", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "{} is sitting in side car"}, {"index": 804, "image_id": 2356153, "entity": "dog", "caption": "blue dog bone shaped tag", "question": ["is there blue dog bone shaped tag ?"], "prompt": "blue {} bone shaped tag"}, {"index": 805, "image_id": 2356153, "entity": "dog", "caption": "dog is wearing a red collar", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} is wearing a red collar"}, {"index": 806, "image_id": 2356153, "entity": "dog", "caption": "dog is walking on the dirt", "question": ["is there dog ?", "is there the dirt ?"], "prompt": "{} is walking on the dirt"}, {"index": 807, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} is wearing goggles"}, {"index": 808, "image_id": 2355985, "entity": "dog", "caption": "The dog is on a motorcycle", "question": ["is there the dog ?", "is there a motorcycle ?"], "prompt": "The {} is on a motorcycle"}, {"index": 809, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing a leather jacket", "question": ["is there the dog ?", "is there a leather jacket ?"], "prompt": "The {} is wearing a leather jacket"}, {"index": 810, "image_id": 2355985, "entity": "dog", "caption": "the nose is black on the dog ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose is black on the {} "}, {"index": 811, "image_id": 2355964, "entity": "dog", "caption": "dog ears is pink inside ", "question": ["are there dog ears ?"], "prompt": "{} ears is pink inside "}, {"index": 812, "image_id": 2355964, "entity": "dog", "caption": "dog has black nose ", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose "}, {"index": 813, "image_id": 2355944, "entity": "dog", "caption": "The dog is wearing a color", "question": ["is there the dog ?", "is there a color ?"], "prompt": "The {} is wearing a color"}, {"index": 814, "image_id": 2355865, "entity": "dog", "caption": "it is the eye of the dog ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "it is the eye of the {} "}, {"index": 815, "image_id": 2355519, "entity": "dog", "caption": "The dog has a frisbee in its mouth", "question": ["is there the dog ?", "is there a frisbee ?", "is there its mouth ?"], "prompt": "The {} has a frisbee in its mouth"}, {"index": 816, "image_id": 2355511, "entity": "dog", "caption": "a black dog right ear ", "question": ["is there a black dog right ear ?"], "prompt": "a black {} right ear "}, {"index": 817, "image_id": 2355511, "entity": "dog", "caption": "A black dog ready to get a bath", "question": ["is there a black dog ?", "is there a bath ?"], "prompt": "A black {} ready to get a bath"}, {"index": 818, "image_id": 2355409, "entity": "dog", "caption": "a dog catchign a freesbee", "question": ["is there a dog ?", "is there a freesbee ?"], "prompt": "a {} catchign a freesbee"}, {"index": 819, "image_id": 2355409, "entity": "dog", "caption": "a white dog catchign a black freesbee", "question": ["is there a white dog ?"], "prompt": "a white {} catchign a black freesbee"}, {"index": 820, "image_id": 2355256, "entity": "dog", "caption": "dog is brown and white", "question": ["is there dog ?"], "prompt": "{} is brown and white"}, {"index": 821, "image_id": 2354835, "entity": "dog", "caption": "Brown dog's head sticking out of car window.", "question": ["is there brown dog's head ?", "is there car window ?"], "prompt": "Brown {}'s head sticking out of car window."}, {"index": 822, "image_id": 2354515, "entity": "dog", "caption": "bike is behind the dog", "question": ["is there bike ?", "is there the dog ?"], "prompt": "bike is behind the {}"}, {"index": 823, "image_id": 2354515, "entity": "dog", "caption": "dog has tongue out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue out"}, {"index": 824, "image_id": 2354515, "entity": "dog", "caption": "dog is on the street", "question": ["is there dog ?", "is there the street ?"], "prompt": "{} is on the street"}, {"index": 825, "image_id": 2354497, "entity": "dog", "caption": "This dog has a donut in his mouth", "question": ["is there this dog ?", "is there a donut ?", "is there his mouth ?"], "prompt": "This {} has a donut in his mouth"}, {"index": 826, "image_id": 2354497, "entity": "dog", "caption": "The dog is wearing a red color.", "question": ["is there the dog ?", "is there a red color ?"], "prompt": "The {} is wearing a red color."}, {"index": 827, "image_id": 2354497, "entity": "dog", "caption": "The dog is sitting on the grass.", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "The {} is sitting on the grass."}, {"index": 828, "image_id": 2354497, "entity": "dog", "caption": "The dog has two spots on his face.", "question": ["is there the dog ?", "are there two spots ?", "is there his face ?"], "prompt": "The {} has two spots on his face."}, {"index": 829, "image_id": 2354494, "entity": "dog", "caption": "The dog nose is black", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black"}, {"index": 830, "image_id": 2354494, "entity": "dog", "caption": "tan/yellow dog laying across young girls lap", "question": ["is there tan/yellow dog ?", "are there young girls ?"], "prompt": "tan/yellow {} laying across young girls lap"}, {"index": 831, "image_id": 2354494, "entity": "dog", "caption": "dog is wearing a red collar around neck", "question": ["is there dog ?", "is there a red collar ?", "is there neck ?"], "prompt": "{} is wearing a red collar around neck"}, {"index": 832, "image_id": 2354494, "entity": "dog", "caption": "Woman laying on the couch with dog.", "question": ["is there woman ?", "is there the couch ?", "is there dog ?"], "prompt": "Woman laying on the couch with {}."}, {"index": 833, "image_id": 2354353, "entity": "dog", "caption": "The dog's head is on the keyboard", "question": ["is there the dog's head ?", "is there the keyboard ?"], "prompt": "The {}'s head is on the keyboard"}, {"index": 834, "image_id": 2354353, "entity": "dog", "caption": "The dog is wearing a blue and yellow collar", "question": ["is there the dog ?", "is there a blue and yellow collar ?"], "prompt": "The {} is wearing a blue and yellow collar"}, {"index": 835, "image_id": 2354353, "entity": "dog", "caption": "dog is on the keys", "question": ["is there dog ?", "are there the keys ?"], "prompt": "{} is on the keys"}, {"index": 836, "image_id": 2354353, "entity": "dog", "caption": "the dog has yellow and blue flowers", "question": ["is there the dog ?", "are there yellow and blue flowers ?"], "prompt": "the {} has yellow and blue flowers"}, {"index": 837, "image_id": 2353969, "entity": "dog", "caption": "dog has white paw", "question": ["is there dog ?"], "prompt": "{} has white paw"}, {"index": 838, "image_id": 2353969, "entity": "dog", "caption": "dog is laying down on rug", "question": ["is there dog ?", "is there rug ?"], "prompt": "{} is laying down on rug"}, {"index": 839, "image_id": 2353558, "entity": "dog", "caption": "the dog's eye is yellowish", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is yellowish"}, {"index": 840, "image_id": 2353558, "entity": "dog", "caption": "The dog has long ears", "question": ["is there the dog ?", "are there long ears ?"], "prompt": "The {} has long ears"}, {"index": 841, "image_id": 2353558, "entity": "dog", "caption": "The dog is wide eyed", "question": ["is there the dog ?"], "prompt": "The {} is wide eyed"}, {"index": 842, "image_id": 2353558, "entity": "dog", "caption": "The dog's nose is very black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is very black"}, {"index": 843, "image_id": 2353558, "entity": "dog", "caption": "The dog is wearing a bowl", "question": ["is there the dog ?", "is there a bowl ?"], "prompt": "The {} is wearing a bowl"}, {"index": 844, "image_id": 2353404, "entity": "dog", "caption": "the plastic buckle on the dog", "question": ["is there the plastic buckle ?", "is there the dog ?"], "prompt": "the plastic buckle on the {}"}, {"index": 845, "image_id": 2353404, "entity": "dog", "caption": "the dog walking and connected to a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} walking and connected to a chain"}, {"index": 846, "image_id": 2353398, "entity": "dog", "caption": "green felt the dog is standing on", "question": ["is there the dog ?"], "prompt": "green felt the {} is standing on"}, {"index": 847, "image_id": 2353062, "entity": "dog", "caption": "the dog is on a sofa", "question": ["is there the dog ?", "is there a sofa ?"], "prompt": "the {} is on a sofa"}, {"index": 848, "image_id": 2353062, "entity": "dog", "caption": "dog's eyes are amber", "question": ["are there dog's eyes ?", "is there amber ?"], "prompt": "{}'s eyes are amber"}, {"index": 849, "image_id": 2353062, "entity": "dog", "caption": "dog is laying on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} is laying on a couch"}, {"index": 850, "image_id": 2352757, "entity": "dog", "caption": "the dog is wearing a jacket", "question": ["is there the dog ?", "is there a jacket ?"], "prompt": "the {} is wearing a jacket"}, {"index": 851, "image_id": 2352757, "entity": "dog", "caption": "the dog has a black tail", "question": ["is there the dog ?", "is there a black tail ?"], "prompt": "the {} has a black tail"}, {"index": 852, "image_id": 2352502, "entity": "dog", "caption": "The dog is biting the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is biting the frisbee."}, {"index": 853, "image_id": 2352502, "entity": "dog", "caption": "The dog is on the beach.", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "The {} is on the beach."}, {"index": 854, "image_id": 2351971, "entity": "dog", "caption": "legs and paws of dog that allow dog to walk with ", "question": ["are there legs ?", "are there paws ?", "is there dog ?", "is there dog ?"], "prompt": "legs and paws of {} that allow {} to walk with "}, {"index": 855, "image_id": 2351950, "entity": "dog", "caption": "The dog is holding a bowl in his mouth", "question": ["is there the dog ?", "is there a bowl ?", "is there his mouth ?"], "prompt": "The {} is holding a bowl in his mouth"}, {"index": 856, "image_id": 2351950, "entity": "dog", "caption": "The dog's ear is hanging downwards", "question": ["is there the dog's ear ?"], "prompt": "The {}'s ear is hanging downwards"}, {"index": 857, "image_id": 2351950, "entity": "dog", "caption": "dog has light brown face", "question": ["is there dog ?", "is there light brown face ?"], "prompt": "{} has light brown face"}, {"index": 858, "image_id": 2351950, "entity": "dog", "caption": "dog is holding bowl", "question": ["is there dog ?", "is there bowl ?"], "prompt": "{} is holding bowl"}, {"index": 859, "image_id": 2351811, "entity": "dog", "caption": "the dogs head ", "question": ["are there the dogs ?"], "prompt": "the {}s head "}, {"index": 860, "image_id": 2351083, "entity": "dog", "caption": "dog holds a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} holds a cap"}, {"index": 861, "image_id": 2351083, "entity": "dog", "caption": "the dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black"}, {"index": 862, "image_id": 2350951, "entity": "dog", "caption": "the mouth of dog is open", "question": ["is there the mouth ?", "is there dog ?"], "prompt": "the mouth of {} is open"}, {"index": 863, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a Harley Davidson bandanna", "question": ["is there the unfortunate dog ?"], "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"}, {"index": 864, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a biker headband", "question": ["is there the unfortunate dog ?", "is there a biker headband ?"], "prompt": "the unfortunate {} is wearing a biker headband"}, {"index": 865, "image_id": 2350646, "entity": "dog", "caption": "the dog has cropped ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has cropped ears"}, {"index": 866, "image_id": 2350609, "entity": "dog", "caption": "lot where dog and woman stand", "question": ["is there lot ?", "is there dog ?", "is there woman ?"], "prompt": "lot where {} and woman stand"}, {"index": 867, "image_id": 2350606, "entity": "dog", "caption": "the dog is on a white platform", "question": ["is there the dog ?", "is there a white platform ?"], "prompt": "the {} is on a white platform"}, {"index": 868, "image_id": 2349745, "entity": "dog", "caption": "legs of dog running", "question": ["are there legs ?", "is there dog ?"], "prompt": "legs of {} running"}, {"index": 869, "image_id": 2349745, "entity": "dog", "caption": "open mouth of dog running", "question": ["is there open mouth ?", "is there dog ?"], "prompt": "open mouth of {} running"}, {"index": 870, "image_id": 2349745, "entity": "dog", "caption": "the dog is white with black spots", "question": ["is there the dog ?", "are there black spots ?"], "prompt": "the {} is white with black spots"}, {"index": 871, "image_id": 2349745, "entity": "dog", "caption": "the dog is running with his mouth open", "question": ["is there the dog ?", "is there his mouth ?"], "prompt": "the {} is running with his mouth open"}, {"index": 872, "image_id": 2349745, "entity": "dog", "caption": "the dog has a black spot over his eye", "question": ["is there the dog ?", "is there a black spot ?", "is there his eye ?"], "prompt": "the {} has a black spot over his eye"}, {"index": 873, "image_id": 2349745, "entity": "dog", "caption": "the dirt is flying from the dog's paws", "question": ["is there the dirt ?", "are there the dog's paws ?"], "prompt": "the dirt is flying from the {}'s paws"}, {"index": 874, "image_id": 2349745, "entity": "dog", "caption": "the dog's paws are touching from running", "question": ["are there the dog's paws ?"], "prompt": "the {}'s paws are touching from running"}, {"index": 875, "image_id": 2349548, "entity": "dog", "caption": "The dogs ear is brown.", "question": ["are there the dogs ?"], "prompt": "The {}s ear is brown."}, {"index": 876, "image_id": 2349547, "entity": "dog", "caption": "The dog has a pinkish nose.", "question": ["is there the dog ?", "is there a pinkish nose ?"], "prompt": "The {} has a pinkish nose."}, {"index": 877, "image_id": 2349421, "entity": "dog", "caption": "The dog is sitting on the chair ", "question": ["is there the dog ?", "is there the chair ?"], "prompt": "The {} is sitting on the chair "}, {"index": 878, "image_id": 2349268, "entity": "dog", "caption": "the dog has long nails", "question": ["is there the dog ?", "are there long nails ?"], "prompt": "the {} has long nails"}, {"index": 879, "image_id": 2349268, "entity": "dog", "caption": "the dog lays with toy", "question": ["is there the dog ?", "is there toy ?"], "prompt": "the {} lays with toy"}, {"index": 880, "image_id": 2348690, "entity": "dog", "caption": "the dog is chewing up a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is chewing up a stuffed animal"}, {"index": 881, "image_id": 2348554, "entity": "dog", "caption": "dog with hind legs stretched out", "question": ["is there dog ?", "are there hind legs ?"], "prompt": "{} with hind legs stretched out"}, {"index": 882, "image_id": 2348554, "entity": "dog", "caption": "A dog is laying on the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "A {} is laying on the bed"}, {"index": 883, "image_id": 2348554, "entity": "dog", "caption": "The dog has white on her paws", "question": ["is there the dog ?", "are there her paws ?"], "prompt": "The {} has white on her paws"}, {"index": 884, "image_id": 2348407, "entity": "dog", "caption": "tan dog's face as he holds the frisbee", "question": ["is there tan dog's face ?", "is there the frisbee ?"], "prompt": "tan {}'s face as he holds the frisbee"}, {"index": 885, "image_id": 2348407, "entity": "dog", "caption": "dog's eye looking up past the frisbee", "question": ["is there dog's eye ?", "is there the frisbee ?"], "prompt": "{}'s eye looking up past the frisbee"}, {"index": 886, "image_id": 2348407, "entity": "dog", "caption": "dog's ear hanging down as he chews the frisbee", "question": ["is there dog's ear ?", "is there the frisbee ?"], "prompt": "{}'s ear hanging down as he chews the frisbee"}, {"index": 887, "image_id": 2347998, "entity": "dog", "caption": "dog is on the newspaper", "question": ["is there dog ?", "is there the newspaper ?"], "prompt": "{} is on the newspaper"}, {"index": 888, "image_id": 2347801, "entity": "dog", "caption": "a dog tag shaped like a bone ", "question": ["is there a dog tag ?", "is there a bone ?"], "prompt": "a {} tag shaped like a bone "}, {"index": 889, "image_id": 2347801, "entity": "dog", "caption": "The dog is inside a room", "question": ["is there the dog ?", "is there a room ?"], "prompt": "The {} is inside a room"}, {"index": 890, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a television", "question": ["is there the dog ?", "is there a television ?"], "prompt": "The {} is next to a television"}, {"index": 891, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The {} is next to a laptop computer"}, {"index": 892, "image_id": 2347801, "entity": "dog", "caption": "The dog is on a table", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table"}, {"index": 893, "image_id": 2347591, "entity": "dog", "caption": "A woman who is sitting with a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman who is sitting with a {}"}, {"index": 894, "image_id": 2347591, "entity": "dog", "caption": "Woman is holding the dog", "question": ["is there woman ?", "is there the dog ?"], "prompt": "Woman is holding the {}"}, {"index": 895, "image_id": 2347481, "entity": "dog", "caption": "a dog with a disc on it's face", "question": ["is there a dog ?", "is there a disc ?"], "prompt": "a {} with a disc on it's face"}, {"index": 896, "image_id": 2347481, "entity": "dog", "caption": "dog has black and white tail", "question": ["is there dog ?", "is there black and white tail ?"], "prompt": "{} has black and white tail"}, {"index": 897, "image_id": 2347481, "entity": "dog", "caption": "dog has white neck", "question": ["is there dog ?", "is there white neck ?"], "prompt": "{} has white neck"}, {"index": 898, "image_id": 2347481, "entity": "dog", "caption": "The dogs tail", "question": ["are there the dogs ?"], "prompt": "The {}s tail"}, {"index": 899, "image_id": 2347481, "entity": "dog", "caption": "The ears that belong to the dog", "question": ["are there the ears ?", "is there the dog ?"], "prompt": "The ears that belong to the {}"}, {"index": 900, "image_id": 2347481, "entity": "dog", "caption": "A dog that is standing in the dirt", "question": ["is there a dog ?", "is there the dirt ?"], "prompt": "A {} that is standing in the dirt"}, {"index": 901, "image_id": 2347473, "entity": "dog", "caption": "the brown patches on the dogs face", "question": ["are there the brown patches ?", "are there the dogs ?"], "prompt": "the brown patches on the {}s face"}, {"index": 902, "image_id": 2347340, "entity": "dog", "caption": "dog's dark eyes are open", "question": ["are there dog's dark eyes ?"], "prompt": "{}'s dark eyes are open"}, {"index": 903, "image_id": 2347340, "entity": "dog", "caption": "the dog is on a chair", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "the {} is on a chair"}, {"index": 904, "image_id": 2347027, "entity": "dog", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car"}, {"index": 905, "image_id": 2347027, "entity": "dog", "caption": "dog has tongue hanging out ", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue hanging out "}, {"index": 906, "image_id": 2347027, "entity": "dog", "caption": "The dog have waggy ear.", "question": ["is there the dog ?"], "prompt": "The {} have waggy ear."}, {"index": 907, "image_id": 2346970, "entity": "dog", "caption": "The dog is resting his head on the couch.", "question": ["is there the dog ?", "is there his head ?", "is there the couch ?"], "prompt": "The {} is resting his head on the couch."}, {"index": 908, "image_id": 2346970, "entity": "dog", "caption": "The dog is wearing a blue collar.", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} is wearing a blue collar."}, {"index": 909, "image_id": 2346970, "entity": "dog", "caption": "The dog's eye is open.", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open."}, {"index": 910, "image_id": 2346970, "entity": "dog", "caption": "The dog's fur is very short.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is very short."}, {"index": 911, "image_id": 2346970, "entity": "dog", "caption": "The dog is sitting on top of white sheet.", "question": ["is there the dog ?", "is there top ?", "is there white sheet ?"], "prompt": "The {} is sitting on top of white sheet."}, {"index": 912, "image_id": 2346970, "entity": "dog", "caption": "the dogs neck is long ", "question": ["are there the dogs neck ?"], "prompt": "the {}s neck is long "}, {"index": 913, "image_id": 2346869, "entity": "dog", "caption": "dog is catching frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} is catching frisbee"}, {"index": 914, "image_id": 2346869, "entity": "dog", "caption": "dog has white frisbee in mouth", "question": ["is there dog ?", "is there white frisbee ?", "is there mouth ?"], "prompt": "{} has white frisbee in mouth"}, {"index": 915, "image_id": 2346869, "entity": "dog", "caption": "tree is next to dog", "question": ["is there tree ?", "is there dog ?"], "prompt": "tree is next to {}"}, {"index": 916, "image_id": 2346869, "entity": "dog", "caption": "man in cap leaning forward behind dog", "question": ["is there man ?", "is there cap ?", "is there dog ?"], "prompt": "man in cap leaning forward behind {}"}, {"index": 917, "image_id": 2346765, "entity": "dog", "caption": "neck of dog is white", "question": ["is there neck ?", "is there dog ?"], "prompt": "neck of {} is white"}, {"index": 918, "image_id": 2346434, "entity": "dog", "caption": "the dog's eyes are black", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are black"}, {"index": 919, "image_id": 2346434, "entity": "dog", "caption": "black pads and nails are on the dog's paws", "question": ["are there black pads ?", "are there nails ?", "are there the dog's paws ?"], "prompt": "black pads and nails are on the {}'s paws"}, {"index": 920, "image_id": 2346247, "entity": "dog", "caption": "Brown ear on the dog.", "question": ["is there brown ear ?", "is there the dog ?"], "prompt": "Brown ear on the {}."}, {"index": 921, "image_id": 2346086, "entity": "dog", "caption": "the black dog has a sad face", "question": ["is there the black dog ?", "is there a sad face ?"], "prompt": "the black {} has a sad face"}, {"index": 922, "image_id": 2346086, "entity": "dog", "caption": "A dog is near a bag.", "question": ["is there a dog ?", "is there a bag ?"], "prompt": "A {} is near a bag."}, {"index": 923, "image_id": 2346086, "entity": "dog", "caption": "The dog's mouth is closed.", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is closed."}, {"index": 924, "image_id": 2346086, "entity": "dog", "caption": "The dog is wearing a crocheted hat.", "question": ["is there the dog ?", "is there a crocheted hat ?"], "prompt": "The {} is wearing a crocheted hat."}, {"index": 925, "image_id": 2346086, "entity": "dog", "caption": "The dog has an ear.", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "The {} has an ear."}, {"index": 926, "image_id": 2346086, "entity": "dog", "caption": "The dog has an eye.", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "The {} has an eye."}, {"index": 927, "image_id": 2345642, "entity": "dog", "caption": "head of dog bowed down ", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} bowed down "}, {"index": 928, "image_id": 2345642, "entity": "dog", "caption": "green blanket the dog is laying on", "question": ["is there green blanket ?", "is there the dog ?"], "prompt": "green blanket the {} is laying on"}, {"index": 929, "image_id": 2345272, "entity": "dog", "caption": "the dogs tail ", "question": ["are there the dogs ?"], "prompt": "the {}s tail "}, {"index": 930, "image_id": 2345272, "entity": "dog", "caption": "a black dog looks onward with his tongue hanging out", "question": ["is there a black dog ?", "is there his tongue ?"], "prompt": "a black {} looks onward with his tongue hanging out"}, {"index": 931, "image_id": 2345272, "entity": "dog", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the boat holding a {} with a leash"}, {"index": 932, "image_id": 2345231, "entity": "dog", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the {}s paws on on the computer"}, {"index": 933, "image_id": 2345068, "entity": "dog", "caption": "Extra pillow for the dog to be comfortable", "question": ["is there extra pillow ?", "is there the dog ?"], "prompt": "Extra pillow for the {} to be comfortable"}, {"index": 934, "image_id": 2345068, "entity": "dog", "caption": "Teddy bear for the dog", "question": ["is there the dog ?"], "prompt": "Teddy bear for the {}"}, {"index": 935, "image_id": 2345068, "entity": "dog", "caption": "a dog curled up on its bed ", "question": ["is there a dog ?", "is there its bed ?"], "prompt": "a {} curled up on its bed "}, {"index": 936, "image_id": 2344922, "entity": "dog", "caption": "This dog has a very red collar", "question": ["is there this dog ?", "is there a very red collar ?"], "prompt": "This {} has a very red collar"}, {"index": 937, "image_id": 2344729, "entity": "dog", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the {} is in the car"}, {"index": 938, "image_id": 2344729, "entity": "dog", "caption": "this is the dogs leash", "question": ["are there the dogs ?"], "prompt": "this is the {}s leash"}, {"index": 939, "image_id": 2344635, "entity": "dog", "caption": "The dog is wearing a tag.", "question": ["is there the dog ?", "is there a tag ?"], "prompt": "The {} is wearing a tag."}, {"index": 940, "image_id": 2344635, "entity": "dog", "caption": "dog is wearing a tag", "question": ["is there dog ?", "is there a tag ?"], "prompt": "{} is wearing a tag"}, {"index": 941, "image_id": 2344635, "entity": "dog", "caption": "dogs eye looks white ", "question": ["are there dogs ?"], "prompt": "{}s eye looks white "}, {"index": 942, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is black.", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black."}, {"index": 943, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is small", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is small"}, {"index": 944, "image_id": 2344526, "entity": "dog", "caption": "The dogs fur is white.", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is white."}, {"index": 945, "image_id": 2344358, "entity": "dog", "caption": "this dog is under a white blanket", "question": ["is there this dog ?", "is there a white blanket ?"], "prompt": "this {} is under a white blanket"}, {"index": 946, "image_id": 2344283, "entity": "dog", "caption": "the dog is at the beach", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "the {} is at the beach"}, {"index": 947, "image_id": 2344283, "entity": "dog", "caption": "the dog is sitting on a towel", "question": ["is there the dog ?", "is there a towel ?"], "prompt": "the {} is sitting on a towel"}, {"index": 948, "image_id": 2344283, "entity": "dog", "caption": "a bag is by the dog", "question": ["is there a bag ?", "is there the dog ?"], "prompt": "a bag is by the {}"}, {"index": 949, "image_id": 2344283, "entity": "dog", "caption": "Brown dog is on a towel", "question": ["is there brown dog ?", "is there a towel ?"], "prompt": "Brown {} is on a towel"}, {"index": 950, "image_id": 2344228, "entity": "dog", "caption": "the dog has a brown part", "question": ["is there the dog ?", "is there a brown part ?"], "prompt": "the {} has a brown part"}, {"index": 951, "image_id": 2344228, "entity": "dog", "caption": "the dog has a black spot", "question": ["is there the dog ?", "is there a black spot ?"], "prompt": "the {} has a black spot"}, {"index": 952, "image_id": 2343539, "entity": "dog", "caption": "dog's tongue is hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is hanging out"}, {"index": 953, "image_id": 2343539, "entity": "dog", "caption": "dog's ears are back ", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are back "}, {"index": 954, "image_id": 2343194, "entity": "dog", "caption": "the dog has three balls", "question": ["is there the dog ?", "are there three balls ?"], "prompt": "the {} has three balls"}, {"index": 955, "image_id": 2343194, "entity": "dog", "caption": "the dog has balls in his mouth", "question": ["is there the dog ?", "are there balls ?", "is there his mouth ?"], "prompt": "the {} has balls in his mouth"}, {"index": 956, "image_id": 2343194, "entity": "dog", "caption": "the dog has a spotted nose", "question": ["is there the dog ?", "is there a spotted nose ?"], "prompt": "the {} has a spotted nose"}, {"index": 957, "image_id": 2343149, "entity": "dog", "caption": "The dog is splashing water", "question": ["is there the dog ?", "is there water ?"], "prompt": "The {} is splashing water"}, {"index": 958, "image_id": 2343149, "entity": "dog", "caption": "The dog's teeth are visible", "question": ["are there the dog's teeth ?"], "prompt": "The {}'s teeth are visible"}, {"index": 959, "image_id": 2343038, "entity": "dog", "caption": "dog with eyes closed", "question": ["is there dog ?", "are there eyes ?"], "prompt": "{} with eyes closed"}, {"index": 960, "image_id": 2342562, "entity": "dog", "caption": "dog mout to grab frisbees and eat food and drink water ", "question": ["is there dog mout ?", "are there frisbees ?", "is there food ?", "is there water ?"], "prompt": "{} mout to grab frisbees and eat food and drink water "}, {"index": 961, "image_id": 2342562, "entity": "dog", "caption": "The dog has a black ear.", "question": ["is there the dog ?", "is there a black ear ?"], "prompt": "The {} has a black ear."}, {"index": 962, "image_id": 2341045, "entity": "dog", "caption": "this dog and teddy bear are posing", "question": ["is there this dog ?", "is there bear ?"], "prompt": "this {} and teddy bear are posing"}, {"index": 963, "image_id": 2341045, "entity": "dog", "caption": "The dog is resting on white shaggy carpet.", "question": ["is there the dog ?", "is there white shaggy carpet ?"], "prompt": "The {} is resting on white shaggy carpet."}, {"index": 964, "image_id": 2340940, "entity": "dog", "caption": "The banana is inside the dog's mouth.", "question": ["is there the banana ?", "is there the dog's mouth ?"], "prompt": "The banana is inside the {}'s mouth."}, {"index": 965, "image_id": 2340940, "entity": "dog", "caption": "The little dog is sitting on top of the white blanket.", "question": ["is there the little dog ?", "is there top ?", "is there the white blanket ?"], "prompt": "The little {} is sitting on top of the white blanket."}, {"index": 966, "image_id": 2340940, "entity": "dog", "caption": "The dog has a pink collar.", "question": ["is there the dog ?", "is there a pink collar ?"], "prompt": "The {} has a pink collar."}, {"index": 967, "image_id": 2340940, "entity": "dog", "caption": "The dog is wearing a white collar.", "question": ["is there the dog ?", "is there a white collar ?"], "prompt": "The {} is wearing a white collar."}, {"index": 968, "image_id": 2340686, "entity": "dog", "caption": "The dog face is partially white.", "question": ["is there the dog face ?"], "prompt": "The {} face is partially white."}, {"index": 969, "image_id": 2339641, "entity": "dog", "caption": "dog has white spot on chest", "question": ["is there dog ?", "is there white spot ?", "is there chest ?"], "prompt": "{} has white spot on chest"}, {"index": 970, "image_id": 2339641, "entity": "dog", "caption": "dog is on a motorcycle", "question": ["is there dog ?", "is there a motorcycle ?"], "prompt": "{} is on a motorcycle"}, {"index": 971, "image_id": 2339617, "entity": "dog", "caption": "The dog sits on a chair. ", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} sits on a chair. "}, {"index": 972, "image_id": 2339617, "entity": "dog", "caption": "A blanket that the dog sits on.", "question": ["is there a blanket ?", "is there the dog ?"], "prompt": "A blanket that the {} sits on."}, {"index": 973, "image_id": 2339617, "entity": "dog", "caption": "dog has black back", "question": ["is there dog ?"], "prompt": "{} has black back"}, {"index": 974, "image_id": 2339511, "entity": "dog", "caption": "The cat is next to the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is next to the {}."}, {"index": 975, "image_id": 2339511, "entity": "dog", "caption": "The paw on the dog is white.", "question": ["is there the paw ?", "is there the dog ?"], "prompt": "The paw on the {} is white."}, {"index": 976, "image_id": 2339511, "entity": "dog", "caption": "brown striped cat lays next to dog", "question": ["is there brown striped cat ?", "is there dog ?"], "prompt": "brown striped cat lays next to {}"}, {"index": 977, "image_id": 2339511, "entity": "dog", "caption": "white front left paw on dog", "question": ["is there white front ?", "is there paw ?", "is there dog ?"], "prompt": "white front left paw on {}"}, {"index": 978, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around nose", "question": ["is there dog ?", "is there white fur ?", "is there nose ?"], "prompt": "{} has white fur around nose"}, {"index": 979, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around paws", "question": ["is there dog ?", "is there white fur ?", "are there paws ?"], "prompt": "{} has white fur around paws"}, {"index": 980, "image_id": 2339238, "entity": "dog", "caption": "dog has black ear", "question": ["is there dog ?", "is there black ear ?"], "prompt": "{} has black ear"}, {"index": 981, "image_id": 2339238, "entity": "dog", "caption": "dog has black eye", "question": ["is there dog ?", "is there black eye ?"], "prompt": "{} has black eye"}, {"index": 982, "image_id": 2339238, "entity": "dog", "caption": "dog has a white tooth", "question": ["is there dog ?", "is there a white tooth ?"], "prompt": "{} has a white tooth"}, {"index": 983, "image_id": 2337950, "entity": "dog", "caption": "couch man and dog are sitting on", "question": ["is there couch man ?", "is there dog ?"], "prompt": "couch man and {} are sitting on"}, {"index": 984, "image_id": 2337205, "entity": "dog", "caption": "the dog's eye is open ", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open "}, {"index": 985, "image_id": 2336811, "entity": "dog", "caption": "Front left paw of the dog", "question": ["is there front left paw ?", "is there the dog ?"], "prompt": "Front left paw of the {}"}, {"index": 986, "image_id": 2336773, "entity": "dog", "caption": "Small dogs right eye", "question": ["are there small dogs ?"], "prompt": "Small {}s right eye"}, {"index": 987, "image_id": 2336773, "entity": "dog", "caption": "Small dogs left eye", "question": ["are there small dogs ?", "is there eye ?"], "prompt": "Small {}s left eye"}, {"index": 988, "image_id": 2336693, "entity": "dog", "caption": "the dog is carrying a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is carrying a frisbee"}, {"index": 989, "image_id": 2336693, "entity": "dog", "caption": "the dog's front legs are white", "question": ["are there the dog's front legs ?"], "prompt": "the {}'s front legs are white"}, {"index": 990, "image_id": 2336693, "entity": "dog", "caption": "the dog's back legs are black", "question": ["are there the dog's back legs ?"], "prompt": "the {}'s back legs are black"}, {"index": 991, "image_id": 2336693, "entity": "dog", "caption": "the dog's shadow is in the grass", "question": ["is there the dog's shadow ?", "is there the grass ?"], "prompt": "the {}'s shadow is in the grass"}, {"index": 992, "image_id": 2336402, "entity": "dog", "caption": "dog with it's head in a box", "question": ["is there dog ?", "is there head ?", "is there a box ?"], "prompt": "{} with it's head in a box"}, {"index": 993, "image_id": 2336402, "entity": "dog", "caption": "A black streak down dogs back", "question": ["is there a black streak ?"], "prompt": "A black streak down {}s back"}, {"index": 994, "image_id": 2336402, "entity": "dog", "caption": "the dogs head is in the box", "question": ["are there the dogs ?", "is there the box ?"], "prompt": "the {}s head is in the box"}, {"index": 995, "image_id": 2336257, "entity": "dog", "caption": "the dog is in water", "question": ["is there the dog ?", "is there water ?"], "prompt": "the {} is in water"}, {"index": 996, "image_id": 2336147, "entity": "dog", "caption": "Black and white dog standing on a sandy ground.", "question": ["is there black and white dog ?", "is there a sandy ground ?"], "prompt": "Black and white {} standing on a sandy ground."}, {"index": 997, "image_id": 2336147, "entity": "dog", "caption": "The dog's pink tongue sticking out.", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue sticking out."}, {"index": 998, "image_id": 2336147, "entity": "dog", "caption": "dog's face is black and white", "question": ["is there dog's face ?"], "prompt": "{}'s face is black and white"}, {"index": 999, "image_id": 2336147, "entity": "dog", "caption": "dog's tongue is sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is sticking out"}, {"index": 1000, "image_id": 2336147, "entity": "dog", "caption": "dog's paw is white", "question": ["is there dog's paw ?"], "prompt": "{}'s paw is white"}, {"index": 1001, "image_id": 2336045, "entity": "dog", "caption": "fake dog sits on bench", "question": ["is there fake dog ?", "is there bench ?"], "prompt": "fake {} sits on bench"}, {"index": 1002, "image_id": 2336045, "entity": "dog", "caption": "fake dog wears red collar", "question": ["is there fake dog ?", "is there red collar ?"], "prompt": "fake {} wears red collar"}, {"index": 1003, "image_id": 2335892, "entity": "dog", "caption": "Toy occupies leashed dog.", "question": ["is there toy ?", "is there leashed dog ?"], "prompt": "Toy occupies leashed {}."}, {"index": 1004, "image_id": 2335707, "entity": "dog", "caption": "dog has dark claws", "question": ["is there dog ?", "are there dark claws ?"], "prompt": "{} has dark claws"}, {"index": 1005, "image_id": 2335655, "entity": "dog", "caption": "Tan dog is holding toy in mouth.", "question": ["is there tan dog ?", "is there toy ?", "is there mouth ?"], "prompt": "Tan {} is holding toy in mouth."}, {"index": 1006, "image_id": 2335655, "entity": "dog", "caption": "This dog seems to have a white face", "question": ["is there this dog ?", "is there a white face ?"], "prompt": "This {} seems to have a white face"}, {"index": 1007, "image_id": 2335655, "entity": "dog", "caption": "This dog has quite a paw visible here", "question": ["is there this dog ?", "is there quite a paw ?"], "prompt": "This {} has quite a paw visible here"}, {"index": 1008, "image_id": 2335550, "entity": "dog", "caption": "dog is laying on the couch", "question": ["is there dog ?", "is there the couch ?"], "prompt": "{} is laying on the couch"}, {"index": 1009, "image_id": 2335550, "entity": "dog", "caption": "dog has fluffy dark fur", "question": ["is there dog ?", "is there fluffy dark fur ?"], "prompt": "{} has fluffy dark fur"}, {"index": 1010, "image_id": 2335487, "entity": "dog", "caption": "an ear is up on the dog", "question": ["is there an ear ?", "is there the dog ?"], "prompt": "an ear is up on the {}"}, {"index": 1011, "image_id": 2335487, "entity": "dog", "caption": "the dog is wearing a yellow coat", "question": ["is there the dog ?", "is there a yellow coat ?"], "prompt": "the {} is wearing a yellow coat"}, {"index": 1012, "image_id": 2335487, "entity": "dog", "caption": "dog's cloth is green", "question": ["is there dog's cloth ?"], "prompt": "{}'s cloth is green"}, {"index": 1013, "image_id": 2334964, "entity": "dog", "caption": "Chain connected to dog's collar.", "question": ["is there chain ?", "is there dog's collar ?"], "prompt": "Chain connected to {}'s collar."}, {"index": 1014, "image_id": 2334964, "entity": "dog", "caption": "the dog has a collar ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar "}, {"index": 1015, "image_id": 2334964, "entity": "dog", "caption": "the collar is around the dog's neck", "question": ["is there the collar ?", "is there the dog's neck ?"], "prompt": "the collar is around the {}'s neck"}, {"index": 1016, "image_id": 2334936, "entity": "dog", "caption": "dog has an eye", "question": ["is there dog ?", "is there an eye ?"], "prompt": "{} has an eye"}, {"index": 1017, "image_id": 2334611, "entity": "dog", "caption": "front left foot on dog", "question": ["is there front left foot ?", "is there dog ?"], "prompt": "front left foot on {}"}, {"index": 1018, "image_id": 2334526, "entity": "dog", "caption": "The dog nose is black.", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black."}, {"index": 1019, "image_id": 2334526, "entity": "dog", "caption": "The dog eyes on his face.", "question": ["is there the dog ?", "is there his face ?"], "prompt": "The {} eyes on his face."}, {"index": 1020, "image_id": 2334482, "entity": "dog", "caption": "This is a dog", "question": ["is there a dog ?"], "prompt": "This is a {}"}, {"index": 1021, "image_id": 2334482, "entity": "dog", "caption": "The dog is on a bench", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is on a bench"}, {"index": 1022, "image_id": 2334375, "entity": "dog", "caption": "dog nose is black", "question": ["is there dog nose ?"], "prompt": "{} nose is black"}, {"index": 1023, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is black.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is black."}, {"index": 1024, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is round.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is round."}, {"index": 1025, "image_id": 2334355, "entity": "dog", "caption": "The dogs left ear is black.", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "The {}s left ear is black."}, {"index": 1026, "image_id": 2334355, "entity": "dog", "caption": "The dogs right eye is black.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is black."}, {"index": 1027, "image_id": 2333902, "entity": "dog", "caption": "The dog is laying on the back of the couch", "question": ["is there the dog ?", "is there the back ?", "is there the couch ?"], "prompt": "The {} is laying on the back of the couch"}, {"index": 1028, "image_id": 2333902, "entity": "dog", "caption": "The dogs tongue is sticking out of his mouth", "question": ["are there the dogs tongue ?", "is there his mouth ?"], "prompt": "The {}s tongue is sticking out of his mouth"}, {"index": 1029, "image_id": 2333902, "entity": "dog", "caption": "dog has a nose", "question": ["is there dog ?", "is there a nose ?"], "prompt": "{} has a nose"}, {"index": 1030, "image_id": 2333902, "entity": "dog", "caption": "dog has an ear", "question": ["is there dog ?", "is there an ear ?"], "prompt": "{} has an ear"}, {"index": 1031, "image_id": 2333902, "entity": "dog", "caption": "dog has a tounge", "question": ["is there dog ?", "is there a tounge ?"], "prompt": "{} has a tounge"}, {"index": 1032, "image_id": 2333902, "entity": "dog", "caption": "dog has an arm", "question": ["is there dog ?", "is there an arm ?"], "prompt": "{} has an arm"}, {"index": 1033, "image_id": 2333590, "entity": "dog", "caption": "the dog is smelling her hand", "question": ["is there the dog ?", "is there her hand ?"], "prompt": "the {} is smelling her hand"}, {"index": 1034, "image_id": 2333443, "entity": "dog", "caption": "wet dog taking a bath in a tub", "question": ["is there wet dog ?", "is there a bath ?", "is there a tub ?"], "prompt": "wet {} taking a bath in a tub"}, {"index": 1035, "image_id": 2333438, "entity": "dog", "caption": "The dog has a brown eye.", "question": ["is there the dog ?", "is there a brown eye ?"], "prompt": "The {} has a brown eye."}, {"index": 1036, "image_id": 2333438, "entity": "dog", "caption": "The dogs eye is open.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is open."}, {"index": 1037, "image_id": 2333438, "entity": "dog", "caption": "The dog has teeth.", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "The {} has teeth."}, {"index": 1038, "image_id": 2333438, "entity": "dog", "caption": "The dog has a tongue.", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "The {} has a tongue."}, {"index": 1039, "image_id": 2333438, "entity": "dog", "caption": "The dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "The {} has a red collar"}, {"index": 1040, "image_id": 2333438, "entity": "dog", "caption": "dog with its ears bag", "question": ["is there dog ?", "are there its ears ?"], "prompt": "{} with its ears bag"}, {"index": 1041, "image_id": 2333438, "entity": "dog", "caption": "dog mouth open", "question": [], "prompt": "{} mouth open"}, {"index": 1042, "image_id": 2333438, "entity": "dog", "caption": "dog has black and white paws", "question": ["is there dog ?", "are there black and white paws ?"], "prompt": "{} has black and white paws"}, {"index": 1043, "image_id": 2333438, "entity": "dog", "caption": "dog's mouth is open with tounge out", "question": ["is there dog's mouth ?", "is there tounge ?"], "prompt": "{}'s mouth is open with tounge out"}, {"index": 1044, "image_id": 2333301, "entity": "dog", "caption": "the dog has its mouth open.", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open."}, {"index": 1045, "image_id": 2333301, "entity": "dog", "caption": "the dog's ear is standing straight up.", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is standing straight up."}, {"index": 1046, "image_id": 2333301, "entity": "dog", "caption": "the dog's left back leg.", "question": ["is there the dog ?", "is there leg ?"], "prompt": "the {}'s left back leg."}, {"index": 1047, "image_id": 2333301, "entity": "dog", "caption": "dog mouth wide open ", "question": [], "prompt": "{} mouth wide open "}, {"index": 1048, "image_id": 2333301, "entity": "dog", "caption": "dog's tongue is pink.", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink."}, {"index": 1049, "image_id": 2332835, "entity": "dog", "caption": "The dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is pink."}, {"index": 1050, "image_id": 2332835, "entity": "dog", "caption": "The dogs right eye is round.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is round."}, {"index": 1051, "image_id": 2332607, "entity": "dog", "caption": "dog's eyes looking at camera", "question": ["are there dog's eyes ?", "is there camera ?"], "prompt": "{}'s eyes looking at camera"}, {"index": 1052, "image_id": 2332583, "entity": "dog", "caption": "dog has brown tail", "question": ["is there dog ?", "is there brown tail ?"], "prompt": "{} has brown tail"}, {"index": 1053, "image_id": 2332583, "entity": "dog", "caption": "dog has brown back", "question": ["is there dog ?"], "prompt": "{} has brown back"}, {"index": 1054, "image_id": 2332513, "entity": "dog", "caption": "two dogs are lying ", "question": ["are there two dogs ?"], "prompt": "two {}s are lying "}, {"index": 1055, "image_id": 2332513, "entity": "dog", "caption": "this dog's head is up ", "question": ["is there this dog's head ?"], "prompt": "this {}'s head is up "}, {"index": 1056, "image_id": 2332418, "entity": "dog", "caption": "dog has white ears", "question": ["is there dog ?", "are there white ears ?"], "prompt": "{} has white ears"}, {"index": 1057, "image_id": 2331647, "entity": "dog", "caption": "The hat the dog is wearing.", "question": ["is there the hat ?", "is there the dog ?"], "prompt": "The hat the {} is wearing."}, {"index": 1058, "image_id": 2331519, "entity": "dog", "caption": "The dog tongue is pink.", "question": ["is there the dog tongue ?"], "prompt": "The {} tongue is pink."}, {"index": 1059, "image_id": 2331519, "entity": "dog", "caption": "The dog is licking his tongue out.", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "The {} is licking his tongue out."}, {"index": 1060, "image_id": 2331519, "entity": "dog", "caption": "The frisbee is near the dog leg.", "question": ["is there the dog leg ?"], "prompt": "The frisbee is near the {} leg."}, {"index": 1061, "image_id": 2331519, "entity": "dog", "caption": "The dog is playing with the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee"}, {"index": 1062, "image_id": 2331519, "entity": "dog", "caption": "The Frisbee is in front of the dog. ", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The Frisbee is in front of the {}. "}, {"index": 1063, "image_id": 2331395, "entity": "dog", "caption": "The front left paw of the dog.", "question": ["is there the front left paw ?", "is there the dog ?"], "prompt": "The front left paw of the {}."}, {"index": 1064, "image_id": 2330828, "entity": "dog", "caption": "dog has long nose", "question": ["is there dog ?", "is there long nose ?"], "prompt": "{} has long nose"}, {"index": 1065, "image_id": 2330828, "entity": "dog", "caption": "dog has nice coat", "question": ["is there dog ?", "is there nice coat ?"], "prompt": "{} has nice coat"}, {"index": 1066, "image_id": 2330828, "entity": "dog", "caption": "dog has big ear", "question": ["is there dog ?", "is there big ear ?"], "prompt": "{} has big ear"}, {"index": 1067, "image_id": 2329335, "entity": "dog", "caption": "dog has brown paws", "question": ["is there dog ?", "are there brown paws ?"], "prompt": "{} has brown paws"}, {"index": 1068, "image_id": 2329309, "entity": "dog", "caption": "brown white and black dog catching yellow Frisbee", "question": ["is there brown white and black dog ?", "is there yellow frisbee ?"], "prompt": "brown white and black {} catching yellow Frisbee"}, {"index": 1069, "image_id": 2329309, "entity": "dog", "caption": "Frisbee caught by black and brown dog", "question": ["is there black and brown dog ?"], "prompt": "Frisbee caught by black and brown {}"}, {"index": 1070, "image_id": 2329275, "entity": "dog", "caption": "the dog is lying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is lying on the couch"}, {"index": 1071, "image_id": 2329129, "entity": "dog", "caption": "the dog is eating a cake", "question": ["is there the dog ?", "is there a cake ?"], "prompt": "the {} is eating a cake"}, {"index": 1072, "image_id": 2328916, "entity": "dog", "caption": "The dog is sniffing the donut", "question": ["is there the dog ?", "is there the donut ?"], "prompt": "The {} is sniffing the donut"}, {"index": 1073, "image_id": 2328916, "entity": "dog", "caption": "bulldog sniffing a doughnut ", "question": ["is there a doughnut ?"], "prompt": "bull{} sniffing a doughnut "}, {"index": 1074, "image_id": 2328869, "entity": "dog", "caption": "black hat dog is wearing", "question": ["is there black hat dog ?"], "prompt": "black hat {} is wearing"}, {"index": 1075, "image_id": 2328633, "entity": "dog", "caption": "a dog with black spots on it's ear", "question": ["is there a dog ?", "are there black spots ?", "is there ear ?"], "prompt": "a {} with black spots on it's ear"}, {"index": 1076, "image_id": 2327968, "entity": "dog", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car "}, {"index": 1077, "image_id": 2327968, "entity": "dog", "caption": "the dog is sticking its head out ", "question": ["is there the dog ?", "is there its head ?"], "prompt": "the {} is sticking its head out "}, {"index": 1078, "image_id": 2327968, "entity": "dog", "caption": "the dog has its head out the window ", "question": ["is there the dog ?", "is there its head ?", "is there the window ?"], "prompt": "the {} has its head out the window "}, {"index": 1079, "image_id": 2327286, "entity": "dog", "caption": "the dogs eyes are closed", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are closed"}, {"index": 1080, "image_id": 2326860, "entity": "dog", "caption": "The dog has a frisbee inside his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee inside his mouth."}, {"index": 1081, "image_id": 2326801, "entity": "dog", "caption": "A blue duffel bag a dog is on.", "question": ["is there a blue duffel bag ?", "is there a dog ?"], "prompt": "A blue duffel bag a {} is on."}, {"index": 1082, "image_id": 2325767, "entity": "dog", "caption": "A person is holding the dog", "question": ["is there a person ?", "is there the dog ?"], "prompt": "A person is holding the {}"}, {"index": 1083, "image_id": 2325561, "entity": "dog", "caption": "The dog's mouth is open", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open"}, {"index": 1084, "image_id": 2325561, "entity": "dog", "caption": "The dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black"}, {"index": 1085, "image_id": 2325561, "entity": "dog", "caption": "The dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 1086, "image_id": 2325561, "entity": "dog", "caption": "dog has a black nose ", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose "}, {"index": 1087, "image_id": 2325561, "entity": "dog", "caption": "the dog has brown eye", "question": ["is there the dog ?", "is there brown eye ?"], "prompt": "the {} has brown eye"}, {"index": 1088, "image_id": 2325561, "entity": "dog", "caption": "the dogs left eye ", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye "}, {"index": 1089, "image_id": 2325561, "entity": "dog", "caption": "the dogs left ear ", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "the {}s left ear "}, {"index": 1090, "image_id": 2325561, "entity": "dog", "caption": "dog has orange eyes", "question": ["is there dog ?", "are there orange eyes ?"], "prompt": "{} has orange eyes"}, {"index": 1091, "image_id": 2325561, "entity": "dog", "caption": "brown dog has golden eyes", "question": ["is there brown dog ?", "are there golden eyes ?"], "prompt": "brown {} has golden eyes"}, {"index": 1092, "image_id": 2325561, "entity": "dog", "caption": "black dog has brown eyes", "question": ["is there black dog ?", "are there brown eyes ?"], "prompt": "black {} has brown eyes"}, {"index": 1093, "image_id": 2325561, "entity": "dog", "caption": "black dog has a black nose", "question": ["is there black dog ?", "is there a black nose ?"], "prompt": "black {} has a black nose"}, {"index": 1094, "image_id": 2325561, "entity": "dog", "caption": "black dog has some white hair in its ruff", "question": ["is there black dog ?", "is there some white hair ?", "is there its ruff ?"], "prompt": "black {} has some white hair in its ruff"}, {"index": 1095, "image_id": 2325500, "entity": "dog", "caption": "eyes of dog open wide", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} open wide"}, {"index": 1096, "image_id": 2325500, "entity": "dog", "caption": "the dog has a safety vest", "question": ["is there the dog ?", "is there a safety vest ?"], "prompt": "the {} has a safety vest"}, {"index": 1097, "image_id": 2325442, "entity": "dog", "caption": "dog's ears are pink", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are pink"}, {"index": 1098, "image_id": 2325387, "entity": "dog", "caption": "Woman laying on the floor next to dog.", "question": ["is there woman ?", "is there the floor ?", "is there dog ?"], "prompt": "Woman laying on the floor next to {}."}, {"index": 1099, "image_id": 2324981, "entity": "dog", "caption": "The dog has black patch over eye.", "question": ["is there the dog ?", "is there black patch ?", "is there eye ?"], "prompt": "The {} has black patch over eye."}, {"index": 1100, "image_id": 2324981, "entity": "dog", "caption": "The dog is carrying a blue frisbee.", "question": ["is there the dog ?", "is there a blue frisbee ?"], "prompt": "The {} is carrying a blue frisbee."}, {"index": 1101, "image_id": 2324981, "entity": "dog", "caption": "The dog has a nose.", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "The {} has a nose."}, {"index": 1102, "image_id": 2323880, "entity": "dog", "caption": "dog is in picture", "question": ["is there dog ?", "is there picture ?"], "prompt": "{} is in picture"}, {"index": 1103, "image_id": 2323470, "entity": "dog", "caption": "the dog is laying in a green towel", "question": ["is there the dog ?", "is there a green towel ?"], "prompt": "the {} is laying in a green towel"}, {"index": 1104, "image_id": 2322848, "entity": "dog", "caption": "the cat and the dog are good friends", "question": ["is there the cat ?", "is there the dog ?", "are there good friends ?"], "prompt": "the cat and the {} are good friends"}, {"index": 1105, "image_id": 2322848, "entity": "dog", "caption": "this cat and this dog are obviously best friends", "question": ["is there this cat ?", "is there this dog ?", "are there best friends ?"], "prompt": "this cat and this {} are obviously best friends"}, {"index": 1106, "image_id": 2322792, "entity": "dog", "caption": "extended wet dog ear ", "question": ["is there extended wet dog ear ?"], "prompt": "extended wet {} ear "}, {"index": 1107, "image_id": 2322792, "entity": "dog", "caption": "dog ear flipping up", "question": ["is there dog ear ?"], "prompt": "{} ear flipping up"}, {"index": 1108, "image_id": 2322492, "entity": "dog", "caption": "Pile of clothes a small dog is lying on", "question": ["is there pile ?", "are there clothes ?", "is there a small dog ?"], "prompt": "Pile of clothes a small {} is lying on"}, {"index": 1109, "image_id": 2322220, "entity": "dog", "caption": "a dog is lying in the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "a {} is lying in the bed"}, {"index": 1110, "image_id": 2322220, "entity": "dog", "caption": "the dog is under the sheet", "question": ["is there the dog ?", "is there the sheet ?"], "prompt": "the {} is under the sheet"}, {"index": 1111, "image_id": 2322220, "entity": "dog", "caption": "the dogs ears are brown", "question": ["are there the dogs ears ?"], "prompt": "the {}s ears are brown"}, {"index": 1112, "image_id": 2322220, "entity": "dog", "caption": "the dogs front legs are white", "question": ["are there the dogs ?", "are there front legs ?"], "prompt": "the {}s front legs are white"}, {"index": 1113, "image_id": 2322086, "entity": "dog", "caption": "the dog has white spots", "question": ["is there the dog ?", "are there white spots ?"], "prompt": "the {} has white spots"}, {"index": 1114, "image_id": 2321901, "entity": "dog", "caption": "the dog is laying on a pillow ", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "the {} is laying on a pillow "}, {"index": 1115, "image_id": 2321544, "entity": "dog", "caption": "A silver chain is around the dog's neck.", "question": ["is there a silver chain ?", "is there the dog's neck ?"], "prompt": "A silver chain is around the {}'s neck."}, {"index": 1116, "image_id": 2321544, "entity": "dog", "caption": "The dog's left ear is black and brown. ", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear is black and brown. "}, {"index": 1117, "image_id": 2321544, "entity": "dog", "caption": "The dog's right ear is black and brown. ", "question": ["is there the dog's right ear ?"], "prompt": "The {}'s right ear is black and brown. "}, {"index": 1118, "image_id": 2321386, "entity": "dog", "caption": "the dog has a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} has a chain"}, {"index": 1119, "image_id": 2320693, "entity": "dog", "caption": "the dog has a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} has a frisbee"}, {"index": 1120, "image_id": 2320693, "entity": "dog", "caption": "the dog has the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "the {} has the frisbee"}, {"index": 1121, "image_id": 2320693, "entity": "dog", "caption": "teh dog has brown eyes", "question": ["are there brown eyes ?"], "prompt": "teh {} has brown eyes"}, {"index": 1122, "image_id": 2320693, "entity": "dog", "caption": "dog has frisbee in his mouth", "question": ["is there dog ?", "is there frisbee ?", "is there his mouth ?"], "prompt": "{} has frisbee in his mouth"}, {"index": 1123, "image_id": 2320693, "entity": "dog", "caption": "dog in mouth is pink", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} in mouth is pink"}, {"index": 1124, "image_id": 2319884, "entity": "dog", "caption": "dog is eating a vitamin water", "question": ["is there dog ?", "is there a vitamin water ?"], "prompt": "{} is eating a vitamin water"}, {"index": 1125, "image_id": 2319723, "entity": "dog", "caption": "the dog is kissing the cat", "question": ["is there the dog ?", "is there the cat ?"], "prompt": "the {} is kissing the cat"}, {"index": 1126, "image_id": 2319347, "entity": "dog", "caption": "The dog is wearing a shirt", "question": ["is there the dog ?", "is there a shirt ?"], "prompt": "The {} is wearing a shirt"}, {"index": 1127, "image_id": 2319347, "entity": "dog", "caption": "The dog has on a nice shirt", "question": ["is there the dog ?", "is there a nice shirt ?"], "prompt": "The {} has on a nice shirt"}, {"index": 1128, "image_id": 2319347, "entity": "dog", "caption": "The dog has very long hair", "question": ["is there the dog ?", "is there very long hair ?"], "prompt": "The {} has very long hair"}, {"index": 1129, "image_id": 2319347, "entity": "dog", "caption": "The dog is having a great time", "question": ["is there the dog ?", "is there a great time ?"], "prompt": "The {} is having a great time"}, {"index": 1130, "image_id": 2319347, "entity": "dog", "caption": "The dog is out in the daytime", "question": ["is there the dog ?", "is there the daytime ?"], "prompt": "The {} is out in the daytime"}, {"index": 1131, "image_id": 2319347, "entity": "dog", "caption": "The dog is enjoying the day", "question": ["is there the dog ?", "is there the day ?"], "prompt": "The {} is enjoying the day"}, {"index": 1132, "image_id": 2318934, "entity": "dog", "caption": "A dog is wearing a shirt", "question": ["is there a dog ?", "is there a shirt ?"], "prompt": "A {} is wearing a shirt"}, {"index": 1133, "image_id": 2318934, "entity": "dog", "caption": "A dog has on a visor", "question": ["is there a dog ?", "is there a visor ?"], "prompt": "A {} has on a visor"}, {"index": 1134, "image_id": 2318934, "entity": "dog", "caption": "A dog has white curly hair", "question": ["is there a dog ?", "is there white curly hair ?"], "prompt": "A {} has white curly hair"}, {"index": 1135, "image_id": 2318934, "entity": "dog", "caption": "A dog is sticking its tongue out", "question": ["is there a dog ?", "is there its tongue ?"], "prompt": "A {} is sticking its tongue out"}, {"index": 1136, "image_id": 2318934, "entity": "dog", "caption": "A dog is with its master", "question": ["is there a dog ?", "is there its master ?"], "prompt": "A {} is with its master"}, {"index": 1137, "image_id": 2318892, "entity": "dog", "caption": "The dog has black fur", "question": ["is there the dog ?", "is there black fur ?"], "prompt": "The {} has black fur"}, {"index": 1138, "image_id": 2318849, "entity": "dog", "caption": "brown dog curled up with head on blanket", "question": ["is there brown dog ?", "is there head ?", "is there blanket ?"], "prompt": "brown {} curled up with head on blanket"}, {"index": 1139, "image_id": 2318849, "entity": "dog", "caption": "brown dog cuddled with toy with paw on bunny", "question": ["is there brown dog ?", "is there toy ?", "is there paw ?", "is there bunny ?"], "prompt": "brown {} cuddled with toy with paw on bunny"}, {"index": 1140, "image_id": 2318849, "entity": "dog", "caption": "a dog is in bed", "question": ["is there a dog ?", "is there bed ?"], "prompt": "a {} is in bed"}, {"index": 1141, "image_id": 2318849, "entity": "dog", "caption": "the dog is holding a doll", "question": ["is there the dog ?", "is there a doll ?"], "prompt": "the {} is holding a doll"}, {"index": 1142, "image_id": 2318849, "entity": "dog", "caption": "another doll lies close to the dog", "question": ["is there another doll ?", "is there the dog ?"], "prompt": "another doll lies close to the {}"}, {"index": 1143, "image_id": 2318849, "entity": "dog", "caption": "dog eyes are open", "question": ["are there dog eyes ?"], "prompt": "{} eyes are open"}, {"index": 1144, "image_id": 2318849, "entity": "dog", "caption": "the dog's paw is on the toy", "question": ["is there the dog's paw ?", "is there the toy ?"], "prompt": "the {}'s paw is on the toy"}, {"index": 1145, "image_id": 2318849, "entity": "dog", "caption": "dog holding white stuffed bunny", "question": ["is there white stuffed bunny ?"], "prompt": "{} holding white stuffed bunny"}, {"index": 1146, "image_id": 2318152, "entity": "dog", "caption": "Mulch dog is standing on", "question": ["is there mulch dog ?"], "prompt": "Mulch {} is standing on"}, {"index": 1147, "image_id": 2318115, "entity": "dog", "caption": "Brown leash on a dog", "question": ["is there brown leash ?", "is there a dog ?"], "prompt": "Brown leash on a {}"}, {"index": 1148, "image_id": 2318115, "entity": "dog", "caption": "A person on a skateboard walking their dog", "question": ["is there a person ?", "is there a skateboard ?", "is there their dog ?"], "prompt": "A person on a skateboard walking their {}"}, {"index": 1149, "image_id": 2318115, "entity": "dog", "caption": "person walking the dog", "question": ["is there person ?", "is there the dog ?"], "prompt": "person walking the {}"}, {"index": 1150, "image_id": 2317836, "entity": "dog", "caption": "the dog is in costume", "question": ["is there the dog ?", "is there costume ?"], "prompt": "the {} is in costume"}, {"index": 1151, "image_id": 2317283, "entity": "dog", "caption": "dog paws are tan", "question": ["are there dog paws ?", "is there tan ?"], "prompt": "{} paws are tan"}, {"index": 1152, "image_id": 2317283, "entity": "dog", "caption": "dog has mouth open", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} has mouth open"}, {"index": 1153, "image_id": 2317283, "entity": "dog", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} is in a car."}, {"index": 1154, "image_id": 2317283, "entity": "dog", "caption": "The dog's eyes are open.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open."}, {"index": 1155, "image_id": 2317002, "entity": "dog", "caption": "black whiskers are on the dog", "question": ["are there black whiskers ?", "is there the dog ?"], "prompt": "black whiskers are on the {}"}, {"index": 1156, "image_id": 2317002, "entity": "dog", "caption": "brown nails are on the dog", "question": ["are there brown nails ?", "is there the dog ?"], "prompt": "brown nails are on the {}"}, {"index": 1157, "image_id": 2316886, "entity": "dog", "caption": "the dog appears to be enjoying his snack", "question": ["is there the dog ?", "is there his snack ?"], "prompt": "the {} appears to be enjoying his snack"}, {"index": 1158, "image_id": 2316480, "entity": "dog", "caption": "nose of dog is black ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black "}, {"index": 1159, "image_id": 2316480, "entity": "dog", "caption": "dog sits on couch", "question": ["is there dog ?", "is there couch ?"], "prompt": "{} sits on couch"}, {"index": 1160, "image_id": 2316480, "entity": "dog", "caption": "dog has pink dress", "question": ["is there dog ?", "is there pink dress ?"], "prompt": "{} has pink dress"}, {"index": 1161, "image_id": 2316349, "entity": "dog", "caption": "dog ear on right", "question": ["is there dog ear ?"], "prompt": "{} ear on right"}, {"index": 1162, "image_id": 2316242, "entity": "dog", "caption": "a dog rests on a person", "question": ["is there a dog ?", "is there a person ?"], "prompt": "a {} rests on a person"}, {"index": 1163, "image_id": 2316242, "entity": "dog", "caption": "The dog is wearing a hat.", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} is wearing a hat."}, {"index": 1164, "image_id": 2316242, "entity": "dog", "caption": "The hat is on the dog's head.", "question": ["is there the hat ?", "is there the dog's head ?"], "prompt": "The hat is on the {}'s head."}, {"index": 1165, "image_id": 2316242, "entity": "dog", "caption": "The dog has whiskers.", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "The {} has whiskers."}, {"index": 1166, "image_id": 2316170, "entity": "dog", "caption": "small dog with eyes closed", "question": ["is there small dog ?", "are there eyes ?"], "prompt": "small {} with eyes closed"}, {"index": 1167, "image_id": 2315589, "entity": "dog", "caption": "The dogs nose is black in color. ", "question": ["are there the dogs nose ?", "is there color ?"], "prompt": "The {}s nose is black in color. "}, {"index": 1168, "image_id": 2315589, "entity": "dog", "caption": "The dog has a black nose. ", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose. "}, {"index": 1169, "image_id": 2315589, "entity": "dog", "caption": "The dogs eye is brown.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is brown."}, {"index": 1170, "image_id": 2315589, "entity": "dog", "caption": "The dogs ear is black. ", "question": ["are there the dogs ?"], "prompt": "The {}s ear is black. "}, {"index": 1171, "image_id": 2315468, "entity": "dog", "caption": "dog has a leg", "question": ["is there dog ?", "is there a leg ?"], "prompt": "{} has a leg"}, {"index": 1172, "image_id": 2315468, "entity": "dog", "caption": "the dog carries a green frisbee", "question": ["is there the dog ?", "is there a green frisbee ?"], "prompt": "the {} carries a green frisbee"}, {"index": 1173, "image_id": 2315468, "entity": "dog", "caption": "the dog's collar is green", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is green"}, {"index": 1174, "image_id": 2315447, "entity": "dog", "caption": "A dogs left black eye. ", "question": ["are there a dogs ?", "is there black eye ?"], "prompt": "A {}s left black eye. "}, {"index": 1175, "image_id": 2315441, "entity": "dog", "caption": "The 2 dogs lay on the bed together", "question": ["are there the 2 dogs ?", "is there the bed ?"], "prompt": "The 2 {}s lay on the bed together"}, {"index": 1176, "image_id": 2315441, "entity": "dog", "caption": "The dog is laying on the other dog", "question": ["is there the dog ?", "is there the other dog ?"], "prompt": "The {} is laying on the other {}"}, {"index": 1177, "image_id": 2315441, "entity": "dog", "caption": "The dogs are on the comfortable looking bed", "question": ["are there the dogs ?", "is there the comfortable looking bed ?"], "prompt": "The {}s are on the comfortable looking bed"}, {"index": 1178, "image_id": 2315441, "entity": "dog", "caption": "The dog has a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} has a blue collar"}, {"index": 1179, "image_id": 2315441, "entity": "dog", "caption": "Brown dogs left eye.", "question": ["are there brown dogs ?", "is there eye ?"], "prompt": "Brown {}s left eye."}, {"index": 1180, "image_id": 2414390, "entity": "dog", "caption": "the dog is playing with a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is playing with a frisbee"}, {"index": 1181, "image_id": 2414390, "entity": "dog", "caption": "the dog has brown ears", "question": ["is there the dog ?", "are there brown ears ?"], "prompt": "the {} has brown ears"}, {"index": 1182, "image_id": 2414304, "entity": "dog", "caption": "A dog is in the picture.", "question": ["is there a dog ?", "is there the picture ?"], "prompt": "A {} is in the picture."}, {"index": 1183, "image_id": 2414304, "entity": "dog", "caption": "The dog has on a black collar.", "question": ["is there the dog ?", "is there a black collar ?"], "prompt": "The {} has on a black collar."}, {"index": 1184, "image_id": 2414304, "entity": "dog", "caption": "The dog is standing in the sand.", "question": ["is there the dog ?", "is there the sand ?"], "prompt": "The {} is standing in the sand."}, {"index": 1185, "image_id": 2414304, "entity": "dog", "caption": "The dog is staring at his master.", "question": ["is there the dog ?", "is there his master ?"], "prompt": "The {} is staring at his master."}, {"index": 1186, "image_id": 2412940, "entity": "dog", "caption": "Sun light over the body of dogs", "question": ["is there sun light ?", "is there the body ?", "are there dogs ?"], "prompt": "Sun light over the body of {}s"}, {"index": 1187, "image_id": 2412940, "entity": "dog", "caption": "the dogs eyes are wide apart", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are wide apart"}, {"index": 1188, "image_id": 2412718, "entity": "dog", "caption": "the dog is resting on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is resting on a blanket"}, {"index": 1189, "image_id": 2412718, "entity": "dog", "caption": "the dog has his ears bent", "question": ["is there the dog ?", "are there his ears ?"], "prompt": "the {} has his ears bent"}, {"index": 1190, "image_id": 2412718, "entity": "dog", "caption": "the dog has pretty blue eyes", "question": ["is there the dog ?", "are there pretty blue eyes ?"], "prompt": "the {} has pretty blue eyes"}, {"index": 1191, "image_id": 2412718, "entity": "dog", "caption": "the dog has brown feet", "question": ["is there the dog ?", "are there brown feet ?"], "prompt": "the {} has brown feet"}, {"index": 1192, "image_id": 2412718, "entity": "dog", "caption": "The dog is sitting on blankets", "question": ["is there the dog ?", "are there blankets ?"], "prompt": "The {} is sitting on blankets"}, {"index": 1193, "image_id": 2412718, "entity": "dog", "caption": "The dog has 2 ears", "question": ["is there the dog ?", "are there 2 ears ?"], "prompt": "The {} has 2 ears"}, {"index": 1194, "image_id": 2412718, "entity": "dog", "caption": "The dog has a tail", "question": ["is there the dog ?", "is there a tail ?"], "prompt": "The {} has a tail"}, {"index": 1195, "image_id": 2412718, "entity": "dog", "caption": "The dog's eyes are blue", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are blue"}, {"index": 1196, "image_id": 2412718, "entity": "dog", "caption": "The dog has 4 paws", "question": ["is there the dog ?", "are there 4 paws ?"], "prompt": "The {} has 4 paws"}, {"index": 1197, "image_id": 2412430, "entity": "dog", "caption": "A dog is laying down on a couch.", "question": ["is there a dog ?", "is there a couch ?"], "prompt": "A {} is laying down on a couch."}, {"index": 1198, "image_id": 2412430, "entity": "dog", "caption": "The dog's nose is black in color.", "question": ["is there the dog's nose ?", "is there color ?"], "prompt": "The {}'s nose is black in color."}, {"index": 1199, "image_id": 2412382, "entity": "dog", "caption": "the dogs are on the seat", "question": ["are there the dogs ?", "is there the seat ?"], "prompt": "the {}s are on the seat"}, {"index": 1200, "image_id": 2412382, "entity": "dog", "caption": "the dogs eyes are black", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are black"}, {"index": 1201, "image_id": 2412215, "entity": "dog", "caption": "The white sheet the dog's paw and mouth is resting on.", "question": ["is there the dog's paw ?", "is there mouth ?"], "prompt": "The white sheet the {}'s paw and mouth is resting on."}, {"index": 1202, "image_id": 2412215, "entity": "dog", "caption": "The black dog's head resting on the bed.", "question": ["is there the black dog's head ?", "is there the bed ?"], "prompt": "The black {}'s head resting on the bed."}, {"index": 1203, "image_id": 2411734, "entity": "dog", "caption": "A dog with a white nose looks at a birthday cupcake", "question": ["is there a dog ?", "is there a white nose ?", "is there a birthday cupcake ?"], "prompt": "A {} with a white nose looks at a birthday cupcake"}, {"index": 1204, "image_id": 2411533, "entity": "dog", "caption": "White mouse and cat sitting on dog.", "question": ["is there cat ?", "is there dog ?"], "prompt": "White mouse and cat sitting on {}."}, {"index": 1205, "image_id": 2411533, "entity": "dog", "caption": "cat is on a dogs back", "question": ["is there cat ?", "are there a dogs ?"], "prompt": "cat is on a {}s back"}, {"index": 1206, "image_id": 2411533, "entity": "dog", "caption": "dog is walking on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} is walking on sidewalk"}, {"index": 1207, "image_id": 2411533, "entity": "dog", "caption": "dog is wearing a brown vest", "question": ["is there dog ?", "is there a brown vest ?"], "prompt": "{} is wearing a brown vest"}, {"index": 1208, "image_id": 2411533, "entity": "dog", "caption": "a cat is on the dog's back", "question": ["is there a cat ?", "is there the dog ?"], "prompt": "a cat is on the {}'s back"}, {"index": 1209, "image_id": 2411533, "entity": "dog", "caption": "a cat and a mouse are both on a dog", "question": ["is there a cat ?", "is there a mouse ?", "is there a dog ?"], "prompt": "a cat and a mouse are both on a {}"}, {"index": 1210, "image_id": 2411533, "entity": "dog", "caption": "the dog is wearing a vest", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "the {} is wearing a vest"}, {"index": 1211, "image_id": 2415243, "entity": "dog", "caption": "a dog lays on a television remote", "question": ["is there a dog ?", "is there a television remote ?"], "prompt": "a {} lays on a television remote"}, {"index": 1212, "image_id": 2415243, "entity": "dog", "caption": "dog takes a nap on a couch", "question": ["is there dog ?", "is there a nap ?", "is there a couch ?"], "prompt": "{} takes a nap on a couch"}, {"index": 1213, "image_id": 2415532, "entity": "dog", "caption": "Elbow on the far arm washing the dog.", "question": ["is there the far arm ?", "is there the dog ?"], "prompt": "Elbow on the far arm washing the {}."}, {"index": 1214, "image_id": 2416178, "entity": "dog", "caption": "the dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye"}, {"index": 1215, "image_id": 2416388, "entity": "dog", "caption": "pink bow the dog is wearing", "question": ["is there the dog ?"], "prompt": "pink bow the {} is wearing"}, {"index": 1216, "image_id": 2416388, "entity": "dog", "caption": "dog getting teeth brushed", "question": ["is there dog ?", "are there teeth ?"], "prompt": "{} getting teeth brushed"}, {"index": 1217, "image_id": 2416731, "entity": "dog", "caption": "the dog has black hair", "question": ["is there the dog ?", "is there black hair ?"], "prompt": "the {} has black hair"}, {"index": 1218, "image_id": 2416731, "entity": "dog", "caption": "the dog has pointy teeth", "question": ["is there the dog ?", "are there pointy teeth ?"], "prompt": "the {} has pointy teeth"}, {"index": 1219, "image_id": 2416944, "entity": "dog", "caption": "grassy field dog is playing in", "question": ["is there grassy field dog ?"], "prompt": "grassy field {} is playing in"}, {"index": 1220, "image_id": 2417227, "entity": "dog", "caption": "The sofa the dog is leaning on.", "question": ["is there the sofa ?", "is there the dog ?"], "prompt": "The sofa the {} is leaning on."}, {"index": 1221, "image_id": 2417721, "entity": "dog", "caption": "dog has brown legs", "question": ["is there dog ?", "are there brown legs ?"], "prompt": "{} has brown legs"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02088466.json b/data/imagenet/compositions/prompts/n02088466.json
new file mode 100644
index 0000000000000000000000000000000000000000..52b4abb883afb593845d8e1b9e77621259749c5a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02088466.json
@@ -0,0 +1,13317 @@
+[
+ {
+ "index": 0,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog has a black nose",
+ "question": [
+ "is there dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "{} has a black nose"
+ },
+ {
+ "index": 1,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog's ears are up",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are up"
+ },
+ {
+ "index": 2,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog's eyes are dark",
+ "question": [
+ "are there dog's eyes ?"
+ ],
+ "prompt": "{}'s eyes are dark"
+ },
+ {
+ "index": 3,
+ "image_id": 3535,
+ "entity": "dog",
+ "caption": "The dog has four legs.",
+ "question": [
+ "is there the dog ?",
+ "are there four legs ?"
+ ],
+ "prompt": "The {} has four legs."
+ },
+ {
+ "index": 4,
+ "image_id": 3535,
+ "entity": "dog",
+ "caption": "tongue hanging out a dog's mouth",
+ "question": [
+ "is there tongue ?",
+ "is there a dog's mouth ?"
+ ],
+ "prompt": "tongue hanging out a {}'s mouth"
+ },
+ {
+ "index": 5,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "dog is sitting in grass",
+ "question": [
+ "is there dog ?",
+ "is there grass ?"
+ ],
+ "prompt": "{} is sitting in grass"
+ },
+ {
+ "index": 6,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "dog is mostly brown",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is mostly brown"
+ },
+ {
+ "index": 7,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the dog has a black nose",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "the {} has a black nose"
+ },
+ {
+ "index": 8,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the brown dog has a long brown tail",
+ "question": [
+ "is there the brown dog ?",
+ "is there a long brown tail ?"
+ ],
+ "prompt": "the brown {} has a long brown tail"
+ },
+ {
+ "index": 9,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the dog has large brown paws",
+ "question": [
+ "is there the dog ?",
+ "are there large brown paws ?"
+ ],
+ "prompt": "the {} has large brown paws"
+ },
+ {
+ "index": 10,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "a dog with its mouth open",
+ "question": [
+ "is there a dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "a {} with its mouth open"
+ },
+ {
+ "index": 11,
+ "image_id": 3752,
+ "entity": "dog",
+ "caption": "the dogs tail is black ",
+ "question": [
+ "are there the dogs tail ?"
+ ],
+ "prompt": "the {}s tail is black "
+ },
+ {
+ "index": 12,
+ "image_id": 3752,
+ "entity": "dog",
+ "caption": "the dogs feet is black ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s feet is black "
+ },
+ {
+ "index": 13,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "A dog and a cat are standing together on the sidewalk",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?",
+ "is there the sidewalk ?"
+ ],
+ "prompt": "A {} and a cat are standing together on the sidewalk"
+ },
+ {
+ "index": 14,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "dog has a brown patch",
+ "question": [
+ "is there dog ?",
+ "is there a brown patch ?"
+ ],
+ "prompt": "{} has a brown patch"
+ },
+ {
+ "index": 15,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "dog has a blue rope tied",
+ "question": [
+ "is there dog ?",
+ "is there a blue rope ?"
+ ],
+ "prompt": "{} has a blue rope tied"
+ },
+ {
+ "index": 16,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "the dog has a blue leash",
+ "question": [
+ "is there the dog ?",
+ "is there a blue leash ?"
+ ],
+ "prompt": "the {} has a blue leash"
+ },
+ {
+ "index": 17,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "A dog and a cat walk together.",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A {} and a cat walk together."
+ },
+ {
+ "index": 18,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "Both dog and cat are in the middle of the frame.",
+ "question": [
+ "is there both dog ?",
+ "is there cat ?",
+ "is there the middle ?",
+ "is there the frame ?"
+ ],
+ "prompt": "Both {} and cat are in the middle of the frame."
+ },
+ {
+ "index": 19,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "The dog is looking at the camera.",
+ "question": [
+ "is there the dog ?",
+ "is there the camera ?"
+ ],
+ "prompt": "The {} is looking at the camera."
+ },
+ {
+ "index": 20,
+ "image_id": 1159975,
+ "entity": "dog",
+ "caption": "The gray collar the dog is wearing.",
+ "question": [
+ "is there the gray collar ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The gray collar the {} is wearing."
+ },
+ {
+ "index": 21,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "The dog has a brown and white sweater",
+ "question": [
+ "is there the dog ?",
+ "is there a brown and white sweater ?"
+ ],
+ "prompt": "The {} has a brown and white sweater"
+ },
+ {
+ "index": 22,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "The dog has a brown nose",
+ "question": [
+ "is there the dog ?",
+ "is there a brown nose ?"
+ ],
+ "prompt": "The {} has a brown nose"
+ },
+ {
+ "index": 23,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog has a messed up eye",
+ "question": [
+ "is there the dog ?",
+ "is there a messed up eye ?"
+ ],
+ "prompt": "the {} has a messed up eye"
+ },
+ {
+ "index": 24,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog is wearing a sweater",
+ "question": [
+ "is there the dog ?",
+ "is there a sweater ?"
+ ],
+ "prompt": "the {} is wearing a sweater"
+ },
+ {
+ "index": 25,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog has a purple collar",
+ "question": [
+ "is there the dog ?",
+ "is there a purple collar ?"
+ ],
+ "prompt": "the {} has a purple collar"
+ },
+ {
+ "index": 26,
+ "image_id": 2413171,
+ "entity": "dog",
+ "caption": "Young man hold a cute dog",
+ "question": [
+ "is there young man ?",
+ "is there a cute dog ?"
+ ],
+ "prompt": "Young man hold a cute {}"
+ },
+ {
+ "index": 27,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "black fur grows on a dog",
+ "question": [
+ "is there black fur ?",
+ "is there a dog ?"
+ ],
+ "prompt": "black fur grows on a {}"
+ },
+ {
+ "index": 28,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "dog is sitting in the ground",
+ "question": [
+ "is there dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "{} is sitting in the ground"
+ },
+ {
+ "index": 29,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "dog is sitting in the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is sitting in the floor"
+ },
+ {
+ "index": 30,
+ "image_id": 2412546,
+ "entity": "dog",
+ "caption": "The dog has a collar on.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} has a collar on."
+ },
+ {
+ "index": 31,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog is long hair",
+ "question": [
+ "is there the dog ?",
+ "is there long hair ?"
+ ],
+ "prompt": "the {} is long hair"
+ },
+ {
+ "index": 32,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some white hair",
+ "question": [
+ "is there the dog ?",
+ "is there some white hair ?"
+ ],
+ "prompt": "the {} has some white hair"
+ },
+ {
+ "index": 33,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some black hair",
+ "question": [
+ "is there the dog ?",
+ "is there some black hair ?"
+ ],
+ "prompt": "the {} has some black hair"
+ },
+ {
+ "index": 34,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some brown hair",
+ "question": [
+ "is there the dog ?",
+ "is there some brown hair ?"
+ ],
+ "prompt": "the {} has some brown hair"
+ },
+ {
+ "index": 35,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog's nose is shiny",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "the {}'s nose is shiny"
+ },
+ {
+ "index": 36,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog's nose is black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "the {}'s nose is black"
+ },
+ {
+ "index": 37,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "this are dog canines",
+ "question": [
+ "are there dog canines ?"
+ ],
+ "prompt": "this are {} canines"
+ },
+ {
+ "index": 38,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "this is the dogs fur",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "this is the {}s fur"
+ },
+ {
+ "index": 39,
+ "image_id": 2411402,
+ "entity": "dog",
+ "caption": "Bed the dog is sleeping on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Bed the {} is sleeping on"
+ },
+ {
+ "index": 40,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is wearing a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} is wearing a collar"
+ },
+ {
+ "index": 41,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is wearing a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} is wearing a chain"
+ },
+ {
+ "index": 42,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is watching the oven",
+ "question": [
+ "is there the dog ?",
+ "is there the oven ?"
+ ],
+ "prompt": "the {} is watching the oven"
+ },
+ {
+ "index": 43,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog has a chain around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?",
+ "is there its neck ?"
+ ],
+ "prompt": "the {} has a chain around its neck"
+ },
+ {
+ "index": 44,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog has two ears",
+ "question": [
+ "is there the dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "the {} has two ears"
+ },
+ {
+ "index": 45,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "A dog is on a moped.",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "A {} is on a moped."
+ },
+ {
+ "index": 46,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog has a red leash.",
+ "question": [
+ "is there the dog ?",
+ "is there a red leash ?"
+ ],
+ "prompt": "The {} has a red leash."
+ },
+ {
+ "index": 47,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog's ears are up.",
+ "question": [
+ "are there the dog's ears ?"
+ ],
+ "prompt": "The {}'s ears are up."
+ },
+ {
+ "index": 48,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog's tail is hanging down.",
+ "question": [
+ "is there the dog's tail ?"
+ ],
+ "prompt": "The {}'s tail is hanging down."
+ },
+ {
+ "index": 49,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "a large dog sits on a scooter",
+ "question": [
+ "is there a large dog ?",
+ "is there a scooter ?"
+ ],
+ "prompt": "a large {} sits on a scooter"
+ },
+ {
+ "index": 50,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "a dog has a red leash",
+ "question": [
+ "is there a dog ?",
+ "is there a red leash ?"
+ ],
+ "prompt": "a {} has a red leash"
+ },
+ {
+ "index": 51,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog on the scooter has a long tail",
+ "question": [
+ "is there the dog ?",
+ "is there the scooter ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "The {} on the scooter has a long tail"
+ },
+ {
+ "index": 52,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "Brown dog on leash on moped",
+ "question": [
+ "is there brown dog ?",
+ "is there leash ?"
+ ],
+ "prompt": "Brown {} on leash on moped"
+ },
+ {
+ "index": 53,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "Red moped with dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "Red moped with {}"
+ },
+ {
+ "index": 54,
+ "image_id": 2410967,
+ "entity": "dog",
+ "caption": "a dog's ears bent over",
+ "question": [
+ "are there a dog's ears ?"
+ ],
+ "prompt": "a {}'s ears bent over"
+ },
+ {
+ "index": 55,
+ "image_id": 2410840,
+ "entity": "dog",
+ "caption": "a dog's mouth biting a frisbee",
+ "question": [
+ "is there a dog's mouth ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "a {}'s mouth biting a frisbee"
+ },
+ {
+ "index": 56,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "black and tan dog jumping to catch a frisbee",
+ "question": [
+ "is there black and tan dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "black and tan {} jumping to catch a frisbee"
+ },
+ {
+ "index": 57,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "leaping dog going after a frisbee",
+ "question": [
+ "is there leaping dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "leaping {} going after a frisbee"
+ },
+ {
+ "index": 58,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "German shepherd dog fetching a frisbee. ",
+ "question": [
+ "is there german shepherd dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "German shepherd {} fetching a frisbee. "
+ },
+ {
+ "index": 59,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "dog's eyes appear to be different colors",
+ "question": [
+ "are there dog's eyes ?",
+ "are there different colors ?"
+ ],
+ "prompt": "{}'s eyes appear to be different colors"
+ },
+ {
+ "index": 60,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "dog has black nose",
+ "question": [
+ "is there dog ?",
+ "is there black nose ?"
+ ],
+ "prompt": "{} has black nose"
+ },
+ {
+ "index": 61,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "the dog is wearing a cap",
+ "question": [
+ "is there the dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "the {} is wearing a cap"
+ },
+ {
+ "index": 62,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "Tongue of dog is pink",
+ "question": [
+ "is there tongue ?",
+ "is there dog ?"
+ ],
+ "prompt": "Tongue of {} is pink"
+ },
+ {
+ "index": 63,
+ "image_id": 2409626,
+ "entity": "dog",
+ "caption": "dog has two eyes",
+ "question": [
+ "is there dog ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "{} has two eyes"
+ },
+ {
+ "index": 64,
+ "image_id": 2409626,
+ "entity": "dog",
+ "caption": "the dog is wearing pirate hat",
+ "question": [
+ "is there the dog ?",
+ "is there pirate hat ?"
+ ],
+ "prompt": "the {} is wearing pirate hat"
+ },
+ {
+ "index": 65,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "White left foot of the dog",
+ "question": [
+ "is there white left foot ?",
+ "is there the dog ?"
+ ],
+ "prompt": "White left foot of the {}"
+ },
+ {
+ "index": 66,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog catch the frisbee",
+ "question": [
+ "is there dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{} catch the frisbee"
+ },
+ {
+ "index": 67,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's nose is black",
+ "question": [
+ "is there dog's nose ?"
+ ],
+ "prompt": "{}'s nose is black"
+ },
+ {
+ "index": 68,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's ears are black",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are black"
+ },
+ {
+ "index": 69,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's paws are white",
+ "question": [
+ "are there dog's paws ?"
+ ],
+ "prompt": "{}'s paws are white"
+ },
+ {
+ "index": 70,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "the dog is wearing a blue collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "the {} is wearing a blue collar"
+ },
+ {
+ "index": 71,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "a book by T.C. Boyle is next to the dog",
+ "question": [
+ "is there a book ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a book by T.C. Boyle is next to the {}"
+ },
+ {
+ "index": 72,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "the dog is laying on top of an embroidered sheet",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there an embroidered sheet ?"
+ ],
+ "prompt": "the {} is laying on top of an embroidered sheet"
+ },
+ {
+ "index": 73,
+ "image_id": 2408483,
+ "entity": "dog",
+ "caption": "Carpet is light in color under dog",
+ "question": [
+ "is there carpet ?",
+ "is there color ?",
+ "is there dog ?"
+ ],
+ "prompt": "Carpet is light in color under {}"
+ },
+ {
+ "index": 74,
+ "image_id": 2408383,
+ "entity": "dog",
+ "caption": "The dog and cat are looking in the same direction",
+ "question": [
+ "is there the dog ?",
+ "is there cat ?",
+ "is there the same direction ?"
+ ],
+ "prompt": "The {} and cat are looking in the same direction"
+ },
+ {
+ "index": 75,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Nose of dog is black",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "Nose of {} is black"
+ },
+ {
+ "index": 76,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Ears of dog is black and tan",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "Ears of {} is black and tan"
+ },
+ {
+ "index": 77,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Eyes of dog are open",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "Eyes of {} are open"
+ },
+ {
+ "index": 78,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "three dogs are lying on a bed",
+ "question": [
+ "are there three dogs ?",
+ "is there a bed ?"
+ ],
+ "prompt": "three {}s are lying on a bed"
+ },
+ {
+ "index": 79,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "the dog has his eyes open",
+ "question": [
+ "is there the dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "the {} has his eyes open"
+ },
+ {
+ "index": 80,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has red eyes",
+ "question": [
+ "is there the dog ?",
+ "are there red eyes ?"
+ ],
+ "prompt": "the {} has red eyes"
+ },
+ {
+ "index": 81,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog is holding carrot toy",
+ "question": [
+ "is there the dog ?",
+ "is there carrot toy ?"
+ ],
+ "prompt": "the {} is holding carrot toy"
+ },
+ {
+ "index": 82,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has green ribbon on its nech",
+ "question": [
+ "is there the dog ?",
+ "is there green ribbon ?"
+ ],
+ "prompt": "the {} has green ribbon on its nech"
+ },
+ {
+ "index": 83,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "a green toy is beside the dog",
+ "question": [
+ "is there a green toy ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a green toy is beside the {}"
+ },
+ {
+ "index": 84,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has brown legs",
+ "question": [
+ "is there the dog ?",
+ "are there brown legs ?"
+ ],
+ "prompt": "the {} has brown legs"
+ },
+ {
+ "index": 85,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "Brown dog laying on a bed with eyes open.",
+ "question": [
+ "is there brown dog ?",
+ "is there a bed ?",
+ "are there eyes ?"
+ ],
+ "prompt": "Brown {} laying on a bed with eyes open."
+ },
+ {
+ "index": 86,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog is lying down.",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is lying down."
+ },
+ {
+ "index": 87,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog is lying in cot.",
+ "question": [
+ "is there dog ?",
+ "is there cot ?"
+ ],
+ "prompt": "{} is lying in cot."
+ },
+ {
+ "index": 88,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog nose is black color.",
+ "question": [
+ "is there dog nose ?",
+ "is there black color ?"
+ ],
+ "prompt": "{} nose is black color."
+ },
+ {
+ "index": 89,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog has two eyes",
+ "question": [
+ "is there the dog ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "the {} has two eyes"
+ },
+ {
+ "index": 90,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "dog is wearing a collar",
+ "question": [
+ "is there dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "{} is wearing a collar"
+ },
+ {
+ "index": 91,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog is on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is on the couch"
+ },
+ {
+ "index": 92,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog has whiskers",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "the {} has whiskers"
+ },
+ {
+ "index": 93,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is on the beanbag",
+ "question": [
+ "is there the dog ?",
+ "is there the beanbag ?"
+ ],
+ "prompt": "the {} is on the beanbag"
+ },
+ {
+ "index": 94,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "a dog toy thats a rope",
+ "question": [
+ "is there a dog toy ?",
+ "is there a rope ?"
+ ],
+ "prompt": "a {} toy thats a rope"
+ },
+ {
+ "index": 95,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is on bean bag",
+ "question": [
+ "is there the dog ?",
+ "is there bean bag ?"
+ ],
+ "prompt": "the {} is on bean bag"
+ },
+ {
+ "index": 96,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is sad",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is sad"
+ },
+ {
+ "index": 97,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "the dog has goggles",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "the {} has goggles"
+ },
+ {
+ "index": 98,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dog has a vest on",
+ "question": [
+ "is there the dog ?",
+ "is there a vest ?"
+ ],
+ "prompt": "The {} has a vest on"
+ },
+ {
+ "index": 99,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dog has goggles on",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "The {} has goggles on"
+ },
+ {
+ "index": 100,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dogs tongue is out. ",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "The {}s tongue is out. "
+ },
+ {
+ "index": 101,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "The dog has amber-coloured eyes",
+ "question": [
+ "is there the dog ?",
+ "are there amber-coloured eyes ?"
+ ],
+ "prompt": "The {} has amber-coloured eyes"
+ },
+ {
+ "index": 102,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "The dog's hat is courdoroy",
+ "question": [
+ "is there the dog's hat ?"
+ ],
+ "prompt": "The {}'s hat is courdoroy"
+ },
+ {
+ "index": 103,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has collar",
+ "question": [
+ "is there dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} has collar"
+ },
+ {
+ "index": 104,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has whiskers",
+ "question": [
+ "is there dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "{} has whiskers"
+ },
+ {
+ "index": 105,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has black lips",
+ "question": [
+ "is there dog ?",
+ "are there black lips ?"
+ ],
+ "prompt": "{} has black lips"
+ },
+ {
+ "index": 106,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "dogs nose is black",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is black"
+ },
+ {
+ "index": 107,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has light brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there light brown eyes ?"
+ ],
+ "prompt": "the {} has light brown eyes"
+ },
+ {
+ "index": 108,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has pointy ears",
+ "question": [
+ "is there the dog ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "the {} has pointy ears"
+ },
+ {
+ "index": 109,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "something fuzzy is next to the dog",
+ "question": [
+ "is there something ?",
+ "is there the dog ?"
+ ],
+ "prompt": "something fuzzy is next to the {}"
+ },
+ {
+ "index": 110,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "the {} has brown eyes"
+ },
+ {
+ "index": 111,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog is lying on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is lying on a blanket"
+ },
+ {
+ "index": 112,
+ "image_id": 2405633,
+ "entity": "dog",
+ "caption": "Dog kennel with dog.",
+ "question": [
+ "is there dog kennel ?",
+ "is there dog ?"
+ ],
+ "prompt": "Dog kennel with {}."
+ },
+ {
+ "index": 113,
+ "image_id": 2405633,
+ "entity": "dog",
+ "caption": "The dog is lying on two blue and white pillows.",
+ "question": [
+ "is there the dog ?",
+ "are there two blue and white pillows ?"
+ ],
+ "prompt": "The {} is lying on two blue and white pillows."
+ },
+ {
+ "index": 114,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has a pink tongue",
+ "question": [
+ "is there the dog ?",
+ "is there a pink tongue ?"
+ ],
+ "prompt": "the {} has a pink tongue"
+ },
+ {
+ "index": 115,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is walking in the grass",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {} is walking in the grass"
+ },
+ {
+ "index": 116,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is wearing a metal collar",
+ "question": [
+ "is there the dog ?",
+ "is there a metal collar ?"
+ ],
+ "prompt": "the {} is wearing a metal collar"
+ },
+ {
+ "index": 117,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is standing on the grass",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {} is standing on the grass"
+ },
+ {
+ "index": 118,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has a collar on",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar on"
+ },
+ {
+ "index": 119,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has his tongue sticking out",
+ "question": [
+ "is there the dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "the {} has his tongue sticking out"
+ },
+ {
+ "index": 120,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is waggling his tail",
+ "question": [
+ "is there the dog ?",
+ "is there his tail ?"
+ ],
+ "prompt": "the {} is waggling his tail"
+ },
+ {
+ "index": 121,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog's collar is a chain",
+ "question": [
+ "is there the dog's collar ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {}'s collar is a chain"
+ },
+ {
+ "index": 122,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "dog's tongue is pink",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is pink"
+ },
+ {
+ "index": 123,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "dog is standing in the grass",
+ "question": [
+ "is there dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "{} is standing in the grass"
+ },
+ {
+ "index": 124,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar. ",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar. "
+ },
+ {
+ "index": 125,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "The dog has it's head down. ",
+ "question": [
+ "is there the dog ?",
+ "is there head ?"
+ ],
+ "prompt": "The {} has it's head down. "
+ },
+ {
+ "index": 126,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "the dog has sharp teeth",
+ "question": [
+ "is there the dog ?",
+ "are there sharp teeth ?"
+ ],
+ "prompt": "the {} has sharp teeth"
+ },
+ {
+ "index": 127,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "the dog is on the ground",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is on the ground"
+ },
+ {
+ "index": 128,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "dog is barking to the other dog",
+ "question": [
+ "is there dog ?",
+ "is there the other dog ?"
+ ],
+ "prompt": "{} is barking to the other {}"
+ },
+ {
+ "index": 129,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "Dog ready to bite another dog",
+ "question": [
+ "is there dog ?",
+ "is there another dog ?"
+ ],
+ "prompt": "Dog ready to bite another {}"
+ },
+ {
+ "index": 130,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "The dog is sleeping in a bed. ",
+ "question": [
+ "is there the dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "The {} is sleeping in a bed. "
+ },
+ {
+ "index": 131,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "The dog's nose hangs over the bed's edge.",
+ "question": [
+ "is there the dog's nose ?",
+ "is there the bed's edge ?"
+ ],
+ "prompt": "The {}'s nose hangs over the bed's edge."
+ },
+ {
+ "index": 132,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog is on a bed",
+ "question": [
+ "is there the dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "the {} is on a bed"
+ },
+ {
+ "index": 133,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog sleeps on a tan and white dog bed",
+ "question": [
+ "is there the dog ?",
+ "is there a tan and white dog bed ?"
+ ],
+ "prompt": "the {} sleeps on a tan and white {} bed"
+ },
+ {
+ "index": 134,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog lays curled up on a plush dog bed",
+ "question": [
+ "is there the dog ?",
+ "is there a plush dog bed ?"
+ ],
+ "prompt": "the {} lays curled up on a plush {} bed"
+ },
+ {
+ "index": 135,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "dogs ear on bottom left",
+ "question": [
+ "are there dogs ?",
+ "is there bottom ?"
+ ],
+ "prompt": "{}s ear on bottom left"
+ },
+ {
+ "index": 136,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "White dog curled up sleeping on its bed",
+ "question": [
+ "is there white dog ?",
+ "is there its bed ?"
+ ],
+ "prompt": "White {} curled up sleeping on its bed"
+ },
+ {
+ "index": 137,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a Santa hat on his head",
+ "question": [
+ "is there the dog ?",
+ "is there a santa hat ?",
+ "is there his head ?"
+ ],
+ "prompt": "the {} has a Santa hat on his head"
+ },
+ {
+ "index": 138,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a black eye",
+ "question": [
+ "is there the dog ?",
+ "is there a black eye ?"
+ ],
+ "prompt": "the {} has a black eye"
+ },
+ {
+ "index": 139,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the nose of the dog is black",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the nose of the {} is black"
+ },
+ {
+ "index": 140,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the fur on the dog is black and white ",
+ "question": [
+ "is there the fur ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the fur on the {} is black and white "
+ },
+ {
+ "index": 141,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a white chest",
+ "question": [
+ "is there the dog ?",
+ "is there a white chest ?"
+ ],
+ "prompt": "the {} has a white chest"
+ },
+ {
+ "index": 142,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog's ear is black",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is black"
+ },
+ {
+ "index": 143,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog's eye is open",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is open"
+ },
+ {
+ "index": 144,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "a cat sleeps on a dog",
+ "question": [
+ "is there a cat ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a cat sleeps on a {}"
+ },
+ {
+ "index": 145,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "a cat and dog lie on a wooden floor",
+ "question": [
+ "is there a cat ?",
+ "is there dog ?",
+ "is there a wooden floor ?"
+ ],
+ "prompt": "a cat and {} lie on a wooden floor"
+ },
+ {
+ "index": 146,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the cat is laying on the dog",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cat is laying on the {}"
+ },
+ {
+ "index": 147,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog is laying on the floor",
+ "question": [
+ "is there the dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "the {} is laying on the floor"
+ },
+ {
+ "index": 148,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog has something around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there something ?",
+ "is there its neck ?"
+ ],
+ "prompt": "the {} has something around its neck"
+ },
+ {
+ "index": 149,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog's ear is sticking up",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is sticking up"
+ },
+ {
+ "index": 150,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog is wearing a bandana on his neck",
+ "question": [
+ "is there the dog ?",
+ "is there a bandana ?",
+ "is there his neck ?"
+ ],
+ "prompt": "the {} is wearing a bandana on his neck"
+ },
+ {
+ "index": 151,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the kitten is laying on top of the dog",
+ "question": [
+ "is there top ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the kitten is laying on top of the {}"
+ },
+ {
+ "index": 152,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dogs paws are white",
+ "question": [
+ "are there the dogs paws ?"
+ ],
+ "prompt": "the {}s paws are white"
+ },
+ {
+ "index": 153,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog doesnt seem to mind the kitty laying on him",
+ "question": [
+ "is there the dog ?",
+ "is there the kitty ?"
+ ],
+ "prompt": "the {} doesnt seem to mind the kitty laying on him"
+ },
+ {
+ "index": 154,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "A black dog sits on stairs",
+ "question": [
+ "is there a black dog ?",
+ "are there stairs ?"
+ ],
+ "prompt": "A black {} sits on stairs"
+ },
+ {
+ "index": 155,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dog is wearing a red bow tie around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there a red bow tie ?",
+ "is there its neck ?"
+ ],
+ "prompt": "The {} is wearing a red bow tie around its neck"
+ },
+ {
+ "index": 156,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dog has its head cocked to the side",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there the side ?"
+ ],
+ "prompt": "The {} has its head cocked to the side"
+ },
+ {
+ "index": 157,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dogs left hind leg is hanging off the stair",
+ "question": [
+ "are there the dogs ?",
+ "is there hind leg ?",
+ "is there the stair ?"
+ ],
+ "prompt": "The {}s left hind leg is hanging off the stair"
+ },
+ {
+ "index": 158,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "a woman is petting the dog",
+ "question": [
+ "is there a woman ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a woman is petting the {}"
+ },
+ {
+ "index": 159,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog wears a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} wears a red collar"
+ },
+ {
+ "index": 160,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "person petting dog is wearing red scarf",
+ "question": [
+ "is there person ?",
+ "is there dog ?",
+ "is there red scarf ?"
+ ],
+ "prompt": "person petting {} is wearing red scarf"
+ },
+ {
+ "index": 161,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "person petting dog is wearing a black dress",
+ "question": [
+ "is there person ?",
+ "is there dog ?",
+ "is there a black dress ?"
+ ],
+ "prompt": "person petting {} is wearing a black dress"
+ },
+ {
+ "index": 162,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog is wearing a red and white scarf",
+ "question": [
+ "is there the dog ?",
+ "is there a red and white scarf ?"
+ ],
+ "prompt": "the {} is wearing a red and white scarf"
+ },
+ {
+ "index": 163,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog looks up at the woman",
+ "question": [
+ "is there the dog ?",
+ "is there the woman ?"
+ ],
+ "prompt": "the {} looks up at the woman"
+ },
+ {
+ "index": 164,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog is wearing a red halter style lead",
+ "question": [
+ "is there the dog ?",
+ "is there a red halter style ?"
+ ],
+ "prompt": "the {} is wearing a red halter style lead"
+ },
+ {
+ "index": 165,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "a woman reaches down to a dog",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a woman reaches down to a {}"
+ },
+ {
+ "index": 166,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the woman in the red shoes pets the dog",
+ "question": [
+ "is there the woman ?",
+ "are there the red shoes ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the woman in the red shoes pets the {}"
+ },
+ {
+ "index": 167,
+ "image_id": 2404075,
+ "entity": "dog",
+ "caption": "The dog is on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is on a blanket"
+ },
+ {
+ "index": 168,
+ "image_id": 2403923,
+ "entity": "dog",
+ "caption": "the dog has a green collar",
+ "question": [
+ "is there the dog ?",
+ "is there a green collar ?"
+ ],
+ "prompt": "the {} has a green collar"
+ },
+ {
+ "index": 169,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This dog has his eyes closed",
+ "question": [
+ "is there this dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "This {} has his eyes closed"
+ },
+ {
+ "index": 170,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This snauser dog has long ears",
+ "question": [
+ "is there this snauser dog ?",
+ "are there long ears ?"
+ ],
+ "prompt": "This snauser {} has long ears"
+ },
+ {
+ "index": 171,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This dog has a pug nose",
+ "question": [
+ "is there this dog ?",
+ "is there a pug nose ?"
+ ],
+ "prompt": "This {} has a pug nose"
+ },
+ {
+ "index": 172,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "A dog's ear peeking out from the other side of its head",
+ "question": [
+ "is there a dog's ear ?",
+ "is there the other side ?",
+ "is there its head ?"
+ ],
+ "prompt": "A {}'s ear peeking out from the other side of its head"
+ },
+ {
+ "index": 173,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The dog is laying on a couch.",
+ "question": [
+ "is there the dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "The {} is laying on a couch."
+ },
+ {
+ "index": 174,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "black dog with eyes open",
+ "question": [
+ "is there black dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "black {} with eyes open"
+ },
+ {
+ "index": 175,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The dog has brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "The {} has brown eyes"
+ },
+ {
+ "index": 176,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The black dog likes laying on the couch",
+ "question": [
+ "is there the black dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The black {} likes laying on the couch"
+ },
+ {
+ "index": 177,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "the dog is laying on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is laying on the couch"
+ },
+ {
+ "index": 178,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "the dog's eye is brown",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is brown"
+ },
+ {
+ "index": 179,
+ "image_id": 2403359,
+ "entity": "dog",
+ "caption": "a dog and a horse share an Eskimo kiss",
+ "question": [
+ "is there a dog ?",
+ "is there a horse share ?"
+ ],
+ "prompt": "a {} and a horse share an Eskimo kiss"
+ },
+ {
+ "index": 180,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "large brown dog leashed to chair",
+ "question": [
+ "is there large brown dog ?",
+ "is there chair ?"
+ ],
+ "prompt": "large brown {} leashed to chair"
+ },
+ {
+ "index": 181,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "the dog is on deck",
+ "question": [
+ "is there the dog ?",
+ "is there deck ?"
+ ],
+ "prompt": "the {} is on deck"
+ },
+ {
+ "index": 182,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "the leash is on dog",
+ "question": [
+ "is there the leash ?",
+ "is there dog ?"
+ ],
+ "prompt": "the leash is on {}"
+ },
+ {
+ "index": 183,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "Leash tied on golden dog",
+ "question": [
+ "is there golden dog ?"
+ ],
+ "prompt": "Leash tied on golden {}"
+ },
+ {
+ "index": 184,
+ "image_id": 2402933,
+ "entity": "dog",
+ "caption": "the doggy has a party hat on",
+ "question": [
+ "is there the doggy ?",
+ "is there a party hat ?"
+ ],
+ "prompt": "the {}gy has a party hat on"
+ },
+ {
+ "index": 185,
+ "image_id": 2402933,
+ "entity": "dog",
+ "caption": "a stuffed animal is next to the dog",
+ "question": [
+ "is there a stuffed animal ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a stuffed animal is next to the {}"
+ },
+ {
+ "index": 186,
+ "image_id": 2402907,
+ "entity": "dog",
+ "caption": "The dog is standing on carpet",
+ "question": [
+ "is there the dog ?",
+ "is there carpet ?"
+ ],
+ "prompt": "The {} is standing on carpet"
+ },
+ {
+ "index": 187,
+ "image_id": 2402907,
+ "entity": "dog",
+ "caption": "The dog has a collar and tags",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?",
+ "are there tags ?"
+ ],
+ "prompt": "The {} has a collar and tags"
+ },
+ {
+ "index": 188,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "a dog cover the book",
+ "question": [
+ "is there a dog ?",
+ "is there the book ?"
+ ],
+ "prompt": "a {} cover the book"
+ },
+ {
+ "index": 189,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "the dog is looking to the left",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is looking to the left"
+ },
+ {
+ "index": 190,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "the dog has black eyes",
+ "question": [
+ "is there the dog ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "the {} has black eyes"
+ },
+ {
+ "index": 191,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's eyes are brown.",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are brown."
+ },
+ {
+ "index": 192,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's fur is brown and black.",
+ "question": [
+ "is there the dog's fur ?"
+ ],
+ "prompt": "The {}'s fur is brown and black."
+ },
+ {
+ "index": 193,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's tongue is pink.",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "The {}'s tongue is pink."
+ },
+ {
+ "index": 194,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's ears are down.",
+ "question": [
+ "are there the dog's ears ?"
+ ],
+ "prompt": "The {}'s ears are down."
+ },
+ {
+ "index": 195,
+ "image_id": 2402363,
+ "entity": "dog",
+ "caption": "the dog and the cat are on the pillow together",
+ "question": [
+ "is there the dog ?",
+ "is there the cat ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "the {} and the cat are on the pillow together"
+ },
+ {
+ "index": 196,
+ "image_id": 2402363,
+ "entity": "dog",
+ "caption": "cat and dog sleeping on pet bed together",
+ "question": [
+ "is there cat ?",
+ "is there dog ?",
+ "is there pet bed ?"
+ ],
+ "prompt": "cat and {} sleeping on pet bed together"
+ },
+ {
+ "index": 197,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in his mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in his mouth."
+ },
+ {
+ "index": 198,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "The dog has a white bushy tail.",
+ "question": [
+ "is there the dog ?",
+ "is there a white bushy tail ?"
+ ],
+ "prompt": "The {} has a white bushy tail."
+ },
+ {
+ "index": 199,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "A flower pot is on the side of the dog.",
+ "question": [
+ "is there a flower pot ?",
+ "is there the side ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A flower pot is on the side of the {}."
+ },
+ {
+ "index": 200,
+ "image_id": 2402059,
+ "entity": "dog",
+ "caption": "the dog has a human's tie around it's neck",
+ "question": [
+ "is there the dog ?",
+ "is there a human's tie ?",
+ "is there neck ?"
+ ],
+ "prompt": "the {} has a human's tie around it's neck"
+ },
+ {
+ "index": 201,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The head of the dog sitting down.",
+ "question": [
+ "is there the head ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The head of the {} sitting down."
+ },
+ {
+ "index": 202,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "Soft brown chair the dog sits on",
+ "question": [
+ "is there soft brown chair ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Soft brown chair the {} sits on"
+ },
+ {
+ "index": 203,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "dog sittin gin brown chiar",
+ "question": [
+ "is there dog ?",
+ "is there gin brown chiar ?"
+ ],
+ "prompt": "{} sittin gin brown chiar"
+ },
+ {
+ "index": 204,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The dog is black and brown.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is black and brown."
+ },
+ {
+ "index": 205,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The dog's nose is black.",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black."
+ },
+ {
+ "index": 206,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "the dog has ears",
+ "question": [
+ "is there the dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "the {} has ears"
+ },
+ {
+ "index": 207,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "the dog is wearing strap",
+ "question": [
+ "is there the dog ?",
+ "is there strap ?"
+ ],
+ "prompt": "the {} is wearing strap"
+ },
+ {
+ "index": 208,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "dog is wearing sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} is wearing sweater"
+ },
+ {
+ "index": 209,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "The sweater the dog is wearing",
+ "question": [
+ "is there the sweater ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The sweater the {} is wearing"
+ },
+ {
+ "index": 210,
+ "image_id": 2400958,
+ "entity": "dog",
+ "caption": "the man behind the dogs has blue jeans on",
+ "question": [
+ "is there the man ?",
+ "are there the dogs ?",
+ "are there blue jeans ?"
+ ],
+ "prompt": "the man behind the {}s has blue jeans on"
+ },
+ {
+ "index": 211,
+ "image_id": 2400958,
+ "entity": "dog",
+ "caption": "dog with tongue hanging out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} with tongue hanging out"
+ },
+ {
+ "index": 212,
+ "image_id": 2400922,
+ "entity": "dog",
+ "caption": "The dog is staring out the window.",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is staring out the window."
+ },
+ {
+ "index": 213,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "The dog is on a blanket.",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is on a blanket."
+ },
+ {
+ "index": 214,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "the dogs nose is pink.",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is pink."
+ },
+ {
+ "index": 215,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "the dogs tongue is pink.",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "the {}s tongue is pink."
+ },
+ {
+ "index": 216,
+ "image_id": 2400378,
+ "entity": "dog",
+ "caption": "this is the dog's head",
+ "question": [
+ "is there the dog's head ?"
+ ],
+ "prompt": "this is the {}'s head"
+ },
+ {
+ "index": 217,
+ "image_id": 2400368,
+ "entity": "dog",
+ "caption": "a dogs left paw",
+ "question": [
+ "are there a dogs ?",
+ "is there paw ?"
+ ],
+ "prompt": "a {}s left paw"
+ },
+ {
+ "index": 218,
+ "image_id": 2399686,
+ "entity": "dog",
+ "caption": "a dog with its ears perked up",
+ "question": [
+ "is there a dog ?",
+ "are there its ears ?"
+ ],
+ "prompt": "a {} with its ears perked up"
+ },
+ {
+ "index": 219,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs left eye",
+ "question": [
+ "are there the black dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the black {}s left eye"
+ },
+ {
+ "index": 220,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs right eye",
+ "question": [
+ "are there the black dogs ?"
+ ],
+ "prompt": "the black {}s right eye"
+ },
+ {
+ "index": 221,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "piece of wood dog is lying on",
+ "question": [
+ "is there piece ?",
+ "is there wood dog ?"
+ ],
+ "prompt": "piece of wood {} is lying on"
+ },
+ {
+ "index": 222,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs left ear",
+ "question": [
+ "are there the black dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "the black {}s left ear"
+ },
+ {
+ "index": 223,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "she is holding a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "she is holding a {}"
+ },
+ {
+ "index": 224,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "The girl's hand that is resting on the dog.",
+ "question": [
+ "is there the girl's hand ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The girl's hand that is resting on the {}."
+ },
+ {
+ "index": 225,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "Girl's hand is on the dog.",
+ "question": [
+ "is there girl's hand ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Girl's hand is on the {}."
+ },
+ {
+ "index": 226,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "this is a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "this is a {}"
+ },
+ {
+ "index": 227,
+ "image_id": 2397742,
+ "entity": "dog",
+ "caption": "a green rug the dog is laying on",
+ "question": [
+ "is there a green rug ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a green rug the {} is laying on"
+ },
+ {
+ "index": 228,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog is in front of a motorcycle.",
+ "question": [
+ "is there a dog ?",
+ "is there front ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "A {} is in front of a motorcycle."
+ },
+ {
+ "index": 229,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog has black and white spots.",
+ "question": [
+ "is there a dog ?",
+ "are there black and white spots ?"
+ ],
+ "prompt": "A {} has black and white spots."
+ },
+ {
+ "index": 230,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog is behind another dog.",
+ "question": [
+ "is there a dog ?",
+ "is there another dog ?"
+ ],
+ "prompt": "A {} is behind another {}."
+ },
+ {
+ "index": 231,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "motorbike parked behind dogs",
+ "question": [
+ "is there motorbike ?",
+ "are there dogs ?"
+ ],
+ "prompt": "motorbike parked behind {}s"
+ },
+ {
+ "index": 232,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the red collar the dog is wearing",
+ "question": [
+ "is there the red collar ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the red collar the {} is wearing"
+ },
+ {
+ "index": 233,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the green grass the dog is standing on",
+ "question": [
+ "is there the green grass ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the green grass the {} is standing on"
+ },
+ {
+ "index": 234,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the dogs colored leash",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s colored leash"
+ },
+ {
+ "index": 235,
+ "image_id": 2397368,
+ "entity": "dog",
+ "caption": "the dog is holding something on its mouth",
+ "question": [
+ "is there the dog ?",
+ "is there something ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} is holding something on its mouth"
+ },
+ {
+ "index": 236,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "dog has big brown eyes",
+ "question": [
+ "is there dog ?",
+ "are there big brown eyes ?"
+ ],
+ "prompt": "{} has big brown eyes"
+ },
+ {
+ "index": 237,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "dog has small black nose",
+ "question": [
+ "is there dog ?",
+ "is there small black nose ?"
+ ],
+ "prompt": "{} has small black nose"
+ },
+ {
+ "index": 238,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "collar on dog is black",
+ "question": [
+ "is there collar ?",
+ "is there dog ?"
+ ],
+ "prompt": "collar on {} is black"
+ },
+ {
+ "index": 239,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "the carpet the dog is standing on",
+ "question": [
+ "is there the carpet ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the carpet the {} is standing on"
+ },
+ {
+ "index": 240,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "the dogs tail",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s tail"
+ },
+ {
+ "index": 241,
+ "image_id": 2397165,
+ "entity": "dog",
+ "caption": "a dogs left paw.",
+ "question": [
+ "are there a dogs ?",
+ "is there paw ?"
+ ],
+ "prompt": "a {}s left paw."
+ },
+ {
+ "index": 242,
+ "image_id": 2396130,
+ "entity": "dog",
+ "caption": "A cushion a dog is lying on. ",
+ "question": [
+ "is there a cushion ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A cushion a {} is lying on. "
+ },
+ {
+ "index": 243,
+ "image_id": 2396130,
+ "entity": "dog",
+ "caption": "The dog is laying on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is laying on the couch."
+ },
+ {
+ "index": 244,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "dog is wearing a tiara",
+ "question": [
+ "is there dog ?",
+ "is there a tiara ?"
+ ],
+ "prompt": "{} is wearing a tiara"
+ },
+ {
+ "index": 245,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "the dog is wearing a tutu",
+ "question": [
+ "is there the dog ?",
+ "is there a tutu ?"
+ ],
+ "prompt": "the {} is wearing a tutu"
+ },
+ {
+ "index": 246,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "bulldog has big brown eye",
+ "question": [
+ "is there big brown eye ?"
+ ],
+ "prompt": "bull{} has big brown eye"
+ },
+ {
+ "index": 247,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest",
+ "question": [
+ "is there green ribbon ?",
+ "is there orange collar+ribbed orange vest ?"
+ ],
+ "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"
+ },
+ {
+ "index": 248,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "The dog is on top of the pillow",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "The {} is on top of the pillow"
+ },
+ {
+ "index": 249,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "The dog is hugging the stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there the stuffed animal ?"
+ ],
+ "prompt": "The {} is hugging the stuffed animal"
+ },
+ {
+ "index": 250,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "stuff is on the floor behind the dog",
+ "question": [
+ "is there stuff ?",
+ "is there the floor ?",
+ "is there the dog ?"
+ ],
+ "prompt": "stuff is on the floor behind the {}"
+ },
+ {
+ "index": 251,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "a white pillow is underneath the dog",
+ "question": [
+ "is there a white pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a white pillow is underneath the {}"
+ },
+ {
+ "index": 252,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "a black speaker is behind the dog",
+ "question": [
+ "is there a black speaker ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a black speaker is behind the {}"
+ },
+ {
+ "index": 253,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "old looking curtains is above the dog's head",
+ "question": [
+ "are there old looking curtains ?",
+ "is there the dog's head ?"
+ ],
+ "prompt": "old looking curtains is above the {}'s head"
+ },
+ {
+ "index": 254,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "grey run the dog is standing on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "grey run the {} is standing on"
+ },
+ {
+ "index": 255,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "cat and dog playing with each other ",
+ "question": [
+ "is there cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "cat and {} playing with each other "
+ },
+ {
+ "index": 256,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "head of dog is black",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is black"
+ },
+ {
+ "index": 257,
+ "image_id": 2394681,
+ "entity": "dog",
+ "caption": "The dog's tail is visible.",
+ "question": [
+ "is there the dog's tail ?"
+ ],
+ "prompt": "The {}'s tail is visible."
+ },
+ {
+ "index": 258,
+ "image_id": 2394681,
+ "entity": "dog",
+ "caption": "the dog has tail",
+ "question": [
+ "is there the dog ?",
+ "is there tail ?"
+ ],
+ "prompt": "the {} has tail"
+ },
+ {
+ "index": 259,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "the dog is wearing a hat",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "the {} is wearing a hat"
+ },
+ {
+ "index": 260,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "dog is wearing a fedora",
+ "question": [
+ "is there dog ?",
+ "is there a fedora ?"
+ ],
+ "prompt": "{} is wearing a fedora"
+ },
+ {
+ "index": 261,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "The dog has a toy.",
+ "question": [
+ "is there the dog ?",
+ "is there a toy ?"
+ ],
+ "prompt": "The {} has a toy."
+ },
+ {
+ "index": 262,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "The dog is laying on a pillow.",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "The {} is laying on a pillow."
+ },
+ {
+ "index": 263,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog is black and white.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is black and white."
+ },
+ {
+ "index": 264,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has white body with black spots",
+ "question": [
+ "is there dog ?",
+ "is there white body ?",
+ "are there black spots ?"
+ ],
+ "prompt": "{} has white body with black spots"
+ },
+ {
+ "index": 265,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has cast a shadow",
+ "question": [
+ "is there dog ?",
+ "is there a shadow ?"
+ ],
+ "prompt": "{} has cast a shadow"
+ },
+ {
+ "index": 266,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has big fluffy tail",
+ "question": [
+ "is there dog ?",
+ "is there big fluffy tail ?"
+ ],
+ "prompt": "{} has big fluffy tail"
+ },
+ {
+ "index": 267,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has tags on collar",
+ "question": [
+ "is there dog ?",
+ "are there tags ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} has tags on collar"
+ },
+ {
+ "index": 268,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog is wearing a white collar",
+ "question": [
+ "is there dog ?",
+ "is there a white collar ?"
+ ],
+ "prompt": "{} is wearing a white collar"
+ },
+ {
+ "index": 269,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog is black and white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is black and white"
+ },
+ {
+ "index": 270,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has frilly tail",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has frilly tail"
+ },
+ {
+ "index": 271,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has brown spots",
+ "question": [
+ "is there dog ?",
+ "are there brown spots ?"
+ ],
+ "prompt": "{} has brown spots"
+ },
+ {
+ "index": 272,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog wears white collar",
+ "question": [
+ "is there dog ?",
+ "is there white collar ?"
+ ],
+ "prompt": "{} wears white collar"
+ },
+ {
+ "index": 273,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "A dog is on the sand.",
+ "question": [
+ "is there a dog ?",
+ "is there the sand ?"
+ ],
+ "prompt": "A {} is on the sand."
+ },
+ {
+ "index": 274,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog is balck and white.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is balck and white."
+ },
+ {
+ "index": 275,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog has a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} has a collar."
+ },
+ {
+ "index": 276,
+ "image_id": 2394065,
+ "entity": "dog",
+ "caption": "The dog is licking the water bottle.",
+ "question": [
+ "is there the dog ?",
+ "is there the water bottle ?"
+ ],
+ "prompt": "The {} is licking the water bottle."
+ },
+ {
+ "index": 277,
+ "image_id": 2394065,
+ "entity": "dog",
+ "caption": "The dog is standing next to the person.",
+ "question": [
+ "is there the dog ?",
+ "is there the person ?"
+ ],
+ "prompt": "The {} is standing next to the person."
+ },
+ {
+ "index": 278,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "Aviator glasses on dogs face",
+ "question": [
+ "are there aviator glasses ?",
+ "are there dogs ?"
+ ],
+ "prompt": "Aviator glasses on {}s face"
+ },
+ {
+ "index": 279,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has glasses on",
+ "question": [
+ "is there the dog ?",
+ "are there glasses ?"
+ ],
+ "prompt": "The {} has glasses on"
+ },
+ {
+ "index": 280,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has a hat on",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "The {} has a hat on"
+ },
+ {
+ "index": 281,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has on a red bib",
+ "question": [
+ "is there the dog ?",
+ "is there a red bib ?"
+ ],
+ "prompt": "The {} has on a red bib"
+ },
+ {
+ "index": 282,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog is sitting in a seat",
+ "question": [
+ "is there the dog ?",
+ "is there a seat ?"
+ ],
+ "prompt": "The {} is sitting in a seat"
+ },
+ {
+ "index": 283,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "this is the dog's nose",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "this is the {}'s nose"
+ },
+ {
+ "index": 284,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "these are the dog's eyes",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "these are the {}'s eyes"
+ },
+ {
+ "index": 285,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "the dog's eye is orange",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is orange"
+ },
+ {
+ "index": 286,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "a dog with his eyes closed",
+ "question": [
+ "is there a dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "a {} with his eyes closed"
+ },
+ {
+ "index": 287,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog is on a boat",
+ "question": [
+ "is there dog ?",
+ "is there a boat ?"
+ ],
+ "prompt": "{} is on a boat"
+ },
+ {
+ "index": 288,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has a red collar on",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "{} has a red collar on"
+ },
+ {
+ "index": 289,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has a name tag",
+ "question": [
+ "is there dog ?",
+ "is there a name tag ?"
+ ],
+ "prompt": "{} has a name tag"
+ },
+ {
+ "index": 290,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has partially white fur",
+ "question": [
+ "is there dog ?",
+ "is there partially white fur ?"
+ ],
+ "prompt": "{} has partially white fur"
+ },
+ {
+ "index": 291,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "a dog is on the grass",
+ "question": [
+ "is there a dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "a {} is on the grass"
+ },
+ {
+ "index": 292,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog is drinking water",
+ "question": [
+ "is there dog ?",
+ "is there water ?"
+ ],
+ "prompt": "{} is drinking water"
+ },
+ {
+ "index": 293,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog is drinking water from a bottle",
+ "question": [
+ "is there dog ?",
+ "is there water ?",
+ "is there a bottle ?"
+ ],
+ "prompt": "{} is drinking water from a bottle"
+ },
+ {
+ "index": 294,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "water is dripping from the dogs face",
+ "question": [
+ "is there water ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "water is dripping from the {}s face"
+ },
+ {
+ "index": 295,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "thirsty dog is taking a drink",
+ "question": [
+ "is there thirsty dog ?",
+ "is there a drink ?"
+ ],
+ "prompt": "thirsty {} is taking a drink"
+ },
+ {
+ "index": 296,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog has drunk half the water bottle",
+ "question": [
+ "is there dog ?",
+ "is there half the water bottle ?"
+ ],
+ "prompt": "{} has drunk half the water bottle"
+ },
+ {
+ "index": 297,
+ "image_id": 2392606,
+ "entity": "dog",
+ "caption": "The two dogs are waring party hats.",
+ "question": [
+ "are there the two dogs ?",
+ "are there party hats ?"
+ ],
+ "prompt": "The two {}s are waring party hats."
+ },
+ {
+ "index": 298,
+ "image_id": 2392334,
+ "entity": "dog",
+ "caption": "The dog has long hair.",
+ "question": [
+ "is there the dog ?",
+ "is there long hair ?"
+ ],
+ "prompt": "The {} has long hair."
+ },
+ {
+ "index": 299,
+ "image_id": 2392334,
+ "entity": "dog",
+ "caption": "white dog wagging its tail",
+ "question": [
+ "is there white dog ?",
+ "is there its tail ?"
+ ],
+ "prompt": "white {} wagging its tail"
+ },
+ {
+ "index": 300,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "ears of dog are long",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are long"
+ },
+ {
+ "index": 301,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "tail of brown dog is furry",
+ "question": [
+ "is there tail ?",
+ "is there brown dog ?"
+ ],
+ "prompt": "tail of brown {} is furry"
+ },
+ {
+ "index": 302,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "nose of dog is black",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is black"
+ },
+ {
+ "index": 303,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog wears attentive expression",
+ "question": [
+ "is there dog ?",
+ "is there attentive expression ?"
+ ],
+ "prompt": "{} wears attentive expression"
+ },
+ {
+ "index": 304,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog has soulful eye, folded down ear",
+ "question": [
+ "is there dog ?",
+ "is there soulful eye ?",
+ "is there ear ?"
+ ],
+ "prompt": "{} has soulful eye, folded down ear"
+ },
+ {
+ "index": 305,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog is wearing dog collar",
+ "question": [
+ "is there dog ?",
+ "is there dog collar ?"
+ ],
+ "prompt": "{} is wearing {} collar"
+ },
+ {
+ "index": 306,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "the dog collar is black",
+ "question": [
+ "is there the dog collar ?"
+ ],
+ "prompt": "the {} collar is black"
+ },
+ {
+ "index": 307,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "dog has black leash",
+ "question": [
+ "is there dog ?",
+ "is there black leash ?"
+ ],
+ "prompt": "{} has black leash"
+ },
+ {
+ "index": 308,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "dog has black fur",
+ "question": [
+ "is there dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "{} has black fur"
+ },
+ {
+ "index": 309,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "this is a dog collar",
+ "question": [
+ "is there a dog collar ?"
+ ],
+ "prompt": "this is a {} collar"
+ },
+ {
+ "index": 310,
+ "image_id": 2390915,
+ "entity": "dog",
+ "caption": "dog has brown eyes",
+ "question": [
+ "is there dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "{} has brown eyes"
+ },
+ {
+ "index": 311,
+ "image_id": 2390915,
+ "entity": "dog",
+ "caption": "these are the dog's paws",
+ "question": [
+ "are there the dog's paws ?"
+ ],
+ "prompt": "these are the {}'s paws"
+ },
+ {
+ "index": 312,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "a dog is lying on his side",
+ "question": [
+ "is there a dog ?",
+ "is there his side ?"
+ ],
+ "prompt": "a {} is lying on his side"
+ },
+ {
+ "index": 313,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "ear of dog is long",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is long"
+ },
+ {
+ "index": 314,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "The dog's eyes are wide open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are wide open"
+ },
+ {
+ "index": 315,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "The dog is relaxing",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is relaxing"
+ },
+ {
+ "index": 316,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "The dog has nose",
+ "question": [
+ "is there the dog ?",
+ "is there nose ?"
+ ],
+ "prompt": "The {} has nose"
+ },
+ {
+ "index": 317,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "the sling is on dog",
+ "question": [
+ "is there the sling ?",
+ "is there dog ?"
+ ],
+ "prompt": "the sling is on {}"
+ },
+ {
+ "index": 318,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "the eyes are on the dog",
+ "question": [
+ "are there the eyes ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the eyes are on the {}"
+ },
+ {
+ "index": 319,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog's tongue hanging out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue hanging out"
+ },
+ {
+ "index": 320,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog closes his eyes",
+ "question": [
+ "is there the dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "The {} closes his eyes"
+ },
+ {
+ "index": 321,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dogs fur is wet",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "The {}s fur is wet"
+ },
+ {
+ "index": 322,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog has collar on",
+ "question": [
+ "is there the dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "The {} has collar on"
+ },
+ {
+ "index": 323,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog has a black nose",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose"
+ },
+ {
+ "index": 324,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dogs eye is closed",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is closed"
+ },
+ {
+ "index": 325,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog has a large pink tounge",
+ "question": [
+ "is there dog ?",
+ "is there a large pink tounge ?"
+ ],
+ "prompt": "{} has a large pink tounge"
+ },
+ {
+ "index": 326,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "shallow water with dog paws submerged",
+ "question": [
+ "is there shallow water ?",
+ "are there dog paws ?"
+ ],
+ "prompt": "shallow water with {} paws submerged"
+ },
+ {
+ "index": 327,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "tan dog standing in the ocean",
+ "question": [
+ "is there the ocean ?"
+ ],
+ "prompt": "tan {} standing in the ocean"
+ },
+ {
+ "index": 328,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog with his tongue hanging out",
+ "question": [
+ "is there dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "{} with his tongue hanging out"
+ },
+ {
+ "index": 329,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "Th enose od the dog.",
+ "question": [
+ "is there th enose ?",
+ "is there od the dog ?"
+ ],
+ "prompt": "Th enose od the {}."
+ },
+ {
+ "index": 330,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dog rests his head.",
+ "question": [
+ "is there the dog ?",
+ "is there his head ?"
+ ],
+ "prompt": "The {} rests his head."
+ },
+ {
+ "index": 331,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dogs ear",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear"
+ },
+ {
+ "index": 332,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dogs left eye",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye"
+ },
+ {
+ "index": 333,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "long black dog tail curved up",
+ "question": [
+ "is there long black dog tail ?"
+ ],
+ "prompt": "long black {} tail curved up"
+ },
+ {
+ "index": 334,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has a white spot on it's leg",
+ "question": [
+ "is there the dog ?",
+ "is there a white spot ?",
+ "is there it's leg ?"
+ ],
+ "prompt": "the {} has a white spot on it's leg"
+ },
+ {
+ "index": 335,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has a long tail",
+ "question": [
+ "is there the dog ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "the {} has a long tail"
+ },
+ {
+ "index": 336,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has black paw pads",
+ "question": [
+ "is there the dog ?",
+ "are there black paw pads ?"
+ ],
+ "prompt": "the {} has black paw pads"
+ },
+ {
+ "index": 337,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "dog ears are floppy",
+ "question": [
+ "are there dog ears ?"
+ ],
+ "prompt": "{} ears are floppy"
+ },
+ {
+ "index": 338,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "dog eyes are cute",
+ "question": [
+ "are there dog eyes ?"
+ ],
+ "prompt": "{} eyes are cute"
+ },
+ {
+ "index": 339,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "the dog's eyes are closed",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are closed"
+ },
+ {
+ "index": 340,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "The dog has tags on ",
+ "question": [
+ "is there the dog ?",
+ "are there tags ?"
+ ],
+ "prompt": "The {} has tags on "
+ },
+ {
+ "index": 341,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "Mans toes beside dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "Mans toes beside {}"
+ },
+ {
+ "index": 342,
+ "image_id": 2389636,
+ "entity": "dog",
+ "caption": "the dog has nose",
+ "question": [
+ "is there the dog ?",
+ "is there nose ?"
+ ],
+ "prompt": "the {} has nose"
+ },
+ {
+ "index": 343,
+ "image_id": 2388972,
+ "entity": "dog",
+ "caption": "the grass is below the dog",
+ "question": [
+ "is there the grass ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the grass is below the {}"
+ },
+ {
+ "index": 344,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "white dog is standing looking out on the yard",
+ "question": [
+ "is there white dog ?",
+ "is there the yard ?"
+ ],
+ "prompt": "white {} is standing looking out on the yard"
+ },
+ {
+ "index": 345,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog is mostly white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is mostly white"
+ },
+ {
+ "index": 346,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has brown ears",
+ "question": [
+ "is there dog ?",
+ "are there brown ears ?"
+ ],
+ "prompt": "{} has brown ears"
+ },
+ {
+ "index": 347,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has black collar",
+ "question": [
+ "is there dog ?",
+ "is there black collar ?"
+ ],
+ "prompt": "{} has black collar"
+ },
+ {
+ "index": 348,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has white legs",
+ "question": [
+ "is there dog ?",
+ "are there white legs ?"
+ ],
+ "prompt": "{} has white legs"
+ },
+ {
+ "index": 349,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The dog has its head on a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "The {} has its head on a stuffed animal"
+ },
+ {
+ "index": 350,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The gate is behind the dog",
+ "question": [
+ "is there the gate ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The gate is behind the {}"
+ },
+ {
+ "index": 351,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The dog is lying on wood",
+ "question": [
+ "is there the dog ?",
+ "is there wood ?"
+ ],
+ "prompt": "The {} is lying on wood"
+ },
+ {
+ "index": 352,
+ "image_id": 2388066,
+ "entity": "dog",
+ "caption": "dog jumping for frisbee",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?"
+ ],
+ "prompt": "{} jumping for frisbee"
+ },
+ {
+ "index": 353,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "all are secondary to small dog chewing large toothbrush",
+ "question": [
+ "is there small dog ?",
+ "is there large toothbrush ?"
+ ],
+ "prompt": "all are secondary to small {} chewing large toothbrush"
+ },
+ {
+ "index": 354,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "a dog is lying on a bed",
+ "question": [
+ "is there a dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "a {} is lying on a bed"
+ },
+ {
+ "index": 355,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "body of dog is brown",
+ "question": [
+ "is there body ?",
+ "is there dog ?"
+ ],
+ "prompt": "body of {} is brown"
+ },
+ {
+ "index": 356,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "head of dog is brown and white",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is brown and white"
+ },
+ {
+ "index": 357,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "ears of dog are brown",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are brown"
+ },
+ {
+ "index": 358,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "dog has a toothbrush in his mouth",
+ "question": [
+ "is there dog ?",
+ "is there a toothbrush ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has a toothbrush in his mouth"
+ },
+ {
+ "index": 359,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "tail of dog is long and curly",
+ "question": [
+ "is there tail ?",
+ "is there dog ?"
+ ],
+ "prompt": "tail of {} is long and curly"
+ },
+ {
+ "index": 360,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "front legs of dog are long",
+ "question": [
+ "are there front legs ?",
+ "is there dog ?"
+ ],
+ "prompt": "front legs of {} are long"
+ },
+ {
+ "index": 361,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "The dog has a white spot.",
+ "question": [
+ "is there the dog ?",
+ "is there a white spot ?"
+ ],
+ "prompt": "The {} has a white spot."
+ },
+ {
+ "index": 362,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog looks out window",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} looks out window"
+ },
+ {
+ "index": 363,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has dark nose",
+ "question": [
+ "is there dog ?",
+ "is there dark nose ?"
+ ],
+ "prompt": "{} has dark nose"
+ },
+ {
+ "index": 364,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has spotted ears",
+ "question": [
+ "is there dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "{} has spotted ears"
+ },
+ {
+ "index": 365,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has spotted face",
+ "question": [
+ "is there dog ?",
+ "is there face ?"
+ ],
+ "prompt": "{} has spotted face"
+ },
+ {
+ "index": 366,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog is wearing glasses",
+ "question": [
+ "is there dog ?",
+ "are there glasses ?"
+ ],
+ "prompt": "{} is wearing glasses"
+ },
+ {
+ "index": 367,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog has multicolor bandanna",
+ "question": [
+ "is there dog ?",
+ "is there multicolor bandanna ?"
+ ],
+ "prompt": "{} has multicolor bandanna"
+ },
+ {
+ "index": 368,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog has white paws",
+ "question": [
+ "is there dog ?",
+ "are there white paws ?"
+ ],
+ "prompt": "{} has white paws"
+ },
+ {
+ "index": 369,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog is on skateboard",
+ "question": [
+ "is there dog ?",
+ "is there skateboard ?"
+ ],
+ "prompt": "{} is on skateboard"
+ },
+ {
+ "index": 370,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "The dog is on a leash.",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "The {} is on a leash."
+ },
+ {
+ "index": 371,
+ "image_id": 2387470,
+ "entity": "dog",
+ "caption": "The dog's mouth is open. ",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is open. "
+ },
+ {
+ "index": 372,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "black dog jumping in air",
+ "question": [
+ "is there black dog ?",
+ "is there air ?"
+ ],
+ "prompt": "black {} jumping in air"
+ },
+ {
+ "index": 373,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "dog has red collar",
+ "question": [
+ "is there dog ?",
+ "is there red collar ?"
+ ],
+ "prompt": "{} has red collar"
+ },
+ {
+ "index": 374,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "dog has short curly tail",
+ "question": [
+ "is there dog ?",
+ "is there short curly tail ?"
+ ],
+ "prompt": "{} has short curly tail"
+ },
+ {
+ "index": 375,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "grass under dog is green",
+ "question": [
+ "is there grass ?",
+ "is there dog ?"
+ ],
+ "prompt": "grass under {} is green"
+ },
+ {
+ "index": 376,
+ "image_id": 2387387,
+ "entity": "dog",
+ "caption": "dog's tongue sticking out of mouth",
+ "question": [
+ "is there dog's tongue ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{}'s tongue sticking out of mouth"
+ },
+ {
+ "index": 377,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} has a red collar"
+ },
+ {
+ "index": 378,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a brown nose",
+ "question": [
+ "is there the dog ?",
+ "is there a brown nose ?"
+ ],
+ "prompt": "the {} has a brown nose"
+ },
+ {
+ "index": 379,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the cat is under the dog's chin",
+ "question": [
+ "is there the cat ?",
+ "is there the dog's chin ?"
+ ],
+ "prompt": "the cat is under the {}'s chin"
+ },
+ {
+ "index": 380,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a white face",
+ "question": [
+ "is there the dog ?",
+ "is there a white face ?"
+ ],
+ "prompt": "the {} has a white face"
+ },
+ {
+ "index": 381,
+ "image_id": 2386600,
+ "entity": "dog",
+ "caption": "The frisbee is in front of the dog",
+ "question": [
+ "is there the frisbee ?",
+ "is there front ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The frisbee is in front of the {}"
+ },
+ {
+ "index": 382,
+ "image_id": 2386600,
+ "entity": "dog",
+ "caption": "dog's teeth showing",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth showing"
+ },
+ {
+ "index": 383,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "The dog has a black nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose."
+ },
+ {
+ "index": 384,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "red bandana dog is wearing",
+ "question": [
+ "is there red bandana dog ?"
+ ],
+ "prompt": "red bandana {} is wearing"
+ },
+ {
+ "index": 385,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "dog's face looking at frisbees",
+ "question": [
+ "is there dog's face ?",
+ "are there frisbees ?"
+ ],
+ "prompt": "{}'s face looking at frisbees"
+ },
+ {
+ "index": 386,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "dog is laying on suit case",
+ "question": [
+ "is there dog ?",
+ "is there suit case ?"
+ ],
+ "prompt": "{} is laying on suit case"
+ },
+ {
+ "index": 387,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "The dog is wearing a gold tag.",
+ "question": [
+ "is there the dog ?",
+ "is there a gold tag ?"
+ ],
+ "prompt": "The {} is wearing a gold tag."
+ },
+ {
+ "index": 388,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "The dog is sitting on a suitcase.",
+ "question": [
+ "is there the dog ?",
+ "is there a suitcase ?"
+ ],
+ "prompt": "The {} is sitting on a suitcase."
+ },
+ {
+ "index": 389,
+ "image_id": 2386037,
+ "entity": "dog",
+ "caption": "dog is jumping above ground",
+ "question": [
+ "is there dog ?",
+ "is there ground ?"
+ ],
+ "prompt": "{} is jumping above ground"
+ },
+ {
+ "index": 390,
+ "image_id": 2386037,
+ "entity": "dog",
+ "caption": "dog is wearing collar",
+ "question": [
+ "is there dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} is wearing collar"
+ },
+ {
+ "index": 391,
+ "image_id": 2386031,
+ "entity": "dog",
+ "caption": "dog's tail is up in the air",
+ "question": [
+ "is there dog's tail ?",
+ "is there the air ?"
+ ],
+ "prompt": "{}'s tail is up in the air"
+ },
+ {
+ "index": 392,
+ "image_id": 2386031,
+ "entity": "dog",
+ "caption": "dog's left perked up ear",
+ "question": [
+ "is there ear ?"
+ ],
+ "prompt": "{}'s left perked up ear"
+ },
+ {
+ "index": 393,
+ "image_id": 2386010,
+ "entity": "dog",
+ "caption": "dogs face in a side mirror",
+ "question": [
+ "are there dogs ?",
+ "is there a side mirror ?"
+ ],
+ "prompt": "{}s face in a side mirror"
+ },
+ {
+ "index": 394,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "nose of dog is wet",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is wet"
+ },
+ {
+ "index": 395,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "eyes of dog are wide open",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are wide open"
+ },
+ {
+ "index": 396,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the frisbee is in the dog's mouth",
+ "question": [
+ "is there the frisbee ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "the frisbee is in the {}'s mouth"
+ },
+ {
+ "index": 397,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the dog's eyes are wild and wide open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are wild and wide open"
+ },
+ {
+ "index": 398,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the face of the dog is tricolored",
+ "question": [
+ "is there the face ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the face of the {} is tricolored"
+ },
+ {
+ "index": 399,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the dog's paw is white",
+ "question": [
+ "is there the dog's paw ?"
+ ],
+ "prompt": "the {}'s paw is white"
+ },
+ {
+ "index": 400,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "grass is under the the dog",
+ "question": [
+ "is there grass ?",
+ "is there the the dog ?"
+ ],
+ "prompt": "grass is under the the {}"
+ },
+ {
+ "index": 401,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog is wearing a cap",
+ "question": [
+ "is there dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "{} is wearing a cap"
+ },
+ {
+ "index": 402,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog is wearing eyeglasses",
+ "question": [
+ "is there dog ?",
+ "are there eyeglasses ?"
+ ],
+ "prompt": "{} is wearing eyeglasses"
+ },
+ {
+ "index": 403,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog's mouth is open",
+ "question": [
+ "is there dog's mouth ?"
+ ],
+ "prompt": "{}'s mouth is open"
+ },
+ {
+ "index": 404,
+ "image_id": 2385762,
+ "entity": "dog",
+ "caption": "a dog has a retractable leash attached to the collar",
+ "question": [
+ "is there a dog ?",
+ "is there a retractable leash ?",
+ "is there the collar ?"
+ ],
+ "prompt": "a {} has a retractable leash attached to the collar"
+ },
+ {
+ "index": 405,
+ "image_id": 2385757,
+ "entity": "dog",
+ "caption": "dog laying in dirt with eyes closed",
+ "question": [
+ "is there dog ?",
+ "is there dirt ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} laying in dirt with eyes closed"
+ },
+ {
+ "index": 406,
+ "image_id": 2385595,
+ "entity": "dog",
+ "caption": "the dog is lying on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is lying on the bed"
+ },
+ {
+ "index": 407,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man is holding two dogs",
+ "question": [
+ "is there man ?",
+ "are there two dogs ?"
+ ],
+ "prompt": "man is holding two {}s"
+ },
+ {
+ "index": 408,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "dog in rear has red collar",
+ "question": [
+ "is there dog ?",
+ "is there rear ?",
+ "is there red collar ?"
+ ],
+ "prompt": "{} in rear has red collar"
+ },
+ {
+ "index": 409,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man is crouching near two dogs",
+ "question": [
+ "is there man ?",
+ "are there two dogs ?"
+ ],
+ "prompt": "man is crouching near two {}s"
+ },
+ {
+ "index": 410,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "dog with its mouth wide open",
+ "question": [
+ "is there dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "{} with its mouth wide open"
+ },
+ {
+ "index": 411,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man's hand resting on dog's hip",
+ "question": [
+ "is there man's hand ?",
+ "is there dog's hip ?"
+ ],
+ "prompt": "man's hand resting on {}'s hip"
+ },
+ {
+ "index": 412,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's eyes are brown",
+ "question": [
+ "are there dog's eyes ?"
+ ],
+ "prompt": "{}'s eyes are brown"
+ },
+ {
+ "index": 413,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's whiskers are white",
+ "question": [
+ "are there dog's whiskers ?"
+ ],
+ "prompt": "{}'s whiskers are white"
+ },
+ {
+ "index": 414,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog is next to the window",
+ "question": [
+ "is there dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "{} is next to the window"
+ },
+ {
+ "index": 415,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's ears are down",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are down"
+ },
+ {
+ "index": 416,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog has a silver tag",
+ "question": [
+ "is there the dog ?",
+ "is there a silver tag ?"
+ ],
+ "prompt": "the {} has a silver tag"
+ },
+ {
+ "index": 417,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog is in the passenger seat",
+ "question": [
+ "is there the dog ?",
+ "is there the passenger seat ?"
+ ],
+ "prompt": "the {} is in the passenger seat"
+ },
+ {
+ "index": 418,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog has white parts of the eyes showing",
+ "question": [
+ "is there the dog ?",
+ "are there white parts ?",
+ "are there the eyes ?"
+ ],
+ "prompt": "the {} has white parts of the eyes showing"
+ },
+ {
+ "index": 419,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "A dog has a tag",
+ "question": [
+ "is there a dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "A {} has a tag"
+ },
+ {
+ "index": 420,
+ "image_id": 2385345,
+ "entity": "dog",
+ "caption": "the dog is leaning on the bedding",
+ "question": [
+ "is there the dog ?",
+ "is there the bedding ?"
+ ],
+ "prompt": "the {} is leaning on the bedding"
+ },
+ {
+ "index": 421,
+ "image_id": 2385345,
+ "entity": "dog",
+ "caption": "the bed is behind the dog",
+ "question": [
+ "is there the bed ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the bed is behind the {}"
+ },
+ {
+ "index": 422,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "white dog is lying on a bed",
+ "question": [
+ "is there white dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "white {} is lying on a bed"
+ },
+ {
+ "index": 423,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "tail of dog is on bed",
+ "question": [
+ "is there tail ?",
+ "is there dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "tail of {} is on bed"
+ },
+ {
+ "index": 424,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "eyes of dog are black",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are black"
+ },
+ {
+ "index": 425,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "eyes and nose of dog are black",
+ "question": [
+ "are there eyes ?",
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes and nose of {} are black"
+ },
+ {
+ "index": 426,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "a dog collar has a tag",
+ "question": [
+ "is there a dog collar ?",
+ "is there a tag ?"
+ ],
+ "prompt": "a {} collar has a tag"
+ },
+ {
+ "index": 427,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "legs and chest of dog are white",
+ "question": [
+ "are there legs ?",
+ "is there chest ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs and chest of {} are white"
+ },
+ {
+ "index": 428,
+ "image_id": 2384917,
+ "entity": "dog",
+ "caption": "dogs tongue sticking out",
+ "question": [
+ "are there dogs ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{}s tongue sticking out"
+ },
+ {
+ "index": 429,
+ "image_id": 2384917,
+ "entity": "dog",
+ "caption": "brown pointy ear on dog",
+ "question": [
+ "is there brown pointy ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "brown pointy ear on {}"
+ },
+ {
+ "index": 430,
+ "image_id": 2384563,
+ "entity": "dog",
+ "caption": "dog curled up on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} curled up on a couch"
+ },
+ {
+ "index": 431,
+ "image_id": 2384563,
+ "entity": "dog",
+ "caption": "a dog curled up on a cushion",
+ "question": [
+ "is there a dog ?",
+ "is there a cushion ?"
+ ],
+ "prompt": "a {} curled up on a cushion"
+ },
+ {
+ "index": 432,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "dog is wearing a green collar ",
+ "question": [
+ "is there dog ?",
+ "is there a green collar ?"
+ ],
+ "prompt": "{} is wearing a green collar "
+ },
+ {
+ "index": 433,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "the dogs ear is bent ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s ear is bent "
+ },
+ {
+ "index": 434,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "the dogs ear ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s ear "
+ },
+ {
+ "index": 435,
+ "image_id": 2384424,
+ "entity": "dog",
+ "caption": "the dog is beside the bike",
+ "question": [
+ "is there the dog ?",
+ "is there the bike ?"
+ ],
+ "prompt": "the {} is beside the bike"
+ },
+ {
+ "index": 436,
+ "image_id": 2384322,
+ "entity": "dog",
+ "caption": "Reindeer stuffed animal on the dog.",
+ "question": [
+ "is there reindeer ?",
+ "is there animal ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Reindeer stuffed animal on the {}."
+ },
+ {
+ "index": 437,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "dog's collar is green",
+ "question": [
+ "is there dog's collar ?"
+ ],
+ "prompt": "{}'s collar is green"
+ },
+ {
+ "index": 438,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "the dog bed is plaid patterned",
+ "question": [
+ "is there the dog bed ?"
+ ],
+ "prompt": "the {} bed is plaid patterned"
+ },
+ {
+ "index": 439,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "dog's ears pointing upwards",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears pointing upwards"
+ },
+ {
+ "index": 440,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "Black pillow dog is laying on",
+ "question": [
+ "is there black pillow dog ?"
+ ],
+ "prompt": "Black pillow {} is laying on"
+ },
+ {
+ "index": 441,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "Collar dog is wearing",
+ "question": [
+ "is there collar dog ?"
+ ],
+ "prompt": "Collar {} is wearing"
+ },
+ {
+ "index": 442,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is tan",
+ "question": [
+ "is there dog toy ?",
+ "is there tan ?"
+ ],
+ "prompt": "{} toy is tan"
+ },
+ {
+ "index": 443,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is lying on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is lying on the floor"
+ },
+ {
+ "index": 444,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has the toy in it's mouth",
+ "question": [
+ "is there dog ?",
+ "is there the toy ?"
+ ],
+ "prompt": "{} has the toy in it's mouth"
+ },
+ {
+ "index": 445,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is tan and hairy",
+ "question": [
+ "is there dog toy ?"
+ ],
+ "prompt": "{} toy is tan and hairy"
+ },
+ {
+ "index": 446,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has whiskers that are white",
+ "question": [
+ "is there dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "{} has whiskers that are white"
+ },
+ {
+ "index": 447,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is laying on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is laying on the floor"
+ },
+ {
+ "index": 448,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has black ears",
+ "question": [
+ "is there dog ?",
+ "are there black ears ?"
+ ],
+ "prompt": "{} has black ears"
+ },
+ {
+ "index": 449,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is lying down on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is lying down on the floor"
+ },
+ {
+ "index": 450,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is brown",
+ "question": [
+ "is there dog toy ?"
+ ],
+ "prompt": "{} toy is brown"
+ },
+ {
+ "index": 451,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has toy in it's mouth",
+ "question": [
+ "is there dog ?",
+ "is there toy ?",
+ "is there it's mouth ?"
+ ],
+ "prompt": "{} has toy in it's mouth"
+ },
+ {
+ "index": 452,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has white whiskers",
+ "question": [
+ "is there dog ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "{} has white whiskers"
+ },
+ {
+ "index": 453,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has a nose",
+ "question": [
+ "is there the dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "the {} has a nose"
+ },
+ {
+ "index": 454,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has eyes",
+ "question": [
+ "is there the dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {} has eyes"
+ },
+ {
+ "index": 455,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has an ear",
+ "question": [
+ "is there the dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "the {} has an ear"
+ },
+ {
+ "index": 456,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "The dog's face looks angry",
+ "question": [
+ "is there the dog's face ?"
+ ],
+ "prompt": "The {}'s face looks angry"
+ },
+ {
+ "index": 457,
+ "image_id": 2383242,
+ "entity": "dog",
+ "caption": "The dog is between the persons legs",
+ "question": [
+ "is there the dog ?",
+ "are there the persons legs ?"
+ ],
+ "prompt": "The {} is between the persons legs"
+ },
+ {
+ "index": 458,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is on the counter",
+ "question": [
+ "is there the dog ?",
+ "is there the counter ?"
+ ],
+ "prompt": "The {} is on the counter"
+ },
+ {
+ "index": 459,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dogs nose is black",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is black"
+ },
+ {
+ "index": 460,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog has long fur.",
+ "question": [
+ "is there the dog ?",
+ "is there long fur ?"
+ ],
+ "prompt": "The {} has long fur."
+ },
+ {
+ "index": 461,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is on a table.",
+ "question": [
+ "is there the dog ?",
+ "is there a table ?"
+ ],
+ "prompt": "The {} is on a table."
+ },
+ {
+ "index": 462,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is sniffing the newspaper.",
+ "question": [
+ "is there the dog ?",
+ "is there the newspaper ?"
+ ],
+ "prompt": "The {} is sniffing the newspaper."
+ },
+ {
+ "index": 463,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog has curly fur",
+ "question": [
+ "is there the dog ?",
+ "is there curly fur ?"
+ ],
+ "prompt": "The {} has curly fur"
+ },
+ {
+ "index": 464,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s nose is black",
+ "question": [
+ "is there the dog`s nose ?"
+ ],
+ "prompt": "the {}`s nose is black"
+ },
+ {
+ "index": 465,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s eyes are black",
+ "question": [
+ "are there the dog`s eyes ?"
+ ],
+ "prompt": "the {}`s eyes are black"
+ },
+ {
+ "index": 466,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s hair is curly",
+ "question": [
+ "is there the dog`s hair ?"
+ ],
+ "prompt": "the {}`s hair is curly"
+ },
+ {
+ "index": 467,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog is smelling the paper",
+ "question": [
+ "is there the dog ?",
+ "is there the paper ?"
+ ],
+ "prompt": "the {} is smelling the paper"
+ },
+ {
+ "index": 468,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "a dog is asleep",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "a {} is asleep"
+ },
+ {
+ "index": 469,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog's paw is on the remote",
+ "question": [
+ "is there the dog's paw ?",
+ "is there the remote ?"
+ ],
+ "prompt": "The {}'s paw is on the remote"
+ },
+ {
+ "index": 470,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog's eyes are closed",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are closed"
+ },
+ {
+ "index": 471,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog is sleep on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there sleep ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is sleep on the couch."
+ },
+ {
+ "index": 472,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog has two ears.",
+ "question": [
+ "is there the dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "The {} has two ears."
+ },
+ {
+ "index": 473,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "A dog is in the foreground",
+ "question": [
+ "is there a dog ?",
+ "is there the foreground ?"
+ ],
+ "prompt": "A {} is in the foreground"
+ },
+ {
+ "index": 474,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "the dog`s nose is brown",
+ "question": [
+ "is there the dog`s nose ?"
+ ],
+ "prompt": "the {}`s nose is brown"
+ },
+ {
+ "index": 475,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "the dog`s stomach is wet",
+ "question": [
+ "is there the dog`s stomach ?"
+ ],
+ "prompt": "the {}`s stomach is wet"
+ },
+ {
+ "index": 476,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "dog is in the beach",
+ "question": [
+ "is there dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "{} is in the beach"
+ },
+ {
+ "index": 477,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "tail of dog is up",
+ "question": [
+ "is there tail ?",
+ "is there dog ?"
+ ],
+ "prompt": "tail of {} is up"
+ },
+ {
+ "index": 478,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "face of dog is white and brown",
+ "question": [
+ "is there face ?",
+ "is there dog ?"
+ ],
+ "prompt": "face of {} is white and brown"
+ },
+ {
+ "index": 479,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "collar of dog is black",
+ "question": [
+ "is there collar ?",
+ "is there dog ?"
+ ],
+ "prompt": "collar of {} is black"
+ },
+ {
+ "index": 480,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "ears of dog are down ",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are down "
+ },
+ {
+ "index": 481,
+ "image_id": 2381848,
+ "entity": "dog",
+ "caption": "ear of dog is brown",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is brown"
+ },
+ {
+ "index": 482,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "Leash attached to the dog",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Leash attached to the {}"
+ },
+ {
+ "index": 483,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "the dog is wearing a floater",
+ "question": [
+ "is there the dog ?",
+ "is there a floater ?"
+ ],
+ "prompt": "the {} is wearing a floater"
+ },
+ {
+ "index": 484,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "this is the rope tying the dog",
+ "question": [
+ "is there the rope ?",
+ "is there the dog ?"
+ ],
+ "prompt": "this is the rope tying the {}"
+ },
+ {
+ "index": 485,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "bull dog is wearing a black and red vest ",
+ "question": [
+ "is there bull dog ?",
+ "is there a black and red vest ?"
+ ],
+ "prompt": "bull {} is wearing a black and red vest "
+ },
+ {
+ "index": 486,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "bull dog is standing on a blue surfboard ",
+ "question": [
+ "is there bull dog ?",
+ "is there a blue surfboard ?"
+ ],
+ "prompt": "bull {} is standing on a blue surfboard "
+ },
+ {
+ "index": 487,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog has an overbite",
+ "question": [
+ "is there the dog ?",
+ "is there an overbite ?"
+ ],
+ "prompt": "the {} has an overbite"
+ },
+ {
+ "index": 488,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog is wearing a life vest",
+ "question": [
+ "is there the dog ?",
+ "is there a life vest ?"
+ ],
+ "prompt": "the {} is wearing a life vest"
+ },
+ {
+ "index": 489,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog has front legs",
+ "question": [
+ "is there the dog ?",
+ "are there front legs ?"
+ ],
+ "prompt": "the {} has front legs"
+ },
+ {
+ "index": 490,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog is on the board",
+ "question": [
+ "is there the dog ?",
+ "is there the board ?"
+ ],
+ "prompt": "the {} is on the board"
+ },
+ {
+ "index": 491,
+ "image_id": 2381375,
+ "entity": "dog",
+ "caption": "the dog is lying on the ground",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is lying on the ground"
+ },
+ {
+ "index": 492,
+ "image_id": 2381375,
+ "entity": "dog",
+ "caption": "the dog is on a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "the {} is on a leash"
+ },
+ {
+ "index": 493,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's reflection is in a mirror.",
+ "question": [
+ "is there the dog's reflection ?",
+ "is there a mirror ?"
+ ],
+ "prompt": "The {}'s reflection is in a mirror."
+ },
+ {
+ "index": 494,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's tongue is showing. ",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "The {}'s tongue is showing. "
+ },
+ {
+ "index": 495,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's legs are in the foreground.",
+ "question": [
+ "are there the dog's legs ?",
+ "is there the foreground ?"
+ ],
+ "prompt": "The {}'s legs are in the foreground."
+ },
+ {
+ "index": 496,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's nose is black. ",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black. "
+ },
+ {
+ "index": 497,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has an eye",
+ "question": [
+ "is there the dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "the {} has an eye"
+ },
+ {
+ "index": 498,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has a tongue",
+ "question": [
+ "is there the dog ?",
+ "is there a tongue ?"
+ ],
+ "prompt": "the {} has a tongue"
+ },
+ {
+ "index": 499,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has a long ear",
+ "question": [
+ "is there the dog ?",
+ "is there a long ear ?"
+ ],
+ "prompt": "the {} has a long ear"
+ },
+ {
+ "index": 500,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has its mouth open",
+ "question": [
+ "is there the dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has its mouth open"
+ },
+ {
+ "index": 501,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar"
+ },
+ {
+ "index": 502,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog's collar is blue",
+ "question": [
+ "is there the dog's collar ?"
+ ],
+ "prompt": "the {}'s collar is blue"
+ },
+ {
+ "index": 503,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has a pointy ear",
+ "question": [
+ "is there the dog ?",
+ "is there a pointy ear ?"
+ ],
+ "prompt": "the {} has a pointy ear"
+ },
+ {
+ "index": 504,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has pointy ears",
+ "question": [
+ "is there dog ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "{} has pointy ears"
+ },
+ {
+ "index": 505,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has short legs",
+ "question": [
+ "is there dog ?",
+ "are there short legs ?"
+ ],
+ "prompt": "{} has short legs"
+ },
+ {
+ "index": 506,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has pointy teeth",
+ "question": [
+ "is there dog ?",
+ "are there pointy teeth ?"
+ ],
+ "prompt": "{} has pointy teeth"
+ },
+ {
+ "index": 507,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog is attempting to catch a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is attempting to catch a frisbee"
+ },
+ {
+ "index": 508,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog is down on his \"knees\"",
+ "question": [
+ "is there the dog ?",
+ "are there his \"knees ?"
+ ],
+ "prompt": "the {} is down on his \"knees\""
+ },
+ {
+ "index": 509,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog's mouth wide open",
+ "question": [],
+ "prompt": "{}'s mouth wide open"
+ },
+ {
+ "index": 510,
+ "image_id": 2380220,
+ "entity": "dog",
+ "caption": "dog is laying on stuffed animal ",
+ "question": [
+ "is there dog ?",
+ "is there stuffed animal ?"
+ ],
+ "prompt": "{} is laying on stuffed animal "
+ },
+ {
+ "index": 511,
+ "image_id": 2380220,
+ "entity": "dog",
+ "caption": "dogs ear is black ",
+ "question": [
+ "are there dogs ?"
+ ],
+ "prompt": "{}s ear is black "
+ },
+ {
+ "index": 512,
+ "image_id": 2379710,
+ "entity": "dog",
+ "caption": "water splashing next to dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "water splashing next to {}"
+ },
+ {
+ "index": 513,
+ "image_id": 2379519,
+ "entity": "dog",
+ "caption": "The dog has it's tongue out.",
+ "question": [
+ "is there the dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "The {} has it's tongue out."
+ },
+ {
+ "index": 514,
+ "image_id": 2379519,
+ "entity": "dog",
+ "caption": "The dog has brown eyes.",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "The {} has brown eyes."
+ },
+ {
+ "index": 515,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a brown spot over one eye.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown spot ?",
+ "is there one eye ?"
+ ],
+ "prompt": "The {} has a brown spot over one eye."
+ },
+ {
+ "index": 516,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a spotted ear.",
+ "question": [
+ "is there the dog ?",
+ "is there a spotted ear ?"
+ ],
+ "prompt": "The {} has a spotted ear."
+ },
+ {
+ "index": 517,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a short tail.",
+ "question": [
+ "is there the dog ?",
+ "is there a short tail ?"
+ ],
+ "prompt": "The {} has a short tail."
+ },
+ {
+ "index": 518,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar."
+ },
+ {
+ "index": 519,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a closed mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a closed mouth ?"
+ ],
+ "prompt": "The {} has a closed mouth."
+ },
+ {
+ "index": 520,
+ "image_id": 2378890,
+ "entity": "dog",
+ "caption": "The dog has a chain collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a chain collar ?"
+ ],
+ "prompt": "The {} has a chain collar."
+ },
+ {
+ "index": 521,
+ "image_id": 2378890,
+ "entity": "dog",
+ "caption": "The dog is playing with the frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is playing with the frisbee."
+ },
+ {
+ "index": 522,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "dog has grey fur",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has grey fur"
+ },
+ {
+ "index": 523,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "other dog has black fur",
+ "question": [
+ "is there other dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "other {} has black fur"
+ },
+ {
+ "index": 524,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "other dog has brown face",
+ "question": [
+ "is there other dog ?",
+ "is there brown face ?"
+ ],
+ "prompt": "other {} has brown face"
+ },
+ {
+ "index": 525,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "nose of the dog with mouth closed",
+ "question": [
+ "is there nose ?",
+ "is there the dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "nose of the {} with mouth closed"
+ },
+ {
+ "index": 526,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "eye of the dog with mouth shut",
+ "question": [
+ "is there eye ?",
+ "is there the dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "eye of the {} with mouth shut"
+ },
+ {
+ "index": 527,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog's tongue is sticking out",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "the {}'s tongue is sticking out"
+ },
+ {
+ "index": 528,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog is wearing a harness",
+ "question": [
+ "is there the dog ?",
+ "is there a harness ?"
+ ],
+ "prompt": "the {} is wearing a harness"
+ },
+ {
+ "index": 529,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog has whiskers ",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "the {} has whiskers "
+ },
+ {
+ "index": 530,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog's collar has a silver tag",
+ "question": [
+ "is there the dog's collar ?",
+ "is there a silver tag ?"
+ ],
+ "prompt": "the {}'s collar has a silver tag"
+ },
+ {
+ "index": 531,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog has teeth",
+ "question": [
+ "is there the dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "the {} has teeth"
+ },
+ {
+ "index": 532,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dogs curved tail",
+ "question": [
+ "are there the dogs ?",
+ "is there tail ?"
+ ],
+ "prompt": "the {}s curved tail"
+ },
+ {
+ "index": 533,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog collar is dark brown",
+ "question": [
+ "is there the dog collar ?"
+ ],
+ "prompt": "the {} collar is dark brown"
+ },
+ {
+ "index": 534,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s mouth is open",
+ "question": [
+ "is there the dog`s mouth ?"
+ ],
+ "prompt": "the {}`s mouth is open"
+ },
+ {
+ "index": 535,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s neck is white",
+ "question": [
+ "is there the dog`s neck ?"
+ ],
+ "prompt": "the {}`s neck is white"
+ },
+ {
+ "index": 536,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s face is multi colored",
+ "question": [
+ "is there the dog`s face ?"
+ ],
+ "prompt": "the {}`s face is multi colored"
+ },
+ {
+ "index": 537,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "paws of dog are black",
+ "question": [
+ "are there paws ?",
+ "is there dog ?"
+ ],
+ "prompt": "paws of {} are black"
+ },
+ {
+ "index": 538,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "hair eyes of dog are big",
+ "question": [
+ "are there hair eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "hair eyes of {} are big"
+ },
+ {
+ "index": 539,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "dog is wearing a bandana",
+ "question": [
+ "is there dog ?",
+ "is there a bandana ?"
+ ],
+ "prompt": "{} is wearing a bandana"
+ },
+ {
+ "index": 540,
+ "image_id": 2377946,
+ "entity": "dog",
+ "caption": "The dog is on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The {} is on the bed"
+ },
+ {
+ "index": 541,
+ "image_id": 2377946,
+ "entity": "dog",
+ "caption": "The dog has a red blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a red blanket ?"
+ ],
+ "prompt": "The {} has a red blanket"
+ },
+ {
+ "index": 542,
+ "image_id": 2377695,
+ "entity": "dog",
+ "caption": "the dogs pink tounge",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s pink tounge"
+ },
+ {
+ "index": 543,
+ "image_id": 2377541,
+ "entity": "dog",
+ "caption": "a dogs ear with black spots",
+ "question": [
+ "are there a dogs ?",
+ "are there black spots ?"
+ ],
+ "prompt": "a {}s ear with black spots"
+ },
+ {
+ "index": 544,
+ "image_id": 2377541,
+ "entity": "dog",
+ "caption": "wet dog standing in pond",
+ "question": [
+ "is there wet dog ?",
+ "is there pond ?"
+ ],
+ "prompt": "wet {} standing in pond"
+ },
+ {
+ "index": 545,
+ "image_id": 2377276,
+ "entity": "dog",
+ "caption": "fur of dog is long",
+ "question": [
+ "is there fur ?",
+ "is there dog ?"
+ ],
+ "prompt": "fur of {} is long"
+ },
+ {
+ "index": 546,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog's snout is black",
+ "question": [
+ "is there the dog's snout ?"
+ ],
+ "prompt": "the {}'s snout is black"
+ },
+ {
+ "index": 547,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog has a leather collar",
+ "question": [
+ "is there the dog ?",
+ "is there a leather collar ?"
+ ],
+ "prompt": "the {} has a leather collar"
+ },
+ {
+ "index": 548,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog has black ears ",
+ "question": [
+ "is there the dog ?",
+ "are there black ears ?"
+ ],
+ "prompt": "the {} has black ears "
+ },
+ {
+ "index": 549,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "the dog has an orange collar ",
+ "question": [
+ "is there the dog ?",
+ "is there an orange collar ?"
+ ],
+ "prompt": "the {} has an orange collar "
+ },
+ {
+ "index": 550,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "this is an ear of a dog",
+ "question": [
+ "is there an ear ?",
+ "is there a dog ?"
+ ],
+ "prompt": "this is an ear of a {}"
+ },
+ {
+ "index": 551,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "this is a tongue of a dog",
+ "question": [
+ "is there a tongue ?",
+ "is there a dog ?"
+ ],
+ "prompt": "this is a tongue of a {}"
+ },
+ {
+ "index": 552,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "two dogs leashed to post",
+ "question": [
+ "are there two dogs ?"
+ ],
+ "prompt": "two {}s leashed to post"
+ },
+ {
+ "index": 553,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "two dogs tied to a tree",
+ "question": [
+ "are there two dogs ?",
+ "is there a tree ?"
+ ],
+ "prompt": "two {}s tied to a tree"
+ },
+ {
+ "index": 554,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog has it's mouth open",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has it's mouth open"
+ },
+ {
+ "index": 555,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog is leaning against the sofa",
+ "question": [
+ "is there dog ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "{} is leaning against the sofa"
+ },
+ {
+ "index": 556,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog's teeth are white",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth are white"
+ },
+ {
+ "index": 557,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "A dog is smelling a cat",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A {} is smelling a cat"
+ },
+ {
+ "index": 558,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "An old dog is greeting the new cat",
+ "question": [
+ "is there an old dog ?",
+ "is there the new cat ?"
+ ],
+ "prompt": "An old {} is greeting the new cat"
+ },
+ {
+ "index": 559,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "A cat is friends with a dog",
+ "question": [
+ "is there a cat ?",
+ "are there friends ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A cat is friends with a {}"
+ },
+ {
+ "index": 560,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "dog has two ears.",
+ "question": [
+ "is there dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "{} has two ears."
+ },
+ {
+ "index": 561,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has purple collar",
+ "question": [
+ "is there dog ?",
+ "is there purple collar ?"
+ ],
+ "prompt": "{} has purple collar"
+ },
+ {
+ "index": 562,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has brown nose",
+ "question": [
+ "is there dog ?",
+ "is there brown nose ?"
+ ],
+ "prompt": "{} has brown nose"
+ },
+ {
+ "index": 563,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has light brown hair",
+ "question": [
+ "is there dog ?",
+ "is there light brown hair ?"
+ ],
+ "prompt": "{} has light brown hair"
+ },
+ {
+ "index": 564,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has dark brown ears",
+ "question": [
+ "is there dog ?",
+ "are there dark brown ears ?"
+ ],
+ "prompt": "{} has dark brown ears"
+ },
+ {
+ "index": 565,
+ "image_id": 2375658,
+ "entity": "dog",
+ "caption": "Sad looking dog face",
+ "question": [
+ "is there sad looking dog face ?"
+ ],
+ "prompt": "Sad looking {} face"
+ },
+ {
+ "index": 566,
+ "image_id": 2375561,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue harness",
+ "question": [
+ "is there the dog ?",
+ "is there a blue harness ?"
+ ],
+ "prompt": "The {} is wearing a blue harness"
+ },
+ {
+ "index": 567,
+ "image_id": 2375561,
+ "entity": "dog",
+ "caption": "The dog is standing on a chair.",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "The {} is standing on a chair."
+ },
+ {
+ "index": 568,
+ "image_id": 2375451,
+ "entity": "dog",
+ "caption": "the dogs nose is black ",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is black "
+ },
+ {
+ "index": 569,
+ "image_id": 2375428,
+ "entity": "dog",
+ "caption": "The dog is looking at the camera",
+ "question": [
+ "is there the dog ?",
+ "is there the camera ?"
+ ],
+ "prompt": "The {} is looking at the camera"
+ },
+ {
+ "index": 570,
+ "image_id": 2375428,
+ "entity": "dog",
+ "caption": "The dog has long fur",
+ "question": [
+ "is there the dog ?",
+ "is there long fur ?"
+ ],
+ "prompt": "The {} has long fur"
+ },
+ {
+ "index": 571,
+ "image_id": 2374930,
+ "entity": "dog",
+ "caption": "baby is leaning on a dog",
+ "question": [
+ "is there baby ?",
+ "is there a dog ?"
+ ],
+ "prompt": "baby is leaning on a {}"
+ },
+ {
+ "index": 572,
+ "image_id": 2374930,
+ "entity": "dog",
+ "caption": "nose of dog is brown ",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is brown "
+ },
+ {
+ "index": 573,
+ "image_id": 2374268,
+ "entity": "dog",
+ "caption": "the dog's leg hanging over the sofa",
+ "question": [
+ "is there the dog's leg ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "the {}'s leg hanging over the sofa"
+ },
+ {
+ "index": 574,
+ "image_id": 2374268,
+ "entity": "dog",
+ "caption": "dog has face buried in the couch",
+ "question": [
+ "is there dog ?",
+ "is there face ?",
+ "is there the couch ?"
+ ],
+ "prompt": "{} has face buried in the couch"
+ },
+ {
+ "index": 575,
+ "image_id": 2374132,
+ "entity": "dog",
+ "caption": "dog has light brown paws",
+ "question": [
+ "is there dog ?",
+ "are there light brown paws ?"
+ ],
+ "prompt": "{} has light brown paws"
+ },
+ {
+ "index": 576,
+ "image_id": 2374013,
+ "entity": "dog",
+ "caption": "dog's ears are light brown",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are light brown"
+ },
+ {
+ "index": 577,
+ "image_id": 2373955,
+ "entity": "dog",
+ "caption": "a brown hat the dog is wearing",
+ "question": [
+ "is there a brown hat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a brown hat the {} is wearing"
+ },
+ {
+ "index": 578,
+ "image_id": 2373955,
+ "entity": "dog",
+ "caption": "black dog kissing man",
+ "question": [
+ "is there black dog kissing man ?"
+ ],
+ "prompt": "black {} kissing man"
+ },
+ {
+ "index": 579,
+ "image_id": 2373533,
+ "entity": "dog",
+ "caption": "eyes of dog are big",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are big"
+ },
+ {
+ "index": 580,
+ "image_id": 2373533,
+ "entity": "dog",
+ "caption": "mouth of dog is touching a rail",
+ "question": [
+ "is there mouth ?",
+ "is there dog ?",
+ "is there a rail ?"
+ ],
+ "prompt": "mouth of {} is touching a rail"
+ },
+ {
+ "index": 581,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dog is wearing pink collar",
+ "question": [
+ "is there dog ?",
+ "is there pink collar ?"
+ ],
+ "prompt": "{} is wearing pink collar"
+ },
+ {
+ "index": 582,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dogs nose is brown",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is brown"
+ },
+ {
+ "index": 583,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dog right ear is brown",
+ "question": [
+ "is there dog right ear ?"
+ ],
+ "prompt": "{} right ear is brown"
+ },
+ {
+ "index": 584,
+ "image_id": 2373155,
+ "entity": "dog",
+ "caption": "dogs has a chain on his neck",
+ "question": [
+ "are there dogs ?",
+ "is there a chain ?",
+ "is there his neck ?"
+ ],
+ "prompt": "{}s has a chain on his neck"
+ },
+ {
+ "index": 585,
+ "image_id": 2373141,
+ "entity": "dog",
+ "caption": "This is a man with a dog",
+ "question": [
+ "is there a man ?",
+ "is there a dog ?"
+ ],
+ "prompt": "This is a man with a {}"
+ },
+ {
+ "index": 586,
+ "image_id": 2373109,
+ "entity": "dog",
+ "caption": "the dog is on the ground ",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is on the ground "
+ },
+ {
+ "index": 587,
+ "image_id": 2373073,
+ "entity": "dog",
+ "caption": "dog is wearing a hat ",
+ "question": [
+ "is there dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "{} is wearing a hat "
+ },
+ {
+ "index": 588,
+ "image_id": 2372988,
+ "entity": "dog",
+ "caption": "Water drips down dog's face.",
+ "question": [
+ "is there water ?",
+ "is there dog's face ?"
+ ],
+ "prompt": "Water drips down {}'s face."
+ },
+ {
+ "index": 589,
+ "image_id": 2372988,
+ "entity": "dog",
+ "caption": "dog is wearing a chain",
+ "question": [
+ "is there dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "{} is wearing a chain"
+ },
+ {
+ "index": 590,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is riding in a car",
+ "question": [
+ "is there a dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "A {} is riding in a car"
+ },
+ {
+ "index": 591,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is riding in the passenger seat",
+ "question": [
+ "is there a dog ?",
+ "is there the passenger seat ?"
+ ],
+ "prompt": "A {} is riding in the passenger seat"
+ },
+ {
+ "index": 592,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is in its master's car",
+ "question": [
+ "is there a dog ?",
+ "is there its master's car ?"
+ ],
+ "prompt": "A {} is in its master's car"
+ },
+ {
+ "index": 593,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "The dog likes riding in a car",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "The {} likes riding in a car"
+ },
+ {
+ "index": 594,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "The dog is looking out the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is looking out the window"
+ },
+ {
+ "index": 595,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "The dog is sitting on a bench.",
+ "question": [
+ "is there the dog ?",
+ "is there a bench ?"
+ ],
+ "prompt": "The {} is sitting on a bench."
+ },
+ {
+ "index": 596,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "dog is wearing a blue harness",
+ "question": [
+ "is there dog ?",
+ "is there a blue harness ?"
+ ],
+ "prompt": "{} is wearing a blue harness"
+ },
+ {
+ "index": 597,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "the dog has a white belly",
+ "question": [
+ "is there the dog ?",
+ "is there a white belly ?"
+ ],
+ "prompt": "the {} has a white belly"
+ },
+ {
+ "index": 598,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog looks sleepy",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} looks sleepy"
+ },
+ {
+ "index": 599,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is laying on a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "the {} is laying on a stuffed animal"
+ },
+ {
+ "index": 600,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is pale tan in color",
+ "question": [
+ "is there the dog ?",
+ "is there pale tan ?",
+ "is there color ?"
+ ],
+ "prompt": "the {} is pale tan in color"
+ },
+ {
+ "index": 601,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "stuffed animal dog is sleeping on",
+ "question": [
+ "is there stuffed animal dog ?"
+ ],
+ "prompt": "stuffed animal {} is sleeping on"
+ },
+ {
+ "index": 602,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "red bed dog is sleeping on",
+ "question": [
+ "is there red bed dog ?"
+ ],
+ "prompt": "red bed {} is sleeping on"
+ },
+ {
+ "index": 603,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the cushion under the dog is red",
+ "question": [
+ "is there the cushion ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cushion under the {} is red"
+ },
+ {
+ "index": 604,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is laying on a cushion",
+ "question": [
+ "is there the dog ?",
+ "is there a cushion ?"
+ ],
+ "prompt": "the {} is laying on a cushion"
+ },
+ {
+ "index": 605,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "The dog ear on the right",
+ "question": [
+ "is there the dog ear ?",
+ "is there the right ?"
+ ],
+ "prompt": "The {} ear on the right"
+ },
+ {
+ "index": 606,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "Dog leash on the beige dog",
+ "question": [
+ "is there dog ?",
+ "is there the beige dog ?"
+ ],
+ "prompt": "Dog leash on the beige {}"
+ },
+ {
+ "index": 607,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "dog has white teeth",
+ "question": [
+ "is there dog ?",
+ "are there white teeth ?"
+ ],
+ "prompt": "{} has white teeth"
+ },
+ {
+ "index": 608,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "dog has black under his lip",
+ "question": [
+ "is there dog ?",
+ "is there his lip ?"
+ ],
+ "prompt": "{} has black under his lip"
+ },
+ {
+ "index": 609,
+ "image_id": 2372091,
+ "entity": "dog",
+ "caption": "wooden bench dog is sitting on",
+ "question": [
+ "is there wooden bench dog ?"
+ ],
+ "prompt": "wooden bench {} is sitting on"
+ },
+ {
+ "index": 610,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "Flowered leash going to the dog",
+ "question": [
+ "is there flowered leash ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Flowered leash going to the {}"
+ },
+ {
+ "index": 611,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog looks off into distance",
+ "question": [
+ "is there dog ?",
+ "is there distance ?"
+ ],
+ "prompt": "{} looks off into distance"
+ },
+ {
+ "index": 612,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog wears sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} wears sweater"
+ },
+ {
+ "index": 613,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog sits next to bicycle",
+ "question": [
+ "is there dog ?",
+ "is there bicycle ?"
+ ],
+ "prompt": "{} sits next to bicycle"
+ },
+ {
+ "index": 614,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog sits on sidewalk",
+ "question": [
+ "is there dog ?",
+ "is there sidewalk ?"
+ ],
+ "prompt": "{} sits on sidewalk"
+ },
+ {
+ "index": 615,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "sweater is on dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "sweater is on {}"
+ },
+ {
+ "index": 616,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog is inside sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} is inside sweater"
+ },
+ {
+ "index": 617,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The dog is on a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "The {} is on a leash"
+ },
+ {
+ "index": 618,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog is standing near a bicycle",
+ "question": [
+ "is there the white dog ?",
+ "is there a bicycle ?"
+ ],
+ "prompt": "The white {} is standing near a bicycle"
+ },
+ {
+ "index": 619,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog in the sweater has a bushy tail",
+ "question": [
+ "is there the white dog ?",
+ "is there the sweater ?",
+ "is there a bushy tail ?"
+ ],
+ "prompt": "The white {} in the sweater has a bushy tail"
+ },
+ {
+ "index": 620,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog is standing on the sidewalk",
+ "question": [
+ "is there the white dog ?",
+ "is there the sidewalk ?"
+ ],
+ "prompt": "The white {} is standing on the sidewalk"
+ },
+ {
+ "index": 621,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "the dog is using the laptop",
+ "question": [
+ "is there the dog ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "the {} is using the laptop"
+ },
+ {
+ "index": 622,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "A dog with it's paws on a laptop.",
+ "question": [
+ "is there a dog ?",
+ "are there it's paws ?",
+ "is there a laptop ?"
+ ],
+ "prompt": "A {} with it's paws on a laptop."
+ },
+ {
+ "index": 623,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The dog is using the computer ",
+ "question": [
+ "is there the dog ?",
+ "is there the computer ?"
+ ],
+ "prompt": "The {} is using the computer "
+ },
+ {
+ "index": 624,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The nose of the dog is black ",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The nose of the {} is black "
+ },
+ {
+ "index": 625,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The eye of the dog is brown ",
+ "question": [
+ "is there the eye ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The eye of the {} is brown "
+ },
+ {
+ "index": 626,
+ "image_id": 2371520,
+ "entity": "dog",
+ "caption": "carpet dog is playing on",
+ "question": [
+ "is there carpet dog ?"
+ ],
+ "prompt": "carpet {} is playing on"
+ },
+ {
+ "index": 627,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A dog has three colors of fur.",
+ "question": [
+ "is there a dog ?",
+ "are there three colors ?",
+ "is there fur ?"
+ ],
+ "prompt": "A {} has three colors of fur."
+ },
+ {
+ "index": 628,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A dog is wearing a scarf around the neck.",
+ "question": [
+ "is there a dog ?",
+ "is there a scarf ?",
+ "is there the neck ?"
+ ],
+ "prompt": "A {} is wearing a scarf around the neck."
+ },
+ {
+ "index": 629,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A woman is sitting close to a dog.",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A woman is sitting close to a {}."
+ },
+ {
+ "index": 630,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in mouth."
+ },
+ {
+ "index": 631,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "the dog is wearing a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} is wearing a collar."
+ },
+ {
+ "index": 632,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The back left leg of a dog",
+ "question": [
+ "is there the back left leg ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The back left leg of a {}"
+ },
+ {
+ "index": 633,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The front left leg of a dog",
+ "question": [
+ "is there the front left leg ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The front left leg of a {}"
+ },
+ {
+ "index": 634,
+ "image_id": 2371119,
+ "entity": "dog",
+ "caption": "the dog is laying on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is laying on the bed"
+ },
+ {
+ "index": 635,
+ "image_id": 2370667,
+ "entity": "dog",
+ "caption": "the dogs nail ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s nail "
+ },
+ {
+ "index": 636,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has a serious face",
+ "question": [
+ "is there the dog ?",
+ "is there a serious face ?"
+ ],
+ "prompt": "The {} has a serious face"
+ },
+ {
+ "index": 637,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has white whiskers.",
+ "question": [
+ "is there the dog ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "The {} has white whiskers."
+ },
+ {
+ "index": 638,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has a brown colar.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown colar ?"
+ ],
+ "prompt": "The {} has a brown colar."
+ },
+ {
+ "index": 639,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "eye of dog is black ",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is black "
+ },
+ {
+ "index": 640,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "chest of dog is white",
+ "question": [
+ "is there chest ?",
+ "is there dog ?"
+ ],
+ "prompt": "chest of {} is white"
+ },
+ {
+ "index": 641,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "dog has dog tags",
+ "question": [
+ "is there dog ?",
+ "are there dog tags ?"
+ ],
+ "prompt": "{} has {} tags"
+ },
+ {
+ "index": 642,
+ "image_id": 2370342,
+ "entity": "dog",
+ "caption": "dog's head is on the pillow",
+ "question": [
+ "is there dog's head ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "{}'s head is on the pillow"
+ },
+ {
+ "index": 643,
+ "image_id": 2370107,
+ "entity": "dog",
+ "caption": "bottom left tooth of dog",
+ "question": [
+ "is there bottom ?",
+ "is there tooth ?",
+ "is there dog ?"
+ ],
+ "prompt": "bottom left tooth of {}"
+ },
+ {
+ "index": 644,
+ "image_id": 2369919,
+ "entity": "dog",
+ "caption": "dogs nose is black ",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is black "
+ },
+ {
+ "index": 645,
+ "image_id": 2369919,
+ "entity": "dog",
+ "caption": "the dog is laying down on a shoe ",
+ "question": [
+ "is there the dog ?",
+ "is there a shoe ?"
+ ],
+ "prompt": "the {} is laying down on a shoe "
+ },
+ {
+ "index": 646,
+ "image_id": 2369591,
+ "entity": "dog",
+ "caption": "the dog has a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "the {} has a leash"
+ },
+ {
+ "index": 647,
+ "image_id": 2369591,
+ "entity": "dog",
+ "caption": "The dog's eye looking ahead",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye looking ahead"
+ },
+ {
+ "index": 648,
+ "image_id": 2369270,
+ "entity": "dog",
+ "caption": "Frisbee is in the dog's mouth",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "Frisbee is in the {}'s mouth"
+ },
+ {
+ "index": 649,
+ "image_id": 2368889,
+ "entity": "dog",
+ "caption": "Big brown dog spiked pink collar.",
+ "question": [
+ "is there big brown dog ?",
+ "is there pink collar ?"
+ ],
+ "prompt": "Big brown {} spiked pink collar."
+ },
+ {
+ "index": 650,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "dog is laying on the ground",
+ "question": [
+ "is there dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "{} is laying on the ground"
+ },
+ {
+ "index": 651,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "dog with tongue sticking out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} with tongue sticking out"
+ },
+ {
+ "index": 652,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog has a front paw",
+ "question": [
+ "is there the dog ?",
+ "is there a front paw ?"
+ ],
+ "prompt": "the {} has a front paw"
+ },
+ {
+ "index": 653,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog has nails",
+ "question": [
+ "is there the dog ?",
+ "are there nails ?"
+ ],
+ "prompt": "the {} has nails"
+ },
+ {
+ "index": 654,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog is lying down",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is lying down"
+ },
+ {
+ "index": 655,
+ "image_id": 2368714,
+ "entity": "dog",
+ "caption": "dog curled up with a teddy bear",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} curled up with a teddy bear"
+ },
+ {
+ "index": 656,
+ "image_id": 2368714,
+ "entity": "dog",
+ "caption": "ear of dog is black ",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is black "
+ },
+ {
+ "index": 657,
+ "image_id": 2368054,
+ "entity": "dog",
+ "caption": "dog has a purple leash",
+ "question": [
+ "is there dog ?",
+ "is there a purple leash ?"
+ ],
+ "prompt": "{} has a purple leash"
+ },
+ {
+ "index": 658,
+ "image_id": 2368054,
+ "entity": "dog",
+ "caption": "this dog is wearing a red harness",
+ "question": [
+ "is there this dog ?",
+ "is there a red harness ?"
+ ],
+ "prompt": "this {} is wearing a red harness"
+ },
+ {
+ "index": 659,
+ "image_id": 2367865,
+ "entity": "dog",
+ "caption": "The dog's eyes are yellow",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are yellow"
+ },
+ {
+ "index": 660,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "the dog is inside a van",
+ "question": [
+ "is there the dog ?",
+ "is there a van ?"
+ ],
+ "prompt": "the {} is inside a van"
+ },
+ {
+ "index": 661,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "the dog tag hanging",
+ "question": [
+ "is there the dog tag ?"
+ ],
+ "prompt": "the {} tag hanging"
+ },
+ {
+ "index": 662,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar"
+ },
+ {
+ "index": 663,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "navy blanket dog is laying on",
+ "question": [
+ "is there navy blanket dog ?"
+ ],
+ "prompt": "navy blanket {} is laying on"
+ },
+ {
+ "index": 664,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog's pink tongue is very long",
+ "question": [
+ "is there the dog's pink tongue ?"
+ ],
+ "prompt": "The {}'s pink tongue is very long"
+ },
+ {
+ "index": 665,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "A large tongue hanging out of the dog's mouth",
+ "question": [
+ "is there a large tongue ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "A large tongue hanging out of the {}'s mouth"
+ },
+ {
+ "index": 666,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog's eye is open",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye is open"
+ },
+ {
+ "index": 667,
+ "image_id": 2367433,
+ "entity": "dog",
+ "caption": "pizza that dog is eating",
+ "question": [
+ "is there pizza ?",
+ "is there that dog ?"
+ ],
+ "prompt": "pizza that {} is eating"
+ },
+ {
+ "index": 668,
+ "image_id": 2367433,
+ "entity": "dog",
+ "caption": "steel grate that dog is standing on",
+ "question": [
+ "is there steel grate ?",
+ "is there that dog ?"
+ ],
+ "prompt": "steel grate that {} is standing on"
+ },
+ {
+ "index": 669,
+ "image_id": 2367152,
+ "entity": "dog",
+ "caption": "mouth of dog is open",
+ "question": [
+ "is there mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "mouth of {} is open"
+ },
+ {
+ "index": 670,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "dog tail held high",
+ "question": [
+ "is there dog tail ?"
+ ],
+ "prompt": "{} tail held high"
+ },
+ {
+ "index": 671,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "a dog that has brown eyes",
+ "question": [
+ "is there a dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "a {} that has brown eyes"
+ },
+ {
+ "index": 672,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "the dog has a brown ear",
+ "question": [
+ "is there the dog ?",
+ "is there a brown ear ?"
+ ],
+ "prompt": "the {} has a brown ear"
+ },
+ {
+ "index": 673,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has eyes",
+ "question": [
+ "is there this dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "this {} has eyes"
+ },
+ {
+ "index": 674,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has ears",
+ "question": [
+ "is there this dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "this {} has ears"
+ },
+ {
+ "index": 675,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog's nose is black",
+ "question": [
+ "is there this dog's nose ?"
+ ],
+ "prompt": "this {}'s nose is black"
+ },
+ {
+ "index": 676,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has a long tail",
+ "question": [
+ "is there this dog ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "this {} has a long tail"
+ },
+ {
+ "index": 677,
+ "image_id": 2365888,
+ "entity": "dog",
+ "caption": "the dog has a small tail",
+ "question": [
+ "is there the dog ?",
+ "is there a small tail ?"
+ ],
+ "prompt": "the {} has a small tail"
+ },
+ {
+ "index": 678,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "th edog is in the car ",
+ "question": [
+ "is there the car ?"
+ ],
+ "prompt": "th e{} is in the car "
+ },
+ {
+ "index": 679,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking outside the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking outside the window"
+ },
+ {
+ "index": 680,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking outside ",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is looking outside "
+ },
+ {
+ "index": 681,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking through the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking through the window"
+ },
+ {
+ "index": 682,
+ "image_id": 2365756,
+ "entity": "dog",
+ "caption": "the doghas a seat belt on ",
+ "question": [
+ "is there a seat belt ?"
+ ],
+ "prompt": "the {}has a seat belt on "
+ },
+ {
+ "index": 683,
+ "image_id": 2365756,
+ "entity": "dog",
+ "caption": "Black seatbelt holding back a dog. ",
+ "question": [
+ "is there black seatbelt ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Black seatbelt holding back a {}. "
+ },
+ {
+ "index": 684,
+ "image_id": 2365712,
+ "entity": "dog",
+ "caption": "the dog is licking the cake",
+ "question": [
+ "is there the dog ?",
+ "is there the cake ?"
+ ],
+ "prompt": "the {} is licking the cake"
+ },
+ {
+ "index": 685,
+ "image_id": 2365044,
+ "entity": "dog",
+ "caption": "dog is wearing a bow tie ",
+ "question": [
+ "is there dog ?",
+ "is there a bow tie ?"
+ ],
+ "prompt": "{} is wearing a bow tie "
+ },
+ {
+ "index": 686,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "The pillow the dog is laying on.",
+ "question": [
+ "is there the pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The pillow the {} is laying on."
+ },
+ {
+ "index": 687,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "the dog is getting ready for bed",
+ "question": [
+ "is there the dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "the {} is getting ready for bed"
+ },
+ {
+ "index": 688,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "this dog looks comfortable in bed",
+ "question": [
+ "is there this dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "this {} looks comfortable in bed"
+ },
+ {
+ "index": 689,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "dog has hazel eyes",
+ "question": [
+ "is there dog ?",
+ "are there hazel eyes ?"
+ ],
+ "prompt": "{} has hazel eyes"
+ },
+ {
+ "index": 690,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "dog is holding a ball",
+ "question": [
+ "is there dog ?",
+ "is there a ball ?"
+ ],
+ "prompt": "{} is holding a ball"
+ },
+ {
+ "index": 691,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "black dog with paws forward looking at camera",
+ "question": [
+ "is there black dog ?",
+ "are there paws ?",
+ "is there camera ?"
+ ],
+ "prompt": "black {} with paws forward looking at camera"
+ },
+ {
+ "index": 692,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "dog has a ball inside his mouth",
+ "question": [
+ "is there dog ?",
+ "is there a ball ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has a ball inside his mouth"
+ },
+ {
+ "index": 693,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "snout of dog is color salt and pepper",
+ "question": [
+ "is there snout ?",
+ "is there dog ?",
+ "is there color salt ?",
+ "is there pepper ?"
+ ],
+ "prompt": "snout of {} is color salt and pepper"
+ },
+ {
+ "index": 694,
+ "image_id": 2364504,
+ "entity": "dog",
+ "caption": "The dog is wearing a purple collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a purple collar ?"
+ ],
+ "prompt": "The {} is wearing a purple collar."
+ },
+ {
+ "index": 695,
+ "image_id": 2364504,
+ "entity": "dog",
+ "caption": "One dog is sitting in the car.",
+ "question": [
+ "is there one dog ?",
+ "is there the car ?"
+ ],
+ "prompt": "One {} is sitting in the car."
+ },
+ {
+ "index": 696,
+ "image_id": 2364448,
+ "entity": "dog",
+ "caption": "the dog has a paw",
+ "question": [
+ "is there the dog ?",
+ "is there a paw ?"
+ ],
+ "prompt": "the {} has a paw"
+ },
+ {
+ "index": 697,
+ "image_id": 2364244,
+ "entity": "dog",
+ "caption": "the dog is wearing a tiara",
+ "question": [
+ "is there the dog ?",
+ "is there a tiara ?"
+ ],
+ "prompt": "the {} is wearing a tiara"
+ },
+ {
+ "index": 698,
+ "image_id": 2364208,
+ "entity": "dog",
+ "caption": "the cow is looking at the dog",
+ "question": [
+ "is there the cow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cow is looking at the {}"
+ },
+ {
+ "index": 699,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "a dog with his tooth sticking out",
+ "question": [
+ "is there a dog ?",
+ "is there his tooth ?"
+ ],
+ "prompt": "a {} with his tooth sticking out"
+ },
+ {
+ "index": 700,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "green couch cushion dog is sleeping on",
+ "question": [
+ "is there green couch cushion dog ?"
+ ],
+ "prompt": "green couch cushion {} is sleeping on"
+ },
+ {
+ "index": 701,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "dog lip pulled up against cushion",
+ "question": [
+ "is there dog lip ?",
+ "is there cushion ?"
+ ],
+ "prompt": "{} lip pulled up against cushion"
+ },
+ {
+ "index": 702,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "dog's tongue sticking out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue sticking out"
+ },
+ {
+ "index": 703,
+ "image_id": 2363350,
+ "entity": "dog",
+ "caption": "A dog is laying in his bed",
+ "question": [
+ "is there a dog ?",
+ "is there his bed ?"
+ ],
+ "prompt": "A {} is laying in his bed"
+ },
+ {
+ "index": 704,
+ "image_id": 2363350,
+ "entity": "dog",
+ "caption": "The dog is resting on a pillow",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "The {} is resting on a pillow"
+ },
+ {
+ "index": 705,
+ "image_id": 2362763,
+ "entity": "dog",
+ "caption": "dog's teeth are showing",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth are showing"
+ },
+ {
+ "index": 706,
+ "image_id": 2362553,
+ "entity": "dog",
+ "caption": "dog with head tilted up",
+ "question": [
+ "is there dog ?",
+ "is there head ?"
+ ],
+ "prompt": "{} with head tilted up"
+ },
+ {
+ "index": 707,
+ "image_id": 2362553,
+ "entity": "dog",
+ "caption": "the dog has a right eye",
+ "question": [
+ "is there the dog ?",
+ "is there a right eye ?"
+ ],
+ "prompt": "the {} has a right eye"
+ },
+ {
+ "index": 708,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The dog is in the bag",
+ "question": [
+ "is there the dog ?",
+ "is there the bag ?"
+ ],
+ "prompt": "The {} is in the bag"
+ },
+ {
+ "index": 709,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The bag is holding the dog",
+ "question": [
+ "is there the bag ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The bag is holding the {}"
+ },
+ {
+ "index": 710,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The small backpack holds a dog",
+ "question": [
+ "is there the small backpack ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The small backpack holds a {}"
+ },
+ {
+ "index": 711,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The dog is turning its head",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?"
+ ],
+ "prompt": "The {} is turning its head"
+ },
+ {
+ "index": 712,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "this is a \"doggy pack\"",
+ "question": [
+ "is there a \"doggy pack ?"
+ ],
+ "prompt": "this is a \"{}gy pack\""
+ },
+ {
+ "index": 713,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "dog is wearing chain collar",
+ "question": [
+ "is there dog ?",
+ "is there chain collar ?"
+ ],
+ "prompt": "{} is wearing chain collar"
+ },
+ {
+ "index": 714,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog is looking at the cake",
+ "question": [
+ "is there the dog ?",
+ "is there the cake ?"
+ ],
+ "prompt": "the {} is looking at the cake"
+ },
+ {
+ "index": 715,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog looks sad",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} looks sad"
+ },
+ {
+ "index": 716,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog lays head on arm",
+ "question": [
+ "is there the dog ?",
+ "is there head ?",
+ "is there arm ?"
+ ],
+ "prompt": "the {} lays head on arm"
+ },
+ {
+ "index": 717,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog has spots",
+ "question": [
+ "is there the dog ?",
+ "are there spots ?"
+ ],
+ "prompt": "the {} has spots"
+ },
+ {
+ "index": 718,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "eye of dog is black",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is black"
+ },
+ {
+ "index": 719,
+ "image_id": 2362196,
+ "entity": "dog",
+ "caption": " a dog with it's tongue sticking out",
+ "question": [
+ "is there a dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": " a {} with it's tongue sticking out"
+ },
+ {
+ "index": 720,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "this is a dog ",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "this is a {} "
+ },
+ {
+ "index": 721,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "the dog is lying down on the floor",
+ "question": [
+ "is there the dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "the {} is lying down on the floor"
+ },
+ {
+ "index": 722,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is in somebody's house",
+ "question": [
+ "is there the dog ?",
+ "is there somebody's house ?"
+ ],
+ "prompt": "The {} is in somebody's house"
+ },
+ {
+ "index": 723,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is laying by the door",
+ "question": [
+ "is there the dog ?",
+ "is there the door ?"
+ ],
+ "prompt": "The {} is laying by the door"
+ },
+ {
+ "index": 724,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is guarding the house",
+ "question": [
+ "is there the dog ?",
+ "is there the house ?"
+ ],
+ "prompt": "The {} is guarding the house"
+ },
+ {
+ "index": 725,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is awake in daytime",
+ "question": [
+ "is there the dog ?",
+ "is there daytime ?"
+ ],
+ "prompt": "The {} is awake in daytime"
+ },
+ {
+ "index": 726,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is waiting to go outside",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is waiting to go outside"
+ },
+ {
+ "index": 727,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is waiting to be let out",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "A {} is waiting to be let out"
+ },
+ {
+ "index": 728,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is sleeping on the floor",
+ "question": [
+ "is there a dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "A {} is sleeping on the floor"
+ },
+ {
+ "index": 729,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is looking for attention",
+ "question": [
+ "is there a dog ?",
+ "is there attention ?"
+ ],
+ "prompt": "A {} is looking for attention"
+ },
+ {
+ "index": 730,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is looking lonely",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is looking lonely"
+ },
+ {
+ "index": 731,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is waiting by the door",
+ "question": [
+ "is there a dog ?",
+ "is there the door ?"
+ ],
+ "prompt": "A {} is waiting by the door"
+ },
+ {
+ "index": 732,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is laying on the floor",
+ "question": [
+ "is there a dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "A {} is laying on the floor"
+ },
+ {
+ "index": 733,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is wanting to be fed",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is wanting to be fed"
+ },
+ {
+ "index": 734,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is enjoying its day",
+ "question": [
+ "is there the dog ?",
+ "is there its day ?"
+ ],
+ "prompt": "The {} is enjoying its day"
+ },
+ {
+ "index": 735,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is getting some rest",
+ "question": [
+ "is there the dog ?",
+ "is there some rest ?"
+ ],
+ "prompt": "The {} is getting some rest"
+ },
+ {
+ "index": 736,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog belongs to the home owner",
+ "question": [
+ "is there the dog ?",
+ "is there the home owner ?"
+ ],
+ "prompt": "The {} belongs to the home owner"
+ },
+ {
+ "index": 737,
+ "image_id": 2361653,
+ "entity": "dog",
+ "caption": "the dog has a left eye",
+ "question": [
+ "is there the dog ?",
+ "is there a left eye ?"
+ ],
+ "prompt": "the {} has a left eye"
+ },
+ {
+ "index": 738,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "floppy black dog ear ",
+ "question": [
+ "is there floppy black dog ear ?"
+ ],
+ "prompt": "floppy black {} ear "
+ },
+ {
+ "index": 739,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "two dog ear in different positions at same time ",
+ "question": [
+ "is there two dog ear ?",
+ "are there different positions ?",
+ "is there same time ?"
+ ],
+ "prompt": "two {} ear in different positions at same time "
+ },
+ {
+ "index": 740,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "The dog's left ear flopped down",
+ "question": [
+ "is there the dog's left ear ?"
+ ],
+ "prompt": "The {}'s left ear flopped down"
+ },
+ {
+ "index": 741,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "the dog's right ear is up",
+ "question": [
+ "is there the dog's right ear ?"
+ ],
+ "prompt": "the {}'s right ear is up"
+ },
+ {
+ "index": 742,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "the dog's eyes are open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are open"
+ },
+ {
+ "index": 743,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog is laying on dog bed",
+ "question": [
+ "is there dog ?",
+ "is there dog bed ?"
+ ],
+ "prompt": "{} is laying on {} bed"
+ },
+ {
+ "index": 744,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has small nose",
+ "question": [
+ "is there dog ?",
+ "is there small nose ?"
+ ],
+ "prompt": "{} has small nose"
+ },
+ {
+ "index": 745,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog bed is beige",
+ "question": [
+ "is there dog bed ?"
+ ],
+ "prompt": "{} bed is beige"
+ },
+ {
+ "index": 746,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has wavy fur",
+ "question": [
+ "is there dog ?",
+ "is there wavy fur ?"
+ ],
+ "prompt": "{} has wavy fur"
+ },
+ {
+ "index": 747,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has fluffy tail",
+ "question": [
+ "is there dog ?",
+ "is there fluffy tail ?"
+ ],
+ "prompt": "{} has fluffy tail"
+ },
+ {
+ "index": 748,
+ "image_id": 2360725,
+ "entity": "dog",
+ "caption": "the dog is biting an envelope",
+ "question": [
+ "is there the dog ?",
+ "is there an envelope ?"
+ ],
+ "prompt": "the {} is biting an envelope"
+ },
+ {
+ "index": 749,
+ "image_id": 2360725,
+ "entity": "dog",
+ "caption": "dog is carrying an envelope",
+ "question": [
+ "is there dog ?",
+ "is there an envelope ?"
+ ],
+ "prompt": "{} is carrying an envelope"
+ },
+ {
+ "index": 750,
+ "image_id": 2360542,
+ "entity": "dog",
+ "caption": "dog has black eyes",
+ "question": [
+ "is there dog ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "{} has black eyes"
+ },
+ {
+ "index": 751,
+ "image_id": 2360542,
+ "entity": "dog",
+ "caption": "pomeranian dog gets a ride inside duffle bag",
+ "question": [
+ "is there pomeranian dog ?",
+ "is there a ride inside duffle bag ?"
+ ],
+ "prompt": "pomeranian {} gets a ride inside duffle bag"
+ },
+ {
+ "index": 752,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "The front left leg of the dog.",
+ "question": [
+ "is there the front left leg ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The front left leg of the {}."
+ },
+ {
+ "index": 753,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "eyes of dog are round",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are round"
+ },
+ {
+ "index": 754,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "head of dog is brown",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is brown"
+ },
+ {
+ "index": 755,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "dog has dark eyes ",
+ "question": [
+ "is there dog ?",
+ "are there dark eyes ?"
+ ],
+ "prompt": "{} has dark eyes "
+ },
+ {
+ "index": 756,
+ "image_id": 2360299,
+ "entity": "dog",
+ "caption": "dog's right ear is black",
+ "question": [
+ "is there dog's right ear ?"
+ ],
+ "prompt": "{}'s right ear is black"
+ },
+ {
+ "index": 757,
+ "image_id": 2360145,
+ "entity": "dog",
+ "caption": "A shadow line is behind the dogs.",
+ "question": [
+ "is there a shadow line ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "A shadow line is behind the {}s."
+ },
+ {
+ "index": 758,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog with his eyes shut",
+ "question": [
+ "is there dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "{} with his eyes shut"
+ },
+ {
+ "index": 759,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog is on blanket",
+ "question": [
+ "is there dog ?",
+ "is there blanket ?"
+ ],
+ "prompt": "{} is on blanket"
+ },
+ {
+ "index": 760,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog has blonde hair",
+ "question": [
+ "is there dog ?",
+ "is there blonde hair ?"
+ ],
+ "prompt": "{} has blonde hair"
+ },
+ {
+ "index": 761,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog has long hair on ears",
+ "question": [
+ "is there dog ?",
+ "is there long hair ?",
+ "are there ears ?"
+ ],
+ "prompt": "{} has long hair on ears"
+ },
+ {
+ "index": 762,
+ "image_id": 2359809,
+ "entity": "dog",
+ "caption": "The rear left paw of the dog",
+ "question": [
+ "is there the rear left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The rear left paw of the {}"
+ },
+ {
+ "index": 763,
+ "image_id": 2359809,
+ "entity": "dog",
+ "caption": "dog is standing on cement floors",
+ "question": [
+ "is there dog ?",
+ "are there cement floors ?"
+ ],
+ "prompt": "{} is standing on cement floors"
+ },
+ {
+ "index": 764,
+ "image_id": 2359414,
+ "entity": "dog",
+ "caption": "the dog has a banana on its side",
+ "question": [
+ "is there the dog ?",
+ "is there a banana ?",
+ "is there its side ?"
+ ],
+ "prompt": "the {} has a banana on its side"
+ },
+ {
+ "index": 765,
+ "image_id": 2359172,
+ "entity": "dog",
+ "caption": "dog has brown ear",
+ "question": [
+ "is there dog ?",
+ "is there brown ear ?"
+ ],
+ "prompt": "{} has brown ear"
+ },
+ {
+ "index": 766,
+ "image_id": 2359172,
+ "entity": "dog",
+ "caption": "dog has brown eye",
+ "question": [
+ "is there dog ?",
+ "is there brown eye ?"
+ ],
+ "prompt": "{} has brown eye"
+ },
+ {
+ "index": 767,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "Cat is laying on top of dog.",
+ "question": [
+ "is there cat ?",
+ "is there top ?",
+ "is there dog ?"
+ ],
+ "prompt": "Cat is laying on top of {}."
+ },
+ {
+ "index": 768,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "The cat is on the dog.",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The cat is on the {}."
+ },
+ {
+ "index": 769,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "dog has brown eye brows",
+ "question": [
+ "is there dog ?",
+ "are there brown eye brows ?"
+ ],
+ "prompt": "{} has brown eye brows"
+ },
+ {
+ "index": 770,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "dog holds chew toy",
+ "question": [
+ "is there dog ?",
+ "is there toy ?"
+ ],
+ "prompt": "{} holds chew toy"
+ },
+ {
+ "index": 771,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "dog has pink tongue",
+ "question": [
+ "is there dog ?",
+ "is there pink tongue ?"
+ ],
+ "prompt": "{} has pink tongue"
+ },
+ {
+ "index": 772,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is chewing on a toy",
+ "question": [
+ "is there the dog ?",
+ "is there a toy ?"
+ ],
+ "prompt": "the {} is chewing on a toy"
+ },
+ {
+ "index": 773,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog chews on an orange toy",
+ "question": [
+ "is there the dog ?",
+ "is there an orange toy ?"
+ ],
+ "prompt": "the {} chews on an orange toy"
+ },
+ {
+ "index": 774,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is on a blanket"
+ },
+ {
+ "index": 775,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is laying on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is laying on a blanket"
+ },
+ {
+ "index": 776,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "Small orange looking stuffed animal a dog has. ",
+ "question": [
+ "is there small orange ?",
+ "is there stuffed animal ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Small orange looking stuffed animal a {} has. "
+ },
+ {
+ "index": 777,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "A brown dogs left side front paw. ",
+ "question": [
+ "are there a brown dogs ?",
+ "is there side front paw ?"
+ ],
+ "prompt": "A brown {}s left side front paw. "
+ },
+ {
+ "index": 778,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "A dogs left ear. ",
+ "question": [
+ "are there a dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "A {}s left ear. "
+ },
+ {
+ "index": 779,
+ "image_id": 2358486,
+ "entity": "dog",
+ "caption": "dog is leaning over railing",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is leaning over railing"
+ },
+ {
+ "index": 780,
+ "image_id": 2358453,
+ "entity": "dog",
+ "caption": "eye of dog is close",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is close"
+ },
+ {
+ "index": 781,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "dog has a long ear",
+ "question": [
+ "is there dog ?",
+ "is there a long ear ?"
+ ],
+ "prompt": "{} has a long ear"
+ },
+ {
+ "index": 782,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "the dog's head is on the blanket",
+ "question": [
+ "is there the dog's head ?",
+ "is there the blanket ?"
+ ],
+ "prompt": "the {}'s head is on the blanket"
+ },
+ {
+ "index": 783,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "the dog has on a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} has on a red collar"
+ },
+ {
+ "index": 784,
+ "image_id": 2357693,
+ "entity": "dog",
+ "caption": "dog has brown patch on eye",
+ "question": [
+ "is there dog ?",
+ "is there brown patch ?",
+ "is there eye ?"
+ ],
+ "prompt": "{} has brown patch on eye"
+ },
+ {
+ "index": 785,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog is wearing a tie",
+ "question": [
+ "is there the dog ?",
+ "is there a tie ?"
+ ],
+ "prompt": "the {} is wearing a tie"
+ },
+ {
+ "index": 786,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog is lying on the arm of a leather chair",
+ "question": [
+ "is there the dog ?",
+ "is there the arm ?",
+ "is there a leather chair ?"
+ ],
+ "prompt": "the {} is lying on the arm of a leather chair"
+ },
+ {
+ "index": 787,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog has bulgy eyes",
+ "question": [
+ "is there the dog ?",
+ "are there bulgy eyes ?"
+ ],
+ "prompt": "the {} has bulgy eyes"
+ },
+ {
+ "index": 788,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog has dark brown ears",
+ "question": [
+ "is there the dog ?",
+ "are there dark brown ears ?"
+ ],
+ "prompt": "the {} has dark brown ears"
+ },
+ {
+ "index": 789,
+ "image_id": 2356804,
+ "entity": "dog",
+ "caption": "two dogs with their tongues hanging out",
+ "question": [
+ "are there two dogs ?",
+ "are there their tongues ?"
+ ],
+ "prompt": "two {}s with their tongues hanging out"
+ },
+ {
+ "index": 790,
+ "image_id": 2356804,
+ "entity": "dog",
+ "caption": "the dogs are in long grass",
+ "question": [
+ "are there the dogs ?",
+ "is there long grass ?"
+ ],
+ "prompt": "the {}s are in long grass"
+ },
+ {
+ "index": 791,
+ "image_id": 2356762,
+ "entity": "dog",
+ "caption": "This is a dog trying to catch an apple.",
+ "question": [
+ "is there a dog ?",
+ "is there an apple ?"
+ ],
+ "prompt": "This is a {} trying to catch an apple."
+ },
+ {
+ "index": 792,
+ "image_id": 2356762,
+ "entity": "dog",
+ "caption": "The dog has only a few teeth.",
+ "question": [
+ "is there the dog ?",
+ "are there only a few teeth ?"
+ ],
+ "prompt": "The {} has only a few teeth."
+ },
+ {
+ "index": 793,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dog's nose is thru the hole",
+ "question": [
+ "is there the dog's nose ?",
+ "is there the hole ?"
+ ],
+ "prompt": "the {}'s nose is thru the hole"
+ },
+ {
+ "index": 794,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dogs head is stuck",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s head is stuck"
+ },
+ {
+ "index": 795,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dogs head is stuck in the wheel",
+ "question": [
+ "are there the dogs ?",
+ "is there the wheel ?"
+ ],
+ "prompt": "the {}s head is stuck in the wheel"
+ },
+ {
+ "index": 796,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog wears black glasses",
+ "question": [
+ "is there dog ?",
+ "are there black glasses ?"
+ ],
+ "prompt": "{} wears black glasses"
+ },
+ {
+ "index": 797,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog wears black jacket",
+ "question": [
+ "is there dog ?",
+ "is there black jacket ?"
+ ],
+ "prompt": "{} wears black jacket"
+ },
+ {
+ "index": 798,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog is near motorcycle",
+ "question": [
+ "is there dog ?",
+ "is there motorcycle ?"
+ ],
+ "prompt": "{} is near motorcycle"
+ },
+ {
+ "index": 799,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "the dog has sunglasses ",
+ "question": [
+ "is there the dog ?",
+ "are there sunglasses ?"
+ ],
+ "prompt": "the {} has sunglasses "
+ },
+ {
+ "index": 800,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "the dog is on the bike ",
+ "question": [
+ "is there the dog ?",
+ "is there the bike ?"
+ ],
+ "prompt": "the {} is on the bike "
+ },
+ {
+ "index": 801,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "This dog is wearing sunglasses.",
+ "question": [
+ "is there this dog ?",
+ "are there sunglasses ?"
+ ],
+ "prompt": "This {} is wearing sunglasses."
+ },
+ {
+ "index": 802,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog has leash on",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has leash on"
+ },
+ {
+ "index": 803,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog is sitting in side car",
+ "question": [
+ "is there dog ?",
+ "is there side car ?"
+ ],
+ "prompt": "{} is sitting in side car"
+ },
+ {
+ "index": 804,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "blue dog bone shaped tag",
+ "question": [
+ "is there blue dog bone shaped tag ?"
+ ],
+ "prompt": "blue {} bone shaped tag"
+ },
+ {
+ "index": 805,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "dog is wearing a red collar",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "{} is wearing a red collar"
+ },
+ {
+ "index": 806,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "dog is walking on the dirt",
+ "question": [
+ "is there dog ?",
+ "is there the dirt ?"
+ ],
+ "prompt": "{} is walking on the dirt"
+ },
+ {
+ "index": 807,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is wearing goggles",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "The {} is wearing goggles"
+ },
+ {
+ "index": 808,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is on a motorcycle",
+ "question": [
+ "is there the dog ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "The {} is on a motorcycle"
+ },
+ {
+ "index": 809,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is wearing a leather jacket",
+ "question": [
+ "is there the dog ?",
+ "is there a leather jacket ?"
+ ],
+ "prompt": "The {} is wearing a leather jacket"
+ },
+ {
+ "index": 810,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "the nose is black on the dog ",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the nose is black on the {} "
+ },
+ {
+ "index": 811,
+ "image_id": 2355964,
+ "entity": "dog",
+ "caption": "dog ears is pink inside ",
+ "question": [
+ "are there dog ears ?"
+ ],
+ "prompt": "{} ears is pink inside "
+ },
+ {
+ "index": 812,
+ "image_id": 2355964,
+ "entity": "dog",
+ "caption": "dog has black nose ",
+ "question": [
+ "is there dog ?",
+ "is there black nose ?"
+ ],
+ "prompt": "{} has black nose "
+ },
+ {
+ "index": 813,
+ "image_id": 2355944,
+ "entity": "dog",
+ "caption": "The dog is wearing a color",
+ "question": [
+ "is there the dog ?",
+ "is there a color ?"
+ ],
+ "prompt": "The {} is wearing a color"
+ },
+ {
+ "index": 814,
+ "image_id": 2355865,
+ "entity": "dog",
+ "caption": "it is the eye of the dog ",
+ "question": [
+ "is there the eye ?",
+ "is there the dog ?"
+ ],
+ "prompt": "it is the eye of the {} "
+ },
+ {
+ "index": 815,
+ "image_id": 2355519,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in its mouth",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in its mouth"
+ },
+ {
+ "index": 816,
+ "image_id": 2355511,
+ "entity": "dog",
+ "caption": "a black dog right ear ",
+ "question": [
+ "is there a black dog right ear ?"
+ ],
+ "prompt": "a black {} right ear "
+ },
+ {
+ "index": 817,
+ "image_id": 2355511,
+ "entity": "dog",
+ "caption": "A black dog ready to get a bath",
+ "question": [
+ "is there a black dog ?",
+ "is there a bath ?"
+ ],
+ "prompt": "A black {} ready to get a bath"
+ },
+ {
+ "index": 818,
+ "image_id": 2355409,
+ "entity": "dog",
+ "caption": "a dog catchign a freesbee",
+ "question": [
+ "is there a dog ?",
+ "is there a freesbee ?"
+ ],
+ "prompt": "a {} catchign a freesbee"
+ },
+ {
+ "index": 819,
+ "image_id": 2355409,
+ "entity": "dog",
+ "caption": "a white dog catchign a black freesbee",
+ "question": [
+ "is there a white dog ?"
+ ],
+ "prompt": "a white {} catchign a black freesbee"
+ },
+ {
+ "index": 820,
+ "image_id": 2355256,
+ "entity": "dog",
+ "caption": "dog is brown and white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is brown and white"
+ },
+ {
+ "index": 821,
+ "image_id": 2354835,
+ "entity": "dog",
+ "caption": "Brown dog's head sticking out of car window.",
+ "question": [
+ "is there brown dog's head ?",
+ "is there car window ?"
+ ],
+ "prompt": "Brown {}'s head sticking out of car window."
+ },
+ {
+ "index": 822,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "bike is behind the dog",
+ "question": [
+ "is there bike ?",
+ "is there the dog ?"
+ ],
+ "prompt": "bike is behind the {}"
+ },
+ {
+ "index": 823,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "dog has tongue out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} has tongue out"
+ },
+ {
+ "index": 824,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "dog is on the street",
+ "question": [
+ "is there dog ?",
+ "is there the street ?"
+ ],
+ "prompt": "{} is on the street"
+ },
+ {
+ "index": 825,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "This dog has a donut in his mouth",
+ "question": [
+ "is there this dog ?",
+ "is there a donut ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "This {} has a donut in his mouth"
+ },
+ {
+ "index": 826,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog is wearing a red color.",
+ "question": [
+ "is there the dog ?",
+ "is there a red color ?"
+ ],
+ "prompt": "The {} is wearing a red color."
+ },
+ {
+ "index": 827,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog is sitting on the grass.",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "The {} is sitting on the grass."
+ },
+ {
+ "index": 828,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog has two spots on his face.",
+ "question": [
+ "is there the dog ?",
+ "are there two spots ?",
+ "is there his face ?"
+ ],
+ "prompt": "The {} has two spots on his face."
+ },
+ {
+ "index": 829,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "The dog nose is black",
+ "question": [
+ "is there the dog nose ?"
+ ],
+ "prompt": "The {} nose is black"
+ },
+ {
+ "index": 830,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "tan/yellow dog laying across young girls lap",
+ "question": [
+ "is there tan/yellow dog ?",
+ "are there young girls ?"
+ ],
+ "prompt": "tan/yellow {} laying across young girls lap"
+ },
+ {
+ "index": 831,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "dog is wearing a red collar around neck",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?",
+ "is there neck ?"
+ ],
+ "prompt": "{} is wearing a red collar around neck"
+ },
+ {
+ "index": 832,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "Woman laying on the couch with dog.",
+ "question": [
+ "is there woman ?",
+ "is there the couch ?",
+ "is there dog ?"
+ ],
+ "prompt": "Woman laying on the couch with {}."
+ },
+ {
+ "index": 833,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "The dog's head is on the keyboard",
+ "question": [
+ "is there the dog's head ?",
+ "is there the keyboard ?"
+ ],
+ "prompt": "The {}'s head is on the keyboard"
+ },
+ {
+ "index": 834,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue and yellow collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue and yellow collar ?"
+ ],
+ "prompt": "The {} is wearing a blue and yellow collar"
+ },
+ {
+ "index": 835,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "dog is on the keys",
+ "question": [
+ "is there dog ?",
+ "are there the keys ?"
+ ],
+ "prompt": "{} is on the keys"
+ },
+ {
+ "index": 836,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "the dog has yellow and blue flowers",
+ "question": [
+ "is there the dog ?",
+ "are there yellow and blue flowers ?"
+ ],
+ "prompt": "the {} has yellow and blue flowers"
+ },
+ {
+ "index": 837,
+ "image_id": 2353969,
+ "entity": "dog",
+ "caption": "dog has white paw",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has white paw"
+ },
+ {
+ "index": 838,
+ "image_id": 2353969,
+ "entity": "dog",
+ "caption": "dog is laying down on rug",
+ "question": [
+ "is there dog ?",
+ "is there rug ?"
+ ],
+ "prompt": "{} is laying down on rug"
+ },
+ {
+ "index": 839,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "the dog's eye is yellowish",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is yellowish"
+ },
+ {
+ "index": 840,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog has long ears",
+ "question": [
+ "is there the dog ?",
+ "are there long ears ?"
+ ],
+ "prompt": "The {} has long ears"
+ },
+ {
+ "index": 841,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog is wide eyed",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is wide eyed"
+ },
+ {
+ "index": 842,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog's nose is very black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is very black"
+ },
+ {
+ "index": 843,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog is wearing a bowl",
+ "question": [
+ "is there the dog ?",
+ "is there a bowl ?"
+ ],
+ "prompt": "The {} is wearing a bowl"
+ },
+ {
+ "index": 844,
+ "image_id": 2353404,
+ "entity": "dog",
+ "caption": "the plastic buckle on the dog",
+ "question": [
+ "is there the plastic buckle ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the plastic buckle on the {}"
+ },
+ {
+ "index": 845,
+ "image_id": 2353404,
+ "entity": "dog",
+ "caption": "the dog walking and connected to a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} walking and connected to a chain"
+ },
+ {
+ "index": 846,
+ "image_id": 2353398,
+ "entity": "dog",
+ "caption": "green felt the dog is standing on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "green felt the {} is standing on"
+ },
+ {
+ "index": 847,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "the dog is on a sofa",
+ "question": [
+ "is there the dog ?",
+ "is there a sofa ?"
+ ],
+ "prompt": "the {} is on a sofa"
+ },
+ {
+ "index": 848,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "dog's eyes are amber",
+ "question": [
+ "are there dog's eyes ?",
+ "is there amber ?"
+ ],
+ "prompt": "{}'s eyes are amber"
+ },
+ {
+ "index": 849,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "dog is laying on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} is laying on a couch"
+ },
+ {
+ "index": 850,
+ "image_id": 2352757,
+ "entity": "dog",
+ "caption": "the dog is wearing a jacket",
+ "question": [
+ "is there the dog ?",
+ "is there a jacket ?"
+ ],
+ "prompt": "the {} is wearing a jacket"
+ },
+ {
+ "index": 851,
+ "image_id": 2352757,
+ "entity": "dog",
+ "caption": "the dog has a black tail",
+ "question": [
+ "is there the dog ?",
+ "is there a black tail ?"
+ ],
+ "prompt": "the {} has a black tail"
+ },
+ {
+ "index": 852,
+ "image_id": 2352502,
+ "entity": "dog",
+ "caption": "The dog is biting the frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is biting the frisbee."
+ },
+ {
+ "index": 853,
+ "image_id": 2352502,
+ "entity": "dog",
+ "caption": "The dog is on the beach.",
+ "question": [
+ "is there the dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "The {} is on the beach."
+ },
+ {
+ "index": 854,
+ "image_id": 2351971,
+ "entity": "dog",
+ "caption": "legs and paws of dog that allow dog to walk with ",
+ "question": [
+ "are there legs ?",
+ "are there paws ?",
+ "is there dog ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs and paws of {} that allow {} to walk with "
+ },
+ {
+ "index": 855,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "The dog is holding a bowl in his mouth",
+ "question": [
+ "is there the dog ?",
+ "is there a bowl ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} is holding a bowl in his mouth"
+ },
+ {
+ "index": 856,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "The dog's ear is hanging downwards",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "The {}'s ear is hanging downwards"
+ },
+ {
+ "index": 857,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "dog has light brown face",
+ "question": [
+ "is there dog ?",
+ "is there light brown face ?"
+ ],
+ "prompt": "{} has light brown face"
+ },
+ {
+ "index": 858,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "dog is holding bowl",
+ "question": [
+ "is there dog ?",
+ "is there bowl ?"
+ ],
+ "prompt": "{} is holding bowl"
+ },
+ {
+ "index": 859,
+ "image_id": 2351811,
+ "entity": "dog",
+ "caption": "the dogs head ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s head "
+ },
+ {
+ "index": 860,
+ "image_id": 2351083,
+ "entity": "dog",
+ "caption": "dog holds a cap",
+ "question": [
+ "is there dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "{} holds a cap"
+ },
+ {
+ "index": 861,
+ "image_id": 2351083,
+ "entity": "dog",
+ "caption": "the dogs nose is black",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is black"
+ },
+ {
+ "index": 862,
+ "image_id": 2350951,
+ "entity": "dog",
+ "caption": "the mouth of dog is open",
+ "question": [
+ "is there the mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "the mouth of {} is open"
+ },
+ {
+ "index": 863,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the unfortunate dog is wearing a Harley Davidson bandanna",
+ "question": [
+ "is there the unfortunate dog ?"
+ ],
+ "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"
+ },
+ {
+ "index": 864,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the unfortunate dog is wearing a biker headband",
+ "question": [
+ "is there the unfortunate dog ?",
+ "is there a biker headband ?"
+ ],
+ "prompt": "the unfortunate {} is wearing a biker headband"
+ },
+ {
+ "index": 865,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the dog has cropped ears",
+ "question": [
+ "is there the dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "the {} has cropped ears"
+ },
+ {
+ "index": 866,
+ "image_id": 2350609,
+ "entity": "dog",
+ "caption": "lot where dog and woman stand",
+ "question": [
+ "is there lot ?",
+ "is there dog ?",
+ "is there woman ?"
+ ],
+ "prompt": "lot where {} and woman stand"
+ },
+ {
+ "index": 867,
+ "image_id": 2350606,
+ "entity": "dog",
+ "caption": "the dog is on a white platform",
+ "question": [
+ "is there the dog ?",
+ "is there a white platform ?"
+ ],
+ "prompt": "the {} is on a white platform"
+ },
+ {
+ "index": 868,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "legs of dog running",
+ "question": [
+ "are there legs ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs of {} running"
+ },
+ {
+ "index": 869,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "open mouth of dog running",
+ "question": [
+ "is there open mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "open mouth of {} running"
+ },
+ {
+ "index": 870,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog is white with black spots",
+ "question": [
+ "is there the dog ?",
+ "are there black spots ?"
+ ],
+ "prompt": "the {} is white with black spots"
+ },
+ {
+ "index": 871,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog is running with his mouth open",
+ "question": [
+ "is there the dog ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "the {} is running with his mouth open"
+ },
+ {
+ "index": 872,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog has a black spot over his eye",
+ "question": [
+ "is there the dog ?",
+ "is there a black spot ?",
+ "is there his eye ?"
+ ],
+ "prompt": "the {} has a black spot over his eye"
+ },
+ {
+ "index": 873,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dirt is flying from the dog's paws",
+ "question": [
+ "is there the dirt ?",
+ "are there the dog's paws ?"
+ ],
+ "prompt": "the dirt is flying from the {}'s paws"
+ },
+ {
+ "index": 874,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog's paws are touching from running",
+ "question": [
+ "are there the dog's paws ?"
+ ],
+ "prompt": "the {}'s paws are touching from running"
+ },
+ {
+ "index": 875,
+ "image_id": 2349548,
+ "entity": "dog",
+ "caption": "The dogs ear is brown.",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear is brown."
+ },
+ {
+ "index": 876,
+ "image_id": 2349547,
+ "entity": "dog",
+ "caption": "The dog has a pinkish nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a pinkish nose ?"
+ ],
+ "prompt": "The {} has a pinkish nose."
+ },
+ {
+ "index": 877,
+ "image_id": 2349421,
+ "entity": "dog",
+ "caption": "The dog is sitting on the chair ",
+ "question": [
+ "is there the dog ?",
+ "is there the chair ?"
+ ],
+ "prompt": "The {} is sitting on the chair "
+ },
+ {
+ "index": 878,
+ "image_id": 2349268,
+ "entity": "dog",
+ "caption": "the dog has long nails",
+ "question": [
+ "is there the dog ?",
+ "are there long nails ?"
+ ],
+ "prompt": "the {} has long nails"
+ },
+ {
+ "index": 879,
+ "image_id": 2349268,
+ "entity": "dog",
+ "caption": "the dog lays with toy",
+ "question": [
+ "is there the dog ?",
+ "is there toy ?"
+ ],
+ "prompt": "the {} lays with toy"
+ },
+ {
+ "index": 880,
+ "image_id": 2348690,
+ "entity": "dog",
+ "caption": "the dog is chewing up a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "the {} is chewing up a stuffed animal"
+ },
+ {
+ "index": 881,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "dog with hind legs stretched out",
+ "question": [
+ "is there dog ?",
+ "are there hind legs ?"
+ ],
+ "prompt": "{} with hind legs stretched out"
+ },
+ {
+ "index": 882,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "A dog is laying on the bed",
+ "question": [
+ "is there a dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "A {} is laying on the bed"
+ },
+ {
+ "index": 883,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "The dog has white on her paws",
+ "question": [
+ "is there the dog ?",
+ "are there her paws ?"
+ ],
+ "prompt": "The {} has white on her paws"
+ },
+ {
+ "index": 884,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "tan dog's face as he holds the frisbee",
+ "question": [
+ "is there tan dog's face ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "tan {}'s face as he holds the frisbee"
+ },
+ {
+ "index": 885,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "dog's eye looking up past the frisbee",
+ "question": [
+ "is there dog's eye ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{}'s eye looking up past the frisbee"
+ },
+ {
+ "index": 886,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "dog's ear hanging down as he chews the frisbee",
+ "question": [
+ "is there dog's ear ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{}'s ear hanging down as he chews the frisbee"
+ },
+ {
+ "index": 887,
+ "image_id": 2347998,
+ "entity": "dog",
+ "caption": "dog is on the newspaper",
+ "question": [
+ "is there dog ?",
+ "is there the newspaper ?"
+ ],
+ "prompt": "{} is on the newspaper"
+ },
+ {
+ "index": 888,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "a dog tag shaped like a bone ",
+ "question": [
+ "is there a dog tag ?",
+ "is there a bone ?"
+ ],
+ "prompt": "a {} tag shaped like a bone "
+ },
+ {
+ "index": 889,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is inside a room",
+ "question": [
+ "is there the dog ?",
+ "is there a room ?"
+ ],
+ "prompt": "The {} is inside a room"
+ },
+ {
+ "index": 890,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is next to a television",
+ "question": [
+ "is there the dog ?",
+ "is there a television ?"
+ ],
+ "prompt": "The {} is next to a television"
+ },
+ {
+ "index": 891,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is next to a laptop computer",
+ "question": [
+ "is there the dog ?",
+ "is there a laptop computer ?"
+ ],
+ "prompt": "The {} is next to a laptop computer"
+ },
+ {
+ "index": 892,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is on a table",
+ "question": [
+ "is there the dog ?",
+ "is there a table ?"
+ ],
+ "prompt": "The {} is on a table"
+ },
+ {
+ "index": 893,
+ "image_id": 2347591,
+ "entity": "dog",
+ "caption": "A woman who is sitting with a dog",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A woman who is sitting with a {}"
+ },
+ {
+ "index": 894,
+ "image_id": 2347591,
+ "entity": "dog",
+ "caption": "Woman is holding the dog",
+ "question": [
+ "is there woman ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Woman is holding the {}"
+ },
+ {
+ "index": 895,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "a dog with a disc on it's face",
+ "question": [
+ "is there a dog ?",
+ "is there a disc ?"
+ ],
+ "prompt": "a {} with a disc on it's face"
+ },
+ {
+ "index": 896,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "dog has black and white tail",
+ "question": [
+ "is there dog ?",
+ "is there black and white tail ?"
+ ],
+ "prompt": "{} has black and white tail"
+ },
+ {
+ "index": 897,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "dog has white neck",
+ "question": [
+ "is there dog ?",
+ "is there white neck ?"
+ ],
+ "prompt": "{} has white neck"
+ },
+ {
+ "index": 898,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "The dogs tail",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s tail"
+ },
+ {
+ "index": 899,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "The ears that belong to the dog",
+ "question": [
+ "are there the ears ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The ears that belong to the {}"
+ },
+ {
+ "index": 900,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "A dog that is standing in the dirt",
+ "question": [
+ "is there a dog ?",
+ "is there the dirt ?"
+ ],
+ "prompt": "A {} that is standing in the dirt"
+ },
+ {
+ "index": 901,
+ "image_id": 2347473,
+ "entity": "dog",
+ "caption": "the brown patches on the dogs face",
+ "question": [
+ "are there the brown patches ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "the brown patches on the {}s face"
+ },
+ {
+ "index": 902,
+ "image_id": 2347340,
+ "entity": "dog",
+ "caption": "dog's dark eyes are open",
+ "question": [
+ "are there dog's dark eyes ?"
+ ],
+ "prompt": "{}'s dark eyes are open"
+ },
+ {
+ "index": 903,
+ "image_id": 2347340,
+ "entity": "dog",
+ "caption": "the dog is on a chair",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "the {} is on a chair"
+ },
+ {
+ "index": 904,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "the dog is in a car",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "the {} is in a car"
+ },
+ {
+ "index": 905,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "dog has tongue hanging out ",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} has tongue hanging out "
+ },
+ {
+ "index": 906,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "The dog have waggy ear.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} have waggy ear."
+ },
+ {
+ "index": 907,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is resting his head on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there his head ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is resting his head on the couch."
+ },
+ {
+ "index": 908,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "The {} is wearing a blue collar."
+ },
+ {
+ "index": 909,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog's eye is open.",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye is open."
+ },
+ {
+ "index": 910,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog's fur is very short.",
+ "question": [
+ "is there the dog's fur ?"
+ ],
+ "prompt": "The {}'s fur is very short."
+ },
+ {
+ "index": 911,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is sitting on top of white sheet.",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there white sheet ?"
+ ],
+ "prompt": "The {} is sitting on top of white sheet."
+ },
+ {
+ "index": 912,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "the dogs neck is long ",
+ "question": [
+ "are there the dogs neck ?"
+ ],
+ "prompt": "the {}s neck is long "
+ },
+ {
+ "index": 913,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "dog is catching frisbee",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?"
+ ],
+ "prompt": "{} is catching frisbee"
+ },
+ {
+ "index": 914,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "dog has white frisbee in mouth",
+ "question": [
+ "is there dog ?",
+ "is there white frisbee ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} has white frisbee in mouth"
+ },
+ {
+ "index": 915,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "tree is next to dog",
+ "question": [
+ "is there tree ?",
+ "is there dog ?"
+ ],
+ "prompt": "tree is next to {}"
+ },
+ {
+ "index": 916,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "man in cap leaning forward behind dog",
+ "question": [
+ "is there man ?",
+ "is there cap ?",
+ "is there dog ?"
+ ],
+ "prompt": "man in cap leaning forward behind {}"
+ },
+ {
+ "index": 917,
+ "image_id": 2346765,
+ "entity": "dog",
+ "caption": "neck of dog is white",
+ "question": [
+ "is there neck ?",
+ "is there dog ?"
+ ],
+ "prompt": "neck of {} is white"
+ },
+ {
+ "index": 918,
+ "image_id": 2346434,
+ "entity": "dog",
+ "caption": "the dog's eyes are black",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are black"
+ },
+ {
+ "index": 919,
+ "image_id": 2346434,
+ "entity": "dog",
+ "caption": "black pads and nails are on the dog's paws",
+ "question": [
+ "are there black pads ?",
+ "are there nails ?",
+ "are there the dog's paws ?"
+ ],
+ "prompt": "black pads and nails are on the {}'s paws"
+ },
+ {
+ "index": 920,
+ "image_id": 2346247,
+ "entity": "dog",
+ "caption": "Brown ear on the dog.",
+ "question": [
+ "is there brown ear ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Brown ear on the {}."
+ },
+ {
+ "index": 921,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "the black dog has a sad face",
+ "question": [
+ "is there the black dog ?",
+ "is there a sad face ?"
+ ],
+ "prompt": "the black {} has a sad face"
+ },
+ {
+ "index": 922,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "A dog is near a bag.",
+ "question": [
+ "is there a dog ?",
+ "is there a bag ?"
+ ],
+ "prompt": "A {} is near a bag."
+ },
+ {
+ "index": 923,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog's mouth is closed.",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is closed."
+ },
+ {
+ "index": 924,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog is wearing a crocheted hat.",
+ "question": [
+ "is there the dog ?",
+ "is there a crocheted hat ?"
+ ],
+ "prompt": "The {} is wearing a crocheted hat."
+ },
+ {
+ "index": 925,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog has an ear.",
+ "question": [
+ "is there the dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "The {} has an ear."
+ },
+ {
+ "index": 926,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog has an eye.",
+ "question": [
+ "is there the dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "The {} has an eye."
+ },
+ {
+ "index": 927,
+ "image_id": 2345642,
+ "entity": "dog",
+ "caption": "head of dog bowed down ",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} bowed down "
+ },
+ {
+ "index": 928,
+ "image_id": 2345642,
+ "entity": "dog",
+ "caption": "green blanket the dog is laying on",
+ "question": [
+ "is there green blanket ?",
+ "is there the dog ?"
+ ],
+ "prompt": "green blanket the {} is laying on"
+ },
+ {
+ "index": 929,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "the dogs tail ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s tail "
+ },
+ {
+ "index": 930,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "a black dog looks onward with his tongue hanging out",
+ "question": [
+ "is there a black dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "a black {} looks onward with his tongue hanging out"
+ },
+ {
+ "index": 931,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "a man stands on the boat holding a dog with a leash",
+ "question": [
+ "is there a man ?",
+ "is there the boat ?",
+ "is there a dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "a man stands on the boat holding a {} with a leash"
+ },
+ {
+ "index": 932,
+ "image_id": 2345231,
+ "entity": "dog",
+ "caption": "the dogs paws on on the computer",
+ "question": [
+ "are there the dogs ?",
+ "is there the computer ?"
+ ],
+ "prompt": "the {}s paws on on the computer"
+ },
+ {
+ "index": 933,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "Extra pillow for the dog to be comfortable",
+ "question": [
+ "is there extra pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Extra pillow for the {} to be comfortable"
+ },
+ {
+ "index": 934,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "Teddy bear for the dog",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Teddy bear for the {}"
+ },
+ {
+ "index": 935,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "a dog curled up on its bed ",
+ "question": [
+ "is there a dog ?",
+ "is there its bed ?"
+ ],
+ "prompt": "a {} curled up on its bed "
+ },
+ {
+ "index": 936,
+ "image_id": 2344922,
+ "entity": "dog",
+ "caption": "This dog has a very red collar",
+ "question": [
+ "is there this dog ?",
+ "is there a very red collar ?"
+ ],
+ "prompt": "This {} has a very red collar"
+ },
+ {
+ "index": 937,
+ "image_id": 2344729,
+ "entity": "dog",
+ "caption": "the dog is in the car",
+ "question": [
+ "is there the dog ?",
+ "is there the car ?"
+ ],
+ "prompt": "the {} is in the car"
+ },
+ {
+ "index": 938,
+ "image_id": 2344729,
+ "entity": "dog",
+ "caption": "this is the dogs leash",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "this is the {}s leash"
+ },
+ {
+ "index": 939,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "The dog is wearing a tag.",
+ "question": [
+ "is there the dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "The {} is wearing a tag."
+ },
+ {
+ "index": 940,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "dog is wearing a tag",
+ "question": [
+ "is there dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "{} is wearing a tag"
+ },
+ {
+ "index": 941,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "dogs eye looks white ",
+ "question": [
+ "are there dogs ?"
+ ],
+ "prompt": "{}s eye looks white "
+ },
+ {
+ "index": 942,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs nose is black.",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is black."
+ },
+ {
+ "index": 943,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs nose is small",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is small"
+ },
+ {
+ "index": 944,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs fur is white.",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "The {}s fur is white."
+ },
+ {
+ "index": 945,
+ "image_id": 2344358,
+ "entity": "dog",
+ "caption": "this dog is under a white blanket",
+ "question": [
+ "is there this dog ?",
+ "is there a white blanket ?"
+ ],
+ "prompt": "this {} is under a white blanket"
+ },
+ {
+ "index": 946,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "the dog is at the beach",
+ "question": [
+ "is there the dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "the {} is at the beach"
+ },
+ {
+ "index": 947,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "the dog is sitting on a towel",
+ "question": [
+ "is there the dog ?",
+ "is there a towel ?"
+ ],
+ "prompt": "the {} is sitting on a towel"
+ },
+ {
+ "index": 948,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "a bag is by the dog",
+ "question": [
+ "is there a bag ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a bag is by the {}"
+ },
+ {
+ "index": 949,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "Brown dog is on a towel",
+ "question": [
+ "is there brown dog ?",
+ "is there a towel ?"
+ ],
+ "prompt": "Brown {} is on a towel"
+ },
+ {
+ "index": 950,
+ "image_id": 2344228,
+ "entity": "dog",
+ "caption": "the dog has a brown part",
+ "question": [
+ "is there the dog ?",
+ "is there a brown part ?"
+ ],
+ "prompt": "the {} has a brown part"
+ },
+ {
+ "index": 951,
+ "image_id": 2344228,
+ "entity": "dog",
+ "caption": "the dog has a black spot",
+ "question": [
+ "is there the dog ?",
+ "is there a black spot ?"
+ ],
+ "prompt": "the {} has a black spot"
+ },
+ {
+ "index": 952,
+ "image_id": 2343539,
+ "entity": "dog",
+ "caption": "dog's tongue is hanging out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is hanging out"
+ },
+ {
+ "index": 953,
+ "image_id": 2343539,
+ "entity": "dog",
+ "caption": "dog's ears are back ",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are back "
+ },
+ {
+ "index": 954,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has three balls",
+ "question": [
+ "is there the dog ?",
+ "are there three balls ?"
+ ],
+ "prompt": "the {} has three balls"
+ },
+ {
+ "index": 955,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has balls in his mouth",
+ "question": [
+ "is there the dog ?",
+ "are there balls ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "the {} has balls in his mouth"
+ },
+ {
+ "index": 956,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has a spotted nose",
+ "question": [
+ "is there the dog ?",
+ "is there a spotted nose ?"
+ ],
+ "prompt": "the {} has a spotted nose"
+ },
+ {
+ "index": 957,
+ "image_id": 2343149,
+ "entity": "dog",
+ "caption": "The dog is splashing water",
+ "question": [
+ "is there the dog ?",
+ "is there water ?"
+ ],
+ "prompt": "The {} is splashing water"
+ },
+ {
+ "index": 958,
+ "image_id": 2343149,
+ "entity": "dog",
+ "caption": "The dog's teeth are visible",
+ "question": [
+ "are there the dog's teeth ?"
+ ],
+ "prompt": "The {}'s teeth are visible"
+ },
+ {
+ "index": 959,
+ "image_id": 2343038,
+ "entity": "dog",
+ "caption": "dog with eyes closed",
+ "question": [
+ "is there dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} with eyes closed"
+ },
+ {
+ "index": 960,
+ "image_id": 2342562,
+ "entity": "dog",
+ "caption": "dog mout to grab frisbees and eat food and drink water ",
+ "question": [
+ "is there dog mout ?",
+ "are there frisbees ?",
+ "is there food ?",
+ "is there water ?"
+ ],
+ "prompt": "{} mout to grab frisbees and eat food and drink water "
+ },
+ {
+ "index": 961,
+ "image_id": 2342562,
+ "entity": "dog",
+ "caption": "The dog has a black ear.",
+ "question": [
+ "is there the dog ?",
+ "is there a black ear ?"
+ ],
+ "prompt": "The {} has a black ear."
+ },
+ {
+ "index": 962,
+ "image_id": 2341045,
+ "entity": "dog",
+ "caption": "this dog and teddy bear are posing",
+ "question": [
+ "is there this dog ?",
+ "is there bear ?"
+ ],
+ "prompt": "this {} and teddy bear are posing"
+ },
+ {
+ "index": 963,
+ "image_id": 2341045,
+ "entity": "dog",
+ "caption": "The dog is resting on white shaggy carpet.",
+ "question": [
+ "is there the dog ?",
+ "is there white shaggy carpet ?"
+ ],
+ "prompt": "The {} is resting on white shaggy carpet."
+ },
+ {
+ "index": 964,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The banana is inside the dog's mouth.",
+ "question": [
+ "is there the banana ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The banana is inside the {}'s mouth."
+ },
+ {
+ "index": 965,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The little dog is sitting on top of the white blanket.",
+ "question": [
+ "is there the little dog ?",
+ "is there top ?",
+ "is there the white blanket ?"
+ ],
+ "prompt": "The little {} is sitting on top of the white blanket."
+ },
+ {
+ "index": 966,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The dog has a pink collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a pink collar ?"
+ ],
+ "prompt": "The {} has a pink collar."
+ },
+ {
+ "index": 967,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The dog is wearing a white collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a white collar ?"
+ ],
+ "prompt": "The {} is wearing a white collar."
+ },
+ {
+ "index": 968,
+ "image_id": 2340686,
+ "entity": "dog",
+ "caption": "The dog face is partially white.",
+ "question": [
+ "is there the dog face ?"
+ ],
+ "prompt": "The {} face is partially white."
+ },
+ {
+ "index": 969,
+ "image_id": 2339641,
+ "entity": "dog",
+ "caption": "dog has white spot on chest",
+ "question": [
+ "is there dog ?",
+ "is there white spot ?",
+ "is there chest ?"
+ ],
+ "prompt": "{} has white spot on chest"
+ },
+ {
+ "index": 970,
+ "image_id": 2339641,
+ "entity": "dog",
+ "caption": "dog is on a motorcycle",
+ "question": [
+ "is there dog ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "{} is on a motorcycle"
+ },
+ {
+ "index": 971,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "The dog sits on a chair. ",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "The {} sits on a chair. "
+ },
+ {
+ "index": 972,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "A blanket that the dog sits on.",
+ "question": [
+ "is there a blanket ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A blanket that the {} sits on."
+ },
+ {
+ "index": 973,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "dog has black back",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has black back"
+ },
+ {
+ "index": 974,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "The cat is next to the dog.",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The cat is next to the {}."
+ },
+ {
+ "index": 975,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "The paw on the dog is white.",
+ "question": [
+ "is there the paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The paw on the {} is white."
+ },
+ {
+ "index": 976,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "brown striped cat lays next to dog",
+ "question": [
+ "is there brown striped cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "brown striped cat lays next to {}"
+ },
+ {
+ "index": 977,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "white front left paw on dog",
+ "question": [
+ "is there white front ?",
+ "is there paw ?",
+ "is there dog ?"
+ ],
+ "prompt": "white front left paw on {}"
+ },
+ {
+ "index": 978,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "dog has white fur around nose",
+ "question": [
+ "is there dog ?",
+ "is there white fur ?",
+ "is there nose ?"
+ ],
+ "prompt": "{} has white fur around nose"
+ },
+ {
+ "index": 979,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "dog has white fur around paws",
+ "question": [
+ "is there dog ?",
+ "is there white fur ?",
+ "are there paws ?"
+ ],
+ "prompt": "{} has white fur around paws"
+ },
+ {
+ "index": 980,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has black ear",
+ "question": [
+ "is there dog ?",
+ "is there black ear ?"
+ ],
+ "prompt": "{} has black ear"
+ },
+ {
+ "index": 981,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has black eye",
+ "question": [
+ "is there dog ?",
+ "is there black eye ?"
+ ],
+ "prompt": "{} has black eye"
+ },
+ {
+ "index": 982,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has a white tooth",
+ "question": [
+ "is there dog ?",
+ "is there a white tooth ?"
+ ],
+ "prompt": "{} has a white tooth"
+ },
+ {
+ "index": 983,
+ "image_id": 2337950,
+ "entity": "dog",
+ "caption": "couch man and dog are sitting on",
+ "question": [
+ "is there couch man ?",
+ "is there dog ?"
+ ],
+ "prompt": "couch man and {} are sitting on"
+ },
+ {
+ "index": 984,
+ "image_id": 2337205,
+ "entity": "dog",
+ "caption": "the dog's eye is open ",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is open "
+ },
+ {
+ "index": 985,
+ "image_id": 2336811,
+ "entity": "dog",
+ "caption": "Front left paw of the dog",
+ "question": [
+ "is there front left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Front left paw of the {}"
+ },
+ {
+ "index": 986,
+ "image_id": 2336773,
+ "entity": "dog",
+ "caption": "Small dogs right eye",
+ "question": [
+ "are there small dogs ?"
+ ],
+ "prompt": "Small {}s right eye"
+ },
+ {
+ "index": 987,
+ "image_id": 2336773,
+ "entity": "dog",
+ "caption": "Small dogs left eye",
+ "question": [
+ "are there small dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "Small {}s left eye"
+ },
+ {
+ "index": 988,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog is carrying a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is carrying a frisbee"
+ },
+ {
+ "index": 989,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's front legs are white",
+ "question": [
+ "are there the dog's front legs ?"
+ ],
+ "prompt": "the {}'s front legs are white"
+ },
+ {
+ "index": 990,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's back legs are black",
+ "question": [
+ "are there the dog's back legs ?"
+ ],
+ "prompt": "the {}'s back legs are black"
+ },
+ {
+ "index": 991,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's shadow is in the grass",
+ "question": [
+ "is there the dog's shadow ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {}'s shadow is in the grass"
+ },
+ {
+ "index": 992,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "dog with it's head in a box",
+ "question": [
+ "is there dog ?",
+ "is there head ?",
+ "is there a box ?"
+ ],
+ "prompt": "{} with it's head in a box"
+ },
+ {
+ "index": 993,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "A black streak down dogs back",
+ "question": [
+ "is there a black streak ?"
+ ],
+ "prompt": "A black streak down {}s back"
+ },
+ {
+ "index": 994,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "the dogs head is in the box",
+ "question": [
+ "are there the dogs ?",
+ "is there the box ?"
+ ],
+ "prompt": "the {}s head is in the box"
+ },
+ {
+ "index": 995,
+ "image_id": 2336257,
+ "entity": "dog",
+ "caption": "the dog is in water",
+ "question": [
+ "is there the dog ?",
+ "is there water ?"
+ ],
+ "prompt": "the {} is in water"
+ },
+ {
+ "index": 996,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "Black and white dog standing on a sandy ground.",
+ "question": [
+ "is there black and white dog ?",
+ "is there a sandy ground ?"
+ ],
+ "prompt": "Black and white {} standing on a sandy ground."
+ },
+ {
+ "index": 997,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "The dog's pink tongue sticking out.",
+ "question": [
+ "is there the dog's pink tongue ?"
+ ],
+ "prompt": "The {}'s pink tongue sticking out."
+ },
+ {
+ "index": 998,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's face is black and white",
+ "question": [
+ "is there dog's face ?"
+ ],
+ "prompt": "{}'s face is black and white"
+ },
+ {
+ "index": 999,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's tongue is sticking out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is sticking out"
+ },
+ {
+ "index": 1000,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's paw is white",
+ "question": [
+ "is there dog's paw ?"
+ ],
+ "prompt": "{}'s paw is white"
+ },
+ {
+ "index": 1001,
+ "image_id": 2336045,
+ "entity": "dog",
+ "caption": "fake dog sits on bench",
+ "question": [
+ "is there fake dog ?",
+ "is there bench ?"
+ ],
+ "prompt": "fake {} sits on bench"
+ },
+ {
+ "index": 1002,
+ "image_id": 2336045,
+ "entity": "dog",
+ "caption": "fake dog wears red collar",
+ "question": [
+ "is there fake dog ?",
+ "is there red collar ?"
+ ],
+ "prompt": "fake {} wears red collar"
+ },
+ {
+ "index": 1003,
+ "image_id": 2335892,
+ "entity": "dog",
+ "caption": "Toy occupies leashed dog.",
+ "question": [
+ "is there toy ?",
+ "is there leashed dog ?"
+ ],
+ "prompt": "Toy occupies leashed {}."
+ },
+ {
+ "index": 1004,
+ "image_id": 2335707,
+ "entity": "dog",
+ "caption": "dog has dark claws",
+ "question": [
+ "is there dog ?",
+ "are there dark claws ?"
+ ],
+ "prompt": "{} has dark claws"
+ },
+ {
+ "index": 1005,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "Tan dog is holding toy in mouth.",
+ "question": [
+ "is there tan dog ?",
+ "is there toy ?",
+ "is there mouth ?"
+ ],
+ "prompt": "Tan {} is holding toy in mouth."
+ },
+ {
+ "index": 1006,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "This dog seems to have a white face",
+ "question": [
+ "is there this dog ?",
+ "is there a white face ?"
+ ],
+ "prompt": "This {} seems to have a white face"
+ },
+ {
+ "index": 1007,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "This dog has quite a paw visible here",
+ "question": [
+ "is there this dog ?",
+ "is there quite a paw ?"
+ ],
+ "prompt": "This {} has quite a paw visible here"
+ },
+ {
+ "index": 1008,
+ "image_id": 2335550,
+ "entity": "dog",
+ "caption": "dog is laying on the couch",
+ "question": [
+ "is there dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "{} is laying on the couch"
+ },
+ {
+ "index": 1009,
+ "image_id": 2335550,
+ "entity": "dog",
+ "caption": "dog has fluffy dark fur",
+ "question": [
+ "is there dog ?",
+ "is there fluffy dark fur ?"
+ ],
+ "prompt": "{} has fluffy dark fur"
+ },
+ {
+ "index": 1010,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "an ear is up on the dog",
+ "question": [
+ "is there an ear ?",
+ "is there the dog ?"
+ ],
+ "prompt": "an ear is up on the {}"
+ },
+ {
+ "index": 1011,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "the dog is wearing a yellow coat",
+ "question": [
+ "is there the dog ?",
+ "is there a yellow coat ?"
+ ],
+ "prompt": "the {} is wearing a yellow coat"
+ },
+ {
+ "index": 1012,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "dog's cloth is green",
+ "question": [
+ "is there dog's cloth ?"
+ ],
+ "prompt": "{}'s cloth is green"
+ },
+ {
+ "index": 1013,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "Chain connected to dog's collar.",
+ "question": [
+ "is there chain ?",
+ "is there dog's collar ?"
+ ],
+ "prompt": "Chain connected to {}'s collar."
+ },
+ {
+ "index": 1014,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "the dog has a collar ",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar "
+ },
+ {
+ "index": 1015,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "the collar is around the dog's neck",
+ "question": [
+ "is there the collar ?",
+ "is there the dog's neck ?"
+ ],
+ "prompt": "the collar is around the {}'s neck"
+ },
+ {
+ "index": 1016,
+ "image_id": 2334936,
+ "entity": "dog",
+ "caption": "dog has an eye",
+ "question": [
+ "is there dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "{} has an eye"
+ },
+ {
+ "index": 1017,
+ "image_id": 2334611,
+ "entity": "dog",
+ "caption": "front left foot on dog",
+ "question": [
+ "is there front left foot ?",
+ "is there dog ?"
+ ],
+ "prompt": "front left foot on {}"
+ },
+ {
+ "index": 1018,
+ "image_id": 2334526,
+ "entity": "dog",
+ "caption": "The dog nose is black.",
+ "question": [
+ "is there the dog nose ?"
+ ],
+ "prompt": "The {} nose is black."
+ },
+ {
+ "index": 1019,
+ "image_id": 2334526,
+ "entity": "dog",
+ "caption": "The dog eyes on his face.",
+ "question": [
+ "is there the dog ?",
+ "is there his face ?"
+ ],
+ "prompt": "The {} eyes on his face."
+ },
+ {
+ "index": 1020,
+ "image_id": 2334482,
+ "entity": "dog",
+ "caption": "This is a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "This is a {}"
+ },
+ {
+ "index": 1021,
+ "image_id": 2334482,
+ "entity": "dog",
+ "caption": "The dog is on a bench",
+ "question": [
+ "is there the dog ?",
+ "is there a bench ?"
+ ],
+ "prompt": "The {} is on a bench"
+ },
+ {
+ "index": 1022,
+ "image_id": 2334375,
+ "entity": "dog",
+ "caption": "dog nose is black",
+ "question": [
+ "is there dog nose ?"
+ ],
+ "prompt": "{} nose is black"
+ },
+ {
+ "index": 1023,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left eye is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye is black."
+ },
+ {
+ "index": 1024,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left eye is round.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye is round."
+ },
+ {
+ "index": 1025,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left ear is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "The {}s left ear is black."
+ },
+ {
+ "index": 1026,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs right eye is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there right eye ?"
+ ],
+ "prompt": "The {}s right eye is black."
+ },
+ {
+ "index": 1027,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "The dog is laying on the back of the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the back ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is laying on the back of the couch"
+ },
+ {
+ "index": 1028,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "The dogs tongue is sticking out of his mouth",
+ "question": [
+ "are there the dogs tongue ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {}s tongue is sticking out of his mouth"
+ },
+ {
+ "index": 1029,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has a nose",
+ "question": [
+ "is there dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "{} has a nose"
+ },
+ {
+ "index": 1030,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has an ear",
+ "question": [
+ "is there dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "{} has an ear"
+ },
+ {
+ "index": 1031,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has a tounge",
+ "question": [
+ "is there dog ?",
+ "is there a tounge ?"
+ ],
+ "prompt": "{} has a tounge"
+ },
+ {
+ "index": 1032,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has an arm",
+ "question": [
+ "is there dog ?",
+ "is there an arm ?"
+ ],
+ "prompt": "{} has an arm"
+ },
+ {
+ "index": 1033,
+ "image_id": 2333590,
+ "entity": "dog",
+ "caption": "the dog is smelling her hand",
+ "question": [
+ "is there the dog ?",
+ "is there her hand ?"
+ ],
+ "prompt": "the {} is smelling her hand"
+ },
+ {
+ "index": 1034,
+ "image_id": 2333443,
+ "entity": "dog",
+ "caption": "wet dog taking a bath in a tub",
+ "question": [
+ "is there wet dog ?",
+ "is there a bath ?",
+ "is there a tub ?"
+ ],
+ "prompt": "wet {} taking a bath in a tub"
+ },
+ {
+ "index": 1035,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a brown eye.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown eye ?"
+ ],
+ "prompt": "The {} has a brown eye."
+ },
+ {
+ "index": 1036,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dogs eye is open.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is open."
+ },
+ {
+ "index": 1037,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has teeth.",
+ "question": [
+ "is there the dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "The {} has teeth."
+ },
+ {
+ "index": 1038,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a tongue.",
+ "question": [
+ "is there the dog ?",
+ "is there a tongue ?"
+ ],
+ "prompt": "The {} has a tongue."
+ },
+ {
+ "index": 1039,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "The {} has a red collar"
+ },
+ {
+ "index": 1040,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog with its ears bag",
+ "question": [
+ "is there dog ?",
+ "are there its ears ?"
+ ],
+ "prompt": "{} with its ears bag"
+ },
+ {
+ "index": 1041,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog mouth open",
+ "question": [],
+ "prompt": "{} mouth open"
+ },
+ {
+ "index": 1042,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog has black and white paws",
+ "question": [
+ "is there dog ?",
+ "are there black and white paws ?"
+ ],
+ "prompt": "{} has black and white paws"
+ },
+ {
+ "index": 1043,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog's mouth is open with tounge out",
+ "question": [
+ "is there dog's mouth ?",
+ "is there tounge ?"
+ ],
+ "prompt": "{}'s mouth is open with tounge out"
+ },
+ {
+ "index": 1044,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog has its mouth open.",
+ "question": [
+ "is there the dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has its mouth open."
+ },
+ {
+ "index": 1045,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog's ear is standing straight up.",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is standing straight up."
+ },
+ {
+ "index": 1046,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog's left back leg.",
+ "question": [
+ "is there the dog ?",
+ "is there leg ?"
+ ],
+ "prompt": "the {}'s left back leg."
+ },
+ {
+ "index": 1047,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "dog mouth wide open ",
+ "question": [],
+ "prompt": "{} mouth wide open "
+ },
+ {
+ "index": 1048,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "dog's tongue is pink.",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is pink."
+ },
+ {
+ "index": 1049,
+ "image_id": 2332835,
+ "entity": "dog",
+ "caption": "The dogs tongue is pink.",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "The {}s tongue is pink."
+ },
+ {
+ "index": 1050,
+ "image_id": 2332835,
+ "entity": "dog",
+ "caption": "The dogs right eye is round.",
+ "question": [
+ "are there the dogs ?",
+ "is there right eye ?"
+ ],
+ "prompt": "The {}s right eye is round."
+ },
+ {
+ "index": 1051,
+ "image_id": 2332607,
+ "entity": "dog",
+ "caption": "dog's eyes looking at camera",
+ "question": [
+ "are there dog's eyes ?",
+ "is there camera ?"
+ ],
+ "prompt": "{}'s eyes looking at camera"
+ },
+ {
+ "index": 1052,
+ "image_id": 2332583,
+ "entity": "dog",
+ "caption": "dog has brown tail",
+ "question": [
+ "is there dog ?",
+ "is there brown tail ?"
+ ],
+ "prompt": "{} has brown tail"
+ },
+ {
+ "index": 1053,
+ "image_id": 2332583,
+ "entity": "dog",
+ "caption": "dog has brown back",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has brown back"
+ },
+ {
+ "index": 1054,
+ "image_id": 2332513,
+ "entity": "dog",
+ "caption": "two dogs are lying ",
+ "question": [
+ "are there two dogs ?"
+ ],
+ "prompt": "two {}s are lying "
+ },
+ {
+ "index": 1055,
+ "image_id": 2332513,
+ "entity": "dog",
+ "caption": "this dog's head is up ",
+ "question": [
+ "is there this dog's head ?"
+ ],
+ "prompt": "this {}'s head is up "
+ },
+ {
+ "index": 1056,
+ "image_id": 2332418,
+ "entity": "dog",
+ "caption": "dog has white ears",
+ "question": [
+ "is there dog ?",
+ "are there white ears ?"
+ ],
+ "prompt": "{} has white ears"
+ },
+ {
+ "index": 1057,
+ "image_id": 2331647,
+ "entity": "dog",
+ "caption": "The hat the dog is wearing.",
+ "question": [
+ "is there the hat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The hat the {} is wearing."
+ },
+ {
+ "index": 1058,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog tongue is pink.",
+ "question": [
+ "is there the dog tongue ?"
+ ],
+ "prompt": "The {} tongue is pink."
+ },
+ {
+ "index": 1059,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog is licking his tongue out.",
+ "question": [
+ "is there the dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "The {} is licking his tongue out."
+ },
+ {
+ "index": 1060,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The frisbee is near the dog leg.",
+ "question": [
+ "is there the dog leg ?"
+ ],
+ "prompt": "The frisbee is near the {} leg."
+ },
+ {
+ "index": 1061,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog is playing with the frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is playing with the frisbee"
+ },
+ {
+ "index": 1062,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The Frisbee is in front of the dog. ",
+ "question": [
+ "is there the frisbee ?",
+ "is there front ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The Frisbee is in front of the {}. "
+ },
+ {
+ "index": 1063,
+ "image_id": 2331395,
+ "entity": "dog",
+ "caption": "The front left paw of the dog.",
+ "question": [
+ "is there the front left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The front left paw of the {}."
+ },
+ {
+ "index": 1064,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has long nose",
+ "question": [
+ "is there dog ?",
+ "is there long nose ?"
+ ],
+ "prompt": "{} has long nose"
+ },
+ {
+ "index": 1065,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has nice coat",
+ "question": [
+ "is there dog ?",
+ "is there nice coat ?"
+ ],
+ "prompt": "{} has nice coat"
+ },
+ {
+ "index": 1066,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has big ear",
+ "question": [
+ "is there dog ?",
+ "is there big ear ?"
+ ],
+ "prompt": "{} has big ear"
+ },
+ {
+ "index": 1067,
+ "image_id": 2329335,
+ "entity": "dog",
+ "caption": "dog has brown paws",
+ "question": [
+ "is there dog ?",
+ "are there brown paws ?"
+ ],
+ "prompt": "{} has brown paws"
+ },
+ {
+ "index": 1068,
+ "image_id": 2329309,
+ "entity": "dog",
+ "caption": "brown white and black dog catching yellow Frisbee",
+ "question": [
+ "is there brown white and black dog ?",
+ "is there yellow frisbee ?"
+ ],
+ "prompt": "brown white and black {} catching yellow Frisbee"
+ },
+ {
+ "index": 1069,
+ "image_id": 2329309,
+ "entity": "dog",
+ "caption": "Frisbee caught by black and brown dog",
+ "question": [
+ "is there black and brown dog ?"
+ ],
+ "prompt": "Frisbee caught by black and brown {}"
+ },
+ {
+ "index": 1070,
+ "image_id": 2329275,
+ "entity": "dog",
+ "caption": "the dog is lying on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is lying on the couch"
+ },
+ {
+ "index": 1071,
+ "image_id": 2329129,
+ "entity": "dog",
+ "caption": "the dog is eating a cake",
+ "question": [
+ "is there the dog ?",
+ "is there a cake ?"
+ ],
+ "prompt": "the {} is eating a cake"
+ },
+ {
+ "index": 1072,
+ "image_id": 2328916,
+ "entity": "dog",
+ "caption": "The dog is sniffing the donut",
+ "question": [
+ "is there the dog ?",
+ "is there the donut ?"
+ ],
+ "prompt": "The {} is sniffing the donut"
+ },
+ {
+ "index": 1073,
+ "image_id": 2328916,
+ "entity": "dog",
+ "caption": "bulldog sniffing a doughnut ",
+ "question": [
+ "is there a doughnut ?"
+ ],
+ "prompt": "bull{} sniffing a doughnut "
+ },
+ {
+ "index": 1074,
+ "image_id": 2328869,
+ "entity": "dog",
+ "caption": "black hat dog is wearing",
+ "question": [
+ "is there black hat dog ?"
+ ],
+ "prompt": "black hat {} is wearing"
+ },
+ {
+ "index": 1075,
+ "image_id": 2328633,
+ "entity": "dog",
+ "caption": "a dog with black spots on it's ear",
+ "question": [
+ "is there a dog ?",
+ "are there black spots ?",
+ "is there ear ?"
+ ],
+ "prompt": "a {} with black spots on it's ear"
+ },
+ {
+ "index": 1076,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog is in a car ",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "the {} is in a car "
+ },
+ {
+ "index": 1077,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog is sticking its head out ",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?"
+ ],
+ "prompt": "the {} is sticking its head out "
+ },
+ {
+ "index": 1078,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog has its head out the window ",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} has its head out the window "
+ },
+ {
+ "index": 1079,
+ "image_id": 2327286,
+ "entity": "dog",
+ "caption": "the dogs eyes are closed",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are closed"
+ },
+ {
+ "index": 1080,
+ "image_id": 2326860,
+ "entity": "dog",
+ "caption": "The dog has a frisbee inside his mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} has a frisbee inside his mouth."
+ },
+ {
+ "index": 1081,
+ "image_id": 2326801,
+ "entity": "dog",
+ "caption": "A blue duffel bag a dog is on.",
+ "question": [
+ "is there a blue duffel bag ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A blue duffel bag a {} is on."
+ },
+ {
+ "index": 1082,
+ "image_id": 2325767,
+ "entity": "dog",
+ "caption": "A person is holding the dog",
+ "question": [
+ "is there a person ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A person is holding the {}"
+ },
+ {
+ "index": 1083,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's mouth is open",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is open"
+ },
+ {
+ "index": 1084,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's nose is black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black"
+ },
+ {
+ "index": 1085,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's eyes are open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open"
+ },
+ {
+ "index": 1086,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "dog has a black nose ",
+ "question": [
+ "is there dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "{} has a black nose "
+ },
+ {
+ "index": 1087,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dog has brown eye",
+ "question": [
+ "is there the dog ?",
+ "is there brown eye ?"
+ ],
+ "prompt": "the {} has brown eye"
+ },
+ {
+ "index": 1088,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dogs left eye ",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {}s left eye "
+ },
+ {
+ "index": 1089,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dogs left ear ",
+ "question": [
+ "are there the dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "the {}s left ear "
+ },
+ {
+ "index": 1090,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "dog has orange eyes",
+ "question": [
+ "is there dog ?",
+ "are there orange eyes ?"
+ ],
+ "prompt": "{} has orange eyes"
+ },
+ {
+ "index": 1091,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "brown dog has golden eyes",
+ "question": [
+ "is there brown dog ?",
+ "are there golden eyes ?"
+ ],
+ "prompt": "brown {} has golden eyes"
+ },
+ {
+ "index": 1092,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has brown eyes",
+ "question": [
+ "is there black dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "black {} has brown eyes"
+ },
+ {
+ "index": 1093,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has a black nose",
+ "question": [
+ "is there black dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "black {} has a black nose"
+ },
+ {
+ "index": 1094,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has some white hair in its ruff",
+ "question": [
+ "is there black dog ?",
+ "is there some white hair ?",
+ "is there its ruff ?"
+ ],
+ "prompt": "black {} has some white hair in its ruff"
+ },
+ {
+ "index": 1095,
+ "image_id": 2325500,
+ "entity": "dog",
+ "caption": "eyes of dog open wide",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} open wide"
+ },
+ {
+ "index": 1096,
+ "image_id": 2325500,
+ "entity": "dog",
+ "caption": "the dog has a safety vest",
+ "question": [
+ "is there the dog ?",
+ "is there a safety vest ?"
+ ],
+ "prompt": "the {} has a safety vest"
+ },
+ {
+ "index": 1097,
+ "image_id": 2325442,
+ "entity": "dog",
+ "caption": "dog's ears are pink",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are pink"
+ },
+ {
+ "index": 1098,
+ "image_id": 2325387,
+ "entity": "dog",
+ "caption": "Woman laying on the floor next to dog.",
+ "question": [
+ "is there woman ?",
+ "is there the floor ?",
+ "is there dog ?"
+ ],
+ "prompt": "Woman laying on the floor next to {}."
+ },
+ {
+ "index": 1099,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog has black patch over eye.",
+ "question": [
+ "is there the dog ?",
+ "is there black patch ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {} has black patch over eye."
+ },
+ {
+ "index": 1100,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog is carrying a blue frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there a blue frisbee ?"
+ ],
+ "prompt": "The {} is carrying a blue frisbee."
+ },
+ {
+ "index": 1101,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog has a nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "The {} has a nose."
+ },
+ {
+ "index": 1102,
+ "image_id": 2323880,
+ "entity": "dog",
+ "caption": "dog is in picture",
+ "question": [
+ "is there dog ?",
+ "is there picture ?"
+ ],
+ "prompt": "{} is in picture"
+ },
+ {
+ "index": 1103,
+ "image_id": 2323470,
+ "entity": "dog",
+ "caption": "the dog is laying in a green towel",
+ "question": [
+ "is there the dog ?",
+ "is there a green towel ?"
+ ],
+ "prompt": "the {} is laying in a green towel"
+ },
+ {
+ "index": 1104,
+ "image_id": 2322848,
+ "entity": "dog",
+ "caption": "the cat and the dog are good friends",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?",
+ "are there good friends ?"
+ ],
+ "prompt": "the cat and the {} are good friends"
+ },
+ {
+ "index": 1105,
+ "image_id": 2322848,
+ "entity": "dog",
+ "caption": "this cat and this dog are obviously best friends",
+ "question": [
+ "is there this cat ?",
+ "is there this dog ?",
+ "are there best friends ?"
+ ],
+ "prompt": "this cat and this {} are obviously best friends"
+ },
+ {
+ "index": 1106,
+ "image_id": 2322792,
+ "entity": "dog",
+ "caption": "extended wet dog ear ",
+ "question": [
+ "is there extended wet dog ear ?"
+ ],
+ "prompt": "extended wet {} ear "
+ },
+ {
+ "index": 1107,
+ "image_id": 2322792,
+ "entity": "dog",
+ "caption": "dog ear flipping up",
+ "question": [
+ "is there dog ear ?"
+ ],
+ "prompt": "{} ear flipping up"
+ },
+ {
+ "index": 1108,
+ "image_id": 2322492,
+ "entity": "dog",
+ "caption": "Pile of clothes a small dog is lying on",
+ "question": [
+ "is there pile ?",
+ "are there clothes ?",
+ "is there a small dog ?"
+ ],
+ "prompt": "Pile of clothes a small {} is lying on"
+ },
+ {
+ "index": 1109,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "a dog is lying in the bed",
+ "question": [
+ "is there a dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "a {} is lying in the bed"
+ },
+ {
+ "index": 1110,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dog is under the sheet",
+ "question": [
+ "is there the dog ?",
+ "is there the sheet ?"
+ ],
+ "prompt": "the {} is under the sheet"
+ },
+ {
+ "index": 1111,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dogs ears are brown",
+ "question": [
+ "are there the dogs ears ?"
+ ],
+ "prompt": "the {}s ears are brown"
+ },
+ {
+ "index": 1112,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dogs front legs are white",
+ "question": [
+ "are there the dogs ?",
+ "are there front legs ?"
+ ],
+ "prompt": "the {}s front legs are white"
+ },
+ {
+ "index": 1113,
+ "image_id": 2322086,
+ "entity": "dog",
+ "caption": "the dog has white spots",
+ "question": [
+ "is there the dog ?",
+ "are there white spots ?"
+ ],
+ "prompt": "the {} has white spots"
+ },
+ {
+ "index": 1114,
+ "image_id": 2321901,
+ "entity": "dog",
+ "caption": "the dog is laying on a pillow ",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "the {} is laying on a pillow "
+ },
+ {
+ "index": 1115,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "A silver chain is around the dog's neck.",
+ "question": [
+ "is there a silver chain ?",
+ "is there the dog's neck ?"
+ ],
+ "prompt": "A silver chain is around the {}'s neck."
+ },
+ {
+ "index": 1116,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "The dog's left ear is black and brown. ",
+ "question": [
+ "is there the dog's left ear ?"
+ ],
+ "prompt": "The {}'s left ear is black and brown. "
+ },
+ {
+ "index": 1117,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "The dog's right ear is black and brown. ",
+ "question": [
+ "is there the dog's right ear ?"
+ ],
+ "prompt": "The {}'s right ear is black and brown. "
+ },
+ {
+ "index": 1118,
+ "image_id": 2321386,
+ "entity": "dog",
+ "caption": "the dog has a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} has a chain"
+ },
+ {
+ "index": 1119,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "the dog has a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} has a frisbee"
+ },
+ {
+ "index": 1120,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "the dog has the frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "the {} has the frisbee"
+ },
+ {
+ "index": 1121,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "teh dog has brown eyes",
+ "question": [
+ "are there brown eyes ?"
+ ],
+ "prompt": "teh {} has brown eyes"
+ },
+ {
+ "index": 1122,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "dog has frisbee in his mouth",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has frisbee in his mouth"
+ },
+ {
+ "index": 1123,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "dog in mouth is pink",
+ "question": [
+ "is there dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} in mouth is pink"
+ },
+ {
+ "index": 1124,
+ "image_id": 2319884,
+ "entity": "dog",
+ "caption": "dog is eating a vitamin water",
+ "question": [
+ "is there dog ?",
+ "is there a vitamin water ?"
+ ],
+ "prompt": "{} is eating a vitamin water"
+ },
+ {
+ "index": 1125,
+ "image_id": 2319723,
+ "entity": "dog",
+ "caption": "the dog is kissing the cat",
+ "question": [
+ "is there the dog ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is kissing the cat"
+ },
+ {
+ "index": 1126,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is wearing a shirt",
+ "question": [
+ "is there the dog ?",
+ "is there a shirt ?"
+ ],
+ "prompt": "The {} is wearing a shirt"
+ },
+ {
+ "index": 1127,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog has on a nice shirt",
+ "question": [
+ "is there the dog ?",
+ "is there a nice shirt ?"
+ ],
+ "prompt": "The {} has on a nice shirt"
+ },
+ {
+ "index": 1128,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog has very long hair",
+ "question": [
+ "is there the dog ?",
+ "is there very long hair ?"
+ ],
+ "prompt": "The {} has very long hair"
+ },
+ {
+ "index": 1129,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is having a great time",
+ "question": [
+ "is there the dog ?",
+ "is there a great time ?"
+ ],
+ "prompt": "The {} is having a great time"
+ },
+ {
+ "index": 1130,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is out in the daytime",
+ "question": [
+ "is there the dog ?",
+ "is there the daytime ?"
+ ],
+ "prompt": "The {} is out in the daytime"
+ },
+ {
+ "index": 1131,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is enjoying the day",
+ "question": [
+ "is there the dog ?",
+ "is there the day ?"
+ ],
+ "prompt": "The {} is enjoying the day"
+ },
+ {
+ "index": 1132,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is wearing a shirt",
+ "question": [
+ "is there a dog ?",
+ "is there a shirt ?"
+ ],
+ "prompt": "A {} is wearing a shirt"
+ },
+ {
+ "index": 1133,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog has on a visor",
+ "question": [
+ "is there a dog ?",
+ "is there a visor ?"
+ ],
+ "prompt": "A {} has on a visor"
+ },
+ {
+ "index": 1134,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog has white curly hair",
+ "question": [
+ "is there a dog ?",
+ "is there white curly hair ?"
+ ],
+ "prompt": "A {} has white curly hair"
+ },
+ {
+ "index": 1135,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is sticking its tongue out",
+ "question": [
+ "is there a dog ?",
+ "is there its tongue ?"
+ ],
+ "prompt": "A {} is sticking its tongue out"
+ },
+ {
+ "index": 1136,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is with its master",
+ "question": [
+ "is there a dog ?",
+ "is there its master ?"
+ ],
+ "prompt": "A {} is with its master"
+ },
+ {
+ "index": 1137,
+ "image_id": 2318892,
+ "entity": "dog",
+ "caption": "The dog has black fur",
+ "question": [
+ "is there the dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "The {} has black fur"
+ },
+ {
+ "index": 1138,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "brown dog curled up with head on blanket",
+ "question": [
+ "is there brown dog ?",
+ "is there head ?",
+ "is there blanket ?"
+ ],
+ "prompt": "brown {} curled up with head on blanket"
+ },
+ {
+ "index": 1139,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "brown dog cuddled with toy with paw on bunny",
+ "question": [
+ "is there brown dog ?",
+ "is there toy ?",
+ "is there paw ?",
+ "is there bunny ?"
+ ],
+ "prompt": "brown {} cuddled with toy with paw on bunny"
+ },
+ {
+ "index": 1140,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "a dog is in bed",
+ "question": [
+ "is there a dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "a {} is in bed"
+ },
+ {
+ "index": 1141,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "the dog is holding a doll",
+ "question": [
+ "is there the dog ?",
+ "is there a doll ?"
+ ],
+ "prompt": "the {} is holding a doll"
+ },
+ {
+ "index": 1142,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "another doll lies close to the dog",
+ "question": [
+ "is there another doll ?",
+ "is there the dog ?"
+ ],
+ "prompt": "another doll lies close to the {}"
+ },
+ {
+ "index": 1143,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "dog eyes are open",
+ "question": [
+ "are there dog eyes ?"
+ ],
+ "prompt": "{} eyes are open"
+ },
+ {
+ "index": 1144,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "the dog's paw is on the toy",
+ "question": [
+ "is there the dog's paw ?",
+ "is there the toy ?"
+ ],
+ "prompt": "the {}'s paw is on the toy"
+ },
+ {
+ "index": 1145,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "dog holding white stuffed bunny",
+ "question": [
+ "is there white stuffed bunny ?"
+ ],
+ "prompt": "{} holding white stuffed bunny"
+ },
+ {
+ "index": 1146,
+ "image_id": 2318152,
+ "entity": "dog",
+ "caption": "Mulch dog is standing on",
+ "question": [
+ "is there mulch dog ?"
+ ],
+ "prompt": "Mulch {} is standing on"
+ },
+ {
+ "index": 1147,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "Brown leash on a dog",
+ "question": [
+ "is there brown leash ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Brown leash on a {}"
+ },
+ {
+ "index": 1148,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "A person on a skateboard walking their dog",
+ "question": [
+ "is there a person ?",
+ "is there a skateboard ?",
+ "is there their dog ?"
+ ],
+ "prompt": "A person on a skateboard walking their {}"
+ },
+ {
+ "index": 1149,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "person walking the dog",
+ "question": [
+ "is there person ?",
+ "is there the dog ?"
+ ],
+ "prompt": "person walking the {}"
+ },
+ {
+ "index": 1150,
+ "image_id": 2317836,
+ "entity": "dog",
+ "caption": "the dog is in costume",
+ "question": [
+ "is there the dog ?",
+ "is there costume ?"
+ ],
+ "prompt": "the {} is in costume"
+ },
+ {
+ "index": 1151,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "dog paws are tan",
+ "question": [
+ "are there dog paws ?",
+ "is there tan ?"
+ ],
+ "prompt": "{} paws are tan"
+ },
+ {
+ "index": 1152,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "dog has mouth open",
+ "question": [
+ "is there dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} has mouth open"
+ },
+ {
+ "index": 1153,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "The dog is in a car.",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "The {} is in a car."
+ },
+ {
+ "index": 1154,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "The dog's eyes are open.",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open."
+ },
+ {
+ "index": 1155,
+ "image_id": 2317002,
+ "entity": "dog",
+ "caption": "black whiskers are on the dog",
+ "question": [
+ "are there black whiskers ?",
+ "is there the dog ?"
+ ],
+ "prompt": "black whiskers are on the {}"
+ },
+ {
+ "index": 1156,
+ "image_id": 2317002,
+ "entity": "dog",
+ "caption": "brown nails are on the dog",
+ "question": [
+ "are there brown nails ?",
+ "is there the dog ?"
+ ],
+ "prompt": "brown nails are on the {}"
+ },
+ {
+ "index": 1157,
+ "image_id": 2316886,
+ "entity": "dog",
+ "caption": "the dog appears to be enjoying his snack",
+ "question": [
+ "is there the dog ?",
+ "is there his snack ?"
+ ],
+ "prompt": "the {} appears to be enjoying his snack"
+ },
+ {
+ "index": 1158,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "nose of dog is black ",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is black "
+ },
+ {
+ "index": 1159,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "dog sits on couch",
+ "question": [
+ "is there dog ?",
+ "is there couch ?"
+ ],
+ "prompt": "{} sits on couch"
+ },
+ {
+ "index": 1160,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "dog has pink dress",
+ "question": [
+ "is there dog ?",
+ "is there pink dress ?"
+ ],
+ "prompt": "{} has pink dress"
+ },
+ {
+ "index": 1161,
+ "image_id": 2316349,
+ "entity": "dog",
+ "caption": "dog ear on right",
+ "question": [
+ "is there dog ear ?"
+ ],
+ "prompt": "{} ear on right"
+ },
+ {
+ "index": 1162,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "a dog rests on a person",
+ "question": [
+ "is there a dog ?",
+ "is there a person ?"
+ ],
+ "prompt": "a {} rests on a person"
+ },
+ {
+ "index": 1163,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The dog is wearing a hat.",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "The {} is wearing a hat."
+ },
+ {
+ "index": 1164,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The hat is on the dog's head.",
+ "question": [
+ "is there the hat ?",
+ "is there the dog's head ?"
+ ],
+ "prompt": "The hat is on the {}'s head."
+ },
+ {
+ "index": 1165,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The dog has whiskers.",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "The {} has whiskers."
+ },
+ {
+ "index": 1166,
+ "image_id": 2316170,
+ "entity": "dog",
+ "caption": "small dog with eyes closed",
+ "question": [
+ "is there small dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "small {} with eyes closed"
+ },
+ {
+ "index": 1167,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs nose is black in color. ",
+ "question": [
+ "are there the dogs nose ?",
+ "is there color ?"
+ ],
+ "prompt": "The {}s nose is black in color. "
+ },
+ {
+ "index": 1168,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dog has a black nose. ",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose. "
+ },
+ {
+ "index": 1169,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs eye is brown.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is brown."
+ },
+ {
+ "index": 1170,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs ear is black. ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear is black. "
+ },
+ {
+ "index": 1171,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "dog has a leg",
+ "question": [
+ "is there dog ?",
+ "is there a leg ?"
+ ],
+ "prompt": "{} has a leg"
+ },
+ {
+ "index": 1172,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "the dog carries a green frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a green frisbee ?"
+ ],
+ "prompt": "the {} carries a green frisbee"
+ },
+ {
+ "index": 1173,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "the dog's collar is green",
+ "question": [
+ "is there the dog's collar ?"
+ ],
+ "prompt": "the {}'s collar is green"
+ },
+ {
+ "index": 1174,
+ "image_id": 2315447,
+ "entity": "dog",
+ "caption": "A dogs left black eye. ",
+ "question": [
+ "are there a dogs ?",
+ "is there black eye ?"
+ ],
+ "prompt": "A {}s left black eye. "
+ },
+ {
+ "index": 1175,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The 2 dogs lay on the bed together",
+ "question": [
+ "are there the 2 dogs ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The 2 {}s lay on the bed together"
+ },
+ {
+ "index": 1176,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dog is laying on the other dog",
+ "question": [
+ "is there the dog ?",
+ "is there the other dog ?"
+ ],
+ "prompt": "The {} is laying on the other {}"
+ },
+ {
+ "index": 1177,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dogs are on the comfortable looking bed",
+ "question": [
+ "are there the dogs ?",
+ "is there the comfortable looking bed ?"
+ ],
+ "prompt": "The {}s are on the comfortable looking bed"
+ },
+ {
+ "index": 1178,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dog has a blue collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "The {} has a blue collar"
+ },
+ {
+ "index": 1179,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "Brown dogs left eye.",
+ "question": [
+ "are there brown dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "Brown {}s left eye."
+ },
+ {
+ "index": 1180,
+ "image_id": 2414390,
+ "entity": "dog",
+ "caption": "the dog is playing with a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is playing with a frisbee"
+ },
+ {
+ "index": 1181,
+ "image_id": 2414390,
+ "entity": "dog",
+ "caption": "the dog has brown ears",
+ "question": [
+ "is there the dog ?",
+ "are there brown ears ?"
+ ],
+ "prompt": "the {} has brown ears"
+ },
+ {
+ "index": 1182,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "A dog is in the picture.",
+ "question": [
+ "is there a dog ?",
+ "is there the picture ?"
+ ],
+ "prompt": "A {} is in the picture."
+ },
+ {
+ "index": 1183,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog has on a black collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a black collar ?"
+ ],
+ "prompt": "The {} has on a black collar."
+ },
+ {
+ "index": 1184,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog is standing in the sand.",
+ "question": [
+ "is there the dog ?",
+ "is there the sand ?"
+ ],
+ "prompt": "The {} is standing in the sand."
+ },
+ {
+ "index": 1185,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog is staring at his master.",
+ "question": [
+ "is there the dog ?",
+ "is there his master ?"
+ ],
+ "prompt": "The {} is staring at his master."
+ },
+ {
+ "index": 1186,
+ "image_id": 2412940,
+ "entity": "dog",
+ "caption": "Sun light over the body of dogs",
+ "question": [
+ "is there sun light ?",
+ "is there the body ?",
+ "are there dogs ?"
+ ],
+ "prompt": "Sun light over the body of {}s"
+ },
+ {
+ "index": 1187,
+ "image_id": 2412940,
+ "entity": "dog",
+ "caption": "the dogs eyes are wide apart",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are wide apart"
+ },
+ {
+ "index": 1188,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog is resting on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is resting on a blanket"
+ },
+ {
+ "index": 1189,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has his ears bent",
+ "question": [
+ "is there the dog ?",
+ "are there his ears ?"
+ ],
+ "prompt": "the {} has his ears bent"
+ },
+ {
+ "index": 1190,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has pretty blue eyes",
+ "question": [
+ "is there the dog ?",
+ "are there pretty blue eyes ?"
+ ],
+ "prompt": "the {} has pretty blue eyes"
+ },
+ {
+ "index": 1191,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has brown feet",
+ "question": [
+ "is there the dog ?",
+ "are there brown feet ?"
+ ],
+ "prompt": "the {} has brown feet"
+ },
+ {
+ "index": 1192,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog is sitting on blankets",
+ "question": [
+ "is there the dog ?",
+ "are there blankets ?"
+ ],
+ "prompt": "The {} is sitting on blankets"
+ },
+ {
+ "index": 1193,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has 2 ears",
+ "question": [
+ "is there the dog ?",
+ "are there 2 ears ?"
+ ],
+ "prompt": "The {} has 2 ears"
+ },
+ {
+ "index": 1194,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has a tail",
+ "question": [
+ "is there the dog ?",
+ "is there a tail ?"
+ ],
+ "prompt": "The {} has a tail"
+ },
+ {
+ "index": 1195,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog's eyes are blue",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are blue"
+ },
+ {
+ "index": 1196,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has 4 paws",
+ "question": [
+ "is there the dog ?",
+ "are there 4 paws ?"
+ ],
+ "prompt": "The {} has 4 paws"
+ },
+ {
+ "index": 1197,
+ "image_id": 2412430,
+ "entity": "dog",
+ "caption": "A dog is laying down on a couch.",
+ "question": [
+ "is there a dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "A {} is laying down on a couch."
+ },
+ {
+ "index": 1198,
+ "image_id": 2412430,
+ "entity": "dog",
+ "caption": "The dog's nose is black in color.",
+ "question": [
+ "is there the dog's nose ?",
+ "is there color ?"
+ ],
+ "prompt": "The {}'s nose is black in color."
+ },
+ {
+ "index": 1199,
+ "image_id": 2412382,
+ "entity": "dog",
+ "caption": "the dogs are on the seat",
+ "question": [
+ "are there the dogs ?",
+ "is there the seat ?"
+ ],
+ "prompt": "the {}s are on the seat"
+ },
+ {
+ "index": 1200,
+ "image_id": 2412382,
+ "entity": "dog",
+ "caption": "the dogs eyes are black",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are black"
+ },
+ {
+ "index": 1201,
+ "image_id": 2412215,
+ "entity": "dog",
+ "caption": "The white sheet the dog's paw and mouth is resting on.",
+ "question": [
+ "is there the dog's paw ?",
+ "is there mouth ?"
+ ],
+ "prompt": "The white sheet the {}'s paw and mouth is resting on."
+ },
+ {
+ "index": 1202,
+ "image_id": 2412215,
+ "entity": "dog",
+ "caption": "The black dog's head resting on the bed.",
+ "question": [
+ "is there the black dog's head ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The black {}'s head resting on the bed."
+ },
+ {
+ "index": 1203,
+ "image_id": 2411734,
+ "entity": "dog",
+ "caption": "A dog with a white nose looks at a birthday cupcake",
+ "question": [
+ "is there a dog ?",
+ "is there a white nose ?",
+ "is there a birthday cupcake ?"
+ ],
+ "prompt": "A {} with a white nose looks at a birthday cupcake"
+ },
+ {
+ "index": 1204,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "White mouse and cat sitting on dog.",
+ "question": [
+ "is there cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "White mouse and cat sitting on {}."
+ },
+ {
+ "index": 1205,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "cat is on a dogs back",
+ "question": [
+ "is there cat ?",
+ "are there a dogs ?"
+ ],
+ "prompt": "cat is on a {}s back"
+ },
+ {
+ "index": 1206,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "dog is walking on sidewalk",
+ "question": [
+ "is there dog ?",
+ "is there sidewalk ?"
+ ],
+ "prompt": "{} is walking on sidewalk"
+ },
+ {
+ "index": 1207,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "dog is wearing a brown vest",
+ "question": [
+ "is there dog ?",
+ "is there a brown vest ?"
+ ],
+ "prompt": "{} is wearing a brown vest"
+ },
+ {
+ "index": 1208,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "a cat is on the dog's back",
+ "question": [
+ "is there a cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a cat is on the {}'s back"
+ },
+ {
+ "index": 1209,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "a cat and a mouse are both on a dog",
+ "question": [
+ "is there a cat ?",
+ "is there a mouse ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a cat and a mouse are both on a {}"
+ },
+ {
+ "index": 1210,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "the dog is wearing a vest",
+ "question": [
+ "is there the dog ?",
+ "is there a vest ?"
+ ],
+ "prompt": "the {} is wearing a vest"
+ },
+ {
+ "index": 1211,
+ "image_id": 2415243,
+ "entity": "dog",
+ "caption": "a dog lays on a television remote",
+ "question": [
+ "is there a dog ?",
+ "is there a television remote ?"
+ ],
+ "prompt": "a {} lays on a television remote"
+ },
+ {
+ "index": 1212,
+ "image_id": 2415243,
+ "entity": "dog",
+ "caption": "dog takes a nap on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a nap ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} takes a nap on a couch"
+ },
+ {
+ "index": 1213,
+ "image_id": 2415532,
+ "entity": "dog",
+ "caption": "Elbow on the far arm washing the dog.",
+ "question": [
+ "is there the far arm ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Elbow on the far arm washing the {}."
+ },
+ {
+ "index": 1214,
+ "image_id": 2416178,
+ "entity": "dog",
+ "caption": "the dogs left eye",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {}s left eye"
+ },
+ {
+ "index": 1215,
+ "image_id": 2416388,
+ "entity": "dog",
+ "caption": "pink bow the dog is wearing",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "pink bow the {} is wearing"
+ },
+ {
+ "index": 1216,
+ "image_id": 2416388,
+ "entity": "dog",
+ "caption": "dog getting teeth brushed",
+ "question": [
+ "is there dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "{} getting teeth brushed"
+ },
+ {
+ "index": 1217,
+ "image_id": 2416731,
+ "entity": "dog",
+ "caption": "the dog has black hair",
+ "question": [
+ "is there the dog ?",
+ "is there black hair ?"
+ ],
+ "prompt": "the {} has black hair"
+ },
+ {
+ "index": 1218,
+ "image_id": 2416731,
+ "entity": "dog",
+ "caption": "the dog has pointy teeth",
+ "question": [
+ "is there the dog ?",
+ "are there pointy teeth ?"
+ ],
+ "prompt": "the {} has pointy teeth"
+ },
+ {
+ "index": 1219,
+ "image_id": 2416944,
+ "entity": "dog",
+ "caption": "grassy field dog is playing in",
+ "question": [
+ "is there grassy field dog ?"
+ ],
+ "prompt": "grassy field {} is playing in"
+ },
+ {
+ "index": 1220,
+ "image_id": 2417227,
+ "entity": "dog",
+ "caption": "The sofa the dog is leaning on.",
+ "question": [
+ "is there the sofa ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The sofa the {} is leaning on."
+ },
+ {
+ "index": 1221,
+ "image_id": 2417721,
+ "entity": "dog",
+ "caption": "dog has brown legs",
+ "question": [
+ "is there dog ?",
+ "are there brown legs ?"
+ ],
+ "prompt": "{} has brown legs"
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02088632.json b/data/imagenet/compositions/prompts/n02088632.json
new file mode 100644
index 0000000000000000000000000000000000000000..db9508f2d519c121841f29d5b620aaf093b952ac
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02088632.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 561, "entity": "dog", "caption": "dog has a black nose", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose"}, {"index": 1, "image_id": 561, "entity": "dog", "caption": "dog's ears are up", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are up"}, {"index": 2, "image_id": 561, "entity": "dog", "caption": "dog's eyes are dark", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are dark"}, {"index": 3, "image_id": 3535, "entity": "dog", "caption": "The dog has four legs.", "question": ["is there the dog ?", "are there four legs ?"], "prompt": "The {} has four legs."}, {"index": 4, "image_id": 3535, "entity": "dog", "caption": "tongue hanging out a dog's mouth", "question": ["is there tongue ?", "is there a dog's mouth ?"], "prompt": "tongue hanging out a {}'s mouth"}, {"index": 5, "image_id": 3553, "entity": "dog", "caption": "dog is sitting in grass", "question": ["is there dog ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 6, "image_id": 3553, "entity": "dog", "caption": "dog is mostly brown", "question": ["is there dog ?"], "prompt": "{} is mostly brown"}, {"index": 7, "image_id": 3553, "entity": "dog", "caption": "the dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "the {} has a black nose"}, {"index": 8, "image_id": 3553, "entity": "dog", "caption": "the brown dog has a long brown tail", "question": ["is there the brown dog ?", "is there a long brown tail ?"], "prompt": "the brown {} has a long brown tail"}, {"index": 9, "image_id": 3553, "entity": "dog", "caption": "the dog has large brown paws", "question": ["is there the dog ?", "are there large brown paws ?"], "prompt": "the {} has large brown paws"}, {"index": 10, "image_id": 3553, "entity": "dog", "caption": "a dog with its mouth open", "question": ["is there a dog ?", "is there its mouth ?"], "prompt": "a {} with its mouth open"}, {"index": 11, "image_id": 3752, "entity": "dog", "caption": "the dogs tail is black ", "question": ["are there the dogs tail ?"], "prompt": "the {}s tail is black "}, {"index": 12, "image_id": 3752, "entity": "dog", "caption": "the dogs feet is black ", "question": ["are there the dogs ?"], "prompt": "the {}s feet is black "}, {"index": 13, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat are standing together on the sidewalk", "question": ["is there a dog ?", "is there a cat ?", "is there the sidewalk ?"], "prompt": "A {} and a cat are standing together on the sidewalk"}, {"index": 14, "image_id": 107934, "entity": "dog", "caption": "dog has a brown patch", "question": ["is there dog ?", "is there a brown patch ?"], "prompt": "{} has a brown patch"}, {"index": 15, "image_id": 107934, "entity": "dog", "caption": "dog has a blue rope tied", "question": ["is there dog ?", "is there a blue rope ?"], "prompt": "{} has a blue rope tied"}, {"index": 16, "image_id": 107934, "entity": "dog", "caption": "the dog has a blue leash", "question": ["is there the dog ?", "is there a blue leash ?"], "prompt": "the {} has a blue leash"}, {"index": 17, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat walk together.", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} and a cat walk together."}, {"index": 18, "image_id": 107934, "entity": "dog", "caption": "Both dog and cat are in the middle of the frame.", "question": ["is there both dog ?", "is there cat ?", "is there the middle ?", "is there the frame ?"], "prompt": "Both {} and cat are in the middle of the frame."}, {"index": 19, "image_id": 107934, "entity": "dog", "caption": "The dog is looking at the camera.", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera."}, {"index": 20, "image_id": 1159975, "entity": "dog", "caption": "The gray collar the dog is wearing.", "question": ["is there the gray collar ?", "is there the dog ?"], "prompt": "The gray collar the {} is wearing."}, {"index": 21, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown and white sweater", "question": ["is there the dog ?", "is there a brown and white sweater ?"], "prompt": "The {} has a brown and white sweater"}, {"index": 22, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "The {} has a brown nose"}, {"index": 23, "image_id": 2414023, "entity": "dog", "caption": "the dog has a messed up eye", "question": ["is there the dog ?", "is there a messed up eye ?"], "prompt": "the {} has a messed up eye"}, {"index": 24, "image_id": 2414023, "entity": "dog", "caption": "the dog is wearing a sweater", "question": ["is there the dog ?", "is there a sweater ?"], "prompt": "the {} is wearing a sweater"}, {"index": 25, "image_id": 2414023, "entity": "dog", "caption": "the dog has a purple collar", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "the {} has a purple collar"}, {"index": 26, "image_id": 2413171, "entity": "dog", "caption": "Young man hold a cute dog", "question": ["is there young man ?", "is there a cute dog ?"], "prompt": "Young man hold a cute {}"}, {"index": 27, "image_id": 2412707, "entity": "dog", "caption": "black fur grows on a dog", "question": ["is there black fur ?", "is there a dog ?"], "prompt": "black fur grows on a {}"}, {"index": 28, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is sitting in the ground"}, {"index": 29, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is sitting in the floor"}, {"index": 30, "image_id": 2412546, "entity": "dog", "caption": "The dog has a collar on.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar on."}, {"index": 31, "image_id": 2412049, "entity": "dog", "caption": "the dog is long hair", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "the {} is long hair"}, {"index": 32, "image_id": 2412049, "entity": "dog", "caption": "the dog has some white hair", "question": ["is there the dog ?", "is there some white hair ?"], "prompt": "the {} has some white hair"}, {"index": 33, "image_id": 2412049, "entity": "dog", "caption": "the dog has some black hair", "question": ["is there the dog ?", "is there some black hair ?"], "prompt": "the {} has some black hair"}, {"index": 34, "image_id": 2412049, "entity": "dog", "caption": "the dog has some brown hair", "question": ["is there the dog ?", "is there some brown hair ?"], "prompt": "the {} has some brown hair"}, {"index": 35, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is shiny", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is shiny"}, {"index": 36, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is black"}, {"index": 37, "image_id": 2412049, "entity": "dog", "caption": "this are dog canines", "question": ["are there dog canines ?"], "prompt": "this are {} canines"}, {"index": 38, "image_id": 2412049, "entity": "dog", "caption": "this is the dogs fur", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "this is the {}s fur"}, {"index": 39, "image_id": 2411402, "entity": "dog", "caption": "Bed the dog is sleeping on", "question": ["is there the dog ?"], "prompt": "Bed the {} is sleeping on"}, {"index": 40, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar"}, {"index": 41, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} is wearing a chain"}, {"index": 42, "image_id": 2411357, "entity": "dog", "caption": "the dog is watching the oven", "question": ["is there the dog ?", "is there the oven ?"], "prompt": "the {} is watching the oven"}, {"index": 43, "image_id": 2411357, "entity": "dog", "caption": "the dog has a chain around its neck", "question": ["is there the dog ?", "is there a chain ?", "is there its neck ?"], "prompt": "the {} has a chain around its neck"}, {"index": 44, "image_id": 2411357, "entity": "dog", "caption": "the dog has two ears", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "the {} has two ears"}, {"index": 45, "image_id": 2411201, "entity": "dog", "caption": "A dog is on a moped.", "question": ["is there a dog ?"], "prompt": "A {} is on a moped."}, {"index": 46, "image_id": 2411201, "entity": "dog", "caption": "The dog has a red leash.", "question": ["is there the dog ?", "is there a red leash ?"], "prompt": "The {} has a red leash."}, {"index": 47, "image_id": 2411201, "entity": "dog", "caption": "The dog's ears are up.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are up."}, {"index": 48, "image_id": 2411201, "entity": "dog", "caption": "The dog's tail is hanging down.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is hanging down."}, {"index": 49, "image_id": 2411201, "entity": "dog", "caption": "a large dog sits on a scooter", "question": ["is there a large dog ?", "is there a scooter ?"], "prompt": "a large {} sits on a scooter"}, {"index": 50, "image_id": 2411201, "entity": "dog", "caption": "a dog has a red leash", "question": ["is there a dog ?", "is there a red leash ?"], "prompt": "a {} has a red leash"}, {"index": 51, "image_id": 2411201, "entity": "dog", "caption": "The dog on the scooter has a long tail", "question": ["is there the dog ?", "is there the scooter ?", "is there a long tail ?"], "prompt": "The {} on the scooter has a long tail"}, {"index": 52, "image_id": 2411201, "entity": "dog", "caption": "Brown dog on leash on moped", "question": ["is there brown dog ?", "is there leash ?"], "prompt": "Brown {} on leash on moped"}, {"index": 53, "image_id": 2411201, "entity": "dog", "caption": "Red moped with dog", "question": ["is there dog ?"], "prompt": "Red moped with {}"}, {"index": 54, "image_id": 2410967, "entity": "dog", "caption": "a dog's ears bent over", "question": ["are there a dog's ears ?"], "prompt": "a {}'s ears bent over"}, {"index": 55, "image_id": 2410840, "entity": "dog", "caption": "a dog's mouth biting a frisbee", "question": ["is there a dog's mouth ?", "is there a frisbee ?"], "prompt": "a {}'s mouth biting a frisbee"}, {"index": 56, "image_id": 2410817, "entity": "dog", "caption": "black and tan dog jumping to catch a frisbee", "question": ["is there black and tan dog ?", "is there a frisbee ?"], "prompt": "black and tan {} jumping to catch a frisbee"}, {"index": 57, "image_id": 2410817, "entity": "dog", "caption": "leaping dog going after a frisbee", "question": ["is there leaping dog ?", "is there a frisbee ?"], "prompt": "leaping {} going after a frisbee"}, {"index": 58, "image_id": 2410817, "entity": "dog", "caption": "German shepherd dog fetching a frisbee. ", "question": ["is there german shepherd dog ?", "is there a frisbee ?"], "prompt": "German shepherd {} fetching a frisbee. "}, {"index": 59, "image_id": 2409859, "entity": "dog", "caption": "dog's eyes appear to be different colors", "question": ["are there dog's eyes ?", "are there different colors ?"], "prompt": "{}'s eyes appear to be different colors"}, {"index": 60, "image_id": 2409859, "entity": "dog", "caption": "dog has black nose", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose"}, {"index": 61, "image_id": 2409859, "entity": "dog", "caption": "the dog is wearing a cap", "question": ["is there the dog ?", "is there a cap ?"], "prompt": "the {} is wearing a cap"}, {"index": 62, "image_id": 2409859, "entity": "dog", "caption": "Tongue of dog is pink", "question": ["is there tongue ?", "is there dog ?"], "prompt": "Tongue of {} is pink"}, {"index": 63, "image_id": 2409626, "entity": "dog", "caption": "dog has two eyes", "question": ["is there dog ?", "are there two eyes ?"], "prompt": "{} has two eyes"}, {"index": 64, "image_id": 2409626, "entity": "dog", "caption": "the dog is wearing pirate hat", "question": ["is there the dog ?", "is there pirate hat ?"], "prompt": "the {} is wearing pirate hat"}, {"index": 65, "image_id": 2409304, "entity": "dog", "caption": "White left foot of the dog", "question": ["is there white left foot ?", "is there the dog ?"], "prompt": "White left foot of the {}"}, {"index": 66, "image_id": 2409304, "entity": "dog", "caption": "dog catch the frisbee", "question": ["is there dog ?", "is there the frisbee ?"], "prompt": "{} catch the frisbee"}, {"index": 67, "image_id": 2409304, "entity": "dog", "caption": "dog's nose is black", "question": ["is there dog's nose ?"], "prompt": "{}'s nose is black"}, {"index": 68, "image_id": 2409304, "entity": "dog", "caption": "dog's ears are black", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are black"}, {"index": 69, "image_id": 2409304, "entity": "dog", "caption": "dog's paws are white", "question": ["are there dog's paws ?"], "prompt": "{}'s paws are white"}, {"index": 70, "image_id": 2409103, "entity": "dog", "caption": "the dog is wearing a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "the {} is wearing a blue collar"}, {"index": 71, "image_id": 2409103, "entity": "dog", "caption": "a book by T.C. Boyle is next to the dog", "question": ["is there a book ?", "is there the dog ?"], "prompt": "a book by T.C. Boyle is next to the {}"}, {"index": 72, "image_id": 2409103, "entity": "dog", "caption": "the dog is laying on top of an embroidered sheet", "question": ["is there the dog ?", "is there top ?", "is there an embroidered sheet ?"], "prompt": "the {} is laying on top of an embroidered sheet"}, {"index": 73, "image_id": 2408483, "entity": "dog", "caption": "Carpet is light in color under dog", "question": ["is there carpet ?", "is there color ?", "is there dog ?"], "prompt": "Carpet is light in color under {}"}, {"index": 74, "image_id": 2408383, "entity": "dog", "caption": "The dog and cat are looking in the same direction", "question": ["is there the dog ?", "is there cat ?", "is there the same direction ?"], "prompt": "The {} and cat are looking in the same direction"}, {"index": 75, "image_id": 2408210, "entity": "dog", "caption": "Nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "Nose of {} is black"}, {"index": 76, "image_id": 2408210, "entity": "dog", "caption": "Ears of dog is black and tan", "question": ["are there ears ?", "is there dog ?"], "prompt": "Ears of {} is black and tan"}, {"index": 77, "image_id": 2408210, "entity": "dog", "caption": "Eyes of dog are open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "Eyes of {} are open"}, {"index": 78, "image_id": 2408210, "entity": "dog", "caption": "three dogs are lying on a bed", "question": ["are there three dogs ?", "is there a bed ?"], "prompt": "three {}s are lying on a bed"}, {"index": 79, "image_id": 2408210, "entity": "dog", "caption": "the dog has his eyes open", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "the {} has his eyes open"}, {"index": 80, "image_id": 2408037, "entity": "dog", "caption": "the dog has red eyes", "question": ["is there the dog ?", "are there red eyes ?"], "prompt": "the {} has red eyes"}, {"index": 81, "image_id": 2408037, "entity": "dog", "caption": "the dog is holding carrot toy", "question": ["is there the dog ?", "is there carrot toy ?"], "prompt": "the {} is holding carrot toy"}, {"index": 82, "image_id": 2408037, "entity": "dog", "caption": "the dog has green ribbon on its nech", "question": ["is there the dog ?", "is there green ribbon ?"], "prompt": "the {} has green ribbon on its nech"}, {"index": 83, "image_id": 2408037, "entity": "dog", "caption": "a green toy is beside the dog", "question": ["is there a green toy ?", "is there the dog ?"], "prompt": "a green toy is beside the {}"}, {"index": 84, "image_id": 2408037, "entity": "dog", "caption": "the dog has brown legs", "question": ["is there the dog ?", "are there brown legs ?"], "prompt": "the {} has brown legs"}, {"index": 85, "image_id": 2407835, "entity": "dog", "caption": "Brown dog laying on a bed with eyes open.", "question": ["is there brown dog ?", "is there a bed ?", "are there eyes ?"], "prompt": "Brown {} laying on a bed with eyes open."}, {"index": 86, "image_id": 2407835, "entity": "dog", "caption": "dog is lying down.", "question": ["is there dog ?"], "prompt": "{} is lying down."}, {"index": 87, "image_id": 2407835, "entity": "dog", "caption": "dog is lying in cot.", "question": ["is there dog ?", "is there cot ?"], "prompt": "{} is lying in cot."}, {"index": 88, "image_id": 2407835, "entity": "dog", "caption": "dog nose is black color.", "question": ["is there dog nose ?", "is there black color ?"], "prompt": "{} nose is black color."}, {"index": 89, "image_id": 2407825, "entity": "dog", "caption": "the dog has two eyes", "question": ["is there the dog ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 90, "image_id": 2407825, "entity": "dog", "caption": "dog is wearing a collar", "question": ["is there dog ?", "is there a collar ?"], "prompt": "{} is wearing a collar"}, {"index": 91, "image_id": 2407825, "entity": "dog", "caption": "the dog is on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is on the couch"}, {"index": 92, "image_id": 2407825, "entity": "dog", "caption": "the dog has whiskers", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers"}, {"index": 93, "image_id": 2407234, "entity": "dog", "caption": "the dog is on the beanbag", "question": ["is there the dog ?", "is there the beanbag ?"], "prompt": "the {} is on the beanbag"}, {"index": 94, "image_id": 2407234, "entity": "dog", "caption": "a dog toy thats a rope", "question": ["is there a dog toy ?", "is there a rope ?"], "prompt": "a {} toy thats a rope"}, {"index": 95, "image_id": 2407234, "entity": "dog", "caption": "the dog is on bean bag", "question": ["is there the dog ?", "is there bean bag ?"], "prompt": "the {} is on bean bag"}, {"index": 96, "image_id": 2407234, "entity": "dog", "caption": "the dog is sad", "question": ["is there the dog ?"], "prompt": "the {} is sad"}, {"index": 97, "image_id": 2406999, "entity": "dog", "caption": "the dog has goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "the {} has goggles"}, {"index": 98, "image_id": 2406999, "entity": "dog", "caption": "The dog has a vest on", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "The {} has a vest on"}, {"index": 99, "image_id": 2406999, "entity": "dog", "caption": "The dog has goggles on", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} has goggles on"}, {"index": 100, "image_id": 2406999, "entity": "dog", "caption": "The dogs tongue is out. ", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is out. "}, {"index": 101, "image_id": 2406384, "entity": "dog", "caption": "The dog has amber-coloured eyes", "question": ["is there the dog ?", "are there amber-coloured eyes ?"], "prompt": "The {} has amber-coloured eyes"}, {"index": 102, "image_id": 2406384, "entity": "dog", "caption": "The dog's hat is courdoroy", "question": ["is there the dog's hat ?"], "prompt": "The {}'s hat is courdoroy"}, {"index": 103, "image_id": 2406384, "entity": "dog", "caption": "dog has collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} has collar"}, {"index": 104, "image_id": 2406384, "entity": "dog", "caption": "dog has whiskers", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers"}, {"index": 105, "image_id": 2406384, "entity": "dog", "caption": "dog has black lips", "question": ["is there dog ?", "are there black lips ?"], "prompt": "{} has black lips"}, {"index": 106, "image_id": 2406275, "entity": "dog", "caption": "dogs nose is black", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black"}, {"index": 107, "image_id": 2406275, "entity": "dog", "caption": "the dog has light brown eyes", "question": ["is there the dog ?", "are there light brown eyes ?"], "prompt": "the {} has light brown eyes"}, {"index": 108, "image_id": 2406275, "entity": "dog", "caption": "the dog has pointy ears", "question": ["is there the dog ?", "are there pointy ears ?"], "prompt": "the {} has pointy ears"}, {"index": 109, "image_id": 2406275, "entity": "dog", "caption": "something fuzzy is next to the dog", "question": ["is there something ?", "is there the dog ?"], "prompt": "something fuzzy is next to the {}"}, {"index": 110, "image_id": 2406275, "entity": "dog", "caption": "the dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "the {} has brown eyes"}, {"index": 111, "image_id": 2406275, "entity": "dog", "caption": "the dog is lying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is lying on a blanket"}, {"index": 112, "image_id": 2405633, "entity": "dog", "caption": "Dog kennel with dog.", "question": ["is there dog kennel ?", "is there dog ?"], "prompt": "Dog kennel with {}."}, {"index": 113, "image_id": 2405633, "entity": "dog", "caption": "The dog is lying on two blue and white pillows.", "question": ["is there the dog ?", "are there two blue and white pillows ?"], "prompt": "The {} is lying on two blue and white pillows."}, {"index": 114, "image_id": 2405484, "entity": "dog", "caption": "the dog has a pink tongue", "question": ["is there the dog ?", "is there a pink tongue ?"], "prompt": "the {} has a pink tongue"}, {"index": 115, "image_id": 2405484, "entity": "dog", "caption": "the dog is walking in the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is walking in the grass"}, {"index": 116, "image_id": 2405484, "entity": "dog", "caption": "the dog is wearing a metal collar", "question": ["is there the dog ?", "is there a metal collar ?"], "prompt": "the {} is wearing a metal collar"}, {"index": 117, "image_id": 2405484, "entity": "dog", "caption": "the dog is standing on the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is standing on the grass"}, {"index": 118, "image_id": 2405484, "entity": "dog", "caption": "the dog has a collar on", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar on"}, {"index": 119, "image_id": 2405484, "entity": "dog", "caption": "the dog has his tongue sticking out", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "the {} has his tongue sticking out"}, {"index": 120, "image_id": 2405484, "entity": "dog", "caption": "the dog is waggling his tail", "question": ["is there the dog ?", "is there his tail ?"], "prompt": "the {} is waggling his tail"}, {"index": 121, "image_id": 2405484, "entity": "dog", "caption": "the dog's collar is a chain", "question": ["is there the dog's collar ?", "is there a chain ?"], "prompt": "the {}'s collar is a chain"}, {"index": 122, "image_id": 2405484, "entity": "dog", "caption": "dog's tongue is pink", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink"}, {"index": 123, "image_id": 2405484, "entity": "dog", "caption": "dog is standing in the grass", "question": ["is there dog ?", "is there the grass ?"], "prompt": "{} is standing in the grass"}, {"index": 124, "image_id": 2405469, "entity": "dog", "caption": "The dog is wearing a collar. ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar. "}, {"index": 125, "image_id": 2405469, "entity": "dog", "caption": "The dog has it's head down. ", "question": ["is there the dog ?", "is there head ?"], "prompt": "The {} has it's head down. "}, {"index": 126, "image_id": 2405469, "entity": "dog", "caption": "the dog has sharp teeth", "question": ["is there the dog ?", "are there sharp teeth ?"], "prompt": "the {} has sharp teeth"}, {"index": 127, "image_id": 2405469, "entity": "dog", "caption": "the dog is on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground"}, {"index": 128, "image_id": 2405469, "entity": "dog", "caption": "dog is barking to the other dog", "question": ["is there dog ?", "is there the other dog ?"], "prompt": "{} is barking to the other {}"}, {"index": 129, "image_id": 2405469, "entity": "dog", "caption": "Dog ready to bite another dog", "question": ["is there dog ?", "is there another dog ?"], "prompt": "Dog ready to bite another {}"}, {"index": 130, "image_id": 2405369, "entity": "dog", "caption": "The dog is sleeping in a bed. ", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "The {} is sleeping in a bed. "}, {"index": 131, "image_id": 2405369, "entity": "dog", "caption": "The dog's nose hangs over the bed's edge.", "question": ["is there the dog's nose ?", "is there the bed's edge ?"], "prompt": "The {}'s nose hangs over the bed's edge."}, {"index": 132, "image_id": 2405369, "entity": "dog", "caption": "the dog is on a bed", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "the {} is on a bed"}, {"index": 133, "image_id": 2405369, "entity": "dog", "caption": "the dog sleeps on a tan and white dog bed", "question": ["is there the dog ?", "is there a tan and white dog bed ?"], "prompt": "the {} sleeps on a tan and white {} bed"}, {"index": 134, "image_id": 2405369, "entity": "dog", "caption": "the dog lays curled up on a plush dog bed", "question": ["is there the dog ?", "is there a plush dog bed ?"], "prompt": "the {} lays curled up on a plush {} bed"}, {"index": 135, "image_id": 2405369, "entity": "dog", "caption": "dogs ear on bottom left", "question": ["are there dogs ?", "is there bottom ?"], "prompt": "{}s ear on bottom left"}, {"index": 136, "image_id": 2405369, "entity": "dog", "caption": "White dog curled up sleeping on its bed", "question": ["is there white dog ?", "is there its bed ?"], "prompt": "White {} curled up sleeping on its bed"}, {"index": 137, "image_id": 2405343, "entity": "dog", "caption": "the dog has a Santa hat on his head", "question": ["is there the dog ?", "is there a santa hat ?", "is there his head ?"], "prompt": "the {} has a Santa hat on his head"}, {"index": 138, "image_id": 2405343, "entity": "dog", "caption": "the dog has a black eye", "question": ["is there the dog ?", "is there a black eye ?"], "prompt": "the {} has a black eye"}, {"index": 139, "image_id": 2405343, "entity": "dog", "caption": "the nose of the dog is black", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose of the {} is black"}, {"index": 140, "image_id": 2405343, "entity": "dog", "caption": "the fur on the dog is black and white ", "question": ["is there the fur ?", "is there the dog ?"], "prompt": "the fur on the {} is black and white "}, {"index": 141, "image_id": 2405343, "entity": "dog", "caption": "the dog has a white chest", "question": ["is there the dog ?", "is there a white chest ?"], "prompt": "the {} has a white chest"}, {"index": 142, "image_id": 2405343, "entity": "dog", "caption": "the dog's ear is black", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is black"}, {"index": 143, "image_id": 2405343, "entity": "dog", "caption": "the dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open"}, {"index": 144, "image_id": 2404815, "entity": "dog", "caption": "a cat sleeps on a dog", "question": ["is there a cat ?", "is there a dog ?"], "prompt": "a cat sleeps on a {}"}, {"index": 145, "image_id": 2404815, "entity": "dog", "caption": "a cat and dog lie on a wooden floor", "question": ["is there a cat ?", "is there dog ?", "is there a wooden floor ?"], "prompt": "a cat and {} lie on a wooden floor"}, {"index": 146, "image_id": 2404815, "entity": "dog", "caption": "the cat is laying on the dog", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "the cat is laying on the {}"}, {"index": 147, "image_id": 2404815, "entity": "dog", "caption": "the dog is laying on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is laying on the floor"}, {"index": 148, "image_id": 2404815, "entity": "dog", "caption": "the dog has something around its neck", "question": ["is there the dog ?", "is there something ?", "is there its neck ?"], "prompt": "the {} has something around its neck"}, {"index": 149, "image_id": 2404815, "entity": "dog", "caption": "the dog's ear is sticking up", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is sticking up"}, {"index": 150, "image_id": 2404815, "entity": "dog", "caption": "the dog is wearing a bandana on his neck", "question": ["is there the dog ?", "is there a bandana ?", "is there his neck ?"], "prompt": "the {} is wearing a bandana on his neck"}, {"index": 151, "image_id": 2404815, "entity": "dog", "caption": "the kitten is laying on top of the dog", "question": ["is there top ?", "is there the dog ?"], "prompt": "the kitten is laying on top of the {}"}, {"index": 152, "image_id": 2404815, "entity": "dog", "caption": "the dogs paws are white", "question": ["are there the dogs paws ?"], "prompt": "the {}s paws are white"}, {"index": 153, "image_id": 2404815, "entity": "dog", "caption": "the dog doesnt seem to mind the kitty laying on him", "question": ["is there the dog ?", "is there the kitty ?"], "prompt": "the {} doesnt seem to mind the kitty laying on him"}, {"index": 154, "image_id": 2404707, "entity": "dog", "caption": "A black dog sits on stairs", "question": ["is there a black dog ?", "are there stairs ?"], "prompt": "A black {} sits on stairs"}, {"index": 155, "image_id": 2404707, "entity": "dog", "caption": "The dog is wearing a red bow tie around its neck", "question": ["is there the dog ?", "is there a red bow tie ?", "is there its neck ?"], "prompt": "The {} is wearing a red bow tie around its neck"}, {"index": 156, "image_id": 2404707, "entity": "dog", "caption": "The dog has its head cocked to the side", "question": ["is there the dog ?", "is there its head ?", "is there the side ?"], "prompt": "The {} has its head cocked to the side"}, {"index": 157, "image_id": 2404707, "entity": "dog", "caption": "The dogs left hind leg is hanging off the stair", "question": ["are there the dogs ?", "is there hind leg ?", "is there the stair ?"], "prompt": "The {}s left hind leg is hanging off the stair"}, {"index": 158, "image_id": 2404163, "entity": "dog", "caption": "a woman is petting the dog", "question": ["is there a woman ?", "is there the dog ?"], "prompt": "a woman is petting the {}"}, {"index": 159, "image_id": 2404163, "entity": "dog", "caption": "the dog wears a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} wears a red collar"}, {"index": 160, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing red scarf", "question": ["is there person ?", "is there dog ?", "is there red scarf ?"], "prompt": "person petting {} is wearing red scarf"}, {"index": 161, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing a black dress", "question": ["is there person ?", "is there dog ?", "is there a black dress ?"], "prompt": "person petting {} is wearing a black dress"}, {"index": 162, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red and white scarf", "question": ["is there the dog ?", "is there a red and white scarf ?"], "prompt": "the {} is wearing a red and white scarf"}, {"index": 163, "image_id": 2404163, "entity": "dog", "caption": "the dog looks up at the woman", "question": ["is there the dog ?", "is there the woman ?"], "prompt": "the {} looks up at the woman"}, {"index": 164, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red halter style lead", "question": ["is there the dog ?", "is there a red halter style ?"], "prompt": "the {} is wearing a red halter style lead"}, {"index": 165, "image_id": 2404163, "entity": "dog", "caption": "a woman reaches down to a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "a woman reaches down to a {}"}, {"index": 166, "image_id": 2404163, "entity": "dog", "caption": "the woman in the red shoes pets the dog", "question": ["is there the woman ?", "are there the red shoes ?", "is there the dog ?"], "prompt": "the woman in the red shoes pets the {}"}, {"index": 167, "image_id": 2404075, "entity": "dog", "caption": "The dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket"}, {"index": 168, "image_id": 2403923, "entity": "dog", "caption": "the dog has a green collar", "question": ["is there the dog ?", "is there a green collar ?"], "prompt": "the {} has a green collar"}, {"index": 169, "image_id": 2403914, "entity": "dog", "caption": "This dog has his eyes closed", "question": ["is there this dog ?", "are there his eyes ?"], "prompt": "This {} has his eyes closed"}, {"index": 170, "image_id": 2403914, "entity": "dog", "caption": "This snauser dog has long ears", "question": ["is there this snauser dog ?", "are there long ears ?"], "prompt": "This snauser {} has long ears"}, {"index": 171, "image_id": 2403914, "entity": "dog", "caption": "This dog has a pug nose", "question": ["is there this dog ?", "is there a pug nose ?"], "prompt": "This {} has a pug nose"}, {"index": 172, "image_id": 2403914, "entity": "dog", "caption": "A dog's ear peeking out from the other side of its head", "question": ["is there a dog's ear ?", "is there the other side ?", "is there its head ?"], "prompt": "A {}'s ear peeking out from the other side of its head"}, {"index": 173, "image_id": 2403430, "entity": "dog", "caption": "The dog is laying on a couch.", "question": ["is there the dog ?", "is there a couch ?"], "prompt": "The {} is laying on a couch."}, {"index": 174, "image_id": 2403430, "entity": "dog", "caption": "black dog with eyes open", "question": ["is there black dog ?", "are there eyes ?"], "prompt": "black {} with eyes open"}, {"index": 175, "image_id": 2403430, "entity": "dog", "caption": "The dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes"}, {"index": 176, "image_id": 2403430, "entity": "dog", "caption": "The black dog likes laying on the couch", "question": ["is there the black dog ?", "is there the couch ?"], "prompt": "The black {} likes laying on the couch"}, {"index": 177, "image_id": 2403430, "entity": "dog", "caption": "the dog is laying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is laying on the couch"}, {"index": 178, "image_id": 2403430, "entity": "dog", "caption": "the dog's eye is brown", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is brown"}, {"index": 179, "image_id": 2403359, "entity": "dog", "caption": "a dog and a horse share an Eskimo kiss", "question": ["is there a dog ?", "is there a horse share ?"], "prompt": "a {} and a horse share an Eskimo kiss"}, {"index": 180, "image_id": 2403245, "entity": "dog", "caption": "large brown dog leashed to chair", "question": ["is there large brown dog ?", "is there chair ?"], "prompt": "large brown {} leashed to chair"}, {"index": 181, "image_id": 2403245, "entity": "dog", "caption": "the dog is on deck", "question": ["is there the dog ?", "is there deck ?"], "prompt": "the {} is on deck"}, {"index": 182, "image_id": 2403245, "entity": "dog", "caption": "the leash is on dog", "question": ["is there the leash ?", "is there dog ?"], "prompt": "the leash is on {}"}, {"index": 183, "image_id": 2403245, "entity": "dog", "caption": "Leash tied on golden dog", "question": ["is there golden dog ?"], "prompt": "Leash tied on golden {}"}, {"index": 184, "image_id": 2402933, "entity": "dog", "caption": "the doggy has a party hat on", "question": ["is there the doggy ?", "is there a party hat ?"], "prompt": "the {}gy has a party hat on"}, {"index": 185, "image_id": 2402933, "entity": "dog", "caption": "a stuffed animal is next to the dog", "question": ["is there a stuffed animal ?", "is there the dog ?"], "prompt": "a stuffed animal is next to the {}"}, {"index": 186, "image_id": 2402907, "entity": "dog", "caption": "The dog is standing on carpet", "question": ["is there the dog ?", "is there carpet ?"], "prompt": "The {} is standing on carpet"}, {"index": 187, "image_id": 2402907, "entity": "dog", "caption": "The dog has a collar and tags", "question": ["is there the dog ?", "is there a collar ?", "are there tags ?"], "prompt": "The {} has a collar and tags"}, {"index": 188, "image_id": 2402906, "entity": "dog", "caption": "a dog cover the book", "question": ["is there a dog ?", "is there the book ?"], "prompt": "a {} cover the book"}, {"index": 189, "image_id": 2402906, "entity": "dog", "caption": "the dog is looking to the left", "question": ["is there the dog ?"], "prompt": "the {} is looking to the left"}, {"index": 190, "image_id": 2402906, "entity": "dog", "caption": "the dog has black eyes", "question": ["is there the dog ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 191, "image_id": 2402433, "entity": "dog", "caption": "The dog's eyes are brown.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are brown."}, {"index": 192, "image_id": 2402433, "entity": "dog", "caption": "The dog's fur is brown and black.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is brown and black."}, {"index": 193, "image_id": 2402433, "entity": "dog", "caption": "The dog's tongue is pink.", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is pink."}, {"index": 194, "image_id": 2402433, "entity": "dog", "caption": "The dog's ears are down.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are down."}, {"index": 195, "image_id": 2402363, "entity": "dog", "caption": "the dog and the cat are on the pillow together", "question": ["is there the dog ?", "is there the cat ?", "is there the pillow ?"], "prompt": "the {} and the cat are on the pillow together"}, {"index": 196, "image_id": 2402363, "entity": "dog", "caption": "cat and dog sleeping on pet bed together", "question": ["is there cat ?", "is there dog ?", "is there pet bed ?"], "prompt": "cat and {} sleeping on pet bed together"}, {"index": 197, "image_id": 2402351, "entity": "dog", "caption": "The dog has a frisbee in his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee in his mouth."}, {"index": 198, "image_id": 2402351, "entity": "dog", "caption": "The dog has a white bushy tail.", "question": ["is there the dog ?", "is there a white bushy tail ?"], "prompt": "The {} has a white bushy tail."}, {"index": 199, "image_id": 2402351, "entity": "dog", "caption": "A flower pot is on the side of the dog.", "question": ["is there a flower pot ?", "is there the side ?", "is there the dog ?"], "prompt": "A flower pot is on the side of the {}."}, {"index": 200, "image_id": 2402059, "entity": "dog", "caption": "the dog has a human's tie around it's neck", "question": ["is there the dog ?", "is there a human's tie ?", "is there neck ?"], "prompt": "the {} has a human's tie around it's neck"}, {"index": 201, "image_id": 2401271, "entity": "dog", "caption": "The head of the dog sitting down.", "question": ["is there the head ?", "is there the dog ?"], "prompt": "The head of the {} sitting down."}, {"index": 202, "image_id": 2401271, "entity": "dog", "caption": "Soft brown chair the dog sits on", "question": ["is there soft brown chair ?", "is there the dog ?"], "prompt": "Soft brown chair the {} sits on"}, {"index": 203, "image_id": 2401271, "entity": "dog", "caption": "dog sittin gin brown chiar", "question": ["is there dog ?", "is there gin brown chiar ?"], "prompt": "{} sittin gin brown chiar"}, {"index": 204, "image_id": 2401271, "entity": "dog", "caption": "The dog is black and brown.", "question": ["is there the dog ?"], "prompt": "The {} is black and brown."}, {"index": 205, "image_id": 2401271, "entity": "dog", "caption": "The dog's nose is black.", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black."}, {"index": 206, "image_id": 2401024, "entity": "dog", "caption": "the dog has ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has ears"}, {"index": 207, "image_id": 2401024, "entity": "dog", "caption": "the dog is wearing strap", "question": ["is there the dog ?", "is there strap ?"], "prompt": "the {} is wearing strap"}, {"index": 208, "image_id": 2401024, "entity": "dog", "caption": "dog is wearing sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is wearing sweater"}, {"index": 209, "image_id": 2401024, "entity": "dog", "caption": "The sweater the dog is wearing", "question": ["is there the sweater ?", "is there the dog ?"], "prompt": "The sweater the {} is wearing"}, {"index": 210, "image_id": 2400958, "entity": "dog", "caption": "the man behind the dogs has blue jeans on", "question": ["is there the man ?", "are there the dogs ?", "are there blue jeans ?"], "prompt": "the man behind the {}s has blue jeans on"}, {"index": 211, "image_id": 2400958, "entity": "dog", "caption": "dog with tongue hanging out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue hanging out"}, {"index": 212, "image_id": 2400922, "entity": "dog", "caption": "The dog is staring out the window.", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is staring out the window."}, {"index": 213, "image_id": 2400865, "entity": "dog", "caption": "The dog is on a blanket.", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket."}, {"index": 214, "image_id": 2400865, "entity": "dog", "caption": "the dogs nose is pink.", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is pink."}, {"index": 215, "image_id": 2400865, "entity": "dog", "caption": "the dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "the {}s tongue is pink."}, {"index": 216, "image_id": 2400378, "entity": "dog", "caption": "this is the dog's head", "question": ["is there the dog's head ?"], "prompt": "this is the {}'s head"}, {"index": 217, "image_id": 2400368, "entity": "dog", "caption": "a dogs left paw", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw"}, {"index": 218, "image_id": 2399686, "entity": "dog", "caption": "a dog with its ears perked up", "question": ["is there a dog ?", "are there its ears ?"], "prompt": "a {} with its ears perked up"}, {"index": 219, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left eye", "question": ["are there the black dogs ?", "is there eye ?"], "prompt": "the black {}s left eye"}, {"index": 220, "image_id": 2399125, "entity": "dog", "caption": "the black dogs right eye", "question": ["are there the black dogs ?"], "prompt": "the black {}s right eye"}, {"index": 221, "image_id": 2399125, "entity": "dog", "caption": "piece of wood dog is lying on", "question": ["is there piece ?", "is there wood dog ?"], "prompt": "piece of wood {} is lying on"}, {"index": 222, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left ear", "question": ["are there the black dogs ?", "is there ear ?"], "prompt": "the black {}s left ear"}, {"index": 223, "image_id": 2399037, "entity": "dog", "caption": "she is holding a dog", "question": ["is there a dog ?"], "prompt": "she is holding a {}"}, {"index": 224, "image_id": 2399037, "entity": "dog", "caption": "The girl's hand that is resting on the dog.", "question": ["is there the girl's hand ?", "is there the dog ?"], "prompt": "The girl's hand that is resting on the {}."}, {"index": 225, "image_id": 2399037, "entity": "dog", "caption": "Girl's hand is on the dog.", "question": ["is there girl's hand ?", "is there the dog ?"], "prompt": "Girl's hand is on the {}."}, {"index": 226, "image_id": 2399037, "entity": "dog", "caption": "this is a dog", "question": ["is there a dog ?"], "prompt": "this is a {}"}, {"index": 227, "image_id": 2397742, "entity": "dog", "caption": "a green rug the dog is laying on", "question": ["is there a green rug ?", "is there the dog ?"], "prompt": "a green rug the {} is laying on"}, {"index": 228, "image_id": 2397739, "entity": "dog", "caption": "A dog is in front of a motorcycle.", "question": ["is there a dog ?", "is there front ?", "is there a motorcycle ?"], "prompt": "A {} is in front of a motorcycle."}, {"index": 229, "image_id": 2397739, "entity": "dog", "caption": "A dog has black and white spots.", "question": ["is there a dog ?", "are there black and white spots ?"], "prompt": "A {} has black and white spots."}, {"index": 230, "image_id": 2397739, "entity": "dog", "caption": "A dog is behind another dog.", "question": ["is there a dog ?", "is there another dog ?"], "prompt": "A {} is behind another {}."}, {"index": 231, "image_id": 2397739, "entity": "dog", "caption": "motorbike parked behind dogs", "question": ["is there motorbike ?", "are there dogs ?"], "prompt": "motorbike parked behind {}s"}, {"index": 232, "image_id": 2397731, "entity": "dog", "caption": "the red collar the dog is wearing", "question": ["is there the red collar ?", "is there the dog ?"], "prompt": "the red collar the {} is wearing"}, {"index": 233, "image_id": 2397731, "entity": "dog", "caption": "the green grass the dog is standing on", "question": ["is there the green grass ?", "is there the dog ?"], "prompt": "the green grass the {} is standing on"}, {"index": 234, "image_id": 2397731, "entity": "dog", "caption": "the dogs colored leash", "question": ["are there the dogs ?"], "prompt": "the {}s colored leash"}, {"index": 235, "image_id": 2397368, "entity": "dog", "caption": "the dog is holding something on its mouth", "question": ["is there the dog ?", "is there something ?", "is there its mouth ?"], "prompt": "the {} is holding something on its mouth"}, {"index": 236, "image_id": 2397327, "entity": "dog", "caption": "dog has big brown eyes", "question": ["is there dog ?", "are there big brown eyes ?"], "prompt": "{} has big brown eyes"}, {"index": 237, "image_id": 2397327, "entity": "dog", "caption": "dog has small black nose", "question": ["is there dog ?", "is there small black nose ?"], "prompt": "{} has small black nose"}, {"index": 238, "image_id": 2397327, "entity": "dog", "caption": "collar on dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar on {} is black"}, {"index": 239, "image_id": 2397327, "entity": "dog", "caption": "the carpet the dog is standing on", "question": ["is there the carpet ?", "is there the dog ?"], "prompt": "the carpet the {} is standing on"}, {"index": 240, "image_id": 2397327, "entity": "dog", "caption": "the dogs tail", "question": ["are there the dogs ?"], "prompt": "the {}s tail"}, {"index": 241, "image_id": 2397165, "entity": "dog", "caption": "a dogs left paw.", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw."}, {"index": 242, "image_id": 2396130, "entity": "dog", "caption": "A cushion a dog is lying on. ", "question": ["is there a cushion ?", "is there a dog ?"], "prompt": "A cushion a {} is lying on. "}, {"index": 243, "image_id": 2396130, "entity": "dog", "caption": "The dog is laying on the couch.", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "The {} is laying on the couch."}, {"index": 244, "image_id": 2395670, "entity": "dog", "caption": "dog is wearing a tiara", "question": ["is there dog ?", "is there a tiara ?"], "prompt": "{} is wearing a tiara"}, {"index": 245, "image_id": 2395670, "entity": "dog", "caption": "the dog is wearing a tutu", "question": ["is there the dog ?", "is there a tutu ?"], "prompt": "the {} is wearing a tutu"}, {"index": 246, "image_id": 2395670, "entity": "dog", "caption": "bulldog has big brown eye", "question": ["is there big brown eye ?"], "prompt": "bull{} has big brown eye"}, {"index": 247, "image_id": 2395670, "entity": "dog", "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest", "question": ["is there green ribbon ?", "is there orange collar+ribbed orange vest ?"], "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"}, {"index": 248, "image_id": 2395473, "entity": "dog", "caption": "The dog is on top of the pillow", "question": ["is there the dog ?", "is there top ?", "is there the pillow ?"], "prompt": "The {} is on top of the pillow"}, {"index": 249, "image_id": 2395473, "entity": "dog", "caption": "The dog is hugging the stuffed animal", "question": ["is there the dog ?", "is there the stuffed animal ?"], "prompt": "The {} is hugging the stuffed animal"}, {"index": 250, "image_id": 2395473, "entity": "dog", "caption": "stuff is on the floor behind the dog", "question": ["is there stuff ?", "is there the floor ?", "is there the dog ?"], "prompt": "stuff is on the floor behind the {}"}, {"index": 251, "image_id": 2395473, "entity": "dog", "caption": "a white pillow is underneath the dog", "question": ["is there a white pillow ?", "is there the dog ?"], "prompt": "a white pillow is underneath the {}"}, {"index": 252, "image_id": 2395473, "entity": "dog", "caption": "a black speaker is behind the dog", "question": ["is there a black speaker ?", "is there the dog ?"], "prompt": "a black speaker is behind the {}"}, {"index": 253, "image_id": 2395473, "entity": "dog", "caption": "old looking curtains is above the dog's head", "question": ["are there old looking curtains ?", "is there the dog's head ?"], "prompt": "old looking curtains is above the {}'s head"}, {"index": 254, "image_id": 2395369, "entity": "dog", "caption": "grey run the dog is standing on", "question": ["is there the dog ?"], "prompt": "grey run the {} is standing on"}, {"index": 255, "image_id": 2395369, "entity": "dog", "caption": "cat and dog playing with each other ", "question": ["is there cat ?", "is there dog ?"], "prompt": "cat and {} playing with each other "}, {"index": 256, "image_id": 2395369, "entity": "dog", "caption": "head of dog is black", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is black"}, {"index": 257, "image_id": 2394681, "entity": "dog", "caption": "The dog's tail is visible.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is visible."}, {"index": 258, "image_id": 2394681, "entity": "dog", "caption": "the dog has tail", "question": ["is there the dog ?", "is there tail ?"], "prompt": "the {} has tail"}, {"index": 259, "image_id": 2394499, "entity": "dog", "caption": "the dog is wearing a hat", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "the {} is wearing a hat"}, {"index": 260, "image_id": 2394499, "entity": "dog", "caption": "dog is wearing a fedora", "question": ["is there dog ?", "is there a fedora ?"], "prompt": "{} is wearing a fedora"}, {"index": 261, "image_id": 2394499, "entity": "dog", "caption": "The dog has a toy.", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "The {} has a toy."}, {"index": 262, "image_id": 2394499, "entity": "dog", "caption": "The dog is laying on a pillow.", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is laying on a pillow."}, {"index": 263, "image_id": 2394372, "entity": "dog", "caption": "The dog is black and white.", "question": ["is there the dog ?"], "prompt": "The {} is black and white."}, {"index": 264, "image_id": 2394372, "entity": "dog", "caption": "dog has white body with black spots", "question": ["is there dog ?", "is there white body ?", "are there black spots ?"], "prompt": "{} has white body with black spots"}, {"index": 265, "image_id": 2394372, "entity": "dog", "caption": "dog has cast a shadow", "question": ["is there dog ?", "is there a shadow ?"], "prompt": "{} has cast a shadow"}, {"index": 266, "image_id": 2394372, "entity": "dog", "caption": "dog has big fluffy tail", "question": ["is there dog ?", "is there big fluffy tail ?"], "prompt": "{} has big fluffy tail"}, {"index": 267, "image_id": 2394372, "entity": "dog", "caption": "dog has tags on collar", "question": ["is there dog ?", "are there tags ?", "is there collar ?"], "prompt": "{} has tags on collar"}, {"index": 268, "image_id": 2394372, "entity": "dog", "caption": "dog is wearing a white collar", "question": ["is there dog ?", "is there a white collar ?"], "prompt": "{} is wearing a white collar"}, {"index": 269, "image_id": 2394372, "entity": "dog", "caption": "dog is black and white", "question": ["is there dog ?"], "prompt": "{} is black and white"}, {"index": 270, "image_id": 2394372, "entity": "dog", "caption": "dog has frilly tail", "question": ["is there dog ?"], "prompt": "{} has frilly tail"}, {"index": 271, "image_id": 2394372, "entity": "dog", "caption": "dog has brown spots", "question": ["is there dog ?", "are there brown spots ?"], "prompt": "{} has brown spots"}, {"index": 272, "image_id": 2394372, "entity": "dog", "caption": "dog wears white collar", "question": ["is there dog ?", "is there white collar ?"], "prompt": "{} wears white collar"}, {"index": 273, "image_id": 2394372, "entity": "dog", "caption": "A dog is on the sand.", "question": ["is there a dog ?", "is there the sand ?"], "prompt": "A {} is on the sand."}, {"index": 274, "image_id": 2394372, "entity": "dog", "caption": "The dog is balck and white.", "question": ["is there the dog ?"], "prompt": "The {} is balck and white."}, {"index": 275, "image_id": 2394372, "entity": "dog", "caption": "The dog has a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar."}, {"index": 276, "image_id": 2394065, "entity": "dog", "caption": "The dog is licking the water bottle.", "question": ["is there the dog ?", "is there the water bottle ?"], "prompt": "The {} is licking the water bottle."}, {"index": 277, "image_id": 2394065, "entity": "dog", "caption": "The dog is standing next to the person.", "question": ["is there the dog ?", "is there the person ?"], "prompt": "The {} is standing next to the person."}, {"index": 278, "image_id": 2393921, "entity": "dog", "caption": "Aviator glasses on dogs face", "question": ["are there aviator glasses ?", "are there dogs ?"], "prompt": "Aviator glasses on {}s face"}, {"index": 279, "image_id": 2393921, "entity": "dog", "caption": "The dog has glasses on", "question": ["is there the dog ?", "are there glasses ?"], "prompt": "The {} has glasses on"}, {"index": 280, "image_id": 2393921, "entity": "dog", "caption": "The dog has a hat on", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} has a hat on"}, {"index": 281, "image_id": 2393921, "entity": "dog", "caption": "The dog has on a red bib", "question": ["is there the dog ?", "is there a red bib ?"], "prompt": "The {} has on a red bib"}, {"index": 282, "image_id": 2393921, "entity": "dog", "caption": "The dog is sitting in a seat", "question": ["is there the dog ?", "is there a seat ?"], "prompt": "The {} is sitting in a seat"}, {"index": 283, "image_id": 2393366, "entity": "dog", "caption": "this is the dog's nose", "question": ["is there the dog's nose ?"], "prompt": "this is the {}'s nose"}, {"index": 284, "image_id": 2393366, "entity": "dog", "caption": "these are the dog's eyes", "question": ["are there the dog's eyes ?"], "prompt": "these are the {}'s eyes"}, {"index": 285, "image_id": 2393366, "entity": "dog", "caption": "the dog's eye is orange", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is orange"}, {"index": 286, "image_id": 2392895, "entity": "dog", "caption": "a dog with his eyes closed", "question": ["is there a dog ?", "are there his eyes ?"], "prompt": "a {} with his eyes closed"}, {"index": 287, "image_id": 2392895, "entity": "dog", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "{} is on a boat"}, {"index": 288, "image_id": 2392895, "entity": "dog", "caption": "dog has a red collar on", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} has a red collar on"}, {"index": 289, "image_id": 2392895, "entity": "dog", "caption": "dog has a name tag", "question": ["is there dog ?", "is there a name tag ?"], "prompt": "{} has a name tag"}, {"index": 290, "image_id": 2392895, "entity": "dog", "caption": "dog has partially white fur", "question": ["is there dog ?", "is there partially white fur ?"], "prompt": "{} has partially white fur"}, {"index": 291, "image_id": 2392690, "entity": "dog", "caption": "a dog is on the grass", "question": ["is there a dog ?", "is there the grass ?"], "prompt": "a {} is on the grass"}, {"index": 292, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water", "question": ["is there dog ?", "is there water ?"], "prompt": "{} is drinking water"}, {"index": 293, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water from a bottle", "question": ["is there dog ?", "is there water ?", "is there a bottle ?"], "prompt": "{} is drinking water from a bottle"}, {"index": 294, "image_id": 2392690, "entity": "dog", "caption": "water is dripping from the dogs face", "question": ["is there water ?", "are there the dogs ?"], "prompt": "water is dripping from the {}s face"}, {"index": 295, "image_id": 2392690, "entity": "dog", "caption": "thirsty dog is taking a drink", "question": ["is there thirsty dog ?", "is there a drink ?"], "prompt": "thirsty {} is taking a drink"}, {"index": 296, "image_id": 2392690, "entity": "dog", "caption": "dog has drunk half the water bottle", "question": ["is there dog ?", "is there half the water bottle ?"], "prompt": "{} has drunk half the water bottle"}, {"index": 297, "image_id": 2392606, "entity": "dog", "caption": "The two dogs are waring party hats.", "question": ["are there the two dogs ?", "are there party hats ?"], "prompt": "The two {}s are waring party hats."}, {"index": 298, "image_id": 2392334, "entity": "dog", "caption": "The dog has long hair.", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "The {} has long hair."}, {"index": 299, "image_id": 2392334, "entity": "dog", "caption": "white dog wagging its tail", "question": ["is there white dog ?", "is there its tail ?"], "prompt": "white {} wagging its tail"}, {"index": 300, "image_id": 2392033, "entity": "dog", "caption": "ears of dog are long", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are long"}, {"index": 301, "image_id": 2392033, "entity": "dog", "caption": "tail of brown dog is furry", "question": ["is there tail ?", "is there brown dog ?"], "prompt": "tail of brown {} is furry"}, {"index": 302, "image_id": 2392033, "entity": "dog", "caption": "nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black"}, {"index": 303, "image_id": 2391972, "entity": "dog", "caption": "dog wears attentive expression", "question": ["is there dog ?", "is there attentive expression ?"], "prompt": "{} wears attentive expression"}, {"index": 304, "image_id": 2391972, "entity": "dog", "caption": "dog has soulful eye, folded down ear", "question": ["is there dog ?", "is there soulful eye ?", "is there ear ?"], "prompt": "{} has soulful eye, folded down ear"}, {"index": 305, "image_id": 2391972, "entity": "dog", "caption": "dog is wearing dog collar", "question": ["is there dog ?", "is there dog collar ?"], "prompt": "{} is wearing {} collar"}, {"index": 306, "image_id": 2391972, "entity": "dog", "caption": "the dog collar is black", "question": ["is there the dog collar ?"], "prompt": "the {} collar is black"}, {"index": 307, "image_id": 2390997, "entity": "dog", "caption": "dog has black leash", "question": ["is there dog ?", "is there black leash ?"], "prompt": "{} has black leash"}, {"index": 308, "image_id": 2390997, "entity": "dog", "caption": "dog has black fur", "question": ["is there dog ?", "is there black fur ?"], "prompt": "{} has black fur"}, {"index": 309, "image_id": 2390997, "entity": "dog", "caption": "this is a dog collar", "question": ["is there a dog collar ?"], "prompt": "this is a {} collar"}, {"index": 310, "image_id": 2390915, "entity": "dog", "caption": "dog has brown eyes", "question": ["is there dog ?", "are there brown eyes ?"], "prompt": "{} has brown eyes"}, {"index": 311, "image_id": 2390915, "entity": "dog", "caption": "these are the dog's paws", "question": ["are there the dog's paws ?"], "prompt": "these are the {}'s paws"}, {"index": 312, "image_id": 2390745, "entity": "dog", "caption": "a dog is lying on his side", "question": ["is there a dog ?", "is there his side ?"], "prompt": "a {} is lying on his side"}, {"index": 313, "image_id": 2390745, "entity": "dog", "caption": "ear of dog is long", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is long"}, {"index": 314, "image_id": 2390745, "entity": "dog", "caption": "The dog's eyes are wide open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are wide open"}, {"index": 315, "image_id": 2390745, "entity": "dog", "caption": "The dog is relaxing", "question": ["is there the dog ?"], "prompt": "The {} is relaxing"}, {"index": 316, "image_id": 2390588, "entity": "dog", "caption": "The dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "The {} has nose"}, {"index": 317, "image_id": 2390588, "entity": "dog", "caption": "the sling is on dog", "question": ["is there the sling ?", "is there dog ?"], "prompt": "the sling is on {}"}, {"index": 318, "image_id": 2390588, "entity": "dog", "caption": "the eyes are on the dog", "question": ["are there the eyes ?", "is there the dog ?"], "prompt": "the eyes are on the {}"}, {"index": 319, "image_id": 2390301, "entity": "dog", "caption": "dog's tongue hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue hanging out"}, {"index": 320, "image_id": 2390301, "entity": "dog", "caption": "The dog closes his eyes", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "The {} closes his eyes"}, {"index": 321, "image_id": 2390301, "entity": "dog", "caption": "The dogs fur is wet", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is wet"}, {"index": 322, "image_id": 2390301, "entity": "dog", "caption": "The dog has collar on", "question": ["is there the dog ?", "is there collar ?"], "prompt": "The {} has collar on"}, {"index": 323, "image_id": 2390301, "entity": "dog", "caption": "The dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose"}, {"index": 324, "image_id": 2390301, "entity": "dog", "caption": "The dogs eye is closed", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is closed"}, {"index": 325, "image_id": 2390301, "entity": "dog", "caption": "dog has a large pink tounge", "question": ["is there dog ?", "is there a large pink tounge ?"], "prompt": "{} has a large pink tounge"}, {"index": 326, "image_id": 2390301, "entity": "dog", "caption": "shallow water with dog paws submerged", "question": ["is there shallow water ?", "are there dog paws ?"], "prompt": "shallow water with {} paws submerged"}, {"index": 327, "image_id": 2390301, "entity": "dog", "caption": "tan dog standing in the ocean", "question": ["is there the ocean ?"], "prompt": "tan {} standing in the ocean"}, {"index": 328, "image_id": 2390301, "entity": "dog", "caption": "dog with his tongue hanging out", "question": ["is there dog ?", "is there his tongue ?"], "prompt": "{} with his tongue hanging out"}, {"index": 329, "image_id": 2390135, "entity": "dog", "caption": "Th enose od the dog.", "question": ["is there th enose ?", "is there od the dog ?"], "prompt": "Th enose od the {}."}, {"index": 330, "image_id": 2390135, "entity": "dog", "caption": "The dog rests his head.", "question": ["is there the dog ?", "is there his head ?"], "prompt": "The {} rests his head."}, {"index": 331, "image_id": 2390135, "entity": "dog", "caption": "The dogs ear", "question": ["are there the dogs ?"], "prompt": "The {}s ear"}, {"index": 332, "image_id": 2390135, "entity": "dog", "caption": "The dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye"}, {"index": 333, "image_id": 2390107, "entity": "dog", "caption": "long black dog tail curved up", "question": ["is there long black dog tail ?"], "prompt": "long black {} tail curved up"}, {"index": 334, "image_id": 2390107, "entity": "dog", "caption": "the dog has a white spot on it's leg", "question": ["is there the dog ?", "is there a white spot ?", "is there it's leg ?"], "prompt": "the {} has a white spot on it's leg"}, {"index": 335, "image_id": 2390107, "entity": "dog", "caption": "the dog has a long tail", "question": ["is there the dog ?", "is there a long tail ?"], "prompt": "the {} has a long tail"}, {"index": 336, "image_id": 2390107, "entity": "dog", "caption": "the dog has black paw pads", "question": ["is there the dog ?", "are there black paw pads ?"], "prompt": "the {} has black paw pads"}, {"index": 337, "image_id": 2389769, "entity": "dog", "caption": "dog ears are floppy", "question": ["are there dog ears ?"], "prompt": "{} ears are floppy"}, {"index": 338, "image_id": 2389769, "entity": "dog", "caption": "dog eyes are cute", "question": ["are there dog eyes ?"], "prompt": "{} eyes are cute"}, {"index": 339, "image_id": 2389769, "entity": "dog", "caption": "the dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are closed"}, {"index": 340, "image_id": 2389769, "entity": "dog", "caption": "The dog has tags on ", "question": ["is there the dog ?", "are there tags ?"], "prompt": "The {} has tags on "}, {"index": 341, "image_id": 2389769, "entity": "dog", "caption": "Mans toes beside dog", "question": ["is there dog ?"], "prompt": "Mans toes beside {}"}, {"index": 342, "image_id": 2389636, "entity": "dog", "caption": "the dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "the {} has nose"}, {"index": 343, "image_id": 2388972, "entity": "dog", "caption": "the grass is below the dog", "question": ["is there the grass ?", "is there the dog ?"], "prompt": "the grass is below the {}"}, {"index": 344, "image_id": 2388671, "entity": "dog", "caption": "white dog is standing looking out on the yard", "question": ["is there white dog ?", "is there the yard ?"], "prompt": "white {} is standing looking out on the yard"}, {"index": 345, "image_id": 2388671, "entity": "dog", "caption": "dog is mostly white", "question": ["is there dog ?"], "prompt": "{} is mostly white"}, {"index": 346, "image_id": 2388671, "entity": "dog", "caption": "dog has brown ears", "question": ["is there dog ?", "are there brown ears ?"], "prompt": "{} has brown ears"}, {"index": 347, "image_id": 2388671, "entity": "dog", "caption": "dog has black collar", "question": ["is there dog ?", "is there black collar ?"], "prompt": "{} has black collar"}, {"index": 348, "image_id": 2388671, "entity": "dog", "caption": "dog has white legs", "question": ["is there dog ?", "are there white legs ?"], "prompt": "{} has white legs"}, {"index": 349, "image_id": 2388320, "entity": "dog", "caption": "The dog has its head on a stuffed animal", "question": ["is there the dog ?", "is there its head ?", "is there a stuffed animal ?"], "prompt": "The {} has its head on a stuffed animal"}, {"index": 350, "image_id": 2388320, "entity": "dog", "caption": "The gate is behind the dog", "question": ["is there the gate ?", "is there the dog ?"], "prompt": "The gate is behind the {}"}, {"index": 351, "image_id": 2388320, "entity": "dog", "caption": "The dog is lying on wood", "question": ["is there the dog ?", "is there wood ?"], "prompt": "The {} is lying on wood"}, {"index": 352, "image_id": 2388066, "entity": "dog", "caption": "dog jumping for frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} jumping for frisbee"}, {"index": 353, "image_id": 2388048, "entity": "dog", "caption": "all are secondary to small dog chewing large toothbrush", "question": ["is there small dog ?", "is there large toothbrush ?"], "prompt": "all are secondary to small {} chewing large toothbrush"}, {"index": 354, "image_id": 2388048, "entity": "dog", "caption": "a dog is lying on a bed", "question": ["is there a dog ?", "is there a bed ?"], "prompt": "a {} is lying on a bed"}, {"index": 355, "image_id": 2388048, "entity": "dog", "caption": "body of dog is brown", "question": ["is there body ?", "is there dog ?"], "prompt": "body of {} is brown"}, {"index": 356, "image_id": 2388048, "entity": "dog", "caption": "head of dog is brown and white", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown and white"}, {"index": 357, "image_id": 2388048, "entity": "dog", "caption": "ears of dog are brown", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are brown"}, {"index": 358, "image_id": 2388048, "entity": "dog", "caption": "dog has a toothbrush in his mouth", "question": ["is there dog ?", "is there a toothbrush ?", "is there his mouth ?"], "prompt": "{} has a toothbrush in his mouth"}, {"index": 359, "image_id": 2388004, "entity": "dog", "caption": "tail of dog is long and curly", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is long and curly"}, {"index": 360, "image_id": 2388004, "entity": "dog", "caption": "front legs of dog are long", "question": ["are there front legs ?", "is there dog ?"], "prompt": "front legs of {} are long"}, {"index": 361, "image_id": 2388004, "entity": "dog", "caption": "The dog has a white spot.", "question": ["is there the dog ?", "is there a white spot ?"], "prompt": "The {} has a white spot."}, {"index": 362, "image_id": 2387774, "entity": "dog", "caption": "dog looks out window", "question": ["is there dog ?"], "prompt": "{} looks out window"}, {"index": 363, "image_id": 2387774, "entity": "dog", "caption": "dog has dark nose", "question": ["is there dog ?", "is there dark nose ?"], "prompt": "{} has dark nose"}, {"index": 364, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted ears", "question": ["is there dog ?", "are there ears ?"], "prompt": "{} has spotted ears"}, {"index": 365, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted face", "question": ["is there dog ?", "is there face ?"], "prompt": "{} has spotted face"}, {"index": 366, "image_id": 2387596, "entity": "dog", "caption": "dog is wearing glasses", "question": ["is there dog ?", "are there glasses ?"], "prompt": "{} is wearing glasses"}, {"index": 367, "image_id": 2387596, "entity": "dog", "caption": "dog has multicolor bandanna", "question": ["is there dog ?", "is there multicolor bandanna ?"], "prompt": "{} has multicolor bandanna"}, {"index": 368, "image_id": 2387596, "entity": "dog", "caption": "dog has white paws", "question": ["is there dog ?", "are there white paws ?"], "prompt": "{} has white paws"}, {"index": 369, "image_id": 2387596, "entity": "dog", "caption": "dog is on skateboard", "question": ["is there dog ?", "is there skateboard ?"], "prompt": "{} is on skateboard"}, {"index": 370, "image_id": 2387596, "entity": "dog", "caption": "The dog is on a leash.", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash."}, {"index": 371, "image_id": 2387470, "entity": "dog", "caption": "The dog's mouth is open. ", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open. "}, {"index": 372, "image_id": 2387448, "entity": "dog", "caption": "black dog jumping in air", "question": ["is there black dog ?", "is there air ?"], "prompt": "black {} jumping in air"}, {"index": 373, "image_id": 2387448, "entity": "dog", "caption": "dog has red collar", "question": ["is there dog ?", "is there red collar ?"], "prompt": "{} has red collar"}, {"index": 374, "image_id": 2387448, "entity": "dog", "caption": "dog has short curly tail", "question": ["is there dog ?", "is there short curly tail ?"], "prompt": "{} has short curly tail"}, {"index": 375, "image_id": 2387448, "entity": "dog", "caption": "grass under dog is green", "question": ["is there grass ?", "is there dog ?"], "prompt": "grass under {} is green"}, {"index": 376, "image_id": 2387387, "entity": "dog", "caption": "dog's tongue sticking out of mouth", "question": ["is there dog's tongue ?", "is there mouth ?"], "prompt": "{}'s tongue sticking out of mouth"}, {"index": 377, "image_id": 2387104, "entity": "dog", "caption": "the dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has a red collar"}, {"index": 378, "image_id": 2387104, "entity": "dog", "caption": "the dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "the {} has a brown nose"}, {"index": 379, "image_id": 2387104, "entity": "dog", "caption": "the cat is under the dog's chin", "question": ["is there the cat ?", "is there the dog's chin ?"], "prompt": "the cat is under the {}'s chin"}, {"index": 380, "image_id": 2387104, "entity": "dog", "caption": "the dog has a white face", "question": ["is there the dog ?", "is there a white face ?"], "prompt": "the {} has a white face"}, {"index": 381, "image_id": 2386600, "entity": "dog", "caption": "The frisbee is in front of the dog", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The frisbee is in front of the {}"}, {"index": 382, "image_id": 2386600, "entity": "dog", "caption": "dog's teeth showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth showing"}, {"index": 383, "image_id": 2386411, "entity": "dog", "caption": "The dog has a black nose.", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose."}, {"index": 384, "image_id": 2386411, "entity": "dog", "caption": "red bandana dog is wearing", "question": ["is there red bandana dog ?"], "prompt": "red bandana {} is wearing"}, {"index": 385, "image_id": 2386411, "entity": "dog", "caption": "dog's face looking at frisbees", "question": ["is there dog's face ?", "are there frisbees ?"], "prompt": "{}'s face looking at frisbees"}, {"index": 386, "image_id": 2386323, "entity": "dog", "caption": "dog is laying on suit case", "question": ["is there dog ?", "is there suit case ?"], "prompt": "{} is laying on suit case"}, {"index": 387, "image_id": 2386323, "entity": "dog", "caption": "The dog is wearing a gold tag.", "question": ["is there the dog ?", "is there a gold tag ?"], "prompt": "The {} is wearing a gold tag."}, {"index": 388, "image_id": 2386323, "entity": "dog", "caption": "The dog is sitting on a suitcase.", "question": ["is there the dog ?", "is there a suitcase ?"], "prompt": "The {} is sitting on a suitcase."}, {"index": 389, "image_id": 2386037, "entity": "dog", "caption": "dog is jumping above ground", "question": ["is there dog ?", "is there ground ?"], "prompt": "{} is jumping above ground"}, {"index": 390, "image_id": 2386037, "entity": "dog", "caption": "dog is wearing collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} is wearing collar"}, {"index": 391, "image_id": 2386031, "entity": "dog", "caption": "dog's tail is up in the air", "question": ["is there dog's tail ?", "is there the air ?"], "prompt": "{}'s tail is up in the air"}, {"index": 392, "image_id": 2386031, "entity": "dog", "caption": "dog's left perked up ear", "question": ["is there ear ?"], "prompt": "{}'s left perked up ear"}, {"index": 393, "image_id": 2386010, "entity": "dog", "caption": "dogs face in a side mirror", "question": ["are there dogs ?", "is there a side mirror ?"], "prompt": "{}s face in a side mirror"}, {"index": 394, "image_id": 2385955, "entity": "dog", "caption": "nose of dog is wet", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is wet"}, {"index": 395, "image_id": 2385955, "entity": "dog", "caption": "eyes of dog are wide open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are wide open"}, {"index": 396, "image_id": 2385955, "entity": "dog", "caption": "the frisbee is in the dog's mouth", "question": ["is there the frisbee ?", "is there the dog's mouth ?"], "prompt": "the frisbee is in the {}'s mouth"}, {"index": 397, "image_id": 2385955, "entity": "dog", "caption": "the dog's eyes are wild and wide open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are wild and wide open"}, {"index": 398, "image_id": 2385955, "entity": "dog", "caption": "the face of the dog is tricolored", "question": ["is there the face ?", "is there the dog ?"], "prompt": "the face of the {} is tricolored"}, {"index": 399, "image_id": 2385955, "entity": "dog", "caption": "the dog's paw is white", "question": ["is there the dog's paw ?"], "prompt": "the {}'s paw is white"}, {"index": 400, "image_id": 2385955, "entity": "dog", "caption": "grass is under the the dog", "question": ["is there grass ?", "is there the the dog ?"], "prompt": "grass is under the the {}"}, {"index": 401, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} is wearing a cap"}, {"index": 402, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing eyeglasses", "question": ["is there dog ?", "are there eyeglasses ?"], "prompt": "{} is wearing eyeglasses"}, {"index": 403, "image_id": 2385853, "entity": "dog", "caption": "dog's mouth is open", "question": ["is there dog's mouth ?"], "prompt": "{}'s mouth is open"}, {"index": 404, "image_id": 2385762, "entity": "dog", "caption": "a dog has a retractable leash attached to the collar", "question": ["is there a dog ?", "is there a retractable leash ?", "is there the collar ?"], "prompt": "a {} has a retractable leash attached to the collar"}, {"index": 405, "image_id": 2385757, "entity": "dog", "caption": "dog laying in dirt with eyes closed", "question": ["is there dog ?", "is there dirt ?", "are there eyes ?"], "prompt": "{} laying in dirt with eyes closed"}, {"index": 406, "image_id": 2385595, "entity": "dog", "caption": "the dog is lying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is lying on the bed"}, {"index": 407, "image_id": 2385566, "entity": "dog", "caption": "man is holding two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is holding two {}s"}, {"index": 408, "image_id": 2385566, "entity": "dog", "caption": "dog in rear has red collar", "question": ["is there dog ?", "is there rear ?", "is there red collar ?"], "prompt": "{} in rear has red collar"}, {"index": 409, "image_id": 2385566, "entity": "dog", "caption": "man is crouching near two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is crouching near two {}s"}, {"index": 410, "image_id": 2385566, "entity": "dog", "caption": "dog with its mouth wide open", "question": ["is there dog ?", "is there its mouth ?"], "prompt": "{} with its mouth wide open"}, {"index": 411, "image_id": 2385566, "entity": "dog", "caption": "man's hand resting on dog's hip", "question": ["is there man's hand ?", "is there dog's hip ?"], "prompt": "man's hand resting on {}'s hip"}, {"index": 412, "image_id": 2385466, "entity": "dog", "caption": "dog's eyes are brown", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are brown"}, {"index": 413, "image_id": 2385466, "entity": "dog", "caption": "dog's whiskers are white", "question": ["are there dog's whiskers ?"], "prompt": "{}'s whiskers are white"}, {"index": 414, "image_id": 2385466, "entity": "dog", "caption": "dog is next to the window", "question": ["is there dog ?", "is there the window ?"], "prompt": "{} is next to the window"}, {"index": 415, "image_id": 2385466, "entity": "dog", "caption": "dog's ears are down", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are down"}, {"index": 416, "image_id": 2385466, "entity": "dog", "caption": "the dog has a silver tag", "question": ["is there the dog ?", "is there a silver tag ?"], "prompt": "the {} has a silver tag"}, {"index": 417, "image_id": 2385466, "entity": "dog", "caption": "the dog is in the passenger seat", "question": ["is there the dog ?", "is there the passenger seat ?"], "prompt": "the {} is in the passenger seat"}, {"index": 418, "image_id": 2385466, "entity": "dog", "caption": "the dog has white parts of the eyes showing", "question": ["is there the dog ?", "are there white parts ?", "are there the eyes ?"], "prompt": "the {} has white parts of the eyes showing"}, {"index": 419, "image_id": 2385466, "entity": "dog", "caption": "A dog has a tag", "question": ["is there a dog ?", "is there a tag ?"], "prompt": "A {} has a tag"}, {"index": 420, "image_id": 2385345, "entity": "dog", "caption": "the dog is leaning on the bedding", "question": ["is there the dog ?", "is there the bedding ?"], "prompt": "the {} is leaning on the bedding"}, {"index": 421, "image_id": 2385345, "entity": "dog", "caption": "the bed is behind the dog", "question": ["is there the bed ?", "is there the dog ?"], "prompt": "the bed is behind the {}"}, {"index": 422, "image_id": 2385299, "entity": "dog", "caption": "white dog is lying on a bed", "question": ["is there white dog ?", "is there a bed ?"], "prompt": "white {} is lying on a bed"}, {"index": 423, "image_id": 2385299, "entity": "dog", "caption": "tail of dog is on bed", "question": ["is there tail ?", "is there dog ?", "is there bed ?"], "prompt": "tail of {} is on bed"}, {"index": 424, "image_id": 2385299, "entity": "dog", "caption": "eyes of dog are black", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are black"}, {"index": 425, "image_id": 2385299, "entity": "dog", "caption": "eyes and nose of dog are black", "question": ["are there eyes ?", "is there nose ?", "is there dog ?"], "prompt": "eyes and nose of {} are black"}, {"index": 426, "image_id": 2385299, "entity": "dog", "caption": "a dog collar has a tag", "question": ["is there a dog collar ?", "is there a tag ?"], "prompt": "a {} collar has a tag"}, {"index": 427, "image_id": 2385299, "entity": "dog", "caption": "legs and chest of dog are white", "question": ["are there legs ?", "is there chest ?", "is there dog ?"], "prompt": "legs and chest of {} are white"}, {"index": 428, "image_id": 2384917, "entity": "dog", "caption": "dogs tongue sticking out", "question": ["are there dogs ?", "is there tongue ?"], "prompt": "{}s tongue sticking out"}, {"index": 429, "image_id": 2384917, "entity": "dog", "caption": "brown pointy ear on dog", "question": ["is there brown pointy ear ?", "is there dog ?"], "prompt": "brown pointy ear on {}"}, {"index": 430, "image_id": 2384563, "entity": "dog", "caption": "dog curled up on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} curled up on a couch"}, {"index": 431, "image_id": 2384563, "entity": "dog", "caption": "a dog curled up on a cushion", "question": ["is there a dog ?", "is there a cushion ?"], "prompt": "a {} curled up on a cushion"}, {"index": 432, "image_id": 2384452, "entity": "dog", "caption": "dog is wearing a green collar ", "question": ["is there dog ?", "is there a green collar ?"], "prompt": "{} is wearing a green collar "}, {"index": 433, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear is bent ", "question": ["are there the dogs ?"], "prompt": "the {}s ear is bent "}, {"index": 434, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear ", "question": ["are there the dogs ?"], "prompt": "the {}s ear "}, {"index": 435, "image_id": 2384424, "entity": "dog", "caption": "the dog is beside the bike", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is beside the bike"}, {"index": 436, "image_id": 2384322, "entity": "dog", "caption": "Reindeer stuffed animal on the dog.", "question": ["is there reindeer ?", "is there animal ?", "is there the dog ?"], "prompt": "Reindeer stuffed animal on the {}."}, {"index": 437, "image_id": 2384105, "entity": "dog", "caption": "dog's collar is green", "question": ["is there dog's collar ?"], "prompt": "{}'s collar is green"}, {"index": 438, "image_id": 2384105, "entity": "dog", "caption": "the dog bed is plaid patterned", "question": ["is there the dog bed ?"], "prompt": "the {} bed is plaid patterned"}, {"index": 439, "image_id": 2384105, "entity": "dog", "caption": "dog's ears pointing upwards", "question": ["are there dog's ears ?"], "prompt": "{}'s ears pointing upwards"}, {"index": 440, "image_id": 2384105, "entity": "dog", "caption": "Black pillow dog is laying on", "question": ["is there black pillow dog ?"], "prompt": "Black pillow {} is laying on"}, {"index": 441, "image_id": 2384105, "entity": "dog", "caption": "Collar dog is wearing", "question": ["is there collar dog ?"], "prompt": "Collar {} is wearing"}, {"index": 442, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan", "question": ["is there dog toy ?", "is there tan ?"], "prompt": "{} toy is tan"}, {"index": 443, "image_id": 2383524, "entity": "dog", "caption": "dog is lying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying on the floor"}, {"index": 444, "image_id": 2383524, "entity": "dog", "caption": "dog has the toy in it's mouth", "question": ["is there dog ?", "is there the toy ?"], "prompt": "{} has the toy in it's mouth"}, {"index": 445, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan and hairy", "question": ["is there dog toy ?"], "prompt": "{} toy is tan and hairy"}, {"index": 446, "image_id": 2383524, "entity": "dog", "caption": "dog has whiskers that are white", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers that are white"}, {"index": 447, "image_id": 2383524, "entity": "dog", "caption": "dog is laying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is laying on the floor"}, {"index": 448, "image_id": 2383524, "entity": "dog", "caption": "dog has black ears", "question": ["is there dog ?", "are there black ears ?"], "prompt": "{} has black ears"}, {"index": 449, "image_id": 2383524, "entity": "dog", "caption": "dog is lying down on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying down on the floor"}, {"index": 450, "image_id": 2383524, "entity": "dog", "caption": "dog toy is brown", "question": ["is there dog toy ?"], "prompt": "{} toy is brown"}, {"index": 451, "image_id": 2383524, "entity": "dog", "caption": "dog has toy in it's mouth", "question": ["is there dog ?", "is there toy ?", "is there it's mouth ?"], "prompt": "{} has toy in it's mouth"}, {"index": 452, "image_id": 2383524, "entity": "dog", "caption": "dog has white whiskers", "question": ["is there dog ?", "are there white whiskers ?"], "prompt": "{} has white whiskers"}, {"index": 453, "image_id": 2383524, "entity": "dog", "caption": "the dog has a nose", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "the {} has a nose"}, {"index": 454, "image_id": 2383524, "entity": "dog", "caption": "the dog has eyes", "question": ["is there the dog ?", "are there eyes ?"], "prompt": "the {} has eyes"}, {"index": 455, "image_id": 2383524, "entity": "dog", "caption": "the dog has an ear", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "the {} has an ear"}, {"index": 456, "image_id": 2383524, "entity": "dog", "caption": "The dog's face looks angry", "question": ["is there the dog's face ?"], "prompt": "The {}'s face looks angry"}, {"index": 457, "image_id": 2383242, "entity": "dog", "caption": "The dog is between the persons legs", "question": ["is there the dog ?", "are there the persons legs ?"], "prompt": "The {} is between the persons legs"}, {"index": 458, "image_id": 2382434, "entity": "dog", "caption": "The dog is on the counter", "question": ["is there the dog ?", "is there the counter ?"], "prompt": "The {} is on the counter"}, {"index": 459, "image_id": 2382434, "entity": "dog", "caption": "The dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black"}, {"index": 460, "image_id": 2382434, "entity": "dog", "caption": "The dog has long fur.", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur."}, {"index": 461, "image_id": 2382434, "entity": "dog", "caption": "The dog is on a table.", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table."}, {"index": 462, "image_id": 2382434, "entity": "dog", "caption": "The dog is sniffing the newspaper.", "question": ["is there the dog ?", "is there the newspaper ?"], "prompt": "The {} is sniffing the newspaper."}, {"index": 463, "image_id": 2382434, "entity": "dog", "caption": "The dog has curly fur", "question": ["is there the dog ?", "is there curly fur ?"], "prompt": "The {} has curly fur"}, {"index": 464, "image_id": 2382434, "entity": "dog", "caption": "the dog`s nose is black", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is black"}, {"index": 465, "image_id": 2382434, "entity": "dog", "caption": "the dog`s eyes are black", "question": ["are there the dog`s eyes ?"], "prompt": "the {}`s eyes are black"}, {"index": 466, "image_id": 2382434, "entity": "dog", "caption": "the dog`s hair is curly", "question": ["is there the dog`s hair ?"], "prompt": "the {}`s hair is curly"}, {"index": 467, "image_id": 2382434, "entity": "dog", "caption": "the dog is smelling the paper", "question": ["is there the dog ?", "is there the paper ?"], "prompt": "the {} is smelling the paper"}, {"index": 468, "image_id": 2382396, "entity": "dog", "caption": "a dog is asleep", "question": ["is there a dog ?"], "prompt": "a {} is asleep"}, {"index": 469, "image_id": 2382396, "entity": "dog", "caption": "The dog's paw is on the remote", "question": ["is there the dog's paw ?", "is there the remote ?"], "prompt": "The {}'s paw is on the remote"}, {"index": 470, "image_id": 2382396, "entity": "dog", "caption": "The dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are closed"}, {"index": 471, "image_id": 2382396, "entity": "dog", "caption": "The dog is sleep on the couch.", "question": ["is there the dog ?", "is there sleep ?", "is there the couch ?"], "prompt": "The {} is sleep on the couch."}, {"index": 472, "image_id": 2382396, "entity": "dog", "caption": "The dog has two ears.", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "The {} has two ears."}, {"index": 473, "image_id": 2382396, "entity": "dog", "caption": "A dog is in the foreground", "question": ["is there a dog ?", "is there the foreground ?"], "prompt": "A {} is in the foreground"}, {"index": 474, "image_id": 2382082, "entity": "dog", "caption": "the dog`s nose is brown", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is brown"}, {"index": 475, "image_id": 2382082, "entity": "dog", "caption": "the dog`s stomach is wet", "question": ["is there the dog`s stomach ?"], "prompt": "the {}`s stomach is wet"}, {"index": 476, "image_id": 2382082, "entity": "dog", "caption": "dog is in the beach", "question": ["is there dog ?", "is there the beach ?"], "prompt": "{} is in the beach"}, {"index": 477, "image_id": 2382082, "entity": "dog", "caption": "tail of dog is up", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is up"}, {"index": 478, "image_id": 2382082, "entity": "dog", "caption": "face of dog is white and brown", "question": ["is there face ?", "is there dog ?"], "prompt": "face of {} is white and brown"}, {"index": 479, "image_id": 2382082, "entity": "dog", "caption": "collar of dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar of {} is black"}, {"index": 480, "image_id": 2382082, "entity": "dog", "caption": "ears of dog are down ", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are down "}, {"index": 481, "image_id": 2381848, "entity": "dog", "caption": "ear of dog is brown", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is brown"}, {"index": 482, "image_id": 2381777, "entity": "dog", "caption": "Leash attached to the dog", "question": ["is there the dog ?"], "prompt": "Leash attached to the {}"}, {"index": 483, "image_id": 2381777, "entity": "dog", "caption": "the dog is wearing a floater", "question": ["is there the dog ?", "is there a floater ?"], "prompt": "the {} is wearing a floater"}, {"index": 484, "image_id": 2381777, "entity": "dog", "caption": "this is the rope tying the dog", "question": ["is there the rope ?", "is there the dog ?"], "prompt": "this is the rope tying the {}"}, {"index": 485, "image_id": 2381403, "entity": "dog", "caption": "bull dog is wearing a black and red vest ", "question": ["is there bull dog ?", "is there a black and red vest ?"], "prompt": "bull {} is wearing a black and red vest "}, {"index": 486, "image_id": 2381403, "entity": "dog", "caption": "bull dog is standing on a blue surfboard ", "question": ["is there bull dog ?", "is there a blue surfboard ?"], "prompt": "bull {} is standing on a blue surfboard "}, {"index": 487, "image_id": 2381403, "entity": "dog", "caption": "the dog has an overbite", "question": ["is there the dog ?", "is there an overbite ?"], "prompt": "the {} has an overbite"}, {"index": 488, "image_id": 2381403, "entity": "dog", "caption": "the dog is wearing a life vest", "question": ["is there the dog ?", "is there a life vest ?"], "prompt": "the {} is wearing a life vest"}, {"index": 489, "image_id": 2381403, "entity": "dog", "caption": "the dog has front legs", "question": ["is there the dog ?", "are there front legs ?"], "prompt": "the {} has front legs"}, {"index": 490, "image_id": 2381403, "entity": "dog", "caption": "the dog is on the board", "question": ["is there the dog ?", "is there the board ?"], "prompt": "the {} is on the board"}, {"index": 491, "image_id": 2381375, "entity": "dog", "caption": "the dog is lying on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is lying on the ground"}, {"index": 492, "image_id": 2381375, "entity": "dog", "caption": "the dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} is on a leash"}, {"index": 493, "image_id": 2380480, "entity": "dog", "caption": "The dog's reflection is in a mirror.", "question": ["is there the dog's reflection ?", "is there a mirror ?"], "prompt": "The {}'s reflection is in a mirror."}, {"index": 494, "image_id": 2380480, "entity": "dog", "caption": "The dog's tongue is showing. ", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is showing. "}, {"index": 495, "image_id": 2380480, "entity": "dog", "caption": "The dog's legs are in the foreground.", "question": ["are there the dog's legs ?", "is there the foreground ?"], "prompt": "The {}'s legs are in the foreground."}, {"index": 496, "image_id": 2380480, "entity": "dog", "caption": "The dog's nose is black. ", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black. "}, {"index": 497, "image_id": 2380480, "entity": "dog", "caption": "the dog has an eye", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 498, "image_id": 2380480, "entity": "dog", "caption": "the dog has a tongue", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "the {} has a tongue"}, {"index": 499, "image_id": 2380480, "entity": "dog", "caption": "the dog has a long ear", "question": ["is there the dog ?", "is there a long ear ?"], "prompt": "the {} has a long ear"}, {"index": 500, "image_id": 2380237, "entity": "dog", "caption": "the dog has its mouth open", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 501, "image_id": 2380237, "entity": "dog", "caption": "the dog has a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar"}, {"index": 502, "image_id": 2380237, "entity": "dog", "caption": "the dog's collar is blue", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is blue"}, {"index": 503, "image_id": 2380237, "entity": "dog", "caption": "the dog has a pointy ear", "question": ["is there the dog ?", "is there a pointy ear ?"], "prompt": "the {} has a pointy ear"}, {"index": 504, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy ears", "question": ["is there dog ?", "are there pointy ears ?"], "prompt": "{} has pointy ears"}, {"index": 505, "image_id": 2380237, "entity": "dog", "caption": "dog has short legs", "question": ["is there dog ?", "are there short legs ?"], "prompt": "{} has short legs"}, {"index": 506, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy teeth", "question": ["is there dog ?", "are there pointy teeth ?"], "prompt": "{} has pointy teeth"}, {"index": 507, "image_id": 2380237, "entity": "dog", "caption": "the dog is attempting to catch a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is attempting to catch a frisbee"}, {"index": 508, "image_id": 2380237, "entity": "dog", "caption": "the dog is down on his \"knees\"", "question": ["is there the dog ?", "are there his \"knees ?"], "prompt": "the {} is down on his \"knees\""}, {"index": 509, "image_id": 2380237, "entity": "dog", "caption": "dog's mouth wide open", "question": [], "prompt": "{}'s mouth wide open"}, {"index": 510, "image_id": 2380220, "entity": "dog", "caption": "dog is laying on stuffed animal ", "question": ["is there dog ?", "is there stuffed animal ?"], "prompt": "{} is laying on stuffed animal "}, {"index": 511, "image_id": 2380220, "entity": "dog", "caption": "dogs ear is black ", "question": ["are there dogs ?"], "prompt": "{}s ear is black "}, {"index": 512, "image_id": 2379710, "entity": "dog", "caption": "water splashing next to dog", "question": ["is there dog ?"], "prompt": "water splashing next to {}"}, {"index": 513, "image_id": 2379519, "entity": "dog", "caption": "The dog has it's tongue out.", "question": ["is there the dog ?", "is there tongue ?"], "prompt": "The {} has it's tongue out."}, {"index": 514, "image_id": 2379519, "entity": "dog", "caption": "The dog has brown eyes.", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes."}, {"index": 515, "image_id": 2379470, "entity": "dog", "caption": "The dog has a brown spot over one eye.", "question": ["is there the dog ?", "is there a brown spot ?", "is there one eye ?"], "prompt": "The {} has a brown spot over one eye."}, {"index": 516, "image_id": 2379470, "entity": "dog", "caption": "The dog has a spotted ear.", "question": ["is there the dog ?", "is there a spotted ear ?"], "prompt": "The {} has a spotted ear."}, {"index": 517, "image_id": 2379470, "entity": "dog", "caption": "The dog has a short tail.", "question": ["is there the dog ?", "is there a short tail ?"], "prompt": "The {} has a short tail."}, {"index": 518, "image_id": 2379470, "entity": "dog", "caption": "The dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar."}, {"index": 519, "image_id": 2379470, "entity": "dog", "caption": "The dog has a closed mouth.", "question": ["is there the dog ?", "is there a closed mouth ?"], "prompt": "The {} has a closed mouth."}, {"index": 520, "image_id": 2378890, "entity": "dog", "caption": "The dog has a chain collar.", "question": ["is there the dog ?", "is there a chain collar ?"], "prompt": "The {} has a chain collar."}, {"index": 521, "image_id": 2378890, "entity": "dog", "caption": "The dog is playing with the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee."}, {"index": 522, "image_id": 2378872, "entity": "dog", "caption": "dog has grey fur", "question": ["is there dog ?"], "prompt": "{} has grey fur"}, {"index": 523, "image_id": 2378872, "entity": "dog", "caption": "other dog has black fur", "question": ["is there other dog ?", "is there black fur ?"], "prompt": "other {} has black fur"}, {"index": 524, "image_id": 2378872, "entity": "dog", "caption": "other dog has brown face", "question": ["is there other dog ?", "is there brown face ?"], "prompt": "other {} has brown face"}, {"index": 525, "image_id": 2378872, "entity": "dog", "caption": "nose of the dog with mouth closed", "question": ["is there nose ?", "is there the dog ?", "is there mouth ?"], "prompt": "nose of the {} with mouth closed"}, {"index": 526, "image_id": 2378872, "entity": "dog", "caption": "eye of the dog with mouth shut", "question": ["is there eye ?", "is there the dog ?", "is there mouth ?"], "prompt": "eye of the {} with mouth shut"}, {"index": 527, "image_id": 2378738, "entity": "dog", "caption": "the dog's tongue is sticking out", "question": ["is there the dog's tongue ?"], "prompt": "the {}'s tongue is sticking out"}, {"index": 528, "image_id": 2378738, "entity": "dog", "caption": "the dog is wearing a harness", "question": ["is there the dog ?", "is there a harness ?"], "prompt": "the {} is wearing a harness"}, {"index": 529, "image_id": 2378738, "entity": "dog", "caption": "the dog has whiskers ", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers "}, {"index": 530, "image_id": 2378738, "entity": "dog", "caption": "the dog's collar has a silver tag", "question": ["is there the dog's collar ?", "is there a silver tag ?"], "prompt": "the {}'s collar has a silver tag"}, {"index": 531, "image_id": 2378738, "entity": "dog", "caption": "the dog has teeth", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "the {} has teeth"}, {"index": 532, "image_id": 2378738, "entity": "dog", "caption": "the dogs curved tail", "question": ["are there the dogs ?", "is there tail ?"], "prompt": "the {}s curved tail"}, {"index": 533, "image_id": 2378738, "entity": "dog", "caption": "the dog collar is dark brown", "question": ["is there the dog collar ?"], "prompt": "the {} collar is dark brown"}, {"index": 534, "image_id": 2378738, "entity": "dog", "caption": "the dog`s mouth is open", "question": ["is there the dog`s mouth ?"], "prompt": "the {}`s mouth is open"}, {"index": 535, "image_id": 2378738, "entity": "dog", "caption": "the dog`s neck is white", "question": ["is there the dog`s neck ?"], "prompt": "the {}`s neck is white"}, {"index": 536, "image_id": 2378738, "entity": "dog", "caption": "the dog`s face is multi colored", "question": ["is there the dog`s face ?"], "prompt": "the {}`s face is multi colored"}, {"index": 537, "image_id": 2378013, "entity": "dog", "caption": "paws of dog are black", "question": ["are there paws ?", "is there dog ?"], "prompt": "paws of {} are black"}, {"index": 538, "image_id": 2378013, "entity": "dog", "caption": "hair eyes of dog are big", "question": ["are there hair eyes ?", "is there dog ?"], "prompt": "hair eyes of {} are big"}, {"index": 539, "image_id": 2378013, "entity": "dog", "caption": "dog is wearing a bandana", "question": ["is there dog ?", "is there a bandana ?"], "prompt": "{} is wearing a bandana"}, {"index": 540, "image_id": 2377946, "entity": "dog", "caption": "The dog is on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "The {} is on the bed"}, {"index": 541, "image_id": 2377946, "entity": "dog", "caption": "The dog has a red blanket", "question": ["is there the dog ?", "is there a red blanket ?"], "prompt": "The {} has a red blanket"}, {"index": 542, "image_id": 2377695, "entity": "dog", "caption": "the dogs pink tounge", "question": ["are there the dogs ?"], "prompt": "the {}s pink tounge"}, {"index": 543, "image_id": 2377541, "entity": "dog", "caption": "a dogs ear with black spots", "question": ["are there a dogs ?", "are there black spots ?"], "prompt": "a {}s ear with black spots"}, {"index": 544, "image_id": 2377541, "entity": "dog", "caption": "wet dog standing in pond", "question": ["is there wet dog ?", "is there pond ?"], "prompt": "wet {} standing in pond"}, {"index": 545, "image_id": 2377276, "entity": "dog", "caption": "fur of dog is long", "question": ["is there fur ?", "is there dog ?"], "prompt": "fur of {} is long"}, {"index": 546, "image_id": 2377096, "entity": "dog", "caption": "the dog's snout is black", "question": ["is there the dog's snout ?"], "prompt": "the {}'s snout is black"}, {"index": 547, "image_id": 2377096, "entity": "dog", "caption": "the dog has a leather collar", "question": ["is there the dog ?", "is there a leather collar ?"], "prompt": "the {} has a leather collar"}, {"index": 548, "image_id": 2377096, "entity": "dog", "caption": "the dog has black ears ", "question": ["is there the dog ?", "are there black ears ?"], "prompt": "the {} has black ears "}, {"index": 549, "image_id": 2376453, "entity": "dog", "caption": "the dog has an orange collar ", "question": ["is there the dog ?", "is there an orange collar ?"], "prompt": "the {} has an orange collar "}, {"index": 550, "image_id": 2376453, "entity": "dog", "caption": "this is an ear of a dog", "question": ["is there an ear ?", "is there a dog ?"], "prompt": "this is an ear of a {}"}, {"index": 551, "image_id": 2376453, "entity": "dog", "caption": "this is a tongue of a dog", "question": ["is there a tongue ?", "is there a dog ?"], "prompt": "this is a tongue of a {}"}, {"index": 552, "image_id": 2376453, "entity": "dog", "caption": "two dogs leashed to post", "question": ["are there two dogs ?"], "prompt": "two {}s leashed to post"}, {"index": 553, "image_id": 2376453, "entity": "dog", "caption": "two dogs tied to a tree", "question": ["are there two dogs ?", "is there a tree ?"], "prompt": "two {}s tied to a tree"}, {"index": 554, "image_id": 2376406, "entity": "dog", "caption": "dog has it's mouth open", "question": ["is there dog ?"], "prompt": "{} has it's mouth open"}, {"index": 555, "image_id": 2376406, "entity": "dog", "caption": "dog is leaning against the sofa", "question": ["is there dog ?", "is there the sofa ?"], "prompt": "{} is leaning against the sofa"}, {"index": 556, "image_id": 2376406, "entity": "dog", "caption": "dog's teeth are white", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are white"}, {"index": 557, "image_id": 2376134, "entity": "dog", "caption": "A dog is smelling a cat", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} is smelling a cat"}, {"index": 558, "image_id": 2376134, "entity": "dog", "caption": "An old dog is greeting the new cat", "question": ["is there an old dog ?", "is there the new cat ?"], "prompt": "An old {} is greeting the new cat"}, {"index": 559, "image_id": 2376134, "entity": "dog", "caption": "A cat is friends with a dog", "question": ["is there a cat ?", "are there friends ?", "is there a dog ?"], "prompt": "A cat is friends with a {}"}, {"index": 560, "image_id": 2376134, "entity": "dog", "caption": "dog has two ears.", "question": ["is there dog ?", "are there two ears ?"], "prompt": "{} has two ears."}, {"index": 561, "image_id": 2376108, "entity": "dog", "caption": "dog has purple collar", "question": ["is there dog ?", "is there purple collar ?"], "prompt": "{} has purple collar"}, {"index": 562, "image_id": 2376108, "entity": "dog", "caption": "dog has brown nose", "question": ["is there dog ?", "is there brown nose ?"], "prompt": "{} has brown nose"}, {"index": 563, "image_id": 2376108, "entity": "dog", "caption": "dog has light brown hair", "question": ["is there dog ?", "is there light brown hair ?"], "prompt": "{} has light brown hair"}, {"index": 564, "image_id": 2376108, "entity": "dog", "caption": "dog has dark brown ears", "question": ["is there dog ?", "are there dark brown ears ?"], "prompt": "{} has dark brown ears"}, {"index": 565, "image_id": 2375658, "entity": "dog", "caption": "Sad looking dog face", "question": ["is there sad looking dog face ?"], "prompt": "Sad looking {} face"}, {"index": 566, "image_id": 2375561, "entity": "dog", "caption": "The dog is wearing a blue harness", "question": ["is there the dog ?", "is there a blue harness ?"], "prompt": "The {} is wearing a blue harness"}, {"index": 567, "image_id": 2375561, "entity": "dog", "caption": "The dog is standing on a chair.", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} is standing on a chair."}, {"index": 568, "image_id": 2375451, "entity": "dog", "caption": "the dogs nose is black ", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black "}, {"index": 569, "image_id": 2375428, "entity": "dog", "caption": "The dog is looking at the camera", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera"}, {"index": 570, "image_id": 2375428, "entity": "dog", "caption": "The dog has long fur", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur"}, {"index": 571, "image_id": 2374930, "entity": "dog", "caption": "baby is leaning on a dog", "question": ["is there baby ?", "is there a dog ?"], "prompt": "baby is leaning on a {}"}, {"index": 572, "image_id": 2374930, "entity": "dog", "caption": "nose of dog is brown ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is brown "}, {"index": 573, "image_id": 2374268, "entity": "dog", "caption": "the dog's leg hanging over the sofa", "question": ["is there the dog's leg ?", "is there the sofa ?"], "prompt": "the {}'s leg hanging over the sofa"}, {"index": 574, "image_id": 2374268, "entity": "dog", "caption": "dog has face buried in the couch", "question": ["is there dog ?", "is there face ?", "is there the couch ?"], "prompt": "{} has face buried in the couch"}, {"index": 575, "image_id": 2374132, "entity": "dog", "caption": "dog has light brown paws", "question": ["is there dog ?", "are there light brown paws ?"], "prompt": "{} has light brown paws"}, {"index": 576, "image_id": 2374013, "entity": "dog", "caption": "dog's ears are light brown", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are light brown"}, {"index": 577, "image_id": 2373955, "entity": "dog", "caption": "a brown hat the dog is wearing", "question": ["is there a brown hat ?", "is there the dog ?"], "prompt": "a brown hat the {} is wearing"}, {"index": 578, "image_id": 2373955, "entity": "dog", "caption": "black dog kissing man", "question": ["is there black dog kissing man ?"], "prompt": "black {} kissing man"}, {"index": 579, "image_id": 2373533, "entity": "dog", "caption": "eyes of dog are big", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are big"}, {"index": 580, "image_id": 2373533, "entity": "dog", "caption": "mouth of dog is touching a rail", "question": ["is there mouth ?", "is there dog ?", "is there a rail ?"], "prompt": "mouth of {} is touching a rail"}, {"index": 581, "image_id": 2373340, "entity": "dog", "caption": "dog is wearing pink collar", "question": ["is there dog ?", "is there pink collar ?"], "prompt": "{} is wearing pink collar"}, {"index": 582, "image_id": 2373340, "entity": "dog", "caption": "dogs nose is brown", "question": ["are there dogs nose ?"], "prompt": "{}s nose is brown"}, {"index": 583, "image_id": 2373340, "entity": "dog", "caption": "dog right ear is brown", "question": ["is there dog right ear ?"], "prompt": "{} right ear is brown"}, {"index": 584, "image_id": 2373155, "entity": "dog", "caption": "dogs has a chain on his neck", "question": ["are there dogs ?", "is there a chain ?", "is there his neck ?"], "prompt": "{}s has a chain on his neck"}, {"index": 585, "image_id": 2373141, "entity": "dog", "caption": "This is a man with a dog", "question": ["is there a man ?", "is there a dog ?"], "prompt": "This is a man with a {}"}, {"index": 586, "image_id": 2373109, "entity": "dog", "caption": "the dog is on the ground ", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground "}, {"index": 587, "image_id": 2373073, "entity": "dog", "caption": "dog is wearing a hat ", "question": ["is there dog ?", "is there a hat ?"], "prompt": "{} is wearing a hat "}, {"index": 588, "image_id": 2372988, "entity": "dog", "caption": "Water drips down dog's face.", "question": ["is there water ?", "is there dog's face ?"], "prompt": "Water drips down {}'s face."}, {"index": 589, "image_id": 2372988, "entity": "dog", "caption": "dog is wearing a chain", "question": ["is there dog ?", "is there a chain ?"], "prompt": "{} is wearing a chain"}, {"index": 590, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A {} is riding in a car"}, {"index": 591, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in the passenger seat", "question": ["is there a dog ?", "is there the passenger seat ?"], "prompt": "A {} is riding in the passenger seat"}, {"index": 592, "image_id": 2372618, "entity": "dog", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A {} is in its master's car"}, {"index": 593, "image_id": 2372618, "entity": "dog", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} likes riding in a car"}, {"index": 594, "image_id": 2372618, "entity": "dog", "caption": "The dog is looking out the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is looking out the window"}, {"index": 595, "image_id": 2372586, "entity": "dog", "caption": "The dog is sitting on a bench.", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is sitting on a bench."}, {"index": 596, "image_id": 2372586, "entity": "dog", "caption": "dog is wearing a blue harness", "question": ["is there dog ?", "is there a blue harness ?"], "prompt": "{} is wearing a blue harness"}, {"index": 597, "image_id": 2372586, "entity": "dog", "caption": "the dog has a white belly", "question": ["is there the dog ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 598, "image_id": 2372549, "entity": "dog", "caption": "the dog looks sleepy", "question": ["is there the dog ?"], "prompt": "the {} looks sleepy"}, {"index": 599, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is laying on a stuffed animal"}, {"index": 600, "image_id": 2372549, "entity": "dog", "caption": "the dog is pale tan in color", "question": ["is there the dog ?", "is there pale tan ?", "is there color ?"], "prompt": "the {} is pale tan in color"}, {"index": 601, "image_id": 2372549, "entity": "dog", "caption": "stuffed animal dog is sleeping on", "question": ["is there stuffed animal dog ?"], "prompt": "stuffed animal {} is sleeping on"}, {"index": 602, "image_id": 2372549, "entity": "dog", "caption": "red bed dog is sleeping on", "question": ["is there red bed dog ?"], "prompt": "red bed {} is sleeping on"}, {"index": 603, "image_id": 2372549, "entity": "dog", "caption": "the cushion under the dog is red", "question": ["is there the cushion ?", "is there the dog ?"], "prompt": "the cushion under the {} is red"}, {"index": 604, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a cushion", "question": ["is there the dog ?", "is there a cushion ?"], "prompt": "the {} is laying on a cushion"}, {"index": 605, "image_id": 2372549, "entity": "dog", "caption": "The dog ear on the right", "question": ["is there the dog ear ?", "is there the right ?"], "prompt": "The {} ear on the right"}, {"index": 606, "image_id": 2372293, "entity": "dog", "caption": "Dog leash on the beige dog", "question": ["is there dog ?", "is there the beige dog ?"], "prompt": "Dog leash on the beige {}"}, {"index": 607, "image_id": 2372293, "entity": "dog", "caption": "dog has white teeth", "question": ["is there dog ?", "are there white teeth ?"], "prompt": "{} has white teeth"}, {"index": 608, "image_id": 2372293, "entity": "dog", "caption": "dog has black under his lip", "question": ["is there dog ?", "is there his lip ?"], "prompt": "{} has black under his lip"}, {"index": 609, "image_id": 2372091, "entity": "dog", "caption": "wooden bench dog is sitting on", "question": ["is there wooden bench dog ?"], "prompt": "wooden bench {} is sitting on"}, {"index": 610, "image_id": 2371865, "entity": "dog", "caption": "Flowered leash going to the dog", "question": ["is there flowered leash ?", "is there the dog ?"], "prompt": "Flowered leash going to the {}"}, {"index": 611, "image_id": 2371865, "entity": "dog", "caption": "dog looks off into distance", "question": ["is there dog ?", "is there distance ?"], "prompt": "{} looks off into distance"}, {"index": 612, "image_id": 2371865, "entity": "dog", "caption": "dog wears sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} wears sweater"}, {"index": 613, "image_id": 2371865, "entity": "dog", "caption": "dog sits next to bicycle", "question": ["is there dog ?", "is there bicycle ?"], "prompt": "{} sits next to bicycle"}, {"index": 614, "image_id": 2371865, "entity": "dog", "caption": "dog sits on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} sits on sidewalk"}, {"index": 615, "image_id": 2371865, "entity": "dog", "caption": "sweater is on dog", "question": ["is there dog ?"], "prompt": "sweater is on {}"}, {"index": 616, "image_id": 2371865, "entity": "dog", "caption": "dog is inside sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is inside sweater"}, {"index": 617, "image_id": 2371865, "entity": "dog", "caption": "The dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash"}, {"index": 618, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing near a bicycle", "question": ["is there the white dog ?", "is there a bicycle ?"], "prompt": "The white {} is standing near a bicycle"}, {"index": 619, "image_id": 2371865, "entity": "dog", "caption": "The white dog in the sweater has a bushy tail", "question": ["is there the white dog ?", "is there the sweater ?", "is there a bushy tail ?"], "prompt": "The white {} in the sweater has a bushy tail"}, {"index": 620, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing on the sidewalk", "question": ["is there the white dog ?", "is there the sidewalk ?"], "prompt": "The white {} is standing on the sidewalk"}, {"index": 621, "image_id": 2371612, "entity": "dog", "caption": "the dog is using the laptop", "question": ["is there the dog ?", "is there the laptop ?"], "prompt": "the {} is using the laptop"}, {"index": 622, "image_id": 2371612, "entity": "dog", "caption": "A dog with it's paws on a laptop.", "question": ["is there a dog ?", "are there it's paws ?", "is there a laptop ?"], "prompt": "A {} with it's paws on a laptop."}, {"index": 623, "image_id": 2371612, "entity": "dog", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The {} is using the computer "}, {"index": 624, "image_id": 2371612, "entity": "dog", "caption": "The nose of the dog is black ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "The nose of the {} is black "}, {"index": 625, "image_id": 2371612, "entity": "dog", "caption": "The eye of the dog is brown ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "The eye of the {} is brown "}, {"index": 626, "image_id": 2371520, "entity": "dog", "caption": "carpet dog is playing on", "question": ["is there carpet dog ?"], "prompt": "carpet {} is playing on"}, {"index": 627, "image_id": 2371249, "entity": "dog", "caption": "A dog has three colors of fur.", "question": ["is there a dog ?", "are there three colors ?", "is there fur ?"], "prompt": "A {} has three colors of fur."}, {"index": 628, "image_id": 2371249, "entity": "dog", "caption": "A dog is wearing a scarf around the neck.", "question": ["is there a dog ?", "is there a scarf ?", "is there the neck ?"], "prompt": "A {} is wearing a scarf around the neck."}, {"index": 629, "image_id": 2371249, "entity": "dog", "caption": "A woman is sitting close to a dog.", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman is sitting close to a {}."}, {"index": 630, "image_id": 2371169, "entity": "dog", "caption": "The dog has a frisbee in mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there mouth ?"], "prompt": "The {} has a frisbee in mouth."}, {"index": 631, "image_id": 2371169, "entity": "dog", "caption": "the dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar."}, {"index": 632, "image_id": 2371169, "entity": "dog", "caption": "The back left leg of a dog", "question": ["is there the back left leg ?", "is there a dog ?"], "prompt": "The back left leg of a {}"}, {"index": 633, "image_id": 2371169, "entity": "dog", "caption": "The front left leg of a dog", "question": ["is there the front left leg ?", "is there a dog ?"], "prompt": "The front left leg of a {}"}, {"index": 634, "image_id": 2371119, "entity": "dog", "caption": "the dog is laying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is laying on the bed"}, {"index": 635, "image_id": 2370667, "entity": "dog", "caption": "the dogs nail ", "question": ["are there the dogs ?"], "prompt": "the {}s nail "}, {"index": 636, "image_id": 2370647, "entity": "dog", "caption": "The dog has a serious face", "question": ["is there the dog ?", "is there a serious face ?"], "prompt": "The {} has a serious face"}, {"index": 637, "image_id": 2370647, "entity": "dog", "caption": "The dog has white whiskers.", "question": ["is there the dog ?", "are there white whiskers ?"], "prompt": "The {} has white whiskers."}, {"index": 638, "image_id": 2370647, "entity": "dog", "caption": "The dog has a brown colar.", "question": ["is there the dog ?", "is there a brown colar ?"], "prompt": "The {} has a brown colar."}, {"index": 639, "image_id": 2370508, "entity": "dog", "caption": "eye of dog is black ", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black "}, {"index": 640, "image_id": 2370508, "entity": "dog", "caption": "chest of dog is white", "question": ["is there chest ?", "is there dog ?"], "prompt": "chest of {} is white"}, {"index": 641, "image_id": 2370508, "entity": "dog", "caption": "dog has dog tags", "question": ["is there dog ?", "are there dog tags ?"], "prompt": "{} has {} tags"}, {"index": 642, "image_id": 2370342, "entity": "dog", "caption": "dog's head is on the pillow", "question": ["is there dog's head ?", "is there the pillow ?"], "prompt": "{}'s head is on the pillow"}, {"index": 643, "image_id": 2370107, "entity": "dog", "caption": "bottom left tooth of dog", "question": ["is there bottom ?", "is there tooth ?", "is there dog ?"], "prompt": "bottom left tooth of {}"}, {"index": 644, "image_id": 2369919, "entity": "dog", "caption": "dogs nose is black ", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black "}, {"index": 645, "image_id": 2369919, "entity": "dog", "caption": "the dog is laying down on a shoe ", "question": ["is there the dog ?", "is there a shoe ?"], "prompt": "the {} is laying down on a shoe "}, {"index": 646, "image_id": 2369591, "entity": "dog", "caption": "the dog has a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} has a leash"}, {"index": 647, "image_id": 2369591, "entity": "dog", "caption": "The dog's eye looking ahead", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye looking ahead"}, {"index": 648, "image_id": 2369270, "entity": "dog", "caption": "Frisbee is in the dog's mouth", "question": ["is there the dog's mouth ?"], "prompt": "Frisbee is in the {}'s mouth"}, {"index": 649, "image_id": 2368889, "entity": "dog", "caption": "Big brown dog spiked pink collar.", "question": ["is there big brown dog ?", "is there pink collar ?"], "prompt": "Big brown {} spiked pink collar."}, {"index": 650, "image_id": 2368858, "entity": "dog", "caption": "dog is laying on the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is laying on the ground"}, {"index": 651, "image_id": 2368858, "entity": "dog", "caption": "dog with tongue sticking out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue sticking out"}, {"index": 652, "image_id": 2368858, "entity": "dog", "caption": "the dog has a front paw", "question": ["is there the dog ?", "is there a front paw ?"], "prompt": "the {} has a front paw"}, {"index": 653, "image_id": 2368858, "entity": "dog", "caption": "the dog has nails", "question": ["is there the dog ?", "are there nails ?"], "prompt": "the {} has nails"}, {"index": 654, "image_id": 2368858, "entity": "dog", "caption": "the dog is lying down", "question": ["is there the dog ?"], "prompt": "the {} is lying down"}, {"index": 655, "image_id": 2368714, "entity": "dog", "caption": "dog curled up with a teddy bear", "question": ["is there dog ?"], "prompt": "{} curled up with a teddy bear"}, {"index": 656, "image_id": 2368714, "entity": "dog", "caption": "ear of dog is black ", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is black "}, {"index": 657, "image_id": 2368054, "entity": "dog", "caption": "dog has a purple leash", "question": ["is there dog ?", "is there a purple leash ?"], "prompt": "{} has a purple leash"}, {"index": 658, "image_id": 2368054, "entity": "dog", "caption": "this dog is wearing a red harness", "question": ["is there this dog ?", "is there a red harness ?"], "prompt": "this {} is wearing a red harness"}, {"index": 659, "image_id": 2367865, "entity": "dog", "caption": "The dog's eyes are yellow", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are yellow"}, {"index": 660, "image_id": 2367488, "entity": "dog", "caption": "the dog is inside a van", "question": ["is there the dog ?", "is there a van ?"], "prompt": "the {} is inside a van"}, {"index": 661, "image_id": 2367488, "entity": "dog", "caption": "the dog tag hanging", "question": ["is there the dog tag ?"], "prompt": "the {} tag hanging"}, {"index": 662, "image_id": 2367488, "entity": "dog", "caption": "The dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar"}, {"index": 663, "image_id": 2367488, "entity": "dog", "caption": "navy blanket dog is laying on", "question": ["is there navy blanket dog ?"], "prompt": "navy blanket {} is laying on"}, {"index": 664, "image_id": 2367488, "entity": "dog", "caption": "The dog's pink tongue is very long", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue is very long"}, {"index": 665, "image_id": 2367488, "entity": "dog", "caption": "A large tongue hanging out of the dog's mouth", "question": ["is there a large tongue ?", "is there the dog's mouth ?"], "prompt": "A large tongue hanging out of the {}'s mouth"}, {"index": 666, "image_id": 2367488, "entity": "dog", "caption": "The dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 667, "image_id": 2367433, "entity": "dog", "caption": "pizza that dog is eating", "question": ["is there pizza ?", "is there that dog ?"], "prompt": "pizza that {} is eating"}, {"index": 668, "image_id": 2367433, "entity": "dog", "caption": "steel grate that dog is standing on", "question": ["is there steel grate ?", "is there that dog ?"], "prompt": "steel grate that {} is standing on"}, {"index": 669, "image_id": 2367152, "entity": "dog", "caption": "mouth of dog is open", "question": ["is there mouth ?", "is there dog ?"], "prompt": "mouth of {} is open"}, {"index": 670, "image_id": 2366422, "entity": "dog", "caption": "dog tail held high", "question": ["is there dog tail ?"], "prompt": "{} tail held high"}, {"index": 671, "image_id": 2366422, "entity": "dog", "caption": "a dog that has brown eyes", "question": ["is there a dog ?", "are there brown eyes ?"], "prompt": "a {} that has brown eyes"}, {"index": 672, "image_id": 2366422, "entity": "dog", "caption": "the dog has a brown ear", "question": ["is there the dog ?", "is there a brown ear ?"], "prompt": "the {} has a brown ear"}, {"index": 673, "image_id": 2366422, "entity": "dog", "caption": "this dog has eyes", "question": ["is there this dog ?", "are there eyes ?"], "prompt": "this {} has eyes"}, {"index": 674, "image_id": 2366422, "entity": "dog", "caption": "this dog has ears", "question": ["is there this dog ?", "are there ears ?"], "prompt": "this {} has ears"}, {"index": 675, "image_id": 2366422, "entity": "dog", "caption": "this dog's nose is black", "question": ["is there this dog's nose ?"], "prompt": "this {}'s nose is black"}, {"index": 676, "image_id": 2366422, "entity": "dog", "caption": "this dog has a long tail", "question": ["is there this dog ?", "is there a long tail ?"], "prompt": "this {} has a long tail"}, {"index": 677, "image_id": 2365888, "entity": "dog", "caption": "the dog has a small tail", "question": ["is there the dog ?", "is there a small tail ?"], "prompt": "the {} has a small tail"}, {"index": 678, "image_id": 2365787, "entity": "dog", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th e{} is in the car "}, {"index": 679, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking outside the window"}, {"index": 680, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside ", "question": ["is there the dog ?"], "prompt": "the {} is looking outside "}, {"index": 681, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking through the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking through the window"}, {"index": 682, "image_id": 2365756, "entity": "dog", "caption": "the doghas a seat belt on ", "question": ["is there a seat belt ?"], "prompt": "the {}has a seat belt on "}, {"index": 683, "image_id": 2365756, "entity": "dog", "caption": "Black seatbelt holding back a dog. ", "question": ["is there black seatbelt ?", "is there a dog ?"], "prompt": "Black seatbelt holding back a {}. "}, {"index": 684, "image_id": 2365712, "entity": "dog", "caption": "the dog is licking the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is licking the cake"}, {"index": 685, "image_id": 2365044, "entity": "dog", "caption": "dog is wearing a bow tie ", "question": ["is there dog ?", "is there a bow tie ?"], "prompt": "{} is wearing a bow tie "}, {"index": 686, "image_id": 2364811, "entity": "dog", "caption": "The pillow the dog is laying on.", "question": ["is there the pillow ?", "is there the dog ?"], "prompt": "The pillow the {} is laying on."}, {"index": 687, "image_id": 2364811, "entity": "dog", "caption": "the dog is getting ready for bed", "question": ["is there the dog ?", "is there bed ?"], "prompt": "the {} is getting ready for bed"}, {"index": 688, "image_id": 2364811, "entity": "dog", "caption": "this dog looks comfortable in bed", "question": ["is there this dog ?", "is there bed ?"], "prompt": "this {} looks comfortable in bed"}, {"index": 689, "image_id": 2364811, "entity": "dog", "caption": "dog has hazel eyes", "question": ["is there dog ?", "are there hazel eyes ?"], "prompt": "{} has hazel eyes"}, {"index": 690, "image_id": 2364543, "entity": "dog", "caption": "dog is holding a ball", "question": ["is there dog ?", "is there a ball ?"], "prompt": "{} is holding a ball"}, {"index": 691, "image_id": 2364543, "entity": "dog", "caption": "black dog with paws forward looking at camera", "question": ["is there black dog ?", "are there paws ?", "is there camera ?"], "prompt": "black {} with paws forward looking at camera"}, {"index": 692, "image_id": 2364543, "entity": "dog", "caption": "dog has a ball inside his mouth", "question": ["is there dog ?", "is there a ball ?", "is there his mouth ?"], "prompt": "{} has a ball inside his mouth"}, {"index": 693, "image_id": 2364543, "entity": "dog", "caption": "snout of dog is color salt and pepper", "question": ["is there snout ?", "is there dog ?", "is there color salt ?", "is there pepper ?"], "prompt": "snout of {} is color salt and pepper"}, {"index": 694, "image_id": 2364504, "entity": "dog", "caption": "The dog is wearing a purple collar.", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "The {} is wearing a purple collar."}, {"index": 695, "image_id": 2364504, "entity": "dog", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One {} is sitting in the car."}, {"index": 696, "image_id": 2364448, "entity": "dog", "caption": "the dog has a paw", "question": ["is there the dog ?", "is there a paw ?"], "prompt": "the {} has a paw"}, {"index": 697, "image_id": 2364244, "entity": "dog", "caption": "the dog is wearing a tiara", "question": ["is there the dog ?", "is there a tiara ?"], "prompt": "the {} is wearing a tiara"}, {"index": 698, "image_id": 2364208, "entity": "dog", "caption": "the cow is looking at the dog", "question": ["is there the cow ?", "is there the dog ?"], "prompt": "the cow is looking at the {}"}, {"index": 699, "image_id": 2363392, "entity": "dog", "caption": "a dog with his tooth sticking out", "question": ["is there a dog ?", "is there his tooth ?"], "prompt": "a {} with his tooth sticking out"}, {"index": 700, "image_id": 2363392, "entity": "dog", "caption": "green couch cushion dog is sleeping on", "question": ["is there green couch cushion dog ?"], "prompt": "green couch cushion {} is sleeping on"}, {"index": 701, "image_id": 2363392, "entity": "dog", "caption": "dog lip pulled up against cushion", "question": ["is there dog lip ?", "is there cushion ?"], "prompt": "{} lip pulled up against cushion"}, {"index": 702, "image_id": 2363392, "entity": "dog", "caption": "dog's tongue sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue sticking out"}, {"index": 703, "image_id": 2363350, "entity": "dog", "caption": "A dog is laying in his bed", "question": ["is there a dog ?", "is there his bed ?"], "prompt": "A {} is laying in his bed"}, {"index": 704, "image_id": 2363350, "entity": "dog", "caption": "The dog is resting on a pillow", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is resting on a pillow"}, {"index": 705, "image_id": 2362763, "entity": "dog", "caption": "dog's teeth are showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are showing"}, {"index": 706, "image_id": 2362553, "entity": "dog", "caption": "dog with head tilted up", "question": ["is there dog ?", "is there head ?"], "prompt": "{} with head tilted up"}, {"index": 707, "image_id": 2362553, "entity": "dog", "caption": "the dog has a right eye", "question": ["is there the dog ?", "is there a right eye ?"], "prompt": "the {} has a right eye"}, {"index": 708, "image_id": 2362525, "entity": "dog", "caption": "The dog is in the bag", "question": ["is there the dog ?", "is there the bag ?"], "prompt": "The {} is in the bag"}, {"index": 709, "image_id": 2362525, "entity": "dog", "caption": "The bag is holding the dog", "question": ["is there the bag ?", "is there the dog ?"], "prompt": "The bag is holding the {}"}, {"index": 710, "image_id": 2362525, "entity": "dog", "caption": "The small backpack holds a dog", "question": ["is there the small backpack ?", "is there a dog ?"], "prompt": "The small backpack holds a {}"}, {"index": 711, "image_id": 2362525, "entity": "dog", "caption": "The dog is turning its head", "question": ["is there the dog ?", "is there its head ?"], "prompt": "The {} is turning its head"}, {"index": 712, "image_id": 2362525, "entity": "dog", "caption": "this is a \"doggy pack\"", "question": ["is there a \"doggy pack ?"], "prompt": "this is a \"{}gy pack\""}, {"index": 713, "image_id": 2362323, "entity": "dog", "caption": "dog is wearing chain collar", "question": ["is there dog ?", "is there chain collar ?"], "prompt": "{} is wearing chain collar"}, {"index": 714, "image_id": 2362323, "entity": "dog", "caption": "the dog is looking at the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is looking at the cake"}, {"index": 715, "image_id": 2362323, "entity": "dog", "caption": "the dog looks sad", "question": ["is there the dog ?"], "prompt": "the {} looks sad"}, {"index": 716, "image_id": 2362323, "entity": "dog", "caption": "the dog lays head on arm", "question": ["is there the dog ?", "is there head ?", "is there arm ?"], "prompt": "the {} lays head on arm"}, {"index": 717, "image_id": 2362323, "entity": "dog", "caption": "the dog has spots", "question": ["is there the dog ?", "are there spots ?"], "prompt": "the {} has spots"}, {"index": 718, "image_id": 2362323, "entity": "dog", "caption": "eye of dog is black", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black"}, {"index": 719, "image_id": 2362196, "entity": "dog", "caption": " a dog with it's tongue sticking out", "question": ["is there a dog ?", "is there tongue ?"], "prompt": " a {} with it's tongue sticking out"}, {"index": 720, "image_id": 2362106, "entity": "dog", "caption": "this is a dog ", "question": ["is there a dog ?"], "prompt": "this is a {} "}, {"index": 721, "image_id": 2362106, "entity": "dog", "caption": "the dog is lying down on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is lying down on the floor"}, {"index": 722, "image_id": 2362106, "entity": "dog", "caption": "The dog is in somebody's house", "question": ["is there the dog ?", "is there somebody's house ?"], "prompt": "The {} is in somebody's house"}, {"index": 723, "image_id": 2362106, "entity": "dog", "caption": "The dog is laying by the door", "question": ["is there the dog ?", "is there the door ?"], "prompt": "The {} is laying by the door"}, {"index": 724, "image_id": 2362106, "entity": "dog", "caption": "The dog is guarding the house", "question": ["is there the dog ?", "is there the house ?"], "prompt": "The {} is guarding the house"}, {"index": 725, "image_id": 2362106, "entity": "dog", "caption": "The dog is awake in daytime", "question": ["is there the dog ?", "is there daytime ?"], "prompt": "The {} is awake in daytime"}, {"index": 726, "image_id": 2362106, "entity": "dog", "caption": "The dog is waiting to go outside", "question": ["is there the dog ?"], "prompt": "The {} is waiting to go outside"}, {"index": 727, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting to be let out", "question": ["is there a dog ?"], "prompt": "A {} is waiting to be let out"}, {"index": 728, "image_id": 2362106, "entity": "dog", "caption": "A dog is sleeping on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is sleeping on the floor"}, {"index": 729, "image_id": 2362106, "entity": "dog", "caption": "A dog is looking for attention", "question": ["is there a dog ?", "is there attention ?"], "prompt": "A {} is looking for attention"}, {"index": 730, "image_id": 2362106, "entity": "dog", "caption": "The dog is looking lonely", "question": ["is there the dog ?"], "prompt": "The {} is looking lonely"}, {"index": 731, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting by the door", "question": ["is there a dog ?", "is there the door ?"], "prompt": "A {} is waiting by the door"}, {"index": 732, "image_id": 2362106, "entity": "dog", "caption": "A dog is laying on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is laying on the floor"}, {"index": 733, "image_id": 2362106, "entity": "dog", "caption": "The dog is wanting to be fed", "question": ["is there the dog ?"], "prompt": "The {} is wanting to be fed"}, {"index": 734, "image_id": 2362106, "entity": "dog", "caption": "The dog is enjoying its day", "question": ["is there the dog ?", "is there its day ?"], "prompt": "The {} is enjoying its day"}, {"index": 735, "image_id": 2362106, "entity": "dog", "caption": "The dog is getting some rest", "question": ["is there the dog ?", "is there some rest ?"], "prompt": "The {} is getting some rest"}, {"index": 736, "image_id": 2362106, "entity": "dog", "caption": "The dog belongs to the home owner", "question": ["is there the dog ?", "is there the home owner ?"], "prompt": "The {} belongs to the home owner"}, {"index": 737, "image_id": 2361653, "entity": "dog", "caption": "the dog has a left eye", "question": ["is there the dog ?", "is there a left eye ?"], "prompt": "the {} has a left eye"}, {"index": 738, "image_id": 2361100, "entity": "dog", "caption": "floppy black dog ear ", "question": ["is there floppy black dog ear ?"], "prompt": "floppy black {} ear "}, {"index": 739, "image_id": 2361100, "entity": "dog", "caption": "two dog ear in different positions at same time ", "question": ["is there two dog ear ?", "are there different positions ?", "is there same time ?"], "prompt": "two {} ear in different positions at same time "}, {"index": 740, "image_id": 2361100, "entity": "dog", "caption": "The dog's left ear flopped down", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear flopped down"}, {"index": 741, "image_id": 2361100, "entity": "dog", "caption": "the dog's right ear is up", "question": ["is there the dog's right ear ?"], "prompt": "the {}'s right ear is up"}, {"index": 742, "image_id": 2361100, "entity": "dog", "caption": "the dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are open"}, {"index": 743, "image_id": 2360869, "entity": "dog", "caption": "dog is laying on dog bed", "question": ["is there dog ?", "is there dog bed ?"], "prompt": "{} is laying on {} bed"}, {"index": 744, "image_id": 2360869, "entity": "dog", "caption": "dog has small nose", "question": ["is there dog ?", "is there small nose ?"], "prompt": "{} has small nose"}, {"index": 745, "image_id": 2360869, "entity": "dog", "caption": "dog bed is beige", "question": ["is there dog bed ?"], "prompt": "{} bed is beige"}, {"index": 746, "image_id": 2360869, "entity": "dog", "caption": "dog has wavy fur", "question": ["is there dog ?", "is there wavy fur ?"], "prompt": "{} has wavy fur"}, {"index": 747, "image_id": 2360869, "entity": "dog", "caption": "dog has fluffy tail", "question": ["is there dog ?", "is there fluffy tail ?"], "prompt": "{} has fluffy tail"}, {"index": 748, "image_id": 2360725, "entity": "dog", "caption": "the dog is biting an envelope", "question": ["is there the dog ?", "is there an envelope ?"], "prompt": "the {} is biting an envelope"}, {"index": 749, "image_id": 2360725, "entity": "dog", "caption": "dog is carrying an envelope", "question": ["is there dog ?", "is there an envelope ?"], "prompt": "{} is carrying an envelope"}, {"index": 750, "image_id": 2360542, "entity": "dog", "caption": "dog has black eyes", "question": ["is there dog ?", "are there black eyes ?"], "prompt": "{} has black eyes"}, {"index": 751, "image_id": 2360542, "entity": "dog", "caption": "pomeranian dog gets a ride inside duffle bag", "question": ["is there pomeranian dog ?", "is there a ride inside duffle bag ?"], "prompt": "pomeranian {} gets a ride inside duffle bag"}, {"index": 752, "image_id": 2360357, "entity": "dog", "caption": "The front left leg of the dog.", "question": ["is there the front left leg ?", "is there the dog ?"], "prompt": "The front left leg of the {}."}, {"index": 753, "image_id": 2360357, "entity": "dog", "caption": "eyes of dog are round", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are round"}, {"index": 754, "image_id": 2360357, "entity": "dog", "caption": "head of dog is brown", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown"}, {"index": 755, "image_id": 2360357, "entity": "dog", "caption": "dog has dark eyes ", "question": ["is there dog ?", "are there dark eyes ?"], "prompt": "{} has dark eyes "}, {"index": 756, "image_id": 2360299, "entity": "dog", "caption": "dog's right ear is black", "question": ["is there dog's right ear ?"], "prompt": "{}'s right ear is black"}, {"index": 757, "image_id": 2360145, "entity": "dog", "caption": "A shadow line is behind the dogs.", "question": ["is there a shadow line ?", "are there the dogs ?"], "prompt": "A shadow line is behind the {}s."}, {"index": 758, "image_id": 2359887, "entity": "dog", "caption": "dog with his eyes shut", "question": ["is there dog ?", "are there his eyes ?"], "prompt": "{} with his eyes shut"}, {"index": 759, "image_id": 2359887, "entity": "dog", "caption": "dog is on blanket", "question": ["is there dog ?", "is there blanket ?"], "prompt": "{} is on blanket"}, {"index": 760, "image_id": 2359887, "entity": "dog", "caption": "dog has blonde hair", "question": ["is there dog ?", "is there blonde hair ?"], "prompt": "{} has blonde hair"}, {"index": 761, "image_id": 2359887, "entity": "dog", "caption": "dog has long hair on ears", "question": ["is there dog ?", "is there long hair ?", "are there ears ?"], "prompt": "{} has long hair on ears"}, {"index": 762, "image_id": 2359809, "entity": "dog", "caption": "The rear left paw of the dog", "question": ["is there the rear left paw ?", "is there the dog ?"], "prompt": "The rear left paw of the {}"}, {"index": 763, "image_id": 2359809, "entity": "dog", "caption": "dog is standing on cement floors", "question": ["is there dog ?", "are there cement floors ?"], "prompt": "{} is standing on cement floors"}, {"index": 764, "image_id": 2359414, "entity": "dog", "caption": "the dog has a banana on its side", "question": ["is there the dog ?", "is there a banana ?", "is there its side ?"], "prompt": "the {} has a banana on its side"}, {"index": 765, "image_id": 2359172, "entity": "dog", "caption": "dog has brown ear", "question": ["is there dog ?", "is there brown ear ?"], "prompt": "{} has brown ear"}, {"index": 766, "image_id": 2359172, "entity": "dog", "caption": "dog has brown eye", "question": ["is there dog ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 767, "image_id": 2359073, "entity": "dog", "caption": "Cat is laying on top of dog.", "question": ["is there cat ?", "is there top ?", "is there dog ?"], "prompt": "Cat is laying on top of {}."}, {"index": 768, "image_id": 2359073, "entity": "dog", "caption": "The cat is on the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is on the {}."}, {"index": 769, "image_id": 2359073, "entity": "dog", "caption": "dog has brown eye brows", "question": ["is there dog ?", "are there brown eye brows ?"], "prompt": "{} has brown eye brows"}, {"index": 770, "image_id": 2358914, "entity": "dog", "caption": "dog holds chew toy", "question": ["is there dog ?", "is there toy ?"], "prompt": "{} holds chew toy"}, {"index": 771, "image_id": 2358914, "entity": "dog", "caption": "dog has pink tongue", "question": ["is there dog ?", "is there pink tongue ?"], "prompt": "{} has pink tongue"}, {"index": 772, "image_id": 2358914, "entity": "dog", "caption": "the dog is chewing on a toy", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "the {} is chewing on a toy"}, {"index": 773, "image_id": 2358914, "entity": "dog", "caption": "the dog chews on an orange toy", "question": ["is there the dog ?", "is there an orange toy ?"], "prompt": "the {} chews on an orange toy"}, {"index": 774, "image_id": 2358914, "entity": "dog", "caption": "the dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is on a blanket"}, {"index": 775, "image_id": 2358914, "entity": "dog", "caption": "the dog is laying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is laying on a blanket"}, {"index": 776, "image_id": 2358914, "entity": "dog", "caption": "Small orange looking stuffed animal a dog has. ", "question": ["is there small orange ?", "is there stuffed animal ?", "is there a dog ?"], "prompt": "Small orange looking stuffed animal a {} has. "}, {"index": 777, "image_id": 2358914, "entity": "dog", "caption": "A brown dogs left side front paw. ", "question": ["are there a brown dogs ?", "is there side front paw ?"], "prompt": "A brown {}s left side front paw. "}, {"index": 778, "image_id": 2358914, "entity": "dog", "caption": "A dogs left ear. ", "question": ["are there a dogs ?", "is there ear ?"], "prompt": "A {}s left ear. "}, {"index": 779, "image_id": 2358486, "entity": "dog", "caption": "dog is leaning over railing", "question": ["is there dog ?"], "prompt": "{} is leaning over railing"}, {"index": 780, "image_id": 2358453, "entity": "dog", "caption": "eye of dog is close", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is close"}, {"index": 781, "image_id": 2357732, "entity": "dog", "caption": "dog has a long ear", "question": ["is there dog ?", "is there a long ear ?"], "prompt": "{} has a long ear"}, {"index": 782, "image_id": 2357732, "entity": "dog", "caption": "the dog's head is on the blanket", "question": ["is there the dog's head ?", "is there the blanket ?"], "prompt": "the {}'s head is on the blanket"}, {"index": 783, "image_id": 2357732, "entity": "dog", "caption": "the dog has on a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has on a red collar"}, {"index": 784, "image_id": 2357693, "entity": "dog", "caption": "dog has brown patch on eye", "question": ["is there dog ?", "is there brown patch ?", "is there eye ?"], "prompt": "{} has brown patch on eye"}, {"index": 785, "image_id": 2357667, "entity": "dog", "caption": "the dog is wearing a tie", "question": ["is there the dog ?", "is there a tie ?"], "prompt": "the {} is wearing a tie"}, {"index": 786, "image_id": 2357667, "entity": "dog", "caption": "the dog is lying on the arm of a leather chair", "question": ["is there the dog ?", "is there the arm ?", "is there a leather chair ?"], "prompt": "the {} is lying on the arm of a leather chair"}, {"index": 787, "image_id": 2357667, "entity": "dog", "caption": "the dog has bulgy eyes", "question": ["is there the dog ?", "are there bulgy eyes ?"], "prompt": "the {} has bulgy eyes"}, {"index": 788, "image_id": 2357667, "entity": "dog", "caption": "the dog has dark brown ears", "question": ["is there the dog ?", "are there dark brown ears ?"], "prompt": "the {} has dark brown ears"}, {"index": 789, "image_id": 2356804, "entity": "dog", "caption": "two dogs with their tongues hanging out", "question": ["are there two dogs ?", "are there their tongues ?"], "prompt": "two {}s with their tongues hanging out"}, {"index": 790, "image_id": 2356804, "entity": "dog", "caption": "the dogs are in long grass", "question": ["are there the dogs ?", "is there long grass ?"], "prompt": "the {}s are in long grass"}, {"index": 791, "image_id": 2356762, "entity": "dog", "caption": "This is a dog trying to catch an apple.", "question": ["is there a dog ?", "is there an apple ?"], "prompt": "This is a {} trying to catch an apple."}, {"index": 792, "image_id": 2356762, "entity": "dog", "caption": "The dog has only a few teeth.", "question": ["is there the dog ?", "are there only a few teeth ?"], "prompt": "The {} has only a few teeth."}, {"index": 793, "image_id": 2356701, "entity": "dog", "caption": "the dog's nose is thru the hole", "question": ["is there the dog's nose ?", "is there the hole ?"], "prompt": "the {}'s nose is thru the hole"}, {"index": 794, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck", "question": ["are there the dogs ?"], "prompt": "the {}s head is stuck"}, {"index": 795, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck in the wheel", "question": ["are there the dogs ?", "is there the wheel ?"], "prompt": "the {}s head is stuck in the wheel"}, {"index": 796, "image_id": 2356554, "entity": "dog", "caption": "dog wears black glasses", "question": ["is there dog ?", "are there black glasses ?"], "prompt": "{} wears black glasses"}, {"index": 797, "image_id": 2356554, "entity": "dog", "caption": "dog wears black jacket", "question": ["is there dog ?", "is there black jacket ?"], "prompt": "{} wears black jacket"}, {"index": 798, "image_id": 2356554, "entity": "dog", "caption": "dog is near motorcycle", "question": ["is there dog ?", "is there motorcycle ?"], "prompt": "{} is near motorcycle"}, {"index": 799, "image_id": 2356554, "entity": "dog", "caption": "the dog has sunglasses ", "question": ["is there the dog ?", "are there sunglasses ?"], "prompt": "the {} has sunglasses "}, {"index": 800, "image_id": 2356554, "entity": "dog", "caption": "the dog is on the bike ", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is on the bike "}, {"index": 801, "image_id": 2356554, "entity": "dog", "caption": "This dog is wearing sunglasses.", "question": ["is there this dog ?", "are there sunglasses ?"], "prompt": "This {} is wearing sunglasses."}, {"index": 802, "image_id": 2356554, "entity": "dog", "caption": "dog has leash on", "question": ["is there dog ?"], "prompt": "{} has leash on"}, {"index": 803, "image_id": 2356554, "entity": "dog", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "{} is sitting in side car"}, {"index": 804, "image_id": 2356153, "entity": "dog", "caption": "blue dog bone shaped tag", "question": ["is there blue dog bone shaped tag ?"], "prompt": "blue {} bone shaped tag"}, {"index": 805, "image_id": 2356153, "entity": "dog", "caption": "dog is wearing a red collar", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} is wearing a red collar"}, {"index": 806, "image_id": 2356153, "entity": "dog", "caption": "dog is walking on the dirt", "question": ["is there dog ?", "is there the dirt ?"], "prompt": "{} is walking on the dirt"}, {"index": 807, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} is wearing goggles"}, {"index": 808, "image_id": 2355985, "entity": "dog", "caption": "The dog is on a motorcycle", "question": ["is there the dog ?", "is there a motorcycle ?"], "prompt": "The {} is on a motorcycle"}, {"index": 809, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing a leather jacket", "question": ["is there the dog ?", "is there a leather jacket ?"], "prompt": "The {} is wearing a leather jacket"}, {"index": 810, "image_id": 2355985, "entity": "dog", "caption": "the nose is black on the dog ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose is black on the {} "}, {"index": 811, "image_id": 2355964, "entity": "dog", "caption": "dog ears is pink inside ", "question": ["are there dog ears ?"], "prompt": "{} ears is pink inside "}, {"index": 812, "image_id": 2355964, "entity": "dog", "caption": "dog has black nose ", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose "}, {"index": 813, "image_id": 2355944, "entity": "dog", "caption": "The dog is wearing a color", "question": ["is there the dog ?", "is there a color ?"], "prompt": "The {} is wearing a color"}, {"index": 814, "image_id": 2355865, "entity": "dog", "caption": "it is the eye of the dog ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "it is the eye of the {} "}, {"index": 815, "image_id": 2355519, "entity": "dog", "caption": "The dog has a frisbee in its mouth", "question": ["is there the dog ?", "is there a frisbee ?", "is there its mouth ?"], "prompt": "The {} has a frisbee in its mouth"}, {"index": 816, "image_id": 2355511, "entity": "dog", "caption": "a black dog right ear ", "question": ["is there a black dog right ear ?"], "prompt": "a black {} right ear "}, {"index": 817, "image_id": 2355511, "entity": "dog", "caption": "A black dog ready to get a bath", "question": ["is there a black dog ?", "is there a bath ?"], "prompt": "A black {} ready to get a bath"}, {"index": 818, "image_id": 2355409, "entity": "dog", "caption": "a dog catchign a freesbee", "question": ["is there a dog ?", "is there a freesbee ?"], "prompt": "a {} catchign a freesbee"}, {"index": 819, "image_id": 2355409, "entity": "dog", "caption": "a white dog catchign a black freesbee", "question": ["is there a white dog ?"], "prompt": "a white {} catchign a black freesbee"}, {"index": 820, "image_id": 2355256, "entity": "dog", "caption": "dog is brown and white", "question": ["is there dog ?"], "prompt": "{} is brown and white"}, {"index": 821, "image_id": 2354835, "entity": "dog", "caption": "Brown dog's head sticking out of car window.", "question": ["is there brown dog's head ?", "is there car window ?"], "prompt": "Brown {}'s head sticking out of car window."}, {"index": 822, "image_id": 2354515, "entity": "dog", "caption": "bike is behind the dog", "question": ["is there bike ?", "is there the dog ?"], "prompt": "bike is behind the {}"}, {"index": 823, "image_id": 2354515, "entity": "dog", "caption": "dog has tongue out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue out"}, {"index": 824, "image_id": 2354515, "entity": "dog", "caption": "dog is on the street", "question": ["is there dog ?", "is there the street ?"], "prompt": "{} is on the street"}, {"index": 825, "image_id": 2354497, "entity": "dog", "caption": "This dog has a donut in his mouth", "question": ["is there this dog ?", "is there a donut ?", "is there his mouth ?"], "prompt": "This {} has a donut in his mouth"}, {"index": 826, "image_id": 2354497, "entity": "dog", "caption": "The dog is wearing a red color.", "question": ["is there the dog ?", "is there a red color ?"], "prompt": "The {} is wearing a red color."}, {"index": 827, "image_id": 2354497, "entity": "dog", "caption": "The dog is sitting on the grass.", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "The {} is sitting on the grass."}, {"index": 828, "image_id": 2354497, "entity": "dog", "caption": "The dog has two spots on his face.", "question": ["is there the dog ?", "are there two spots ?", "is there his face ?"], "prompt": "The {} has two spots on his face."}, {"index": 829, "image_id": 2354494, "entity": "dog", "caption": "The dog nose is black", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black"}, {"index": 830, "image_id": 2354494, "entity": "dog", "caption": "tan/yellow dog laying across young girls lap", "question": ["is there tan/yellow dog ?", "are there young girls ?"], "prompt": "tan/yellow {} laying across young girls lap"}, {"index": 831, "image_id": 2354494, "entity": "dog", "caption": "dog is wearing a red collar around neck", "question": ["is there dog ?", "is there a red collar ?", "is there neck ?"], "prompt": "{} is wearing a red collar around neck"}, {"index": 832, "image_id": 2354494, "entity": "dog", "caption": "Woman laying on the couch with dog.", "question": ["is there woman ?", "is there the couch ?", "is there dog ?"], "prompt": "Woman laying on the couch with {}."}, {"index": 833, "image_id": 2354353, "entity": "dog", "caption": "The dog's head is on the keyboard", "question": ["is there the dog's head ?", "is there the keyboard ?"], "prompt": "The {}'s head is on the keyboard"}, {"index": 834, "image_id": 2354353, "entity": "dog", "caption": "The dog is wearing a blue and yellow collar", "question": ["is there the dog ?", "is there a blue and yellow collar ?"], "prompt": "The {} is wearing a blue and yellow collar"}, {"index": 835, "image_id": 2354353, "entity": "dog", "caption": "dog is on the keys", "question": ["is there dog ?", "are there the keys ?"], "prompt": "{} is on the keys"}, {"index": 836, "image_id": 2354353, "entity": "dog", "caption": "the dog has yellow and blue flowers", "question": ["is there the dog ?", "are there yellow and blue flowers ?"], "prompt": "the {} has yellow and blue flowers"}, {"index": 837, "image_id": 2353969, "entity": "dog", "caption": "dog has white paw", "question": ["is there dog ?"], "prompt": "{} has white paw"}, {"index": 838, "image_id": 2353969, "entity": "dog", "caption": "dog is laying down on rug", "question": ["is there dog ?", "is there rug ?"], "prompt": "{} is laying down on rug"}, {"index": 839, "image_id": 2353558, "entity": "dog", "caption": "the dog's eye is yellowish", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is yellowish"}, {"index": 840, "image_id": 2353558, "entity": "dog", "caption": "The dog has long ears", "question": ["is there the dog ?", "are there long ears ?"], "prompt": "The {} has long ears"}, {"index": 841, "image_id": 2353558, "entity": "dog", "caption": "The dog is wide eyed", "question": ["is there the dog ?"], "prompt": "The {} is wide eyed"}, {"index": 842, "image_id": 2353558, "entity": "dog", "caption": "The dog's nose is very black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is very black"}, {"index": 843, "image_id": 2353558, "entity": "dog", "caption": "The dog is wearing a bowl", "question": ["is there the dog ?", "is there a bowl ?"], "prompt": "The {} is wearing a bowl"}, {"index": 844, "image_id": 2353404, "entity": "dog", "caption": "the plastic buckle on the dog", "question": ["is there the plastic buckle ?", "is there the dog ?"], "prompt": "the plastic buckle on the {}"}, {"index": 845, "image_id": 2353404, "entity": "dog", "caption": "the dog walking and connected to a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} walking and connected to a chain"}, {"index": 846, "image_id": 2353398, "entity": "dog", "caption": "green felt the dog is standing on", "question": ["is there the dog ?"], "prompt": "green felt the {} is standing on"}, {"index": 847, "image_id": 2353062, "entity": "dog", "caption": "the dog is on a sofa", "question": ["is there the dog ?", "is there a sofa ?"], "prompt": "the {} is on a sofa"}, {"index": 848, "image_id": 2353062, "entity": "dog", "caption": "dog's eyes are amber", "question": ["are there dog's eyes ?", "is there amber ?"], "prompt": "{}'s eyes are amber"}, {"index": 849, "image_id": 2353062, "entity": "dog", "caption": "dog is laying on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} is laying on a couch"}, {"index": 850, "image_id": 2352757, "entity": "dog", "caption": "the dog is wearing a jacket", "question": ["is there the dog ?", "is there a jacket ?"], "prompt": "the {} is wearing a jacket"}, {"index": 851, "image_id": 2352757, "entity": "dog", "caption": "the dog has a black tail", "question": ["is there the dog ?", "is there a black tail ?"], "prompt": "the {} has a black tail"}, {"index": 852, "image_id": 2352502, "entity": "dog", "caption": "The dog is biting the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is biting the frisbee."}, {"index": 853, "image_id": 2352502, "entity": "dog", "caption": "The dog is on the beach.", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "The {} is on the beach."}, {"index": 854, "image_id": 2351971, "entity": "dog", "caption": "legs and paws of dog that allow dog to walk with ", "question": ["are there legs ?", "are there paws ?", "is there dog ?", "is there dog ?"], "prompt": "legs and paws of {} that allow {} to walk with "}, {"index": 855, "image_id": 2351950, "entity": "dog", "caption": "The dog is holding a bowl in his mouth", "question": ["is there the dog ?", "is there a bowl ?", "is there his mouth ?"], "prompt": "The {} is holding a bowl in his mouth"}, {"index": 856, "image_id": 2351950, "entity": "dog", "caption": "The dog's ear is hanging downwards", "question": ["is there the dog's ear ?"], "prompt": "The {}'s ear is hanging downwards"}, {"index": 857, "image_id": 2351950, "entity": "dog", "caption": "dog has light brown face", "question": ["is there dog ?", "is there light brown face ?"], "prompt": "{} has light brown face"}, {"index": 858, "image_id": 2351950, "entity": "dog", "caption": "dog is holding bowl", "question": ["is there dog ?", "is there bowl ?"], "prompt": "{} is holding bowl"}, {"index": 859, "image_id": 2351811, "entity": "dog", "caption": "the dogs head ", "question": ["are there the dogs ?"], "prompt": "the {}s head "}, {"index": 860, "image_id": 2351083, "entity": "dog", "caption": "dog holds a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} holds a cap"}, {"index": 861, "image_id": 2351083, "entity": "dog", "caption": "the dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black"}, {"index": 862, "image_id": 2350951, "entity": "dog", "caption": "the mouth of dog is open", "question": ["is there the mouth ?", "is there dog ?"], "prompt": "the mouth of {} is open"}, {"index": 863, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a Harley Davidson bandanna", "question": ["is there the unfortunate dog ?"], "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"}, {"index": 864, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a biker headband", "question": ["is there the unfortunate dog ?", "is there a biker headband ?"], "prompt": "the unfortunate {} is wearing a biker headband"}, {"index": 865, "image_id": 2350646, "entity": "dog", "caption": "the dog has cropped ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has cropped ears"}, {"index": 866, "image_id": 2350609, "entity": "dog", "caption": "lot where dog and woman stand", "question": ["is there lot ?", "is there dog ?", "is there woman ?"], "prompt": "lot where {} and woman stand"}, {"index": 867, "image_id": 2350606, "entity": "dog", "caption": "the dog is on a white platform", "question": ["is there the dog ?", "is there a white platform ?"], "prompt": "the {} is on a white platform"}, {"index": 868, "image_id": 2349745, "entity": "dog", "caption": "legs of dog running", "question": ["are there legs ?", "is there dog ?"], "prompt": "legs of {} running"}, {"index": 869, "image_id": 2349745, "entity": "dog", "caption": "open mouth of dog running", "question": ["is there open mouth ?", "is there dog ?"], "prompt": "open mouth of {} running"}, {"index": 870, "image_id": 2349745, "entity": "dog", "caption": "the dog is white with black spots", "question": ["is there the dog ?", "are there black spots ?"], "prompt": "the {} is white with black spots"}, {"index": 871, "image_id": 2349745, "entity": "dog", "caption": "the dog is running with his mouth open", "question": ["is there the dog ?", "is there his mouth ?"], "prompt": "the {} is running with his mouth open"}, {"index": 872, "image_id": 2349745, "entity": "dog", "caption": "the dog has a black spot over his eye", "question": ["is there the dog ?", "is there a black spot ?", "is there his eye ?"], "prompt": "the {} has a black spot over his eye"}, {"index": 873, "image_id": 2349745, "entity": "dog", "caption": "the dirt is flying from the dog's paws", "question": ["is there the dirt ?", "are there the dog's paws ?"], "prompt": "the dirt is flying from the {}'s paws"}, {"index": 874, "image_id": 2349745, "entity": "dog", "caption": "the dog's paws are touching from running", "question": ["are there the dog's paws ?"], "prompt": "the {}'s paws are touching from running"}, {"index": 875, "image_id": 2349548, "entity": "dog", "caption": "The dogs ear is brown.", "question": ["are there the dogs ?"], "prompt": "The {}s ear is brown."}, {"index": 876, "image_id": 2349547, "entity": "dog", "caption": "The dog has a pinkish nose.", "question": ["is there the dog ?", "is there a pinkish nose ?"], "prompt": "The {} has a pinkish nose."}, {"index": 877, "image_id": 2349421, "entity": "dog", "caption": "The dog is sitting on the chair ", "question": ["is there the dog ?", "is there the chair ?"], "prompt": "The {} is sitting on the chair "}, {"index": 878, "image_id": 2349268, "entity": "dog", "caption": "the dog has long nails", "question": ["is there the dog ?", "are there long nails ?"], "prompt": "the {} has long nails"}, {"index": 879, "image_id": 2349268, "entity": "dog", "caption": "the dog lays with toy", "question": ["is there the dog ?", "is there toy ?"], "prompt": "the {} lays with toy"}, {"index": 880, "image_id": 2348690, "entity": "dog", "caption": "the dog is chewing up a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is chewing up a stuffed animal"}, {"index": 881, "image_id": 2348554, "entity": "dog", "caption": "dog with hind legs stretched out", "question": ["is there dog ?", "are there hind legs ?"], "prompt": "{} with hind legs stretched out"}, {"index": 882, "image_id": 2348554, "entity": "dog", "caption": "A dog is laying on the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "A {} is laying on the bed"}, {"index": 883, "image_id": 2348554, "entity": "dog", "caption": "The dog has white on her paws", "question": ["is there the dog ?", "are there her paws ?"], "prompt": "The {} has white on her paws"}, {"index": 884, "image_id": 2348407, "entity": "dog", "caption": "tan dog's face as he holds the frisbee", "question": ["is there tan dog's face ?", "is there the frisbee ?"], "prompt": "tan {}'s face as he holds the frisbee"}, {"index": 885, "image_id": 2348407, "entity": "dog", "caption": "dog's eye looking up past the frisbee", "question": ["is there dog's eye ?", "is there the frisbee ?"], "prompt": "{}'s eye looking up past the frisbee"}, {"index": 886, "image_id": 2348407, "entity": "dog", "caption": "dog's ear hanging down as he chews the frisbee", "question": ["is there dog's ear ?", "is there the frisbee ?"], "prompt": "{}'s ear hanging down as he chews the frisbee"}, {"index": 887, "image_id": 2347998, "entity": "dog", "caption": "dog is on the newspaper", "question": ["is there dog ?", "is there the newspaper ?"], "prompt": "{} is on the newspaper"}, {"index": 888, "image_id": 2347801, "entity": "dog", "caption": "a dog tag shaped like a bone ", "question": ["is there a dog tag ?", "is there a bone ?"], "prompt": "a {} tag shaped like a bone "}, {"index": 889, "image_id": 2347801, "entity": "dog", "caption": "The dog is inside a room", "question": ["is there the dog ?", "is there a room ?"], "prompt": "The {} is inside a room"}, {"index": 890, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a television", "question": ["is there the dog ?", "is there a television ?"], "prompt": "The {} is next to a television"}, {"index": 891, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The {} is next to a laptop computer"}, {"index": 892, "image_id": 2347801, "entity": "dog", "caption": "The dog is on a table", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table"}, {"index": 893, "image_id": 2347591, "entity": "dog", "caption": "A woman who is sitting with a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman who is sitting with a {}"}, {"index": 894, "image_id": 2347591, "entity": "dog", "caption": "Woman is holding the dog", "question": ["is there woman ?", "is there the dog ?"], "prompt": "Woman is holding the {}"}, {"index": 895, "image_id": 2347481, "entity": "dog", "caption": "a dog with a disc on it's face", "question": ["is there a dog ?", "is there a disc ?"], "prompt": "a {} with a disc on it's face"}, {"index": 896, "image_id": 2347481, "entity": "dog", "caption": "dog has black and white tail", "question": ["is there dog ?", "is there black and white tail ?"], "prompt": "{} has black and white tail"}, {"index": 897, "image_id": 2347481, "entity": "dog", "caption": "dog has white neck", "question": ["is there dog ?", "is there white neck ?"], "prompt": "{} has white neck"}, {"index": 898, "image_id": 2347481, "entity": "dog", "caption": "The dogs tail", "question": ["are there the dogs ?"], "prompt": "The {}s tail"}, {"index": 899, "image_id": 2347481, "entity": "dog", "caption": "The ears that belong to the dog", "question": ["are there the ears ?", "is there the dog ?"], "prompt": "The ears that belong to the {}"}, {"index": 900, "image_id": 2347481, "entity": "dog", "caption": "A dog that is standing in the dirt", "question": ["is there a dog ?", "is there the dirt ?"], "prompt": "A {} that is standing in the dirt"}, {"index": 901, "image_id": 2347473, "entity": "dog", "caption": "the brown patches on the dogs face", "question": ["are there the brown patches ?", "are there the dogs ?"], "prompt": "the brown patches on the {}s face"}, {"index": 902, "image_id": 2347340, "entity": "dog", "caption": "dog's dark eyes are open", "question": ["are there dog's dark eyes ?"], "prompt": "{}'s dark eyes are open"}, {"index": 903, "image_id": 2347340, "entity": "dog", "caption": "the dog is on a chair", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "the {} is on a chair"}, {"index": 904, "image_id": 2347027, "entity": "dog", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car"}, {"index": 905, "image_id": 2347027, "entity": "dog", "caption": "dog has tongue hanging out ", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue hanging out "}, {"index": 906, "image_id": 2347027, "entity": "dog", "caption": "The dog have waggy ear.", "question": ["is there the dog ?"], "prompt": "The {} have waggy ear."}, {"index": 907, "image_id": 2346970, "entity": "dog", "caption": "The dog is resting his head on the couch.", "question": ["is there the dog ?", "is there his head ?", "is there the couch ?"], "prompt": "The {} is resting his head on the couch."}, {"index": 908, "image_id": 2346970, "entity": "dog", "caption": "The dog is wearing a blue collar.", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} is wearing a blue collar."}, {"index": 909, "image_id": 2346970, "entity": "dog", "caption": "The dog's eye is open.", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open."}, {"index": 910, "image_id": 2346970, "entity": "dog", "caption": "The dog's fur is very short.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is very short."}, {"index": 911, "image_id": 2346970, "entity": "dog", "caption": "The dog is sitting on top of white sheet.", "question": ["is there the dog ?", "is there top ?", "is there white sheet ?"], "prompt": "The {} is sitting on top of white sheet."}, {"index": 912, "image_id": 2346970, "entity": "dog", "caption": "the dogs neck is long ", "question": ["are there the dogs neck ?"], "prompt": "the {}s neck is long "}, {"index": 913, "image_id": 2346869, "entity": "dog", "caption": "dog is catching frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} is catching frisbee"}, {"index": 914, "image_id": 2346869, "entity": "dog", "caption": "dog has white frisbee in mouth", "question": ["is there dog ?", "is there white frisbee ?", "is there mouth ?"], "prompt": "{} has white frisbee in mouth"}, {"index": 915, "image_id": 2346869, "entity": "dog", "caption": "tree is next to dog", "question": ["is there tree ?", "is there dog ?"], "prompt": "tree is next to {}"}, {"index": 916, "image_id": 2346869, "entity": "dog", "caption": "man in cap leaning forward behind dog", "question": ["is there man ?", "is there cap ?", "is there dog ?"], "prompt": "man in cap leaning forward behind {}"}, {"index": 917, "image_id": 2346765, "entity": "dog", "caption": "neck of dog is white", "question": ["is there neck ?", "is there dog ?"], "prompt": "neck of {} is white"}, {"index": 918, "image_id": 2346434, "entity": "dog", "caption": "the dog's eyes are black", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are black"}, {"index": 919, "image_id": 2346434, "entity": "dog", "caption": "black pads and nails are on the dog's paws", "question": ["are there black pads ?", "are there nails ?", "are there the dog's paws ?"], "prompt": "black pads and nails are on the {}'s paws"}, {"index": 920, "image_id": 2346247, "entity": "dog", "caption": "Brown ear on the dog.", "question": ["is there brown ear ?", "is there the dog ?"], "prompt": "Brown ear on the {}."}, {"index": 921, "image_id": 2346086, "entity": "dog", "caption": "the black dog has a sad face", "question": ["is there the black dog ?", "is there a sad face ?"], "prompt": "the black {} has a sad face"}, {"index": 922, "image_id": 2346086, "entity": "dog", "caption": "A dog is near a bag.", "question": ["is there a dog ?", "is there a bag ?"], "prompt": "A {} is near a bag."}, {"index": 923, "image_id": 2346086, "entity": "dog", "caption": "The dog's mouth is closed.", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is closed."}, {"index": 924, "image_id": 2346086, "entity": "dog", "caption": "The dog is wearing a crocheted hat.", "question": ["is there the dog ?", "is there a crocheted hat ?"], "prompt": "The {} is wearing a crocheted hat."}, {"index": 925, "image_id": 2346086, "entity": "dog", "caption": "The dog has an ear.", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "The {} has an ear."}, {"index": 926, "image_id": 2346086, "entity": "dog", "caption": "The dog has an eye.", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "The {} has an eye."}, {"index": 927, "image_id": 2345642, "entity": "dog", "caption": "head of dog bowed down ", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} bowed down "}, {"index": 928, "image_id": 2345642, "entity": "dog", "caption": "green blanket the dog is laying on", "question": ["is there green blanket ?", "is there the dog ?"], "prompt": "green blanket the {} is laying on"}, {"index": 929, "image_id": 2345272, "entity": "dog", "caption": "the dogs tail ", "question": ["are there the dogs ?"], "prompt": "the {}s tail "}, {"index": 930, "image_id": 2345272, "entity": "dog", "caption": "a black dog looks onward with his tongue hanging out", "question": ["is there a black dog ?", "is there his tongue ?"], "prompt": "a black {} looks onward with his tongue hanging out"}, {"index": 931, "image_id": 2345272, "entity": "dog", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the boat holding a {} with a leash"}, {"index": 932, "image_id": 2345231, "entity": "dog", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the {}s paws on on the computer"}, {"index": 933, "image_id": 2345068, "entity": "dog", "caption": "Extra pillow for the dog to be comfortable", "question": ["is there extra pillow ?", "is there the dog ?"], "prompt": "Extra pillow for the {} to be comfortable"}, {"index": 934, "image_id": 2345068, "entity": "dog", "caption": "Teddy bear for the dog", "question": ["is there the dog ?"], "prompt": "Teddy bear for the {}"}, {"index": 935, "image_id": 2345068, "entity": "dog", "caption": "a dog curled up on its bed ", "question": ["is there a dog ?", "is there its bed ?"], "prompt": "a {} curled up on its bed "}, {"index": 936, "image_id": 2344922, "entity": "dog", "caption": "This dog has a very red collar", "question": ["is there this dog ?", "is there a very red collar ?"], "prompt": "This {} has a very red collar"}, {"index": 937, "image_id": 2344729, "entity": "dog", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the {} is in the car"}, {"index": 938, "image_id": 2344729, "entity": "dog", "caption": "this is the dogs leash", "question": ["are there the dogs ?"], "prompt": "this is the {}s leash"}, {"index": 939, "image_id": 2344635, "entity": "dog", "caption": "The dog is wearing a tag.", "question": ["is there the dog ?", "is there a tag ?"], "prompt": "The {} is wearing a tag."}, {"index": 940, "image_id": 2344635, "entity": "dog", "caption": "dog is wearing a tag", "question": ["is there dog ?", "is there a tag ?"], "prompt": "{} is wearing a tag"}, {"index": 941, "image_id": 2344635, "entity": "dog", "caption": "dogs eye looks white ", "question": ["are there dogs ?"], "prompt": "{}s eye looks white "}, {"index": 942, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is black.", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black."}, {"index": 943, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is small", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is small"}, {"index": 944, "image_id": 2344526, "entity": "dog", "caption": "The dogs fur is white.", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is white."}, {"index": 945, "image_id": 2344358, "entity": "dog", "caption": "this dog is under a white blanket", "question": ["is there this dog ?", "is there a white blanket ?"], "prompt": "this {} is under a white blanket"}, {"index": 946, "image_id": 2344283, "entity": "dog", "caption": "the dog is at the beach", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "the {} is at the beach"}, {"index": 947, "image_id": 2344283, "entity": "dog", "caption": "the dog is sitting on a towel", "question": ["is there the dog ?", "is there a towel ?"], "prompt": "the {} is sitting on a towel"}, {"index": 948, "image_id": 2344283, "entity": "dog", "caption": "a bag is by the dog", "question": ["is there a bag ?", "is there the dog ?"], "prompt": "a bag is by the {}"}, {"index": 949, "image_id": 2344283, "entity": "dog", "caption": "Brown dog is on a towel", "question": ["is there brown dog ?", "is there a towel ?"], "prompt": "Brown {} is on a towel"}, {"index": 950, "image_id": 2344228, "entity": "dog", "caption": "the dog has a brown part", "question": ["is there the dog ?", "is there a brown part ?"], "prompt": "the {} has a brown part"}, {"index": 951, "image_id": 2344228, "entity": "dog", "caption": "the dog has a black spot", "question": ["is there the dog ?", "is there a black spot ?"], "prompt": "the {} has a black spot"}, {"index": 952, "image_id": 2343539, "entity": "dog", "caption": "dog's tongue is hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is hanging out"}, {"index": 953, "image_id": 2343539, "entity": "dog", "caption": "dog's ears are back ", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are back "}, {"index": 954, "image_id": 2343194, "entity": "dog", "caption": "the dog has three balls", "question": ["is there the dog ?", "are there three balls ?"], "prompt": "the {} has three balls"}, {"index": 955, "image_id": 2343194, "entity": "dog", "caption": "the dog has balls in his mouth", "question": ["is there the dog ?", "are there balls ?", "is there his mouth ?"], "prompt": "the {} has balls in his mouth"}, {"index": 956, "image_id": 2343194, "entity": "dog", "caption": "the dog has a spotted nose", "question": ["is there the dog ?", "is there a spotted nose ?"], "prompt": "the {} has a spotted nose"}, {"index": 957, "image_id": 2343149, "entity": "dog", "caption": "The dog is splashing water", "question": ["is there the dog ?", "is there water ?"], "prompt": "The {} is splashing water"}, {"index": 958, "image_id": 2343149, "entity": "dog", "caption": "The dog's teeth are visible", "question": ["are there the dog's teeth ?"], "prompt": "The {}'s teeth are visible"}, {"index": 959, "image_id": 2343038, "entity": "dog", "caption": "dog with eyes closed", "question": ["is there dog ?", "are there eyes ?"], "prompt": "{} with eyes closed"}, {"index": 960, "image_id": 2342562, "entity": "dog", "caption": "dog mout to grab frisbees and eat food and drink water ", "question": ["is there dog mout ?", "are there frisbees ?", "is there food ?", "is there water ?"], "prompt": "{} mout to grab frisbees and eat food and drink water "}, {"index": 961, "image_id": 2342562, "entity": "dog", "caption": "The dog has a black ear.", "question": ["is there the dog ?", "is there a black ear ?"], "prompt": "The {} has a black ear."}, {"index": 962, "image_id": 2341045, "entity": "dog", "caption": "this dog and teddy bear are posing", "question": ["is there this dog ?", "is there bear ?"], "prompt": "this {} and teddy bear are posing"}, {"index": 963, "image_id": 2341045, "entity": "dog", "caption": "The dog is resting on white shaggy carpet.", "question": ["is there the dog ?", "is there white shaggy carpet ?"], "prompt": "The {} is resting on white shaggy carpet."}, {"index": 964, "image_id": 2340940, "entity": "dog", "caption": "The banana is inside the dog's mouth.", "question": ["is there the banana ?", "is there the dog's mouth ?"], "prompt": "The banana is inside the {}'s mouth."}, {"index": 965, "image_id": 2340940, "entity": "dog", "caption": "The little dog is sitting on top of the white blanket.", "question": ["is there the little dog ?", "is there top ?", "is there the white blanket ?"], "prompt": "The little {} is sitting on top of the white blanket."}, {"index": 966, "image_id": 2340940, "entity": "dog", "caption": "The dog has a pink collar.", "question": ["is there the dog ?", "is there a pink collar ?"], "prompt": "The {} has a pink collar."}, {"index": 967, "image_id": 2340940, "entity": "dog", "caption": "The dog is wearing a white collar.", "question": ["is there the dog ?", "is there a white collar ?"], "prompt": "The {} is wearing a white collar."}, {"index": 968, "image_id": 2340686, "entity": "dog", "caption": "The dog face is partially white.", "question": ["is there the dog face ?"], "prompt": "The {} face is partially white."}, {"index": 969, "image_id": 2339641, "entity": "dog", "caption": "dog has white spot on chest", "question": ["is there dog ?", "is there white spot ?", "is there chest ?"], "prompt": "{} has white spot on chest"}, {"index": 970, "image_id": 2339641, "entity": "dog", "caption": "dog is on a motorcycle", "question": ["is there dog ?", "is there a motorcycle ?"], "prompt": "{} is on a motorcycle"}, {"index": 971, "image_id": 2339617, "entity": "dog", "caption": "The dog sits on a chair. ", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} sits on a chair. "}, {"index": 972, "image_id": 2339617, "entity": "dog", "caption": "A blanket that the dog sits on.", "question": ["is there a blanket ?", "is there the dog ?"], "prompt": "A blanket that the {} sits on."}, {"index": 973, "image_id": 2339617, "entity": "dog", "caption": "dog has black back", "question": ["is there dog ?"], "prompt": "{} has black back"}, {"index": 974, "image_id": 2339511, "entity": "dog", "caption": "The cat is next to the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is next to the {}."}, {"index": 975, "image_id": 2339511, "entity": "dog", "caption": "The paw on the dog is white.", "question": ["is there the paw ?", "is there the dog ?"], "prompt": "The paw on the {} is white."}, {"index": 976, "image_id": 2339511, "entity": "dog", "caption": "brown striped cat lays next to dog", "question": ["is there brown striped cat ?", "is there dog ?"], "prompt": "brown striped cat lays next to {}"}, {"index": 977, "image_id": 2339511, "entity": "dog", "caption": "white front left paw on dog", "question": ["is there white front ?", "is there paw ?", "is there dog ?"], "prompt": "white front left paw on {}"}, {"index": 978, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around nose", "question": ["is there dog ?", "is there white fur ?", "is there nose ?"], "prompt": "{} has white fur around nose"}, {"index": 979, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around paws", "question": ["is there dog ?", "is there white fur ?", "are there paws ?"], "prompt": "{} has white fur around paws"}, {"index": 980, "image_id": 2339238, "entity": "dog", "caption": "dog has black ear", "question": ["is there dog ?", "is there black ear ?"], "prompt": "{} has black ear"}, {"index": 981, "image_id": 2339238, "entity": "dog", "caption": "dog has black eye", "question": ["is there dog ?", "is there black eye ?"], "prompt": "{} has black eye"}, {"index": 982, "image_id": 2339238, "entity": "dog", "caption": "dog has a white tooth", "question": ["is there dog ?", "is there a white tooth ?"], "prompt": "{} has a white tooth"}, {"index": 983, "image_id": 2337950, "entity": "dog", "caption": "couch man and dog are sitting on", "question": ["is there couch man ?", "is there dog ?"], "prompt": "couch man and {} are sitting on"}, {"index": 984, "image_id": 2337205, "entity": "dog", "caption": "the dog's eye is open ", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open "}, {"index": 985, "image_id": 2336811, "entity": "dog", "caption": "Front left paw of the dog", "question": ["is there front left paw ?", "is there the dog ?"], "prompt": "Front left paw of the {}"}, {"index": 986, "image_id": 2336773, "entity": "dog", "caption": "Small dogs right eye", "question": ["are there small dogs ?"], "prompt": "Small {}s right eye"}, {"index": 987, "image_id": 2336773, "entity": "dog", "caption": "Small dogs left eye", "question": ["are there small dogs ?", "is there eye ?"], "prompt": "Small {}s left eye"}, {"index": 988, "image_id": 2336693, "entity": "dog", "caption": "the dog is carrying a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is carrying a frisbee"}, {"index": 989, "image_id": 2336693, "entity": "dog", "caption": "the dog's front legs are white", "question": ["are there the dog's front legs ?"], "prompt": "the {}'s front legs are white"}, {"index": 990, "image_id": 2336693, "entity": "dog", "caption": "the dog's back legs are black", "question": ["are there the dog's back legs ?"], "prompt": "the {}'s back legs are black"}, {"index": 991, "image_id": 2336693, "entity": "dog", "caption": "the dog's shadow is in the grass", "question": ["is there the dog's shadow ?", "is there the grass ?"], "prompt": "the {}'s shadow is in the grass"}, {"index": 992, "image_id": 2336402, "entity": "dog", "caption": "dog with it's head in a box", "question": ["is there dog ?", "is there head ?", "is there a box ?"], "prompt": "{} with it's head in a box"}, {"index": 993, "image_id": 2336402, "entity": "dog", "caption": "A black streak down dogs back", "question": ["is there a black streak ?"], "prompt": "A black streak down {}s back"}, {"index": 994, "image_id": 2336402, "entity": "dog", "caption": "the dogs head is in the box", "question": ["are there the dogs ?", "is there the box ?"], "prompt": "the {}s head is in the box"}, {"index": 995, "image_id": 2336257, "entity": "dog", "caption": "the dog is in water", "question": ["is there the dog ?", "is there water ?"], "prompt": "the {} is in water"}, {"index": 996, "image_id": 2336147, "entity": "dog", "caption": "Black and white dog standing on a sandy ground.", "question": ["is there black and white dog ?", "is there a sandy ground ?"], "prompt": "Black and white {} standing on a sandy ground."}, {"index": 997, "image_id": 2336147, "entity": "dog", "caption": "The dog's pink tongue sticking out.", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue sticking out."}, {"index": 998, "image_id": 2336147, "entity": "dog", "caption": "dog's face is black and white", "question": ["is there dog's face ?"], "prompt": "{}'s face is black and white"}, {"index": 999, "image_id": 2336147, "entity": "dog", "caption": "dog's tongue is sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is sticking out"}, {"index": 1000, "image_id": 2336147, "entity": "dog", "caption": "dog's paw is white", "question": ["is there dog's paw ?"], "prompt": "{}'s paw is white"}, {"index": 1001, "image_id": 2336045, "entity": "dog", "caption": "fake dog sits on bench", "question": ["is there fake dog ?", "is there bench ?"], "prompt": "fake {} sits on bench"}, {"index": 1002, "image_id": 2336045, "entity": "dog", "caption": "fake dog wears red collar", "question": ["is there fake dog ?", "is there red collar ?"], "prompt": "fake {} wears red collar"}, {"index": 1003, "image_id": 2335892, "entity": "dog", "caption": "Toy occupies leashed dog.", "question": ["is there toy ?", "is there leashed dog ?"], "prompt": "Toy occupies leashed {}."}, {"index": 1004, "image_id": 2335707, "entity": "dog", "caption": "dog has dark claws", "question": ["is there dog ?", "are there dark claws ?"], "prompt": "{} has dark claws"}, {"index": 1005, "image_id": 2335655, "entity": "dog", "caption": "Tan dog is holding toy in mouth.", "question": ["is there tan dog ?", "is there toy ?", "is there mouth ?"], "prompt": "Tan {} is holding toy in mouth."}, {"index": 1006, "image_id": 2335655, "entity": "dog", "caption": "This dog seems to have a white face", "question": ["is there this dog ?", "is there a white face ?"], "prompt": "This {} seems to have a white face"}, {"index": 1007, "image_id": 2335655, "entity": "dog", "caption": "This dog has quite a paw visible here", "question": ["is there this dog ?", "is there quite a paw ?"], "prompt": "This {} has quite a paw visible here"}, {"index": 1008, "image_id": 2335550, "entity": "dog", "caption": "dog is laying on the couch", "question": ["is there dog ?", "is there the couch ?"], "prompt": "{} is laying on the couch"}, {"index": 1009, "image_id": 2335550, "entity": "dog", "caption": "dog has fluffy dark fur", "question": ["is there dog ?", "is there fluffy dark fur ?"], "prompt": "{} has fluffy dark fur"}, {"index": 1010, "image_id": 2335487, "entity": "dog", "caption": "an ear is up on the dog", "question": ["is there an ear ?", "is there the dog ?"], "prompt": "an ear is up on the {}"}, {"index": 1011, "image_id": 2335487, "entity": "dog", "caption": "the dog is wearing a yellow coat", "question": ["is there the dog ?", "is there a yellow coat ?"], "prompt": "the {} is wearing a yellow coat"}, {"index": 1012, "image_id": 2335487, "entity": "dog", "caption": "dog's cloth is green", "question": ["is there dog's cloth ?"], "prompt": "{}'s cloth is green"}, {"index": 1013, "image_id": 2334964, "entity": "dog", "caption": "Chain connected to dog's collar.", "question": ["is there chain ?", "is there dog's collar ?"], "prompt": "Chain connected to {}'s collar."}, {"index": 1014, "image_id": 2334964, "entity": "dog", "caption": "the dog has a collar ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar "}, {"index": 1015, "image_id": 2334964, "entity": "dog", "caption": "the collar is around the dog's neck", "question": ["is there the collar ?", "is there the dog's neck ?"], "prompt": "the collar is around the {}'s neck"}, {"index": 1016, "image_id": 2334936, "entity": "dog", "caption": "dog has an eye", "question": ["is there dog ?", "is there an eye ?"], "prompt": "{} has an eye"}, {"index": 1017, "image_id": 2334611, "entity": "dog", "caption": "front left foot on dog", "question": ["is there front left foot ?", "is there dog ?"], "prompt": "front left foot on {}"}, {"index": 1018, "image_id": 2334526, "entity": "dog", "caption": "The dog nose is black.", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black."}, {"index": 1019, "image_id": 2334526, "entity": "dog", "caption": "The dog eyes on his face.", "question": ["is there the dog ?", "is there his face ?"], "prompt": "The {} eyes on his face."}, {"index": 1020, "image_id": 2334482, "entity": "dog", "caption": "This is a dog", "question": ["is there a dog ?"], "prompt": "This is a {}"}, {"index": 1021, "image_id": 2334482, "entity": "dog", "caption": "The dog is on a bench", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is on a bench"}, {"index": 1022, "image_id": 2334375, "entity": "dog", "caption": "dog nose is black", "question": ["is there dog nose ?"], "prompt": "{} nose is black"}, {"index": 1023, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is black.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is black."}, {"index": 1024, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is round.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is round."}, {"index": 1025, "image_id": 2334355, "entity": "dog", "caption": "The dogs left ear is black.", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "The {}s left ear is black."}, {"index": 1026, "image_id": 2334355, "entity": "dog", "caption": "The dogs right eye is black.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is black."}, {"index": 1027, "image_id": 2333902, "entity": "dog", "caption": "The dog is laying on the back of the couch", "question": ["is there the dog ?", "is there the back ?", "is there the couch ?"], "prompt": "The {} is laying on the back of the couch"}, {"index": 1028, "image_id": 2333902, "entity": "dog", "caption": "The dogs tongue is sticking out of his mouth", "question": ["are there the dogs tongue ?", "is there his mouth ?"], "prompt": "The {}s tongue is sticking out of his mouth"}, {"index": 1029, "image_id": 2333902, "entity": "dog", "caption": "dog has a nose", "question": ["is there dog ?", "is there a nose ?"], "prompt": "{} has a nose"}, {"index": 1030, "image_id": 2333902, "entity": "dog", "caption": "dog has an ear", "question": ["is there dog ?", "is there an ear ?"], "prompt": "{} has an ear"}, {"index": 1031, "image_id": 2333902, "entity": "dog", "caption": "dog has a tounge", "question": ["is there dog ?", "is there a tounge ?"], "prompt": "{} has a tounge"}, {"index": 1032, "image_id": 2333902, "entity": "dog", "caption": "dog has an arm", "question": ["is there dog ?", "is there an arm ?"], "prompt": "{} has an arm"}, {"index": 1033, "image_id": 2333590, "entity": "dog", "caption": "the dog is smelling her hand", "question": ["is there the dog ?", "is there her hand ?"], "prompt": "the {} is smelling her hand"}, {"index": 1034, "image_id": 2333443, "entity": "dog", "caption": "wet dog taking a bath in a tub", "question": ["is there wet dog ?", "is there a bath ?", "is there a tub ?"], "prompt": "wet {} taking a bath in a tub"}, {"index": 1035, "image_id": 2333438, "entity": "dog", "caption": "The dog has a brown eye.", "question": ["is there the dog ?", "is there a brown eye ?"], "prompt": "The {} has a brown eye."}, {"index": 1036, "image_id": 2333438, "entity": "dog", "caption": "The dogs eye is open.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is open."}, {"index": 1037, "image_id": 2333438, "entity": "dog", "caption": "The dog has teeth.", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "The {} has teeth."}, {"index": 1038, "image_id": 2333438, "entity": "dog", "caption": "The dog has a tongue.", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "The {} has a tongue."}, {"index": 1039, "image_id": 2333438, "entity": "dog", "caption": "The dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "The {} has a red collar"}, {"index": 1040, "image_id": 2333438, "entity": "dog", "caption": "dog with its ears bag", "question": ["is there dog ?", "are there its ears ?"], "prompt": "{} with its ears bag"}, {"index": 1041, "image_id": 2333438, "entity": "dog", "caption": "dog mouth open", "question": [], "prompt": "{} mouth open"}, {"index": 1042, "image_id": 2333438, "entity": "dog", "caption": "dog has black and white paws", "question": ["is there dog ?", "are there black and white paws ?"], "prompt": "{} has black and white paws"}, {"index": 1043, "image_id": 2333438, "entity": "dog", "caption": "dog's mouth is open with tounge out", "question": ["is there dog's mouth ?", "is there tounge ?"], "prompt": "{}'s mouth is open with tounge out"}, {"index": 1044, "image_id": 2333301, "entity": "dog", "caption": "the dog has its mouth open.", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open."}, {"index": 1045, "image_id": 2333301, "entity": "dog", "caption": "the dog's ear is standing straight up.", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is standing straight up."}, {"index": 1046, "image_id": 2333301, "entity": "dog", "caption": "the dog's left back leg.", "question": ["is there the dog ?", "is there leg ?"], "prompt": "the {}'s left back leg."}, {"index": 1047, "image_id": 2333301, "entity": "dog", "caption": "dog mouth wide open ", "question": [], "prompt": "{} mouth wide open "}, {"index": 1048, "image_id": 2333301, "entity": "dog", "caption": "dog's tongue is pink.", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink."}, {"index": 1049, "image_id": 2332835, "entity": "dog", "caption": "The dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is pink."}, {"index": 1050, "image_id": 2332835, "entity": "dog", "caption": "The dogs right eye is round.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is round."}, {"index": 1051, "image_id": 2332607, "entity": "dog", "caption": "dog's eyes looking at camera", "question": ["are there dog's eyes ?", "is there camera ?"], "prompt": "{}'s eyes looking at camera"}, {"index": 1052, "image_id": 2332583, "entity": "dog", "caption": "dog has brown tail", "question": ["is there dog ?", "is there brown tail ?"], "prompt": "{} has brown tail"}, {"index": 1053, "image_id": 2332583, "entity": "dog", "caption": "dog has brown back", "question": ["is there dog ?"], "prompt": "{} has brown back"}, {"index": 1054, "image_id": 2332513, "entity": "dog", "caption": "two dogs are lying ", "question": ["are there two dogs ?"], "prompt": "two {}s are lying "}, {"index": 1055, "image_id": 2332513, "entity": "dog", "caption": "this dog's head is up ", "question": ["is there this dog's head ?"], "prompt": "this {}'s head is up "}, {"index": 1056, "image_id": 2332418, "entity": "dog", "caption": "dog has white ears", "question": ["is there dog ?", "are there white ears ?"], "prompt": "{} has white ears"}, {"index": 1057, "image_id": 2331647, "entity": "dog", "caption": "The hat the dog is wearing.", "question": ["is there the hat ?", "is there the dog ?"], "prompt": "The hat the {} is wearing."}, {"index": 1058, "image_id": 2331519, "entity": "dog", "caption": "The dog tongue is pink.", "question": ["is there the dog tongue ?"], "prompt": "The {} tongue is pink."}, {"index": 1059, "image_id": 2331519, "entity": "dog", "caption": "The dog is licking his tongue out.", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "The {} is licking his tongue out."}, {"index": 1060, "image_id": 2331519, "entity": "dog", "caption": "The frisbee is near the dog leg.", "question": ["is there the dog leg ?"], "prompt": "The frisbee is near the {} leg."}, {"index": 1061, "image_id": 2331519, "entity": "dog", "caption": "The dog is playing with the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee"}, {"index": 1062, "image_id": 2331519, "entity": "dog", "caption": "The Frisbee is in front of the dog. ", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The Frisbee is in front of the {}. "}, {"index": 1063, "image_id": 2331395, "entity": "dog", "caption": "The front left paw of the dog.", "question": ["is there the front left paw ?", "is there the dog ?"], "prompt": "The front left paw of the {}."}, {"index": 1064, "image_id": 2330828, "entity": "dog", "caption": "dog has long nose", "question": ["is there dog ?", "is there long nose ?"], "prompt": "{} has long nose"}, {"index": 1065, "image_id": 2330828, "entity": "dog", "caption": "dog has nice coat", "question": ["is there dog ?", "is there nice coat ?"], "prompt": "{} has nice coat"}, {"index": 1066, "image_id": 2330828, "entity": "dog", "caption": "dog has big ear", "question": ["is there dog ?", "is there big ear ?"], "prompt": "{} has big ear"}, {"index": 1067, "image_id": 2329335, "entity": "dog", "caption": "dog has brown paws", "question": ["is there dog ?", "are there brown paws ?"], "prompt": "{} has brown paws"}, {"index": 1068, "image_id": 2329309, "entity": "dog", "caption": "brown white and black dog catching yellow Frisbee", "question": ["is there brown white and black dog ?", "is there yellow frisbee ?"], "prompt": "brown white and black {} catching yellow Frisbee"}, {"index": 1069, "image_id": 2329309, "entity": "dog", "caption": "Frisbee caught by black and brown dog", "question": ["is there black and brown dog ?"], "prompt": "Frisbee caught by black and brown {}"}, {"index": 1070, "image_id": 2329275, "entity": "dog", "caption": "the dog is lying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is lying on the couch"}, {"index": 1071, "image_id": 2329129, "entity": "dog", "caption": "the dog is eating a cake", "question": ["is there the dog ?", "is there a cake ?"], "prompt": "the {} is eating a cake"}, {"index": 1072, "image_id": 2328916, "entity": "dog", "caption": "The dog is sniffing the donut", "question": ["is there the dog ?", "is there the donut ?"], "prompt": "The {} is sniffing the donut"}, {"index": 1073, "image_id": 2328916, "entity": "dog", "caption": "bulldog sniffing a doughnut ", "question": ["is there a doughnut ?"], "prompt": "bull{} sniffing a doughnut "}, {"index": 1074, "image_id": 2328869, "entity": "dog", "caption": "black hat dog is wearing", "question": ["is there black hat dog ?"], "prompt": "black hat {} is wearing"}, {"index": 1075, "image_id": 2328633, "entity": "dog", "caption": "a dog with black spots on it's ear", "question": ["is there a dog ?", "are there black spots ?", "is there ear ?"], "prompt": "a {} with black spots on it's ear"}, {"index": 1076, "image_id": 2327968, "entity": "dog", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car "}, {"index": 1077, "image_id": 2327968, "entity": "dog", "caption": "the dog is sticking its head out ", "question": ["is there the dog ?", "is there its head ?"], "prompt": "the {} is sticking its head out "}, {"index": 1078, "image_id": 2327968, "entity": "dog", "caption": "the dog has its head out the window ", "question": ["is there the dog ?", "is there its head ?", "is there the window ?"], "prompt": "the {} has its head out the window "}, {"index": 1079, "image_id": 2327286, "entity": "dog", "caption": "the dogs eyes are closed", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are closed"}, {"index": 1080, "image_id": 2326860, "entity": "dog", "caption": "The dog has a frisbee inside his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee inside his mouth."}, {"index": 1081, "image_id": 2326801, "entity": "dog", "caption": "A blue duffel bag a dog is on.", "question": ["is there a blue duffel bag ?", "is there a dog ?"], "prompt": "A blue duffel bag a {} is on."}, {"index": 1082, "image_id": 2325767, "entity": "dog", "caption": "A person is holding the dog", "question": ["is there a person ?", "is there the dog ?"], "prompt": "A person is holding the {}"}, {"index": 1083, "image_id": 2325561, "entity": "dog", "caption": "The dog's mouth is open", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open"}, {"index": 1084, "image_id": 2325561, "entity": "dog", "caption": "The dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black"}, {"index": 1085, "image_id": 2325561, "entity": "dog", "caption": "The dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 1086, "image_id": 2325561, "entity": "dog", "caption": "dog has a black nose ", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose "}, {"index": 1087, "image_id": 2325561, "entity": "dog", "caption": "the dog has brown eye", "question": ["is there the dog ?", "is there brown eye ?"], "prompt": "the {} has brown eye"}, {"index": 1088, "image_id": 2325561, "entity": "dog", "caption": "the dogs left eye ", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye "}, {"index": 1089, "image_id": 2325561, "entity": "dog", "caption": "the dogs left ear ", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "the {}s left ear "}, {"index": 1090, "image_id": 2325561, "entity": "dog", "caption": "dog has orange eyes", "question": ["is there dog ?", "are there orange eyes ?"], "prompt": "{} has orange eyes"}, {"index": 1091, "image_id": 2325561, "entity": "dog", "caption": "brown dog has golden eyes", "question": ["is there brown dog ?", "are there golden eyes ?"], "prompt": "brown {} has golden eyes"}, {"index": 1092, "image_id": 2325561, "entity": "dog", "caption": "black dog has brown eyes", "question": ["is there black dog ?", "are there brown eyes ?"], "prompt": "black {} has brown eyes"}, {"index": 1093, "image_id": 2325561, "entity": "dog", "caption": "black dog has a black nose", "question": ["is there black dog ?", "is there a black nose ?"], "prompt": "black {} has a black nose"}, {"index": 1094, "image_id": 2325561, "entity": "dog", "caption": "black dog has some white hair in its ruff", "question": ["is there black dog ?", "is there some white hair ?", "is there its ruff ?"], "prompt": "black {} has some white hair in its ruff"}, {"index": 1095, "image_id": 2325500, "entity": "dog", "caption": "eyes of dog open wide", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} open wide"}, {"index": 1096, "image_id": 2325500, "entity": "dog", "caption": "the dog has a safety vest", "question": ["is there the dog ?", "is there a safety vest ?"], "prompt": "the {} has a safety vest"}, {"index": 1097, "image_id": 2325442, "entity": "dog", "caption": "dog's ears are pink", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are pink"}, {"index": 1098, "image_id": 2325387, "entity": "dog", "caption": "Woman laying on the floor next to dog.", "question": ["is there woman ?", "is there the floor ?", "is there dog ?"], "prompt": "Woman laying on the floor next to {}."}, {"index": 1099, "image_id": 2324981, "entity": "dog", "caption": "The dog has black patch over eye.", "question": ["is there the dog ?", "is there black patch ?", "is there eye ?"], "prompt": "The {} has black patch over eye."}, {"index": 1100, "image_id": 2324981, "entity": "dog", "caption": "The dog is carrying a blue frisbee.", "question": ["is there the dog ?", "is there a blue frisbee ?"], "prompt": "The {} is carrying a blue frisbee."}, {"index": 1101, "image_id": 2324981, "entity": "dog", "caption": "The dog has a nose.", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "The {} has a nose."}, {"index": 1102, "image_id": 2323880, "entity": "dog", "caption": "dog is in picture", "question": ["is there dog ?", "is there picture ?"], "prompt": "{} is in picture"}, {"index": 1103, "image_id": 2323470, "entity": "dog", "caption": "the dog is laying in a green towel", "question": ["is there the dog ?", "is there a green towel ?"], "prompt": "the {} is laying in a green towel"}, {"index": 1104, "image_id": 2322848, "entity": "dog", "caption": "the cat and the dog are good friends", "question": ["is there the cat ?", "is there the dog ?", "are there good friends ?"], "prompt": "the cat and the {} are good friends"}, {"index": 1105, "image_id": 2322848, "entity": "dog", "caption": "this cat and this dog are obviously best friends", "question": ["is there this cat ?", "is there this dog ?", "are there best friends ?"], "prompt": "this cat and this {} are obviously best friends"}, {"index": 1106, "image_id": 2322792, "entity": "dog", "caption": "extended wet dog ear ", "question": ["is there extended wet dog ear ?"], "prompt": "extended wet {} ear "}, {"index": 1107, "image_id": 2322792, "entity": "dog", "caption": "dog ear flipping up", "question": ["is there dog ear ?"], "prompt": "{} ear flipping up"}, {"index": 1108, "image_id": 2322492, "entity": "dog", "caption": "Pile of clothes a small dog is lying on", "question": ["is there pile ?", "are there clothes ?", "is there a small dog ?"], "prompt": "Pile of clothes a small {} is lying on"}, {"index": 1109, "image_id": 2322220, "entity": "dog", "caption": "a dog is lying in the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "a {} is lying in the bed"}, {"index": 1110, "image_id": 2322220, "entity": "dog", "caption": "the dog is under the sheet", "question": ["is there the dog ?", "is there the sheet ?"], "prompt": "the {} is under the sheet"}, {"index": 1111, "image_id": 2322220, "entity": "dog", "caption": "the dogs ears are brown", "question": ["are there the dogs ears ?"], "prompt": "the {}s ears are brown"}, {"index": 1112, "image_id": 2322220, "entity": "dog", "caption": "the dogs front legs are white", "question": ["are there the dogs ?", "are there front legs ?"], "prompt": "the {}s front legs are white"}, {"index": 1113, "image_id": 2322086, "entity": "dog", "caption": "the dog has white spots", "question": ["is there the dog ?", "are there white spots ?"], "prompt": "the {} has white spots"}, {"index": 1114, "image_id": 2321901, "entity": "dog", "caption": "the dog is laying on a pillow ", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "the {} is laying on a pillow "}, {"index": 1115, "image_id": 2321544, "entity": "dog", "caption": "A silver chain is around the dog's neck.", "question": ["is there a silver chain ?", "is there the dog's neck ?"], "prompt": "A silver chain is around the {}'s neck."}, {"index": 1116, "image_id": 2321544, "entity": "dog", "caption": "The dog's left ear is black and brown. ", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear is black and brown. "}, {"index": 1117, "image_id": 2321544, "entity": "dog", "caption": "The dog's right ear is black and brown. ", "question": ["is there the dog's right ear ?"], "prompt": "The {}'s right ear is black and brown. "}, {"index": 1118, "image_id": 2321386, "entity": "dog", "caption": "the dog has a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} has a chain"}, {"index": 1119, "image_id": 2320693, "entity": "dog", "caption": "the dog has a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} has a frisbee"}, {"index": 1120, "image_id": 2320693, "entity": "dog", "caption": "the dog has the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "the {} has the frisbee"}, {"index": 1121, "image_id": 2320693, "entity": "dog", "caption": "teh dog has brown eyes", "question": ["are there brown eyes ?"], "prompt": "teh {} has brown eyes"}, {"index": 1122, "image_id": 2320693, "entity": "dog", "caption": "dog has frisbee in his mouth", "question": ["is there dog ?", "is there frisbee ?", "is there his mouth ?"], "prompt": "{} has frisbee in his mouth"}, {"index": 1123, "image_id": 2320693, "entity": "dog", "caption": "dog in mouth is pink", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} in mouth is pink"}, {"index": 1124, "image_id": 2319884, "entity": "dog", "caption": "dog is eating a vitamin water", "question": ["is there dog ?", "is there a vitamin water ?"], "prompt": "{} is eating a vitamin water"}, {"index": 1125, "image_id": 2319723, "entity": "dog", "caption": "the dog is kissing the cat", "question": ["is there the dog ?", "is there the cat ?"], "prompt": "the {} is kissing the cat"}, {"index": 1126, "image_id": 2319347, "entity": "dog", "caption": "The dog is wearing a shirt", "question": ["is there the dog ?", "is there a shirt ?"], "prompt": "The {} is wearing a shirt"}, {"index": 1127, "image_id": 2319347, "entity": "dog", "caption": "The dog has on a nice shirt", "question": ["is there the dog ?", "is there a nice shirt ?"], "prompt": "The {} has on a nice shirt"}, {"index": 1128, "image_id": 2319347, "entity": "dog", "caption": "The dog has very long hair", "question": ["is there the dog ?", "is there very long hair ?"], "prompt": "The {} has very long hair"}, {"index": 1129, "image_id": 2319347, "entity": "dog", "caption": "The dog is having a great time", "question": ["is there the dog ?", "is there a great time ?"], "prompt": "The {} is having a great time"}, {"index": 1130, "image_id": 2319347, "entity": "dog", "caption": "The dog is out in the daytime", "question": ["is there the dog ?", "is there the daytime ?"], "prompt": "The {} is out in the daytime"}, {"index": 1131, "image_id": 2319347, "entity": "dog", "caption": "The dog is enjoying the day", "question": ["is there the dog ?", "is there the day ?"], "prompt": "The {} is enjoying the day"}, {"index": 1132, "image_id": 2318934, "entity": "dog", "caption": "A dog is wearing a shirt", "question": ["is there a dog ?", "is there a shirt ?"], "prompt": "A {} is wearing a shirt"}, {"index": 1133, "image_id": 2318934, "entity": "dog", "caption": "A dog has on a visor", "question": ["is there a dog ?", "is there a visor ?"], "prompt": "A {} has on a visor"}, {"index": 1134, "image_id": 2318934, "entity": "dog", "caption": "A dog has white curly hair", "question": ["is there a dog ?", "is there white curly hair ?"], "prompt": "A {} has white curly hair"}, {"index": 1135, "image_id": 2318934, "entity": "dog", "caption": "A dog is sticking its tongue out", "question": ["is there a dog ?", "is there its tongue ?"], "prompt": "A {} is sticking its tongue out"}, {"index": 1136, "image_id": 2318934, "entity": "dog", "caption": "A dog is with its master", "question": ["is there a dog ?", "is there its master ?"], "prompt": "A {} is with its master"}, {"index": 1137, "image_id": 2318892, "entity": "dog", "caption": "The dog has black fur", "question": ["is there the dog ?", "is there black fur ?"], "prompt": "The {} has black fur"}, {"index": 1138, "image_id": 2318849, "entity": "dog", "caption": "brown dog curled up with head on blanket", "question": ["is there brown dog ?", "is there head ?", "is there blanket ?"], "prompt": "brown {} curled up with head on blanket"}, {"index": 1139, "image_id": 2318849, "entity": "dog", "caption": "brown dog cuddled with toy with paw on bunny", "question": ["is there brown dog ?", "is there toy ?", "is there paw ?", "is there bunny ?"], "prompt": "brown {} cuddled with toy with paw on bunny"}, {"index": 1140, "image_id": 2318849, "entity": "dog", "caption": "a dog is in bed", "question": ["is there a dog ?", "is there bed ?"], "prompt": "a {} is in bed"}, {"index": 1141, "image_id": 2318849, "entity": "dog", "caption": "the dog is holding a doll", "question": ["is there the dog ?", "is there a doll ?"], "prompt": "the {} is holding a doll"}, {"index": 1142, "image_id": 2318849, "entity": "dog", "caption": "another doll lies close to the dog", "question": ["is there another doll ?", "is there the dog ?"], "prompt": "another doll lies close to the {}"}, {"index": 1143, "image_id": 2318849, "entity": "dog", "caption": "dog eyes are open", "question": ["are there dog eyes ?"], "prompt": "{} eyes are open"}, {"index": 1144, "image_id": 2318849, "entity": "dog", "caption": "the dog's paw is on the toy", "question": ["is there the dog's paw ?", "is there the toy ?"], "prompt": "the {}'s paw is on the toy"}, {"index": 1145, "image_id": 2318849, "entity": "dog", "caption": "dog holding white stuffed bunny", "question": ["is there white stuffed bunny ?"], "prompt": "{} holding white stuffed bunny"}, {"index": 1146, "image_id": 2318152, "entity": "dog", "caption": "Mulch dog is standing on", "question": ["is there mulch dog ?"], "prompt": "Mulch {} is standing on"}, {"index": 1147, "image_id": 2318115, "entity": "dog", "caption": "Brown leash on a dog", "question": ["is there brown leash ?", "is there a dog ?"], "prompt": "Brown leash on a {}"}, {"index": 1148, "image_id": 2318115, "entity": "dog", "caption": "A person on a skateboard walking their dog", "question": ["is there a person ?", "is there a skateboard ?", "is there their dog ?"], "prompt": "A person on a skateboard walking their {}"}, {"index": 1149, "image_id": 2318115, "entity": "dog", "caption": "person walking the dog", "question": ["is there person ?", "is there the dog ?"], "prompt": "person walking the {}"}, {"index": 1150, "image_id": 2317836, "entity": "dog", "caption": "the dog is in costume", "question": ["is there the dog ?", "is there costume ?"], "prompt": "the {} is in costume"}, {"index": 1151, "image_id": 2317283, "entity": "dog", "caption": "dog paws are tan", "question": ["are there dog paws ?", "is there tan ?"], "prompt": "{} paws are tan"}, {"index": 1152, "image_id": 2317283, "entity": "dog", "caption": "dog has mouth open", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} has mouth open"}, {"index": 1153, "image_id": 2317283, "entity": "dog", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} is in a car."}, {"index": 1154, "image_id": 2317283, "entity": "dog", "caption": "The dog's eyes are open.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open."}, {"index": 1155, "image_id": 2317002, "entity": "dog", "caption": "black whiskers are on the dog", "question": ["are there black whiskers ?", "is there the dog ?"], "prompt": "black whiskers are on the {}"}, {"index": 1156, "image_id": 2317002, "entity": "dog", "caption": "brown nails are on the dog", "question": ["are there brown nails ?", "is there the dog ?"], "prompt": "brown nails are on the {}"}, {"index": 1157, "image_id": 2316886, "entity": "dog", "caption": "the dog appears to be enjoying his snack", "question": ["is there the dog ?", "is there his snack ?"], "prompt": "the {} appears to be enjoying his snack"}, {"index": 1158, "image_id": 2316480, "entity": "dog", "caption": "nose of dog is black ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black "}, {"index": 1159, "image_id": 2316480, "entity": "dog", "caption": "dog sits on couch", "question": ["is there dog ?", "is there couch ?"], "prompt": "{} sits on couch"}, {"index": 1160, "image_id": 2316480, "entity": "dog", "caption": "dog has pink dress", "question": ["is there dog ?", "is there pink dress ?"], "prompt": "{} has pink dress"}, {"index": 1161, "image_id": 2316349, "entity": "dog", "caption": "dog ear on right", "question": ["is there dog ear ?"], "prompt": "{} ear on right"}, {"index": 1162, "image_id": 2316242, "entity": "dog", "caption": "a dog rests on a person", "question": ["is there a dog ?", "is there a person ?"], "prompt": "a {} rests on a person"}, {"index": 1163, "image_id": 2316242, "entity": "dog", "caption": "The dog is wearing a hat.", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} is wearing a hat."}, {"index": 1164, "image_id": 2316242, "entity": "dog", "caption": "The hat is on the dog's head.", "question": ["is there the hat ?", "is there the dog's head ?"], "prompt": "The hat is on the {}'s head."}, {"index": 1165, "image_id": 2316242, "entity": "dog", "caption": "The dog has whiskers.", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "The {} has whiskers."}, {"index": 1166, "image_id": 2316170, "entity": "dog", "caption": "small dog with eyes closed", "question": ["is there small dog ?", "are there eyes ?"], "prompt": "small {} with eyes closed"}, {"index": 1167, "image_id": 2315589, "entity": "dog", "caption": "The dogs nose is black in color. ", "question": ["are there the dogs nose ?", "is there color ?"], "prompt": "The {}s nose is black in color. "}, {"index": 1168, "image_id": 2315589, "entity": "dog", "caption": "The dog has a black nose. ", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose. "}, {"index": 1169, "image_id": 2315589, "entity": "dog", "caption": "The dogs eye is brown.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is brown."}, {"index": 1170, "image_id": 2315589, "entity": "dog", "caption": "The dogs ear is black. ", "question": ["are there the dogs ?"], "prompt": "The {}s ear is black. "}, {"index": 1171, "image_id": 2315468, "entity": "dog", "caption": "dog has a leg", "question": ["is there dog ?", "is there a leg ?"], "prompt": "{} has a leg"}, {"index": 1172, "image_id": 2315468, "entity": "dog", "caption": "the dog carries a green frisbee", "question": ["is there the dog ?", "is there a green frisbee ?"], "prompt": "the {} carries a green frisbee"}, {"index": 1173, "image_id": 2315468, "entity": "dog", "caption": "the dog's collar is green", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is green"}, {"index": 1174, "image_id": 2315447, "entity": "dog", "caption": "A dogs left black eye. ", "question": ["are there a dogs ?", "is there black eye ?"], "prompt": "A {}s left black eye. "}, {"index": 1175, "image_id": 2315441, "entity": "dog", "caption": "The 2 dogs lay on the bed together", "question": ["are there the 2 dogs ?", "is there the bed ?"], "prompt": "The 2 {}s lay on the bed together"}, {"index": 1176, "image_id": 2315441, "entity": "dog", "caption": "The dog is laying on the other dog", "question": ["is there the dog ?", "is there the other dog ?"], "prompt": "The {} is laying on the other {}"}, {"index": 1177, "image_id": 2315441, "entity": "dog", "caption": "The dogs are on the comfortable looking bed", "question": ["are there the dogs ?", "is there the comfortable looking bed ?"], "prompt": "The {}s are on the comfortable looking bed"}, {"index": 1178, "image_id": 2315441, "entity": "dog", "caption": "The dog has a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} has a blue collar"}, {"index": 1179, "image_id": 2315441, "entity": "dog", "caption": "Brown dogs left eye.", "question": ["are there brown dogs ?", "is there eye ?"], "prompt": "Brown {}s left eye."}, {"index": 1180, "image_id": 2414390, "entity": "dog", "caption": "the dog is playing with a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is playing with a frisbee"}, {"index": 1181, "image_id": 2414390, "entity": "dog", "caption": "the dog has brown ears", "question": ["is there the dog ?", "are there brown ears ?"], "prompt": "the {} has brown ears"}, {"index": 1182, "image_id": 2414304, "entity": "dog", "caption": "A dog is in the picture.", "question": ["is there a dog ?", "is there the picture ?"], "prompt": "A {} is in the picture."}, {"index": 1183, "image_id": 2414304, "entity": "dog", "caption": "The dog has on a black collar.", "question": ["is there the dog ?", "is there a black collar ?"], "prompt": "The {} has on a black collar."}, {"index": 1184, "image_id": 2414304, "entity": "dog", "caption": "The dog is standing in the sand.", "question": ["is there the dog ?", "is there the sand ?"], "prompt": "The {} is standing in the sand."}, {"index": 1185, "image_id": 2414304, "entity": "dog", "caption": "The dog is staring at his master.", "question": ["is there the dog ?", "is there his master ?"], "prompt": "The {} is staring at his master."}, {"index": 1186, "image_id": 2412940, "entity": "dog", "caption": "Sun light over the body of dogs", "question": ["is there sun light ?", "is there the body ?", "are there dogs ?"], "prompt": "Sun light over the body of {}s"}, {"index": 1187, "image_id": 2412940, "entity": "dog", "caption": "the dogs eyes are wide apart", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are wide apart"}, {"index": 1188, "image_id": 2412718, "entity": "dog", "caption": "the dog is resting on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is resting on a blanket"}, {"index": 1189, "image_id": 2412718, "entity": "dog", "caption": "the dog has his ears bent", "question": ["is there the dog ?", "are there his ears ?"], "prompt": "the {} has his ears bent"}, {"index": 1190, "image_id": 2412718, "entity": "dog", "caption": "the dog has pretty blue eyes", "question": ["is there the dog ?", "are there pretty blue eyes ?"], "prompt": "the {} has pretty blue eyes"}, {"index": 1191, "image_id": 2412718, "entity": "dog", "caption": "the dog has brown feet", "question": ["is there the dog ?", "are there brown feet ?"], "prompt": "the {} has brown feet"}, {"index": 1192, "image_id": 2412718, "entity": "dog", "caption": "The dog is sitting on blankets", "question": ["is there the dog ?", "are there blankets ?"], "prompt": "The {} is sitting on blankets"}, {"index": 1193, "image_id": 2412718, "entity": "dog", "caption": "The dog has 2 ears", "question": ["is there the dog ?", "are there 2 ears ?"], "prompt": "The {} has 2 ears"}, {"index": 1194, "image_id": 2412718, "entity": "dog", "caption": "The dog has a tail", "question": ["is there the dog ?", "is there a tail ?"], "prompt": "The {} has a tail"}, {"index": 1195, "image_id": 2412718, "entity": "dog", "caption": "The dog's eyes are blue", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are blue"}, {"index": 1196, "image_id": 2412718, "entity": "dog", "caption": "The dog has 4 paws", "question": ["is there the dog ?", "are there 4 paws ?"], "prompt": "The {} has 4 paws"}, {"index": 1197, "image_id": 2412430, "entity": "dog", "caption": "A dog is laying down on a couch.", "question": ["is there a dog ?", "is there a couch ?"], "prompt": "A {} is laying down on a couch."}, {"index": 1198, "image_id": 2412430, "entity": "dog", "caption": "The dog's nose is black in color.", "question": ["is there the dog's nose ?", "is there color ?"], "prompt": "The {}'s nose is black in color."}, {"index": 1199, "image_id": 2412382, "entity": "dog", "caption": "the dogs are on the seat", "question": ["are there the dogs ?", "is there the seat ?"], "prompt": "the {}s are on the seat"}, {"index": 1200, "image_id": 2412382, "entity": "dog", "caption": "the dogs eyes are black", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are black"}, {"index": 1201, "image_id": 2412215, "entity": "dog", "caption": "The white sheet the dog's paw and mouth is resting on.", "question": ["is there the dog's paw ?", "is there mouth ?"], "prompt": "The white sheet the {}'s paw and mouth is resting on."}, {"index": 1202, "image_id": 2412215, "entity": "dog", "caption": "The black dog's head resting on the bed.", "question": ["is there the black dog's head ?", "is there the bed ?"], "prompt": "The black {}'s head resting on the bed."}, {"index": 1203, "image_id": 2411734, "entity": "dog", "caption": "A dog with a white nose looks at a birthday cupcake", "question": ["is there a dog ?", "is there a white nose ?", "is there a birthday cupcake ?"], "prompt": "A {} with a white nose looks at a birthday cupcake"}, {"index": 1204, "image_id": 2411533, "entity": "dog", "caption": "White mouse and cat sitting on dog.", "question": ["is there cat ?", "is there dog ?"], "prompt": "White mouse and cat sitting on {}."}, {"index": 1205, "image_id": 2411533, "entity": "dog", "caption": "cat is on a dogs back", "question": ["is there cat ?", "are there a dogs ?"], "prompt": "cat is on a {}s back"}, {"index": 1206, "image_id": 2411533, "entity": "dog", "caption": "dog is walking on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} is walking on sidewalk"}, {"index": 1207, "image_id": 2411533, "entity": "dog", "caption": "dog is wearing a brown vest", "question": ["is there dog ?", "is there a brown vest ?"], "prompt": "{} is wearing a brown vest"}, {"index": 1208, "image_id": 2411533, "entity": "dog", "caption": "a cat is on the dog's back", "question": ["is there a cat ?", "is there the dog ?"], "prompt": "a cat is on the {}'s back"}, {"index": 1209, "image_id": 2411533, "entity": "dog", "caption": "a cat and a mouse are both on a dog", "question": ["is there a cat ?", "is there a mouse ?", "is there a dog ?"], "prompt": "a cat and a mouse are both on a {}"}, {"index": 1210, "image_id": 2411533, "entity": "dog", "caption": "the dog is wearing a vest", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "the {} is wearing a vest"}, {"index": 1211, "image_id": 2415243, "entity": "dog", "caption": "a dog lays on a television remote", "question": ["is there a dog ?", "is there a television remote ?"], "prompt": "a {} lays on a television remote"}, {"index": 1212, "image_id": 2415243, "entity": "dog", "caption": "dog takes a nap on a couch", "question": ["is there dog ?", "is there a nap ?", "is there a couch ?"], "prompt": "{} takes a nap on a couch"}, {"index": 1213, "image_id": 2415532, "entity": "dog", "caption": "Elbow on the far arm washing the dog.", "question": ["is there the far arm ?", "is there the dog ?"], "prompt": "Elbow on the far arm washing the {}."}, {"index": 1214, "image_id": 2416178, "entity": "dog", "caption": "the dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye"}, {"index": 1215, "image_id": 2416388, "entity": "dog", "caption": "pink bow the dog is wearing", "question": ["is there the dog ?"], "prompt": "pink bow the {} is wearing"}, {"index": 1216, "image_id": 2416388, "entity": "dog", "caption": "dog getting teeth brushed", "question": ["is there dog ?", "are there teeth ?"], "prompt": "{} getting teeth brushed"}, {"index": 1217, "image_id": 2416731, "entity": "dog", "caption": "the dog has black hair", "question": ["is there the dog ?", "is there black hair ?"], "prompt": "the {} has black hair"}, {"index": 1218, "image_id": 2416731, "entity": "dog", "caption": "the dog has pointy teeth", "question": ["is there the dog ?", "are there pointy teeth ?"], "prompt": "the {} has pointy teeth"}, {"index": 1219, "image_id": 2416944, "entity": "dog", "caption": "grassy field dog is playing in", "question": ["is there grassy field dog ?"], "prompt": "grassy field {} is playing in"}, {"index": 1220, "image_id": 2417227, "entity": "dog", "caption": "The sofa the dog is leaning on.", "question": ["is there the sofa ?", "is there the dog ?"], "prompt": "The sofa the {} is leaning on."}, {"index": 1221, "image_id": 2417721, "entity": "dog", "caption": "dog has brown legs", "question": ["is there dog ?", "are there brown legs ?"], "prompt": "{} has brown legs"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02089078.json b/data/imagenet/compositions/prompts/n02089078.json
new file mode 100644
index 0000000000000000000000000000000000000000..db9508f2d519c121841f29d5b620aaf093b952ac
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02089078.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 561, "entity": "dog", "caption": "dog has a black nose", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose"}, {"index": 1, "image_id": 561, "entity": "dog", "caption": "dog's ears are up", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are up"}, {"index": 2, "image_id": 561, "entity": "dog", "caption": "dog's eyes are dark", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are dark"}, {"index": 3, "image_id": 3535, "entity": "dog", "caption": "The dog has four legs.", "question": ["is there the dog ?", "are there four legs ?"], "prompt": "The {} has four legs."}, {"index": 4, "image_id": 3535, "entity": "dog", "caption": "tongue hanging out a dog's mouth", "question": ["is there tongue ?", "is there a dog's mouth ?"], "prompt": "tongue hanging out a {}'s mouth"}, {"index": 5, "image_id": 3553, "entity": "dog", "caption": "dog is sitting in grass", "question": ["is there dog ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 6, "image_id": 3553, "entity": "dog", "caption": "dog is mostly brown", "question": ["is there dog ?"], "prompt": "{} is mostly brown"}, {"index": 7, "image_id": 3553, "entity": "dog", "caption": "the dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "the {} has a black nose"}, {"index": 8, "image_id": 3553, "entity": "dog", "caption": "the brown dog has a long brown tail", "question": ["is there the brown dog ?", "is there a long brown tail ?"], "prompt": "the brown {} has a long brown tail"}, {"index": 9, "image_id": 3553, "entity": "dog", "caption": "the dog has large brown paws", "question": ["is there the dog ?", "are there large brown paws ?"], "prompt": "the {} has large brown paws"}, {"index": 10, "image_id": 3553, "entity": "dog", "caption": "a dog with its mouth open", "question": ["is there a dog ?", "is there its mouth ?"], "prompt": "a {} with its mouth open"}, {"index": 11, "image_id": 3752, "entity": "dog", "caption": "the dogs tail is black ", "question": ["are there the dogs tail ?"], "prompt": "the {}s tail is black "}, {"index": 12, "image_id": 3752, "entity": "dog", "caption": "the dogs feet is black ", "question": ["are there the dogs ?"], "prompt": "the {}s feet is black "}, {"index": 13, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat are standing together on the sidewalk", "question": ["is there a dog ?", "is there a cat ?", "is there the sidewalk ?"], "prompt": "A {} and a cat are standing together on the sidewalk"}, {"index": 14, "image_id": 107934, "entity": "dog", "caption": "dog has a brown patch", "question": ["is there dog ?", "is there a brown patch ?"], "prompt": "{} has a brown patch"}, {"index": 15, "image_id": 107934, "entity": "dog", "caption": "dog has a blue rope tied", "question": ["is there dog ?", "is there a blue rope ?"], "prompt": "{} has a blue rope tied"}, {"index": 16, "image_id": 107934, "entity": "dog", "caption": "the dog has a blue leash", "question": ["is there the dog ?", "is there a blue leash ?"], "prompt": "the {} has a blue leash"}, {"index": 17, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat walk together.", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} and a cat walk together."}, {"index": 18, "image_id": 107934, "entity": "dog", "caption": "Both dog and cat are in the middle of the frame.", "question": ["is there both dog ?", "is there cat ?", "is there the middle ?", "is there the frame ?"], "prompt": "Both {} and cat are in the middle of the frame."}, {"index": 19, "image_id": 107934, "entity": "dog", "caption": "The dog is looking at the camera.", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera."}, {"index": 20, "image_id": 1159975, "entity": "dog", "caption": "The gray collar the dog is wearing.", "question": ["is there the gray collar ?", "is there the dog ?"], "prompt": "The gray collar the {} is wearing."}, {"index": 21, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown and white sweater", "question": ["is there the dog ?", "is there a brown and white sweater ?"], "prompt": "The {} has a brown and white sweater"}, {"index": 22, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "The {} has a brown nose"}, {"index": 23, "image_id": 2414023, "entity": "dog", "caption": "the dog has a messed up eye", "question": ["is there the dog ?", "is there a messed up eye ?"], "prompt": "the {} has a messed up eye"}, {"index": 24, "image_id": 2414023, "entity": "dog", "caption": "the dog is wearing a sweater", "question": ["is there the dog ?", "is there a sweater ?"], "prompt": "the {} is wearing a sweater"}, {"index": 25, "image_id": 2414023, "entity": "dog", "caption": "the dog has a purple collar", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "the {} has a purple collar"}, {"index": 26, "image_id": 2413171, "entity": "dog", "caption": "Young man hold a cute dog", "question": ["is there young man ?", "is there a cute dog ?"], "prompt": "Young man hold a cute {}"}, {"index": 27, "image_id": 2412707, "entity": "dog", "caption": "black fur grows on a dog", "question": ["is there black fur ?", "is there a dog ?"], "prompt": "black fur grows on a {}"}, {"index": 28, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is sitting in the ground"}, {"index": 29, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is sitting in the floor"}, {"index": 30, "image_id": 2412546, "entity": "dog", "caption": "The dog has a collar on.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar on."}, {"index": 31, "image_id": 2412049, "entity": "dog", "caption": "the dog is long hair", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "the {} is long hair"}, {"index": 32, "image_id": 2412049, "entity": "dog", "caption": "the dog has some white hair", "question": ["is there the dog ?", "is there some white hair ?"], "prompt": "the {} has some white hair"}, {"index": 33, "image_id": 2412049, "entity": "dog", "caption": "the dog has some black hair", "question": ["is there the dog ?", "is there some black hair ?"], "prompt": "the {} has some black hair"}, {"index": 34, "image_id": 2412049, "entity": "dog", "caption": "the dog has some brown hair", "question": ["is there the dog ?", "is there some brown hair ?"], "prompt": "the {} has some brown hair"}, {"index": 35, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is shiny", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is shiny"}, {"index": 36, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is black"}, {"index": 37, "image_id": 2412049, "entity": "dog", "caption": "this are dog canines", "question": ["are there dog canines ?"], "prompt": "this are {} canines"}, {"index": 38, "image_id": 2412049, "entity": "dog", "caption": "this is the dogs fur", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "this is the {}s fur"}, {"index": 39, "image_id": 2411402, "entity": "dog", "caption": "Bed the dog is sleeping on", "question": ["is there the dog ?"], "prompt": "Bed the {} is sleeping on"}, {"index": 40, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar"}, {"index": 41, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} is wearing a chain"}, {"index": 42, "image_id": 2411357, "entity": "dog", "caption": "the dog is watching the oven", "question": ["is there the dog ?", "is there the oven ?"], "prompt": "the {} is watching the oven"}, {"index": 43, "image_id": 2411357, "entity": "dog", "caption": "the dog has a chain around its neck", "question": ["is there the dog ?", "is there a chain ?", "is there its neck ?"], "prompt": "the {} has a chain around its neck"}, {"index": 44, "image_id": 2411357, "entity": "dog", "caption": "the dog has two ears", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "the {} has two ears"}, {"index": 45, "image_id": 2411201, "entity": "dog", "caption": "A dog is on a moped.", "question": ["is there a dog ?"], "prompt": "A {} is on a moped."}, {"index": 46, "image_id": 2411201, "entity": "dog", "caption": "The dog has a red leash.", "question": ["is there the dog ?", "is there a red leash ?"], "prompt": "The {} has a red leash."}, {"index": 47, "image_id": 2411201, "entity": "dog", "caption": "The dog's ears are up.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are up."}, {"index": 48, "image_id": 2411201, "entity": "dog", "caption": "The dog's tail is hanging down.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is hanging down."}, {"index": 49, "image_id": 2411201, "entity": "dog", "caption": "a large dog sits on a scooter", "question": ["is there a large dog ?", "is there a scooter ?"], "prompt": "a large {} sits on a scooter"}, {"index": 50, "image_id": 2411201, "entity": "dog", "caption": "a dog has a red leash", "question": ["is there a dog ?", "is there a red leash ?"], "prompt": "a {} has a red leash"}, {"index": 51, "image_id": 2411201, "entity": "dog", "caption": "The dog on the scooter has a long tail", "question": ["is there the dog ?", "is there the scooter ?", "is there a long tail ?"], "prompt": "The {} on the scooter has a long tail"}, {"index": 52, "image_id": 2411201, "entity": "dog", "caption": "Brown dog on leash on moped", "question": ["is there brown dog ?", "is there leash ?"], "prompt": "Brown {} on leash on moped"}, {"index": 53, "image_id": 2411201, "entity": "dog", "caption": "Red moped with dog", "question": ["is there dog ?"], "prompt": "Red moped with {}"}, {"index": 54, "image_id": 2410967, "entity": "dog", "caption": "a dog's ears bent over", "question": ["are there a dog's ears ?"], "prompt": "a {}'s ears bent over"}, {"index": 55, "image_id": 2410840, "entity": "dog", "caption": "a dog's mouth biting a frisbee", "question": ["is there a dog's mouth ?", "is there a frisbee ?"], "prompt": "a {}'s mouth biting a frisbee"}, {"index": 56, "image_id": 2410817, "entity": "dog", "caption": "black and tan dog jumping to catch a frisbee", "question": ["is there black and tan dog ?", "is there a frisbee ?"], "prompt": "black and tan {} jumping to catch a frisbee"}, {"index": 57, "image_id": 2410817, "entity": "dog", "caption": "leaping dog going after a frisbee", "question": ["is there leaping dog ?", "is there a frisbee ?"], "prompt": "leaping {} going after a frisbee"}, {"index": 58, "image_id": 2410817, "entity": "dog", "caption": "German shepherd dog fetching a frisbee. ", "question": ["is there german shepherd dog ?", "is there a frisbee ?"], "prompt": "German shepherd {} fetching a frisbee. "}, {"index": 59, "image_id": 2409859, "entity": "dog", "caption": "dog's eyes appear to be different colors", "question": ["are there dog's eyes ?", "are there different colors ?"], "prompt": "{}'s eyes appear to be different colors"}, {"index": 60, "image_id": 2409859, "entity": "dog", "caption": "dog has black nose", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose"}, {"index": 61, "image_id": 2409859, "entity": "dog", "caption": "the dog is wearing a cap", "question": ["is there the dog ?", "is there a cap ?"], "prompt": "the {} is wearing a cap"}, {"index": 62, "image_id": 2409859, "entity": "dog", "caption": "Tongue of dog is pink", "question": ["is there tongue ?", "is there dog ?"], "prompt": "Tongue of {} is pink"}, {"index": 63, "image_id": 2409626, "entity": "dog", "caption": "dog has two eyes", "question": ["is there dog ?", "are there two eyes ?"], "prompt": "{} has two eyes"}, {"index": 64, "image_id": 2409626, "entity": "dog", "caption": "the dog is wearing pirate hat", "question": ["is there the dog ?", "is there pirate hat ?"], "prompt": "the {} is wearing pirate hat"}, {"index": 65, "image_id": 2409304, "entity": "dog", "caption": "White left foot of the dog", "question": ["is there white left foot ?", "is there the dog ?"], "prompt": "White left foot of the {}"}, {"index": 66, "image_id": 2409304, "entity": "dog", "caption": "dog catch the frisbee", "question": ["is there dog ?", "is there the frisbee ?"], "prompt": "{} catch the frisbee"}, {"index": 67, "image_id": 2409304, "entity": "dog", "caption": "dog's nose is black", "question": ["is there dog's nose ?"], "prompt": "{}'s nose is black"}, {"index": 68, "image_id": 2409304, "entity": "dog", "caption": "dog's ears are black", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are black"}, {"index": 69, "image_id": 2409304, "entity": "dog", "caption": "dog's paws are white", "question": ["are there dog's paws ?"], "prompt": "{}'s paws are white"}, {"index": 70, "image_id": 2409103, "entity": "dog", "caption": "the dog is wearing a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "the {} is wearing a blue collar"}, {"index": 71, "image_id": 2409103, "entity": "dog", "caption": "a book by T.C. Boyle is next to the dog", "question": ["is there a book ?", "is there the dog ?"], "prompt": "a book by T.C. Boyle is next to the {}"}, {"index": 72, "image_id": 2409103, "entity": "dog", "caption": "the dog is laying on top of an embroidered sheet", "question": ["is there the dog ?", "is there top ?", "is there an embroidered sheet ?"], "prompt": "the {} is laying on top of an embroidered sheet"}, {"index": 73, "image_id": 2408483, "entity": "dog", "caption": "Carpet is light in color under dog", "question": ["is there carpet ?", "is there color ?", "is there dog ?"], "prompt": "Carpet is light in color under {}"}, {"index": 74, "image_id": 2408383, "entity": "dog", "caption": "The dog and cat are looking in the same direction", "question": ["is there the dog ?", "is there cat ?", "is there the same direction ?"], "prompt": "The {} and cat are looking in the same direction"}, {"index": 75, "image_id": 2408210, "entity": "dog", "caption": "Nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "Nose of {} is black"}, {"index": 76, "image_id": 2408210, "entity": "dog", "caption": "Ears of dog is black and tan", "question": ["are there ears ?", "is there dog ?"], "prompt": "Ears of {} is black and tan"}, {"index": 77, "image_id": 2408210, "entity": "dog", "caption": "Eyes of dog are open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "Eyes of {} are open"}, {"index": 78, "image_id": 2408210, "entity": "dog", "caption": "three dogs are lying on a bed", "question": ["are there three dogs ?", "is there a bed ?"], "prompt": "three {}s are lying on a bed"}, {"index": 79, "image_id": 2408210, "entity": "dog", "caption": "the dog has his eyes open", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "the {} has his eyes open"}, {"index": 80, "image_id": 2408037, "entity": "dog", "caption": "the dog has red eyes", "question": ["is there the dog ?", "are there red eyes ?"], "prompt": "the {} has red eyes"}, {"index": 81, "image_id": 2408037, "entity": "dog", "caption": "the dog is holding carrot toy", "question": ["is there the dog ?", "is there carrot toy ?"], "prompt": "the {} is holding carrot toy"}, {"index": 82, "image_id": 2408037, "entity": "dog", "caption": "the dog has green ribbon on its nech", "question": ["is there the dog ?", "is there green ribbon ?"], "prompt": "the {} has green ribbon on its nech"}, {"index": 83, "image_id": 2408037, "entity": "dog", "caption": "a green toy is beside the dog", "question": ["is there a green toy ?", "is there the dog ?"], "prompt": "a green toy is beside the {}"}, {"index": 84, "image_id": 2408037, "entity": "dog", "caption": "the dog has brown legs", "question": ["is there the dog ?", "are there brown legs ?"], "prompt": "the {} has brown legs"}, {"index": 85, "image_id": 2407835, "entity": "dog", "caption": "Brown dog laying on a bed with eyes open.", "question": ["is there brown dog ?", "is there a bed ?", "are there eyes ?"], "prompt": "Brown {} laying on a bed with eyes open."}, {"index": 86, "image_id": 2407835, "entity": "dog", "caption": "dog is lying down.", "question": ["is there dog ?"], "prompt": "{} is lying down."}, {"index": 87, "image_id": 2407835, "entity": "dog", "caption": "dog is lying in cot.", "question": ["is there dog ?", "is there cot ?"], "prompt": "{} is lying in cot."}, {"index": 88, "image_id": 2407835, "entity": "dog", "caption": "dog nose is black color.", "question": ["is there dog nose ?", "is there black color ?"], "prompt": "{} nose is black color."}, {"index": 89, "image_id": 2407825, "entity": "dog", "caption": "the dog has two eyes", "question": ["is there the dog ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 90, "image_id": 2407825, "entity": "dog", "caption": "dog is wearing a collar", "question": ["is there dog ?", "is there a collar ?"], "prompt": "{} is wearing a collar"}, {"index": 91, "image_id": 2407825, "entity": "dog", "caption": "the dog is on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is on the couch"}, {"index": 92, "image_id": 2407825, "entity": "dog", "caption": "the dog has whiskers", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers"}, {"index": 93, "image_id": 2407234, "entity": "dog", "caption": "the dog is on the beanbag", "question": ["is there the dog ?", "is there the beanbag ?"], "prompt": "the {} is on the beanbag"}, {"index": 94, "image_id": 2407234, "entity": "dog", "caption": "a dog toy thats a rope", "question": ["is there a dog toy ?", "is there a rope ?"], "prompt": "a {} toy thats a rope"}, {"index": 95, "image_id": 2407234, "entity": "dog", "caption": "the dog is on bean bag", "question": ["is there the dog ?", "is there bean bag ?"], "prompt": "the {} is on bean bag"}, {"index": 96, "image_id": 2407234, "entity": "dog", "caption": "the dog is sad", "question": ["is there the dog ?"], "prompt": "the {} is sad"}, {"index": 97, "image_id": 2406999, "entity": "dog", "caption": "the dog has goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "the {} has goggles"}, {"index": 98, "image_id": 2406999, "entity": "dog", "caption": "The dog has a vest on", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "The {} has a vest on"}, {"index": 99, "image_id": 2406999, "entity": "dog", "caption": "The dog has goggles on", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} has goggles on"}, {"index": 100, "image_id": 2406999, "entity": "dog", "caption": "The dogs tongue is out. ", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is out. "}, {"index": 101, "image_id": 2406384, "entity": "dog", "caption": "The dog has amber-coloured eyes", "question": ["is there the dog ?", "are there amber-coloured eyes ?"], "prompt": "The {} has amber-coloured eyes"}, {"index": 102, "image_id": 2406384, "entity": "dog", "caption": "The dog's hat is courdoroy", "question": ["is there the dog's hat ?"], "prompt": "The {}'s hat is courdoroy"}, {"index": 103, "image_id": 2406384, "entity": "dog", "caption": "dog has collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} has collar"}, {"index": 104, "image_id": 2406384, "entity": "dog", "caption": "dog has whiskers", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers"}, {"index": 105, "image_id": 2406384, "entity": "dog", "caption": "dog has black lips", "question": ["is there dog ?", "are there black lips ?"], "prompt": "{} has black lips"}, {"index": 106, "image_id": 2406275, "entity": "dog", "caption": "dogs nose is black", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black"}, {"index": 107, "image_id": 2406275, "entity": "dog", "caption": "the dog has light brown eyes", "question": ["is there the dog ?", "are there light brown eyes ?"], "prompt": "the {} has light brown eyes"}, {"index": 108, "image_id": 2406275, "entity": "dog", "caption": "the dog has pointy ears", "question": ["is there the dog ?", "are there pointy ears ?"], "prompt": "the {} has pointy ears"}, {"index": 109, "image_id": 2406275, "entity": "dog", "caption": "something fuzzy is next to the dog", "question": ["is there something ?", "is there the dog ?"], "prompt": "something fuzzy is next to the {}"}, {"index": 110, "image_id": 2406275, "entity": "dog", "caption": "the dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "the {} has brown eyes"}, {"index": 111, "image_id": 2406275, "entity": "dog", "caption": "the dog is lying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is lying on a blanket"}, {"index": 112, "image_id": 2405633, "entity": "dog", "caption": "Dog kennel with dog.", "question": ["is there dog kennel ?", "is there dog ?"], "prompt": "Dog kennel with {}."}, {"index": 113, "image_id": 2405633, "entity": "dog", "caption": "The dog is lying on two blue and white pillows.", "question": ["is there the dog ?", "are there two blue and white pillows ?"], "prompt": "The {} is lying on two blue and white pillows."}, {"index": 114, "image_id": 2405484, "entity": "dog", "caption": "the dog has a pink tongue", "question": ["is there the dog ?", "is there a pink tongue ?"], "prompt": "the {} has a pink tongue"}, {"index": 115, "image_id": 2405484, "entity": "dog", "caption": "the dog is walking in the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is walking in the grass"}, {"index": 116, "image_id": 2405484, "entity": "dog", "caption": "the dog is wearing a metal collar", "question": ["is there the dog ?", "is there a metal collar ?"], "prompt": "the {} is wearing a metal collar"}, {"index": 117, "image_id": 2405484, "entity": "dog", "caption": "the dog is standing on the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is standing on the grass"}, {"index": 118, "image_id": 2405484, "entity": "dog", "caption": "the dog has a collar on", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar on"}, {"index": 119, "image_id": 2405484, "entity": "dog", "caption": "the dog has his tongue sticking out", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "the {} has his tongue sticking out"}, {"index": 120, "image_id": 2405484, "entity": "dog", "caption": "the dog is waggling his tail", "question": ["is there the dog ?", "is there his tail ?"], "prompt": "the {} is waggling his tail"}, {"index": 121, "image_id": 2405484, "entity": "dog", "caption": "the dog's collar is a chain", "question": ["is there the dog's collar ?", "is there a chain ?"], "prompt": "the {}'s collar is a chain"}, {"index": 122, "image_id": 2405484, "entity": "dog", "caption": "dog's tongue is pink", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink"}, {"index": 123, "image_id": 2405484, "entity": "dog", "caption": "dog is standing in the grass", "question": ["is there dog ?", "is there the grass ?"], "prompt": "{} is standing in the grass"}, {"index": 124, "image_id": 2405469, "entity": "dog", "caption": "The dog is wearing a collar. ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar. "}, {"index": 125, "image_id": 2405469, "entity": "dog", "caption": "The dog has it's head down. ", "question": ["is there the dog ?", "is there head ?"], "prompt": "The {} has it's head down. "}, {"index": 126, "image_id": 2405469, "entity": "dog", "caption": "the dog has sharp teeth", "question": ["is there the dog ?", "are there sharp teeth ?"], "prompt": "the {} has sharp teeth"}, {"index": 127, "image_id": 2405469, "entity": "dog", "caption": "the dog is on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground"}, {"index": 128, "image_id": 2405469, "entity": "dog", "caption": "dog is barking to the other dog", "question": ["is there dog ?", "is there the other dog ?"], "prompt": "{} is barking to the other {}"}, {"index": 129, "image_id": 2405469, "entity": "dog", "caption": "Dog ready to bite another dog", "question": ["is there dog ?", "is there another dog ?"], "prompt": "Dog ready to bite another {}"}, {"index": 130, "image_id": 2405369, "entity": "dog", "caption": "The dog is sleeping in a bed. ", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "The {} is sleeping in a bed. "}, {"index": 131, "image_id": 2405369, "entity": "dog", "caption": "The dog's nose hangs over the bed's edge.", "question": ["is there the dog's nose ?", "is there the bed's edge ?"], "prompt": "The {}'s nose hangs over the bed's edge."}, {"index": 132, "image_id": 2405369, "entity": "dog", "caption": "the dog is on a bed", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "the {} is on a bed"}, {"index": 133, "image_id": 2405369, "entity": "dog", "caption": "the dog sleeps on a tan and white dog bed", "question": ["is there the dog ?", "is there a tan and white dog bed ?"], "prompt": "the {} sleeps on a tan and white {} bed"}, {"index": 134, "image_id": 2405369, "entity": "dog", "caption": "the dog lays curled up on a plush dog bed", "question": ["is there the dog ?", "is there a plush dog bed ?"], "prompt": "the {} lays curled up on a plush {} bed"}, {"index": 135, "image_id": 2405369, "entity": "dog", "caption": "dogs ear on bottom left", "question": ["are there dogs ?", "is there bottom ?"], "prompt": "{}s ear on bottom left"}, {"index": 136, "image_id": 2405369, "entity": "dog", "caption": "White dog curled up sleeping on its bed", "question": ["is there white dog ?", "is there its bed ?"], "prompt": "White {} curled up sleeping on its bed"}, {"index": 137, "image_id": 2405343, "entity": "dog", "caption": "the dog has a Santa hat on his head", "question": ["is there the dog ?", "is there a santa hat ?", "is there his head ?"], "prompt": "the {} has a Santa hat on his head"}, {"index": 138, "image_id": 2405343, "entity": "dog", "caption": "the dog has a black eye", "question": ["is there the dog ?", "is there a black eye ?"], "prompt": "the {} has a black eye"}, {"index": 139, "image_id": 2405343, "entity": "dog", "caption": "the nose of the dog is black", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose of the {} is black"}, {"index": 140, "image_id": 2405343, "entity": "dog", "caption": "the fur on the dog is black and white ", "question": ["is there the fur ?", "is there the dog ?"], "prompt": "the fur on the {} is black and white "}, {"index": 141, "image_id": 2405343, "entity": "dog", "caption": "the dog has a white chest", "question": ["is there the dog ?", "is there a white chest ?"], "prompt": "the {} has a white chest"}, {"index": 142, "image_id": 2405343, "entity": "dog", "caption": "the dog's ear is black", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is black"}, {"index": 143, "image_id": 2405343, "entity": "dog", "caption": "the dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open"}, {"index": 144, "image_id": 2404815, "entity": "dog", "caption": "a cat sleeps on a dog", "question": ["is there a cat ?", "is there a dog ?"], "prompt": "a cat sleeps on a {}"}, {"index": 145, "image_id": 2404815, "entity": "dog", "caption": "a cat and dog lie on a wooden floor", "question": ["is there a cat ?", "is there dog ?", "is there a wooden floor ?"], "prompt": "a cat and {} lie on a wooden floor"}, {"index": 146, "image_id": 2404815, "entity": "dog", "caption": "the cat is laying on the dog", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "the cat is laying on the {}"}, {"index": 147, "image_id": 2404815, "entity": "dog", "caption": "the dog is laying on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is laying on the floor"}, {"index": 148, "image_id": 2404815, "entity": "dog", "caption": "the dog has something around its neck", "question": ["is there the dog ?", "is there something ?", "is there its neck ?"], "prompt": "the {} has something around its neck"}, {"index": 149, "image_id": 2404815, "entity": "dog", "caption": "the dog's ear is sticking up", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is sticking up"}, {"index": 150, "image_id": 2404815, "entity": "dog", "caption": "the dog is wearing a bandana on his neck", "question": ["is there the dog ?", "is there a bandana ?", "is there his neck ?"], "prompt": "the {} is wearing a bandana on his neck"}, {"index": 151, "image_id": 2404815, "entity": "dog", "caption": "the kitten is laying on top of the dog", "question": ["is there top ?", "is there the dog ?"], "prompt": "the kitten is laying on top of the {}"}, {"index": 152, "image_id": 2404815, "entity": "dog", "caption": "the dogs paws are white", "question": ["are there the dogs paws ?"], "prompt": "the {}s paws are white"}, {"index": 153, "image_id": 2404815, "entity": "dog", "caption": "the dog doesnt seem to mind the kitty laying on him", "question": ["is there the dog ?", "is there the kitty ?"], "prompt": "the {} doesnt seem to mind the kitty laying on him"}, {"index": 154, "image_id": 2404707, "entity": "dog", "caption": "A black dog sits on stairs", "question": ["is there a black dog ?", "are there stairs ?"], "prompt": "A black {} sits on stairs"}, {"index": 155, "image_id": 2404707, "entity": "dog", "caption": "The dog is wearing a red bow tie around its neck", "question": ["is there the dog ?", "is there a red bow tie ?", "is there its neck ?"], "prompt": "The {} is wearing a red bow tie around its neck"}, {"index": 156, "image_id": 2404707, "entity": "dog", "caption": "The dog has its head cocked to the side", "question": ["is there the dog ?", "is there its head ?", "is there the side ?"], "prompt": "The {} has its head cocked to the side"}, {"index": 157, "image_id": 2404707, "entity": "dog", "caption": "The dogs left hind leg is hanging off the stair", "question": ["are there the dogs ?", "is there hind leg ?", "is there the stair ?"], "prompt": "The {}s left hind leg is hanging off the stair"}, {"index": 158, "image_id": 2404163, "entity": "dog", "caption": "a woman is petting the dog", "question": ["is there a woman ?", "is there the dog ?"], "prompt": "a woman is petting the {}"}, {"index": 159, "image_id": 2404163, "entity": "dog", "caption": "the dog wears a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} wears a red collar"}, {"index": 160, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing red scarf", "question": ["is there person ?", "is there dog ?", "is there red scarf ?"], "prompt": "person petting {} is wearing red scarf"}, {"index": 161, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing a black dress", "question": ["is there person ?", "is there dog ?", "is there a black dress ?"], "prompt": "person petting {} is wearing a black dress"}, {"index": 162, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red and white scarf", "question": ["is there the dog ?", "is there a red and white scarf ?"], "prompt": "the {} is wearing a red and white scarf"}, {"index": 163, "image_id": 2404163, "entity": "dog", "caption": "the dog looks up at the woman", "question": ["is there the dog ?", "is there the woman ?"], "prompt": "the {} looks up at the woman"}, {"index": 164, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red halter style lead", "question": ["is there the dog ?", "is there a red halter style ?"], "prompt": "the {} is wearing a red halter style lead"}, {"index": 165, "image_id": 2404163, "entity": "dog", "caption": "a woman reaches down to a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "a woman reaches down to a {}"}, {"index": 166, "image_id": 2404163, "entity": "dog", "caption": "the woman in the red shoes pets the dog", "question": ["is there the woman ?", "are there the red shoes ?", "is there the dog ?"], "prompt": "the woman in the red shoes pets the {}"}, {"index": 167, "image_id": 2404075, "entity": "dog", "caption": "The dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket"}, {"index": 168, "image_id": 2403923, "entity": "dog", "caption": "the dog has a green collar", "question": ["is there the dog ?", "is there a green collar ?"], "prompt": "the {} has a green collar"}, {"index": 169, "image_id": 2403914, "entity": "dog", "caption": "This dog has his eyes closed", "question": ["is there this dog ?", "are there his eyes ?"], "prompt": "This {} has his eyes closed"}, {"index": 170, "image_id": 2403914, "entity": "dog", "caption": "This snauser dog has long ears", "question": ["is there this snauser dog ?", "are there long ears ?"], "prompt": "This snauser {} has long ears"}, {"index": 171, "image_id": 2403914, "entity": "dog", "caption": "This dog has a pug nose", "question": ["is there this dog ?", "is there a pug nose ?"], "prompt": "This {} has a pug nose"}, {"index": 172, "image_id": 2403914, "entity": "dog", "caption": "A dog's ear peeking out from the other side of its head", "question": ["is there a dog's ear ?", "is there the other side ?", "is there its head ?"], "prompt": "A {}'s ear peeking out from the other side of its head"}, {"index": 173, "image_id": 2403430, "entity": "dog", "caption": "The dog is laying on a couch.", "question": ["is there the dog ?", "is there a couch ?"], "prompt": "The {} is laying on a couch."}, {"index": 174, "image_id": 2403430, "entity": "dog", "caption": "black dog with eyes open", "question": ["is there black dog ?", "are there eyes ?"], "prompt": "black {} with eyes open"}, {"index": 175, "image_id": 2403430, "entity": "dog", "caption": "The dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes"}, {"index": 176, "image_id": 2403430, "entity": "dog", "caption": "The black dog likes laying on the couch", "question": ["is there the black dog ?", "is there the couch ?"], "prompt": "The black {} likes laying on the couch"}, {"index": 177, "image_id": 2403430, "entity": "dog", "caption": "the dog is laying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is laying on the couch"}, {"index": 178, "image_id": 2403430, "entity": "dog", "caption": "the dog's eye is brown", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is brown"}, {"index": 179, "image_id": 2403359, "entity": "dog", "caption": "a dog and a horse share an Eskimo kiss", "question": ["is there a dog ?", "is there a horse share ?"], "prompt": "a {} and a horse share an Eskimo kiss"}, {"index": 180, "image_id": 2403245, "entity": "dog", "caption": "large brown dog leashed to chair", "question": ["is there large brown dog ?", "is there chair ?"], "prompt": "large brown {} leashed to chair"}, {"index": 181, "image_id": 2403245, "entity": "dog", "caption": "the dog is on deck", "question": ["is there the dog ?", "is there deck ?"], "prompt": "the {} is on deck"}, {"index": 182, "image_id": 2403245, "entity": "dog", "caption": "the leash is on dog", "question": ["is there the leash ?", "is there dog ?"], "prompt": "the leash is on {}"}, {"index": 183, "image_id": 2403245, "entity": "dog", "caption": "Leash tied on golden dog", "question": ["is there golden dog ?"], "prompt": "Leash tied on golden {}"}, {"index": 184, "image_id": 2402933, "entity": "dog", "caption": "the doggy has a party hat on", "question": ["is there the doggy ?", "is there a party hat ?"], "prompt": "the {}gy has a party hat on"}, {"index": 185, "image_id": 2402933, "entity": "dog", "caption": "a stuffed animal is next to the dog", "question": ["is there a stuffed animal ?", "is there the dog ?"], "prompt": "a stuffed animal is next to the {}"}, {"index": 186, "image_id": 2402907, "entity": "dog", "caption": "The dog is standing on carpet", "question": ["is there the dog ?", "is there carpet ?"], "prompt": "The {} is standing on carpet"}, {"index": 187, "image_id": 2402907, "entity": "dog", "caption": "The dog has a collar and tags", "question": ["is there the dog ?", "is there a collar ?", "are there tags ?"], "prompt": "The {} has a collar and tags"}, {"index": 188, "image_id": 2402906, "entity": "dog", "caption": "a dog cover the book", "question": ["is there a dog ?", "is there the book ?"], "prompt": "a {} cover the book"}, {"index": 189, "image_id": 2402906, "entity": "dog", "caption": "the dog is looking to the left", "question": ["is there the dog ?"], "prompt": "the {} is looking to the left"}, {"index": 190, "image_id": 2402906, "entity": "dog", "caption": "the dog has black eyes", "question": ["is there the dog ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 191, "image_id": 2402433, "entity": "dog", "caption": "The dog's eyes are brown.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are brown."}, {"index": 192, "image_id": 2402433, "entity": "dog", "caption": "The dog's fur is brown and black.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is brown and black."}, {"index": 193, "image_id": 2402433, "entity": "dog", "caption": "The dog's tongue is pink.", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is pink."}, {"index": 194, "image_id": 2402433, "entity": "dog", "caption": "The dog's ears are down.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are down."}, {"index": 195, "image_id": 2402363, "entity": "dog", "caption": "the dog and the cat are on the pillow together", "question": ["is there the dog ?", "is there the cat ?", "is there the pillow ?"], "prompt": "the {} and the cat are on the pillow together"}, {"index": 196, "image_id": 2402363, "entity": "dog", "caption": "cat and dog sleeping on pet bed together", "question": ["is there cat ?", "is there dog ?", "is there pet bed ?"], "prompt": "cat and {} sleeping on pet bed together"}, {"index": 197, "image_id": 2402351, "entity": "dog", "caption": "The dog has a frisbee in his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee in his mouth."}, {"index": 198, "image_id": 2402351, "entity": "dog", "caption": "The dog has a white bushy tail.", "question": ["is there the dog ?", "is there a white bushy tail ?"], "prompt": "The {} has a white bushy tail."}, {"index": 199, "image_id": 2402351, "entity": "dog", "caption": "A flower pot is on the side of the dog.", "question": ["is there a flower pot ?", "is there the side ?", "is there the dog ?"], "prompt": "A flower pot is on the side of the {}."}, {"index": 200, "image_id": 2402059, "entity": "dog", "caption": "the dog has a human's tie around it's neck", "question": ["is there the dog ?", "is there a human's tie ?", "is there neck ?"], "prompt": "the {} has a human's tie around it's neck"}, {"index": 201, "image_id": 2401271, "entity": "dog", "caption": "The head of the dog sitting down.", "question": ["is there the head ?", "is there the dog ?"], "prompt": "The head of the {} sitting down."}, {"index": 202, "image_id": 2401271, "entity": "dog", "caption": "Soft brown chair the dog sits on", "question": ["is there soft brown chair ?", "is there the dog ?"], "prompt": "Soft brown chair the {} sits on"}, {"index": 203, "image_id": 2401271, "entity": "dog", "caption": "dog sittin gin brown chiar", "question": ["is there dog ?", "is there gin brown chiar ?"], "prompt": "{} sittin gin brown chiar"}, {"index": 204, "image_id": 2401271, "entity": "dog", "caption": "The dog is black and brown.", "question": ["is there the dog ?"], "prompt": "The {} is black and brown."}, {"index": 205, "image_id": 2401271, "entity": "dog", "caption": "The dog's nose is black.", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black."}, {"index": 206, "image_id": 2401024, "entity": "dog", "caption": "the dog has ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has ears"}, {"index": 207, "image_id": 2401024, "entity": "dog", "caption": "the dog is wearing strap", "question": ["is there the dog ?", "is there strap ?"], "prompt": "the {} is wearing strap"}, {"index": 208, "image_id": 2401024, "entity": "dog", "caption": "dog is wearing sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is wearing sweater"}, {"index": 209, "image_id": 2401024, "entity": "dog", "caption": "The sweater the dog is wearing", "question": ["is there the sweater ?", "is there the dog ?"], "prompt": "The sweater the {} is wearing"}, {"index": 210, "image_id": 2400958, "entity": "dog", "caption": "the man behind the dogs has blue jeans on", "question": ["is there the man ?", "are there the dogs ?", "are there blue jeans ?"], "prompt": "the man behind the {}s has blue jeans on"}, {"index": 211, "image_id": 2400958, "entity": "dog", "caption": "dog with tongue hanging out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue hanging out"}, {"index": 212, "image_id": 2400922, "entity": "dog", "caption": "The dog is staring out the window.", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is staring out the window."}, {"index": 213, "image_id": 2400865, "entity": "dog", "caption": "The dog is on a blanket.", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket."}, {"index": 214, "image_id": 2400865, "entity": "dog", "caption": "the dogs nose is pink.", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is pink."}, {"index": 215, "image_id": 2400865, "entity": "dog", "caption": "the dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "the {}s tongue is pink."}, {"index": 216, "image_id": 2400378, "entity": "dog", "caption": "this is the dog's head", "question": ["is there the dog's head ?"], "prompt": "this is the {}'s head"}, {"index": 217, "image_id": 2400368, "entity": "dog", "caption": "a dogs left paw", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw"}, {"index": 218, "image_id": 2399686, "entity": "dog", "caption": "a dog with its ears perked up", "question": ["is there a dog ?", "are there its ears ?"], "prompt": "a {} with its ears perked up"}, {"index": 219, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left eye", "question": ["are there the black dogs ?", "is there eye ?"], "prompt": "the black {}s left eye"}, {"index": 220, "image_id": 2399125, "entity": "dog", "caption": "the black dogs right eye", "question": ["are there the black dogs ?"], "prompt": "the black {}s right eye"}, {"index": 221, "image_id": 2399125, "entity": "dog", "caption": "piece of wood dog is lying on", "question": ["is there piece ?", "is there wood dog ?"], "prompt": "piece of wood {} is lying on"}, {"index": 222, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left ear", "question": ["are there the black dogs ?", "is there ear ?"], "prompt": "the black {}s left ear"}, {"index": 223, "image_id": 2399037, "entity": "dog", "caption": "she is holding a dog", "question": ["is there a dog ?"], "prompt": "she is holding a {}"}, {"index": 224, "image_id": 2399037, "entity": "dog", "caption": "The girl's hand that is resting on the dog.", "question": ["is there the girl's hand ?", "is there the dog ?"], "prompt": "The girl's hand that is resting on the {}."}, {"index": 225, "image_id": 2399037, "entity": "dog", "caption": "Girl's hand is on the dog.", "question": ["is there girl's hand ?", "is there the dog ?"], "prompt": "Girl's hand is on the {}."}, {"index": 226, "image_id": 2399037, "entity": "dog", "caption": "this is a dog", "question": ["is there a dog ?"], "prompt": "this is a {}"}, {"index": 227, "image_id": 2397742, "entity": "dog", "caption": "a green rug the dog is laying on", "question": ["is there a green rug ?", "is there the dog ?"], "prompt": "a green rug the {} is laying on"}, {"index": 228, "image_id": 2397739, "entity": "dog", "caption": "A dog is in front of a motorcycle.", "question": ["is there a dog ?", "is there front ?", "is there a motorcycle ?"], "prompt": "A {} is in front of a motorcycle."}, {"index": 229, "image_id": 2397739, "entity": "dog", "caption": "A dog has black and white spots.", "question": ["is there a dog ?", "are there black and white spots ?"], "prompt": "A {} has black and white spots."}, {"index": 230, "image_id": 2397739, "entity": "dog", "caption": "A dog is behind another dog.", "question": ["is there a dog ?", "is there another dog ?"], "prompt": "A {} is behind another {}."}, {"index": 231, "image_id": 2397739, "entity": "dog", "caption": "motorbike parked behind dogs", "question": ["is there motorbike ?", "are there dogs ?"], "prompt": "motorbike parked behind {}s"}, {"index": 232, "image_id": 2397731, "entity": "dog", "caption": "the red collar the dog is wearing", "question": ["is there the red collar ?", "is there the dog ?"], "prompt": "the red collar the {} is wearing"}, {"index": 233, "image_id": 2397731, "entity": "dog", "caption": "the green grass the dog is standing on", "question": ["is there the green grass ?", "is there the dog ?"], "prompt": "the green grass the {} is standing on"}, {"index": 234, "image_id": 2397731, "entity": "dog", "caption": "the dogs colored leash", "question": ["are there the dogs ?"], "prompt": "the {}s colored leash"}, {"index": 235, "image_id": 2397368, "entity": "dog", "caption": "the dog is holding something on its mouth", "question": ["is there the dog ?", "is there something ?", "is there its mouth ?"], "prompt": "the {} is holding something on its mouth"}, {"index": 236, "image_id": 2397327, "entity": "dog", "caption": "dog has big brown eyes", "question": ["is there dog ?", "are there big brown eyes ?"], "prompt": "{} has big brown eyes"}, {"index": 237, "image_id": 2397327, "entity": "dog", "caption": "dog has small black nose", "question": ["is there dog ?", "is there small black nose ?"], "prompt": "{} has small black nose"}, {"index": 238, "image_id": 2397327, "entity": "dog", "caption": "collar on dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar on {} is black"}, {"index": 239, "image_id": 2397327, "entity": "dog", "caption": "the carpet the dog is standing on", "question": ["is there the carpet ?", "is there the dog ?"], "prompt": "the carpet the {} is standing on"}, {"index": 240, "image_id": 2397327, "entity": "dog", "caption": "the dogs tail", "question": ["are there the dogs ?"], "prompt": "the {}s tail"}, {"index": 241, "image_id": 2397165, "entity": "dog", "caption": "a dogs left paw.", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw."}, {"index": 242, "image_id": 2396130, "entity": "dog", "caption": "A cushion a dog is lying on. ", "question": ["is there a cushion ?", "is there a dog ?"], "prompt": "A cushion a {} is lying on. "}, {"index": 243, "image_id": 2396130, "entity": "dog", "caption": "The dog is laying on the couch.", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "The {} is laying on the couch."}, {"index": 244, "image_id": 2395670, "entity": "dog", "caption": "dog is wearing a tiara", "question": ["is there dog ?", "is there a tiara ?"], "prompt": "{} is wearing a tiara"}, {"index": 245, "image_id": 2395670, "entity": "dog", "caption": "the dog is wearing a tutu", "question": ["is there the dog ?", "is there a tutu ?"], "prompt": "the {} is wearing a tutu"}, {"index": 246, "image_id": 2395670, "entity": "dog", "caption": "bulldog has big brown eye", "question": ["is there big brown eye ?"], "prompt": "bull{} has big brown eye"}, {"index": 247, "image_id": 2395670, "entity": "dog", "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest", "question": ["is there green ribbon ?", "is there orange collar+ribbed orange vest ?"], "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"}, {"index": 248, "image_id": 2395473, "entity": "dog", "caption": "The dog is on top of the pillow", "question": ["is there the dog ?", "is there top ?", "is there the pillow ?"], "prompt": "The {} is on top of the pillow"}, {"index": 249, "image_id": 2395473, "entity": "dog", "caption": "The dog is hugging the stuffed animal", "question": ["is there the dog ?", "is there the stuffed animal ?"], "prompt": "The {} is hugging the stuffed animal"}, {"index": 250, "image_id": 2395473, "entity": "dog", "caption": "stuff is on the floor behind the dog", "question": ["is there stuff ?", "is there the floor ?", "is there the dog ?"], "prompt": "stuff is on the floor behind the {}"}, {"index": 251, "image_id": 2395473, "entity": "dog", "caption": "a white pillow is underneath the dog", "question": ["is there a white pillow ?", "is there the dog ?"], "prompt": "a white pillow is underneath the {}"}, {"index": 252, "image_id": 2395473, "entity": "dog", "caption": "a black speaker is behind the dog", "question": ["is there a black speaker ?", "is there the dog ?"], "prompt": "a black speaker is behind the {}"}, {"index": 253, "image_id": 2395473, "entity": "dog", "caption": "old looking curtains is above the dog's head", "question": ["are there old looking curtains ?", "is there the dog's head ?"], "prompt": "old looking curtains is above the {}'s head"}, {"index": 254, "image_id": 2395369, "entity": "dog", "caption": "grey run the dog is standing on", "question": ["is there the dog ?"], "prompt": "grey run the {} is standing on"}, {"index": 255, "image_id": 2395369, "entity": "dog", "caption": "cat and dog playing with each other ", "question": ["is there cat ?", "is there dog ?"], "prompt": "cat and {} playing with each other "}, {"index": 256, "image_id": 2395369, "entity": "dog", "caption": "head of dog is black", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is black"}, {"index": 257, "image_id": 2394681, "entity": "dog", "caption": "The dog's tail is visible.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is visible."}, {"index": 258, "image_id": 2394681, "entity": "dog", "caption": "the dog has tail", "question": ["is there the dog ?", "is there tail ?"], "prompt": "the {} has tail"}, {"index": 259, "image_id": 2394499, "entity": "dog", "caption": "the dog is wearing a hat", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "the {} is wearing a hat"}, {"index": 260, "image_id": 2394499, "entity": "dog", "caption": "dog is wearing a fedora", "question": ["is there dog ?", "is there a fedora ?"], "prompt": "{} is wearing a fedora"}, {"index": 261, "image_id": 2394499, "entity": "dog", "caption": "The dog has a toy.", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "The {} has a toy."}, {"index": 262, "image_id": 2394499, "entity": "dog", "caption": "The dog is laying on a pillow.", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is laying on a pillow."}, {"index": 263, "image_id": 2394372, "entity": "dog", "caption": "The dog is black and white.", "question": ["is there the dog ?"], "prompt": "The {} is black and white."}, {"index": 264, "image_id": 2394372, "entity": "dog", "caption": "dog has white body with black spots", "question": ["is there dog ?", "is there white body ?", "are there black spots ?"], "prompt": "{} has white body with black spots"}, {"index": 265, "image_id": 2394372, "entity": "dog", "caption": "dog has cast a shadow", "question": ["is there dog ?", "is there a shadow ?"], "prompt": "{} has cast a shadow"}, {"index": 266, "image_id": 2394372, "entity": "dog", "caption": "dog has big fluffy tail", "question": ["is there dog ?", "is there big fluffy tail ?"], "prompt": "{} has big fluffy tail"}, {"index": 267, "image_id": 2394372, "entity": "dog", "caption": "dog has tags on collar", "question": ["is there dog ?", "are there tags ?", "is there collar ?"], "prompt": "{} has tags on collar"}, {"index": 268, "image_id": 2394372, "entity": "dog", "caption": "dog is wearing a white collar", "question": ["is there dog ?", "is there a white collar ?"], "prompt": "{} is wearing a white collar"}, {"index": 269, "image_id": 2394372, "entity": "dog", "caption": "dog is black and white", "question": ["is there dog ?"], "prompt": "{} is black and white"}, {"index": 270, "image_id": 2394372, "entity": "dog", "caption": "dog has frilly tail", "question": ["is there dog ?"], "prompt": "{} has frilly tail"}, {"index": 271, "image_id": 2394372, "entity": "dog", "caption": "dog has brown spots", "question": ["is there dog ?", "are there brown spots ?"], "prompt": "{} has brown spots"}, {"index": 272, "image_id": 2394372, "entity": "dog", "caption": "dog wears white collar", "question": ["is there dog ?", "is there white collar ?"], "prompt": "{} wears white collar"}, {"index": 273, "image_id": 2394372, "entity": "dog", "caption": "A dog is on the sand.", "question": ["is there a dog ?", "is there the sand ?"], "prompt": "A {} is on the sand."}, {"index": 274, "image_id": 2394372, "entity": "dog", "caption": "The dog is balck and white.", "question": ["is there the dog ?"], "prompt": "The {} is balck and white."}, {"index": 275, "image_id": 2394372, "entity": "dog", "caption": "The dog has a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar."}, {"index": 276, "image_id": 2394065, "entity": "dog", "caption": "The dog is licking the water bottle.", "question": ["is there the dog ?", "is there the water bottle ?"], "prompt": "The {} is licking the water bottle."}, {"index": 277, "image_id": 2394065, "entity": "dog", "caption": "The dog is standing next to the person.", "question": ["is there the dog ?", "is there the person ?"], "prompt": "The {} is standing next to the person."}, {"index": 278, "image_id": 2393921, "entity": "dog", "caption": "Aviator glasses on dogs face", "question": ["are there aviator glasses ?", "are there dogs ?"], "prompt": "Aviator glasses on {}s face"}, {"index": 279, "image_id": 2393921, "entity": "dog", "caption": "The dog has glasses on", "question": ["is there the dog ?", "are there glasses ?"], "prompt": "The {} has glasses on"}, {"index": 280, "image_id": 2393921, "entity": "dog", "caption": "The dog has a hat on", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} has a hat on"}, {"index": 281, "image_id": 2393921, "entity": "dog", "caption": "The dog has on a red bib", "question": ["is there the dog ?", "is there a red bib ?"], "prompt": "The {} has on a red bib"}, {"index": 282, "image_id": 2393921, "entity": "dog", "caption": "The dog is sitting in a seat", "question": ["is there the dog ?", "is there a seat ?"], "prompt": "The {} is sitting in a seat"}, {"index": 283, "image_id": 2393366, "entity": "dog", "caption": "this is the dog's nose", "question": ["is there the dog's nose ?"], "prompt": "this is the {}'s nose"}, {"index": 284, "image_id": 2393366, "entity": "dog", "caption": "these are the dog's eyes", "question": ["are there the dog's eyes ?"], "prompt": "these are the {}'s eyes"}, {"index": 285, "image_id": 2393366, "entity": "dog", "caption": "the dog's eye is orange", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is orange"}, {"index": 286, "image_id": 2392895, "entity": "dog", "caption": "a dog with his eyes closed", "question": ["is there a dog ?", "are there his eyes ?"], "prompt": "a {} with his eyes closed"}, {"index": 287, "image_id": 2392895, "entity": "dog", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "{} is on a boat"}, {"index": 288, "image_id": 2392895, "entity": "dog", "caption": "dog has a red collar on", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} has a red collar on"}, {"index": 289, "image_id": 2392895, "entity": "dog", "caption": "dog has a name tag", "question": ["is there dog ?", "is there a name tag ?"], "prompt": "{} has a name tag"}, {"index": 290, "image_id": 2392895, "entity": "dog", "caption": "dog has partially white fur", "question": ["is there dog ?", "is there partially white fur ?"], "prompt": "{} has partially white fur"}, {"index": 291, "image_id": 2392690, "entity": "dog", "caption": "a dog is on the grass", "question": ["is there a dog ?", "is there the grass ?"], "prompt": "a {} is on the grass"}, {"index": 292, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water", "question": ["is there dog ?", "is there water ?"], "prompt": "{} is drinking water"}, {"index": 293, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water from a bottle", "question": ["is there dog ?", "is there water ?", "is there a bottle ?"], "prompt": "{} is drinking water from a bottle"}, {"index": 294, "image_id": 2392690, "entity": "dog", "caption": "water is dripping from the dogs face", "question": ["is there water ?", "are there the dogs ?"], "prompt": "water is dripping from the {}s face"}, {"index": 295, "image_id": 2392690, "entity": "dog", "caption": "thirsty dog is taking a drink", "question": ["is there thirsty dog ?", "is there a drink ?"], "prompt": "thirsty {} is taking a drink"}, {"index": 296, "image_id": 2392690, "entity": "dog", "caption": "dog has drunk half the water bottle", "question": ["is there dog ?", "is there half the water bottle ?"], "prompt": "{} has drunk half the water bottle"}, {"index": 297, "image_id": 2392606, "entity": "dog", "caption": "The two dogs are waring party hats.", "question": ["are there the two dogs ?", "are there party hats ?"], "prompt": "The two {}s are waring party hats."}, {"index": 298, "image_id": 2392334, "entity": "dog", "caption": "The dog has long hair.", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "The {} has long hair."}, {"index": 299, "image_id": 2392334, "entity": "dog", "caption": "white dog wagging its tail", "question": ["is there white dog ?", "is there its tail ?"], "prompt": "white {} wagging its tail"}, {"index": 300, "image_id": 2392033, "entity": "dog", "caption": "ears of dog are long", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are long"}, {"index": 301, "image_id": 2392033, "entity": "dog", "caption": "tail of brown dog is furry", "question": ["is there tail ?", "is there brown dog ?"], "prompt": "tail of brown {} is furry"}, {"index": 302, "image_id": 2392033, "entity": "dog", "caption": "nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black"}, {"index": 303, "image_id": 2391972, "entity": "dog", "caption": "dog wears attentive expression", "question": ["is there dog ?", "is there attentive expression ?"], "prompt": "{} wears attentive expression"}, {"index": 304, "image_id": 2391972, "entity": "dog", "caption": "dog has soulful eye, folded down ear", "question": ["is there dog ?", "is there soulful eye ?", "is there ear ?"], "prompt": "{} has soulful eye, folded down ear"}, {"index": 305, "image_id": 2391972, "entity": "dog", "caption": "dog is wearing dog collar", "question": ["is there dog ?", "is there dog collar ?"], "prompt": "{} is wearing {} collar"}, {"index": 306, "image_id": 2391972, "entity": "dog", "caption": "the dog collar is black", "question": ["is there the dog collar ?"], "prompt": "the {} collar is black"}, {"index": 307, "image_id": 2390997, "entity": "dog", "caption": "dog has black leash", "question": ["is there dog ?", "is there black leash ?"], "prompt": "{} has black leash"}, {"index": 308, "image_id": 2390997, "entity": "dog", "caption": "dog has black fur", "question": ["is there dog ?", "is there black fur ?"], "prompt": "{} has black fur"}, {"index": 309, "image_id": 2390997, "entity": "dog", "caption": "this is a dog collar", "question": ["is there a dog collar ?"], "prompt": "this is a {} collar"}, {"index": 310, "image_id": 2390915, "entity": "dog", "caption": "dog has brown eyes", "question": ["is there dog ?", "are there brown eyes ?"], "prompt": "{} has brown eyes"}, {"index": 311, "image_id": 2390915, "entity": "dog", "caption": "these are the dog's paws", "question": ["are there the dog's paws ?"], "prompt": "these are the {}'s paws"}, {"index": 312, "image_id": 2390745, "entity": "dog", "caption": "a dog is lying on his side", "question": ["is there a dog ?", "is there his side ?"], "prompt": "a {} is lying on his side"}, {"index": 313, "image_id": 2390745, "entity": "dog", "caption": "ear of dog is long", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is long"}, {"index": 314, "image_id": 2390745, "entity": "dog", "caption": "The dog's eyes are wide open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are wide open"}, {"index": 315, "image_id": 2390745, "entity": "dog", "caption": "The dog is relaxing", "question": ["is there the dog ?"], "prompt": "The {} is relaxing"}, {"index": 316, "image_id": 2390588, "entity": "dog", "caption": "The dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "The {} has nose"}, {"index": 317, "image_id": 2390588, "entity": "dog", "caption": "the sling is on dog", "question": ["is there the sling ?", "is there dog ?"], "prompt": "the sling is on {}"}, {"index": 318, "image_id": 2390588, "entity": "dog", "caption": "the eyes are on the dog", "question": ["are there the eyes ?", "is there the dog ?"], "prompt": "the eyes are on the {}"}, {"index": 319, "image_id": 2390301, "entity": "dog", "caption": "dog's tongue hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue hanging out"}, {"index": 320, "image_id": 2390301, "entity": "dog", "caption": "The dog closes his eyes", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "The {} closes his eyes"}, {"index": 321, "image_id": 2390301, "entity": "dog", "caption": "The dogs fur is wet", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is wet"}, {"index": 322, "image_id": 2390301, "entity": "dog", "caption": "The dog has collar on", "question": ["is there the dog ?", "is there collar ?"], "prompt": "The {} has collar on"}, {"index": 323, "image_id": 2390301, "entity": "dog", "caption": "The dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose"}, {"index": 324, "image_id": 2390301, "entity": "dog", "caption": "The dogs eye is closed", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is closed"}, {"index": 325, "image_id": 2390301, "entity": "dog", "caption": "dog has a large pink tounge", "question": ["is there dog ?", "is there a large pink tounge ?"], "prompt": "{} has a large pink tounge"}, {"index": 326, "image_id": 2390301, "entity": "dog", "caption": "shallow water with dog paws submerged", "question": ["is there shallow water ?", "are there dog paws ?"], "prompt": "shallow water with {} paws submerged"}, {"index": 327, "image_id": 2390301, "entity": "dog", "caption": "tan dog standing in the ocean", "question": ["is there the ocean ?"], "prompt": "tan {} standing in the ocean"}, {"index": 328, "image_id": 2390301, "entity": "dog", "caption": "dog with his tongue hanging out", "question": ["is there dog ?", "is there his tongue ?"], "prompt": "{} with his tongue hanging out"}, {"index": 329, "image_id": 2390135, "entity": "dog", "caption": "Th enose od the dog.", "question": ["is there th enose ?", "is there od the dog ?"], "prompt": "Th enose od the {}."}, {"index": 330, "image_id": 2390135, "entity": "dog", "caption": "The dog rests his head.", "question": ["is there the dog ?", "is there his head ?"], "prompt": "The {} rests his head."}, {"index": 331, "image_id": 2390135, "entity": "dog", "caption": "The dogs ear", "question": ["are there the dogs ?"], "prompt": "The {}s ear"}, {"index": 332, "image_id": 2390135, "entity": "dog", "caption": "The dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye"}, {"index": 333, "image_id": 2390107, "entity": "dog", "caption": "long black dog tail curved up", "question": ["is there long black dog tail ?"], "prompt": "long black {} tail curved up"}, {"index": 334, "image_id": 2390107, "entity": "dog", "caption": "the dog has a white spot on it's leg", "question": ["is there the dog ?", "is there a white spot ?", "is there it's leg ?"], "prompt": "the {} has a white spot on it's leg"}, {"index": 335, "image_id": 2390107, "entity": "dog", "caption": "the dog has a long tail", "question": ["is there the dog ?", "is there a long tail ?"], "prompt": "the {} has a long tail"}, {"index": 336, "image_id": 2390107, "entity": "dog", "caption": "the dog has black paw pads", "question": ["is there the dog ?", "are there black paw pads ?"], "prompt": "the {} has black paw pads"}, {"index": 337, "image_id": 2389769, "entity": "dog", "caption": "dog ears are floppy", "question": ["are there dog ears ?"], "prompt": "{} ears are floppy"}, {"index": 338, "image_id": 2389769, "entity": "dog", "caption": "dog eyes are cute", "question": ["are there dog eyes ?"], "prompt": "{} eyes are cute"}, {"index": 339, "image_id": 2389769, "entity": "dog", "caption": "the dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are closed"}, {"index": 340, "image_id": 2389769, "entity": "dog", "caption": "The dog has tags on ", "question": ["is there the dog ?", "are there tags ?"], "prompt": "The {} has tags on "}, {"index": 341, "image_id": 2389769, "entity": "dog", "caption": "Mans toes beside dog", "question": ["is there dog ?"], "prompt": "Mans toes beside {}"}, {"index": 342, "image_id": 2389636, "entity": "dog", "caption": "the dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "the {} has nose"}, {"index": 343, "image_id": 2388972, "entity": "dog", "caption": "the grass is below the dog", "question": ["is there the grass ?", "is there the dog ?"], "prompt": "the grass is below the {}"}, {"index": 344, "image_id": 2388671, "entity": "dog", "caption": "white dog is standing looking out on the yard", "question": ["is there white dog ?", "is there the yard ?"], "prompt": "white {} is standing looking out on the yard"}, {"index": 345, "image_id": 2388671, "entity": "dog", "caption": "dog is mostly white", "question": ["is there dog ?"], "prompt": "{} is mostly white"}, {"index": 346, "image_id": 2388671, "entity": "dog", "caption": "dog has brown ears", "question": ["is there dog ?", "are there brown ears ?"], "prompt": "{} has brown ears"}, {"index": 347, "image_id": 2388671, "entity": "dog", "caption": "dog has black collar", "question": ["is there dog ?", "is there black collar ?"], "prompt": "{} has black collar"}, {"index": 348, "image_id": 2388671, "entity": "dog", "caption": "dog has white legs", "question": ["is there dog ?", "are there white legs ?"], "prompt": "{} has white legs"}, {"index": 349, "image_id": 2388320, "entity": "dog", "caption": "The dog has its head on a stuffed animal", "question": ["is there the dog ?", "is there its head ?", "is there a stuffed animal ?"], "prompt": "The {} has its head on a stuffed animal"}, {"index": 350, "image_id": 2388320, "entity": "dog", "caption": "The gate is behind the dog", "question": ["is there the gate ?", "is there the dog ?"], "prompt": "The gate is behind the {}"}, {"index": 351, "image_id": 2388320, "entity": "dog", "caption": "The dog is lying on wood", "question": ["is there the dog ?", "is there wood ?"], "prompt": "The {} is lying on wood"}, {"index": 352, "image_id": 2388066, "entity": "dog", "caption": "dog jumping for frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} jumping for frisbee"}, {"index": 353, "image_id": 2388048, "entity": "dog", "caption": "all are secondary to small dog chewing large toothbrush", "question": ["is there small dog ?", "is there large toothbrush ?"], "prompt": "all are secondary to small {} chewing large toothbrush"}, {"index": 354, "image_id": 2388048, "entity": "dog", "caption": "a dog is lying on a bed", "question": ["is there a dog ?", "is there a bed ?"], "prompt": "a {} is lying on a bed"}, {"index": 355, "image_id": 2388048, "entity": "dog", "caption": "body of dog is brown", "question": ["is there body ?", "is there dog ?"], "prompt": "body of {} is brown"}, {"index": 356, "image_id": 2388048, "entity": "dog", "caption": "head of dog is brown and white", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown and white"}, {"index": 357, "image_id": 2388048, "entity": "dog", "caption": "ears of dog are brown", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are brown"}, {"index": 358, "image_id": 2388048, "entity": "dog", "caption": "dog has a toothbrush in his mouth", "question": ["is there dog ?", "is there a toothbrush ?", "is there his mouth ?"], "prompt": "{} has a toothbrush in his mouth"}, {"index": 359, "image_id": 2388004, "entity": "dog", "caption": "tail of dog is long and curly", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is long and curly"}, {"index": 360, "image_id": 2388004, "entity": "dog", "caption": "front legs of dog are long", "question": ["are there front legs ?", "is there dog ?"], "prompt": "front legs of {} are long"}, {"index": 361, "image_id": 2388004, "entity": "dog", "caption": "The dog has a white spot.", "question": ["is there the dog ?", "is there a white spot ?"], "prompt": "The {} has a white spot."}, {"index": 362, "image_id": 2387774, "entity": "dog", "caption": "dog looks out window", "question": ["is there dog ?"], "prompt": "{} looks out window"}, {"index": 363, "image_id": 2387774, "entity": "dog", "caption": "dog has dark nose", "question": ["is there dog ?", "is there dark nose ?"], "prompt": "{} has dark nose"}, {"index": 364, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted ears", "question": ["is there dog ?", "are there ears ?"], "prompt": "{} has spotted ears"}, {"index": 365, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted face", "question": ["is there dog ?", "is there face ?"], "prompt": "{} has spotted face"}, {"index": 366, "image_id": 2387596, "entity": "dog", "caption": "dog is wearing glasses", "question": ["is there dog ?", "are there glasses ?"], "prompt": "{} is wearing glasses"}, {"index": 367, "image_id": 2387596, "entity": "dog", "caption": "dog has multicolor bandanna", "question": ["is there dog ?", "is there multicolor bandanna ?"], "prompt": "{} has multicolor bandanna"}, {"index": 368, "image_id": 2387596, "entity": "dog", "caption": "dog has white paws", "question": ["is there dog ?", "are there white paws ?"], "prompt": "{} has white paws"}, {"index": 369, "image_id": 2387596, "entity": "dog", "caption": "dog is on skateboard", "question": ["is there dog ?", "is there skateboard ?"], "prompt": "{} is on skateboard"}, {"index": 370, "image_id": 2387596, "entity": "dog", "caption": "The dog is on a leash.", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash."}, {"index": 371, "image_id": 2387470, "entity": "dog", "caption": "The dog's mouth is open. ", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open. "}, {"index": 372, "image_id": 2387448, "entity": "dog", "caption": "black dog jumping in air", "question": ["is there black dog ?", "is there air ?"], "prompt": "black {} jumping in air"}, {"index": 373, "image_id": 2387448, "entity": "dog", "caption": "dog has red collar", "question": ["is there dog ?", "is there red collar ?"], "prompt": "{} has red collar"}, {"index": 374, "image_id": 2387448, "entity": "dog", "caption": "dog has short curly tail", "question": ["is there dog ?", "is there short curly tail ?"], "prompt": "{} has short curly tail"}, {"index": 375, "image_id": 2387448, "entity": "dog", "caption": "grass under dog is green", "question": ["is there grass ?", "is there dog ?"], "prompt": "grass under {} is green"}, {"index": 376, "image_id": 2387387, "entity": "dog", "caption": "dog's tongue sticking out of mouth", "question": ["is there dog's tongue ?", "is there mouth ?"], "prompt": "{}'s tongue sticking out of mouth"}, {"index": 377, "image_id": 2387104, "entity": "dog", "caption": "the dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has a red collar"}, {"index": 378, "image_id": 2387104, "entity": "dog", "caption": "the dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "the {} has a brown nose"}, {"index": 379, "image_id": 2387104, "entity": "dog", "caption": "the cat is under the dog's chin", "question": ["is there the cat ?", "is there the dog's chin ?"], "prompt": "the cat is under the {}'s chin"}, {"index": 380, "image_id": 2387104, "entity": "dog", "caption": "the dog has a white face", "question": ["is there the dog ?", "is there a white face ?"], "prompt": "the {} has a white face"}, {"index": 381, "image_id": 2386600, "entity": "dog", "caption": "The frisbee is in front of the dog", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The frisbee is in front of the {}"}, {"index": 382, "image_id": 2386600, "entity": "dog", "caption": "dog's teeth showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth showing"}, {"index": 383, "image_id": 2386411, "entity": "dog", "caption": "The dog has a black nose.", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose."}, {"index": 384, "image_id": 2386411, "entity": "dog", "caption": "red bandana dog is wearing", "question": ["is there red bandana dog ?"], "prompt": "red bandana {} is wearing"}, {"index": 385, "image_id": 2386411, "entity": "dog", "caption": "dog's face looking at frisbees", "question": ["is there dog's face ?", "are there frisbees ?"], "prompt": "{}'s face looking at frisbees"}, {"index": 386, "image_id": 2386323, "entity": "dog", "caption": "dog is laying on suit case", "question": ["is there dog ?", "is there suit case ?"], "prompt": "{} is laying on suit case"}, {"index": 387, "image_id": 2386323, "entity": "dog", "caption": "The dog is wearing a gold tag.", "question": ["is there the dog ?", "is there a gold tag ?"], "prompt": "The {} is wearing a gold tag."}, {"index": 388, "image_id": 2386323, "entity": "dog", "caption": "The dog is sitting on a suitcase.", "question": ["is there the dog ?", "is there a suitcase ?"], "prompt": "The {} is sitting on a suitcase."}, {"index": 389, "image_id": 2386037, "entity": "dog", "caption": "dog is jumping above ground", "question": ["is there dog ?", "is there ground ?"], "prompt": "{} is jumping above ground"}, {"index": 390, "image_id": 2386037, "entity": "dog", "caption": "dog is wearing collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} is wearing collar"}, {"index": 391, "image_id": 2386031, "entity": "dog", "caption": "dog's tail is up in the air", "question": ["is there dog's tail ?", "is there the air ?"], "prompt": "{}'s tail is up in the air"}, {"index": 392, "image_id": 2386031, "entity": "dog", "caption": "dog's left perked up ear", "question": ["is there ear ?"], "prompt": "{}'s left perked up ear"}, {"index": 393, "image_id": 2386010, "entity": "dog", "caption": "dogs face in a side mirror", "question": ["are there dogs ?", "is there a side mirror ?"], "prompt": "{}s face in a side mirror"}, {"index": 394, "image_id": 2385955, "entity": "dog", "caption": "nose of dog is wet", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is wet"}, {"index": 395, "image_id": 2385955, "entity": "dog", "caption": "eyes of dog are wide open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are wide open"}, {"index": 396, "image_id": 2385955, "entity": "dog", "caption": "the frisbee is in the dog's mouth", "question": ["is there the frisbee ?", "is there the dog's mouth ?"], "prompt": "the frisbee is in the {}'s mouth"}, {"index": 397, "image_id": 2385955, "entity": "dog", "caption": "the dog's eyes are wild and wide open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are wild and wide open"}, {"index": 398, "image_id": 2385955, "entity": "dog", "caption": "the face of the dog is tricolored", "question": ["is there the face ?", "is there the dog ?"], "prompt": "the face of the {} is tricolored"}, {"index": 399, "image_id": 2385955, "entity": "dog", "caption": "the dog's paw is white", "question": ["is there the dog's paw ?"], "prompt": "the {}'s paw is white"}, {"index": 400, "image_id": 2385955, "entity": "dog", "caption": "grass is under the the dog", "question": ["is there grass ?", "is there the the dog ?"], "prompt": "grass is under the the {}"}, {"index": 401, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} is wearing a cap"}, {"index": 402, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing eyeglasses", "question": ["is there dog ?", "are there eyeglasses ?"], "prompt": "{} is wearing eyeglasses"}, {"index": 403, "image_id": 2385853, "entity": "dog", "caption": "dog's mouth is open", "question": ["is there dog's mouth ?"], "prompt": "{}'s mouth is open"}, {"index": 404, "image_id": 2385762, "entity": "dog", "caption": "a dog has a retractable leash attached to the collar", "question": ["is there a dog ?", "is there a retractable leash ?", "is there the collar ?"], "prompt": "a {} has a retractable leash attached to the collar"}, {"index": 405, "image_id": 2385757, "entity": "dog", "caption": "dog laying in dirt with eyes closed", "question": ["is there dog ?", "is there dirt ?", "are there eyes ?"], "prompt": "{} laying in dirt with eyes closed"}, {"index": 406, "image_id": 2385595, "entity": "dog", "caption": "the dog is lying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is lying on the bed"}, {"index": 407, "image_id": 2385566, "entity": "dog", "caption": "man is holding two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is holding two {}s"}, {"index": 408, "image_id": 2385566, "entity": "dog", "caption": "dog in rear has red collar", "question": ["is there dog ?", "is there rear ?", "is there red collar ?"], "prompt": "{} in rear has red collar"}, {"index": 409, "image_id": 2385566, "entity": "dog", "caption": "man is crouching near two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is crouching near two {}s"}, {"index": 410, "image_id": 2385566, "entity": "dog", "caption": "dog with its mouth wide open", "question": ["is there dog ?", "is there its mouth ?"], "prompt": "{} with its mouth wide open"}, {"index": 411, "image_id": 2385566, "entity": "dog", "caption": "man's hand resting on dog's hip", "question": ["is there man's hand ?", "is there dog's hip ?"], "prompt": "man's hand resting on {}'s hip"}, {"index": 412, "image_id": 2385466, "entity": "dog", "caption": "dog's eyes are brown", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are brown"}, {"index": 413, "image_id": 2385466, "entity": "dog", "caption": "dog's whiskers are white", "question": ["are there dog's whiskers ?"], "prompt": "{}'s whiskers are white"}, {"index": 414, "image_id": 2385466, "entity": "dog", "caption": "dog is next to the window", "question": ["is there dog ?", "is there the window ?"], "prompt": "{} is next to the window"}, {"index": 415, "image_id": 2385466, "entity": "dog", "caption": "dog's ears are down", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are down"}, {"index": 416, "image_id": 2385466, "entity": "dog", "caption": "the dog has a silver tag", "question": ["is there the dog ?", "is there a silver tag ?"], "prompt": "the {} has a silver tag"}, {"index": 417, "image_id": 2385466, "entity": "dog", "caption": "the dog is in the passenger seat", "question": ["is there the dog ?", "is there the passenger seat ?"], "prompt": "the {} is in the passenger seat"}, {"index": 418, "image_id": 2385466, "entity": "dog", "caption": "the dog has white parts of the eyes showing", "question": ["is there the dog ?", "are there white parts ?", "are there the eyes ?"], "prompt": "the {} has white parts of the eyes showing"}, {"index": 419, "image_id": 2385466, "entity": "dog", "caption": "A dog has a tag", "question": ["is there a dog ?", "is there a tag ?"], "prompt": "A {} has a tag"}, {"index": 420, "image_id": 2385345, "entity": "dog", "caption": "the dog is leaning on the bedding", "question": ["is there the dog ?", "is there the bedding ?"], "prompt": "the {} is leaning on the bedding"}, {"index": 421, "image_id": 2385345, "entity": "dog", "caption": "the bed is behind the dog", "question": ["is there the bed ?", "is there the dog ?"], "prompt": "the bed is behind the {}"}, {"index": 422, "image_id": 2385299, "entity": "dog", "caption": "white dog is lying on a bed", "question": ["is there white dog ?", "is there a bed ?"], "prompt": "white {} is lying on a bed"}, {"index": 423, "image_id": 2385299, "entity": "dog", "caption": "tail of dog is on bed", "question": ["is there tail ?", "is there dog ?", "is there bed ?"], "prompt": "tail of {} is on bed"}, {"index": 424, "image_id": 2385299, "entity": "dog", "caption": "eyes of dog are black", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are black"}, {"index": 425, "image_id": 2385299, "entity": "dog", "caption": "eyes and nose of dog are black", "question": ["are there eyes ?", "is there nose ?", "is there dog ?"], "prompt": "eyes and nose of {} are black"}, {"index": 426, "image_id": 2385299, "entity": "dog", "caption": "a dog collar has a tag", "question": ["is there a dog collar ?", "is there a tag ?"], "prompt": "a {} collar has a tag"}, {"index": 427, "image_id": 2385299, "entity": "dog", "caption": "legs and chest of dog are white", "question": ["are there legs ?", "is there chest ?", "is there dog ?"], "prompt": "legs and chest of {} are white"}, {"index": 428, "image_id": 2384917, "entity": "dog", "caption": "dogs tongue sticking out", "question": ["are there dogs ?", "is there tongue ?"], "prompt": "{}s tongue sticking out"}, {"index": 429, "image_id": 2384917, "entity": "dog", "caption": "brown pointy ear on dog", "question": ["is there brown pointy ear ?", "is there dog ?"], "prompt": "brown pointy ear on {}"}, {"index": 430, "image_id": 2384563, "entity": "dog", "caption": "dog curled up on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} curled up on a couch"}, {"index": 431, "image_id": 2384563, "entity": "dog", "caption": "a dog curled up on a cushion", "question": ["is there a dog ?", "is there a cushion ?"], "prompt": "a {} curled up on a cushion"}, {"index": 432, "image_id": 2384452, "entity": "dog", "caption": "dog is wearing a green collar ", "question": ["is there dog ?", "is there a green collar ?"], "prompt": "{} is wearing a green collar "}, {"index": 433, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear is bent ", "question": ["are there the dogs ?"], "prompt": "the {}s ear is bent "}, {"index": 434, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear ", "question": ["are there the dogs ?"], "prompt": "the {}s ear "}, {"index": 435, "image_id": 2384424, "entity": "dog", "caption": "the dog is beside the bike", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is beside the bike"}, {"index": 436, "image_id": 2384322, "entity": "dog", "caption": "Reindeer stuffed animal on the dog.", "question": ["is there reindeer ?", "is there animal ?", "is there the dog ?"], "prompt": "Reindeer stuffed animal on the {}."}, {"index": 437, "image_id": 2384105, "entity": "dog", "caption": "dog's collar is green", "question": ["is there dog's collar ?"], "prompt": "{}'s collar is green"}, {"index": 438, "image_id": 2384105, "entity": "dog", "caption": "the dog bed is plaid patterned", "question": ["is there the dog bed ?"], "prompt": "the {} bed is plaid patterned"}, {"index": 439, "image_id": 2384105, "entity": "dog", "caption": "dog's ears pointing upwards", "question": ["are there dog's ears ?"], "prompt": "{}'s ears pointing upwards"}, {"index": 440, "image_id": 2384105, "entity": "dog", "caption": "Black pillow dog is laying on", "question": ["is there black pillow dog ?"], "prompt": "Black pillow {} is laying on"}, {"index": 441, "image_id": 2384105, "entity": "dog", "caption": "Collar dog is wearing", "question": ["is there collar dog ?"], "prompt": "Collar {} is wearing"}, {"index": 442, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan", "question": ["is there dog toy ?", "is there tan ?"], "prompt": "{} toy is tan"}, {"index": 443, "image_id": 2383524, "entity": "dog", "caption": "dog is lying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying on the floor"}, {"index": 444, "image_id": 2383524, "entity": "dog", "caption": "dog has the toy in it's mouth", "question": ["is there dog ?", "is there the toy ?"], "prompt": "{} has the toy in it's mouth"}, {"index": 445, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan and hairy", "question": ["is there dog toy ?"], "prompt": "{} toy is tan and hairy"}, {"index": 446, "image_id": 2383524, "entity": "dog", "caption": "dog has whiskers that are white", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers that are white"}, {"index": 447, "image_id": 2383524, "entity": "dog", "caption": "dog is laying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is laying on the floor"}, {"index": 448, "image_id": 2383524, "entity": "dog", "caption": "dog has black ears", "question": ["is there dog ?", "are there black ears ?"], "prompt": "{} has black ears"}, {"index": 449, "image_id": 2383524, "entity": "dog", "caption": "dog is lying down on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying down on the floor"}, {"index": 450, "image_id": 2383524, "entity": "dog", "caption": "dog toy is brown", "question": ["is there dog toy ?"], "prompt": "{} toy is brown"}, {"index": 451, "image_id": 2383524, "entity": "dog", "caption": "dog has toy in it's mouth", "question": ["is there dog ?", "is there toy ?", "is there it's mouth ?"], "prompt": "{} has toy in it's mouth"}, {"index": 452, "image_id": 2383524, "entity": "dog", "caption": "dog has white whiskers", "question": ["is there dog ?", "are there white whiskers ?"], "prompt": "{} has white whiskers"}, {"index": 453, "image_id": 2383524, "entity": "dog", "caption": "the dog has a nose", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "the {} has a nose"}, {"index": 454, "image_id": 2383524, "entity": "dog", "caption": "the dog has eyes", "question": ["is there the dog ?", "are there eyes ?"], "prompt": "the {} has eyes"}, {"index": 455, "image_id": 2383524, "entity": "dog", "caption": "the dog has an ear", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "the {} has an ear"}, {"index": 456, "image_id": 2383524, "entity": "dog", "caption": "The dog's face looks angry", "question": ["is there the dog's face ?"], "prompt": "The {}'s face looks angry"}, {"index": 457, "image_id": 2383242, "entity": "dog", "caption": "The dog is between the persons legs", "question": ["is there the dog ?", "are there the persons legs ?"], "prompt": "The {} is between the persons legs"}, {"index": 458, "image_id": 2382434, "entity": "dog", "caption": "The dog is on the counter", "question": ["is there the dog ?", "is there the counter ?"], "prompt": "The {} is on the counter"}, {"index": 459, "image_id": 2382434, "entity": "dog", "caption": "The dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black"}, {"index": 460, "image_id": 2382434, "entity": "dog", "caption": "The dog has long fur.", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur."}, {"index": 461, "image_id": 2382434, "entity": "dog", "caption": "The dog is on a table.", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table."}, {"index": 462, "image_id": 2382434, "entity": "dog", "caption": "The dog is sniffing the newspaper.", "question": ["is there the dog ?", "is there the newspaper ?"], "prompt": "The {} is sniffing the newspaper."}, {"index": 463, "image_id": 2382434, "entity": "dog", "caption": "The dog has curly fur", "question": ["is there the dog ?", "is there curly fur ?"], "prompt": "The {} has curly fur"}, {"index": 464, "image_id": 2382434, "entity": "dog", "caption": "the dog`s nose is black", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is black"}, {"index": 465, "image_id": 2382434, "entity": "dog", "caption": "the dog`s eyes are black", "question": ["are there the dog`s eyes ?"], "prompt": "the {}`s eyes are black"}, {"index": 466, "image_id": 2382434, "entity": "dog", "caption": "the dog`s hair is curly", "question": ["is there the dog`s hair ?"], "prompt": "the {}`s hair is curly"}, {"index": 467, "image_id": 2382434, "entity": "dog", "caption": "the dog is smelling the paper", "question": ["is there the dog ?", "is there the paper ?"], "prompt": "the {} is smelling the paper"}, {"index": 468, "image_id": 2382396, "entity": "dog", "caption": "a dog is asleep", "question": ["is there a dog ?"], "prompt": "a {} is asleep"}, {"index": 469, "image_id": 2382396, "entity": "dog", "caption": "The dog's paw is on the remote", "question": ["is there the dog's paw ?", "is there the remote ?"], "prompt": "The {}'s paw is on the remote"}, {"index": 470, "image_id": 2382396, "entity": "dog", "caption": "The dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are closed"}, {"index": 471, "image_id": 2382396, "entity": "dog", "caption": "The dog is sleep on the couch.", "question": ["is there the dog ?", "is there sleep ?", "is there the couch ?"], "prompt": "The {} is sleep on the couch."}, {"index": 472, "image_id": 2382396, "entity": "dog", "caption": "The dog has two ears.", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "The {} has two ears."}, {"index": 473, "image_id": 2382396, "entity": "dog", "caption": "A dog is in the foreground", "question": ["is there a dog ?", "is there the foreground ?"], "prompt": "A {} is in the foreground"}, {"index": 474, "image_id": 2382082, "entity": "dog", "caption": "the dog`s nose is brown", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is brown"}, {"index": 475, "image_id": 2382082, "entity": "dog", "caption": "the dog`s stomach is wet", "question": ["is there the dog`s stomach ?"], "prompt": "the {}`s stomach is wet"}, {"index": 476, "image_id": 2382082, "entity": "dog", "caption": "dog is in the beach", "question": ["is there dog ?", "is there the beach ?"], "prompt": "{} is in the beach"}, {"index": 477, "image_id": 2382082, "entity": "dog", "caption": "tail of dog is up", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is up"}, {"index": 478, "image_id": 2382082, "entity": "dog", "caption": "face of dog is white and brown", "question": ["is there face ?", "is there dog ?"], "prompt": "face of {} is white and brown"}, {"index": 479, "image_id": 2382082, "entity": "dog", "caption": "collar of dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar of {} is black"}, {"index": 480, "image_id": 2382082, "entity": "dog", "caption": "ears of dog are down ", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are down "}, {"index": 481, "image_id": 2381848, "entity": "dog", "caption": "ear of dog is brown", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is brown"}, {"index": 482, "image_id": 2381777, "entity": "dog", "caption": "Leash attached to the dog", "question": ["is there the dog ?"], "prompt": "Leash attached to the {}"}, {"index": 483, "image_id": 2381777, "entity": "dog", "caption": "the dog is wearing a floater", "question": ["is there the dog ?", "is there a floater ?"], "prompt": "the {} is wearing a floater"}, {"index": 484, "image_id": 2381777, "entity": "dog", "caption": "this is the rope tying the dog", "question": ["is there the rope ?", "is there the dog ?"], "prompt": "this is the rope tying the {}"}, {"index": 485, "image_id": 2381403, "entity": "dog", "caption": "bull dog is wearing a black and red vest ", "question": ["is there bull dog ?", "is there a black and red vest ?"], "prompt": "bull {} is wearing a black and red vest "}, {"index": 486, "image_id": 2381403, "entity": "dog", "caption": "bull dog is standing on a blue surfboard ", "question": ["is there bull dog ?", "is there a blue surfboard ?"], "prompt": "bull {} is standing on a blue surfboard "}, {"index": 487, "image_id": 2381403, "entity": "dog", "caption": "the dog has an overbite", "question": ["is there the dog ?", "is there an overbite ?"], "prompt": "the {} has an overbite"}, {"index": 488, "image_id": 2381403, "entity": "dog", "caption": "the dog is wearing a life vest", "question": ["is there the dog ?", "is there a life vest ?"], "prompt": "the {} is wearing a life vest"}, {"index": 489, "image_id": 2381403, "entity": "dog", "caption": "the dog has front legs", "question": ["is there the dog ?", "are there front legs ?"], "prompt": "the {} has front legs"}, {"index": 490, "image_id": 2381403, "entity": "dog", "caption": "the dog is on the board", "question": ["is there the dog ?", "is there the board ?"], "prompt": "the {} is on the board"}, {"index": 491, "image_id": 2381375, "entity": "dog", "caption": "the dog is lying on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is lying on the ground"}, {"index": 492, "image_id": 2381375, "entity": "dog", "caption": "the dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} is on a leash"}, {"index": 493, "image_id": 2380480, "entity": "dog", "caption": "The dog's reflection is in a mirror.", "question": ["is there the dog's reflection ?", "is there a mirror ?"], "prompt": "The {}'s reflection is in a mirror."}, {"index": 494, "image_id": 2380480, "entity": "dog", "caption": "The dog's tongue is showing. ", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is showing. "}, {"index": 495, "image_id": 2380480, "entity": "dog", "caption": "The dog's legs are in the foreground.", "question": ["are there the dog's legs ?", "is there the foreground ?"], "prompt": "The {}'s legs are in the foreground."}, {"index": 496, "image_id": 2380480, "entity": "dog", "caption": "The dog's nose is black. ", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black. "}, {"index": 497, "image_id": 2380480, "entity": "dog", "caption": "the dog has an eye", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 498, "image_id": 2380480, "entity": "dog", "caption": "the dog has a tongue", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "the {} has a tongue"}, {"index": 499, "image_id": 2380480, "entity": "dog", "caption": "the dog has a long ear", "question": ["is there the dog ?", "is there a long ear ?"], "prompt": "the {} has a long ear"}, {"index": 500, "image_id": 2380237, "entity": "dog", "caption": "the dog has its mouth open", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 501, "image_id": 2380237, "entity": "dog", "caption": "the dog has a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar"}, {"index": 502, "image_id": 2380237, "entity": "dog", "caption": "the dog's collar is blue", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is blue"}, {"index": 503, "image_id": 2380237, "entity": "dog", "caption": "the dog has a pointy ear", "question": ["is there the dog ?", "is there a pointy ear ?"], "prompt": "the {} has a pointy ear"}, {"index": 504, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy ears", "question": ["is there dog ?", "are there pointy ears ?"], "prompt": "{} has pointy ears"}, {"index": 505, "image_id": 2380237, "entity": "dog", "caption": "dog has short legs", "question": ["is there dog ?", "are there short legs ?"], "prompt": "{} has short legs"}, {"index": 506, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy teeth", "question": ["is there dog ?", "are there pointy teeth ?"], "prompt": "{} has pointy teeth"}, {"index": 507, "image_id": 2380237, "entity": "dog", "caption": "the dog is attempting to catch a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is attempting to catch a frisbee"}, {"index": 508, "image_id": 2380237, "entity": "dog", "caption": "the dog is down on his \"knees\"", "question": ["is there the dog ?", "are there his \"knees ?"], "prompt": "the {} is down on his \"knees\""}, {"index": 509, "image_id": 2380237, "entity": "dog", "caption": "dog's mouth wide open", "question": [], "prompt": "{}'s mouth wide open"}, {"index": 510, "image_id": 2380220, "entity": "dog", "caption": "dog is laying on stuffed animal ", "question": ["is there dog ?", "is there stuffed animal ?"], "prompt": "{} is laying on stuffed animal "}, {"index": 511, "image_id": 2380220, "entity": "dog", "caption": "dogs ear is black ", "question": ["are there dogs ?"], "prompt": "{}s ear is black "}, {"index": 512, "image_id": 2379710, "entity": "dog", "caption": "water splashing next to dog", "question": ["is there dog ?"], "prompt": "water splashing next to {}"}, {"index": 513, "image_id": 2379519, "entity": "dog", "caption": "The dog has it's tongue out.", "question": ["is there the dog ?", "is there tongue ?"], "prompt": "The {} has it's tongue out."}, {"index": 514, "image_id": 2379519, "entity": "dog", "caption": "The dog has brown eyes.", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes."}, {"index": 515, "image_id": 2379470, "entity": "dog", "caption": "The dog has a brown spot over one eye.", "question": ["is there the dog ?", "is there a brown spot ?", "is there one eye ?"], "prompt": "The {} has a brown spot over one eye."}, {"index": 516, "image_id": 2379470, "entity": "dog", "caption": "The dog has a spotted ear.", "question": ["is there the dog ?", "is there a spotted ear ?"], "prompt": "The {} has a spotted ear."}, {"index": 517, "image_id": 2379470, "entity": "dog", "caption": "The dog has a short tail.", "question": ["is there the dog ?", "is there a short tail ?"], "prompt": "The {} has a short tail."}, {"index": 518, "image_id": 2379470, "entity": "dog", "caption": "The dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar."}, {"index": 519, "image_id": 2379470, "entity": "dog", "caption": "The dog has a closed mouth.", "question": ["is there the dog ?", "is there a closed mouth ?"], "prompt": "The {} has a closed mouth."}, {"index": 520, "image_id": 2378890, "entity": "dog", "caption": "The dog has a chain collar.", "question": ["is there the dog ?", "is there a chain collar ?"], "prompt": "The {} has a chain collar."}, {"index": 521, "image_id": 2378890, "entity": "dog", "caption": "The dog is playing with the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee."}, {"index": 522, "image_id": 2378872, "entity": "dog", "caption": "dog has grey fur", "question": ["is there dog ?"], "prompt": "{} has grey fur"}, {"index": 523, "image_id": 2378872, "entity": "dog", "caption": "other dog has black fur", "question": ["is there other dog ?", "is there black fur ?"], "prompt": "other {} has black fur"}, {"index": 524, "image_id": 2378872, "entity": "dog", "caption": "other dog has brown face", "question": ["is there other dog ?", "is there brown face ?"], "prompt": "other {} has brown face"}, {"index": 525, "image_id": 2378872, "entity": "dog", "caption": "nose of the dog with mouth closed", "question": ["is there nose ?", "is there the dog ?", "is there mouth ?"], "prompt": "nose of the {} with mouth closed"}, {"index": 526, "image_id": 2378872, "entity": "dog", "caption": "eye of the dog with mouth shut", "question": ["is there eye ?", "is there the dog ?", "is there mouth ?"], "prompt": "eye of the {} with mouth shut"}, {"index": 527, "image_id": 2378738, "entity": "dog", "caption": "the dog's tongue is sticking out", "question": ["is there the dog's tongue ?"], "prompt": "the {}'s tongue is sticking out"}, {"index": 528, "image_id": 2378738, "entity": "dog", "caption": "the dog is wearing a harness", "question": ["is there the dog ?", "is there a harness ?"], "prompt": "the {} is wearing a harness"}, {"index": 529, "image_id": 2378738, "entity": "dog", "caption": "the dog has whiskers ", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers "}, {"index": 530, "image_id": 2378738, "entity": "dog", "caption": "the dog's collar has a silver tag", "question": ["is there the dog's collar ?", "is there a silver tag ?"], "prompt": "the {}'s collar has a silver tag"}, {"index": 531, "image_id": 2378738, "entity": "dog", "caption": "the dog has teeth", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "the {} has teeth"}, {"index": 532, "image_id": 2378738, "entity": "dog", "caption": "the dogs curved tail", "question": ["are there the dogs ?", "is there tail ?"], "prompt": "the {}s curved tail"}, {"index": 533, "image_id": 2378738, "entity": "dog", "caption": "the dog collar is dark brown", "question": ["is there the dog collar ?"], "prompt": "the {} collar is dark brown"}, {"index": 534, "image_id": 2378738, "entity": "dog", "caption": "the dog`s mouth is open", "question": ["is there the dog`s mouth ?"], "prompt": "the {}`s mouth is open"}, {"index": 535, "image_id": 2378738, "entity": "dog", "caption": "the dog`s neck is white", "question": ["is there the dog`s neck ?"], "prompt": "the {}`s neck is white"}, {"index": 536, "image_id": 2378738, "entity": "dog", "caption": "the dog`s face is multi colored", "question": ["is there the dog`s face ?"], "prompt": "the {}`s face is multi colored"}, {"index": 537, "image_id": 2378013, "entity": "dog", "caption": "paws of dog are black", "question": ["are there paws ?", "is there dog ?"], "prompt": "paws of {} are black"}, {"index": 538, "image_id": 2378013, "entity": "dog", "caption": "hair eyes of dog are big", "question": ["are there hair eyes ?", "is there dog ?"], "prompt": "hair eyes of {} are big"}, {"index": 539, "image_id": 2378013, "entity": "dog", "caption": "dog is wearing a bandana", "question": ["is there dog ?", "is there a bandana ?"], "prompt": "{} is wearing a bandana"}, {"index": 540, "image_id": 2377946, "entity": "dog", "caption": "The dog is on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "The {} is on the bed"}, {"index": 541, "image_id": 2377946, "entity": "dog", "caption": "The dog has a red blanket", "question": ["is there the dog ?", "is there a red blanket ?"], "prompt": "The {} has a red blanket"}, {"index": 542, "image_id": 2377695, "entity": "dog", "caption": "the dogs pink tounge", "question": ["are there the dogs ?"], "prompt": "the {}s pink tounge"}, {"index": 543, "image_id": 2377541, "entity": "dog", "caption": "a dogs ear with black spots", "question": ["are there a dogs ?", "are there black spots ?"], "prompt": "a {}s ear with black spots"}, {"index": 544, "image_id": 2377541, "entity": "dog", "caption": "wet dog standing in pond", "question": ["is there wet dog ?", "is there pond ?"], "prompt": "wet {} standing in pond"}, {"index": 545, "image_id": 2377276, "entity": "dog", "caption": "fur of dog is long", "question": ["is there fur ?", "is there dog ?"], "prompt": "fur of {} is long"}, {"index": 546, "image_id": 2377096, "entity": "dog", "caption": "the dog's snout is black", "question": ["is there the dog's snout ?"], "prompt": "the {}'s snout is black"}, {"index": 547, "image_id": 2377096, "entity": "dog", "caption": "the dog has a leather collar", "question": ["is there the dog ?", "is there a leather collar ?"], "prompt": "the {} has a leather collar"}, {"index": 548, "image_id": 2377096, "entity": "dog", "caption": "the dog has black ears ", "question": ["is there the dog ?", "are there black ears ?"], "prompt": "the {} has black ears "}, {"index": 549, "image_id": 2376453, "entity": "dog", "caption": "the dog has an orange collar ", "question": ["is there the dog ?", "is there an orange collar ?"], "prompt": "the {} has an orange collar "}, {"index": 550, "image_id": 2376453, "entity": "dog", "caption": "this is an ear of a dog", "question": ["is there an ear ?", "is there a dog ?"], "prompt": "this is an ear of a {}"}, {"index": 551, "image_id": 2376453, "entity": "dog", "caption": "this is a tongue of a dog", "question": ["is there a tongue ?", "is there a dog ?"], "prompt": "this is a tongue of a {}"}, {"index": 552, "image_id": 2376453, "entity": "dog", "caption": "two dogs leashed to post", "question": ["are there two dogs ?"], "prompt": "two {}s leashed to post"}, {"index": 553, "image_id": 2376453, "entity": "dog", "caption": "two dogs tied to a tree", "question": ["are there two dogs ?", "is there a tree ?"], "prompt": "two {}s tied to a tree"}, {"index": 554, "image_id": 2376406, "entity": "dog", "caption": "dog has it's mouth open", "question": ["is there dog ?"], "prompt": "{} has it's mouth open"}, {"index": 555, "image_id": 2376406, "entity": "dog", "caption": "dog is leaning against the sofa", "question": ["is there dog ?", "is there the sofa ?"], "prompt": "{} is leaning against the sofa"}, {"index": 556, "image_id": 2376406, "entity": "dog", "caption": "dog's teeth are white", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are white"}, {"index": 557, "image_id": 2376134, "entity": "dog", "caption": "A dog is smelling a cat", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} is smelling a cat"}, {"index": 558, "image_id": 2376134, "entity": "dog", "caption": "An old dog is greeting the new cat", "question": ["is there an old dog ?", "is there the new cat ?"], "prompt": "An old {} is greeting the new cat"}, {"index": 559, "image_id": 2376134, "entity": "dog", "caption": "A cat is friends with a dog", "question": ["is there a cat ?", "are there friends ?", "is there a dog ?"], "prompt": "A cat is friends with a {}"}, {"index": 560, "image_id": 2376134, "entity": "dog", "caption": "dog has two ears.", "question": ["is there dog ?", "are there two ears ?"], "prompt": "{} has two ears."}, {"index": 561, "image_id": 2376108, "entity": "dog", "caption": "dog has purple collar", "question": ["is there dog ?", "is there purple collar ?"], "prompt": "{} has purple collar"}, {"index": 562, "image_id": 2376108, "entity": "dog", "caption": "dog has brown nose", "question": ["is there dog ?", "is there brown nose ?"], "prompt": "{} has brown nose"}, {"index": 563, "image_id": 2376108, "entity": "dog", "caption": "dog has light brown hair", "question": ["is there dog ?", "is there light brown hair ?"], "prompt": "{} has light brown hair"}, {"index": 564, "image_id": 2376108, "entity": "dog", "caption": "dog has dark brown ears", "question": ["is there dog ?", "are there dark brown ears ?"], "prompt": "{} has dark brown ears"}, {"index": 565, "image_id": 2375658, "entity": "dog", "caption": "Sad looking dog face", "question": ["is there sad looking dog face ?"], "prompt": "Sad looking {} face"}, {"index": 566, "image_id": 2375561, "entity": "dog", "caption": "The dog is wearing a blue harness", "question": ["is there the dog ?", "is there a blue harness ?"], "prompt": "The {} is wearing a blue harness"}, {"index": 567, "image_id": 2375561, "entity": "dog", "caption": "The dog is standing on a chair.", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} is standing on a chair."}, {"index": 568, "image_id": 2375451, "entity": "dog", "caption": "the dogs nose is black ", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black "}, {"index": 569, "image_id": 2375428, "entity": "dog", "caption": "The dog is looking at the camera", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera"}, {"index": 570, "image_id": 2375428, "entity": "dog", "caption": "The dog has long fur", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur"}, {"index": 571, "image_id": 2374930, "entity": "dog", "caption": "baby is leaning on a dog", "question": ["is there baby ?", "is there a dog ?"], "prompt": "baby is leaning on a {}"}, {"index": 572, "image_id": 2374930, "entity": "dog", "caption": "nose of dog is brown ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is brown "}, {"index": 573, "image_id": 2374268, "entity": "dog", "caption": "the dog's leg hanging over the sofa", "question": ["is there the dog's leg ?", "is there the sofa ?"], "prompt": "the {}'s leg hanging over the sofa"}, {"index": 574, "image_id": 2374268, "entity": "dog", "caption": "dog has face buried in the couch", "question": ["is there dog ?", "is there face ?", "is there the couch ?"], "prompt": "{} has face buried in the couch"}, {"index": 575, "image_id": 2374132, "entity": "dog", "caption": "dog has light brown paws", "question": ["is there dog ?", "are there light brown paws ?"], "prompt": "{} has light brown paws"}, {"index": 576, "image_id": 2374013, "entity": "dog", "caption": "dog's ears are light brown", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are light brown"}, {"index": 577, "image_id": 2373955, "entity": "dog", "caption": "a brown hat the dog is wearing", "question": ["is there a brown hat ?", "is there the dog ?"], "prompt": "a brown hat the {} is wearing"}, {"index": 578, "image_id": 2373955, "entity": "dog", "caption": "black dog kissing man", "question": ["is there black dog kissing man ?"], "prompt": "black {} kissing man"}, {"index": 579, "image_id": 2373533, "entity": "dog", "caption": "eyes of dog are big", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are big"}, {"index": 580, "image_id": 2373533, "entity": "dog", "caption": "mouth of dog is touching a rail", "question": ["is there mouth ?", "is there dog ?", "is there a rail ?"], "prompt": "mouth of {} is touching a rail"}, {"index": 581, "image_id": 2373340, "entity": "dog", "caption": "dog is wearing pink collar", "question": ["is there dog ?", "is there pink collar ?"], "prompt": "{} is wearing pink collar"}, {"index": 582, "image_id": 2373340, "entity": "dog", "caption": "dogs nose is brown", "question": ["are there dogs nose ?"], "prompt": "{}s nose is brown"}, {"index": 583, "image_id": 2373340, "entity": "dog", "caption": "dog right ear is brown", "question": ["is there dog right ear ?"], "prompt": "{} right ear is brown"}, {"index": 584, "image_id": 2373155, "entity": "dog", "caption": "dogs has a chain on his neck", "question": ["are there dogs ?", "is there a chain ?", "is there his neck ?"], "prompt": "{}s has a chain on his neck"}, {"index": 585, "image_id": 2373141, "entity": "dog", "caption": "This is a man with a dog", "question": ["is there a man ?", "is there a dog ?"], "prompt": "This is a man with a {}"}, {"index": 586, "image_id": 2373109, "entity": "dog", "caption": "the dog is on the ground ", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground "}, {"index": 587, "image_id": 2373073, "entity": "dog", "caption": "dog is wearing a hat ", "question": ["is there dog ?", "is there a hat ?"], "prompt": "{} is wearing a hat "}, {"index": 588, "image_id": 2372988, "entity": "dog", "caption": "Water drips down dog's face.", "question": ["is there water ?", "is there dog's face ?"], "prompt": "Water drips down {}'s face."}, {"index": 589, "image_id": 2372988, "entity": "dog", "caption": "dog is wearing a chain", "question": ["is there dog ?", "is there a chain ?"], "prompt": "{} is wearing a chain"}, {"index": 590, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A {} is riding in a car"}, {"index": 591, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in the passenger seat", "question": ["is there a dog ?", "is there the passenger seat ?"], "prompt": "A {} is riding in the passenger seat"}, {"index": 592, "image_id": 2372618, "entity": "dog", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A {} is in its master's car"}, {"index": 593, "image_id": 2372618, "entity": "dog", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} likes riding in a car"}, {"index": 594, "image_id": 2372618, "entity": "dog", "caption": "The dog is looking out the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is looking out the window"}, {"index": 595, "image_id": 2372586, "entity": "dog", "caption": "The dog is sitting on a bench.", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is sitting on a bench."}, {"index": 596, "image_id": 2372586, "entity": "dog", "caption": "dog is wearing a blue harness", "question": ["is there dog ?", "is there a blue harness ?"], "prompt": "{} is wearing a blue harness"}, {"index": 597, "image_id": 2372586, "entity": "dog", "caption": "the dog has a white belly", "question": ["is there the dog ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 598, "image_id": 2372549, "entity": "dog", "caption": "the dog looks sleepy", "question": ["is there the dog ?"], "prompt": "the {} looks sleepy"}, {"index": 599, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is laying on a stuffed animal"}, {"index": 600, "image_id": 2372549, "entity": "dog", "caption": "the dog is pale tan in color", "question": ["is there the dog ?", "is there pale tan ?", "is there color ?"], "prompt": "the {} is pale tan in color"}, {"index": 601, "image_id": 2372549, "entity": "dog", "caption": "stuffed animal dog is sleeping on", "question": ["is there stuffed animal dog ?"], "prompt": "stuffed animal {} is sleeping on"}, {"index": 602, "image_id": 2372549, "entity": "dog", "caption": "red bed dog is sleeping on", "question": ["is there red bed dog ?"], "prompt": "red bed {} is sleeping on"}, {"index": 603, "image_id": 2372549, "entity": "dog", "caption": "the cushion under the dog is red", "question": ["is there the cushion ?", "is there the dog ?"], "prompt": "the cushion under the {} is red"}, {"index": 604, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a cushion", "question": ["is there the dog ?", "is there a cushion ?"], "prompt": "the {} is laying on a cushion"}, {"index": 605, "image_id": 2372549, "entity": "dog", "caption": "The dog ear on the right", "question": ["is there the dog ear ?", "is there the right ?"], "prompt": "The {} ear on the right"}, {"index": 606, "image_id": 2372293, "entity": "dog", "caption": "Dog leash on the beige dog", "question": ["is there dog ?", "is there the beige dog ?"], "prompt": "Dog leash on the beige {}"}, {"index": 607, "image_id": 2372293, "entity": "dog", "caption": "dog has white teeth", "question": ["is there dog ?", "are there white teeth ?"], "prompt": "{} has white teeth"}, {"index": 608, "image_id": 2372293, "entity": "dog", "caption": "dog has black under his lip", "question": ["is there dog ?", "is there his lip ?"], "prompt": "{} has black under his lip"}, {"index": 609, "image_id": 2372091, "entity": "dog", "caption": "wooden bench dog is sitting on", "question": ["is there wooden bench dog ?"], "prompt": "wooden bench {} is sitting on"}, {"index": 610, "image_id": 2371865, "entity": "dog", "caption": "Flowered leash going to the dog", "question": ["is there flowered leash ?", "is there the dog ?"], "prompt": "Flowered leash going to the {}"}, {"index": 611, "image_id": 2371865, "entity": "dog", "caption": "dog looks off into distance", "question": ["is there dog ?", "is there distance ?"], "prompt": "{} looks off into distance"}, {"index": 612, "image_id": 2371865, "entity": "dog", "caption": "dog wears sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} wears sweater"}, {"index": 613, "image_id": 2371865, "entity": "dog", "caption": "dog sits next to bicycle", "question": ["is there dog ?", "is there bicycle ?"], "prompt": "{} sits next to bicycle"}, {"index": 614, "image_id": 2371865, "entity": "dog", "caption": "dog sits on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} sits on sidewalk"}, {"index": 615, "image_id": 2371865, "entity": "dog", "caption": "sweater is on dog", "question": ["is there dog ?"], "prompt": "sweater is on {}"}, {"index": 616, "image_id": 2371865, "entity": "dog", "caption": "dog is inside sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is inside sweater"}, {"index": 617, "image_id": 2371865, "entity": "dog", "caption": "The dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash"}, {"index": 618, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing near a bicycle", "question": ["is there the white dog ?", "is there a bicycle ?"], "prompt": "The white {} is standing near a bicycle"}, {"index": 619, "image_id": 2371865, "entity": "dog", "caption": "The white dog in the sweater has a bushy tail", "question": ["is there the white dog ?", "is there the sweater ?", "is there a bushy tail ?"], "prompt": "The white {} in the sweater has a bushy tail"}, {"index": 620, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing on the sidewalk", "question": ["is there the white dog ?", "is there the sidewalk ?"], "prompt": "The white {} is standing on the sidewalk"}, {"index": 621, "image_id": 2371612, "entity": "dog", "caption": "the dog is using the laptop", "question": ["is there the dog ?", "is there the laptop ?"], "prompt": "the {} is using the laptop"}, {"index": 622, "image_id": 2371612, "entity": "dog", "caption": "A dog with it's paws on a laptop.", "question": ["is there a dog ?", "are there it's paws ?", "is there a laptop ?"], "prompt": "A {} with it's paws on a laptop."}, {"index": 623, "image_id": 2371612, "entity": "dog", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The {} is using the computer "}, {"index": 624, "image_id": 2371612, "entity": "dog", "caption": "The nose of the dog is black ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "The nose of the {} is black "}, {"index": 625, "image_id": 2371612, "entity": "dog", "caption": "The eye of the dog is brown ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "The eye of the {} is brown "}, {"index": 626, "image_id": 2371520, "entity": "dog", "caption": "carpet dog is playing on", "question": ["is there carpet dog ?"], "prompt": "carpet {} is playing on"}, {"index": 627, "image_id": 2371249, "entity": "dog", "caption": "A dog has three colors of fur.", "question": ["is there a dog ?", "are there three colors ?", "is there fur ?"], "prompt": "A {} has three colors of fur."}, {"index": 628, "image_id": 2371249, "entity": "dog", "caption": "A dog is wearing a scarf around the neck.", "question": ["is there a dog ?", "is there a scarf ?", "is there the neck ?"], "prompt": "A {} is wearing a scarf around the neck."}, {"index": 629, "image_id": 2371249, "entity": "dog", "caption": "A woman is sitting close to a dog.", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman is sitting close to a {}."}, {"index": 630, "image_id": 2371169, "entity": "dog", "caption": "The dog has a frisbee in mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there mouth ?"], "prompt": "The {} has a frisbee in mouth."}, {"index": 631, "image_id": 2371169, "entity": "dog", "caption": "the dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar."}, {"index": 632, "image_id": 2371169, "entity": "dog", "caption": "The back left leg of a dog", "question": ["is there the back left leg ?", "is there a dog ?"], "prompt": "The back left leg of a {}"}, {"index": 633, "image_id": 2371169, "entity": "dog", "caption": "The front left leg of a dog", "question": ["is there the front left leg ?", "is there a dog ?"], "prompt": "The front left leg of a {}"}, {"index": 634, "image_id": 2371119, "entity": "dog", "caption": "the dog is laying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is laying on the bed"}, {"index": 635, "image_id": 2370667, "entity": "dog", "caption": "the dogs nail ", "question": ["are there the dogs ?"], "prompt": "the {}s nail "}, {"index": 636, "image_id": 2370647, "entity": "dog", "caption": "The dog has a serious face", "question": ["is there the dog ?", "is there a serious face ?"], "prompt": "The {} has a serious face"}, {"index": 637, "image_id": 2370647, "entity": "dog", "caption": "The dog has white whiskers.", "question": ["is there the dog ?", "are there white whiskers ?"], "prompt": "The {} has white whiskers."}, {"index": 638, "image_id": 2370647, "entity": "dog", "caption": "The dog has a brown colar.", "question": ["is there the dog ?", "is there a brown colar ?"], "prompt": "The {} has a brown colar."}, {"index": 639, "image_id": 2370508, "entity": "dog", "caption": "eye of dog is black ", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black "}, {"index": 640, "image_id": 2370508, "entity": "dog", "caption": "chest of dog is white", "question": ["is there chest ?", "is there dog ?"], "prompt": "chest of {} is white"}, {"index": 641, "image_id": 2370508, "entity": "dog", "caption": "dog has dog tags", "question": ["is there dog ?", "are there dog tags ?"], "prompt": "{} has {} tags"}, {"index": 642, "image_id": 2370342, "entity": "dog", "caption": "dog's head is on the pillow", "question": ["is there dog's head ?", "is there the pillow ?"], "prompt": "{}'s head is on the pillow"}, {"index": 643, "image_id": 2370107, "entity": "dog", "caption": "bottom left tooth of dog", "question": ["is there bottom ?", "is there tooth ?", "is there dog ?"], "prompt": "bottom left tooth of {}"}, {"index": 644, "image_id": 2369919, "entity": "dog", "caption": "dogs nose is black ", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black "}, {"index": 645, "image_id": 2369919, "entity": "dog", "caption": "the dog is laying down on a shoe ", "question": ["is there the dog ?", "is there a shoe ?"], "prompt": "the {} is laying down on a shoe "}, {"index": 646, "image_id": 2369591, "entity": "dog", "caption": "the dog has a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} has a leash"}, {"index": 647, "image_id": 2369591, "entity": "dog", "caption": "The dog's eye looking ahead", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye looking ahead"}, {"index": 648, "image_id": 2369270, "entity": "dog", "caption": "Frisbee is in the dog's mouth", "question": ["is there the dog's mouth ?"], "prompt": "Frisbee is in the {}'s mouth"}, {"index": 649, "image_id": 2368889, "entity": "dog", "caption": "Big brown dog spiked pink collar.", "question": ["is there big brown dog ?", "is there pink collar ?"], "prompt": "Big brown {} spiked pink collar."}, {"index": 650, "image_id": 2368858, "entity": "dog", "caption": "dog is laying on the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is laying on the ground"}, {"index": 651, "image_id": 2368858, "entity": "dog", "caption": "dog with tongue sticking out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue sticking out"}, {"index": 652, "image_id": 2368858, "entity": "dog", "caption": "the dog has a front paw", "question": ["is there the dog ?", "is there a front paw ?"], "prompt": "the {} has a front paw"}, {"index": 653, "image_id": 2368858, "entity": "dog", "caption": "the dog has nails", "question": ["is there the dog ?", "are there nails ?"], "prompt": "the {} has nails"}, {"index": 654, "image_id": 2368858, "entity": "dog", "caption": "the dog is lying down", "question": ["is there the dog ?"], "prompt": "the {} is lying down"}, {"index": 655, "image_id": 2368714, "entity": "dog", "caption": "dog curled up with a teddy bear", "question": ["is there dog ?"], "prompt": "{} curled up with a teddy bear"}, {"index": 656, "image_id": 2368714, "entity": "dog", "caption": "ear of dog is black ", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is black "}, {"index": 657, "image_id": 2368054, "entity": "dog", "caption": "dog has a purple leash", "question": ["is there dog ?", "is there a purple leash ?"], "prompt": "{} has a purple leash"}, {"index": 658, "image_id": 2368054, "entity": "dog", "caption": "this dog is wearing a red harness", "question": ["is there this dog ?", "is there a red harness ?"], "prompt": "this {} is wearing a red harness"}, {"index": 659, "image_id": 2367865, "entity": "dog", "caption": "The dog's eyes are yellow", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are yellow"}, {"index": 660, "image_id": 2367488, "entity": "dog", "caption": "the dog is inside a van", "question": ["is there the dog ?", "is there a van ?"], "prompt": "the {} is inside a van"}, {"index": 661, "image_id": 2367488, "entity": "dog", "caption": "the dog tag hanging", "question": ["is there the dog tag ?"], "prompt": "the {} tag hanging"}, {"index": 662, "image_id": 2367488, "entity": "dog", "caption": "The dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar"}, {"index": 663, "image_id": 2367488, "entity": "dog", "caption": "navy blanket dog is laying on", "question": ["is there navy blanket dog ?"], "prompt": "navy blanket {} is laying on"}, {"index": 664, "image_id": 2367488, "entity": "dog", "caption": "The dog's pink tongue is very long", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue is very long"}, {"index": 665, "image_id": 2367488, "entity": "dog", "caption": "A large tongue hanging out of the dog's mouth", "question": ["is there a large tongue ?", "is there the dog's mouth ?"], "prompt": "A large tongue hanging out of the {}'s mouth"}, {"index": 666, "image_id": 2367488, "entity": "dog", "caption": "The dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 667, "image_id": 2367433, "entity": "dog", "caption": "pizza that dog is eating", "question": ["is there pizza ?", "is there that dog ?"], "prompt": "pizza that {} is eating"}, {"index": 668, "image_id": 2367433, "entity": "dog", "caption": "steel grate that dog is standing on", "question": ["is there steel grate ?", "is there that dog ?"], "prompt": "steel grate that {} is standing on"}, {"index": 669, "image_id": 2367152, "entity": "dog", "caption": "mouth of dog is open", "question": ["is there mouth ?", "is there dog ?"], "prompt": "mouth of {} is open"}, {"index": 670, "image_id": 2366422, "entity": "dog", "caption": "dog tail held high", "question": ["is there dog tail ?"], "prompt": "{} tail held high"}, {"index": 671, "image_id": 2366422, "entity": "dog", "caption": "a dog that has brown eyes", "question": ["is there a dog ?", "are there brown eyes ?"], "prompt": "a {} that has brown eyes"}, {"index": 672, "image_id": 2366422, "entity": "dog", "caption": "the dog has a brown ear", "question": ["is there the dog ?", "is there a brown ear ?"], "prompt": "the {} has a brown ear"}, {"index": 673, "image_id": 2366422, "entity": "dog", "caption": "this dog has eyes", "question": ["is there this dog ?", "are there eyes ?"], "prompt": "this {} has eyes"}, {"index": 674, "image_id": 2366422, "entity": "dog", "caption": "this dog has ears", "question": ["is there this dog ?", "are there ears ?"], "prompt": "this {} has ears"}, {"index": 675, "image_id": 2366422, "entity": "dog", "caption": "this dog's nose is black", "question": ["is there this dog's nose ?"], "prompt": "this {}'s nose is black"}, {"index": 676, "image_id": 2366422, "entity": "dog", "caption": "this dog has a long tail", "question": ["is there this dog ?", "is there a long tail ?"], "prompt": "this {} has a long tail"}, {"index": 677, "image_id": 2365888, "entity": "dog", "caption": "the dog has a small tail", "question": ["is there the dog ?", "is there a small tail ?"], "prompt": "the {} has a small tail"}, {"index": 678, "image_id": 2365787, "entity": "dog", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th e{} is in the car "}, {"index": 679, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking outside the window"}, {"index": 680, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside ", "question": ["is there the dog ?"], "prompt": "the {} is looking outside "}, {"index": 681, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking through the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking through the window"}, {"index": 682, "image_id": 2365756, "entity": "dog", "caption": "the doghas a seat belt on ", "question": ["is there a seat belt ?"], "prompt": "the {}has a seat belt on "}, {"index": 683, "image_id": 2365756, "entity": "dog", "caption": "Black seatbelt holding back a dog. ", "question": ["is there black seatbelt ?", "is there a dog ?"], "prompt": "Black seatbelt holding back a {}. "}, {"index": 684, "image_id": 2365712, "entity": "dog", "caption": "the dog is licking the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is licking the cake"}, {"index": 685, "image_id": 2365044, "entity": "dog", "caption": "dog is wearing a bow tie ", "question": ["is there dog ?", "is there a bow tie ?"], "prompt": "{} is wearing a bow tie "}, {"index": 686, "image_id": 2364811, "entity": "dog", "caption": "The pillow the dog is laying on.", "question": ["is there the pillow ?", "is there the dog ?"], "prompt": "The pillow the {} is laying on."}, {"index": 687, "image_id": 2364811, "entity": "dog", "caption": "the dog is getting ready for bed", "question": ["is there the dog ?", "is there bed ?"], "prompt": "the {} is getting ready for bed"}, {"index": 688, "image_id": 2364811, "entity": "dog", "caption": "this dog looks comfortable in bed", "question": ["is there this dog ?", "is there bed ?"], "prompt": "this {} looks comfortable in bed"}, {"index": 689, "image_id": 2364811, "entity": "dog", "caption": "dog has hazel eyes", "question": ["is there dog ?", "are there hazel eyes ?"], "prompt": "{} has hazel eyes"}, {"index": 690, "image_id": 2364543, "entity": "dog", "caption": "dog is holding a ball", "question": ["is there dog ?", "is there a ball ?"], "prompt": "{} is holding a ball"}, {"index": 691, "image_id": 2364543, "entity": "dog", "caption": "black dog with paws forward looking at camera", "question": ["is there black dog ?", "are there paws ?", "is there camera ?"], "prompt": "black {} with paws forward looking at camera"}, {"index": 692, "image_id": 2364543, "entity": "dog", "caption": "dog has a ball inside his mouth", "question": ["is there dog ?", "is there a ball ?", "is there his mouth ?"], "prompt": "{} has a ball inside his mouth"}, {"index": 693, "image_id": 2364543, "entity": "dog", "caption": "snout of dog is color salt and pepper", "question": ["is there snout ?", "is there dog ?", "is there color salt ?", "is there pepper ?"], "prompt": "snout of {} is color salt and pepper"}, {"index": 694, "image_id": 2364504, "entity": "dog", "caption": "The dog is wearing a purple collar.", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "The {} is wearing a purple collar."}, {"index": 695, "image_id": 2364504, "entity": "dog", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One {} is sitting in the car."}, {"index": 696, "image_id": 2364448, "entity": "dog", "caption": "the dog has a paw", "question": ["is there the dog ?", "is there a paw ?"], "prompt": "the {} has a paw"}, {"index": 697, "image_id": 2364244, "entity": "dog", "caption": "the dog is wearing a tiara", "question": ["is there the dog ?", "is there a tiara ?"], "prompt": "the {} is wearing a tiara"}, {"index": 698, "image_id": 2364208, "entity": "dog", "caption": "the cow is looking at the dog", "question": ["is there the cow ?", "is there the dog ?"], "prompt": "the cow is looking at the {}"}, {"index": 699, "image_id": 2363392, "entity": "dog", "caption": "a dog with his tooth sticking out", "question": ["is there a dog ?", "is there his tooth ?"], "prompt": "a {} with his tooth sticking out"}, {"index": 700, "image_id": 2363392, "entity": "dog", "caption": "green couch cushion dog is sleeping on", "question": ["is there green couch cushion dog ?"], "prompt": "green couch cushion {} is sleeping on"}, {"index": 701, "image_id": 2363392, "entity": "dog", "caption": "dog lip pulled up against cushion", "question": ["is there dog lip ?", "is there cushion ?"], "prompt": "{} lip pulled up against cushion"}, {"index": 702, "image_id": 2363392, "entity": "dog", "caption": "dog's tongue sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue sticking out"}, {"index": 703, "image_id": 2363350, "entity": "dog", "caption": "A dog is laying in his bed", "question": ["is there a dog ?", "is there his bed ?"], "prompt": "A {} is laying in his bed"}, {"index": 704, "image_id": 2363350, "entity": "dog", "caption": "The dog is resting on a pillow", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is resting on a pillow"}, {"index": 705, "image_id": 2362763, "entity": "dog", "caption": "dog's teeth are showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are showing"}, {"index": 706, "image_id": 2362553, "entity": "dog", "caption": "dog with head tilted up", "question": ["is there dog ?", "is there head ?"], "prompt": "{} with head tilted up"}, {"index": 707, "image_id": 2362553, "entity": "dog", "caption": "the dog has a right eye", "question": ["is there the dog ?", "is there a right eye ?"], "prompt": "the {} has a right eye"}, {"index": 708, "image_id": 2362525, "entity": "dog", "caption": "The dog is in the bag", "question": ["is there the dog ?", "is there the bag ?"], "prompt": "The {} is in the bag"}, {"index": 709, "image_id": 2362525, "entity": "dog", "caption": "The bag is holding the dog", "question": ["is there the bag ?", "is there the dog ?"], "prompt": "The bag is holding the {}"}, {"index": 710, "image_id": 2362525, "entity": "dog", "caption": "The small backpack holds a dog", "question": ["is there the small backpack ?", "is there a dog ?"], "prompt": "The small backpack holds a {}"}, {"index": 711, "image_id": 2362525, "entity": "dog", "caption": "The dog is turning its head", "question": ["is there the dog ?", "is there its head ?"], "prompt": "The {} is turning its head"}, {"index": 712, "image_id": 2362525, "entity": "dog", "caption": "this is a \"doggy pack\"", "question": ["is there a \"doggy pack ?"], "prompt": "this is a \"{}gy pack\""}, {"index": 713, "image_id": 2362323, "entity": "dog", "caption": "dog is wearing chain collar", "question": ["is there dog ?", "is there chain collar ?"], "prompt": "{} is wearing chain collar"}, {"index": 714, "image_id": 2362323, "entity": "dog", "caption": "the dog is looking at the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is looking at the cake"}, {"index": 715, "image_id": 2362323, "entity": "dog", "caption": "the dog looks sad", "question": ["is there the dog ?"], "prompt": "the {} looks sad"}, {"index": 716, "image_id": 2362323, "entity": "dog", "caption": "the dog lays head on arm", "question": ["is there the dog ?", "is there head ?", "is there arm ?"], "prompt": "the {} lays head on arm"}, {"index": 717, "image_id": 2362323, "entity": "dog", "caption": "the dog has spots", "question": ["is there the dog ?", "are there spots ?"], "prompt": "the {} has spots"}, {"index": 718, "image_id": 2362323, "entity": "dog", "caption": "eye of dog is black", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black"}, {"index": 719, "image_id": 2362196, "entity": "dog", "caption": " a dog with it's tongue sticking out", "question": ["is there a dog ?", "is there tongue ?"], "prompt": " a {} with it's tongue sticking out"}, {"index": 720, "image_id": 2362106, "entity": "dog", "caption": "this is a dog ", "question": ["is there a dog ?"], "prompt": "this is a {} "}, {"index": 721, "image_id": 2362106, "entity": "dog", "caption": "the dog is lying down on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is lying down on the floor"}, {"index": 722, "image_id": 2362106, "entity": "dog", "caption": "The dog is in somebody's house", "question": ["is there the dog ?", "is there somebody's house ?"], "prompt": "The {} is in somebody's house"}, {"index": 723, "image_id": 2362106, "entity": "dog", "caption": "The dog is laying by the door", "question": ["is there the dog ?", "is there the door ?"], "prompt": "The {} is laying by the door"}, {"index": 724, "image_id": 2362106, "entity": "dog", "caption": "The dog is guarding the house", "question": ["is there the dog ?", "is there the house ?"], "prompt": "The {} is guarding the house"}, {"index": 725, "image_id": 2362106, "entity": "dog", "caption": "The dog is awake in daytime", "question": ["is there the dog ?", "is there daytime ?"], "prompt": "The {} is awake in daytime"}, {"index": 726, "image_id": 2362106, "entity": "dog", "caption": "The dog is waiting to go outside", "question": ["is there the dog ?"], "prompt": "The {} is waiting to go outside"}, {"index": 727, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting to be let out", "question": ["is there a dog ?"], "prompt": "A {} is waiting to be let out"}, {"index": 728, "image_id": 2362106, "entity": "dog", "caption": "A dog is sleeping on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is sleeping on the floor"}, {"index": 729, "image_id": 2362106, "entity": "dog", "caption": "A dog is looking for attention", "question": ["is there a dog ?", "is there attention ?"], "prompt": "A {} is looking for attention"}, {"index": 730, "image_id": 2362106, "entity": "dog", "caption": "The dog is looking lonely", "question": ["is there the dog ?"], "prompt": "The {} is looking lonely"}, {"index": 731, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting by the door", "question": ["is there a dog ?", "is there the door ?"], "prompt": "A {} is waiting by the door"}, {"index": 732, "image_id": 2362106, "entity": "dog", "caption": "A dog is laying on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is laying on the floor"}, {"index": 733, "image_id": 2362106, "entity": "dog", "caption": "The dog is wanting to be fed", "question": ["is there the dog ?"], "prompt": "The {} is wanting to be fed"}, {"index": 734, "image_id": 2362106, "entity": "dog", "caption": "The dog is enjoying its day", "question": ["is there the dog ?", "is there its day ?"], "prompt": "The {} is enjoying its day"}, {"index": 735, "image_id": 2362106, "entity": "dog", "caption": "The dog is getting some rest", "question": ["is there the dog ?", "is there some rest ?"], "prompt": "The {} is getting some rest"}, {"index": 736, "image_id": 2362106, "entity": "dog", "caption": "The dog belongs to the home owner", "question": ["is there the dog ?", "is there the home owner ?"], "prompt": "The {} belongs to the home owner"}, {"index": 737, "image_id": 2361653, "entity": "dog", "caption": "the dog has a left eye", "question": ["is there the dog ?", "is there a left eye ?"], "prompt": "the {} has a left eye"}, {"index": 738, "image_id": 2361100, "entity": "dog", "caption": "floppy black dog ear ", "question": ["is there floppy black dog ear ?"], "prompt": "floppy black {} ear "}, {"index": 739, "image_id": 2361100, "entity": "dog", "caption": "two dog ear in different positions at same time ", "question": ["is there two dog ear ?", "are there different positions ?", "is there same time ?"], "prompt": "two {} ear in different positions at same time "}, {"index": 740, "image_id": 2361100, "entity": "dog", "caption": "The dog's left ear flopped down", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear flopped down"}, {"index": 741, "image_id": 2361100, "entity": "dog", "caption": "the dog's right ear is up", "question": ["is there the dog's right ear ?"], "prompt": "the {}'s right ear is up"}, {"index": 742, "image_id": 2361100, "entity": "dog", "caption": "the dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are open"}, {"index": 743, "image_id": 2360869, "entity": "dog", "caption": "dog is laying on dog bed", "question": ["is there dog ?", "is there dog bed ?"], "prompt": "{} is laying on {} bed"}, {"index": 744, "image_id": 2360869, "entity": "dog", "caption": "dog has small nose", "question": ["is there dog ?", "is there small nose ?"], "prompt": "{} has small nose"}, {"index": 745, "image_id": 2360869, "entity": "dog", "caption": "dog bed is beige", "question": ["is there dog bed ?"], "prompt": "{} bed is beige"}, {"index": 746, "image_id": 2360869, "entity": "dog", "caption": "dog has wavy fur", "question": ["is there dog ?", "is there wavy fur ?"], "prompt": "{} has wavy fur"}, {"index": 747, "image_id": 2360869, "entity": "dog", "caption": "dog has fluffy tail", "question": ["is there dog ?", "is there fluffy tail ?"], "prompt": "{} has fluffy tail"}, {"index": 748, "image_id": 2360725, "entity": "dog", "caption": "the dog is biting an envelope", "question": ["is there the dog ?", "is there an envelope ?"], "prompt": "the {} is biting an envelope"}, {"index": 749, "image_id": 2360725, "entity": "dog", "caption": "dog is carrying an envelope", "question": ["is there dog ?", "is there an envelope ?"], "prompt": "{} is carrying an envelope"}, {"index": 750, "image_id": 2360542, "entity": "dog", "caption": "dog has black eyes", "question": ["is there dog ?", "are there black eyes ?"], "prompt": "{} has black eyes"}, {"index": 751, "image_id": 2360542, "entity": "dog", "caption": "pomeranian dog gets a ride inside duffle bag", "question": ["is there pomeranian dog ?", "is there a ride inside duffle bag ?"], "prompt": "pomeranian {} gets a ride inside duffle bag"}, {"index": 752, "image_id": 2360357, "entity": "dog", "caption": "The front left leg of the dog.", "question": ["is there the front left leg ?", "is there the dog ?"], "prompt": "The front left leg of the {}."}, {"index": 753, "image_id": 2360357, "entity": "dog", "caption": "eyes of dog are round", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are round"}, {"index": 754, "image_id": 2360357, "entity": "dog", "caption": "head of dog is brown", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown"}, {"index": 755, "image_id": 2360357, "entity": "dog", "caption": "dog has dark eyes ", "question": ["is there dog ?", "are there dark eyes ?"], "prompt": "{} has dark eyes "}, {"index": 756, "image_id": 2360299, "entity": "dog", "caption": "dog's right ear is black", "question": ["is there dog's right ear ?"], "prompt": "{}'s right ear is black"}, {"index": 757, "image_id": 2360145, "entity": "dog", "caption": "A shadow line is behind the dogs.", "question": ["is there a shadow line ?", "are there the dogs ?"], "prompt": "A shadow line is behind the {}s."}, {"index": 758, "image_id": 2359887, "entity": "dog", "caption": "dog with his eyes shut", "question": ["is there dog ?", "are there his eyes ?"], "prompt": "{} with his eyes shut"}, {"index": 759, "image_id": 2359887, "entity": "dog", "caption": "dog is on blanket", "question": ["is there dog ?", "is there blanket ?"], "prompt": "{} is on blanket"}, {"index": 760, "image_id": 2359887, "entity": "dog", "caption": "dog has blonde hair", "question": ["is there dog ?", "is there blonde hair ?"], "prompt": "{} has blonde hair"}, {"index": 761, "image_id": 2359887, "entity": "dog", "caption": "dog has long hair on ears", "question": ["is there dog ?", "is there long hair ?", "are there ears ?"], "prompt": "{} has long hair on ears"}, {"index": 762, "image_id": 2359809, "entity": "dog", "caption": "The rear left paw of the dog", "question": ["is there the rear left paw ?", "is there the dog ?"], "prompt": "The rear left paw of the {}"}, {"index": 763, "image_id": 2359809, "entity": "dog", "caption": "dog is standing on cement floors", "question": ["is there dog ?", "are there cement floors ?"], "prompt": "{} is standing on cement floors"}, {"index": 764, "image_id": 2359414, "entity": "dog", "caption": "the dog has a banana on its side", "question": ["is there the dog ?", "is there a banana ?", "is there its side ?"], "prompt": "the {} has a banana on its side"}, {"index": 765, "image_id": 2359172, "entity": "dog", "caption": "dog has brown ear", "question": ["is there dog ?", "is there brown ear ?"], "prompt": "{} has brown ear"}, {"index": 766, "image_id": 2359172, "entity": "dog", "caption": "dog has brown eye", "question": ["is there dog ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 767, "image_id": 2359073, "entity": "dog", "caption": "Cat is laying on top of dog.", "question": ["is there cat ?", "is there top ?", "is there dog ?"], "prompt": "Cat is laying on top of {}."}, {"index": 768, "image_id": 2359073, "entity": "dog", "caption": "The cat is on the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is on the {}."}, {"index": 769, "image_id": 2359073, "entity": "dog", "caption": "dog has brown eye brows", "question": ["is there dog ?", "are there brown eye brows ?"], "prompt": "{} has brown eye brows"}, {"index": 770, "image_id": 2358914, "entity": "dog", "caption": "dog holds chew toy", "question": ["is there dog ?", "is there toy ?"], "prompt": "{} holds chew toy"}, {"index": 771, "image_id": 2358914, "entity": "dog", "caption": "dog has pink tongue", "question": ["is there dog ?", "is there pink tongue ?"], "prompt": "{} has pink tongue"}, {"index": 772, "image_id": 2358914, "entity": "dog", "caption": "the dog is chewing on a toy", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "the {} is chewing on a toy"}, {"index": 773, "image_id": 2358914, "entity": "dog", "caption": "the dog chews on an orange toy", "question": ["is there the dog ?", "is there an orange toy ?"], "prompt": "the {} chews on an orange toy"}, {"index": 774, "image_id": 2358914, "entity": "dog", "caption": "the dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is on a blanket"}, {"index": 775, "image_id": 2358914, "entity": "dog", "caption": "the dog is laying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is laying on a blanket"}, {"index": 776, "image_id": 2358914, "entity": "dog", "caption": "Small orange looking stuffed animal a dog has. ", "question": ["is there small orange ?", "is there stuffed animal ?", "is there a dog ?"], "prompt": "Small orange looking stuffed animal a {} has. "}, {"index": 777, "image_id": 2358914, "entity": "dog", "caption": "A brown dogs left side front paw. ", "question": ["are there a brown dogs ?", "is there side front paw ?"], "prompt": "A brown {}s left side front paw. "}, {"index": 778, "image_id": 2358914, "entity": "dog", "caption": "A dogs left ear. ", "question": ["are there a dogs ?", "is there ear ?"], "prompt": "A {}s left ear. "}, {"index": 779, "image_id": 2358486, "entity": "dog", "caption": "dog is leaning over railing", "question": ["is there dog ?"], "prompt": "{} is leaning over railing"}, {"index": 780, "image_id": 2358453, "entity": "dog", "caption": "eye of dog is close", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is close"}, {"index": 781, "image_id": 2357732, "entity": "dog", "caption": "dog has a long ear", "question": ["is there dog ?", "is there a long ear ?"], "prompt": "{} has a long ear"}, {"index": 782, "image_id": 2357732, "entity": "dog", "caption": "the dog's head is on the blanket", "question": ["is there the dog's head ?", "is there the blanket ?"], "prompt": "the {}'s head is on the blanket"}, {"index": 783, "image_id": 2357732, "entity": "dog", "caption": "the dog has on a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has on a red collar"}, {"index": 784, "image_id": 2357693, "entity": "dog", "caption": "dog has brown patch on eye", "question": ["is there dog ?", "is there brown patch ?", "is there eye ?"], "prompt": "{} has brown patch on eye"}, {"index": 785, "image_id": 2357667, "entity": "dog", "caption": "the dog is wearing a tie", "question": ["is there the dog ?", "is there a tie ?"], "prompt": "the {} is wearing a tie"}, {"index": 786, "image_id": 2357667, "entity": "dog", "caption": "the dog is lying on the arm of a leather chair", "question": ["is there the dog ?", "is there the arm ?", "is there a leather chair ?"], "prompt": "the {} is lying on the arm of a leather chair"}, {"index": 787, "image_id": 2357667, "entity": "dog", "caption": "the dog has bulgy eyes", "question": ["is there the dog ?", "are there bulgy eyes ?"], "prompt": "the {} has bulgy eyes"}, {"index": 788, "image_id": 2357667, "entity": "dog", "caption": "the dog has dark brown ears", "question": ["is there the dog ?", "are there dark brown ears ?"], "prompt": "the {} has dark brown ears"}, {"index": 789, "image_id": 2356804, "entity": "dog", "caption": "two dogs with their tongues hanging out", "question": ["are there two dogs ?", "are there their tongues ?"], "prompt": "two {}s with their tongues hanging out"}, {"index": 790, "image_id": 2356804, "entity": "dog", "caption": "the dogs are in long grass", "question": ["are there the dogs ?", "is there long grass ?"], "prompt": "the {}s are in long grass"}, {"index": 791, "image_id": 2356762, "entity": "dog", "caption": "This is a dog trying to catch an apple.", "question": ["is there a dog ?", "is there an apple ?"], "prompt": "This is a {} trying to catch an apple."}, {"index": 792, "image_id": 2356762, "entity": "dog", "caption": "The dog has only a few teeth.", "question": ["is there the dog ?", "are there only a few teeth ?"], "prompt": "The {} has only a few teeth."}, {"index": 793, "image_id": 2356701, "entity": "dog", "caption": "the dog's nose is thru the hole", "question": ["is there the dog's nose ?", "is there the hole ?"], "prompt": "the {}'s nose is thru the hole"}, {"index": 794, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck", "question": ["are there the dogs ?"], "prompt": "the {}s head is stuck"}, {"index": 795, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck in the wheel", "question": ["are there the dogs ?", "is there the wheel ?"], "prompt": "the {}s head is stuck in the wheel"}, {"index": 796, "image_id": 2356554, "entity": "dog", "caption": "dog wears black glasses", "question": ["is there dog ?", "are there black glasses ?"], "prompt": "{} wears black glasses"}, {"index": 797, "image_id": 2356554, "entity": "dog", "caption": "dog wears black jacket", "question": ["is there dog ?", "is there black jacket ?"], "prompt": "{} wears black jacket"}, {"index": 798, "image_id": 2356554, "entity": "dog", "caption": "dog is near motorcycle", "question": ["is there dog ?", "is there motorcycle ?"], "prompt": "{} is near motorcycle"}, {"index": 799, "image_id": 2356554, "entity": "dog", "caption": "the dog has sunglasses ", "question": ["is there the dog ?", "are there sunglasses ?"], "prompt": "the {} has sunglasses "}, {"index": 800, "image_id": 2356554, "entity": "dog", "caption": "the dog is on the bike ", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is on the bike "}, {"index": 801, "image_id": 2356554, "entity": "dog", "caption": "This dog is wearing sunglasses.", "question": ["is there this dog ?", "are there sunglasses ?"], "prompt": "This {} is wearing sunglasses."}, {"index": 802, "image_id": 2356554, "entity": "dog", "caption": "dog has leash on", "question": ["is there dog ?"], "prompt": "{} has leash on"}, {"index": 803, "image_id": 2356554, "entity": "dog", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "{} is sitting in side car"}, {"index": 804, "image_id": 2356153, "entity": "dog", "caption": "blue dog bone shaped tag", "question": ["is there blue dog bone shaped tag ?"], "prompt": "blue {} bone shaped tag"}, {"index": 805, "image_id": 2356153, "entity": "dog", "caption": "dog is wearing a red collar", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} is wearing a red collar"}, {"index": 806, "image_id": 2356153, "entity": "dog", "caption": "dog is walking on the dirt", "question": ["is there dog ?", "is there the dirt ?"], "prompt": "{} is walking on the dirt"}, {"index": 807, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} is wearing goggles"}, {"index": 808, "image_id": 2355985, "entity": "dog", "caption": "The dog is on a motorcycle", "question": ["is there the dog ?", "is there a motorcycle ?"], "prompt": "The {} is on a motorcycle"}, {"index": 809, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing a leather jacket", "question": ["is there the dog ?", "is there a leather jacket ?"], "prompt": "The {} is wearing a leather jacket"}, {"index": 810, "image_id": 2355985, "entity": "dog", "caption": "the nose is black on the dog ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose is black on the {} "}, {"index": 811, "image_id": 2355964, "entity": "dog", "caption": "dog ears is pink inside ", "question": ["are there dog ears ?"], "prompt": "{} ears is pink inside "}, {"index": 812, "image_id": 2355964, "entity": "dog", "caption": "dog has black nose ", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose "}, {"index": 813, "image_id": 2355944, "entity": "dog", "caption": "The dog is wearing a color", "question": ["is there the dog ?", "is there a color ?"], "prompt": "The {} is wearing a color"}, {"index": 814, "image_id": 2355865, "entity": "dog", "caption": "it is the eye of the dog ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "it is the eye of the {} "}, {"index": 815, "image_id": 2355519, "entity": "dog", "caption": "The dog has a frisbee in its mouth", "question": ["is there the dog ?", "is there a frisbee ?", "is there its mouth ?"], "prompt": "The {} has a frisbee in its mouth"}, {"index": 816, "image_id": 2355511, "entity": "dog", "caption": "a black dog right ear ", "question": ["is there a black dog right ear ?"], "prompt": "a black {} right ear "}, {"index": 817, "image_id": 2355511, "entity": "dog", "caption": "A black dog ready to get a bath", "question": ["is there a black dog ?", "is there a bath ?"], "prompt": "A black {} ready to get a bath"}, {"index": 818, "image_id": 2355409, "entity": "dog", "caption": "a dog catchign a freesbee", "question": ["is there a dog ?", "is there a freesbee ?"], "prompt": "a {} catchign a freesbee"}, {"index": 819, "image_id": 2355409, "entity": "dog", "caption": "a white dog catchign a black freesbee", "question": ["is there a white dog ?"], "prompt": "a white {} catchign a black freesbee"}, {"index": 820, "image_id": 2355256, "entity": "dog", "caption": "dog is brown and white", "question": ["is there dog ?"], "prompt": "{} is brown and white"}, {"index": 821, "image_id": 2354835, "entity": "dog", "caption": "Brown dog's head sticking out of car window.", "question": ["is there brown dog's head ?", "is there car window ?"], "prompt": "Brown {}'s head sticking out of car window."}, {"index": 822, "image_id": 2354515, "entity": "dog", "caption": "bike is behind the dog", "question": ["is there bike ?", "is there the dog ?"], "prompt": "bike is behind the {}"}, {"index": 823, "image_id": 2354515, "entity": "dog", "caption": "dog has tongue out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue out"}, {"index": 824, "image_id": 2354515, "entity": "dog", "caption": "dog is on the street", "question": ["is there dog ?", "is there the street ?"], "prompt": "{} is on the street"}, {"index": 825, "image_id": 2354497, "entity": "dog", "caption": "This dog has a donut in his mouth", "question": ["is there this dog ?", "is there a donut ?", "is there his mouth ?"], "prompt": "This {} has a donut in his mouth"}, {"index": 826, "image_id": 2354497, "entity": "dog", "caption": "The dog is wearing a red color.", "question": ["is there the dog ?", "is there a red color ?"], "prompt": "The {} is wearing a red color."}, {"index": 827, "image_id": 2354497, "entity": "dog", "caption": "The dog is sitting on the grass.", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "The {} is sitting on the grass."}, {"index": 828, "image_id": 2354497, "entity": "dog", "caption": "The dog has two spots on his face.", "question": ["is there the dog ?", "are there two spots ?", "is there his face ?"], "prompt": "The {} has two spots on his face."}, {"index": 829, "image_id": 2354494, "entity": "dog", "caption": "The dog nose is black", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black"}, {"index": 830, "image_id": 2354494, "entity": "dog", "caption": "tan/yellow dog laying across young girls lap", "question": ["is there tan/yellow dog ?", "are there young girls ?"], "prompt": "tan/yellow {} laying across young girls lap"}, {"index": 831, "image_id": 2354494, "entity": "dog", "caption": "dog is wearing a red collar around neck", "question": ["is there dog ?", "is there a red collar ?", "is there neck ?"], "prompt": "{} is wearing a red collar around neck"}, {"index": 832, "image_id": 2354494, "entity": "dog", "caption": "Woman laying on the couch with dog.", "question": ["is there woman ?", "is there the couch ?", "is there dog ?"], "prompt": "Woman laying on the couch with {}."}, {"index": 833, "image_id": 2354353, "entity": "dog", "caption": "The dog's head is on the keyboard", "question": ["is there the dog's head ?", "is there the keyboard ?"], "prompt": "The {}'s head is on the keyboard"}, {"index": 834, "image_id": 2354353, "entity": "dog", "caption": "The dog is wearing a blue and yellow collar", "question": ["is there the dog ?", "is there a blue and yellow collar ?"], "prompt": "The {} is wearing a blue and yellow collar"}, {"index": 835, "image_id": 2354353, "entity": "dog", "caption": "dog is on the keys", "question": ["is there dog ?", "are there the keys ?"], "prompt": "{} is on the keys"}, {"index": 836, "image_id": 2354353, "entity": "dog", "caption": "the dog has yellow and blue flowers", "question": ["is there the dog ?", "are there yellow and blue flowers ?"], "prompt": "the {} has yellow and blue flowers"}, {"index": 837, "image_id": 2353969, "entity": "dog", "caption": "dog has white paw", "question": ["is there dog ?"], "prompt": "{} has white paw"}, {"index": 838, "image_id": 2353969, "entity": "dog", "caption": "dog is laying down on rug", "question": ["is there dog ?", "is there rug ?"], "prompt": "{} is laying down on rug"}, {"index": 839, "image_id": 2353558, "entity": "dog", "caption": "the dog's eye is yellowish", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is yellowish"}, {"index": 840, "image_id": 2353558, "entity": "dog", "caption": "The dog has long ears", "question": ["is there the dog ?", "are there long ears ?"], "prompt": "The {} has long ears"}, {"index": 841, "image_id": 2353558, "entity": "dog", "caption": "The dog is wide eyed", "question": ["is there the dog ?"], "prompt": "The {} is wide eyed"}, {"index": 842, "image_id": 2353558, "entity": "dog", "caption": "The dog's nose is very black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is very black"}, {"index": 843, "image_id": 2353558, "entity": "dog", "caption": "The dog is wearing a bowl", "question": ["is there the dog ?", "is there a bowl ?"], "prompt": "The {} is wearing a bowl"}, {"index": 844, "image_id": 2353404, "entity": "dog", "caption": "the plastic buckle on the dog", "question": ["is there the plastic buckle ?", "is there the dog ?"], "prompt": "the plastic buckle on the {}"}, {"index": 845, "image_id": 2353404, "entity": "dog", "caption": "the dog walking and connected to a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} walking and connected to a chain"}, {"index": 846, "image_id": 2353398, "entity": "dog", "caption": "green felt the dog is standing on", "question": ["is there the dog ?"], "prompt": "green felt the {} is standing on"}, {"index": 847, "image_id": 2353062, "entity": "dog", "caption": "the dog is on a sofa", "question": ["is there the dog ?", "is there a sofa ?"], "prompt": "the {} is on a sofa"}, {"index": 848, "image_id": 2353062, "entity": "dog", "caption": "dog's eyes are amber", "question": ["are there dog's eyes ?", "is there amber ?"], "prompt": "{}'s eyes are amber"}, {"index": 849, "image_id": 2353062, "entity": "dog", "caption": "dog is laying on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} is laying on a couch"}, {"index": 850, "image_id": 2352757, "entity": "dog", "caption": "the dog is wearing a jacket", "question": ["is there the dog ?", "is there a jacket ?"], "prompt": "the {} is wearing a jacket"}, {"index": 851, "image_id": 2352757, "entity": "dog", "caption": "the dog has a black tail", "question": ["is there the dog ?", "is there a black tail ?"], "prompt": "the {} has a black tail"}, {"index": 852, "image_id": 2352502, "entity": "dog", "caption": "The dog is biting the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is biting the frisbee."}, {"index": 853, "image_id": 2352502, "entity": "dog", "caption": "The dog is on the beach.", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "The {} is on the beach."}, {"index": 854, "image_id": 2351971, "entity": "dog", "caption": "legs and paws of dog that allow dog to walk with ", "question": ["are there legs ?", "are there paws ?", "is there dog ?", "is there dog ?"], "prompt": "legs and paws of {} that allow {} to walk with "}, {"index": 855, "image_id": 2351950, "entity": "dog", "caption": "The dog is holding a bowl in his mouth", "question": ["is there the dog ?", "is there a bowl ?", "is there his mouth ?"], "prompt": "The {} is holding a bowl in his mouth"}, {"index": 856, "image_id": 2351950, "entity": "dog", "caption": "The dog's ear is hanging downwards", "question": ["is there the dog's ear ?"], "prompt": "The {}'s ear is hanging downwards"}, {"index": 857, "image_id": 2351950, "entity": "dog", "caption": "dog has light brown face", "question": ["is there dog ?", "is there light brown face ?"], "prompt": "{} has light brown face"}, {"index": 858, "image_id": 2351950, "entity": "dog", "caption": "dog is holding bowl", "question": ["is there dog ?", "is there bowl ?"], "prompt": "{} is holding bowl"}, {"index": 859, "image_id": 2351811, "entity": "dog", "caption": "the dogs head ", "question": ["are there the dogs ?"], "prompt": "the {}s head "}, {"index": 860, "image_id": 2351083, "entity": "dog", "caption": "dog holds a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} holds a cap"}, {"index": 861, "image_id": 2351083, "entity": "dog", "caption": "the dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black"}, {"index": 862, "image_id": 2350951, "entity": "dog", "caption": "the mouth of dog is open", "question": ["is there the mouth ?", "is there dog ?"], "prompt": "the mouth of {} is open"}, {"index": 863, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a Harley Davidson bandanna", "question": ["is there the unfortunate dog ?"], "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"}, {"index": 864, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a biker headband", "question": ["is there the unfortunate dog ?", "is there a biker headband ?"], "prompt": "the unfortunate {} is wearing a biker headband"}, {"index": 865, "image_id": 2350646, "entity": "dog", "caption": "the dog has cropped ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has cropped ears"}, {"index": 866, "image_id": 2350609, "entity": "dog", "caption": "lot where dog and woman stand", "question": ["is there lot ?", "is there dog ?", "is there woman ?"], "prompt": "lot where {} and woman stand"}, {"index": 867, "image_id": 2350606, "entity": "dog", "caption": "the dog is on a white platform", "question": ["is there the dog ?", "is there a white platform ?"], "prompt": "the {} is on a white platform"}, {"index": 868, "image_id": 2349745, "entity": "dog", "caption": "legs of dog running", "question": ["are there legs ?", "is there dog ?"], "prompt": "legs of {} running"}, {"index": 869, "image_id": 2349745, "entity": "dog", "caption": "open mouth of dog running", "question": ["is there open mouth ?", "is there dog ?"], "prompt": "open mouth of {} running"}, {"index": 870, "image_id": 2349745, "entity": "dog", "caption": "the dog is white with black spots", "question": ["is there the dog ?", "are there black spots ?"], "prompt": "the {} is white with black spots"}, {"index": 871, "image_id": 2349745, "entity": "dog", "caption": "the dog is running with his mouth open", "question": ["is there the dog ?", "is there his mouth ?"], "prompt": "the {} is running with his mouth open"}, {"index": 872, "image_id": 2349745, "entity": "dog", "caption": "the dog has a black spot over his eye", "question": ["is there the dog ?", "is there a black spot ?", "is there his eye ?"], "prompt": "the {} has a black spot over his eye"}, {"index": 873, "image_id": 2349745, "entity": "dog", "caption": "the dirt is flying from the dog's paws", "question": ["is there the dirt ?", "are there the dog's paws ?"], "prompt": "the dirt is flying from the {}'s paws"}, {"index": 874, "image_id": 2349745, "entity": "dog", "caption": "the dog's paws are touching from running", "question": ["are there the dog's paws ?"], "prompt": "the {}'s paws are touching from running"}, {"index": 875, "image_id": 2349548, "entity": "dog", "caption": "The dogs ear is brown.", "question": ["are there the dogs ?"], "prompt": "The {}s ear is brown."}, {"index": 876, "image_id": 2349547, "entity": "dog", "caption": "The dog has a pinkish nose.", "question": ["is there the dog ?", "is there a pinkish nose ?"], "prompt": "The {} has a pinkish nose."}, {"index": 877, "image_id": 2349421, "entity": "dog", "caption": "The dog is sitting on the chair ", "question": ["is there the dog ?", "is there the chair ?"], "prompt": "The {} is sitting on the chair "}, {"index": 878, "image_id": 2349268, "entity": "dog", "caption": "the dog has long nails", "question": ["is there the dog ?", "are there long nails ?"], "prompt": "the {} has long nails"}, {"index": 879, "image_id": 2349268, "entity": "dog", "caption": "the dog lays with toy", "question": ["is there the dog ?", "is there toy ?"], "prompt": "the {} lays with toy"}, {"index": 880, "image_id": 2348690, "entity": "dog", "caption": "the dog is chewing up a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is chewing up a stuffed animal"}, {"index": 881, "image_id": 2348554, "entity": "dog", "caption": "dog with hind legs stretched out", "question": ["is there dog ?", "are there hind legs ?"], "prompt": "{} with hind legs stretched out"}, {"index": 882, "image_id": 2348554, "entity": "dog", "caption": "A dog is laying on the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "A {} is laying on the bed"}, {"index": 883, "image_id": 2348554, "entity": "dog", "caption": "The dog has white on her paws", "question": ["is there the dog ?", "are there her paws ?"], "prompt": "The {} has white on her paws"}, {"index": 884, "image_id": 2348407, "entity": "dog", "caption": "tan dog's face as he holds the frisbee", "question": ["is there tan dog's face ?", "is there the frisbee ?"], "prompt": "tan {}'s face as he holds the frisbee"}, {"index": 885, "image_id": 2348407, "entity": "dog", "caption": "dog's eye looking up past the frisbee", "question": ["is there dog's eye ?", "is there the frisbee ?"], "prompt": "{}'s eye looking up past the frisbee"}, {"index": 886, "image_id": 2348407, "entity": "dog", "caption": "dog's ear hanging down as he chews the frisbee", "question": ["is there dog's ear ?", "is there the frisbee ?"], "prompt": "{}'s ear hanging down as he chews the frisbee"}, {"index": 887, "image_id": 2347998, "entity": "dog", "caption": "dog is on the newspaper", "question": ["is there dog ?", "is there the newspaper ?"], "prompt": "{} is on the newspaper"}, {"index": 888, "image_id": 2347801, "entity": "dog", "caption": "a dog tag shaped like a bone ", "question": ["is there a dog tag ?", "is there a bone ?"], "prompt": "a {} tag shaped like a bone "}, {"index": 889, "image_id": 2347801, "entity": "dog", "caption": "The dog is inside a room", "question": ["is there the dog ?", "is there a room ?"], "prompt": "The {} is inside a room"}, {"index": 890, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a television", "question": ["is there the dog ?", "is there a television ?"], "prompt": "The {} is next to a television"}, {"index": 891, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The {} is next to a laptop computer"}, {"index": 892, "image_id": 2347801, "entity": "dog", "caption": "The dog is on a table", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table"}, {"index": 893, "image_id": 2347591, "entity": "dog", "caption": "A woman who is sitting with a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman who is sitting with a {}"}, {"index": 894, "image_id": 2347591, "entity": "dog", "caption": "Woman is holding the dog", "question": ["is there woman ?", "is there the dog ?"], "prompt": "Woman is holding the {}"}, {"index": 895, "image_id": 2347481, "entity": "dog", "caption": "a dog with a disc on it's face", "question": ["is there a dog ?", "is there a disc ?"], "prompt": "a {} with a disc on it's face"}, {"index": 896, "image_id": 2347481, "entity": "dog", "caption": "dog has black and white tail", "question": ["is there dog ?", "is there black and white tail ?"], "prompt": "{} has black and white tail"}, {"index": 897, "image_id": 2347481, "entity": "dog", "caption": "dog has white neck", "question": ["is there dog ?", "is there white neck ?"], "prompt": "{} has white neck"}, {"index": 898, "image_id": 2347481, "entity": "dog", "caption": "The dogs tail", "question": ["are there the dogs ?"], "prompt": "The {}s tail"}, {"index": 899, "image_id": 2347481, "entity": "dog", "caption": "The ears that belong to the dog", "question": ["are there the ears ?", "is there the dog ?"], "prompt": "The ears that belong to the {}"}, {"index": 900, "image_id": 2347481, "entity": "dog", "caption": "A dog that is standing in the dirt", "question": ["is there a dog ?", "is there the dirt ?"], "prompt": "A {} that is standing in the dirt"}, {"index": 901, "image_id": 2347473, "entity": "dog", "caption": "the brown patches on the dogs face", "question": ["are there the brown patches ?", "are there the dogs ?"], "prompt": "the brown patches on the {}s face"}, {"index": 902, "image_id": 2347340, "entity": "dog", "caption": "dog's dark eyes are open", "question": ["are there dog's dark eyes ?"], "prompt": "{}'s dark eyes are open"}, {"index": 903, "image_id": 2347340, "entity": "dog", "caption": "the dog is on a chair", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "the {} is on a chair"}, {"index": 904, "image_id": 2347027, "entity": "dog", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car"}, {"index": 905, "image_id": 2347027, "entity": "dog", "caption": "dog has tongue hanging out ", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue hanging out "}, {"index": 906, "image_id": 2347027, "entity": "dog", "caption": "The dog have waggy ear.", "question": ["is there the dog ?"], "prompt": "The {} have waggy ear."}, {"index": 907, "image_id": 2346970, "entity": "dog", "caption": "The dog is resting his head on the couch.", "question": ["is there the dog ?", "is there his head ?", "is there the couch ?"], "prompt": "The {} is resting his head on the couch."}, {"index": 908, "image_id": 2346970, "entity": "dog", "caption": "The dog is wearing a blue collar.", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} is wearing a blue collar."}, {"index": 909, "image_id": 2346970, "entity": "dog", "caption": "The dog's eye is open.", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open."}, {"index": 910, "image_id": 2346970, "entity": "dog", "caption": "The dog's fur is very short.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is very short."}, {"index": 911, "image_id": 2346970, "entity": "dog", "caption": "The dog is sitting on top of white sheet.", "question": ["is there the dog ?", "is there top ?", "is there white sheet ?"], "prompt": "The {} is sitting on top of white sheet."}, {"index": 912, "image_id": 2346970, "entity": "dog", "caption": "the dogs neck is long ", "question": ["are there the dogs neck ?"], "prompt": "the {}s neck is long "}, {"index": 913, "image_id": 2346869, "entity": "dog", "caption": "dog is catching frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} is catching frisbee"}, {"index": 914, "image_id": 2346869, "entity": "dog", "caption": "dog has white frisbee in mouth", "question": ["is there dog ?", "is there white frisbee ?", "is there mouth ?"], "prompt": "{} has white frisbee in mouth"}, {"index": 915, "image_id": 2346869, "entity": "dog", "caption": "tree is next to dog", "question": ["is there tree ?", "is there dog ?"], "prompt": "tree is next to {}"}, {"index": 916, "image_id": 2346869, "entity": "dog", "caption": "man in cap leaning forward behind dog", "question": ["is there man ?", "is there cap ?", "is there dog ?"], "prompt": "man in cap leaning forward behind {}"}, {"index": 917, "image_id": 2346765, "entity": "dog", "caption": "neck of dog is white", "question": ["is there neck ?", "is there dog ?"], "prompt": "neck of {} is white"}, {"index": 918, "image_id": 2346434, "entity": "dog", "caption": "the dog's eyes are black", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are black"}, {"index": 919, "image_id": 2346434, "entity": "dog", "caption": "black pads and nails are on the dog's paws", "question": ["are there black pads ?", "are there nails ?", "are there the dog's paws ?"], "prompt": "black pads and nails are on the {}'s paws"}, {"index": 920, "image_id": 2346247, "entity": "dog", "caption": "Brown ear on the dog.", "question": ["is there brown ear ?", "is there the dog ?"], "prompt": "Brown ear on the {}."}, {"index": 921, "image_id": 2346086, "entity": "dog", "caption": "the black dog has a sad face", "question": ["is there the black dog ?", "is there a sad face ?"], "prompt": "the black {} has a sad face"}, {"index": 922, "image_id": 2346086, "entity": "dog", "caption": "A dog is near a bag.", "question": ["is there a dog ?", "is there a bag ?"], "prompt": "A {} is near a bag."}, {"index": 923, "image_id": 2346086, "entity": "dog", "caption": "The dog's mouth is closed.", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is closed."}, {"index": 924, "image_id": 2346086, "entity": "dog", "caption": "The dog is wearing a crocheted hat.", "question": ["is there the dog ?", "is there a crocheted hat ?"], "prompt": "The {} is wearing a crocheted hat."}, {"index": 925, "image_id": 2346086, "entity": "dog", "caption": "The dog has an ear.", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "The {} has an ear."}, {"index": 926, "image_id": 2346086, "entity": "dog", "caption": "The dog has an eye.", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "The {} has an eye."}, {"index": 927, "image_id": 2345642, "entity": "dog", "caption": "head of dog bowed down ", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} bowed down "}, {"index": 928, "image_id": 2345642, "entity": "dog", "caption": "green blanket the dog is laying on", "question": ["is there green blanket ?", "is there the dog ?"], "prompt": "green blanket the {} is laying on"}, {"index": 929, "image_id": 2345272, "entity": "dog", "caption": "the dogs tail ", "question": ["are there the dogs ?"], "prompt": "the {}s tail "}, {"index": 930, "image_id": 2345272, "entity": "dog", "caption": "a black dog looks onward with his tongue hanging out", "question": ["is there a black dog ?", "is there his tongue ?"], "prompt": "a black {} looks onward with his tongue hanging out"}, {"index": 931, "image_id": 2345272, "entity": "dog", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the boat holding a {} with a leash"}, {"index": 932, "image_id": 2345231, "entity": "dog", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the {}s paws on on the computer"}, {"index": 933, "image_id": 2345068, "entity": "dog", "caption": "Extra pillow for the dog to be comfortable", "question": ["is there extra pillow ?", "is there the dog ?"], "prompt": "Extra pillow for the {} to be comfortable"}, {"index": 934, "image_id": 2345068, "entity": "dog", "caption": "Teddy bear for the dog", "question": ["is there the dog ?"], "prompt": "Teddy bear for the {}"}, {"index": 935, "image_id": 2345068, "entity": "dog", "caption": "a dog curled up on its bed ", "question": ["is there a dog ?", "is there its bed ?"], "prompt": "a {} curled up on its bed "}, {"index": 936, "image_id": 2344922, "entity": "dog", "caption": "This dog has a very red collar", "question": ["is there this dog ?", "is there a very red collar ?"], "prompt": "This {} has a very red collar"}, {"index": 937, "image_id": 2344729, "entity": "dog", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the {} is in the car"}, {"index": 938, "image_id": 2344729, "entity": "dog", "caption": "this is the dogs leash", "question": ["are there the dogs ?"], "prompt": "this is the {}s leash"}, {"index": 939, "image_id": 2344635, "entity": "dog", "caption": "The dog is wearing a tag.", "question": ["is there the dog ?", "is there a tag ?"], "prompt": "The {} is wearing a tag."}, {"index": 940, "image_id": 2344635, "entity": "dog", "caption": "dog is wearing a tag", "question": ["is there dog ?", "is there a tag ?"], "prompt": "{} is wearing a tag"}, {"index": 941, "image_id": 2344635, "entity": "dog", "caption": "dogs eye looks white ", "question": ["are there dogs ?"], "prompt": "{}s eye looks white "}, {"index": 942, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is black.", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black."}, {"index": 943, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is small", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is small"}, {"index": 944, "image_id": 2344526, "entity": "dog", "caption": "The dogs fur is white.", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is white."}, {"index": 945, "image_id": 2344358, "entity": "dog", "caption": "this dog is under a white blanket", "question": ["is there this dog ?", "is there a white blanket ?"], "prompt": "this {} is under a white blanket"}, {"index": 946, "image_id": 2344283, "entity": "dog", "caption": "the dog is at the beach", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "the {} is at the beach"}, {"index": 947, "image_id": 2344283, "entity": "dog", "caption": "the dog is sitting on a towel", "question": ["is there the dog ?", "is there a towel ?"], "prompt": "the {} is sitting on a towel"}, {"index": 948, "image_id": 2344283, "entity": "dog", "caption": "a bag is by the dog", "question": ["is there a bag ?", "is there the dog ?"], "prompt": "a bag is by the {}"}, {"index": 949, "image_id": 2344283, "entity": "dog", "caption": "Brown dog is on a towel", "question": ["is there brown dog ?", "is there a towel ?"], "prompt": "Brown {} is on a towel"}, {"index": 950, "image_id": 2344228, "entity": "dog", "caption": "the dog has a brown part", "question": ["is there the dog ?", "is there a brown part ?"], "prompt": "the {} has a brown part"}, {"index": 951, "image_id": 2344228, "entity": "dog", "caption": "the dog has a black spot", "question": ["is there the dog ?", "is there a black spot ?"], "prompt": "the {} has a black spot"}, {"index": 952, "image_id": 2343539, "entity": "dog", "caption": "dog's tongue is hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is hanging out"}, {"index": 953, "image_id": 2343539, "entity": "dog", "caption": "dog's ears are back ", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are back "}, {"index": 954, "image_id": 2343194, "entity": "dog", "caption": "the dog has three balls", "question": ["is there the dog ?", "are there three balls ?"], "prompt": "the {} has three balls"}, {"index": 955, "image_id": 2343194, "entity": "dog", "caption": "the dog has balls in his mouth", "question": ["is there the dog ?", "are there balls ?", "is there his mouth ?"], "prompt": "the {} has balls in his mouth"}, {"index": 956, "image_id": 2343194, "entity": "dog", "caption": "the dog has a spotted nose", "question": ["is there the dog ?", "is there a spotted nose ?"], "prompt": "the {} has a spotted nose"}, {"index": 957, "image_id": 2343149, "entity": "dog", "caption": "The dog is splashing water", "question": ["is there the dog ?", "is there water ?"], "prompt": "The {} is splashing water"}, {"index": 958, "image_id": 2343149, "entity": "dog", "caption": "The dog's teeth are visible", "question": ["are there the dog's teeth ?"], "prompt": "The {}'s teeth are visible"}, {"index": 959, "image_id": 2343038, "entity": "dog", "caption": "dog with eyes closed", "question": ["is there dog ?", "are there eyes ?"], "prompt": "{} with eyes closed"}, {"index": 960, "image_id": 2342562, "entity": "dog", "caption": "dog mout to grab frisbees and eat food and drink water ", "question": ["is there dog mout ?", "are there frisbees ?", "is there food ?", "is there water ?"], "prompt": "{} mout to grab frisbees and eat food and drink water "}, {"index": 961, "image_id": 2342562, "entity": "dog", "caption": "The dog has a black ear.", "question": ["is there the dog ?", "is there a black ear ?"], "prompt": "The {} has a black ear."}, {"index": 962, "image_id": 2341045, "entity": "dog", "caption": "this dog and teddy bear are posing", "question": ["is there this dog ?", "is there bear ?"], "prompt": "this {} and teddy bear are posing"}, {"index": 963, "image_id": 2341045, "entity": "dog", "caption": "The dog is resting on white shaggy carpet.", "question": ["is there the dog ?", "is there white shaggy carpet ?"], "prompt": "The {} is resting on white shaggy carpet."}, {"index": 964, "image_id": 2340940, "entity": "dog", "caption": "The banana is inside the dog's mouth.", "question": ["is there the banana ?", "is there the dog's mouth ?"], "prompt": "The banana is inside the {}'s mouth."}, {"index": 965, "image_id": 2340940, "entity": "dog", "caption": "The little dog is sitting on top of the white blanket.", "question": ["is there the little dog ?", "is there top ?", "is there the white blanket ?"], "prompt": "The little {} is sitting on top of the white blanket."}, {"index": 966, "image_id": 2340940, "entity": "dog", "caption": "The dog has a pink collar.", "question": ["is there the dog ?", "is there a pink collar ?"], "prompt": "The {} has a pink collar."}, {"index": 967, "image_id": 2340940, "entity": "dog", "caption": "The dog is wearing a white collar.", "question": ["is there the dog ?", "is there a white collar ?"], "prompt": "The {} is wearing a white collar."}, {"index": 968, "image_id": 2340686, "entity": "dog", "caption": "The dog face is partially white.", "question": ["is there the dog face ?"], "prompt": "The {} face is partially white."}, {"index": 969, "image_id": 2339641, "entity": "dog", "caption": "dog has white spot on chest", "question": ["is there dog ?", "is there white spot ?", "is there chest ?"], "prompt": "{} has white spot on chest"}, {"index": 970, "image_id": 2339641, "entity": "dog", "caption": "dog is on a motorcycle", "question": ["is there dog ?", "is there a motorcycle ?"], "prompt": "{} is on a motorcycle"}, {"index": 971, "image_id": 2339617, "entity": "dog", "caption": "The dog sits on a chair. ", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} sits on a chair. "}, {"index": 972, "image_id": 2339617, "entity": "dog", "caption": "A blanket that the dog sits on.", "question": ["is there a blanket ?", "is there the dog ?"], "prompt": "A blanket that the {} sits on."}, {"index": 973, "image_id": 2339617, "entity": "dog", "caption": "dog has black back", "question": ["is there dog ?"], "prompt": "{} has black back"}, {"index": 974, "image_id": 2339511, "entity": "dog", "caption": "The cat is next to the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is next to the {}."}, {"index": 975, "image_id": 2339511, "entity": "dog", "caption": "The paw on the dog is white.", "question": ["is there the paw ?", "is there the dog ?"], "prompt": "The paw on the {} is white."}, {"index": 976, "image_id": 2339511, "entity": "dog", "caption": "brown striped cat lays next to dog", "question": ["is there brown striped cat ?", "is there dog ?"], "prompt": "brown striped cat lays next to {}"}, {"index": 977, "image_id": 2339511, "entity": "dog", "caption": "white front left paw on dog", "question": ["is there white front ?", "is there paw ?", "is there dog ?"], "prompt": "white front left paw on {}"}, {"index": 978, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around nose", "question": ["is there dog ?", "is there white fur ?", "is there nose ?"], "prompt": "{} has white fur around nose"}, {"index": 979, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around paws", "question": ["is there dog ?", "is there white fur ?", "are there paws ?"], "prompt": "{} has white fur around paws"}, {"index": 980, "image_id": 2339238, "entity": "dog", "caption": "dog has black ear", "question": ["is there dog ?", "is there black ear ?"], "prompt": "{} has black ear"}, {"index": 981, "image_id": 2339238, "entity": "dog", "caption": "dog has black eye", "question": ["is there dog ?", "is there black eye ?"], "prompt": "{} has black eye"}, {"index": 982, "image_id": 2339238, "entity": "dog", "caption": "dog has a white tooth", "question": ["is there dog ?", "is there a white tooth ?"], "prompt": "{} has a white tooth"}, {"index": 983, "image_id": 2337950, "entity": "dog", "caption": "couch man and dog are sitting on", "question": ["is there couch man ?", "is there dog ?"], "prompt": "couch man and {} are sitting on"}, {"index": 984, "image_id": 2337205, "entity": "dog", "caption": "the dog's eye is open ", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open "}, {"index": 985, "image_id": 2336811, "entity": "dog", "caption": "Front left paw of the dog", "question": ["is there front left paw ?", "is there the dog ?"], "prompt": "Front left paw of the {}"}, {"index": 986, "image_id": 2336773, "entity": "dog", "caption": "Small dogs right eye", "question": ["are there small dogs ?"], "prompt": "Small {}s right eye"}, {"index": 987, "image_id": 2336773, "entity": "dog", "caption": "Small dogs left eye", "question": ["are there small dogs ?", "is there eye ?"], "prompt": "Small {}s left eye"}, {"index": 988, "image_id": 2336693, "entity": "dog", "caption": "the dog is carrying a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is carrying a frisbee"}, {"index": 989, "image_id": 2336693, "entity": "dog", "caption": "the dog's front legs are white", "question": ["are there the dog's front legs ?"], "prompt": "the {}'s front legs are white"}, {"index": 990, "image_id": 2336693, "entity": "dog", "caption": "the dog's back legs are black", "question": ["are there the dog's back legs ?"], "prompt": "the {}'s back legs are black"}, {"index": 991, "image_id": 2336693, "entity": "dog", "caption": "the dog's shadow is in the grass", "question": ["is there the dog's shadow ?", "is there the grass ?"], "prompt": "the {}'s shadow is in the grass"}, {"index": 992, "image_id": 2336402, "entity": "dog", "caption": "dog with it's head in a box", "question": ["is there dog ?", "is there head ?", "is there a box ?"], "prompt": "{} with it's head in a box"}, {"index": 993, "image_id": 2336402, "entity": "dog", "caption": "A black streak down dogs back", "question": ["is there a black streak ?"], "prompt": "A black streak down {}s back"}, {"index": 994, "image_id": 2336402, "entity": "dog", "caption": "the dogs head is in the box", "question": ["are there the dogs ?", "is there the box ?"], "prompt": "the {}s head is in the box"}, {"index": 995, "image_id": 2336257, "entity": "dog", "caption": "the dog is in water", "question": ["is there the dog ?", "is there water ?"], "prompt": "the {} is in water"}, {"index": 996, "image_id": 2336147, "entity": "dog", "caption": "Black and white dog standing on a sandy ground.", "question": ["is there black and white dog ?", "is there a sandy ground ?"], "prompt": "Black and white {} standing on a sandy ground."}, {"index": 997, "image_id": 2336147, "entity": "dog", "caption": "The dog's pink tongue sticking out.", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue sticking out."}, {"index": 998, "image_id": 2336147, "entity": "dog", "caption": "dog's face is black and white", "question": ["is there dog's face ?"], "prompt": "{}'s face is black and white"}, {"index": 999, "image_id": 2336147, "entity": "dog", "caption": "dog's tongue is sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is sticking out"}, {"index": 1000, "image_id": 2336147, "entity": "dog", "caption": "dog's paw is white", "question": ["is there dog's paw ?"], "prompt": "{}'s paw is white"}, {"index": 1001, "image_id": 2336045, "entity": "dog", "caption": "fake dog sits on bench", "question": ["is there fake dog ?", "is there bench ?"], "prompt": "fake {} sits on bench"}, {"index": 1002, "image_id": 2336045, "entity": "dog", "caption": "fake dog wears red collar", "question": ["is there fake dog ?", "is there red collar ?"], "prompt": "fake {} wears red collar"}, {"index": 1003, "image_id": 2335892, "entity": "dog", "caption": "Toy occupies leashed dog.", "question": ["is there toy ?", "is there leashed dog ?"], "prompt": "Toy occupies leashed {}."}, {"index": 1004, "image_id": 2335707, "entity": "dog", "caption": "dog has dark claws", "question": ["is there dog ?", "are there dark claws ?"], "prompt": "{} has dark claws"}, {"index": 1005, "image_id": 2335655, "entity": "dog", "caption": "Tan dog is holding toy in mouth.", "question": ["is there tan dog ?", "is there toy ?", "is there mouth ?"], "prompt": "Tan {} is holding toy in mouth."}, {"index": 1006, "image_id": 2335655, "entity": "dog", "caption": "This dog seems to have a white face", "question": ["is there this dog ?", "is there a white face ?"], "prompt": "This {} seems to have a white face"}, {"index": 1007, "image_id": 2335655, "entity": "dog", "caption": "This dog has quite a paw visible here", "question": ["is there this dog ?", "is there quite a paw ?"], "prompt": "This {} has quite a paw visible here"}, {"index": 1008, "image_id": 2335550, "entity": "dog", "caption": "dog is laying on the couch", "question": ["is there dog ?", "is there the couch ?"], "prompt": "{} is laying on the couch"}, {"index": 1009, "image_id": 2335550, "entity": "dog", "caption": "dog has fluffy dark fur", "question": ["is there dog ?", "is there fluffy dark fur ?"], "prompt": "{} has fluffy dark fur"}, {"index": 1010, "image_id": 2335487, "entity": "dog", "caption": "an ear is up on the dog", "question": ["is there an ear ?", "is there the dog ?"], "prompt": "an ear is up on the {}"}, {"index": 1011, "image_id": 2335487, "entity": "dog", "caption": "the dog is wearing a yellow coat", "question": ["is there the dog ?", "is there a yellow coat ?"], "prompt": "the {} is wearing a yellow coat"}, {"index": 1012, "image_id": 2335487, "entity": "dog", "caption": "dog's cloth is green", "question": ["is there dog's cloth ?"], "prompt": "{}'s cloth is green"}, {"index": 1013, "image_id": 2334964, "entity": "dog", "caption": "Chain connected to dog's collar.", "question": ["is there chain ?", "is there dog's collar ?"], "prompt": "Chain connected to {}'s collar."}, {"index": 1014, "image_id": 2334964, "entity": "dog", "caption": "the dog has a collar ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar "}, {"index": 1015, "image_id": 2334964, "entity": "dog", "caption": "the collar is around the dog's neck", "question": ["is there the collar ?", "is there the dog's neck ?"], "prompt": "the collar is around the {}'s neck"}, {"index": 1016, "image_id": 2334936, "entity": "dog", "caption": "dog has an eye", "question": ["is there dog ?", "is there an eye ?"], "prompt": "{} has an eye"}, {"index": 1017, "image_id": 2334611, "entity": "dog", "caption": "front left foot on dog", "question": ["is there front left foot ?", "is there dog ?"], "prompt": "front left foot on {}"}, {"index": 1018, "image_id": 2334526, "entity": "dog", "caption": "The dog nose is black.", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black."}, {"index": 1019, "image_id": 2334526, "entity": "dog", "caption": "The dog eyes on his face.", "question": ["is there the dog ?", "is there his face ?"], "prompt": "The {} eyes on his face."}, {"index": 1020, "image_id": 2334482, "entity": "dog", "caption": "This is a dog", "question": ["is there a dog ?"], "prompt": "This is a {}"}, {"index": 1021, "image_id": 2334482, "entity": "dog", "caption": "The dog is on a bench", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is on a bench"}, {"index": 1022, "image_id": 2334375, "entity": "dog", "caption": "dog nose is black", "question": ["is there dog nose ?"], "prompt": "{} nose is black"}, {"index": 1023, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is black.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is black."}, {"index": 1024, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is round.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is round."}, {"index": 1025, "image_id": 2334355, "entity": "dog", "caption": "The dogs left ear is black.", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "The {}s left ear is black."}, {"index": 1026, "image_id": 2334355, "entity": "dog", "caption": "The dogs right eye is black.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is black."}, {"index": 1027, "image_id": 2333902, "entity": "dog", "caption": "The dog is laying on the back of the couch", "question": ["is there the dog ?", "is there the back ?", "is there the couch ?"], "prompt": "The {} is laying on the back of the couch"}, {"index": 1028, "image_id": 2333902, "entity": "dog", "caption": "The dogs tongue is sticking out of his mouth", "question": ["are there the dogs tongue ?", "is there his mouth ?"], "prompt": "The {}s tongue is sticking out of his mouth"}, {"index": 1029, "image_id": 2333902, "entity": "dog", "caption": "dog has a nose", "question": ["is there dog ?", "is there a nose ?"], "prompt": "{} has a nose"}, {"index": 1030, "image_id": 2333902, "entity": "dog", "caption": "dog has an ear", "question": ["is there dog ?", "is there an ear ?"], "prompt": "{} has an ear"}, {"index": 1031, "image_id": 2333902, "entity": "dog", "caption": "dog has a tounge", "question": ["is there dog ?", "is there a tounge ?"], "prompt": "{} has a tounge"}, {"index": 1032, "image_id": 2333902, "entity": "dog", "caption": "dog has an arm", "question": ["is there dog ?", "is there an arm ?"], "prompt": "{} has an arm"}, {"index": 1033, "image_id": 2333590, "entity": "dog", "caption": "the dog is smelling her hand", "question": ["is there the dog ?", "is there her hand ?"], "prompt": "the {} is smelling her hand"}, {"index": 1034, "image_id": 2333443, "entity": "dog", "caption": "wet dog taking a bath in a tub", "question": ["is there wet dog ?", "is there a bath ?", "is there a tub ?"], "prompt": "wet {} taking a bath in a tub"}, {"index": 1035, "image_id": 2333438, "entity": "dog", "caption": "The dog has a brown eye.", "question": ["is there the dog ?", "is there a brown eye ?"], "prompt": "The {} has a brown eye."}, {"index": 1036, "image_id": 2333438, "entity": "dog", "caption": "The dogs eye is open.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is open."}, {"index": 1037, "image_id": 2333438, "entity": "dog", "caption": "The dog has teeth.", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "The {} has teeth."}, {"index": 1038, "image_id": 2333438, "entity": "dog", "caption": "The dog has a tongue.", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "The {} has a tongue."}, {"index": 1039, "image_id": 2333438, "entity": "dog", "caption": "The dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "The {} has a red collar"}, {"index": 1040, "image_id": 2333438, "entity": "dog", "caption": "dog with its ears bag", "question": ["is there dog ?", "are there its ears ?"], "prompt": "{} with its ears bag"}, {"index": 1041, "image_id": 2333438, "entity": "dog", "caption": "dog mouth open", "question": [], "prompt": "{} mouth open"}, {"index": 1042, "image_id": 2333438, "entity": "dog", "caption": "dog has black and white paws", "question": ["is there dog ?", "are there black and white paws ?"], "prompt": "{} has black and white paws"}, {"index": 1043, "image_id": 2333438, "entity": "dog", "caption": "dog's mouth is open with tounge out", "question": ["is there dog's mouth ?", "is there tounge ?"], "prompt": "{}'s mouth is open with tounge out"}, {"index": 1044, "image_id": 2333301, "entity": "dog", "caption": "the dog has its mouth open.", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open."}, {"index": 1045, "image_id": 2333301, "entity": "dog", "caption": "the dog's ear is standing straight up.", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is standing straight up."}, {"index": 1046, "image_id": 2333301, "entity": "dog", "caption": "the dog's left back leg.", "question": ["is there the dog ?", "is there leg ?"], "prompt": "the {}'s left back leg."}, {"index": 1047, "image_id": 2333301, "entity": "dog", "caption": "dog mouth wide open ", "question": [], "prompt": "{} mouth wide open "}, {"index": 1048, "image_id": 2333301, "entity": "dog", "caption": "dog's tongue is pink.", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink."}, {"index": 1049, "image_id": 2332835, "entity": "dog", "caption": "The dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is pink."}, {"index": 1050, "image_id": 2332835, "entity": "dog", "caption": "The dogs right eye is round.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is round."}, {"index": 1051, "image_id": 2332607, "entity": "dog", "caption": "dog's eyes looking at camera", "question": ["are there dog's eyes ?", "is there camera ?"], "prompt": "{}'s eyes looking at camera"}, {"index": 1052, "image_id": 2332583, "entity": "dog", "caption": "dog has brown tail", "question": ["is there dog ?", "is there brown tail ?"], "prompt": "{} has brown tail"}, {"index": 1053, "image_id": 2332583, "entity": "dog", "caption": "dog has brown back", "question": ["is there dog ?"], "prompt": "{} has brown back"}, {"index": 1054, "image_id": 2332513, "entity": "dog", "caption": "two dogs are lying ", "question": ["are there two dogs ?"], "prompt": "two {}s are lying "}, {"index": 1055, "image_id": 2332513, "entity": "dog", "caption": "this dog's head is up ", "question": ["is there this dog's head ?"], "prompt": "this {}'s head is up "}, {"index": 1056, "image_id": 2332418, "entity": "dog", "caption": "dog has white ears", "question": ["is there dog ?", "are there white ears ?"], "prompt": "{} has white ears"}, {"index": 1057, "image_id": 2331647, "entity": "dog", "caption": "The hat the dog is wearing.", "question": ["is there the hat ?", "is there the dog ?"], "prompt": "The hat the {} is wearing."}, {"index": 1058, "image_id": 2331519, "entity": "dog", "caption": "The dog tongue is pink.", "question": ["is there the dog tongue ?"], "prompt": "The {} tongue is pink."}, {"index": 1059, "image_id": 2331519, "entity": "dog", "caption": "The dog is licking his tongue out.", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "The {} is licking his tongue out."}, {"index": 1060, "image_id": 2331519, "entity": "dog", "caption": "The frisbee is near the dog leg.", "question": ["is there the dog leg ?"], "prompt": "The frisbee is near the {} leg."}, {"index": 1061, "image_id": 2331519, "entity": "dog", "caption": "The dog is playing with the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee"}, {"index": 1062, "image_id": 2331519, "entity": "dog", "caption": "The Frisbee is in front of the dog. ", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The Frisbee is in front of the {}. "}, {"index": 1063, "image_id": 2331395, "entity": "dog", "caption": "The front left paw of the dog.", "question": ["is there the front left paw ?", "is there the dog ?"], "prompt": "The front left paw of the {}."}, {"index": 1064, "image_id": 2330828, "entity": "dog", "caption": "dog has long nose", "question": ["is there dog ?", "is there long nose ?"], "prompt": "{} has long nose"}, {"index": 1065, "image_id": 2330828, "entity": "dog", "caption": "dog has nice coat", "question": ["is there dog ?", "is there nice coat ?"], "prompt": "{} has nice coat"}, {"index": 1066, "image_id": 2330828, "entity": "dog", "caption": "dog has big ear", "question": ["is there dog ?", "is there big ear ?"], "prompt": "{} has big ear"}, {"index": 1067, "image_id": 2329335, "entity": "dog", "caption": "dog has brown paws", "question": ["is there dog ?", "are there brown paws ?"], "prompt": "{} has brown paws"}, {"index": 1068, "image_id": 2329309, "entity": "dog", "caption": "brown white and black dog catching yellow Frisbee", "question": ["is there brown white and black dog ?", "is there yellow frisbee ?"], "prompt": "brown white and black {} catching yellow Frisbee"}, {"index": 1069, "image_id": 2329309, "entity": "dog", "caption": "Frisbee caught by black and brown dog", "question": ["is there black and brown dog ?"], "prompt": "Frisbee caught by black and brown {}"}, {"index": 1070, "image_id": 2329275, "entity": "dog", "caption": "the dog is lying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is lying on the couch"}, {"index": 1071, "image_id": 2329129, "entity": "dog", "caption": "the dog is eating a cake", "question": ["is there the dog ?", "is there a cake ?"], "prompt": "the {} is eating a cake"}, {"index": 1072, "image_id": 2328916, "entity": "dog", "caption": "The dog is sniffing the donut", "question": ["is there the dog ?", "is there the donut ?"], "prompt": "The {} is sniffing the donut"}, {"index": 1073, "image_id": 2328916, "entity": "dog", "caption": "bulldog sniffing a doughnut ", "question": ["is there a doughnut ?"], "prompt": "bull{} sniffing a doughnut "}, {"index": 1074, "image_id": 2328869, "entity": "dog", "caption": "black hat dog is wearing", "question": ["is there black hat dog ?"], "prompt": "black hat {} is wearing"}, {"index": 1075, "image_id": 2328633, "entity": "dog", "caption": "a dog with black spots on it's ear", "question": ["is there a dog ?", "are there black spots ?", "is there ear ?"], "prompt": "a {} with black spots on it's ear"}, {"index": 1076, "image_id": 2327968, "entity": "dog", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car "}, {"index": 1077, "image_id": 2327968, "entity": "dog", "caption": "the dog is sticking its head out ", "question": ["is there the dog ?", "is there its head ?"], "prompt": "the {} is sticking its head out "}, {"index": 1078, "image_id": 2327968, "entity": "dog", "caption": "the dog has its head out the window ", "question": ["is there the dog ?", "is there its head ?", "is there the window ?"], "prompt": "the {} has its head out the window "}, {"index": 1079, "image_id": 2327286, "entity": "dog", "caption": "the dogs eyes are closed", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are closed"}, {"index": 1080, "image_id": 2326860, "entity": "dog", "caption": "The dog has a frisbee inside his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee inside his mouth."}, {"index": 1081, "image_id": 2326801, "entity": "dog", "caption": "A blue duffel bag a dog is on.", "question": ["is there a blue duffel bag ?", "is there a dog ?"], "prompt": "A blue duffel bag a {} is on."}, {"index": 1082, "image_id": 2325767, "entity": "dog", "caption": "A person is holding the dog", "question": ["is there a person ?", "is there the dog ?"], "prompt": "A person is holding the {}"}, {"index": 1083, "image_id": 2325561, "entity": "dog", "caption": "The dog's mouth is open", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open"}, {"index": 1084, "image_id": 2325561, "entity": "dog", "caption": "The dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black"}, {"index": 1085, "image_id": 2325561, "entity": "dog", "caption": "The dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 1086, "image_id": 2325561, "entity": "dog", "caption": "dog has a black nose ", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose "}, {"index": 1087, "image_id": 2325561, "entity": "dog", "caption": "the dog has brown eye", "question": ["is there the dog ?", "is there brown eye ?"], "prompt": "the {} has brown eye"}, {"index": 1088, "image_id": 2325561, "entity": "dog", "caption": "the dogs left eye ", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye "}, {"index": 1089, "image_id": 2325561, "entity": "dog", "caption": "the dogs left ear ", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "the {}s left ear "}, {"index": 1090, "image_id": 2325561, "entity": "dog", "caption": "dog has orange eyes", "question": ["is there dog ?", "are there orange eyes ?"], "prompt": "{} has orange eyes"}, {"index": 1091, "image_id": 2325561, "entity": "dog", "caption": "brown dog has golden eyes", "question": ["is there brown dog ?", "are there golden eyes ?"], "prompt": "brown {} has golden eyes"}, {"index": 1092, "image_id": 2325561, "entity": "dog", "caption": "black dog has brown eyes", "question": ["is there black dog ?", "are there brown eyes ?"], "prompt": "black {} has brown eyes"}, {"index": 1093, "image_id": 2325561, "entity": "dog", "caption": "black dog has a black nose", "question": ["is there black dog ?", "is there a black nose ?"], "prompt": "black {} has a black nose"}, {"index": 1094, "image_id": 2325561, "entity": "dog", "caption": "black dog has some white hair in its ruff", "question": ["is there black dog ?", "is there some white hair ?", "is there its ruff ?"], "prompt": "black {} has some white hair in its ruff"}, {"index": 1095, "image_id": 2325500, "entity": "dog", "caption": "eyes of dog open wide", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} open wide"}, {"index": 1096, "image_id": 2325500, "entity": "dog", "caption": "the dog has a safety vest", "question": ["is there the dog ?", "is there a safety vest ?"], "prompt": "the {} has a safety vest"}, {"index": 1097, "image_id": 2325442, "entity": "dog", "caption": "dog's ears are pink", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are pink"}, {"index": 1098, "image_id": 2325387, "entity": "dog", "caption": "Woman laying on the floor next to dog.", "question": ["is there woman ?", "is there the floor ?", "is there dog ?"], "prompt": "Woman laying on the floor next to {}."}, {"index": 1099, "image_id": 2324981, "entity": "dog", "caption": "The dog has black patch over eye.", "question": ["is there the dog ?", "is there black patch ?", "is there eye ?"], "prompt": "The {} has black patch over eye."}, {"index": 1100, "image_id": 2324981, "entity": "dog", "caption": "The dog is carrying a blue frisbee.", "question": ["is there the dog ?", "is there a blue frisbee ?"], "prompt": "The {} is carrying a blue frisbee."}, {"index": 1101, "image_id": 2324981, "entity": "dog", "caption": "The dog has a nose.", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "The {} has a nose."}, {"index": 1102, "image_id": 2323880, "entity": "dog", "caption": "dog is in picture", "question": ["is there dog ?", "is there picture ?"], "prompt": "{} is in picture"}, {"index": 1103, "image_id": 2323470, "entity": "dog", "caption": "the dog is laying in a green towel", "question": ["is there the dog ?", "is there a green towel ?"], "prompt": "the {} is laying in a green towel"}, {"index": 1104, "image_id": 2322848, "entity": "dog", "caption": "the cat and the dog are good friends", "question": ["is there the cat ?", "is there the dog ?", "are there good friends ?"], "prompt": "the cat and the {} are good friends"}, {"index": 1105, "image_id": 2322848, "entity": "dog", "caption": "this cat and this dog are obviously best friends", "question": ["is there this cat ?", "is there this dog ?", "are there best friends ?"], "prompt": "this cat and this {} are obviously best friends"}, {"index": 1106, "image_id": 2322792, "entity": "dog", "caption": "extended wet dog ear ", "question": ["is there extended wet dog ear ?"], "prompt": "extended wet {} ear "}, {"index": 1107, "image_id": 2322792, "entity": "dog", "caption": "dog ear flipping up", "question": ["is there dog ear ?"], "prompt": "{} ear flipping up"}, {"index": 1108, "image_id": 2322492, "entity": "dog", "caption": "Pile of clothes a small dog is lying on", "question": ["is there pile ?", "are there clothes ?", "is there a small dog ?"], "prompt": "Pile of clothes a small {} is lying on"}, {"index": 1109, "image_id": 2322220, "entity": "dog", "caption": "a dog is lying in the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "a {} is lying in the bed"}, {"index": 1110, "image_id": 2322220, "entity": "dog", "caption": "the dog is under the sheet", "question": ["is there the dog ?", "is there the sheet ?"], "prompt": "the {} is under the sheet"}, {"index": 1111, "image_id": 2322220, "entity": "dog", "caption": "the dogs ears are brown", "question": ["are there the dogs ears ?"], "prompt": "the {}s ears are brown"}, {"index": 1112, "image_id": 2322220, "entity": "dog", "caption": "the dogs front legs are white", "question": ["are there the dogs ?", "are there front legs ?"], "prompt": "the {}s front legs are white"}, {"index": 1113, "image_id": 2322086, "entity": "dog", "caption": "the dog has white spots", "question": ["is there the dog ?", "are there white spots ?"], "prompt": "the {} has white spots"}, {"index": 1114, "image_id": 2321901, "entity": "dog", "caption": "the dog is laying on a pillow ", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "the {} is laying on a pillow "}, {"index": 1115, "image_id": 2321544, "entity": "dog", "caption": "A silver chain is around the dog's neck.", "question": ["is there a silver chain ?", "is there the dog's neck ?"], "prompt": "A silver chain is around the {}'s neck."}, {"index": 1116, "image_id": 2321544, "entity": "dog", "caption": "The dog's left ear is black and brown. ", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear is black and brown. "}, {"index": 1117, "image_id": 2321544, "entity": "dog", "caption": "The dog's right ear is black and brown. ", "question": ["is there the dog's right ear ?"], "prompt": "The {}'s right ear is black and brown. "}, {"index": 1118, "image_id": 2321386, "entity": "dog", "caption": "the dog has a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} has a chain"}, {"index": 1119, "image_id": 2320693, "entity": "dog", "caption": "the dog has a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} has a frisbee"}, {"index": 1120, "image_id": 2320693, "entity": "dog", "caption": "the dog has the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "the {} has the frisbee"}, {"index": 1121, "image_id": 2320693, "entity": "dog", "caption": "teh dog has brown eyes", "question": ["are there brown eyes ?"], "prompt": "teh {} has brown eyes"}, {"index": 1122, "image_id": 2320693, "entity": "dog", "caption": "dog has frisbee in his mouth", "question": ["is there dog ?", "is there frisbee ?", "is there his mouth ?"], "prompt": "{} has frisbee in his mouth"}, {"index": 1123, "image_id": 2320693, "entity": "dog", "caption": "dog in mouth is pink", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} in mouth is pink"}, {"index": 1124, "image_id": 2319884, "entity": "dog", "caption": "dog is eating a vitamin water", "question": ["is there dog ?", "is there a vitamin water ?"], "prompt": "{} is eating a vitamin water"}, {"index": 1125, "image_id": 2319723, "entity": "dog", "caption": "the dog is kissing the cat", "question": ["is there the dog ?", "is there the cat ?"], "prompt": "the {} is kissing the cat"}, {"index": 1126, "image_id": 2319347, "entity": "dog", "caption": "The dog is wearing a shirt", "question": ["is there the dog ?", "is there a shirt ?"], "prompt": "The {} is wearing a shirt"}, {"index": 1127, "image_id": 2319347, "entity": "dog", "caption": "The dog has on a nice shirt", "question": ["is there the dog ?", "is there a nice shirt ?"], "prompt": "The {} has on a nice shirt"}, {"index": 1128, "image_id": 2319347, "entity": "dog", "caption": "The dog has very long hair", "question": ["is there the dog ?", "is there very long hair ?"], "prompt": "The {} has very long hair"}, {"index": 1129, "image_id": 2319347, "entity": "dog", "caption": "The dog is having a great time", "question": ["is there the dog ?", "is there a great time ?"], "prompt": "The {} is having a great time"}, {"index": 1130, "image_id": 2319347, "entity": "dog", "caption": "The dog is out in the daytime", "question": ["is there the dog ?", "is there the daytime ?"], "prompt": "The {} is out in the daytime"}, {"index": 1131, "image_id": 2319347, "entity": "dog", "caption": "The dog is enjoying the day", "question": ["is there the dog ?", "is there the day ?"], "prompt": "The {} is enjoying the day"}, {"index": 1132, "image_id": 2318934, "entity": "dog", "caption": "A dog is wearing a shirt", "question": ["is there a dog ?", "is there a shirt ?"], "prompt": "A {} is wearing a shirt"}, {"index": 1133, "image_id": 2318934, "entity": "dog", "caption": "A dog has on a visor", "question": ["is there a dog ?", "is there a visor ?"], "prompt": "A {} has on a visor"}, {"index": 1134, "image_id": 2318934, "entity": "dog", "caption": "A dog has white curly hair", "question": ["is there a dog ?", "is there white curly hair ?"], "prompt": "A {} has white curly hair"}, {"index": 1135, "image_id": 2318934, "entity": "dog", "caption": "A dog is sticking its tongue out", "question": ["is there a dog ?", "is there its tongue ?"], "prompt": "A {} is sticking its tongue out"}, {"index": 1136, "image_id": 2318934, "entity": "dog", "caption": "A dog is with its master", "question": ["is there a dog ?", "is there its master ?"], "prompt": "A {} is with its master"}, {"index": 1137, "image_id": 2318892, "entity": "dog", "caption": "The dog has black fur", "question": ["is there the dog ?", "is there black fur ?"], "prompt": "The {} has black fur"}, {"index": 1138, "image_id": 2318849, "entity": "dog", "caption": "brown dog curled up with head on blanket", "question": ["is there brown dog ?", "is there head ?", "is there blanket ?"], "prompt": "brown {} curled up with head on blanket"}, {"index": 1139, "image_id": 2318849, "entity": "dog", "caption": "brown dog cuddled with toy with paw on bunny", "question": ["is there brown dog ?", "is there toy ?", "is there paw ?", "is there bunny ?"], "prompt": "brown {} cuddled with toy with paw on bunny"}, {"index": 1140, "image_id": 2318849, "entity": "dog", "caption": "a dog is in bed", "question": ["is there a dog ?", "is there bed ?"], "prompt": "a {} is in bed"}, {"index": 1141, "image_id": 2318849, "entity": "dog", "caption": "the dog is holding a doll", "question": ["is there the dog ?", "is there a doll ?"], "prompt": "the {} is holding a doll"}, {"index": 1142, "image_id": 2318849, "entity": "dog", "caption": "another doll lies close to the dog", "question": ["is there another doll ?", "is there the dog ?"], "prompt": "another doll lies close to the {}"}, {"index": 1143, "image_id": 2318849, "entity": "dog", "caption": "dog eyes are open", "question": ["are there dog eyes ?"], "prompt": "{} eyes are open"}, {"index": 1144, "image_id": 2318849, "entity": "dog", "caption": "the dog's paw is on the toy", "question": ["is there the dog's paw ?", "is there the toy ?"], "prompt": "the {}'s paw is on the toy"}, {"index": 1145, "image_id": 2318849, "entity": "dog", "caption": "dog holding white stuffed bunny", "question": ["is there white stuffed bunny ?"], "prompt": "{} holding white stuffed bunny"}, {"index": 1146, "image_id": 2318152, "entity": "dog", "caption": "Mulch dog is standing on", "question": ["is there mulch dog ?"], "prompt": "Mulch {} is standing on"}, {"index": 1147, "image_id": 2318115, "entity": "dog", "caption": "Brown leash on a dog", "question": ["is there brown leash ?", "is there a dog ?"], "prompt": "Brown leash on a {}"}, {"index": 1148, "image_id": 2318115, "entity": "dog", "caption": "A person on a skateboard walking their dog", "question": ["is there a person ?", "is there a skateboard ?", "is there their dog ?"], "prompt": "A person on a skateboard walking their {}"}, {"index": 1149, "image_id": 2318115, "entity": "dog", "caption": "person walking the dog", "question": ["is there person ?", "is there the dog ?"], "prompt": "person walking the {}"}, {"index": 1150, "image_id": 2317836, "entity": "dog", "caption": "the dog is in costume", "question": ["is there the dog ?", "is there costume ?"], "prompt": "the {} is in costume"}, {"index": 1151, "image_id": 2317283, "entity": "dog", "caption": "dog paws are tan", "question": ["are there dog paws ?", "is there tan ?"], "prompt": "{} paws are tan"}, {"index": 1152, "image_id": 2317283, "entity": "dog", "caption": "dog has mouth open", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} has mouth open"}, {"index": 1153, "image_id": 2317283, "entity": "dog", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} is in a car."}, {"index": 1154, "image_id": 2317283, "entity": "dog", "caption": "The dog's eyes are open.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open."}, {"index": 1155, "image_id": 2317002, "entity": "dog", "caption": "black whiskers are on the dog", "question": ["are there black whiskers ?", "is there the dog ?"], "prompt": "black whiskers are on the {}"}, {"index": 1156, "image_id": 2317002, "entity": "dog", "caption": "brown nails are on the dog", "question": ["are there brown nails ?", "is there the dog ?"], "prompt": "brown nails are on the {}"}, {"index": 1157, "image_id": 2316886, "entity": "dog", "caption": "the dog appears to be enjoying his snack", "question": ["is there the dog ?", "is there his snack ?"], "prompt": "the {} appears to be enjoying his snack"}, {"index": 1158, "image_id": 2316480, "entity": "dog", "caption": "nose of dog is black ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black "}, {"index": 1159, "image_id": 2316480, "entity": "dog", "caption": "dog sits on couch", "question": ["is there dog ?", "is there couch ?"], "prompt": "{} sits on couch"}, {"index": 1160, "image_id": 2316480, "entity": "dog", "caption": "dog has pink dress", "question": ["is there dog ?", "is there pink dress ?"], "prompt": "{} has pink dress"}, {"index": 1161, "image_id": 2316349, "entity": "dog", "caption": "dog ear on right", "question": ["is there dog ear ?"], "prompt": "{} ear on right"}, {"index": 1162, "image_id": 2316242, "entity": "dog", "caption": "a dog rests on a person", "question": ["is there a dog ?", "is there a person ?"], "prompt": "a {} rests on a person"}, {"index": 1163, "image_id": 2316242, "entity": "dog", "caption": "The dog is wearing a hat.", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} is wearing a hat."}, {"index": 1164, "image_id": 2316242, "entity": "dog", "caption": "The hat is on the dog's head.", "question": ["is there the hat ?", "is there the dog's head ?"], "prompt": "The hat is on the {}'s head."}, {"index": 1165, "image_id": 2316242, "entity": "dog", "caption": "The dog has whiskers.", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "The {} has whiskers."}, {"index": 1166, "image_id": 2316170, "entity": "dog", "caption": "small dog with eyes closed", "question": ["is there small dog ?", "are there eyes ?"], "prompt": "small {} with eyes closed"}, {"index": 1167, "image_id": 2315589, "entity": "dog", "caption": "The dogs nose is black in color. ", "question": ["are there the dogs nose ?", "is there color ?"], "prompt": "The {}s nose is black in color. "}, {"index": 1168, "image_id": 2315589, "entity": "dog", "caption": "The dog has a black nose. ", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose. "}, {"index": 1169, "image_id": 2315589, "entity": "dog", "caption": "The dogs eye is brown.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is brown."}, {"index": 1170, "image_id": 2315589, "entity": "dog", "caption": "The dogs ear is black. ", "question": ["are there the dogs ?"], "prompt": "The {}s ear is black. "}, {"index": 1171, "image_id": 2315468, "entity": "dog", "caption": "dog has a leg", "question": ["is there dog ?", "is there a leg ?"], "prompt": "{} has a leg"}, {"index": 1172, "image_id": 2315468, "entity": "dog", "caption": "the dog carries a green frisbee", "question": ["is there the dog ?", "is there a green frisbee ?"], "prompt": "the {} carries a green frisbee"}, {"index": 1173, "image_id": 2315468, "entity": "dog", "caption": "the dog's collar is green", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is green"}, {"index": 1174, "image_id": 2315447, "entity": "dog", "caption": "A dogs left black eye. ", "question": ["are there a dogs ?", "is there black eye ?"], "prompt": "A {}s left black eye. "}, {"index": 1175, "image_id": 2315441, "entity": "dog", "caption": "The 2 dogs lay on the bed together", "question": ["are there the 2 dogs ?", "is there the bed ?"], "prompt": "The 2 {}s lay on the bed together"}, {"index": 1176, "image_id": 2315441, "entity": "dog", "caption": "The dog is laying on the other dog", "question": ["is there the dog ?", "is there the other dog ?"], "prompt": "The {} is laying on the other {}"}, {"index": 1177, "image_id": 2315441, "entity": "dog", "caption": "The dogs are on the comfortable looking bed", "question": ["are there the dogs ?", "is there the comfortable looking bed ?"], "prompt": "The {}s are on the comfortable looking bed"}, {"index": 1178, "image_id": 2315441, "entity": "dog", "caption": "The dog has a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} has a blue collar"}, {"index": 1179, "image_id": 2315441, "entity": "dog", "caption": "Brown dogs left eye.", "question": ["are there brown dogs ?", "is there eye ?"], "prompt": "Brown {}s left eye."}, {"index": 1180, "image_id": 2414390, "entity": "dog", "caption": "the dog is playing with a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is playing with a frisbee"}, {"index": 1181, "image_id": 2414390, "entity": "dog", "caption": "the dog has brown ears", "question": ["is there the dog ?", "are there brown ears ?"], "prompt": "the {} has brown ears"}, {"index": 1182, "image_id": 2414304, "entity": "dog", "caption": "A dog is in the picture.", "question": ["is there a dog ?", "is there the picture ?"], "prompt": "A {} is in the picture."}, {"index": 1183, "image_id": 2414304, "entity": "dog", "caption": "The dog has on a black collar.", "question": ["is there the dog ?", "is there a black collar ?"], "prompt": "The {} has on a black collar."}, {"index": 1184, "image_id": 2414304, "entity": "dog", "caption": "The dog is standing in the sand.", "question": ["is there the dog ?", "is there the sand ?"], "prompt": "The {} is standing in the sand."}, {"index": 1185, "image_id": 2414304, "entity": "dog", "caption": "The dog is staring at his master.", "question": ["is there the dog ?", "is there his master ?"], "prompt": "The {} is staring at his master."}, {"index": 1186, "image_id": 2412940, "entity": "dog", "caption": "Sun light over the body of dogs", "question": ["is there sun light ?", "is there the body ?", "are there dogs ?"], "prompt": "Sun light over the body of {}s"}, {"index": 1187, "image_id": 2412940, "entity": "dog", "caption": "the dogs eyes are wide apart", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are wide apart"}, {"index": 1188, "image_id": 2412718, "entity": "dog", "caption": "the dog is resting on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is resting on a blanket"}, {"index": 1189, "image_id": 2412718, "entity": "dog", "caption": "the dog has his ears bent", "question": ["is there the dog ?", "are there his ears ?"], "prompt": "the {} has his ears bent"}, {"index": 1190, "image_id": 2412718, "entity": "dog", "caption": "the dog has pretty blue eyes", "question": ["is there the dog ?", "are there pretty blue eyes ?"], "prompt": "the {} has pretty blue eyes"}, {"index": 1191, "image_id": 2412718, "entity": "dog", "caption": "the dog has brown feet", "question": ["is there the dog ?", "are there brown feet ?"], "prompt": "the {} has brown feet"}, {"index": 1192, "image_id": 2412718, "entity": "dog", "caption": "The dog is sitting on blankets", "question": ["is there the dog ?", "are there blankets ?"], "prompt": "The {} is sitting on blankets"}, {"index": 1193, "image_id": 2412718, "entity": "dog", "caption": "The dog has 2 ears", "question": ["is there the dog ?", "are there 2 ears ?"], "prompt": "The {} has 2 ears"}, {"index": 1194, "image_id": 2412718, "entity": "dog", "caption": "The dog has a tail", "question": ["is there the dog ?", "is there a tail ?"], "prompt": "The {} has a tail"}, {"index": 1195, "image_id": 2412718, "entity": "dog", "caption": "The dog's eyes are blue", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are blue"}, {"index": 1196, "image_id": 2412718, "entity": "dog", "caption": "The dog has 4 paws", "question": ["is there the dog ?", "are there 4 paws ?"], "prompt": "The {} has 4 paws"}, {"index": 1197, "image_id": 2412430, "entity": "dog", "caption": "A dog is laying down on a couch.", "question": ["is there a dog ?", "is there a couch ?"], "prompt": "A {} is laying down on a couch."}, {"index": 1198, "image_id": 2412430, "entity": "dog", "caption": "The dog's nose is black in color.", "question": ["is there the dog's nose ?", "is there color ?"], "prompt": "The {}'s nose is black in color."}, {"index": 1199, "image_id": 2412382, "entity": "dog", "caption": "the dogs are on the seat", "question": ["are there the dogs ?", "is there the seat ?"], "prompt": "the {}s are on the seat"}, {"index": 1200, "image_id": 2412382, "entity": "dog", "caption": "the dogs eyes are black", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are black"}, {"index": 1201, "image_id": 2412215, "entity": "dog", "caption": "The white sheet the dog's paw and mouth is resting on.", "question": ["is there the dog's paw ?", "is there mouth ?"], "prompt": "The white sheet the {}'s paw and mouth is resting on."}, {"index": 1202, "image_id": 2412215, "entity": "dog", "caption": "The black dog's head resting on the bed.", "question": ["is there the black dog's head ?", "is there the bed ?"], "prompt": "The black {}'s head resting on the bed."}, {"index": 1203, "image_id": 2411734, "entity": "dog", "caption": "A dog with a white nose looks at a birthday cupcake", "question": ["is there a dog ?", "is there a white nose ?", "is there a birthday cupcake ?"], "prompt": "A {} with a white nose looks at a birthday cupcake"}, {"index": 1204, "image_id": 2411533, "entity": "dog", "caption": "White mouse and cat sitting on dog.", "question": ["is there cat ?", "is there dog ?"], "prompt": "White mouse and cat sitting on {}."}, {"index": 1205, "image_id": 2411533, "entity": "dog", "caption": "cat is on a dogs back", "question": ["is there cat ?", "are there a dogs ?"], "prompt": "cat is on a {}s back"}, {"index": 1206, "image_id": 2411533, "entity": "dog", "caption": "dog is walking on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} is walking on sidewalk"}, {"index": 1207, "image_id": 2411533, "entity": "dog", "caption": "dog is wearing a brown vest", "question": ["is there dog ?", "is there a brown vest ?"], "prompt": "{} is wearing a brown vest"}, {"index": 1208, "image_id": 2411533, "entity": "dog", "caption": "a cat is on the dog's back", "question": ["is there a cat ?", "is there the dog ?"], "prompt": "a cat is on the {}'s back"}, {"index": 1209, "image_id": 2411533, "entity": "dog", "caption": "a cat and a mouse are both on a dog", "question": ["is there a cat ?", "is there a mouse ?", "is there a dog ?"], "prompt": "a cat and a mouse are both on a {}"}, {"index": 1210, "image_id": 2411533, "entity": "dog", "caption": "the dog is wearing a vest", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "the {} is wearing a vest"}, {"index": 1211, "image_id": 2415243, "entity": "dog", "caption": "a dog lays on a television remote", "question": ["is there a dog ?", "is there a television remote ?"], "prompt": "a {} lays on a television remote"}, {"index": 1212, "image_id": 2415243, "entity": "dog", "caption": "dog takes a nap on a couch", "question": ["is there dog ?", "is there a nap ?", "is there a couch ?"], "prompt": "{} takes a nap on a couch"}, {"index": 1213, "image_id": 2415532, "entity": "dog", "caption": "Elbow on the far arm washing the dog.", "question": ["is there the far arm ?", "is there the dog ?"], "prompt": "Elbow on the far arm washing the {}."}, {"index": 1214, "image_id": 2416178, "entity": "dog", "caption": "the dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye"}, {"index": 1215, "image_id": 2416388, "entity": "dog", "caption": "pink bow the dog is wearing", "question": ["is there the dog ?"], "prompt": "pink bow the {} is wearing"}, {"index": 1216, "image_id": 2416388, "entity": "dog", "caption": "dog getting teeth brushed", "question": ["is there dog ?", "are there teeth ?"], "prompt": "{} getting teeth brushed"}, {"index": 1217, "image_id": 2416731, "entity": "dog", "caption": "the dog has black hair", "question": ["is there the dog ?", "is there black hair ?"], "prompt": "the {} has black hair"}, {"index": 1218, "image_id": 2416731, "entity": "dog", "caption": "the dog has pointy teeth", "question": ["is there the dog ?", "are there pointy teeth ?"], "prompt": "the {} has pointy teeth"}, {"index": 1219, "image_id": 2416944, "entity": "dog", "caption": "grassy field dog is playing in", "question": ["is there grassy field dog ?"], "prompt": "grassy field {} is playing in"}, {"index": 1220, "image_id": 2417227, "entity": "dog", "caption": "The sofa the dog is leaning on.", "question": ["is there the sofa ?", "is there the dog ?"], "prompt": "The sofa the {} is leaning on."}, {"index": 1221, "image_id": 2417721, "entity": "dog", "caption": "dog has brown legs", "question": ["is there dog ?", "are there brown legs ?"], "prompt": "{} has brown legs"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02089867.json b/data/imagenet/compositions/prompts/n02089867.json
new file mode 100644
index 0000000000000000000000000000000000000000..52b4abb883afb593845d8e1b9e77621259749c5a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02089867.json
@@ -0,0 +1,13317 @@
+[
+ {
+ "index": 0,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog has a black nose",
+ "question": [
+ "is there dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "{} has a black nose"
+ },
+ {
+ "index": 1,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog's ears are up",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are up"
+ },
+ {
+ "index": 2,
+ "image_id": 561,
+ "entity": "dog",
+ "caption": "dog's eyes are dark",
+ "question": [
+ "are there dog's eyes ?"
+ ],
+ "prompt": "{}'s eyes are dark"
+ },
+ {
+ "index": 3,
+ "image_id": 3535,
+ "entity": "dog",
+ "caption": "The dog has four legs.",
+ "question": [
+ "is there the dog ?",
+ "are there four legs ?"
+ ],
+ "prompt": "The {} has four legs."
+ },
+ {
+ "index": 4,
+ "image_id": 3535,
+ "entity": "dog",
+ "caption": "tongue hanging out a dog's mouth",
+ "question": [
+ "is there tongue ?",
+ "is there a dog's mouth ?"
+ ],
+ "prompt": "tongue hanging out a {}'s mouth"
+ },
+ {
+ "index": 5,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "dog is sitting in grass",
+ "question": [
+ "is there dog ?",
+ "is there grass ?"
+ ],
+ "prompt": "{} is sitting in grass"
+ },
+ {
+ "index": 6,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "dog is mostly brown",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is mostly brown"
+ },
+ {
+ "index": 7,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the dog has a black nose",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "the {} has a black nose"
+ },
+ {
+ "index": 8,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the brown dog has a long brown tail",
+ "question": [
+ "is there the brown dog ?",
+ "is there a long brown tail ?"
+ ],
+ "prompt": "the brown {} has a long brown tail"
+ },
+ {
+ "index": 9,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "the dog has large brown paws",
+ "question": [
+ "is there the dog ?",
+ "are there large brown paws ?"
+ ],
+ "prompt": "the {} has large brown paws"
+ },
+ {
+ "index": 10,
+ "image_id": 3553,
+ "entity": "dog",
+ "caption": "a dog with its mouth open",
+ "question": [
+ "is there a dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "a {} with its mouth open"
+ },
+ {
+ "index": 11,
+ "image_id": 3752,
+ "entity": "dog",
+ "caption": "the dogs tail is black ",
+ "question": [
+ "are there the dogs tail ?"
+ ],
+ "prompt": "the {}s tail is black "
+ },
+ {
+ "index": 12,
+ "image_id": 3752,
+ "entity": "dog",
+ "caption": "the dogs feet is black ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s feet is black "
+ },
+ {
+ "index": 13,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "A dog and a cat are standing together on the sidewalk",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?",
+ "is there the sidewalk ?"
+ ],
+ "prompt": "A {} and a cat are standing together on the sidewalk"
+ },
+ {
+ "index": 14,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "dog has a brown patch",
+ "question": [
+ "is there dog ?",
+ "is there a brown patch ?"
+ ],
+ "prompt": "{} has a brown patch"
+ },
+ {
+ "index": 15,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "dog has a blue rope tied",
+ "question": [
+ "is there dog ?",
+ "is there a blue rope ?"
+ ],
+ "prompt": "{} has a blue rope tied"
+ },
+ {
+ "index": 16,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "the dog has a blue leash",
+ "question": [
+ "is there the dog ?",
+ "is there a blue leash ?"
+ ],
+ "prompt": "the {} has a blue leash"
+ },
+ {
+ "index": 17,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "A dog and a cat walk together.",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A {} and a cat walk together."
+ },
+ {
+ "index": 18,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "Both dog and cat are in the middle of the frame.",
+ "question": [
+ "is there both dog ?",
+ "is there cat ?",
+ "is there the middle ?",
+ "is there the frame ?"
+ ],
+ "prompt": "Both {} and cat are in the middle of the frame."
+ },
+ {
+ "index": 19,
+ "image_id": 107934,
+ "entity": "dog",
+ "caption": "The dog is looking at the camera.",
+ "question": [
+ "is there the dog ?",
+ "is there the camera ?"
+ ],
+ "prompt": "The {} is looking at the camera."
+ },
+ {
+ "index": 20,
+ "image_id": 1159975,
+ "entity": "dog",
+ "caption": "The gray collar the dog is wearing.",
+ "question": [
+ "is there the gray collar ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The gray collar the {} is wearing."
+ },
+ {
+ "index": 21,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "The dog has a brown and white sweater",
+ "question": [
+ "is there the dog ?",
+ "is there a brown and white sweater ?"
+ ],
+ "prompt": "The {} has a brown and white sweater"
+ },
+ {
+ "index": 22,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "The dog has a brown nose",
+ "question": [
+ "is there the dog ?",
+ "is there a brown nose ?"
+ ],
+ "prompt": "The {} has a brown nose"
+ },
+ {
+ "index": 23,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog has a messed up eye",
+ "question": [
+ "is there the dog ?",
+ "is there a messed up eye ?"
+ ],
+ "prompt": "the {} has a messed up eye"
+ },
+ {
+ "index": 24,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog is wearing a sweater",
+ "question": [
+ "is there the dog ?",
+ "is there a sweater ?"
+ ],
+ "prompt": "the {} is wearing a sweater"
+ },
+ {
+ "index": 25,
+ "image_id": 2414023,
+ "entity": "dog",
+ "caption": "the dog has a purple collar",
+ "question": [
+ "is there the dog ?",
+ "is there a purple collar ?"
+ ],
+ "prompt": "the {} has a purple collar"
+ },
+ {
+ "index": 26,
+ "image_id": 2413171,
+ "entity": "dog",
+ "caption": "Young man hold a cute dog",
+ "question": [
+ "is there young man ?",
+ "is there a cute dog ?"
+ ],
+ "prompt": "Young man hold a cute {}"
+ },
+ {
+ "index": 27,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "black fur grows on a dog",
+ "question": [
+ "is there black fur ?",
+ "is there a dog ?"
+ ],
+ "prompt": "black fur grows on a {}"
+ },
+ {
+ "index": 28,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "dog is sitting in the ground",
+ "question": [
+ "is there dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "{} is sitting in the ground"
+ },
+ {
+ "index": 29,
+ "image_id": 2412707,
+ "entity": "dog",
+ "caption": "dog is sitting in the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is sitting in the floor"
+ },
+ {
+ "index": 30,
+ "image_id": 2412546,
+ "entity": "dog",
+ "caption": "The dog has a collar on.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} has a collar on."
+ },
+ {
+ "index": 31,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog is long hair",
+ "question": [
+ "is there the dog ?",
+ "is there long hair ?"
+ ],
+ "prompt": "the {} is long hair"
+ },
+ {
+ "index": 32,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some white hair",
+ "question": [
+ "is there the dog ?",
+ "is there some white hair ?"
+ ],
+ "prompt": "the {} has some white hair"
+ },
+ {
+ "index": 33,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some black hair",
+ "question": [
+ "is there the dog ?",
+ "is there some black hair ?"
+ ],
+ "prompt": "the {} has some black hair"
+ },
+ {
+ "index": 34,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog has some brown hair",
+ "question": [
+ "is there the dog ?",
+ "is there some brown hair ?"
+ ],
+ "prompt": "the {} has some brown hair"
+ },
+ {
+ "index": 35,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog's nose is shiny",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "the {}'s nose is shiny"
+ },
+ {
+ "index": 36,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "the dog's nose is black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "the {}'s nose is black"
+ },
+ {
+ "index": 37,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "this are dog canines",
+ "question": [
+ "are there dog canines ?"
+ ],
+ "prompt": "this are {} canines"
+ },
+ {
+ "index": 38,
+ "image_id": 2412049,
+ "entity": "dog",
+ "caption": "this is the dogs fur",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "this is the {}s fur"
+ },
+ {
+ "index": 39,
+ "image_id": 2411402,
+ "entity": "dog",
+ "caption": "Bed the dog is sleeping on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Bed the {} is sleeping on"
+ },
+ {
+ "index": 40,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is wearing a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} is wearing a collar"
+ },
+ {
+ "index": 41,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is wearing a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} is wearing a chain"
+ },
+ {
+ "index": 42,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog is watching the oven",
+ "question": [
+ "is there the dog ?",
+ "is there the oven ?"
+ ],
+ "prompt": "the {} is watching the oven"
+ },
+ {
+ "index": 43,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog has a chain around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?",
+ "is there its neck ?"
+ ],
+ "prompt": "the {} has a chain around its neck"
+ },
+ {
+ "index": 44,
+ "image_id": 2411357,
+ "entity": "dog",
+ "caption": "the dog has two ears",
+ "question": [
+ "is there the dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "the {} has two ears"
+ },
+ {
+ "index": 45,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "A dog is on a moped.",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "A {} is on a moped."
+ },
+ {
+ "index": 46,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog has a red leash.",
+ "question": [
+ "is there the dog ?",
+ "is there a red leash ?"
+ ],
+ "prompt": "The {} has a red leash."
+ },
+ {
+ "index": 47,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog's ears are up.",
+ "question": [
+ "are there the dog's ears ?"
+ ],
+ "prompt": "The {}'s ears are up."
+ },
+ {
+ "index": 48,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog's tail is hanging down.",
+ "question": [
+ "is there the dog's tail ?"
+ ],
+ "prompt": "The {}'s tail is hanging down."
+ },
+ {
+ "index": 49,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "a large dog sits on a scooter",
+ "question": [
+ "is there a large dog ?",
+ "is there a scooter ?"
+ ],
+ "prompt": "a large {} sits on a scooter"
+ },
+ {
+ "index": 50,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "a dog has a red leash",
+ "question": [
+ "is there a dog ?",
+ "is there a red leash ?"
+ ],
+ "prompt": "a {} has a red leash"
+ },
+ {
+ "index": 51,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "The dog on the scooter has a long tail",
+ "question": [
+ "is there the dog ?",
+ "is there the scooter ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "The {} on the scooter has a long tail"
+ },
+ {
+ "index": 52,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "Brown dog on leash on moped",
+ "question": [
+ "is there brown dog ?",
+ "is there leash ?"
+ ],
+ "prompt": "Brown {} on leash on moped"
+ },
+ {
+ "index": 53,
+ "image_id": 2411201,
+ "entity": "dog",
+ "caption": "Red moped with dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "Red moped with {}"
+ },
+ {
+ "index": 54,
+ "image_id": 2410967,
+ "entity": "dog",
+ "caption": "a dog's ears bent over",
+ "question": [
+ "are there a dog's ears ?"
+ ],
+ "prompt": "a {}'s ears bent over"
+ },
+ {
+ "index": 55,
+ "image_id": 2410840,
+ "entity": "dog",
+ "caption": "a dog's mouth biting a frisbee",
+ "question": [
+ "is there a dog's mouth ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "a {}'s mouth biting a frisbee"
+ },
+ {
+ "index": 56,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "black and tan dog jumping to catch a frisbee",
+ "question": [
+ "is there black and tan dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "black and tan {} jumping to catch a frisbee"
+ },
+ {
+ "index": 57,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "leaping dog going after a frisbee",
+ "question": [
+ "is there leaping dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "leaping {} going after a frisbee"
+ },
+ {
+ "index": 58,
+ "image_id": 2410817,
+ "entity": "dog",
+ "caption": "German shepherd dog fetching a frisbee. ",
+ "question": [
+ "is there german shepherd dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "German shepherd {} fetching a frisbee. "
+ },
+ {
+ "index": 59,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "dog's eyes appear to be different colors",
+ "question": [
+ "are there dog's eyes ?",
+ "are there different colors ?"
+ ],
+ "prompt": "{}'s eyes appear to be different colors"
+ },
+ {
+ "index": 60,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "dog has black nose",
+ "question": [
+ "is there dog ?",
+ "is there black nose ?"
+ ],
+ "prompt": "{} has black nose"
+ },
+ {
+ "index": 61,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "the dog is wearing a cap",
+ "question": [
+ "is there the dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "the {} is wearing a cap"
+ },
+ {
+ "index": 62,
+ "image_id": 2409859,
+ "entity": "dog",
+ "caption": "Tongue of dog is pink",
+ "question": [
+ "is there tongue ?",
+ "is there dog ?"
+ ],
+ "prompt": "Tongue of {} is pink"
+ },
+ {
+ "index": 63,
+ "image_id": 2409626,
+ "entity": "dog",
+ "caption": "dog has two eyes",
+ "question": [
+ "is there dog ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "{} has two eyes"
+ },
+ {
+ "index": 64,
+ "image_id": 2409626,
+ "entity": "dog",
+ "caption": "the dog is wearing pirate hat",
+ "question": [
+ "is there the dog ?",
+ "is there pirate hat ?"
+ ],
+ "prompt": "the {} is wearing pirate hat"
+ },
+ {
+ "index": 65,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "White left foot of the dog",
+ "question": [
+ "is there white left foot ?",
+ "is there the dog ?"
+ ],
+ "prompt": "White left foot of the {}"
+ },
+ {
+ "index": 66,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog catch the frisbee",
+ "question": [
+ "is there dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{} catch the frisbee"
+ },
+ {
+ "index": 67,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's nose is black",
+ "question": [
+ "is there dog's nose ?"
+ ],
+ "prompt": "{}'s nose is black"
+ },
+ {
+ "index": 68,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's ears are black",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are black"
+ },
+ {
+ "index": 69,
+ "image_id": 2409304,
+ "entity": "dog",
+ "caption": "dog's paws are white",
+ "question": [
+ "are there dog's paws ?"
+ ],
+ "prompt": "{}'s paws are white"
+ },
+ {
+ "index": 70,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "the dog is wearing a blue collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "the {} is wearing a blue collar"
+ },
+ {
+ "index": 71,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "a book by T.C. Boyle is next to the dog",
+ "question": [
+ "is there a book ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a book by T.C. Boyle is next to the {}"
+ },
+ {
+ "index": 72,
+ "image_id": 2409103,
+ "entity": "dog",
+ "caption": "the dog is laying on top of an embroidered sheet",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there an embroidered sheet ?"
+ ],
+ "prompt": "the {} is laying on top of an embroidered sheet"
+ },
+ {
+ "index": 73,
+ "image_id": 2408483,
+ "entity": "dog",
+ "caption": "Carpet is light in color under dog",
+ "question": [
+ "is there carpet ?",
+ "is there color ?",
+ "is there dog ?"
+ ],
+ "prompt": "Carpet is light in color under {}"
+ },
+ {
+ "index": 74,
+ "image_id": 2408383,
+ "entity": "dog",
+ "caption": "The dog and cat are looking in the same direction",
+ "question": [
+ "is there the dog ?",
+ "is there cat ?",
+ "is there the same direction ?"
+ ],
+ "prompt": "The {} and cat are looking in the same direction"
+ },
+ {
+ "index": 75,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Nose of dog is black",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "Nose of {} is black"
+ },
+ {
+ "index": 76,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Ears of dog is black and tan",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "Ears of {} is black and tan"
+ },
+ {
+ "index": 77,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "Eyes of dog are open",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "Eyes of {} are open"
+ },
+ {
+ "index": 78,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "three dogs are lying on a bed",
+ "question": [
+ "are there three dogs ?",
+ "is there a bed ?"
+ ],
+ "prompt": "three {}s are lying on a bed"
+ },
+ {
+ "index": 79,
+ "image_id": 2408210,
+ "entity": "dog",
+ "caption": "the dog has his eyes open",
+ "question": [
+ "is there the dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "the {} has his eyes open"
+ },
+ {
+ "index": 80,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has red eyes",
+ "question": [
+ "is there the dog ?",
+ "are there red eyes ?"
+ ],
+ "prompt": "the {} has red eyes"
+ },
+ {
+ "index": 81,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog is holding carrot toy",
+ "question": [
+ "is there the dog ?",
+ "is there carrot toy ?"
+ ],
+ "prompt": "the {} is holding carrot toy"
+ },
+ {
+ "index": 82,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has green ribbon on its nech",
+ "question": [
+ "is there the dog ?",
+ "is there green ribbon ?"
+ ],
+ "prompt": "the {} has green ribbon on its nech"
+ },
+ {
+ "index": 83,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "a green toy is beside the dog",
+ "question": [
+ "is there a green toy ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a green toy is beside the {}"
+ },
+ {
+ "index": 84,
+ "image_id": 2408037,
+ "entity": "dog",
+ "caption": "the dog has brown legs",
+ "question": [
+ "is there the dog ?",
+ "are there brown legs ?"
+ ],
+ "prompt": "the {} has brown legs"
+ },
+ {
+ "index": 85,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "Brown dog laying on a bed with eyes open.",
+ "question": [
+ "is there brown dog ?",
+ "is there a bed ?",
+ "are there eyes ?"
+ ],
+ "prompt": "Brown {} laying on a bed with eyes open."
+ },
+ {
+ "index": 86,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog is lying down.",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is lying down."
+ },
+ {
+ "index": 87,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog is lying in cot.",
+ "question": [
+ "is there dog ?",
+ "is there cot ?"
+ ],
+ "prompt": "{} is lying in cot."
+ },
+ {
+ "index": 88,
+ "image_id": 2407835,
+ "entity": "dog",
+ "caption": "dog nose is black color.",
+ "question": [
+ "is there dog nose ?",
+ "is there black color ?"
+ ],
+ "prompt": "{} nose is black color."
+ },
+ {
+ "index": 89,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog has two eyes",
+ "question": [
+ "is there the dog ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "the {} has two eyes"
+ },
+ {
+ "index": 90,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "dog is wearing a collar",
+ "question": [
+ "is there dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "{} is wearing a collar"
+ },
+ {
+ "index": 91,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog is on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is on the couch"
+ },
+ {
+ "index": 92,
+ "image_id": 2407825,
+ "entity": "dog",
+ "caption": "the dog has whiskers",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "the {} has whiskers"
+ },
+ {
+ "index": 93,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is on the beanbag",
+ "question": [
+ "is there the dog ?",
+ "is there the beanbag ?"
+ ],
+ "prompt": "the {} is on the beanbag"
+ },
+ {
+ "index": 94,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "a dog toy thats a rope",
+ "question": [
+ "is there a dog toy ?",
+ "is there a rope ?"
+ ],
+ "prompt": "a {} toy thats a rope"
+ },
+ {
+ "index": 95,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is on bean bag",
+ "question": [
+ "is there the dog ?",
+ "is there bean bag ?"
+ ],
+ "prompt": "the {} is on bean bag"
+ },
+ {
+ "index": 96,
+ "image_id": 2407234,
+ "entity": "dog",
+ "caption": "the dog is sad",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is sad"
+ },
+ {
+ "index": 97,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "the dog has goggles",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "the {} has goggles"
+ },
+ {
+ "index": 98,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dog has a vest on",
+ "question": [
+ "is there the dog ?",
+ "is there a vest ?"
+ ],
+ "prompt": "The {} has a vest on"
+ },
+ {
+ "index": 99,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dog has goggles on",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "The {} has goggles on"
+ },
+ {
+ "index": 100,
+ "image_id": 2406999,
+ "entity": "dog",
+ "caption": "The dogs tongue is out. ",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "The {}s tongue is out. "
+ },
+ {
+ "index": 101,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "The dog has amber-coloured eyes",
+ "question": [
+ "is there the dog ?",
+ "are there amber-coloured eyes ?"
+ ],
+ "prompt": "The {} has amber-coloured eyes"
+ },
+ {
+ "index": 102,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "The dog's hat is courdoroy",
+ "question": [
+ "is there the dog's hat ?"
+ ],
+ "prompt": "The {}'s hat is courdoroy"
+ },
+ {
+ "index": 103,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has collar",
+ "question": [
+ "is there dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} has collar"
+ },
+ {
+ "index": 104,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has whiskers",
+ "question": [
+ "is there dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "{} has whiskers"
+ },
+ {
+ "index": 105,
+ "image_id": 2406384,
+ "entity": "dog",
+ "caption": "dog has black lips",
+ "question": [
+ "is there dog ?",
+ "are there black lips ?"
+ ],
+ "prompt": "{} has black lips"
+ },
+ {
+ "index": 106,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "dogs nose is black",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is black"
+ },
+ {
+ "index": 107,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has light brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there light brown eyes ?"
+ ],
+ "prompt": "the {} has light brown eyes"
+ },
+ {
+ "index": 108,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has pointy ears",
+ "question": [
+ "is there the dog ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "the {} has pointy ears"
+ },
+ {
+ "index": 109,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "something fuzzy is next to the dog",
+ "question": [
+ "is there something ?",
+ "is there the dog ?"
+ ],
+ "prompt": "something fuzzy is next to the {}"
+ },
+ {
+ "index": 110,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog has brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "the {} has brown eyes"
+ },
+ {
+ "index": 111,
+ "image_id": 2406275,
+ "entity": "dog",
+ "caption": "the dog is lying on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is lying on a blanket"
+ },
+ {
+ "index": 112,
+ "image_id": 2405633,
+ "entity": "dog",
+ "caption": "Dog kennel with dog.",
+ "question": [
+ "is there dog kennel ?",
+ "is there dog ?"
+ ],
+ "prompt": "Dog kennel with {}."
+ },
+ {
+ "index": 113,
+ "image_id": 2405633,
+ "entity": "dog",
+ "caption": "The dog is lying on two blue and white pillows.",
+ "question": [
+ "is there the dog ?",
+ "are there two blue and white pillows ?"
+ ],
+ "prompt": "The {} is lying on two blue and white pillows."
+ },
+ {
+ "index": 114,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has a pink tongue",
+ "question": [
+ "is there the dog ?",
+ "is there a pink tongue ?"
+ ],
+ "prompt": "the {} has a pink tongue"
+ },
+ {
+ "index": 115,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is walking in the grass",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {} is walking in the grass"
+ },
+ {
+ "index": 116,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is wearing a metal collar",
+ "question": [
+ "is there the dog ?",
+ "is there a metal collar ?"
+ ],
+ "prompt": "the {} is wearing a metal collar"
+ },
+ {
+ "index": 117,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is standing on the grass",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {} is standing on the grass"
+ },
+ {
+ "index": 118,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has a collar on",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar on"
+ },
+ {
+ "index": 119,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog has his tongue sticking out",
+ "question": [
+ "is there the dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "the {} has his tongue sticking out"
+ },
+ {
+ "index": 120,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog is waggling his tail",
+ "question": [
+ "is there the dog ?",
+ "is there his tail ?"
+ ],
+ "prompt": "the {} is waggling his tail"
+ },
+ {
+ "index": 121,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "the dog's collar is a chain",
+ "question": [
+ "is there the dog's collar ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {}'s collar is a chain"
+ },
+ {
+ "index": 122,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "dog's tongue is pink",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is pink"
+ },
+ {
+ "index": 123,
+ "image_id": 2405484,
+ "entity": "dog",
+ "caption": "dog is standing in the grass",
+ "question": [
+ "is there dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "{} is standing in the grass"
+ },
+ {
+ "index": 124,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar. ",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar. "
+ },
+ {
+ "index": 125,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "The dog has it's head down. ",
+ "question": [
+ "is there the dog ?",
+ "is there head ?"
+ ],
+ "prompt": "The {} has it's head down. "
+ },
+ {
+ "index": 126,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "the dog has sharp teeth",
+ "question": [
+ "is there the dog ?",
+ "are there sharp teeth ?"
+ ],
+ "prompt": "the {} has sharp teeth"
+ },
+ {
+ "index": 127,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "the dog is on the ground",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is on the ground"
+ },
+ {
+ "index": 128,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "dog is barking to the other dog",
+ "question": [
+ "is there dog ?",
+ "is there the other dog ?"
+ ],
+ "prompt": "{} is barking to the other {}"
+ },
+ {
+ "index": 129,
+ "image_id": 2405469,
+ "entity": "dog",
+ "caption": "Dog ready to bite another dog",
+ "question": [
+ "is there dog ?",
+ "is there another dog ?"
+ ],
+ "prompt": "Dog ready to bite another {}"
+ },
+ {
+ "index": 130,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "The dog is sleeping in a bed. ",
+ "question": [
+ "is there the dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "The {} is sleeping in a bed. "
+ },
+ {
+ "index": 131,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "The dog's nose hangs over the bed's edge.",
+ "question": [
+ "is there the dog's nose ?",
+ "is there the bed's edge ?"
+ ],
+ "prompt": "The {}'s nose hangs over the bed's edge."
+ },
+ {
+ "index": 132,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog is on a bed",
+ "question": [
+ "is there the dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "the {} is on a bed"
+ },
+ {
+ "index": 133,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog sleeps on a tan and white dog bed",
+ "question": [
+ "is there the dog ?",
+ "is there a tan and white dog bed ?"
+ ],
+ "prompt": "the {} sleeps on a tan and white {} bed"
+ },
+ {
+ "index": 134,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "the dog lays curled up on a plush dog bed",
+ "question": [
+ "is there the dog ?",
+ "is there a plush dog bed ?"
+ ],
+ "prompt": "the {} lays curled up on a plush {} bed"
+ },
+ {
+ "index": 135,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "dogs ear on bottom left",
+ "question": [
+ "are there dogs ?",
+ "is there bottom ?"
+ ],
+ "prompt": "{}s ear on bottom left"
+ },
+ {
+ "index": 136,
+ "image_id": 2405369,
+ "entity": "dog",
+ "caption": "White dog curled up sleeping on its bed",
+ "question": [
+ "is there white dog ?",
+ "is there its bed ?"
+ ],
+ "prompt": "White {} curled up sleeping on its bed"
+ },
+ {
+ "index": 137,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a Santa hat on his head",
+ "question": [
+ "is there the dog ?",
+ "is there a santa hat ?",
+ "is there his head ?"
+ ],
+ "prompt": "the {} has a Santa hat on his head"
+ },
+ {
+ "index": 138,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a black eye",
+ "question": [
+ "is there the dog ?",
+ "is there a black eye ?"
+ ],
+ "prompt": "the {} has a black eye"
+ },
+ {
+ "index": 139,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the nose of the dog is black",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the nose of the {} is black"
+ },
+ {
+ "index": 140,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the fur on the dog is black and white ",
+ "question": [
+ "is there the fur ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the fur on the {} is black and white "
+ },
+ {
+ "index": 141,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog has a white chest",
+ "question": [
+ "is there the dog ?",
+ "is there a white chest ?"
+ ],
+ "prompt": "the {} has a white chest"
+ },
+ {
+ "index": 142,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog's ear is black",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is black"
+ },
+ {
+ "index": 143,
+ "image_id": 2405343,
+ "entity": "dog",
+ "caption": "the dog's eye is open",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is open"
+ },
+ {
+ "index": 144,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "a cat sleeps on a dog",
+ "question": [
+ "is there a cat ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a cat sleeps on a {}"
+ },
+ {
+ "index": 145,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "a cat and dog lie on a wooden floor",
+ "question": [
+ "is there a cat ?",
+ "is there dog ?",
+ "is there a wooden floor ?"
+ ],
+ "prompt": "a cat and {} lie on a wooden floor"
+ },
+ {
+ "index": 146,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the cat is laying on the dog",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cat is laying on the {}"
+ },
+ {
+ "index": 147,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog is laying on the floor",
+ "question": [
+ "is there the dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "the {} is laying on the floor"
+ },
+ {
+ "index": 148,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog has something around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there something ?",
+ "is there its neck ?"
+ ],
+ "prompt": "the {} has something around its neck"
+ },
+ {
+ "index": 149,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog's ear is sticking up",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is sticking up"
+ },
+ {
+ "index": 150,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog is wearing a bandana on his neck",
+ "question": [
+ "is there the dog ?",
+ "is there a bandana ?",
+ "is there his neck ?"
+ ],
+ "prompt": "the {} is wearing a bandana on his neck"
+ },
+ {
+ "index": 151,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the kitten is laying on top of the dog",
+ "question": [
+ "is there top ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the kitten is laying on top of the {}"
+ },
+ {
+ "index": 152,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dogs paws are white",
+ "question": [
+ "are there the dogs paws ?"
+ ],
+ "prompt": "the {}s paws are white"
+ },
+ {
+ "index": 153,
+ "image_id": 2404815,
+ "entity": "dog",
+ "caption": "the dog doesnt seem to mind the kitty laying on him",
+ "question": [
+ "is there the dog ?",
+ "is there the kitty ?"
+ ],
+ "prompt": "the {} doesnt seem to mind the kitty laying on him"
+ },
+ {
+ "index": 154,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "A black dog sits on stairs",
+ "question": [
+ "is there a black dog ?",
+ "are there stairs ?"
+ ],
+ "prompt": "A black {} sits on stairs"
+ },
+ {
+ "index": 155,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dog is wearing a red bow tie around its neck",
+ "question": [
+ "is there the dog ?",
+ "is there a red bow tie ?",
+ "is there its neck ?"
+ ],
+ "prompt": "The {} is wearing a red bow tie around its neck"
+ },
+ {
+ "index": 156,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dog has its head cocked to the side",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there the side ?"
+ ],
+ "prompt": "The {} has its head cocked to the side"
+ },
+ {
+ "index": 157,
+ "image_id": 2404707,
+ "entity": "dog",
+ "caption": "The dogs left hind leg is hanging off the stair",
+ "question": [
+ "are there the dogs ?",
+ "is there hind leg ?",
+ "is there the stair ?"
+ ],
+ "prompt": "The {}s left hind leg is hanging off the stair"
+ },
+ {
+ "index": 158,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "a woman is petting the dog",
+ "question": [
+ "is there a woman ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a woman is petting the {}"
+ },
+ {
+ "index": 159,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog wears a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} wears a red collar"
+ },
+ {
+ "index": 160,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "person petting dog is wearing red scarf",
+ "question": [
+ "is there person ?",
+ "is there dog ?",
+ "is there red scarf ?"
+ ],
+ "prompt": "person petting {} is wearing red scarf"
+ },
+ {
+ "index": 161,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "person petting dog is wearing a black dress",
+ "question": [
+ "is there person ?",
+ "is there dog ?",
+ "is there a black dress ?"
+ ],
+ "prompt": "person petting {} is wearing a black dress"
+ },
+ {
+ "index": 162,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog is wearing a red and white scarf",
+ "question": [
+ "is there the dog ?",
+ "is there a red and white scarf ?"
+ ],
+ "prompt": "the {} is wearing a red and white scarf"
+ },
+ {
+ "index": 163,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog looks up at the woman",
+ "question": [
+ "is there the dog ?",
+ "is there the woman ?"
+ ],
+ "prompt": "the {} looks up at the woman"
+ },
+ {
+ "index": 164,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the dog is wearing a red halter style lead",
+ "question": [
+ "is there the dog ?",
+ "is there a red halter style ?"
+ ],
+ "prompt": "the {} is wearing a red halter style lead"
+ },
+ {
+ "index": 165,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "a woman reaches down to a dog",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a woman reaches down to a {}"
+ },
+ {
+ "index": 166,
+ "image_id": 2404163,
+ "entity": "dog",
+ "caption": "the woman in the red shoes pets the dog",
+ "question": [
+ "is there the woman ?",
+ "are there the red shoes ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the woman in the red shoes pets the {}"
+ },
+ {
+ "index": 167,
+ "image_id": 2404075,
+ "entity": "dog",
+ "caption": "The dog is on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is on a blanket"
+ },
+ {
+ "index": 168,
+ "image_id": 2403923,
+ "entity": "dog",
+ "caption": "the dog has a green collar",
+ "question": [
+ "is there the dog ?",
+ "is there a green collar ?"
+ ],
+ "prompt": "the {} has a green collar"
+ },
+ {
+ "index": 169,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This dog has his eyes closed",
+ "question": [
+ "is there this dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "This {} has his eyes closed"
+ },
+ {
+ "index": 170,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This snauser dog has long ears",
+ "question": [
+ "is there this snauser dog ?",
+ "are there long ears ?"
+ ],
+ "prompt": "This snauser {} has long ears"
+ },
+ {
+ "index": 171,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "This dog has a pug nose",
+ "question": [
+ "is there this dog ?",
+ "is there a pug nose ?"
+ ],
+ "prompt": "This {} has a pug nose"
+ },
+ {
+ "index": 172,
+ "image_id": 2403914,
+ "entity": "dog",
+ "caption": "A dog's ear peeking out from the other side of its head",
+ "question": [
+ "is there a dog's ear ?",
+ "is there the other side ?",
+ "is there its head ?"
+ ],
+ "prompt": "A {}'s ear peeking out from the other side of its head"
+ },
+ {
+ "index": 173,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The dog is laying on a couch.",
+ "question": [
+ "is there the dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "The {} is laying on a couch."
+ },
+ {
+ "index": 174,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "black dog with eyes open",
+ "question": [
+ "is there black dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "black {} with eyes open"
+ },
+ {
+ "index": 175,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The dog has brown eyes",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "The {} has brown eyes"
+ },
+ {
+ "index": 176,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "The black dog likes laying on the couch",
+ "question": [
+ "is there the black dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The black {} likes laying on the couch"
+ },
+ {
+ "index": 177,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "the dog is laying on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is laying on the couch"
+ },
+ {
+ "index": 178,
+ "image_id": 2403430,
+ "entity": "dog",
+ "caption": "the dog's eye is brown",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is brown"
+ },
+ {
+ "index": 179,
+ "image_id": 2403359,
+ "entity": "dog",
+ "caption": "a dog and a horse share an Eskimo kiss",
+ "question": [
+ "is there a dog ?",
+ "is there a horse share ?"
+ ],
+ "prompt": "a {} and a horse share an Eskimo kiss"
+ },
+ {
+ "index": 180,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "large brown dog leashed to chair",
+ "question": [
+ "is there large brown dog ?",
+ "is there chair ?"
+ ],
+ "prompt": "large brown {} leashed to chair"
+ },
+ {
+ "index": 181,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "the dog is on deck",
+ "question": [
+ "is there the dog ?",
+ "is there deck ?"
+ ],
+ "prompt": "the {} is on deck"
+ },
+ {
+ "index": 182,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "the leash is on dog",
+ "question": [
+ "is there the leash ?",
+ "is there dog ?"
+ ],
+ "prompt": "the leash is on {}"
+ },
+ {
+ "index": 183,
+ "image_id": 2403245,
+ "entity": "dog",
+ "caption": "Leash tied on golden dog",
+ "question": [
+ "is there golden dog ?"
+ ],
+ "prompt": "Leash tied on golden {}"
+ },
+ {
+ "index": 184,
+ "image_id": 2402933,
+ "entity": "dog",
+ "caption": "the doggy has a party hat on",
+ "question": [
+ "is there the doggy ?",
+ "is there a party hat ?"
+ ],
+ "prompt": "the {}gy has a party hat on"
+ },
+ {
+ "index": 185,
+ "image_id": 2402933,
+ "entity": "dog",
+ "caption": "a stuffed animal is next to the dog",
+ "question": [
+ "is there a stuffed animal ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a stuffed animal is next to the {}"
+ },
+ {
+ "index": 186,
+ "image_id": 2402907,
+ "entity": "dog",
+ "caption": "The dog is standing on carpet",
+ "question": [
+ "is there the dog ?",
+ "is there carpet ?"
+ ],
+ "prompt": "The {} is standing on carpet"
+ },
+ {
+ "index": 187,
+ "image_id": 2402907,
+ "entity": "dog",
+ "caption": "The dog has a collar and tags",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?",
+ "are there tags ?"
+ ],
+ "prompt": "The {} has a collar and tags"
+ },
+ {
+ "index": 188,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "a dog cover the book",
+ "question": [
+ "is there a dog ?",
+ "is there the book ?"
+ ],
+ "prompt": "a {} cover the book"
+ },
+ {
+ "index": 189,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "the dog is looking to the left",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is looking to the left"
+ },
+ {
+ "index": 190,
+ "image_id": 2402906,
+ "entity": "dog",
+ "caption": "the dog has black eyes",
+ "question": [
+ "is there the dog ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "the {} has black eyes"
+ },
+ {
+ "index": 191,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's eyes are brown.",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are brown."
+ },
+ {
+ "index": 192,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's fur is brown and black.",
+ "question": [
+ "is there the dog's fur ?"
+ ],
+ "prompt": "The {}'s fur is brown and black."
+ },
+ {
+ "index": 193,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's tongue is pink.",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "The {}'s tongue is pink."
+ },
+ {
+ "index": 194,
+ "image_id": 2402433,
+ "entity": "dog",
+ "caption": "The dog's ears are down.",
+ "question": [
+ "are there the dog's ears ?"
+ ],
+ "prompt": "The {}'s ears are down."
+ },
+ {
+ "index": 195,
+ "image_id": 2402363,
+ "entity": "dog",
+ "caption": "the dog and the cat are on the pillow together",
+ "question": [
+ "is there the dog ?",
+ "is there the cat ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "the {} and the cat are on the pillow together"
+ },
+ {
+ "index": 196,
+ "image_id": 2402363,
+ "entity": "dog",
+ "caption": "cat and dog sleeping on pet bed together",
+ "question": [
+ "is there cat ?",
+ "is there dog ?",
+ "is there pet bed ?"
+ ],
+ "prompt": "cat and {} sleeping on pet bed together"
+ },
+ {
+ "index": 197,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in his mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in his mouth."
+ },
+ {
+ "index": 198,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "The dog has a white bushy tail.",
+ "question": [
+ "is there the dog ?",
+ "is there a white bushy tail ?"
+ ],
+ "prompt": "The {} has a white bushy tail."
+ },
+ {
+ "index": 199,
+ "image_id": 2402351,
+ "entity": "dog",
+ "caption": "A flower pot is on the side of the dog.",
+ "question": [
+ "is there a flower pot ?",
+ "is there the side ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A flower pot is on the side of the {}."
+ },
+ {
+ "index": 200,
+ "image_id": 2402059,
+ "entity": "dog",
+ "caption": "the dog has a human's tie around it's neck",
+ "question": [
+ "is there the dog ?",
+ "is there a human's tie ?",
+ "is there neck ?"
+ ],
+ "prompt": "the {} has a human's tie around it's neck"
+ },
+ {
+ "index": 201,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The head of the dog sitting down.",
+ "question": [
+ "is there the head ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The head of the {} sitting down."
+ },
+ {
+ "index": 202,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "Soft brown chair the dog sits on",
+ "question": [
+ "is there soft brown chair ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Soft brown chair the {} sits on"
+ },
+ {
+ "index": 203,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "dog sittin gin brown chiar",
+ "question": [
+ "is there dog ?",
+ "is there gin brown chiar ?"
+ ],
+ "prompt": "{} sittin gin brown chiar"
+ },
+ {
+ "index": 204,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The dog is black and brown.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is black and brown."
+ },
+ {
+ "index": 205,
+ "image_id": 2401271,
+ "entity": "dog",
+ "caption": "The dog's nose is black.",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black."
+ },
+ {
+ "index": 206,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "the dog has ears",
+ "question": [
+ "is there the dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "the {} has ears"
+ },
+ {
+ "index": 207,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "the dog is wearing strap",
+ "question": [
+ "is there the dog ?",
+ "is there strap ?"
+ ],
+ "prompt": "the {} is wearing strap"
+ },
+ {
+ "index": 208,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "dog is wearing sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} is wearing sweater"
+ },
+ {
+ "index": 209,
+ "image_id": 2401024,
+ "entity": "dog",
+ "caption": "The sweater the dog is wearing",
+ "question": [
+ "is there the sweater ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The sweater the {} is wearing"
+ },
+ {
+ "index": 210,
+ "image_id": 2400958,
+ "entity": "dog",
+ "caption": "the man behind the dogs has blue jeans on",
+ "question": [
+ "is there the man ?",
+ "are there the dogs ?",
+ "are there blue jeans ?"
+ ],
+ "prompt": "the man behind the {}s has blue jeans on"
+ },
+ {
+ "index": 211,
+ "image_id": 2400958,
+ "entity": "dog",
+ "caption": "dog with tongue hanging out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} with tongue hanging out"
+ },
+ {
+ "index": 212,
+ "image_id": 2400922,
+ "entity": "dog",
+ "caption": "The dog is staring out the window.",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is staring out the window."
+ },
+ {
+ "index": 213,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "The dog is on a blanket.",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is on a blanket."
+ },
+ {
+ "index": 214,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "the dogs nose is pink.",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is pink."
+ },
+ {
+ "index": 215,
+ "image_id": 2400865,
+ "entity": "dog",
+ "caption": "the dogs tongue is pink.",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "the {}s tongue is pink."
+ },
+ {
+ "index": 216,
+ "image_id": 2400378,
+ "entity": "dog",
+ "caption": "this is the dog's head",
+ "question": [
+ "is there the dog's head ?"
+ ],
+ "prompt": "this is the {}'s head"
+ },
+ {
+ "index": 217,
+ "image_id": 2400368,
+ "entity": "dog",
+ "caption": "a dogs left paw",
+ "question": [
+ "are there a dogs ?",
+ "is there paw ?"
+ ],
+ "prompt": "a {}s left paw"
+ },
+ {
+ "index": 218,
+ "image_id": 2399686,
+ "entity": "dog",
+ "caption": "a dog with its ears perked up",
+ "question": [
+ "is there a dog ?",
+ "are there its ears ?"
+ ],
+ "prompt": "a {} with its ears perked up"
+ },
+ {
+ "index": 219,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs left eye",
+ "question": [
+ "are there the black dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the black {}s left eye"
+ },
+ {
+ "index": 220,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs right eye",
+ "question": [
+ "are there the black dogs ?"
+ ],
+ "prompt": "the black {}s right eye"
+ },
+ {
+ "index": 221,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "piece of wood dog is lying on",
+ "question": [
+ "is there piece ?",
+ "is there wood dog ?"
+ ],
+ "prompt": "piece of wood {} is lying on"
+ },
+ {
+ "index": 222,
+ "image_id": 2399125,
+ "entity": "dog",
+ "caption": "the black dogs left ear",
+ "question": [
+ "are there the black dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "the black {}s left ear"
+ },
+ {
+ "index": 223,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "she is holding a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "she is holding a {}"
+ },
+ {
+ "index": 224,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "The girl's hand that is resting on the dog.",
+ "question": [
+ "is there the girl's hand ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The girl's hand that is resting on the {}."
+ },
+ {
+ "index": 225,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "Girl's hand is on the dog.",
+ "question": [
+ "is there girl's hand ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Girl's hand is on the {}."
+ },
+ {
+ "index": 226,
+ "image_id": 2399037,
+ "entity": "dog",
+ "caption": "this is a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "this is a {}"
+ },
+ {
+ "index": 227,
+ "image_id": 2397742,
+ "entity": "dog",
+ "caption": "a green rug the dog is laying on",
+ "question": [
+ "is there a green rug ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a green rug the {} is laying on"
+ },
+ {
+ "index": 228,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog is in front of a motorcycle.",
+ "question": [
+ "is there a dog ?",
+ "is there front ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "A {} is in front of a motorcycle."
+ },
+ {
+ "index": 229,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog has black and white spots.",
+ "question": [
+ "is there a dog ?",
+ "are there black and white spots ?"
+ ],
+ "prompt": "A {} has black and white spots."
+ },
+ {
+ "index": 230,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "A dog is behind another dog.",
+ "question": [
+ "is there a dog ?",
+ "is there another dog ?"
+ ],
+ "prompt": "A {} is behind another {}."
+ },
+ {
+ "index": 231,
+ "image_id": 2397739,
+ "entity": "dog",
+ "caption": "motorbike parked behind dogs",
+ "question": [
+ "is there motorbike ?",
+ "are there dogs ?"
+ ],
+ "prompt": "motorbike parked behind {}s"
+ },
+ {
+ "index": 232,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the red collar the dog is wearing",
+ "question": [
+ "is there the red collar ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the red collar the {} is wearing"
+ },
+ {
+ "index": 233,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the green grass the dog is standing on",
+ "question": [
+ "is there the green grass ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the green grass the {} is standing on"
+ },
+ {
+ "index": 234,
+ "image_id": 2397731,
+ "entity": "dog",
+ "caption": "the dogs colored leash",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s colored leash"
+ },
+ {
+ "index": 235,
+ "image_id": 2397368,
+ "entity": "dog",
+ "caption": "the dog is holding something on its mouth",
+ "question": [
+ "is there the dog ?",
+ "is there something ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} is holding something on its mouth"
+ },
+ {
+ "index": 236,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "dog has big brown eyes",
+ "question": [
+ "is there dog ?",
+ "are there big brown eyes ?"
+ ],
+ "prompt": "{} has big brown eyes"
+ },
+ {
+ "index": 237,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "dog has small black nose",
+ "question": [
+ "is there dog ?",
+ "is there small black nose ?"
+ ],
+ "prompt": "{} has small black nose"
+ },
+ {
+ "index": 238,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "collar on dog is black",
+ "question": [
+ "is there collar ?",
+ "is there dog ?"
+ ],
+ "prompt": "collar on {} is black"
+ },
+ {
+ "index": 239,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "the carpet the dog is standing on",
+ "question": [
+ "is there the carpet ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the carpet the {} is standing on"
+ },
+ {
+ "index": 240,
+ "image_id": 2397327,
+ "entity": "dog",
+ "caption": "the dogs tail",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s tail"
+ },
+ {
+ "index": 241,
+ "image_id": 2397165,
+ "entity": "dog",
+ "caption": "a dogs left paw.",
+ "question": [
+ "are there a dogs ?",
+ "is there paw ?"
+ ],
+ "prompt": "a {}s left paw."
+ },
+ {
+ "index": 242,
+ "image_id": 2396130,
+ "entity": "dog",
+ "caption": "A cushion a dog is lying on. ",
+ "question": [
+ "is there a cushion ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A cushion a {} is lying on. "
+ },
+ {
+ "index": 243,
+ "image_id": 2396130,
+ "entity": "dog",
+ "caption": "The dog is laying on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is laying on the couch."
+ },
+ {
+ "index": 244,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "dog is wearing a tiara",
+ "question": [
+ "is there dog ?",
+ "is there a tiara ?"
+ ],
+ "prompt": "{} is wearing a tiara"
+ },
+ {
+ "index": 245,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "the dog is wearing a tutu",
+ "question": [
+ "is there the dog ?",
+ "is there a tutu ?"
+ ],
+ "prompt": "the {} is wearing a tutu"
+ },
+ {
+ "index": 246,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "bulldog has big brown eye",
+ "question": [
+ "is there big brown eye ?"
+ ],
+ "prompt": "bull{} has big brown eye"
+ },
+ {
+ "index": 247,
+ "image_id": 2395670,
+ "entity": "dog",
+ "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest",
+ "question": [
+ "is there green ribbon ?",
+ "is there orange collar+ribbed orange vest ?"
+ ],
+ "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"
+ },
+ {
+ "index": 248,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "The dog is on top of the pillow",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "The {} is on top of the pillow"
+ },
+ {
+ "index": 249,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "The dog is hugging the stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there the stuffed animal ?"
+ ],
+ "prompt": "The {} is hugging the stuffed animal"
+ },
+ {
+ "index": 250,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "stuff is on the floor behind the dog",
+ "question": [
+ "is there stuff ?",
+ "is there the floor ?",
+ "is there the dog ?"
+ ],
+ "prompt": "stuff is on the floor behind the {}"
+ },
+ {
+ "index": 251,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "a white pillow is underneath the dog",
+ "question": [
+ "is there a white pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a white pillow is underneath the {}"
+ },
+ {
+ "index": 252,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "a black speaker is behind the dog",
+ "question": [
+ "is there a black speaker ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a black speaker is behind the {}"
+ },
+ {
+ "index": 253,
+ "image_id": 2395473,
+ "entity": "dog",
+ "caption": "old looking curtains is above the dog's head",
+ "question": [
+ "are there old looking curtains ?",
+ "is there the dog's head ?"
+ ],
+ "prompt": "old looking curtains is above the {}'s head"
+ },
+ {
+ "index": 254,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "grey run the dog is standing on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "grey run the {} is standing on"
+ },
+ {
+ "index": 255,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "cat and dog playing with each other ",
+ "question": [
+ "is there cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "cat and {} playing with each other "
+ },
+ {
+ "index": 256,
+ "image_id": 2395369,
+ "entity": "dog",
+ "caption": "head of dog is black",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is black"
+ },
+ {
+ "index": 257,
+ "image_id": 2394681,
+ "entity": "dog",
+ "caption": "The dog's tail is visible.",
+ "question": [
+ "is there the dog's tail ?"
+ ],
+ "prompt": "The {}'s tail is visible."
+ },
+ {
+ "index": 258,
+ "image_id": 2394681,
+ "entity": "dog",
+ "caption": "the dog has tail",
+ "question": [
+ "is there the dog ?",
+ "is there tail ?"
+ ],
+ "prompt": "the {} has tail"
+ },
+ {
+ "index": 259,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "the dog is wearing a hat",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "the {} is wearing a hat"
+ },
+ {
+ "index": 260,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "dog is wearing a fedora",
+ "question": [
+ "is there dog ?",
+ "is there a fedora ?"
+ ],
+ "prompt": "{} is wearing a fedora"
+ },
+ {
+ "index": 261,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "The dog has a toy.",
+ "question": [
+ "is there the dog ?",
+ "is there a toy ?"
+ ],
+ "prompt": "The {} has a toy."
+ },
+ {
+ "index": 262,
+ "image_id": 2394499,
+ "entity": "dog",
+ "caption": "The dog is laying on a pillow.",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "The {} is laying on a pillow."
+ },
+ {
+ "index": 263,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog is black and white.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is black and white."
+ },
+ {
+ "index": 264,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has white body with black spots",
+ "question": [
+ "is there dog ?",
+ "is there white body ?",
+ "are there black spots ?"
+ ],
+ "prompt": "{} has white body with black spots"
+ },
+ {
+ "index": 265,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has cast a shadow",
+ "question": [
+ "is there dog ?",
+ "is there a shadow ?"
+ ],
+ "prompt": "{} has cast a shadow"
+ },
+ {
+ "index": 266,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has big fluffy tail",
+ "question": [
+ "is there dog ?",
+ "is there big fluffy tail ?"
+ ],
+ "prompt": "{} has big fluffy tail"
+ },
+ {
+ "index": 267,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has tags on collar",
+ "question": [
+ "is there dog ?",
+ "are there tags ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} has tags on collar"
+ },
+ {
+ "index": 268,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog is wearing a white collar",
+ "question": [
+ "is there dog ?",
+ "is there a white collar ?"
+ ],
+ "prompt": "{} is wearing a white collar"
+ },
+ {
+ "index": 269,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog is black and white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is black and white"
+ },
+ {
+ "index": 270,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has frilly tail",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has frilly tail"
+ },
+ {
+ "index": 271,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog has brown spots",
+ "question": [
+ "is there dog ?",
+ "are there brown spots ?"
+ ],
+ "prompt": "{} has brown spots"
+ },
+ {
+ "index": 272,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "dog wears white collar",
+ "question": [
+ "is there dog ?",
+ "is there white collar ?"
+ ],
+ "prompt": "{} wears white collar"
+ },
+ {
+ "index": 273,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "A dog is on the sand.",
+ "question": [
+ "is there a dog ?",
+ "is there the sand ?"
+ ],
+ "prompt": "A {} is on the sand."
+ },
+ {
+ "index": 274,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog is balck and white.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is balck and white."
+ },
+ {
+ "index": 275,
+ "image_id": 2394372,
+ "entity": "dog",
+ "caption": "The dog has a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} has a collar."
+ },
+ {
+ "index": 276,
+ "image_id": 2394065,
+ "entity": "dog",
+ "caption": "The dog is licking the water bottle.",
+ "question": [
+ "is there the dog ?",
+ "is there the water bottle ?"
+ ],
+ "prompt": "The {} is licking the water bottle."
+ },
+ {
+ "index": 277,
+ "image_id": 2394065,
+ "entity": "dog",
+ "caption": "The dog is standing next to the person.",
+ "question": [
+ "is there the dog ?",
+ "is there the person ?"
+ ],
+ "prompt": "The {} is standing next to the person."
+ },
+ {
+ "index": 278,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "Aviator glasses on dogs face",
+ "question": [
+ "are there aviator glasses ?",
+ "are there dogs ?"
+ ],
+ "prompt": "Aviator glasses on {}s face"
+ },
+ {
+ "index": 279,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has glasses on",
+ "question": [
+ "is there the dog ?",
+ "are there glasses ?"
+ ],
+ "prompt": "The {} has glasses on"
+ },
+ {
+ "index": 280,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has a hat on",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "The {} has a hat on"
+ },
+ {
+ "index": 281,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog has on a red bib",
+ "question": [
+ "is there the dog ?",
+ "is there a red bib ?"
+ ],
+ "prompt": "The {} has on a red bib"
+ },
+ {
+ "index": 282,
+ "image_id": 2393921,
+ "entity": "dog",
+ "caption": "The dog is sitting in a seat",
+ "question": [
+ "is there the dog ?",
+ "is there a seat ?"
+ ],
+ "prompt": "The {} is sitting in a seat"
+ },
+ {
+ "index": 283,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "this is the dog's nose",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "this is the {}'s nose"
+ },
+ {
+ "index": 284,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "these are the dog's eyes",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "these are the {}'s eyes"
+ },
+ {
+ "index": 285,
+ "image_id": 2393366,
+ "entity": "dog",
+ "caption": "the dog's eye is orange",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is orange"
+ },
+ {
+ "index": 286,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "a dog with his eyes closed",
+ "question": [
+ "is there a dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "a {} with his eyes closed"
+ },
+ {
+ "index": 287,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog is on a boat",
+ "question": [
+ "is there dog ?",
+ "is there a boat ?"
+ ],
+ "prompt": "{} is on a boat"
+ },
+ {
+ "index": 288,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has a red collar on",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "{} has a red collar on"
+ },
+ {
+ "index": 289,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has a name tag",
+ "question": [
+ "is there dog ?",
+ "is there a name tag ?"
+ ],
+ "prompt": "{} has a name tag"
+ },
+ {
+ "index": 290,
+ "image_id": 2392895,
+ "entity": "dog",
+ "caption": "dog has partially white fur",
+ "question": [
+ "is there dog ?",
+ "is there partially white fur ?"
+ ],
+ "prompt": "{} has partially white fur"
+ },
+ {
+ "index": 291,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "a dog is on the grass",
+ "question": [
+ "is there a dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "a {} is on the grass"
+ },
+ {
+ "index": 292,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog is drinking water",
+ "question": [
+ "is there dog ?",
+ "is there water ?"
+ ],
+ "prompt": "{} is drinking water"
+ },
+ {
+ "index": 293,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog is drinking water from a bottle",
+ "question": [
+ "is there dog ?",
+ "is there water ?",
+ "is there a bottle ?"
+ ],
+ "prompt": "{} is drinking water from a bottle"
+ },
+ {
+ "index": 294,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "water is dripping from the dogs face",
+ "question": [
+ "is there water ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "water is dripping from the {}s face"
+ },
+ {
+ "index": 295,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "thirsty dog is taking a drink",
+ "question": [
+ "is there thirsty dog ?",
+ "is there a drink ?"
+ ],
+ "prompt": "thirsty {} is taking a drink"
+ },
+ {
+ "index": 296,
+ "image_id": 2392690,
+ "entity": "dog",
+ "caption": "dog has drunk half the water bottle",
+ "question": [
+ "is there dog ?",
+ "is there half the water bottle ?"
+ ],
+ "prompt": "{} has drunk half the water bottle"
+ },
+ {
+ "index": 297,
+ "image_id": 2392606,
+ "entity": "dog",
+ "caption": "The two dogs are waring party hats.",
+ "question": [
+ "are there the two dogs ?",
+ "are there party hats ?"
+ ],
+ "prompt": "The two {}s are waring party hats."
+ },
+ {
+ "index": 298,
+ "image_id": 2392334,
+ "entity": "dog",
+ "caption": "The dog has long hair.",
+ "question": [
+ "is there the dog ?",
+ "is there long hair ?"
+ ],
+ "prompt": "The {} has long hair."
+ },
+ {
+ "index": 299,
+ "image_id": 2392334,
+ "entity": "dog",
+ "caption": "white dog wagging its tail",
+ "question": [
+ "is there white dog ?",
+ "is there its tail ?"
+ ],
+ "prompt": "white {} wagging its tail"
+ },
+ {
+ "index": 300,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "ears of dog are long",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are long"
+ },
+ {
+ "index": 301,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "tail of brown dog is furry",
+ "question": [
+ "is there tail ?",
+ "is there brown dog ?"
+ ],
+ "prompt": "tail of brown {} is furry"
+ },
+ {
+ "index": 302,
+ "image_id": 2392033,
+ "entity": "dog",
+ "caption": "nose of dog is black",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is black"
+ },
+ {
+ "index": 303,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog wears attentive expression",
+ "question": [
+ "is there dog ?",
+ "is there attentive expression ?"
+ ],
+ "prompt": "{} wears attentive expression"
+ },
+ {
+ "index": 304,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog has soulful eye, folded down ear",
+ "question": [
+ "is there dog ?",
+ "is there soulful eye ?",
+ "is there ear ?"
+ ],
+ "prompt": "{} has soulful eye, folded down ear"
+ },
+ {
+ "index": 305,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "dog is wearing dog collar",
+ "question": [
+ "is there dog ?",
+ "is there dog collar ?"
+ ],
+ "prompt": "{} is wearing {} collar"
+ },
+ {
+ "index": 306,
+ "image_id": 2391972,
+ "entity": "dog",
+ "caption": "the dog collar is black",
+ "question": [
+ "is there the dog collar ?"
+ ],
+ "prompt": "the {} collar is black"
+ },
+ {
+ "index": 307,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "dog has black leash",
+ "question": [
+ "is there dog ?",
+ "is there black leash ?"
+ ],
+ "prompt": "{} has black leash"
+ },
+ {
+ "index": 308,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "dog has black fur",
+ "question": [
+ "is there dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "{} has black fur"
+ },
+ {
+ "index": 309,
+ "image_id": 2390997,
+ "entity": "dog",
+ "caption": "this is a dog collar",
+ "question": [
+ "is there a dog collar ?"
+ ],
+ "prompt": "this is a {} collar"
+ },
+ {
+ "index": 310,
+ "image_id": 2390915,
+ "entity": "dog",
+ "caption": "dog has brown eyes",
+ "question": [
+ "is there dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "{} has brown eyes"
+ },
+ {
+ "index": 311,
+ "image_id": 2390915,
+ "entity": "dog",
+ "caption": "these are the dog's paws",
+ "question": [
+ "are there the dog's paws ?"
+ ],
+ "prompt": "these are the {}'s paws"
+ },
+ {
+ "index": 312,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "a dog is lying on his side",
+ "question": [
+ "is there a dog ?",
+ "is there his side ?"
+ ],
+ "prompt": "a {} is lying on his side"
+ },
+ {
+ "index": 313,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "ear of dog is long",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is long"
+ },
+ {
+ "index": 314,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "The dog's eyes are wide open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are wide open"
+ },
+ {
+ "index": 315,
+ "image_id": 2390745,
+ "entity": "dog",
+ "caption": "The dog is relaxing",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is relaxing"
+ },
+ {
+ "index": 316,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "The dog has nose",
+ "question": [
+ "is there the dog ?",
+ "is there nose ?"
+ ],
+ "prompt": "The {} has nose"
+ },
+ {
+ "index": 317,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "the sling is on dog",
+ "question": [
+ "is there the sling ?",
+ "is there dog ?"
+ ],
+ "prompt": "the sling is on {}"
+ },
+ {
+ "index": 318,
+ "image_id": 2390588,
+ "entity": "dog",
+ "caption": "the eyes are on the dog",
+ "question": [
+ "are there the eyes ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the eyes are on the {}"
+ },
+ {
+ "index": 319,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog's tongue hanging out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue hanging out"
+ },
+ {
+ "index": 320,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog closes his eyes",
+ "question": [
+ "is there the dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "The {} closes his eyes"
+ },
+ {
+ "index": 321,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dogs fur is wet",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "The {}s fur is wet"
+ },
+ {
+ "index": 322,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog has collar on",
+ "question": [
+ "is there the dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "The {} has collar on"
+ },
+ {
+ "index": 323,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dog has a black nose",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose"
+ },
+ {
+ "index": 324,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "The dogs eye is closed",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is closed"
+ },
+ {
+ "index": 325,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog has a large pink tounge",
+ "question": [
+ "is there dog ?",
+ "is there a large pink tounge ?"
+ ],
+ "prompt": "{} has a large pink tounge"
+ },
+ {
+ "index": 326,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "shallow water with dog paws submerged",
+ "question": [
+ "is there shallow water ?",
+ "are there dog paws ?"
+ ],
+ "prompt": "shallow water with {} paws submerged"
+ },
+ {
+ "index": 327,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "tan dog standing in the ocean",
+ "question": [
+ "is there the ocean ?"
+ ],
+ "prompt": "tan {} standing in the ocean"
+ },
+ {
+ "index": 328,
+ "image_id": 2390301,
+ "entity": "dog",
+ "caption": "dog with his tongue hanging out",
+ "question": [
+ "is there dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "{} with his tongue hanging out"
+ },
+ {
+ "index": 329,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "Th enose od the dog.",
+ "question": [
+ "is there th enose ?",
+ "is there od the dog ?"
+ ],
+ "prompt": "Th enose od the {}."
+ },
+ {
+ "index": 330,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dog rests his head.",
+ "question": [
+ "is there the dog ?",
+ "is there his head ?"
+ ],
+ "prompt": "The {} rests his head."
+ },
+ {
+ "index": 331,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dogs ear",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear"
+ },
+ {
+ "index": 332,
+ "image_id": 2390135,
+ "entity": "dog",
+ "caption": "The dogs left eye",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye"
+ },
+ {
+ "index": 333,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "long black dog tail curved up",
+ "question": [
+ "is there long black dog tail ?"
+ ],
+ "prompt": "long black {} tail curved up"
+ },
+ {
+ "index": 334,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has a white spot on it's leg",
+ "question": [
+ "is there the dog ?",
+ "is there a white spot ?",
+ "is there it's leg ?"
+ ],
+ "prompt": "the {} has a white spot on it's leg"
+ },
+ {
+ "index": 335,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has a long tail",
+ "question": [
+ "is there the dog ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "the {} has a long tail"
+ },
+ {
+ "index": 336,
+ "image_id": 2390107,
+ "entity": "dog",
+ "caption": "the dog has black paw pads",
+ "question": [
+ "is there the dog ?",
+ "are there black paw pads ?"
+ ],
+ "prompt": "the {} has black paw pads"
+ },
+ {
+ "index": 337,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "dog ears are floppy",
+ "question": [
+ "are there dog ears ?"
+ ],
+ "prompt": "{} ears are floppy"
+ },
+ {
+ "index": 338,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "dog eyes are cute",
+ "question": [
+ "are there dog eyes ?"
+ ],
+ "prompt": "{} eyes are cute"
+ },
+ {
+ "index": 339,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "the dog's eyes are closed",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are closed"
+ },
+ {
+ "index": 340,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "The dog has tags on ",
+ "question": [
+ "is there the dog ?",
+ "are there tags ?"
+ ],
+ "prompt": "The {} has tags on "
+ },
+ {
+ "index": 341,
+ "image_id": 2389769,
+ "entity": "dog",
+ "caption": "Mans toes beside dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "Mans toes beside {}"
+ },
+ {
+ "index": 342,
+ "image_id": 2389636,
+ "entity": "dog",
+ "caption": "the dog has nose",
+ "question": [
+ "is there the dog ?",
+ "is there nose ?"
+ ],
+ "prompt": "the {} has nose"
+ },
+ {
+ "index": 343,
+ "image_id": 2388972,
+ "entity": "dog",
+ "caption": "the grass is below the dog",
+ "question": [
+ "is there the grass ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the grass is below the {}"
+ },
+ {
+ "index": 344,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "white dog is standing looking out on the yard",
+ "question": [
+ "is there white dog ?",
+ "is there the yard ?"
+ ],
+ "prompt": "white {} is standing looking out on the yard"
+ },
+ {
+ "index": 345,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog is mostly white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is mostly white"
+ },
+ {
+ "index": 346,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has brown ears",
+ "question": [
+ "is there dog ?",
+ "are there brown ears ?"
+ ],
+ "prompt": "{} has brown ears"
+ },
+ {
+ "index": 347,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has black collar",
+ "question": [
+ "is there dog ?",
+ "is there black collar ?"
+ ],
+ "prompt": "{} has black collar"
+ },
+ {
+ "index": 348,
+ "image_id": 2388671,
+ "entity": "dog",
+ "caption": "dog has white legs",
+ "question": [
+ "is there dog ?",
+ "are there white legs ?"
+ ],
+ "prompt": "{} has white legs"
+ },
+ {
+ "index": 349,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The dog has its head on a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "The {} has its head on a stuffed animal"
+ },
+ {
+ "index": 350,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The gate is behind the dog",
+ "question": [
+ "is there the gate ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The gate is behind the {}"
+ },
+ {
+ "index": 351,
+ "image_id": 2388320,
+ "entity": "dog",
+ "caption": "The dog is lying on wood",
+ "question": [
+ "is there the dog ?",
+ "is there wood ?"
+ ],
+ "prompt": "The {} is lying on wood"
+ },
+ {
+ "index": 352,
+ "image_id": 2388066,
+ "entity": "dog",
+ "caption": "dog jumping for frisbee",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?"
+ ],
+ "prompt": "{} jumping for frisbee"
+ },
+ {
+ "index": 353,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "all are secondary to small dog chewing large toothbrush",
+ "question": [
+ "is there small dog ?",
+ "is there large toothbrush ?"
+ ],
+ "prompt": "all are secondary to small {} chewing large toothbrush"
+ },
+ {
+ "index": 354,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "a dog is lying on a bed",
+ "question": [
+ "is there a dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "a {} is lying on a bed"
+ },
+ {
+ "index": 355,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "body of dog is brown",
+ "question": [
+ "is there body ?",
+ "is there dog ?"
+ ],
+ "prompt": "body of {} is brown"
+ },
+ {
+ "index": 356,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "head of dog is brown and white",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is brown and white"
+ },
+ {
+ "index": 357,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "ears of dog are brown",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are brown"
+ },
+ {
+ "index": 358,
+ "image_id": 2388048,
+ "entity": "dog",
+ "caption": "dog has a toothbrush in his mouth",
+ "question": [
+ "is there dog ?",
+ "is there a toothbrush ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has a toothbrush in his mouth"
+ },
+ {
+ "index": 359,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "tail of dog is long and curly",
+ "question": [
+ "is there tail ?",
+ "is there dog ?"
+ ],
+ "prompt": "tail of {} is long and curly"
+ },
+ {
+ "index": 360,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "front legs of dog are long",
+ "question": [
+ "are there front legs ?",
+ "is there dog ?"
+ ],
+ "prompt": "front legs of {} are long"
+ },
+ {
+ "index": 361,
+ "image_id": 2388004,
+ "entity": "dog",
+ "caption": "The dog has a white spot.",
+ "question": [
+ "is there the dog ?",
+ "is there a white spot ?"
+ ],
+ "prompt": "The {} has a white spot."
+ },
+ {
+ "index": 362,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog looks out window",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} looks out window"
+ },
+ {
+ "index": 363,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has dark nose",
+ "question": [
+ "is there dog ?",
+ "is there dark nose ?"
+ ],
+ "prompt": "{} has dark nose"
+ },
+ {
+ "index": 364,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has spotted ears",
+ "question": [
+ "is there dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "{} has spotted ears"
+ },
+ {
+ "index": 365,
+ "image_id": 2387774,
+ "entity": "dog",
+ "caption": "dog has spotted face",
+ "question": [
+ "is there dog ?",
+ "is there face ?"
+ ],
+ "prompt": "{} has spotted face"
+ },
+ {
+ "index": 366,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog is wearing glasses",
+ "question": [
+ "is there dog ?",
+ "are there glasses ?"
+ ],
+ "prompt": "{} is wearing glasses"
+ },
+ {
+ "index": 367,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog has multicolor bandanna",
+ "question": [
+ "is there dog ?",
+ "is there multicolor bandanna ?"
+ ],
+ "prompt": "{} has multicolor bandanna"
+ },
+ {
+ "index": 368,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog has white paws",
+ "question": [
+ "is there dog ?",
+ "are there white paws ?"
+ ],
+ "prompt": "{} has white paws"
+ },
+ {
+ "index": 369,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "dog is on skateboard",
+ "question": [
+ "is there dog ?",
+ "is there skateboard ?"
+ ],
+ "prompt": "{} is on skateboard"
+ },
+ {
+ "index": 370,
+ "image_id": 2387596,
+ "entity": "dog",
+ "caption": "The dog is on a leash.",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "The {} is on a leash."
+ },
+ {
+ "index": 371,
+ "image_id": 2387470,
+ "entity": "dog",
+ "caption": "The dog's mouth is open. ",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is open. "
+ },
+ {
+ "index": 372,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "black dog jumping in air",
+ "question": [
+ "is there black dog ?",
+ "is there air ?"
+ ],
+ "prompt": "black {} jumping in air"
+ },
+ {
+ "index": 373,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "dog has red collar",
+ "question": [
+ "is there dog ?",
+ "is there red collar ?"
+ ],
+ "prompt": "{} has red collar"
+ },
+ {
+ "index": 374,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "dog has short curly tail",
+ "question": [
+ "is there dog ?",
+ "is there short curly tail ?"
+ ],
+ "prompt": "{} has short curly tail"
+ },
+ {
+ "index": 375,
+ "image_id": 2387448,
+ "entity": "dog",
+ "caption": "grass under dog is green",
+ "question": [
+ "is there grass ?",
+ "is there dog ?"
+ ],
+ "prompt": "grass under {} is green"
+ },
+ {
+ "index": 376,
+ "image_id": 2387387,
+ "entity": "dog",
+ "caption": "dog's tongue sticking out of mouth",
+ "question": [
+ "is there dog's tongue ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{}'s tongue sticking out of mouth"
+ },
+ {
+ "index": 377,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} has a red collar"
+ },
+ {
+ "index": 378,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a brown nose",
+ "question": [
+ "is there the dog ?",
+ "is there a brown nose ?"
+ ],
+ "prompt": "the {} has a brown nose"
+ },
+ {
+ "index": 379,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the cat is under the dog's chin",
+ "question": [
+ "is there the cat ?",
+ "is there the dog's chin ?"
+ ],
+ "prompt": "the cat is under the {}'s chin"
+ },
+ {
+ "index": 380,
+ "image_id": 2387104,
+ "entity": "dog",
+ "caption": "the dog has a white face",
+ "question": [
+ "is there the dog ?",
+ "is there a white face ?"
+ ],
+ "prompt": "the {} has a white face"
+ },
+ {
+ "index": 381,
+ "image_id": 2386600,
+ "entity": "dog",
+ "caption": "The frisbee is in front of the dog",
+ "question": [
+ "is there the frisbee ?",
+ "is there front ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The frisbee is in front of the {}"
+ },
+ {
+ "index": 382,
+ "image_id": 2386600,
+ "entity": "dog",
+ "caption": "dog's teeth showing",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth showing"
+ },
+ {
+ "index": 383,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "The dog has a black nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose."
+ },
+ {
+ "index": 384,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "red bandana dog is wearing",
+ "question": [
+ "is there red bandana dog ?"
+ ],
+ "prompt": "red bandana {} is wearing"
+ },
+ {
+ "index": 385,
+ "image_id": 2386411,
+ "entity": "dog",
+ "caption": "dog's face looking at frisbees",
+ "question": [
+ "is there dog's face ?",
+ "are there frisbees ?"
+ ],
+ "prompt": "{}'s face looking at frisbees"
+ },
+ {
+ "index": 386,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "dog is laying on suit case",
+ "question": [
+ "is there dog ?",
+ "is there suit case ?"
+ ],
+ "prompt": "{} is laying on suit case"
+ },
+ {
+ "index": 387,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "The dog is wearing a gold tag.",
+ "question": [
+ "is there the dog ?",
+ "is there a gold tag ?"
+ ],
+ "prompt": "The {} is wearing a gold tag."
+ },
+ {
+ "index": 388,
+ "image_id": 2386323,
+ "entity": "dog",
+ "caption": "The dog is sitting on a suitcase.",
+ "question": [
+ "is there the dog ?",
+ "is there a suitcase ?"
+ ],
+ "prompt": "The {} is sitting on a suitcase."
+ },
+ {
+ "index": 389,
+ "image_id": 2386037,
+ "entity": "dog",
+ "caption": "dog is jumping above ground",
+ "question": [
+ "is there dog ?",
+ "is there ground ?"
+ ],
+ "prompt": "{} is jumping above ground"
+ },
+ {
+ "index": 390,
+ "image_id": 2386037,
+ "entity": "dog",
+ "caption": "dog is wearing collar",
+ "question": [
+ "is there dog ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} is wearing collar"
+ },
+ {
+ "index": 391,
+ "image_id": 2386031,
+ "entity": "dog",
+ "caption": "dog's tail is up in the air",
+ "question": [
+ "is there dog's tail ?",
+ "is there the air ?"
+ ],
+ "prompt": "{}'s tail is up in the air"
+ },
+ {
+ "index": 392,
+ "image_id": 2386031,
+ "entity": "dog",
+ "caption": "dog's left perked up ear",
+ "question": [
+ "is there ear ?"
+ ],
+ "prompt": "{}'s left perked up ear"
+ },
+ {
+ "index": 393,
+ "image_id": 2386010,
+ "entity": "dog",
+ "caption": "dogs face in a side mirror",
+ "question": [
+ "are there dogs ?",
+ "is there a side mirror ?"
+ ],
+ "prompt": "{}s face in a side mirror"
+ },
+ {
+ "index": 394,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "nose of dog is wet",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is wet"
+ },
+ {
+ "index": 395,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "eyes of dog are wide open",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are wide open"
+ },
+ {
+ "index": 396,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the frisbee is in the dog's mouth",
+ "question": [
+ "is there the frisbee ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "the frisbee is in the {}'s mouth"
+ },
+ {
+ "index": 397,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the dog's eyes are wild and wide open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are wild and wide open"
+ },
+ {
+ "index": 398,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the face of the dog is tricolored",
+ "question": [
+ "is there the face ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the face of the {} is tricolored"
+ },
+ {
+ "index": 399,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "the dog's paw is white",
+ "question": [
+ "is there the dog's paw ?"
+ ],
+ "prompt": "the {}'s paw is white"
+ },
+ {
+ "index": 400,
+ "image_id": 2385955,
+ "entity": "dog",
+ "caption": "grass is under the the dog",
+ "question": [
+ "is there grass ?",
+ "is there the the dog ?"
+ ],
+ "prompt": "grass is under the the {}"
+ },
+ {
+ "index": 401,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog is wearing a cap",
+ "question": [
+ "is there dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "{} is wearing a cap"
+ },
+ {
+ "index": 402,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog is wearing eyeglasses",
+ "question": [
+ "is there dog ?",
+ "are there eyeglasses ?"
+ ],
+ "prompt": "{} is wearing eyeglasses"
+ },
+ {
+ "index": 403,
+ "image_id": 2385853,
+ "entity": "dog",
+ "caption": "dog's mouth is open",
+ "question": [
+ "is there dog's mouth ?"
+ ],
+ "prompt": "{}'s mouth is open"
+ },
+ {
+ "index": 404,
+ "image_id": 2385762,
+ "entity": "dog",
+ "caption": "a dog has a retractable leash attached to the collar",
+ "question": [
+ "is there a dog ?",
+ "is there a retractable leash ?",
+ "is there the collar ?"
+ ],
+ "prompt": "a {} has a retractable leash attached to the collar"
+ },
+ {
+ "index": 405,
+ "image_id": 2385757,
+ "entity": "dog",
+ "caption": "dog laying in dirt with eyes closed",
+ "question": [
+ "is there dog ?",
+ "is there dirt ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} laying in dirt with eyes closed"
+ },
+ {
+ "index": 406,
+ "image_id": 2385595,
+ "entity": "dog",
+ "caption": "the dog is lying on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is lying on the bed"
+ },
+ {
+ "index": 407,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man is holding two dogs",
+ "question": [
+ "is there man ?",
+ "are there two dogs ?"
+ ],
+ "prompt": "man is holding two {}s"
+ },
+ {
+ "index": 408,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "dog in rear has red collar",
+ "question": [
+ "is there dog ?",
+ "is there rear ?",
+ "is there red collar ?"
+ ],
+ "prompt": "{} in rear has red collar"
+ },
+ {
+ "index": 409,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man is crouching near two dogs",
+ "question": [
+ "is there man ?",
+ "are there two dogs ?"
+ ],
+ "prompt": "man is crouching near two {}s"
+ },
+ {
+ "index": 410,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "dog with its mouth wide open",
+ "question": [
+ "is there dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "{} with its mouth wide open"
+ },
+ {
+ "index": 411,
+ "image_id": 2385566,
+ "entity": "dog",
+ "caption": "man's hand resting on dog's hip",
+ "question": [
+ "is there man's hand ?",
+ "is there dog's hip ?"
+ ],
+ "prompt": "man's hand resting on {}'s hip"
+ },
+ {
+ "index": 412,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's eyes are brown",
+ "question": [
+ "are there dog's eyes ?"
+ ],
+ "prompt": "{}'s eyes are brown"
+ },
+ {
+ "index": 413,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's whiskers are white",
+ "question": [
+ "are there dog's whiskers ?"
+ ],
+ "prompt": "{}'s whiskers are white"
+ },
+ {
+ "index": 414,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog is next to the window",
+ "question": [
+ "is there dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "{} is next to the window"
+ },
+ {
+ "index": 415,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "dog's ears are down",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are down"
+ },
+ {
+ "index": 416,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog has a silver tag",
+ "question": [
+ "is there the dog ?",
+ "is there a silver tag ?"
+ ],
+ "prompt": "the {} has a silver tag"
+ },
+ {
+ "index": 417,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog is in the passenger seat",
+ "question": [
+ "is there the dog ?",
+ "is there the passenger seat ?"
+ ],
+ "prompt": "the {} is in the passenger seat"
+ },
+ {
+ "index": 418,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "the dog has white parts of the eyes showing",
+ "question": [
+ "is there the dog ?",
+ "are there white parts ?",
+ "are there the eyes ?"
+ ],
+ "prompt": "the {} has white parts of the eyes showing"
+ },
+ {
+ "index": 419,
+ "image_id": 2385466,
+ "entity": "dog",
+ "caption": "A dog has a tag",
+ "question": [
+ "is there a dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "A {} has a tag"
+ },
+ {
+ "index": 420,
+ "image_id": 2385345,
+ "entity": "dog",
+ "caption": "the dog is leaning on the bedding",
+ "question": [
+ "is there the dog ?",
+ "is there the bedding ?"
+ ],
+ "prompt": "the {} is leaning on the bedding"
+ },
+ {
+ "index": 421,
+ "image_id": 2385345,
+ "entity": "dog",
+ "caption": "the bed is behind the dog",
+ "question": [
+ "is there the bed ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the bed is behind the {}"
+ },
+ {
+ "index": 422,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "white dog is lying on a bed",
+ "question": [
+ "is there white dog ?",
+ "is there a bed ?"
+ ],
+ "prompt": "white {} is lying on a bed"
+ },
+ {
+ "index": 423,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "tail of dog is on bed",
+ "question": [
+ "is there tail ?",
+ "is there dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "tail of {} is on bed"
+ },
+ {
+ "index": 424,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "eyes of dog are black",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are black"
+ },
+ {
+ "index": 425,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "eyes and nose of dog are black",
+ "question": [
+ "are there eyes ?",
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes and nose of {} are black"
+ },
+ {
+ "index": 426,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "a dog collar has a tag",
+ "question": [
+ "is there a dog collar ?",
+ "is there a tag ?"
+ ],
+ "prompt": "a {} collar has a tag"
+ },
+ {
+ "index": 427,
+ "image_id": 2385299,
+ "entity": "dog",
+ "caption": "legs and chest of dog are white",
+ "question": [
+ "are there legs ?",
+ "is there chest ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs and chest of {} are white"
+ },
+ {
+ "index": 428,
+ "image_id": 2384917,
+ "entity": "dog",
+ "caption": "dogs tongue sticking out",
+ "question": [
+ "are there dogs ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{}s tongue sticking out"
+ },
+ {
+ "index": 429,
+ "image_id": 2384917,
+ "entity": "dog",
+ "caption": "brown pointy ear on dog",
+ "question": [
+ "is there brown pointy ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "brown pointy ear on {}"
+ },
+ {
+ "index": 430,
+ "image_id": 2384563,
+ "entity": "dog",
+ "caption": "dog curled up on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} curled up on a couch"
+ },
+ {
+ "index": 431,
+ "image_id": 2384563,
+ "entity": "dog",
+ "caption": "a dog curled up on a cushion",
+ "question": [
+ "is there a dog ?",
+ "is there a cushion ?"
+ ],
+ "prompt": "a {} curled up on a cushion"
+ },
+ {
+ "index": 432,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "dog is wearing a green collar ",
+ "question": [
+ "is there dog ?",
+ "is there a green collar ?"
+ ],
+ "prompt": "{} is wearing a green collar "
+ },
+ {
+ "index": 433,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "the dogs ear is bent ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s ear is bent "
+ },
+ {
+ "index": 434,
+ "image_id": 2384452,
+ "entity": "dog",
+ "caption": "the dogs ear ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s ear "
+ },
+ {
+ "index": 435,
+ "image_id": 2384424,
+ "entity": "dog",
+ "caption": "the dog is beside the bike",
+ "question": [
+ "is there the dog ?",
+ "is there the bike ?"
+ ],
+ "prompt": "the {} is beside the bike"
+ },
+ {
+ "index": 436,
+ "image_id": 2384322,
+ "entity": "dog",
+ "caption": "Reindeer stuffed animal on the dog.",
+ "question": [
+ "is there reindeer ?",
+ "is there animal ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Reindeer stuffed animal on the {}."
+ },
+ {
+ "index": 437,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "dog's collar is green",
+ "question": [
+ "is there dog's collar ?"
+ ],
+ "prompt": "{}'s collar is green"
+ },
+ {
+ "index": 438,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "the dog bed is plaid patterned",
+ "question": [
+ "is there the dog bed ?"
+ ],
+ "prompt": "the {} bed is plaid patterned"
+ },
+ {
+ "index": 439,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "dog's ears pointing upwards",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears pointing upwards"
+ },
+ {
+ "index": 440,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "Black pillow dog is laying on",
+ "question": [
+ "is there black pillow dog ?"
+ ],
+ "prompt": "Black pillow {} is laying on"
+ },
+ {
+ "index": 441,
+ "image_id": 2384105,
+ "entity": "dog",
+ "caption": "Collar dog is wearing",
+ "question": [
+ "is there collar dog ?"
+ ],
+ "prompt": "Collar {} is wearing"
+ },
+ {
+ "index": 442,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is tan",
+ "question": [
+ "is there dog toy ?",
+ "is there tan ?"
+ ],
+ "prompt": "{} toy is tan"
+ },
+ {
+ "index": 443,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is lying on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is lying on the floor"
+ },
+ {
+ "index": 444,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has the toy in it's mouth",
+ "question": [
+ "is there dog ?",
+ "is there the toy ?"
+ ],
+ "prompt": "{} has the toy in it's mouth"
+ },
+ {
+ "index": 445,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is tan and hairy",
+ "question": [
+ "is there dog toy ?"
+ ],
+ "prompt": "{} toy is tan and hairy"
+ },
+ {
+ "index": 446,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has whiskers that are white",
+ "question": [
+ "is there dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "{} has whiskers that are white"
+ },
+ {
+ "index": 447,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is laying on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is laying on the floor"
+ },
+ {
+ "index": 448,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has black ears",
+ "question": [
+ "is there dog ?",
+ "are there black ears ?"
+ ],
+ "prompt": "{} has black ears"
+ },
+ {
+ "index": 449,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog is lying down on the floor",
+ "question": [
+ "is there dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} is lying down on the floor"
+ },
+ {
+ "index": 450,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog toy is brown",
+ "question": [
+ "is there dog toy ?"
+ ],
+ "prompt": "{} toy is brown"
+ },
+ {
+ "index": 451,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has toy in it's mouth",
+ "question": [
+ "is there dog ?",
+ "is there toy ?",
+ "is there it's mouth ?"
+ ],
+ "prompt": "{} has toy in it's mouth"
+ },
+ {
+ "index": 452,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "dog has white whiskers",
+ "question": [
+ "is there dog ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "{} has white whiskers"
+ },
+ {
+ "index": 453,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has a nose",
+ "question": [
+ "is there the dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "the {} has a nose"
+ },
+ {
+ "index": 454,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has eyes",
+ "question": [
+ "is there the dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {} has eyes"
+ },
+ {
+ "index": 455,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "the dog has an ear",
+ "question": [
+ "is there the dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "the {} has an ear"
+ },
+ {
+ "index": 456,
+ "image_id": 2383524,
+ "entity": "dog",
+ "caption": "The dog's face looks angry",
+ "question": [
+ "is there the dog's face ?"
+ ],
+ "prompt": "The {}'s face looks angry"
+ },
+ {
+ "index": 457,
+ "image_id": 2383242,
+ "entity": "dog",
+ "caption": "The dog is between the persons legs",
+ "question": [
+ "is there the dog ?",
+ "are there the persons legs ?"
+ ],
+ "prompt": "The {} is between the persons legs"
+ },
+ {
+ "index": 458,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is on the counter",
+ "question": [
+ "is there the dog ?",
+ "is there the counter ?"
+ ],
+ "prompt": "The {} is on the counter"
+ },
+ {
+ "index": 459,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dogs nose is black",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is black"
+ },
+ {
+ "index": 460,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog has long fur.",
+ "question": [
+ "is there the dog ?",
+ "is there long fur ?"
+ ],
+ "prompt": "The {} has long fur."
+ },
+ {
+ "index": 461,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is on a table.",
+ "question": [
+ "is there the dog ?",
+ "is there a table ?"
+ ],
+ "prompt": "The {} is on a table."
+ },
+ {
+ "index": 462,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog is sniffing the newspaper.",
+ "question": [
+ "is there the dog ?",
+ "is there the newspaper ?"
+ ],
+ "prompt": "The {} is sniffing the newspaper."
+ },
+ {
+ "index": 463,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "The dog has curly fur",
+ "question": [
+ "is there the dog ?",
+ "is there curly fur ?"
+ ],
+ "prompt": "The {} has curly fur"
+ },
+ {
+ "index": 464,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s nose is black",
+ "question": [
+ "is there the dog`s nose ?"
+ ],
+ "prompt": "the {}`s nose is black"
+ },
+ {
+ "index": 465,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s eyes are black",
+ "question": [
+ "are there the dog`s eyes ?"
+ ],
+ "prompt": "the {}`s eyes are black"
+ },
+ {
+ "index": 466,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog`s hair is curly",
+ "question": [
+ "is there the dog`s hair ?"
+ ],
+ "prompt": "the {}`s hair is curly"
+ },
+ {
+ "index": 467,
+ "image_id": 2382434,
+ "entity": "dog",
+ "caption": "the dog is smelling the paper",
+ "question": [
+ "is there the dog ?",
+ "is there the paper ?"
+ ],
+ "prompt": "the {} is smelling the paper"
+ },
+ {
+ "index": 468,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "a dog is asleep",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "a {} is asleep"
+ },
+ {
+ "index": 469,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog's paw is on the remote",
+ "question": [
+ "is there the dog's paw ?",
+ "is there the remote ?"
+ ],
+ "prompt": "The {}'s paw is on the remote"
+ },
+ {
+ "index": 470,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog's eyes are closed",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are closed"
+ },
+ {
+ "index": 471,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog is sleep on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there sleep ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is sleep on the couch."
+ },
+ {
+ "index": 472,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "The dog has two ears.",
+ "question": [
+ "is there the dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "The {} has two ears."
+ },
+ {
+ "index": 473,
+ "image_id": 2382396,
+ "entity": "dog",
+ "caption": "A dog is in the foreground",
+ "question": [
+ "is there a dog ?",
+ "is there the foreground ?"
+ ],
+ "prompt": "A {} is in the foreground"
+ },
+ {
+ "index": 474,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "the dog`s nose is brown",
+ "question": [
+ "is there the dog`s nose ?"
+ ],
+ "prompt": "the {}`s nose is brown"
+ },
+ {
+ "index": 475,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "the dog`s stomach is wet",
+ "question": [
+ "is there the dog`s stomach ?"
+ ],
+ "prompt": "the {}`s stomach is wet"
+ },
+ {
+ "index": 476,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "dog is in the beach",
+ "question": [
+ "is there dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "{} is in the beach"
+ },
+ {
+ "index": 477,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "tail of dog is up",
+ "question": [
+ "is there tail ?",
+ "is there dog ?"
+ ],
+ "prompt": "tail of {} is up"
+ },
+ {
+ "index": 478,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "face of dog is white and brown",
+ "question": [
+ "is there face ?",
+ "is there dog ?"
+ ],
+ "prompt": "face of {} is white and brown"
+ },
+ {
+ "index": 479,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "collar of dog is black",
+ "question": [
+ "is there collar ?",
+ "is there dog ?"
+ ],
+ "prompt": "collar of {} is black"
+ },
+ {
+ "index": 480,
+ "image_id": 2382082,
+ "entity": "dog",
+ "caption": "ears of dog are down ",
+ "question": [
+ "are there ears ?",
+ "is there dog ?"
+ ],
+ "prompt": "ears of {} are down "
+ },
+ {
+ "index": 481,
+ "image_id": 2381848,
+ "entity": "dog",
+ "caption": "ear of dog is brown",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is brown"
+ },
+ {
+ "index": 482,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "Leash attached to the dog",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Leash attached to the {}"
+ },
+ {
+ "index": 483,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "the dog is wearing a floater",
+ "question": [
+ "is there the dog ?",
+ "is there a floater ?"
+ ],
+ "prompt": "the {} is wearing a floater"
+ },
+ {
+ "index": 484,
+ "image_id": 2381777,
+ "entity": "dog",
+ "caption": "this is the rope tying the dog",
+ "question": [
+ "is there the rope ?",
+ "is there the dog ?"
+ ],
+ "prompt": "this is the rope tying the {}"
+ },
+ {
+ "index": 485,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "bull dog is wearing a black and red vest ",
+ "question": [
+ "is there bull dog ?",
+ "is there a black and red vest ?"
+ ],
+ "prompt": "bull {} is wearing a black and red vest "
+ },
+ {
+ "index": 486,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "bull dog is standing on a blue surfboard ",
+ "question": [
+ "is there bull dog ?",
+ "is there a blue surfboard ?"
+ ],
+ "prompt": "bull {} is standing on a blue surfboard "
+ },
+ {
+ "index": 487,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog has an overbite",
+ "question": [
+ "is there the dog ?",
+ "is there an overbite ?"
+ ],
+ "prompt": "the {} has an overbite"
+ },
+ {
+ "index": 488,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog is wearing a life vest",
+ "question": [
+ "is there the dog ?",
+ "is there a life vest ?"
+ ],
+ "prompt": "the {} is wearing a life vest"
+ },
+ {
+ "index": 489,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog has front legs",
+ "question": [
+ "is there the dog ?",
+ "are there front legs ?"
+ ],
+ "prompt": "the {} has front legs"
+ },
+ {
+ "index": 490,
+ "image_id": 2381403,
+ "entity": "dog",
+ "caption": "the dog is on the board",
+ "question": [
+ "is there the dog ?",
+ "is there the board ?"
+ ],
+ "prompt": "the {} is on the board"
+ },
+ {
+ "index": 491,
+ "image_id": 2381375,
+ "entity": "dog",
+ "caption": "the dog is lying on the ground",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is lying on the ground"
+ },
+ {
+ "index": 492,
+ "image_id": 2381375,
+ "entity": "dog",
+ "caption": "the dog is on a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "the {} is on a leash"
+ },
+ {
+ "index": 493,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's reflection is in a mirror.",
+ "question": [
+ "is there the dog's reflection ?",
+ "is there a mirror ?"
+ ],
+ "prompt": "The {}'s reflection is in a mirror."
+ },
+ {
+ "index": 494,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's tongue is showing. ",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "The {}'s tongue is showing. "
+ },
+ {
+ "index": 495,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's legs are in the foreground.",
+ "question": [
+ "are there the dog's legs ?",
+ "is there the foreground ?"
+ ],
+ "prompt": "The {}'s legs are in the foreground."
+ },
+ {
+ "index": 496,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "The dog's nose is black. ",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black. "
+ },
+ {
+ "index": 497,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has an eye",
+ "question": [
+ "is there the dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "the {} has an eye"
+ },
+ {
+ "index": 498,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has a tongue",
+ "question": [
+ "is there the dog ?",
+ "is there a tongue ?"
+ ],
+ "prompt": "the {} has a tongue"
+ },
+ {
+ "index": 499,
+ "image_id": 2380480,
+ "entity": "dog",
+ "caption": "the dog has a long ear",
+ "question": [
+ "is there the dog ?",
+ "is there a long ear ?"
+ ],
+ "prompt": "the {} has a long ear"
+ },
+ {
+ "index": 500,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has its mouth open",
+ "question": [
+ "is there the dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has its mouth open"
+ },
+ {
+ "index": 501,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar"
+ },
+ {
+ "index": 502,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog's collar is blue",
+ "question": [
+ "is there the dog's collar ?"
+ ],
+ "prompt": "the {}'s collar is blue"
+ },
+ {
+ "index": 503,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog has a pointy ear",
+ "question": [
+ "is there the dog ?",
+ "is there a pointy ear ?"
+ ],
+ "prompt": "the {} has a pointy ear"
+ },
+ {
+ "index": 504,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has pointy ears",
+ "question": [
+ "is there dog ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "{} has pointy ears"
+ },
+ {
+ "index": 505,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has short legs",
+ "question": [
+ "is there dog ?",
+ "are there short legs ?"
+ ],
+ "prompt": "{} has short legs"
+ },
+ {
+ "index": 506,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog has pointy teeth",
+ "question": [
+ "is there dog ?",
+ "are there pointy teeth ?"
+ ],
+ "prompt": "{} has pointy teeth"
+ },
+ {
+ "index": 507,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog is attempting to catch a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is attempting to catch a frisbee"
+ },
+ {
+ "index": 508,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "the dog is down on his \"knees\"",
+ "question": [
+ "is there the dog ?",
+ "are there his \"knees ?"
+ ],
+ "prompt": "the {} is down on his \"knees\""
+ },
+ {
+ "index": 509,
+ "image_id": 2380237,
+ "entity": "dog",
+ "caption": "dog's mouth wide open",
+ "question": [],
+ "prompt": "{}'s mouth wide open"
+ },
+ {
+ "index": 510,
+ "image_id": 2380220,
+ "entity": "dog",
+ "caption": "dog is laying on stuffed animal ",
+ "question": [
+ "is there dog ?",
+ "is there stuffed animal ?"
+ ],
+ "prompt": "{} is laying on stuffed animal "
+ },
+ {
+ "index": 511,
+ "image_id": 2380220,
+ "entity": "dog",
+ "caption": "dogs ear is black ",
+ "question": [
+ "are there dogs ?"
+ ],
+ "prompt": "{}s ear is black "
+ },
+ {
+ "index": 512,
+ "image_id": 2379710,
+ "entity": "dog",
+ "caption": "water splashing next to dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "water splashing next to {}"
+ },
+ {
+ "index": 513,
+ "image_id": 2379519,
+ "entity": "dog",
+ "caption": "The dog has it's tongue out.",
+ "question": [
+ "is there the dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "The {} has it's tongue out."
+ },
+ {
+ "index": 514,
+ "image_id": 2379519,
+ "entity": "dog",
+ "caption": "The dog has brown eyes.",
+ "question": [
+ "is there the dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "The {} has brown eyes."
+ },
+ {
+ "index": 515,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a brown spot over one eye.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown spot ?",
+ "is there one eye ?"
+ ],
+ "prompt": "The {} has a brown spot over one eye."
+ },
+ {
+ "index": 516,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a spotted ear.",
+ "question": [
+ "is there the dog ?",
+ "is there a spotted ear ?"
+ ],
+ "prompt": "The {} has a spotted ear."
+ },
+ {
+ "index": 517,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a short tail.",
+ "question": [
+ "is there the dog ?",
+ "is there a short tail ?"
+ ],
+ "prompt": "The {} has a short tail."
+ },
+ {
+ "index": 518,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar."
+ },
+ {
+ "index": 519,
+ "image_id": 2379470,
+ "entity": "dog",
+ "caption": "The dog has a closed mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a closed mouth ?"
+ ],
+ "prompt": "The {} has a closed mouth."
+ },
+ {
+ "index": 520,
+ "image_id": 2378890,
+ "entity": "dog",
+ "caption": "The dog has a chain collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a chain collar ?"
+ ],
+ "prompt": "The {} has a chain collar."
+ },
+ {
+ "index": 521,
+ "image_id": 2378890,
+ "entity": "dog",
+ "caption": "The dog is playing with the frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is playing with the frisbee."
+ },
+ {
+ "index": 522,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "dog has grey fur",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has grey fur"
+ },
+ {
+ "index": 523,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "other dog has black fur",
+ "question": [
+ "is there other dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "other {} has black fur"
+ },
+ {
+ "index": 524,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "other dog has brown face",
+ "question": [
+ "is there other dog ?",
+ "is there brown face ?"
+ ],
+ "prompt": "other {} has brown face"
+ },
+ {
+ "index": 525,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "nose of the dog with mouth closed",
+ "question": [
+ "is there nose ?",
+ "is there the dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "nose of the {} with mouth closed"
+ },
+ {
+ "index": 526,
+ "image_id": 2378872,
+ "entity": "dog",
+ "caption": "eye of the dog with mouth shut",
+ "question": [
+ "is there eye ?",
+ "is there the dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "eye of the {} with mouth shut"
+ },
+ {
+ "index": 527,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog's tongue is sticking out",
+ "question": [
+ "is there the dog's tongue ?"
+ ],
+ "prompt": "the {}'s tongue is sticking out"
+ },
+ {
+ "index": 528,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog is wearing a harness",
+ "question": [
+ "is there the dog ?",
+ "is there a harness ?"
+ ],
+ "prompt": "the {} is wearing a harness"
+ },
+ {
+ "index": 529,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog has whiskers ",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "the {} has whiskers "
+ },
+ {
+ "index": 530,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog's collar has a silver tag",
+ "question": [
+ "is there the dog's collar ?",
+ "is there a silver tag ?"
+ ],
+ "prompt": "the {}'s collar has a silver tag"
+ },
+ {
+ "index": 531,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog has teeth",
+ "question": [
+ "is there the dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "the {} has teeth"
+ },
+ {
+ "index": 532,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dogs curved tail",
+ "question": [
+ "are there the dogs ?",
+ "is there tail ?"
+ ],
+ "prompt": "the {}s curved tail"
+ },
+ {
+ "index": 533,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog collar is dark brown",
+ "question": [
+ "is there the dog collar ?"
+ ],
+ "prompt": "the {} collar is dark brown"
+ },
+ {
+ "index": 534,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s mouth is open",
+ "question": [
+ "is there the dog`s mouth ?"
+ ],
+ "prompt": "the {}`s mouth is open"
+ },
+ {
+ "index": 535,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s neck is white",
+ "question": [
+ "is there the dog`s neck ?"
+ ],
+ "prompt": "the {}`s neck is white"
+ },
+ {
+ "index": 536,
+ "image_id": 2378738,
+ "entity": "dog",
+ "caption": "the dog`s face is multi colored",
+ "question": [
+ "is there the dog`s face ?"
+ ],
+ "prompt": "the {}`s face is multi colored"
+ },
+ {
+ "index": 537,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "paws of dog are black",
+ "question": [
+ "are there paws ?",
+ "is there dog ?"
+ ],
+ "prompt": "paws of {} are black"
+ },
+ {
+ "index": 538,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "hair eyes of dog are big",
+ "question": [
+ "are there hair eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "hair eyes of {} are big"
+ },
+ {
+ "index": 539,
+ "image_id": 2378013,
+ "entity": "dog",
+ "caption": "dog is wearing a bandana",
+ "question": [
+ "is there dog ?",
+ "is there a bandana ?"
+ ],
+ "prompt": "{} is wearing a bandana"
+ },
+ {
+ "index": 540,
+ "image_id": 2377946,
+ "entity": "dog",
+ "caption": "The dog is on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The {} is on the bed"
+ },
+ {
+ "index": 541,
+ "image_id": 2377946,
+ "entity": "dog",
+ "caption": "The dog has a red blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a red blanket ?"
+ ],
+ "prompt": "The {} has a red blanket"
+ },
+ {
+ "index": 542,
+ "image_id": 2377695,
+ "entity": "dog",
+ "caption": "the dogs pink tounge",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s pink tounge"
+ },
+ {
+ "index": 543,
+ "image_id": 2377541,
+ "entity": "dog",
+ "caption": "a dogs ear with black spots",
+ "question": [
+ "are there a dogs ?",
+ "are there black spots ?"
+ ],
+ "prompt": "a {}s ear with black spots"
+ },
+ {
+ "index": 544,
+ "image_id": 2377541,
+ "entity": "dog",
+ "caption": "wet dog standing in pond",
+ "question": [
+ "is there wet dog ?",
+ "is there pond ?"
+ ],
+ "prompt": "wet {} standing in pond"
+ },
+ {
+ "index": 545,
+ "image_id": 2377276,
+ "entity": "dog",
+ "caption": "fur of dog is long",
+ "question": [
+ "is there fur ?",
+ "is there dog ?"
+ ],
+ "prompt": "fur of {} is long"
+ },
+ {
+ "index": 546,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog's snout is black",
+ "question": [
+ "is there the dog's snout ?"
+ ],
+ "prompt": "the {}'s snout is black"
+ },
+ {
+ "index": 547,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog has a leather collar",
+ "question": [
+ "is there the dog ?",
+ "is there a leather collar ?"
+ ],
+ "prompt": "the {} has a leather collar"
+ },
+ {
+ "index": 548,
+ "image_id": 2377096,
+ "entity": "dog",
+ "caption": "the dog has black ears ",
+ "question": [
+ "is there the dog ?",
+ "are there black ears ?"
+ ],
+ "prompt": "the {} has black ears "
+ },
+ {
+ "index": 549,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "the dog has an orange collar ",
+ "question": [
+ "is there the dog ?",
+ "is there an orange collar ?"
+ ],
+ "prompt": "the {} has an orange collar "
+ },
+ {
+ "index": 550,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "this is an ear of a dog",
+ "question": [
+ "is there an ear ?",
+ "is there a dog ?"
+ ],
+ "prompt": "this is an ear of a {}"
+ },
+ {
+ "index": 551,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "this is a tongue of a dog",
+ "question": [
+ "is there a tongue ?",
+ "is there a dog ?"
+ ],
+ "prompt": "this is a tongue of a {}"
+ },
+ {
+ "index": 552,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "two dogs leashed to post",
+ "question": [
+ "are there two dogs ?"
+ ],
+ "prompt": "two {}s leashed to post"
+ },
+ {
+ "index": 553,
+ "image_id": 2376453,
+ "entity": "dog",
+ "caption": "two dogs tied to a tree",
+ "question": [
+ "are there two dogs ?",
+ "is there a tree ?"
+ ],
+ "prompt": "two {}s tied to a tree"
+ },
+ {
+ "index": 554,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog has it's mouth open",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has it's mouth open"
+ },
+ {
+ "index": 555,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog is leaning against the sofa",
+ "question": [
+ "is there dog ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "{} is leaning against the sofa"
+ },
+ {
+ "index": 556,
+ "image_id": 2376406,
+ "entity": "dog",
+ "caption": "dog's teeth are white",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth are white"
+ },
+ {
+ "index": 557,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "A dog is smelling a cat",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A {} is smelling a cat"
+ },
+ {
+ "index": 558,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "An old dog is greeting the new cat",
+ "question": [
+ "is there an old dog ?",
+ "is there the new cat ?"
+ ],
+ "prompt": "An old {} is greeting the new cat"
+ },
+ {
+ "index": 559,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "A cat is friends with a dog",
+ "question": [
+ "is there a cat ?",
+ "are there friends ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A cat is friends with a {}"
+ },
+ {
+ "index": 560,
+ "image_id": 2376134,
+ "entity": "dog",
+ "caption": "dog has two ears.",
+ "question": [
+ "is there dog ?",
+ "are there two ears ?"
+ ],
+ "prompt": "{} has two ears."
+ },
+ {
+ "index": 561,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has purple collar",
+ "question": [
+ "is there dog ?",
+ "is there purple collar ?"
+ ],
+ "prompt": "{} has purple collar"
+ },
+ {
+ "index": 562,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has brown nose",
+ "question": [
+ "is there dog ?",
+ "is there brown nose ?"
+ ],
+ "prompt": "{} has brown nose"
+ },
+ {
+ "index": 563,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has light brown hair",
+ "question": [
+ "is there dog ?",
+ "is there light brown hair ?"
+ ],
+ "prompt": "{} has light brown hair"
+ },
+ {
+ "index": 564,
+ "image_id": 2376108,
+ "entity": "dog",
+ "caption": "dog has dark brown ears",
+ "question": [
+ "is there dog ?",
+ "are there dark brown ears ?"
+ ],
+ "prompt": "{} has dark brown ears"
+ },
+ {
+ "index": 565,
+ "image_id": 2375658,
+ "entity": "dog",
+ "caption": "Sad looking dog face",
+ "question": [
+ "is there sad looking dog face ?"
+ ],
+ "prompt": "Sad looking {} face"
+ },
+ {
+ "index": 566,
+ "image_id": 2375561,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue harness",
+ "question": [
+ "is there the dog ?",
+ "is there a blue harness ?"
+ ],
+ "prompt": "The {} is wearing a blue harness"
+ },
+ {
+ "index": 567,
+ "image_id": 2375561,
+ "entity": "dog",
+ "caption": "The dog is standing on a chair.",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "The {} is standing on a chair."
+ },
+ {
+ "index": 568,
+ "image_id": 2375451,
+ "entity": "dog",
+ "caption": "the dogs nose is black ",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is black "
+ },
+ {
+ "index": 569,
+ "image_id": 2375428,
+ "entity": "dog",
+ "caption": "The dog is looking at the camera",
+ "question": [
+ "is there the dog ?",
+ "is there the camera ?"
+ ],
+ "prompt": "The {} is looking at the camera"
+ },
+ {
+ "index": 570,
+ "image_id": 2375428,
+ "entity": "dog",
+ "caption": "The dog has long fur",
+ "question": [
+ "is there the dog ?",
+ "is there long fur ?"
+ ],
+ "prompt": "The {} has long fur"
+ },
+ {
+ "index": 571,
+ "image_id": 2374930,
+ "entity": "dog",
+ "caption": "baby is leaning on a dog",
+ "question": [
+ "is there baby ?",
+ "is there a dog ?"
+ ],
+ "prompt": "baby is leaning on a {}"
+ },
+ {
+ "index": 572,
+ "image_id": 2374930,
+ "entity": "dog",
+ "caption": "nose of dog is brown ",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is brown "
+ },
+ {
+ "index": 573,
+ "image_id": 2374268,
+ "entity": "dog",
+ "caption": "the dog's leg hanging over the sofa",
+ "question": [
+ "is there the dog's leg ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "the {}'s leg hanging over the sofa"
+ },
+ {
+ "index": 574,
+ "image_id": 2374268,
+ "entity": "dog",
+ "caption": "dog has face buried in the couch",
+ "question": [
+ "is there dog ?",
+ "is there face ?",
+ "is there the couch ?"
+ ],
+ "prompt": "{} has face buried in the couch"
+ },
+ {
+ "index": 575,
+ "image_id": 2374132,
+ "entity": "dog",
+ "caption": "dog has light brown paws",
+ "question": [
+ "is there dog ?",
+ "are there light brown paws ?"
+ ],
+ "prompt": "{} has light brown paws"
+ },
+ {
+ "index": 576,
+ "image_id": 2374013,
+ "entity": "dog",
+ "caption": "dog's ears are light brown",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are light brown"
+ },
+ {
+ "index": 577,
+ "image_id": 2373955,
+ "entity": "dog",
+ "caption": "a brown hat the dog is wearing",
+ "question": [
+ "is there a brown hat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a brown hat the {} is wearing"
+ },
+ {
+ "index": 578,
+ "image_id": 2373955,
+ "entity": "dog",
+ "caption": "black dog kissing man",
+ "question": [
+ "is there black dog kissing man ?"
+ ],
+ "prompt": "black {} kissing man"
+ },
+ {
+ "index": 579,
+ "image_id": 2373533,
+ "entity": "dog",
+ "caption": "eyes of dog are big",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are big"
+ },
+ {
+ "index": 580,
+ "image_id": 2373533,
+ "entity": "dog",
+ "caption": "mouth of dog is touching a rail",
+ "question": [
+ "is there mouth ?",
+ "is there dog ?",
+ "is there a rail ?"
+ ],
+ "prompt": "mouth of {} is touching a rail"
+ },
+ {
+ "index": 581,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dog is wearing pink collar",
+ "question": [
+ "is there dog ?",
+ "is there pink collar ?"
+ ],
+ "prompt": "{} is wearing pink collar"
+ },
+ {
+ "index": 582,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dogs nose is brown",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is brown"
+ },
+ {
+ "index": 583,
+ "image_id": 2373340,
+ "entity": "dog",
+ "caption": "dog right ear is brown",
+ "question": [
+ "is there dog right ear ?"
+ ],
+ "prompt": "{} right ear is brown"
+ },
+ {
+ "index": 584,
+ "image_id": 2373155,
+ "entity": "dog",
+ "caption": "dogs has a chain on his neck",
+ "question": [
+ "are there dogs ?",
+ "is there a chain ?",
+ "is there his neck ?"
+ ],
+ "prompt": "{}s has a chain on his neck"
+ },
+ {
+ "index": 585,
+ "image_id": 2373141,
+ "entity": "dog",
+ "caption": "This is a man with a dog",
+ "question": [
+ "is there a man ?",
+ "is there a dog ?"
+ ],
+ "prompt": "This is a man with a {}"
+ },
+ {
+ "index": 586,
+ "image_id": 2373109,
+ "entity": "dog",
+ "caption": "the dog is on the ground ",
+ "question": [
+ "is there the dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is on the ground "
+ },
+ {
+ "index": 587,
+ "image_id": 2373073,
+ "entity": "dog",
+ "caption": "dog is wearing a hat ",
+ "question": [
+ "is there dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "{} is wearing a hat "
+ },
+ {
+ "index": 588,
+ "image_id": 2372988,
+ "entity": "dog",
+ "caption": "Water drips down dog's face.",
+ "question": [
+ "is there water ?",
+ "is there dog's face ?"
+ ],
+ "prompt": "Water drips down {}'s face."
+ },
+ {
+ "index": 589,
+ "image_id": 2372988,
+ "entity": "dog",
+ "caption": "dog is wearing a chain",
+ "question": [
+ "is there dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "{} is wearing a chain"
+ },
+ {
+ "index": 590,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is riding in a car",
+ "question": [
+ "is there a dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "A {} is riding in a car"
+ },
+ {
+ "index": 591,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is riding in the passenger seat",
+ "question": [
+ "is there a dog ?",
+ "is there the passenger seat ?"
+ ],
+ "prompt": "A {} is riding in the passenger seat"
+ },
+ {
+ "index": 592,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "A dog is in its master's car",
+ "question": [
+ "is there a dog ?",
+ "is there its master's car ?"
+ ],
+ "prompt": "A {} is in its master's car"
+ },
+ {
+ "index": 593,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "The dog likes riding in a car",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "The {} likes riding in a car"
+ },
+ {
+ "index": 594,
+ "image_id": 2372618,
+ "entity": "dog",
+ "caption": "The dog is looking out the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is looking out the window"
+ },
+ {
+ "index": 595,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "The dog is sitting on a bench.",
+ "question": [
+ "is there the dog ?",
+ "is there a bench ?"
+ ],
+ "prompt": "The {} is sitting on a bench."
+ },
+ {
+ "index": 596,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "dog is wearing a blue harness",
+ "question": [
+ "is there dog ?",
+ "is there a blue harness ?"
+ ],
+ "prompt": "{} is wearing a blue harness"
+ },
+ {
+ "index": 597,
+ "image_id": 2372586,
+ "entity": "dog",
+ "caption": "the dog has a white belly",
+ "question": [
+ "is there the dog ?",
+ "is there a white belly ?"
+ ],
+ "prompt": "the {} has a white belly"
+ },
+ {
+ "index": 598,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog looks sleepy",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} looks sleepy"
+ },
+ {
+ "index": 599,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is laying on a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "the {} is laying on a stuffed animal"
+ },
+ {
+ "index": 600,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is pale tan in color",
+ "question": [
+ "is there the dog ?",
+ "is there pale tan ?",
+ "is there color ?"
+ ],
+ "prompt": "the {} is pale tan in color"
+ },
+ {
+ "index": 601,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "stuffed animal dog is sleeping on",
+ "question": [
+ "is there stuffed animal dog ?"
+ ],
+ "prompt": "stuffed animal {} is sleeping on"
+ },
+ {
+ "index": 602,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "red bed dog is sleeping on",
+ "question": [
+ "is there red bed dog ?"
+ ],
+ "prompt": "red bed {} is sleeping on"
+ },
+ {
+ "index": 603,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the cushion under the dog is red",
+ "question": [
+ "is there the cushion ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cushion under the {} is red"
+ },
+ {
+ "index": 604,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "the dog is laying on a cushion",
+ "question": [
+ "is there the dog ?",
+ "is there a cushion ?"
+ ],
+ "prompt": "the {} is laying on a cushion"
+ },
+ {
+ "index": 605,
+ "image_id": 2372549,
+ "entity": "dog",
+ "caption": "The dog ear on the right",
+ "question": [
+ "is there the dog ear ?",
+ "is there the right ?"
+ ],
+ "prompt": "The {} ear on the right"
+ },
+ {
+ "index": 606,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "Dog leash on the beige dog",
+ "question": [
+ "is there dog ?",
+ "is there the beige dog ?"
+ ],
+ "prompt": "Dog leash on the beige {}"
+ },
+ {
+ "index": 607,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "dog has white teeth",
+ "question": [
+ "is there dog ?",
+ "are there white teeth ?"
+ ],
+ "prompt": "{} has white teeth"
+ },
+ {
+ "index": 608,
+ "image_id": 2372293,
+ "entity": "dog",
+ "caption": "dog has black under his lip",
+ "question": [
+ "is there dog ?",
+ "is there his lip ?"
+ ],
+ "prompt": "{} has black under his lip"
+ },
+ {
+ "index": 609,
+ "image_id": 2372091,
+ "entity": "dog",
+ "caption": "wooden bench dog is sitting on",
+ "question": [
+ "is there wooden bench dog ?"
+ ],
+ "prompt": "wooden bench {} is sitting on"
+ },
+ {
+ "index": 610,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "Flowered leash going to the dog",
+ "question": [
+ "is there flowered leash ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Flowered leash going to the {}"
+ },
+ {
+ "index": 611,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog looks off into distance",
+ "question": [
+ "is there dog ?",
+ "is there distance ?"
+ ],
+ "prompt": "{} looks off into distance"
+ },
+ {
+ "index": 612,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog wears sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} wears sweater"
+ },
+ {
+ "index": 613,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog sits next to bicycle",
+ "question": [
+ "is there dog ?",
+ "is there bicycle ?"
+ ],
+ "prompt": "{} sits next to bicycle"
+ },
+ {
+ "index": 614,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog sits on sidewalk",
+ "question": [
+ "is there dog ?",
+ "is there sidewalk ?"
+ ],
+ "prompt": "{} sits on sidewalk"
+ },
+ {
+ "index": 615,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "sweater is on dog",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "sweater is on {}"
+ },
+ {
+ "index": 616,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "dog is inside sweater",
+ "question": [
+ "is there dog ?",
+ "is there sweater ?"
+ ],
+ "prompt": "{} is inside sweater"
+ },
+ {
+ "index": 617,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The dog is on a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "The {} is on a leash"
+ },
+ {
+ "index": 618,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog is standing near a bicycle",
+ "question": [
+ "is there the white dog ?",
+ "is there a bicycle ?"
+ ],
+ "prompt": "The white {} is standing near a bicycle"
+ },
+ {
+ "index": 619,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog in the sweater has a bushy tail",
+ "question": [
+ "is there the white dog ?",
+ "is there the sweater ?",
+ "is there a bushy tail ?"
+ ],
+ "prompt": "The white {} in the sweater has a bushy tail"
+ },
+ {
+ "index": 620,
+ "image_id": 2371865,
+ "entity": "dog",
+ "caption": "The white dog is standing on the sidewalk",
+ "question": [
+ "is there the white dog ?",
+ "is there the sidewalk ?"
+ ],
+ "prompt": "The white {} is standing on the sidewalk"
+ },
+ {
+ "index": 621,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "the dog is using the laptop",
+ "question": [
+ "is there the dog ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "the {} is using the laptop"
+ },
+ {
+ "index": 622,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "A dog with it's paws on a laptop.",
+ "question": [
+ "is there a dog ?",
+ "are there it's paws ?",
+ "is there a laptop ?"
+ ],
+ "prompt": "A {} with it's paws on a laptop."
+ },
+ {
+ "index": 623,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The dog is using the computer ",
+ "question": [
+ "is there the dog ?",
+ "is there the computer ?"
+ ],
+ "prompt": "The {} is using the computer "
+ },
+ {
+ "index": 624,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The nose of the dog is black ",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The nose of the {} is black "
+ },
+ {
+ "index": 625,
+ "image_id": 2371612,
+ "entity": "dog",
+ "caption": "The eye of the dog is brown ",
+ "question": [
+ "is there the eye ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The eye of the {} is brown "
+ },
+ {
+ "index": 626,
+ "image_id": 2371520,
+ "entity": "dog",
+ "caption": "carpet dog is playing on",
+ "question": [
+ "is there carpet dog ?"
+ ],
+ "prompt": "carpet {} is playing on"
+ },
+ {
+ "index": 627,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A dog has three colors of fur.",
+ "question": [
+ "is there a dog ?",
+ "are there three colors ?",
+ "is there fur ?"
+ ],
+ "prompt": "A {} has three colors of fur."
+ },
+ {
+ "index": 628,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A dog is wearing a scarf around the neck.",
+ "question": [
+ "is there a dog ?",
+ "is there a scarf ?",
+ "is there the neck ?"
+ ],
+ "prompt": "A {} is wearing a scarf around the neck."
+ },
+ {
+ "index": 629,
+ "image_id": 2371249,
+ "entity": "dog",
+ "caption": "A woman is sitting close to a dog.",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A woman is sitting close to a {}."
+ },
+ {
+ "index": 630,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in mouth."
+ },
+ {
+ "index": 631,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "the dog is wearing a collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} is wearing a collar."
+ },
+ {
+ "index": 632,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The back left leg of a dog",
+ "question": [
+ "is there the back left leg ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The back left leg of a {}"
+ },
+ {
+ "index": 633,
+ "image_id": 2371169,
+ "entity": "dog",
+ "caption": "The front left leg of a dog",
+ "question": [
+ "is there the front left leg ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The front left leg of a {}"
+ },
+ {
+ "index": 634,
+ "image_id": 2371119,
+ "entity": "dog",
+ "caption": "the dog is laying on the bed",
+ "question": [
+ "is there the dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is laying on the bed"
+ },
+ {
+ "index": 635,
+ "image_id": 2370667,
+ "entity": "dog",
+ "caption": "the dogs nail ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s nail "
+ },
+ {
+ "index": 636,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has a serious face",
+ "question": [
+ "is there the dog ?",
+ "is there a serious face ?"
+ ],
+ "prompt": "The {} has a serious face"
+ },
+ {
+ "index": 637,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has white whiskers.",
+ "question": [
+ "is there the dog ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "The {} has white whiskers."
+ },
+ {
+ "index": 638,
+ "image_id": 2370647,
+ "entity": "dog",
+ "caption": "The dog has a brown colar.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown colar ?"
+ ],
+ "prompt": "The {} has a brown colar."
+ },
+ {
+ "index": 639,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "eye of dog is black ",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is black "
+ },
+ {
+ "index": 640,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "chest of dog is white",
+ "question": [
+ "is there chest ?",
+ "is there dog ?"
+ ],
+ "prompt": "chest of {} is white"
+ },
+ {
+ "index": 641,
+ "image_id": 2370508,
+ "entity": "dog",
+ "caption": "dog has dog tags",
+ "question": [
+ "is there dog ?",
+ "are there dog tags ?"
+ ],
+ "prompt": "{} has {} tags"
+ },
+ {
+ "index": 642,
+ "image_id": 2370342,
+ "entity": "dog",
+ "caption": "dog's head is on the pillow",
+ "question": [
+ "is there dog's head ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "{}'s head is on the pillow"
+ },
+ {
+ "index": 643,
+ "image_id": 2370107,
+ "entity": "dog",
+ "caption": "bottom left tooth of dog",
+ "question": [
+ "is there bottom ?",
+ "is there tooth ?",
+ "is there dog ?"
+ ],
+ "prompt": "bottom left tooth of {}"
+ },
+ {
+ "index": 644,
+ "image_id": 2369919,
+ "entity": "dog",
+ "caption": "dogs nose is black ",
+ "question": [
+ "are there dogs nose ?"
+ ],
+ "prompt": "{}s nose is black "
+ },
+ {
+ "index": 645,
+ "image_id": 2369919,
+ "entity": "dog",
+ "caption": "the dog is laying down on a shoe ",
+ "question": [
+ "is there the dog ?",
+ "is there a shoe ?"
+ ],
+ "prompt": "the {} is laying down on a shoe "
+ },
+ {
+ "index": 646,
+ "image_id": 2369591,
+ "entity": "dog",
+ "caption": "the dog has a leash",
+ "question": [
+ "is there the dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "the {} has a leash"
+ },
+ {
+ "index": 647,
+ "image_id": 2369591,
+ "entity": "dog",
+ "caption": "The dog's eye looking ahead",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye looking ahead"
+ },
+ {
+ "index": 648,
+ "image_id": 2369270,
+ "entity": "dog",
+ "caption": "Frisbee is in the dog's mouth",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "Frisbee is in the {}'s mouth"
+ },
+ {
+ "index": 649,
+ "image_id": 2368889,
+ "entity": "dog",
+ "caption": "Big brown dog spiked pink collar.",
+ "question": [
+ "is there big brown dog ?",
+ "is there pink collar ?"
+ ],
+ "prompt": "Big brown {} spiked pink collar."
+ },
+ {
+ "index": 650,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "dog is laying on the ground",
+ "question": [
+ "is there dog ?",
+ "is there the ground ?"
+ ],
+ "prompt": "{} is laying on the ground"
+ },
+ {
+ "index": 651,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "dog with tongue sticking out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} with tongue sticking out"
+ },
+ {
+ "index": 652,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog has a front paw",
+ "question": [
+ "is there the dog ?",
+ "is there a front paw ?"
+ ],
+ "prompt": "the {} has a front paw"
+ },
+ {
+ "index": 653,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog has nails",
+ "question": [
+ "is there the dog ?",
+ "are there nails ?"
+ ],
+ "prompt": "the {} has nails"
+ },
+ {
+ "index": 654,
+ "image_id": 2368858,
+ "entity": "dog",
+ "caption": "the dog is lying down",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is lying down"
+ },
+ {
+ "index": 655,
+ "image_id": 2368714,
+ "entity": "dog",
+ "caption": "dog curled up with a teddy bear",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} curled up with a teddy bear"
+ },
+ {
+ "index": 656,
+ "image_id": 2368714,
+ "entity": "dog",
+ "caption": "ear of dog is black ",
+ "question": [
+ "is there ear ?",
+ "is there dog ?"
+ ],
+ "prompt": "ear of {} is black "
+ },
+ {
+ "index": 657,
+ "image_id": 2368054,
+ "entity": "dog",
+ "caption": "dog has a purple leash",
+ "question": [
+ "is there dog ?",
+ "is there a purple leash ?"
+ ],
+ "prompt": "{} has a purple leash"
+ },
+ {
+ "index": 658,
+ "image_id": 2368054,
+ "entity": "dog",
+ "caption": "this dog is wearing a red harness",
+ "question": [
+ "is there this dog ?",
+ "is there a red harness ?"
+ ],
+ "prompt": "this {} is wearing a red harness"
+ },
+ {
+ "index": 659,
+ "image_id": 2367865,
+ "entity": "dog",
+ "caption": "The dog's eyes are yellow",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are yellow"
+ },
+ {
+ "index": 660,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "the dog is inside a van",
+ "question": [
+ "is there the dog ?",
+ "is there a van ?"
+ ],
+ "prompt": "the {} is inside a van"
+ },
+ {
+ "index": 661,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "the dog tag hanging",
+ "question": [
+ "is there the dog tag ?"
+ ],
+ "prompt": "the {} tag hanging"
+ },
+ {
+ "index": 662,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog is wearing a collar",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar"
+ },
+ {
+ "index": 663,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "navy blanket dog is laying on",
+ "question": [
+ "is there navy blanket dog ?"
+ ],
+ "prompt": "navy blanket {} is laying on"
+ },
+ {
+ "index": 664,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog's pink tongue is very long",
+ "question": [
+ "is there the dog's pink tongue ?"
+ ],
+ "prompt": "The {}'s pink tongue is very long"
+ },
+ {
+ "index": 665,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "A large tongue hanging out of the dog's mouth",
+ "question": [
+ "is there a large tongue ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "A large tongue hanging out of the {}'s mouth"
+ },
+ {
+ "index": 666,
+ "image_id": 2367488,
+ "entity": "dog",
+ "caption": "The dog's eye is open",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye is open"
+ },
+ {
+ "index": 667,
+ "image_id": 2367433,
+ "entity": "dog",
+ "caption": "pizza that dog is eating",
+ "question": [
+ "is there pizza ?",
+ "is there that dog ?"
+ ],
+ "prompt": "pizza that {} is eating"
+ },
+ {
+ "index": 668,
+ "image_id": 2367433,
+ "entity": "dog",
+ "caption": "steel grate that dog is standing on",
+ "question": [
+ "is there steel grate ?",
+ "is there that dog ?"
+ ],
+ "prompt": "steel grate that {} is standing on"
+ },
+ {
+ "index": 669,
+ "image_id": 2367152,
+ "entity": "dog",
+ "caption": "mouth of dog is open",
+ "question": [
+ "is there mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "mouth of {} is open"
+ },
+ {
+ "index": 670,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "dog tail held high",
+ "question": [
+ "is there dog tail ?"
+ ],
+ "prompt": "{} tail held high"
+ },
+ {
+ "index": 671,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "a dog that has brown eyes",
+ "question": [
+ "is there a dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "a {} that has brown eyes"
+ },
+ {
+ "index": 672,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "the dog has a brown ear",
+ "question": [
+ "is there the dog ?",
+ "is there a brown ear ?"
+ ],
+ "prompt": "the {} has a brown ear"
+ },
+ {
+ "index": 673,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has eyes",
+ "question": [
+ "is there this dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "this {} has eyes"
+ },
+ {
+ "index": 674,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has ears",
+ "question": [
+ "is there this dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "this {} has ears"
+ },
+ {
+ "index": 675,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog's nose is black",
+ "question": [
+ "is there this dog's nose ?"
+ ],
+ "prompt": "this {}'s nose is black"
+ },
+ {
+ "index": 676,
+ "image_id": 2366422,
+ "entity": "dog",
+ "caption": "this dog has a long tail",
+ "question": [
+ "is there this dog ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "this {} has a long tail"
+ },
+ {
+ "index": 677,
+ "image_id": 2365888,
+ "entity": "dog",
+ "caption": "the dog has a small tail",
+ "question": [
+ "is there the dog ?",
+ "is there a small tail ?"
+ ],
+ "prompt": "the {} has a small tail"
+ },
+ {
+ "index": 678,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "th edog is in the car ",
+ "question": [
+ "is there the car ?"
+ ],
+ "prompt": "th e{} is in the car "
+ },
+ {
+ "index": 679,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking outside the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking outside the window"
+ },
+ {
+ "index": 680,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking outside ",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} is looking outside "
+ },
+ {
+ "index": 681,
+ "image_id": 2365787,
+ "entity": "dog",
+ "caption": "the dog is looking through the window",
+ "question": [
+ "is there the dog ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking through the window"
+ },
+ {
+ "index": 682,
+ "image_id": 2365756,
+ "entity": "dog",
+ "caption": "the doghas a seat belt on ",
+ "question": [
+ "is there a seat belt ?"
+ ],
+ "prompt": "the {}has a seat belt on "
+ },
+ {
+ "index": 683,
+ "image_id": 2365756,
+ "entity": "dog",
+ "caption": "Black seatbelt holding back a dog. ",
+ "question": [
+ "is there black seatbelt ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Black seatbelt holding back a {}. "
+ },
+ {
+ "index": 684,
+ "image_id": 2365712,
+ "entity": "dog",
+ "caption": "the dog is licking the cake",
+ "question": [
+ "is there the dog ?",
+ "is there the cake ?"
+ ],
+ "prompt": "the {} is licking the cake"
+ },
+ {
+ "index": 685,
+ "image_id": 2365044,
+ "entity": "dog",
+ "caption": "dog is wearing a bow tie ",
+ "question": [
+ "is there dog ?",
+ "is there a bow tie ?"
+ ],
+ "prompt": "{} is wearing a bow tie "
+ },
+ {
+ "index": 686,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "The pillow the dog is laying on.",
+ "question": [
+ "is there the pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The pillow the {} is laying on."
+ },
+ {
+ "index": 687,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "the dog is getting ready for bed",
+ "question": [
+ "is there the dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "the {} is getting ready for bed"
+ },
+ {
+ "index": 688,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "this dog looks comfortable in bed",
+ "question": [
+ "is there this dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "this {} looks comfortable in bed"
+ },
+ {
+ "index": 689,
+ "image_id": 2364811,
+ "entity": "dog",
+ "caption": "dog has hazel eyes",
+ "question": [
+ "is there dog ?",
+ "are there hazel eyes ?"
+ ],
+ "prompt": "{} has hazel eyes"
+ },
+ {
+ "index": 690,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "dog is holding a ball",
+ "question": [
+ "is there dog ?",
+ "is there a ball ?"
+ ],
+ "prompt": "{} is holding a ball"
+ },
+ {
+ "index": 691,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "black dog with paws forward looking at camera",
+ "question": [
+ "is there black dog ?",
+ "are there paws ?",
+ "is there camera ?"
+ ],
+ "prompt": "black {} with paws forward looking at camera"
+ },
+ {
+ "index": 692,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "dog has a ball inside his mouth",
+ "question": [
+ "is there dog ?",
+ "is there a ball ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has a ball inside his mouth"
+ },
+ {
+ "index": 693,
+ "image_id": 2364543,
+ "entity": "dog",
+ "caption": "snout of dog is color salt and pepper",
+ "question": [
+ "is there snout ?",
+ "is there dog ?",
+ "is there color salt ?",
+ "is there pepper ?"
+ ],
+ "prompt": "snout of {} is color salt and pepper"
+ },
+ {
+ "index": 694,
+ "image_id": 2364504,
+ "entity": "dog",
+ "caption": "The dog is wearing a purple collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a purple collar ?"
+ ],
+ "prompt": "The {} is wearing a purple collar."
+ },
+ {
+ "index": 695,
+ "image_id": 2364504,
+ "entity": "dog",
+ "caption": "One dog is sitting in the car.",
+ "question": [
+ "is there one dog ?",
+ "is there the car ?"
+ ],
+ "prompt": "One {} is sitting in the car."
+ },
+ {
+ "index": 696,
+ "image_id": 2364448,
+ "entity": "dog",
+ "caption": "the dog has a paw",
+ "question": [
+ "is there the dog ?",
+ "is there a paw ?"
+ ],
+ "prompt": "the {} has a paw"
+ },
+ {
+ "index": 697,
+ "image_id": 2364244,
+ "entity": "dog",
+ "caption": "the dog is wearing a tiara",
+ "question": [
+ "is there the dog ?",
+ "is there a tiara ?"
+ ],
+ "prompt": "the {} is wearing a tiara"
+ },
+ {
+ "index": 698,
+ "image_id": 2364208,
+ "entity": "dog",
+ "caption": "the cow is looking at the dog",
+ "question": [
+ "is there the cow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the cow is looking at the {}"
+ },
+ {
+ "index": 699,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "a dog with his tooth sticking out",
+ "question": [
+ "is there a dog ?",
+ "is there his tooth ?"
+ ],
+ "prompt": "a {} with his tooth sticking out"
+ },
+ {
+ "index": 700,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "green couch cushion dog is sleeping on",
+ "question": [
+ "is there green couch cushion dog ?"
+ ],
+ "prompt": "green couch cushion {} is sleeping on"
+ },
+ {
+ "index": 701,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "dog lip pulled up against cushion",
+ "question": [
+ "is there dog lip ?",
+ "is there cushion ?"
+ ],
+ "prompt": "{} lip pulled up against cushion"
+ },
+ {
+ "index": 702,
+ "image_id": 2363392,
+ "entity": "dog",
+ "caption": "dog's tongue sticking out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue sticking out"
+ },
+ {
+ "index": 703,
+ "image_id": 2363350,
+ "entity": "dog",
+ "caption": "A dog is laying in his bed",
+ "question": [
+ "is there a dog ?",
+ "is there his bed ?"
+ ],
+ "prompt": "A {} is laying in his bed"
+ },
+ {
+ "index": 704,
+ "image_id": 2363350,
+ "entity": "dog",
+ "caption": "The dog is resting on a pillow",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "The {} is resting on a pillow"
+ },
+ {
+ "index": 705,
+ "image_id": 2362763,
+ "entity": "dog",
+ "caption": "dog's teeth are showing",
+ "question": [
+ "are there dog's teeth ?"
+ ],
+ "prompt": "{}'s teeth are showing"
+ },
+ {
+ "index": 706,
+ "image_id": 2362553,
+ "entity": "dog",
+ "caption": "dog with head tilted up",
+ "question": [
+ "is there dog ?",
+ "is there head ?"
+ ],
+ "prompt": "{} with head tilted up"
+ },
+ {
+ "index": 707,
+ "image_id": 2362553,
+ "entity": "dog",
+ "caption": "the dog has a right eye",
+ "question": [
+ "is there the dog ?",
+ "is there a right eye ?"
+ ],
+ "prompt": "the {} has a right eye"
+ },
+ {
+ "index": 708,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The dog is in the bag",
+ "question": [
+ "is there the dog ?",
+ "is there the bag ?"
+ ],
+ "prompt": "The {} is in the bag"
+ },
+ {
+ "index": 709,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The bag is holding the dog",
+ "question": [
+ "is there the bag ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The bag is holding the {}"
+ },
+ {
+ "index": 710,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The small backpack holds a dog",
+ "question": [
+ "is there the small backpack ?",
+ "is there a dog ?"
+ ],
+ "prompt": "The small backpack holds a {}"
+ },
+ {
+ "index": 711,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "The dog is turning its head",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?"
+ ],
+ "prompt": "The {} is turning its head"
+ },
+ {
+ "index": 712,
+ "image_id": 2362525,
+ "entity": "dog",
+ "caption": "this is a \"doggy pack\"",
+ "question": [
+ "is there a \"doggy pack ?"
+ ],
+ "prompt": "this is a \"{}gy pack\""
+ },
+ {
+ "index": 713,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "dog is wearing chain collar",
+ "question": [
+ "is there dog ?",
+ "is there chain collar ?"
+ ],
+ "prompt": "{} is wearing chain collar"
+ },
+ {
+ "index": 714,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog is looking at the cake",
+ "question": [
+ "is there the dog ?",
+ "is there the cake ?"
+ ],
+ "prompt": "the {} is looking at the cake"
+ },
+ {
+ "index": 715,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog looks sad",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "the {} looks sad"
+ },
+ {
+ "index": 716,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog lays head on arm",
+ "question": [
+ "is there the dog ?",
+ "is there head ?",
+ "is there arm ?"
+ ],
+ "prompt": "the {} lays head on arm"
+ },
+ {
+ "index": 717,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "the dog has spots",
+ "question": [
+ "is there the dog ?",
+ "are there spots ?"
+ ],
+ "prompt": "the {} has spots"
+ },
+ {
+ "index": 718,
+ "image_id": 2362323,
+ "entity": "dog",
+ "caption": "eye of dog is black",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is black"
+ },
+ {
+ "index": 719,
+ "image_id": 2362196,
+ "entity": "dog",
+ "caption": " a dog with it's tongue sticking out",
+ "question": [
+ "is there a dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": " a {} with it's tongue sticking out"
+ },
+ {
+ "index": 720,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "this is a dog ",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "this is a {} "
+ },
+ {
+ "index": 721,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "the dog is lying down on the floor",
+ "question": [
+ "is there the dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "the {} is lying down on the floor"
+ },
+ {
+ "index": 722,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is in somebody's house",
+ "question": [
+ "is there the dog ?",
+ "is there somebody's house ?"
+ ],
+ "prompt": "The {} is in somebody's house"
+ },
+ {
+ "index": 723,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is laying by the door",
+ "question": [
+ "is there the dog ?",
+ "is there the door ?"
+ ],
+ "prompt": "The {} is laying by the door"
+ },
+ {
+ "index": 724,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is guarding the house",
+ "question": [
+ "is there the dog ?",
+ "is there the house ?"
+ ],
+ "prompt": "The {} is guarding the house"
+ },
+ {
+ "index": 725,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is awake in daytime",
+ "question": [
+ "is there the dog ?",
+ "is there daytime ?"
+ ],
+ "prompt": "The {} is awake in daytime"
+ },
+ {
+ "index": 726,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is waiting to go outside",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is waiting to go outside"
+ },
+ {
+ "index": 727,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is waiting to be let out",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "A {} is waiting to be let out"
+ },
+ {
+ "index": 728,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is sleeping on the floor",
+ "question": [
+ "is there a dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "A {} is sleeping on the floor"
+ },
+ {
+ "index": 729,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is looking for attention",
+ "question": [
+ "is there a dog ?",
+ "is there attention ?"
+ ],
+ "prompt": "A {} is looking for attention"
+ },
+ {
+ "index": 730,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is looking lonely",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is looking lonely"
+ },
+ {
+ "index": 731,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is waiting by the door",
+ "question": [
+ "is there a dog ?",
+ "is there the door ?"
+ ],
+ "prompt": "A {} is waiting by the door"
+ },
+ {
+ "index": 732,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "A dog is laying on the floor",
+ "question": [
+ "is there a dog ?",
+ "is there the floor ?"
+ ],
+ "prompt": "A {} is laying on the floor"
+ },
+ {
+ "index": 733,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is wanting to be fed",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is wanting to be fed"
+ },
+ {
+ "index": 734,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is enjoying its day",
+ "question": [
+ "is there the dog ?",
+ "is there its day ?"
+ ],
+ "prompt": "The {} is enjoying its day"
+ },
+ {
+ "index": 735,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog is getting some rest",
+ "question": [
+ "is there the dog ?",
+ "is there some rest ?"
+ ],
+ "prompt": "The {} is getting some rest"
+ },
+ {
+ "index": 736,
+ "image_id": 2362106,
+ "entity": "dog",
+ "caption": "The dog belongs to the home owner",
+ "question": [
+ "is there the dog ?",
+ "is there the home owner ?"
+ ],
+ "prompt": "The {} belongs to the home owner"
+ },
+ {
+ "index": 737,
+ "image_id": 2361653,
+ "entity": "dog",
+ "caption": "the dog has a left eye",
+ "question": [
+ "is there the dog ?",
+ "is there a left eye ?"
+ ],
+ "prompt": "the {} has a left eye"
+ },
+ {
+ "index": 738,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "floppy black dog ear ",
+ "question": [
+ "is there floppy black dog ear ?"
+ ],
+ "prompt": "floppy black {} ear "
+ },
+ {
+ "index": 739,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "two dog ear in different positions at same time ",
+ "question": [
+ "is there two dog ear ?",
+ "are there different positions ?",
+ "is there same time ?"
+ ],
+ "prompt": "two {} ear in different positions at same time "
+ },
+ {
+ "index": 740,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "The dog's left ear flopped down",
+ "question": [
+ "is there the dog's left ear ?"
+ ],
+ "prompt": "The {}'s left ear flopped down"
+ },
+ {
+ "index": 741,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "the dog's right ear is up",
+ "question": [
+ "is there the dog's right ear ?"
+ ],
+ "prompt": "the {}'s right ear is up"
+ },
+ {
+ "index": 742,
+ "image_id": 2361100,
+ "entity": "dog",
+ "caption": "the dog's eyes are open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are open"
+ },
+ {
+ "index": 743,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog is laying on dog bed",
+ "question": [
+ "is there dog ?",
+ "is there dog bed ?"
+ ],
+ "prompt": "{} is laying on {} bed"
+ },
+ {
+ "index": 744,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has small nose",
+ "question": [
+ "is there dog ?",
+ "is there small nose ?"
+ ],
+ "prompt": "{} has small nose"
+ },
+ {
+ "index": 745,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog bed is beige",
+ "question": [
+ "is there dog bed ?"
+ ],
+ "prompt": "{} bed is beige"
+ },
+ {
+ "index": 746,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has wavy fur",
+ "question": [
+ "is there dog ?",
+ "is there wavy fur ?"
+ ],
+ "prompt": "{} has wavy fur"
+ },
+ {
+ "index": 747,
+ "image_id": 2360869,
+ "entity": "dog",
+ "caption": "dog has fluffy tail",
+ "question": [
+ "is there dog ?",
+ "is there fluffy tail ?"
+ ],
+ "prompt": "{} has fluffy tail"
+ },
+ {
+ "index": 748,
+ "image_id": 2360725,
+ "entity": "dog",
+ "caption": "the dog is biting an envelope",
+ "question": [
+ "is there the dog ?",
+ "is there an envelope ?"
+ ],
+ "prompt": "the {} is biting an envelope"
+ },
+ {
+ "index": 749,
+ "image_id": 2360725,
+ "entity": "dog",
+ "caption": "dog is carrying an envelope",
+ "question": [
+ "is there dog ?",
+ "is there an envelope ?"
+ ],
+ "prompt": "{} is carrying an envelope"
+ },
+ {
+ "index": 750,
+ "image_id": 2360542,
+ "entity": "dog",
+ "caption": "dog has black eyes",
+ "question": [
+ "is there dog ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "{} has black eyes"
+ },
+ {
+ "index": 751,
+ "image_id": 2360542,
+ "entity": "dog",
+ "caption": "pomeranian dog gets a ride inside duffle bag",
+ "question": [
+ "is there pomeranian dog ?",
+ "is there a ride inside duffle bag ?"
+ ],
+ "prompt": "pomeranian {} gets a ride inside duffle bag"
+ },
+ {
+ "index": 752,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "The front left leg of the dog.",
+ "question": [
+ "is there the front left leg ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The front left leg of the {}."
+ },
+ {
+ "index": 753,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "eyes of dog are round",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} are round"
+ },
+ {
+ "index": 754,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "head of dog is brown",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} is brown"
+ },
+ {
+ "index": 755,
+ "image_id": 2360357,
+ "entity": "dog",
+ "caption": "dog has dark eyes ",
+ "question": [
+ "is there dog ?",
+ "are there dark eyes ?"
+ ],
+ "prompt": "{} has dark eyes "
+ },
+ {
+ "index": 756,
+ "image_id": 2360299,
+ "entity": "dog",
+ "caption": "dog's right ear is black",
+ "question": [
+ "is there dog's right ear ?"
+ ],
+ "prompt": "{}'s right ear is black"
+ },
+ {
+ "index": 757,
+ "image_id": 2360145,
+ "entity": "dog",
+ "caption": "A shadow line is behind the dogs.",
+ "question": [
+ "is there a shadow line ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "A shadow line is behind the {}s."
+ },
+ {
+ "index": 758,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog with his eyes shut",
+ "question": [
+ "is there dog ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "{} with his eyes shut"
+ },
+ {
+ "index": 759,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog is on blanket",
+ "question": [
+ "is there dog ?",
+ "is there blanket ?"
+ ],
+ "prompt": "{} is on blanket"
+ },
+ {
+ "index": 760,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog has blonde hair",
+ "question": [
+ "is there dog ?",
+ "is there blonde hair ?"
+ ],
+ "prompt": "{} has blonde hair"
+ },
+ {
+ "index": 761,
+ "image_id": 2359887,
+ "entity": "dog",
+ "caption": "dog has long hair on ears",
+ "question": [
+ "is there dog ?",
+ "is there long hair ?",
+ "are there ears ?"
+ ],
+ "prompt": "{} has long hair on ears"
+ },
+ {
+ "index": 762,
+ "image_id": 2359809,
+ "entity": "dog",
+ "caption": "The rear left paw of the dog",
+ "question": [
+ "is there the rear left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The rear left paw of the {}"
+ },
+ {
+ "index": 763,
+ "image_id": 2359809,
+ "entity": "dog",
+ "caption": "dog is standing on cement floors",
+ "question": [
+ "is there dog ?",
+ "are there cement floors ?"
+ ],
+ "prompt": "{} is standing on cement floors"
+ },
+ {
+ "index": 764,
+ "image_id": 2359414,
+ "entity": "dog",
+ "caption": "the dog has a banana on its side",
+ "question": [
+ "is there the dog ?",
+ "is there a banana ?",
+ "is there its side ?"
+ ],
+ "prompt": "the {} has a banana on its side"
+ },
+ {
+ "index": 765,
+ "image_id": 2359172,
+ "entity": "dog",
+ "caption": "dog has brown ear",
+ "question": [
+ "is there dog ?",
+ "is there brown ear ?"
+ ],
+ "prompt": "{} has brown ear"
+ },
+ {
+ "index": 766,
+ "image_id": 2359172,
+ "entity": "dog",
+ "caption": "dog has brown eye",
+ "question": [
+ "is there dog ?",
+ "is there brown eye ?"
+ ],
+ "prompt": "{} has brown eye"
+ },
+ {
+ "index": 767,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "Cat is laying on top of dog.",
+ "question": [
+ "is there cat ?",
+ "is there top ?",
+ "is there dog ?"
+ ],
+ "prompt": "Cat is laying on top of {}."
+ },
+ {
+ "index": 768,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "The cat is on the dog.",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The cat is on the {}."
+ },
+ {
+ "index": 769,
+ "image_id": 2359073,
+ "entity": "dog",
+ "caption": "dog has brown eye brows",
+ "question": [
+ "is there dog ?",
+ "are there brown eye brows ?"
+ ],
+ "prompt": "{} has brown eye brows"
+ },
+ {
+ "index": 770,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "dog holds chew toy",
+ "question": [
+ "is there dog ?",
+ "is there toy ?"
+ ],
+ "prompt": "{} holds chew toy"
+ },
+ {
+ "index": 771,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "dog has pink tongue",
+ "question": [
+ "is there dog ?",
+ "is there pink tongue ?"
+ ],
+ "prompt": "{} has pink tongue"
+ },
+ {
+ "index": 772,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is chewing on a toy",
+ "question": [
+ "is there the dog ?",
+ "is there a toy ?"
+ ],
+ "prompt": "the {} is chewing on a toy"
+ },
+ {
+ "index": 773,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog chews on an orange toy",
+ "question": [
+ "is there the dog ?",
+ "is there an orange toy ?"
+ ],
+ "prompt": "the {} chews on an orange toy"
+ },
+ {
+ "index": 774,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is on a blanket"
+ },
+ {
+ "index": 775,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "the dog is laying on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is laying on a blanket"
+ },
+ {
+ "index": 776,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "Small orange looking stuffed animal a dog has. ",
+ "question": [
+ "is there small orange ?",
+ "is there stuffed animal ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Small orange looking stuffed animal a {} has. "
+ },
+ {
+ "index": 777,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "A brown dogs left side front paw. ",
+ "question": [
+ "are there a brown dogs ?",
+ "is there side front paw ?"
+ ],
+ "prompt": "A brown {}s left side front paw. "
+ },
+ {
+ "index": 778,
+ "image_id": 2358914,
+ "entity": "dog",
+ "caption": "A dogs left ear. ",
+ "question": [
+ "are there a dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "A {}s left ear. "
+ },
+ {
+ "index": 779,
+ "image_id": 2358486,
+ "entity": "dog",
+ "caption": "dog is leaning over railing",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is leaning over railing"
+ },
+ {
+ "index": 780,
+ "image_id": 2358453,
+ "entity": "dog",
+ "caption": "eye of dog is close",
+ "question": [
+ "is there eye ?",
+ "is there dog ?"
+ ],
+ "prompt": "eye of {} is close"
+ },
+ {
+ "index": 781,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "dog has a long ear",
+ "question": [
+ "is there dog ?",
+ "is there a long ear ?"
+ ],
+ "prompt": "{} has a long ear"
+ },
+ {
+ "index": 782,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "the dog's head is on the blanket",
+ "question": [
+ "is there the dog's head ?",
+ "is there the blanket ?"
+ ],
+ "prompt": "the {}'s head is on the blanket"
+ },
+ {
+ "index": 783,
+ "image_id": 2357732,
+ "entity": "dog",
+ "caption": "the dog has on a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} has on a red collar"
+ },
+ {
+ "index": 784,
+ "image_id": 2357693,
+ "entity": "dog",
+ "caption": "dog has brown patch on eye",
+ "question": [
+ "is there dog ?",
+ "is there brown patch ?",
+ "is there eye ?"
+ ],
+ "prompt": "{} has brown patch on eye"
+ },
+ {
+ "index": 785,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog is wearing a tie",
+ "question": [
+ "is there the dog ?",
+ "is there a tie ?"
+ ],
+ "prompt": "the {} is wearing a tie"
+ },
+ {
+ "index": 786,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog is lying on the arm of a leather chair",
+ "question": [
+ "is there the dog ?",
+ "is there the arm ?",
+ "is there a leather chair ?"
+ ],
+ "prompt": "the {} is lying on the arm of a leather chair"
+ },
+ {
+ "index": 787,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog has bulgy eyes",
+ "question": [
+ "is there the dog ?",
+ "are there bulgy eyes ?"
+ ],
+ "prompt": "the {} has bulgy eyes"
+ },
+ {
+ "index": 788,
+ "image_id": 2357667,
+ "entity": "dog",
+ "caption": "the dog has dark brown ears",
+ "question": [
+ "is there the dog ?",
+ "are there dark brown ears ?"
+ ],
+ "prompt": "the {} has dark brown ears"
+ },
+ {
+ "index": 789,
+ "image_id": 2356804,
+ "entity": "dog",
+ "caption": "two dogs with their tongues hanging out",
+ "question": [
+ "are there two dogs ?",
+ "are there their tongues ?"
+ ],
+ "prompt": "two {}s with their tongues hanging out"
+ },
+ {
+ "index": 790,
+ "image_id": 2356804,
+ "entity": "dog",
+ "caption": "the dogs are in long grass",
+ "question": [
+ "are there the dogs ?",
+ "is there long grass ?"
+ ],
+ "prompt": "the {}s are in long grass"
+ },
+ {
+ "index": 791,
+ "image_id": 2356762,
+ "entity": "dog",
+ "caption": "This is a dog trying to catch an apple.",
+ "question": [
+ "is there a dog ?",
+ "is there an apple ?"
+ ],
+ "prompt": "This is a {} trying to catch an apple."
+ },
+ {
+ "index": 792,
+ "image_id": 2356762,
+ "entity": "dog",
+ "caption": "The dog has only a few teeth.",
+ "question": [
+ "is there the dog ?",
+ "are there only a few teeth ?"
+ ],
+ "prompt": "The {} has only a few teeth."
+ },
+ {
+ "index": 793,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dog's nose is thru the hole",
+ "question": [
+ "is there the dog's nose ?",
+ "is there the hole ?"
+ ],
+ "prompt": "the {}'s nose is thru the hole"
+ },
+ {
+ "index": 794,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dogs head is stuck",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s head is stuck"
+ },
+ {
+ "index": 795,
+ "image_id": 2356701,
+ "entity": "dog",
+ "caption": "the dogs head is stuck in the wheel",
+ "question": [
+ "are there the dogs ?",
+ "is there the wheel ?"
+ ],
+ "prompt": "the {}s head is stuck in the wheel"
+ },
+ {
+ "index": 796,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog wears black glasses",
+ "question": [
+ "is there dog ?",
+ "are there black glasses ?"
+ ],
+ "prompt": "{} wears black glasses"
+ },
+ {
+ "index": 797,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog wears black jacket",
+ "question": [
+ "is there dog ?",
+ "is there black jacket ?"
+ ],
+ "prompt": "{} wears black jacket"
+ },
+ {
+ "index": 798,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog is near motorcycle",
+ "question": [
+ "is there dog ?",
+ "is there motorcycle ?"
+ ],
+ "prompt": "{} is near motorcycle"
+ },
+ {
+ "index": 799,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "the dog has sunglasses ",
+ "question": [
+ "is there the dog ?",
+ "are there sunglasses ?"
+ ],
+ "prompt": "the {} has sunglasses "
+ },
+ {
+ "index": 800,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "the dog is on the bike ",
+ "question": [
+ "is there the dog ?",
+ "is there the bike ?"
+ ],
+ "prompt": "the {} is on the bike "
+ },
+ {
+ "index": 801,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "This dog is wearing sunglasses.",
+ "question": [
+ "is there this dog ?",
+ "are there sunglasses ?"
+ ],
+ "prompt": "This {} is wearing sunglasses."
+ },
+ {
+ "index": 802,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog has leash on",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has leash on"
+ },
+ {
+ "index": 803,
+ "image_id": 2356554,
+ "entity": "dog",
+ "caption": "dog is sitting in side car",
+ "question": [
+ "is there dog ?",
+ "is there side car ?"
+ ],
+ "prompt": "{} is sitting in side car"
+ },
+ {
+ "index": 804,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "blue dog bone shaped tag",
+ "question": [
+ "is there blue dog bone shaped tag ?"
+ ],
+ "prompt": "blue {} bone shaped tag"
+ },
+ {
+ "index": 805,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "dog is wearing a red collar",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "{} is wearing a red collar"
+ },
+ {
+ "index": 806,
+ "image_id": 2356153,
+ "entity": "dog",
+ "caption": "dog is walking on the dirt",
+ "question": [
+ "is there dog ?",
+ "is there the dirt ?"
+ ],
+ "prompt": "{} is walking on the dirt"
+ },
+ {
+ "index": 807,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is wearing goggles",
+ "question": [
+ "is there the dog ?",
+ "are there goggles ?"
+ ],
+ "prompt": "The {} is wearing goggles"
+ },
+ {
+ "index": 808,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is on a motorcycle",
+ "question": [
+ "is there the dog ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "The {} is on a motorcycle"
+ },
+ {
+ "index": 809,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "The dog is wearing a leather jacket",
+ "question": [
+ "is there the dog ?",
+ "is there a leather jacket ?"
+ ],
+ "prompt": "The {} is wearing a leather jacket"
+ },
+ {
+ "index": 810,
+ "image_id": 2355985,
+ "entity": "dog",
+ "caption": "the nose is black on the dog ",
+ "question": [
+ "is there the nose ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the nose is black on the {} "
+ },
+ {
+ "index": 811,
+ "image_id": 2355964,
+ "entity": "dog",
+ "caption": "dog ears is pink inside ",
+ "question": [
+ "are there dog ears ?"
+ ],
+ "prompt": "{} ears is pink inside "
+ },
+ {
+ "index": 812,
+ "image_id": 2355964,
+ "entity": "dog",
+ "caption": "dog has black nose ",
+ "question": [
+ "is there dog ?",
+ "is there black nose ?"
+ ],
+ "prompt": "{} has black nose "
+ },
+ {
+ "index": 813,
+ "image_id": 2355944,
+ "entity": "dog",
+ "caption": "The dog is wearing a color",
+ "question": [
+ "is there the dog ?",
+ "is there a color ?"
+ ],
+ "prompt": "The {} is wearing a color"
+ },
+ {
+ "index": 814,
+ "image_id": 2355865,
+ "entity": "dog",
+ "caption": "it is the eye of the dog ",
+ "question": [
+ "is there the eye ?",
+ "is there the dog ?"
+ ],
+ "prompt": "it is the eye of the {} "
+ },
+ {
+ "index": 815,
+ "image_id": 2355519,
+ "entity": "dog",
+ "caption": "The dog has a frisbee in its mouth",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "The {} has a frisbee in its mouth"
+ },
+ {
+ "index": 816,
+ "image_id": 2355511,
+ "entity": "dog",
+ "caption": "a black dog right ear ",
+ "question": [
+ "is there a black dog right ear ?"
+ ],
+ "prompt": "a black {} right ear "
+ },
+ {
+ "index": 817,
+ "image_id": 2355511,
+ "entity": "dog",
+ "caption": "A black dog ready to get a bath",
+ "question": [
+ "is there a black dog ?",
+ "is there a bath ?"
+ ],
+ "prompt": "A black {} ready to get a bath"
+ },
+ {
+ "index": 818,
+ "image_id": 2355409,
+ "entity": "dog",
+ "caption": "a dog catchign a freesbee",
+ "question": [
+ "is there a dog ?",
+ "is there a freesbee ?"
+ ],
+ "prompt": "a {} catchign a freesbee"
+ },
+ {
+ "index": 819,
+ "image_id": 2355409,
+ "entity": "dog",
+ "caption": "a white dog catchign a black freesbee",
+ "question": [
+ "is there a white dog ?"
+ ],
+ "prompt": "a white {} catchign a black freesbee"
+ },
+ {
+ "index": 820,
+ "image_id": 2355256,
+ "entity": "dog",
+ "caption": "dog is brown and white",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} is brown and white"
+ },
+ {
+ "index": 821,
+ "image_id": 2354835,
+ "entity": "dog",
+ "caption": "Brown dog's head sticking out of car window.",
+ "question": [
+ "is there brown dog's head ?",
+ "is there car window ?"
+ ],
+ "prompt": "Brown {}'s head sticking out of car window."
+ },
+ {
+ "index": 822,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "bike is behind the dog",
+ "question": [
+ "is there bike ?",
+ "is there the dog ?"
+ ],
+ "prompt": "bike is behind the {}"
+ },
+ {
+ "index": 823,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "dog has tongue out",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} has tongue out"
+ },
+ {
+ "index": 824,
+ "image_id": 2354515,
+ "entity": "dog",
+ "caption": "dog is on the street",
+ "question": [
+ "is there dog ?",
+ "is there the street ?"
+ ],
+ "prompt": "{} is on the street"
+ },
+ {
+ "index": 825,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "This dog has a donut in his mouth",
+ "question": [
+ "is there this dog ?",
+ "is there a donut ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "This {} has a donut in his mouth"
+ },
+ {
+ "index": 826,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog is wearing a red color.",
+ "question": [
+ "is there the dog ?",
+ "is there a red color ?"
+ ],
+ "prompt": "The {} is wearing a red color."
+ },
+ {
+ "index": 827,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog is sitting on the grass.",
+ "question": [
+ "is there the dog ?",
+ "is there the grass ?"
+ ],
+ "prompt": "The {} is sitting on the grass."
+ },
+ {
+ "index": 828,
+ "image_id": 2354497,
+ "entity": "dog",
+ "caption": "The dog has two spots on his face.",
+ "question": [
+ "is there the dog ?",
+ "are there two spots ?",
+ "is there his face ?"
+ ],
+ "prompt": "The {} has two spots on his face."
+ },
+ {
+ "index": 829,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "The dog nose is black",
+ "question": [
+ "is there the dog nose ?"
+ ],
+ "prompt": "The {} nose is black"
+ },
+ {
+ "index": 830,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "tan/yellow dog laying across young girls lap",
+ "question": [
+ "is there tan/yellow dog ?",
+ "are there young girls ?"
+ ],
+ "prompt": "tan/yellow {} laying across young girls lap"
+ },
+ {
+ "index": 831,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "dog is wearing a red collar around neck",
+ "question": [
+ "is there dog ?",
+ "is there a red collar ?",
+ "is there neck ?"
+ ],
+ "prompt": "{} is wearing a red collar around neck"
+ },
+ {
+ "index": 832,
+ "image_id": 2354494,
+ "entity": "dog",
+ "caption": "Woman laying on the couch with dog.",
+ "question": [
+ "is there woman ?",
+ "is there the couch ?",
+ "is there dog ?"
+ ],
+ "prompt": "Woman laying on the couch with {}."
+ },
+ {
+ "index": 833,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "The dog's head is on the keyboard",
+ "question": [
+ "is there the dog's head ?",
+ "is there the keyboard ?"
+ ],
+ "prompt": "The {}'s head is on the keyboard"
+ },
+ {
+ "index": 834,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue and yellow collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue and yellow collar ?"
+ ],
+ "prompt": "The {} is wearing a blue and yellow collar"
+ },
+ {
+ "index": 835,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "dog is on the keys",
+ "question": [
+ "is there dog ?",
+ "are there the keys ?"
+ ],
+ "prompt": "{} is on the keys"
+ },
+ {
+ "index": 836,
+ "image_id": 2354353,
+ "entity": "dog",
+ "caption": "the dog has yellow and blue flowers",
+ "question": [
+ "is there the dog ?",
+ "are there yellow and blue flowers ?"
+ ],
+ "prompt": "the {} has yellow and blue flowers"
+ },
+ {
+ "index": 837,
+ "image_id": 2353969,
+ "entity": "dog",
+ "caption": "dog has white paw",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has white paw"
+ },
+ {
+ "index": 838,
+ "image_id": 2353969,
+ "entity": "dog",
+ "caption": "dog is laying down on rug",
+ "question": [
+ "is there dog ?",
+ "is there rug ?"
+ ],
+ "prompt": "{} is laying down on rug"
+ },
+ {
+ "index": 839,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "the dog's eye is yellowish",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is yellowish"
+ },
+ {
+ "index": 840,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog has long ears",
+ "question": [
+ "is there the dog ?",
+ "are there long ears ?"
+ ],
+ "prompt": "The {} has long ears"
+ },
+ {
+ "index": 841,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog is wide eyed",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is wide eyed"
+ },
+ {
+ "index": 842,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog's nose is very black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is very black"
+ },
+ {
+ "index": 843,
+ "image_id": 2353558,
+ "entity": "dog",
+ "caption": "The dog is wearing a bowl",
+ "question": [
+ "is there the dog ?",
+ "is there a bowl ?"
+ ],
+ "prompt": "The {} is wearing a bowl"
+ },
+ {
+ "index": 844,
+ "image_id": 2353404,
+ "entity": "dog",
+ "caption": "the plastic buckle on the dog",
+ "question": [
+ "is there the plastic buckle ?",
+ "is there the dog ?"
+ ],
+ "prompt": "the plastic buckle on the {}"
+ },
+ {
+ "index": 845,
+ "image_id": 2353404,
+ "entity": "dog",
+ "caption": "the dog walking and connected to a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} walking and connected to a chain"
+ },
+ {
+ "index": 846,
+ "image_id": 2353398,
+ "entity": "dog",
+ "caption": "green felt the dog is standing on",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "green felt the {} is standing on"
+ },
+ {
+ "index": 847,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "the dog is on a sofa",
+ "question": [
+ "is there the dog ?",
+ "is there a sofa ?"
+ ],
+ "prompt": "the {} is on a sofa"
+ },
+ {
+ "index": 848,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "dog's eyes are amber",
+ "question": [
+ "are there dog's eyes ?",
+ "is there amber ?"
+ ],
+ "prompt": "{}'s eyes are amber"
+ },
+ {
+ "index": 849,
+ "image_id": 2353062,
+ "entity": "dog",
+ "caption": "dog is laying on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} is laying on a couch"
+ },
+ {
+ "index": 850,
+ "image_id": 2352757,
+ "entity": "dog",
+ "caption": "the dog is wearing a jacket",
+ "question": [
+ "is there the dog ?",
+ "is there a jacket ?"
+ ],
+ "prompt": "the {} is wearing a jacket"
+ },
+ {
+ "index": 851,
+ "image_id": 2352757,
+ "entity": "dog",
+ "caption": "the dog has a black tail",
+ "question": [
+ "is there the dog ?",
+ "is there a black tail ?"
+ ],
+ "prompt": "the {} has a black tail"
+ },
+ {
+ "index": 852,
+ "image_id": 2352502,
+ "entity": "dog",
+ "caption": "The dog is biting the frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is biting the frisbee."
+ },
+ {
+ "index": 853,
+ "image_id": 2352502,
+ "entity": "dog",
+ "caption": "The dog is on the beach.",
+ "question": [
+ "is there the dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "The {} is on the beach."
+ },
+ {
+ "index": 854,
+ "image_id": 2351971,
+ "entity": "dog",
+ "caption": "legs and paws of dog that allow dog to walk with ",
+ "question": [
+ "are there legs ?",
+ "are there paws ?",
+ "is there dog ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs and paws of {} that allow {} to walk with "
+ },
+ {
+ "index": 855,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "The dog is holding a bowl in his mouth",
+ "question": [
+ "is there the dog ?",
+ "is there a bowl ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} is holding a bowl in his mouth"
+ },
+ {
+ "index": 856,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "The dog's ear is hanging downwards",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "The {}'s ear is hanging downwards"
+ },
+ {
+ "index": 857,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "dog has light brown face",
+ "question": [
+ "is there dog ?",
+ "is there light brown face ?"
+ ],
+ "prompt": "{} has light brown face"
+ },
+ {
+ "index": 858,
+ "image_id": 2351950,
+ "entity": "dog",
+ "caption": "dog is holding bowl",
+ "question": [
+ "is there dog ?",
+ "is there bowl ?"
+ ],
+ "prompt": "{} is holding bowl"
+ },
+ {
+ "index": 859,
+ "image_id": 2351811,
+ "entity": "dog",
+ "caption": "the dogs head ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s head "
+ },
+ {
+ "index": 860,
+ "image_id": 2351083,
+ "entity": "dog",
+ "caption": "dog holds a cap",
+ "question": [
+ "is there dog ?",
+ "is there a cap ?"
+ ],
+ "prompt": "{} holds a cap"
+ },
+ {
+ "index": 861,
+ "image_id": 2351083,
+ "entity": "dog",
+ "caption": "the dogs nose is black",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "the {}s nose is black"
+ },
+ {
+ "index": 862,
+ "image_id": 2350951,
+ "entity": "dog",
+ "caption": "the mouth of dog is open",
+ "question": [
+ "is there the mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "the mouth of {} is open"
+ },
+ {
+ "index": 863,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the unfortunate dog is wearing a Harley Davidson bandanna",
+ "question": [
+ "is there the unfortunate dog ?"
+ ],
+ "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"
+ },
+ {
+ "index": 864,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the unfortunate dog is wearing a biker headband",
+ "question": [
+ "is there the unfortunate dog ?",
+ "is there a biker headband ?"
+ ],
+ "prompt": "the unfortunate {} is wearing a biker headband"
+ },
+ {
+ "index": 865,
+ "image_id": 2350646,
+ "entity": "dog",
+ "caption": "the dog has cropped ears",
+ "question": [
+ "is there the dog ?",
+ "are there ears ?"
+ ],
+ "prompt": "the {} has cropped ears"
+ },
+ {
+ "index": 866,
+ "image_id": 2350609,
+ "entity": "dog",
+ "caption": "lot where dog and woman stand",
+ "question": [
+ "is there lot ?",
+ "is there dog ?",
+ "is there woman ?"
+ ],
+ "prompt": "lot where {} and woman stand"
+ },
+ {
+ "index": 867,
+ "image_id": 2350606,
+ "entity": "dog",
+ "caption": "the dog is on a white platform",
+ "question": [
+ "is there the dog ?",
+ "is there a white platform ?"
+ ],
+ "prompt": "the {} is on a white platform"
+ },
+ {
+ "index": 868,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "legs of dog running",
+ "question": [
+ "are there legs ?",
+ "is there dog ?"
+ ],
+ "prompt": "legs of {} running"
+ },
+ {
+ "index": 869,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "open mouth of dog running",
+ "question": [
+ "is there open mouth ?",
+ "is there dog ?"
+ ],
+ "prompt": "open mouth of {} running"
+ },
+ {
+ "index": 870,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog is white with black spots",
+ "question": [
+ "is there the dog ?",
+ "are there black spots ?"
+ ],
+ "prompt": "the {} is white with black spots"
+ },
+ {
+ "index": 871,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog is running with his mouth open",
+ "question": [
+ "is there the dog ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "the {} is running with his mouth open"
+ },
+ {
+ "index": 872,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog has a black spot over his eye",
+ "question": [
+ "is there the dog ?",
+ "is there a black spot ?",
+ "is there his eye ?"
+ ],
+ "prompt": "the {} has a black spot over his eye"
+ },
+ {
+ "index": 873,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dirt is flying from the dog's paws",
+ "question": [
+ "is there the dirt ?",
+ "are there the dog's paws ?"
+ ],
+ "prompt": "the dirt is flying from the {}'s paws"
+ },
+ {
+ "index": 874,
+ "image_id": 2349745,
+ "entity": "dog",
+ "caption": "the dog's paws are touching from running",
+ "question": [
+ "are there the dog's paws ?"
+ ],
+ "prompt": "the {}'s paws are touching from running"
+ },
+ {
+ "index": 875,
+ "image_id": 2349548,
+ "entity": "dog",
+ "caption": "The dogs ear is brown.",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear is brown."
+ },
+ {
+ "index": 876,
+ "image_id": 2349547,
+ "entity": "dog",
+ "caption": "The dog has a pinkish nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a pinkish nose ?"
+ ],
+ "prompt": "The {} has a pinkish nose."
+ },
+ {
+ "index": 877,
+ "image_id": 2349421,
+ "entity": "dog",
+ "caption": "The dog is sitting on the chair ",
+ "question": [
+ "is there the dog ?",
+ "is there the chair ?"
+ ],
+ "prompt": "The {} is sitting on the chair "
+ },
+ {
+ "index": 878,
+ "image_id": 2349268,
+ "entity": "dog",
+ "caption": "the dog has long nails",
+ "question": [
+ "is there the dog ?",
+ "are there long nails ?"
+ ],
+ "prompt": "the {} has long nails"
+ },
+ {
+ "index": 879,
+ "image_id": 2349268,
+ "entity": "dog",
+ "caption": "the dog lays with toy",
+ "question": [
+ "is there the dog ?",
+ "is there toy ?"
+ ],
+ "prompt": "the {} lays with toy"
+ },
+ {
+ "index": 880,
+ "image_id": 2348690,
+ "entity": "dog",
+ "caption": "the dog is chewing up a stuffed animal",
+ "question": [
+ "is there the dog ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "the {} is chewing up a stuffed animal"
+ },
+ {
+ "index": 881,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "dog with hind legs stretched out",
+ "question": [
+ "is there dog ?",
+ "are there hind legs ?"
+ ],
+ "prompt": "{} with hind legs stretched out"
+ },
+ {
+ "index": 882,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "A dog is laying on the bed",
+ "question": [
+ "is there a dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "A {} is laying on the bed"
+ },
+ {
+ "index": 883,
+ "image_id": 2348554,
+ "entity": "dog",
+ "caption": "The dog has white on her paws",
+ "question": [
+ "is there the dog ?",
+ "are there her paws ?"
+ ],
+ "prompt": "The {} has white on her paws"
+ },
+ {
+ "index": 884,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "tan dog's face as he holds the frisbee",
+ "question": [
+ "is there tan dog's face ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "tan {}'s face as he holds the frisbee"
+ },
+ {
+ "index": 885,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "dog's eye looking up past the frisbee",
+ "question": [
+ "is there dog's eye ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{}'s eye looking up past the frisbee"
+ },
+ {
+ "index": 886,
+ "image_id": 2348407,
+ "entity": "dog",
+ "caption": "dog's ear hanging down as he chews the frisbee",
+ "question": [
+ "is there dog's ear ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "{}'s ear hanging down as he chews the frisbee"
+ },
+ {
+ "index": 887,
+ "image_id": 2347998,
+ "entity": "dog",
+ "caption": "dog is on the newspaper",
+ "question": [
+ "is there dog ?",
+ "is there the newspaper ?"
+ ],
+ "prompt": "{} is on the newspaper"
+ },
+ {
+ "index": 888,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "a dog tag shaped like a bone ",
+ "question": [
+ "is there a dog tag ?",
+ "is there a bone ?"
+ ],
+ "prompt": "a {} tag shaped like a bone "
+ },
+ {
+ "index": 889,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is inside a room",
+ "question": [
+ "is there the dog ?",
+ "is there a room ?"
+ ],
+ "prompt": "The {} is inside a room"
+ },
+ {
+ "index": 890,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is next to a television",
+ "question": [
+ "is there the dog ?",
+ "is there a television ?"
+ ],
+ "prompt": "The {} is next to a television"
+ },
+ {
+ "index": 891,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is next to a laptop computer",
+ "question": [
+ "is there the dog ?",
+ "is there a laptop computer ?"
+ ],
+ "prompt": "The {} is next to a laptop computer"
+ },
+ {
+ "index": 892,
+ "image_id": 2347801,
+ "entity": "dog",
+ "caption": "The dog is on a table",
+ "question": [
+ "is there the dog ?",
+ "is there a table ?"
+ ],
+ "prompt": "The {} is on a table"
+ },
+ {
+ "index": 893,
+ "image_id": 2347591,
+ "entity": "dog",
+ "caption": "A woman who is sitting with a dog",
+ "question": [
+ "is there a woman ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A woman who is sitting with a {}"
+ },
+ {
+ "index": 894,
+ "image_id": 2347591,
+ "entity": "dog",
+ "caption": "Woman is holding the dog",
+ "question": [
+ "is there woman ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Woman is holding the {}"
+ },
+ {
+ "index": 895,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "a dog with a disc on it's face",
+ "question": [
+ "is there a dog ?",
+ "is there a disc ?"
+ ],
+ "prompt": "a {} with a disc on it's face"
+ },
+ {
+ "index": 896,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "dog has black and white tail",
+ "question": [
+ "is there dog ?",
+ "is there black and white tail ?"
+ ],
+ "prompt": "{} has black and white tail"
+ },
+ {
+ "index": 897,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "dog has white neck",
+ "question": [
+ "is there dog ?",
+ "is there white neck ?"
+ ],
+ "prompt": "{} has white neck"
+ },
+ {
+ "index": 898,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "The dogs tail",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s tail"
+ },
+ {
+ "index": 899,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "The ears that belong to the dog",
+ "question": [
+ "are there the ears ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The ears that belong to the {}"
+ },
+ {
+ "index": 900,
+ "image_id": 2347481,
+ "entity": "dog",
+ "caption": "A dog that is standing in the dirt",
+ "question": [
+ "is there a dog ?",
+ "is there the dirt ?"
+ ],
+ "prompt": "A {} that is standing in the dirt"
+ },
+ {
+ "index": 901,
+ "image_id": 2347473,
+ "entity": "dog",
+ "caption": "the brown patches on the dogs face",
+ "question": [
+ "are there the brown patches ?",
+ "are there the dogs ?"
+ ],
+ "prompt": "the brown patches on the {}s face"
+ },
+ {
+ "index": 902,
+ "image_id": 2347340,
+ "entity": "dog",
+ "caption": "dog's dark eyes are open",
+ "question": [
+ "are there dog's dark eyes ?"
+ ],
+ "prompt": "{}'s dark eyes are open"
+ },
+ {
+ "index": 903,
+ "image_id": 2347340,
+ "entity": "dog",
+ "caption": "the dog is on a chair",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "the {} is on a chair"
+ },
+ {
+ "index": 904,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "the dog is in a car",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "the {} is in a car"
+ },
+ {
+ "index": 905,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "dog has tongue hanging out ",
+ "question": [
+ "is there dog ?",
+ "is there tongue ?"
+ ],
+ "prompt": "{} has tongue hanging out "
+ },
+ {
+ "index": 906,
+ "image_id": 2347027,
+ "entity": "dog",
+ "caption": "The dog have waggy ear.",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "The {} have waggy ear."
+ },
+ {
+ "index": 907,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is resting his head on the couch.",
+ "question": [
+ "is there the dog ?",
+ "is there his head ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is resting his head on the couch."
+ },
+ {
+ "index": 908,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is wearing a blue collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "The {} is wearing a blue collar."
+ },
+ {
+ "index": 909,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog's eye is open.",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "The {}'s eye is open."
+ },
+ {
+ "index": 910,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog's fur is very short.",
+ "question": [
+ "is there the dog's fur ?"
+ ],
+ "prompt": "The {}'s fur is very short."
+ },
+ {
+ "index": 911,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "The dog is sitting on top of white sheet.",
+ "question": [
+ "is there the dog ?",
+ "is there top ?",
+ "is there white sheet ?"
+ ],
+ "prompt": "The {} is sitting on top of white sheet."
+ },
+ {
+ "index": 912,
+ "image_id": 2346970,
+ "entity": "dog",
+ "caption": "the dogs neck is long ",
+ "question": [
+ "are there the dogs neck ?"
+ ],
+ "prompt": "the {}s neck is long "
+ },
+ {
+ "index": 913,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "dog is catching frisbee",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?"
+ ],
+ "prompt": "{} is catching frisbee"
+ },
+ {
+ "index": 914,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "dog has white frisbee in mouth",
+ "question": [
+ "is there dog ?",
+ "is there white frisbee ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} has white frisbee in mouth"
+ },
+ {
+ "index": 915,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "tree is next to dog",
+ "question": [
+ "is there tree ?",
+ "is there dog ?"
+ ],
+ "prompt": "tree is next to {}"
+ },
+ {
+ "index": 916,
+ "image_id": 2346869,
+ "entity": "dog",
+ "caption": "man in cap leaning forward behind dog",
+ "question": [
+ "is there man ?",
+ "is there cap ?",
+ "is there dog ?"
+ ],
+ "prompt": "man in cap leaning forward behind {}"
+ },
+ {
+ "index": 917,
+ "image_id": 2346765,
+ "entity": "dog",
+ "caption": "neck of dog is white",
+ "question": [
+ "is there neck ?",
+ "is there dog ?"
+ ],
+ "prompt": "neck of {} is white"
+ },
+ {
+ "index": 918,
+ "image_id": 2346434,
+ "entity": "dog",
+ "caption": "the dog's eyes are black",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are black"
+ },
+ {
+ "index": 919,
+ "image_id": 2346434,
+ "entity": "dog",
+ "caption": "black pads and nails are on the dog's paws",
+ "question": [
+ "are there black pads ?",
+ "are there nails ?",
+ "are there the dog's paws ?"
+ ],
+ "prompt": "black pads and nails are on the {}'s paws"
+ },
+ {
+ "index": 920,
+ "image_id": 2346247,
+ "entity": "dog",
+ "caption": "Brown ear on the dog.",
+ "question": [
+ "is there brown ear ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Brown ear on the {}."
+ },
+ {
+ "index": 921,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "the black dog has a sad face",
+ "question": [
+ "is there the black dog ?",
+ "is there a sad face ?"
+ ],
+ "prompt": "the black {} has a sad face"
+ },
+ {
+ "index": 922,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "A dog is near a bag.",
+ "question": [
+ "is there a dog ?",
+ "is there a bag ?"
+ ],
+ "prompt": "A {} is near a bag."
+ },
+ {
+ "index": 923,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog's mouth is closed.",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is closed."
+ },
+ {
+ "index": 924,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog is wearing a crocheted hat.",
+ "question": [
+ "is there the dog ?",
+ "is there a crocheted hat ?"
+ ],
+ "prompt": "The {} is wearing a crocheted hat."
+ },
+ {
+ "index": 925,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog has an ear.",
+ "question": [
+ "is there the dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "The {} has an ear."
+ },
+ {
+ "index": 926,
+ "image_id": 2346086,
+ "entity": "dog",
+ "caption": "The dog has an eye.",
+ "question": [
+ "is there the dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "The {} has an eye."
+ },
+ {
+ "index": 927,
+ "image_id": 2345642,
+ "entity": "dog",
+ "caption": "head of dog bowed down ",
+ "question": [
+ "is there head ?",
+ "is there dog ?"
+ ],
+ "prompt": "head of {} bowed down "
+ },
+ {
+ "index": 928,
+ "image_id": 2345642,
+ "entity": "dog",
+ "caption": "green blanket the dog is laying on",
+ "question": [
+ "is there green blanket ?",
+ "is there the dog ?"
+ ],
+ "prompt": "green blanket the {} is laying on"
+ },
+ {
+ "index": 929,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "the dogs tail ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "the {}s tail "
+ },
+ {
+ "index": 930,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "a black dog looks onward with his tongue hanging out",
+ "question": [
+ "is there a black dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "a black {} looks onward with his tongue hanging out"
+ },
+ {
+ "index": 931,
+ "image_id": 2345272,
+ "entity": "dog",
+ "caption": "a man stands on the boat holding a dog with a leash",
+ "question": [
+ "is there a man ?",
+ "is there the boat ?",
+ "is there a dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "a man stands on the boat holding a {} with a leash"
+ },
+ {
+ "index": 932,
+ "image_id": 2345231,
+ "entity": "dog",
+ "caption": "the dogs paws on on the computer",
+ "question": [
+ "are there the dogs ?",
+ "is there the computer ?"
+ ],
+ "prompt": "the {}s paws on on the computer"
+ },
+ {
+ "index": 933,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "Extra pillow for the dog to be comfortable",
+ "question": [
+ "is there extra pillow ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Extra pillow for the {} to be comfortable"
+ },
+ {
+ "index": 934,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "Teddy bear for the dog",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "Teddy bear for the {}"
+ },
+ {
+ "index": 935,
+ "image_id": 2345068,
+ "entity": "dog",
+ "caption": "a dog curled up on its bed ",
+ "question": [
+ "is there a dog ?",
+ "is there its bed ?"
+ ],
+ "prompt": "a {} curled up on its bed "
+ },
+ {
+ "index": 936,
+ "image_id": 2344922,
+ "entity": "dog",
+ "caption": "This dog has a very red collar",
+ "question": [
+ "is there this dog ?",
+ "is there a very red collar ?"
+ ],
+ "prompt": "This {} has a very red collar"
+ },
+ {
+ "index": 937,
+ "image_id": 2344729,
+ "entity": "dog",
+ "caption": "the dog is in the car",
+ "question": [
+ "is there the dog ?",
+ "is there the car ?"
+ ],
+ "prompt": "the {} is in the car"
+ },
+ {
+ "index": 938,
+ "image_id": 2344729,
+ "entity": "dog",
+ "caption": "this is the dogs leash",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "this is the {}s leash"
+ },
+ {
+ "index": 939,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "The dog is wearing a tag.",
+ "question": [
+ "is there the dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "The {} is wearing a tag."
+ },
+ {
+ "index": 940,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "dog is wearing a tag",
+ "question": [
+ "is there dog ?",
+ "is there a tag ?"
+ ],
+ "prompt": "{} is wearing a tag"
+ },
+ {
+ "index": 941,
+ "image_id": 2344635,
+ "entity": "dog",
+ "caption": "dogs eye looks white ",
+ "question": [
+ "are there dogs ?"
+ ],
+ "prompt": "{}s eye looks white "
+ },
+ {
+ "index": 942,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs nose is black.",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is black."
+ },
+ {
+ "index": 943,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs nose is small",
+ "question": [
+ "are there the dogs nose ?"
+ ],
+ "prompt": "The {}s nose is small"
+ },
+ {
+ "index": 944,
+ "image_id": 2344526,
+ "entity": "dog",
+ "caption": "The dogs fur is white.",
+ "question": [
+ "are there the dogs ?",
+ "is there fur ?"
+ ],
+ "prompt": "The {}s fur is white."
+ },
+ {
+ "index": 945,
+ "image_id": 2344358,
+ "entity": "dog",
+ "caption": "this dog is under a white blanket",
+ "question": [
+ "is there this dog ?",
+ "is there a white blanket ?"
+ ],
+ "prompt": "this {} is under a white blanket"
+ },
+ {
+ "index": 946,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "the dog is at the beach",
+ "question": [
+ "is there the dog ?",
+ "is there the beach ?"
+ ],
+ "prompt": "the {} is at the beach"
+ },
+ {
+ "index": 947,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "the dog is sitting on a towel",
+ "question": [
+ "is there the dog ?",
+ "is there a towel ?"
+ ],
+ "prompt": "the {} is sitting on a towel"
+ },
+ {
+ "index": 948,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "a bag is by the dog",
+ "question": [
+ "is there a bag ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a bag is by the {}"
+ },
+ {
+ "index": 949,
+ "image_id": 2344283,
+ "entity": "dog",
+ "caption": "Brown dog is on a towel",
+ "question": [
+ "is there brown dog ?",
+ "is there a towel ?"
+ ],
+ "prompt": "Brown {} is on a towel"
+ },
+ {
+ "index": 950,
+ "image_id": 2344228,
+ "entity": "dog",
+ "caption": "the dog has a brown part",
+ "question": [
+ "is there the dog ?",
+ "is there a brown part ?"
+ ],
+ "prompt": "the {} has a brown part"
+ },
+ {
+ "index": 951,
+ "image_id": 2344228,
+ "entity": "dog",
+ "caption": "the dog has a black spot",
+ "question": [
+ "is there the dog ?",
+ "is there a black spot ?"
+ ],
+ "prompt": "the {} has a black spot"
+ },
+ {
+ "index": 952,
+ "image_id": 2343539,
+ "entity": "dog",
+ "caption": "dog's tongue is hanging out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is hanging out"
+ },
+ {
+ "index": 953,
+ "image_id": 2343539,
+ "entity": "dog",
+ "caption": "dog's ears are back ",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are back "
+ },
+ {
+ "index": 954,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has three balls",
+ "question": [
+ "is there the dog ?",
+ "are there three balls ?"
+ ],
+ "prompt": "the {} has three balls"
+ },
+ {
+ "index": 955,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has balls in his mouth",
+ "question": [
+ "is there the dog ?",
+ "are there balls ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "the {} has balls in his mouth"
+ },
+ {
+ "index": 956,
+ "image_id": 2343194,
+ "entity": "dog",
+ "caption": "the dog has a spotted nose",
+ "question": [
+ "is there the dog ?",
+ "is there a spotted nose ?"
+ ],
+ "prompt": "the {} has a spotted nose"
+ },
+ {
+ "index": 957,
+ "image_id": 2343149,
+ "entity": "dog",
+ "caption": "The dog is splashing water",
+ "question": [
+ "is there the dog ?",
+ "is there water ?"
+ ],
+ "prompt": "The {} is splashing water"
+ },
+ {
+ "index": 958,
+ "image_id": 2343149,
+ "entity": "dog",
+ "caption": "The dog's teeth are visible",
+ "question": [
+ "are there the dog's teeth ?"
+ ],
+ "prompt": "The {}'s teeth are visible"
+ },
+ {
+ "index": 959,
+ "image_id": 2343038,
+ "entity": "dog",
+ "caption": "dog with eyes closed",
+ "question": [
+ "is there dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} with eyes closed"
+ },
+ {
+ "index": 960,
+ "image_id": 2342562,
+ "entity": "dog",
+ "caption": "dog mout to grab frisbees and eat food and drink water ",
+ "question": [
+ "is there dog mout ?",
+ "are there frisbees ?",
+ "is there food ?",
+ "is there water ?"
+ ],
+ "prompt": "{} mout to grab frisbees and eat food and drink water "
+ },
+ {
+ "index": 961,
+ "image_id": 2342562,
+ "entity": "dog",
+ "caption": "The dog has a black ear.",
+ "question": [
+ "is there the dog ?",
+ "is there a black ear ?"
+ ],
+ "prompt": "The {} has a black ear."
+ },
+ {
+ "index": 962,
+ "image_id": 2341045,
+ "entity": "dog",
+ "caption": "this dog and teddy bear are posing",
+ "question": [
+ "is there this dog ?",
+ "is there bear ?"
+ ],
+ "prompt": "this {} and teddy bear are posing"
+ },
+ {
+ "index": 963,
+ "image_id": 2341045,
+ "entity": "dog",
+ "caption": "The dog is resting on white shaggy carpet.",
+ "question": [
+ "is there the dog ?",
+ "is there white shaggy carpet ?"
+ ],
+ "prompt": "The {} is resting on white shaggy carpet."
+ },
+ {
+ "index": 964,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The banana is inside the dog's mouth.",
+ "question": [
+ "is there the banana ?",
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The banana is inside the {}'s mouth."
+ },
+ {
+ "index": 965,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The little dog is sitting on top of the white blanket.",
+ "question": [
+ "is there the little dog ?",
+ "is there top ?",
+ "is there the white blanket ?"
+ ],
+ "prompt": "The little {} is sitting on top of the white blanket."
+ },
+ {
+ "index": 966,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The dog has a pink collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a pink collar ?"
+ ],
+ "prompt": "The {} has a pink collar."
+ },
+ {
+ "index": 967,
+ "image_id": 2340940,
+ "entity": "dog",
+ "caption": "The dog is wearing a white collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a white collar ?"
+ ],
+ "prompt": "The {} is wearing a white collar."
+ },
+ {
+ "index": 968,
+ "image_id": 2340686,
+ "entity": "dog",
+ "caption": "The dog face is partially white.",
+ "question": [
+ "is there the dog face ?"
+ ],
+ "prompt": "The {} face is partially white."
+ },
+ {
+ "index": 969,
+ "image_id": 2339641,
+ "entity": "dog",
+ "caption": "dog has white spot on chest",
+ "question": [
+ "is there dog ?",
+ "is there white spot ?",
+ "is there chest ?"
+ ],
+ "prompt": "{} has white spot on chest"
+ },
+ {
+ "index": 970,
+ "image_id": 2339641,
+ "entity": "dog",
+ "caption": "dog is on a motorcycle",
+ "question": [
+ "is there dog ?",
+ "is there a motorcycle ?"
+ ],
+ "prompt": "{} is on a motorcycle"
+ },
+ {
+ "index": 971,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "The dog sits on a chair. ",
+ "question": [
+ "is there the dog ?",
+ "is there a chair ?"
+ ],
+ "prompt": "The {} sits on a chair. "
+ },
+ {
+ "index": 972,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "A blanket that the dog sits on.",
+ "question": [
+ "is there a blanket ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A blanket that the {} sits on."
+ },
+ {
+ "index": 973,
+ "image_id": 2339617,
+ "entity": "dog",
+ "caption": "dog has black back",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has black back"
+ },
+ {
+ "index": 974,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "The cat is next to the dog.",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The cat is next to the {}."
+ },
+ {
+ "index": 975,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "The paw on the dog is white.",
+ "question": [
+ "is there the paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The paw on the {} is white."
+ },
+ {
+ "index": 976,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "brown striped cat lays next to dog",
+ "question": [
+ "is there brown striped cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "brown striped cat lays next to {}"
+ },
+ {
+ "index": 977,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "white front left paw on dog",
+ "question": [
+ "is there white front ?",
+ "is there paw ?",
+ "is there dog ?"
+ ],
+ "prompt": "white front left paw on {}"
+ },
+ {
+ "index": 978,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "dog has white fur around nose",
+ "question": [
+ "is there dog ?",
+ "is there white fur ?",
+ "is there nose ?"
+ ],
+ "prompt": "{} has white fur around nose"
+ },
+ {
+ "index": 979,
+ "image_id": 2339511,
+ "entity": "dog",
+ "caption": "dog has white fur around paws",
+ "question": [
+ "is there dog ?",
+ "is there white fur ?",
+ "are there paws ?"
+ ],
+ "prompt": "{} has white fur around paws"
+ },
+ {
+ "index": 980,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has black ear",
+ "question": [
+ "is there dog ?",
+ "is there black ear ?"
+ ],
+ "prompt": "{} has black ear"
+ },
+ {
+ "index": 981,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has black eye",
+ "question": [
+ "is there dog ?",
+ "is there black eye ?"
+ ],
+ "prompt": "{} has black eye"
+ },
+ {
+ "index": 982,
+ "image_id": 2339238,
+ "entity": "dog",
+ "caption": "dog has a white tooth",
+ "question": [
+ "is there dog ?",
+ "is there a white tooth ?"
+ ],
+ "prompt": "{} has a white tooth"
+ },
+ {
+ "index": 983,
+ "image_id": 2337950,
+ "entity": "dog",
+ "caption": "couch man and dog are sitting on",
+ "question": [
+ "is there couch man ?",
+ "is there dog ?"
+ ],
+ "prompt": "couch man and {} are sitting on"
+ },
+ {
+ "index": 984,
+ "image_id": 2337205,
+ "entity": "dog",
+ "caption": "the dog's eye is open ",
+ "question": [
+ "is there the dog's eye ?"
+ ],
+ "prompt": "the {}'s eye is open "
+ },
+ {
+ "index": 985,
+ "image_id": 2336811,
+ "entity": "dog",
+ "caption": "Front left paw of the dog",
+ "question": [
+ "is there front left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Front left paw of the {}"
+ },
+ {
+ "index": 986,
+ "image_id": 2336773,
+ "entity": "dog",
+ "caption": "Small dogs right eye",
+ "question": [
+ "are there small dogs ?"
+ ],
+ "prompt": "Small {}s right eye"
+ },
+ {
+ "index": 987,
+ "image_id": 2336773,
+ "entity": "dog",
+ "caption": "Small dogs left eye",
+ "question": [
+ "are there small dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "Small {}s left eye"
+ },
+ {
+ "index": 988,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog is carrying a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is carrying a frisbee"
+ },
+ {
+ "index": 989,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's front legs are white",
+ "question": [
+ "are there the dog's front legs ?"
+ ],
+ "prompt": "the {}'s front legs are white"
+ },
+ {
+ "index": 990,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's back legs are black",
+ "question": [
+ "are there the dog's back legs ?"
+ ],
+ "prompt": "the {}'s back legs are black"
+ },
+ {
+ "index": 991,
+ "image_id": 2336693,
+ "entity": "dog",
+ "caption": "the dog's shadow is in the grass",
+ "question": [
+ "is there the dog's shadow ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {}'s shadow is in the grass"
+ },
+ {
+ "index": 992,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "dog with it's head in a box",
+ "question": [
+ "is there dog ?",
+ "is there head ?",
+ "is there a box ?"
+ ],
+ "prompt": "{} with it's head in a box"
+ },
+ {
+ "index": 993,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "A black streak down dogs back",
+ "question": [
+ "is there a black streak ?"
+ ],
+ "prompt": "A black streak down {}s back"
+ },
+ {
+ "index": 994,
+ "image_id": 2336402,
+ "entity": "dog",
+ "caption": "the dogs head is in the box",
+ "question": [
+ "are there the dogs ?",
+ "is there the box ?"
+ ],
+ "prompt": "the {}s head is in the box"
+ },
+ {
+ "index": 995,
+ "image_id": 2336257,
+ "entity": "dog",
+ "caption": "the dog is in water",
+ "question": [
+ "is there the dog ?",
+ "is there water ?"
+ ],
+ "prompt": "the {} is in water"
+ },
+ {
+ "index": 996,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "Black and white dog standing on a sandy ground.",
+ "question": [
+ "is there black and white dog ?",
+ "is there a sandy ground ?"
+ ],
+ "prompt": "Black and white {} standing on a sandy ground."
+ },
+ {
+ "index": 997,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "The dog's pink tongue sticking out.",
+ "question": [
+ "is there the dog's pink tongue ?"
+ ],
+ "prompt": "The {}'s pink tongue sticking out."
+ },
+ {
+ "index": 998,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's face is black and white",
+ "question": [
+ "is there dog's face ?"
+ ],
+ "prompt": "{}'s face is black and white"
+ },
+ {
+ "index": 999,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's tongue is sticking out",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is sticking out"
+ },
+ {
+ "index": 1000,
+ "image_id": 2336147,
+ "entity": "dog",
+ "caption": "dog's paw is white",
+ "question": [
+ "is there dog's paw ?"
+ ],
+ "prompt": "{}'s paw is white"
+ },
+ {
+ "index": 1001,
+ "image_id": 2336045,
+ "entity": "dog",
+ "caption": "fake dog sits on bench",
+ "question": [
+ "is there fake dog ?",
+ "is there bench ?"
+ ],
+ "prompt": "fake {} sits on bench"
+ },
+ {
+ "index": 1002,
+ "image_id": 2336045,
+ "entity": "dog",
+ "caption": "fake dog wears red collar",
+ "question": [
+ "is there fake dog ?",
+ "is there red collar ?"
+ ],
+ "prompt": "fake {} wears red collar"
+ },
+ {
+ "index": 1003,
+ "image_id": 2335892,
+ "entity": "dog",
+ "caption": "Toy occupies leashed dog.",
+ "question": [
+ "is there toy ?",
+ "is there leashed dog ?"
+ ],
+ "prompt": "Toy occupies leashed {}."
+ },
+ {
+ "index": 1004,
+ "image_id": 2335707,
+ "entity": "dog",
+ "caption": "dog has dark claws",
+ "question": [
+ "is there dog ?",
+ "are there dark claws ?"
+ ],
+ "prompt": "{} has dark claws"
+ },
+ {
+ "index": 1005,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "Tan dog is holding toy in mouth.",
+ "question": [
+ "is there tan dog ?",
+ "is there toy ?",
+ "is there mouth ?"
+ ],
+ "prompt": "Tan {} is holding toy in mouth."
+ },
+ {
+ "index": 1006,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "This dog seems to have a white face",
+ "question": [
+ "is there this dog ?",
+ "is there a white face ?"
+ ],
+ "prompt": "This {} seems to have a white face"
+ },
+ {
+ "index": 1007,
+ "image_id": 2335655,
+ "entity": "dog",
+ "caption": "This dog has quite a paw visible here",
+ "question": [
+ "is there this dog ?",
+ "is there quite a paw ?"
+ ],
+ "prompt": "This {} has quite a paw visible here"
+ },
+ {
+ "index": 1008,
+ "image_id": 2335550,
+ "entity": "dog",
+ "caption": "dog is laying on the couch",
+ "question": [
+ "is there dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "{} is laying on the couch"
+ },
+ {
+ "index": 1009,
+ "image_id": 2335550,
+ "entity": "dog",
+ "caption": "dog has fluffy dark fur",
+ "question": [
+ "is there dog ?",
+ "is there fluffy dark fur ?"
+ ],
+ "prompt": "{} has fluffy dark fur"
+ },
+ {
+ "index": 1010,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "an ear is up on the dog",
+ "question": [
+ "is there an ear ?",
+ "is there the dog ?"
+ ],
+ "prompt": "an ear is up on the {}"
+ },
+ {
+ "index": 1011,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "the dog is wearing a yellow coat",
+ "question": [
+ "is there the dog ?",
+ "is there a yellow coat ?"
+ ],
+ "prompt": "the {} is wearing a yellow coat"
+ },
+ {
+ "index": 1012,
+ "image_id": 2335487,
+ "entity": "dog",
+ "caption": "dog's cloth is green",
+ "question": [
+ "is there dog's cloth ?"
+ ],
+ "prompt": "{}'s cloth is green"
+ },
+ {
+ "index": 1013,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "Chain connected to dog's collar.",
+ "question": [
+ "is there chain ?",
+ "is there dog's collar ?"
+ ],
+ "prompt": "Chain connected to {}'s collar."
+ },
+ {
+ "index": 1014,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "the dog has a collar ",
+ "question": [
+ "is there the dog ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar "
+ },
+ {
+ "index": 1015,
+ "image_id": 2334964,
+ "entity": "dog",
+ "caption": "the collar is around the dog's neck",
+ "question": [
+ "is there the collar ?",
+ "is there the dog's neck ?"
+ ],
+ "prompt": "the collar is around the {}'s neck"
+ },
+ {
+ "index": 1016,
+ "image_id": 2334936,
+ "entity": "dog",
+ "caption": "dog has an eye",
+ "question": [
+ "is there dog ?",
+ "is there an eye ?"
+ ],
+ "prompt": "{} has an eye"
+ },
+ {
+ "index": 1017,
+ "image_id": 2334611,
+ "entity": "dog",
+ "caption": "front left foot on dog",
+ "question": [
+ "is there front left foot ?",
+ "is there dog ?"
+ ],
+ "prompt": "front left foot on {}"
+ },
+ {
+ "index": 1018,
+ "image_id": 2334526,
+ "entity": "dog",
+ "caption": "The dog nose is black.",
+ "question": [
+ "is there the dog nose ?"
+ ],
+ "prompt": "The {} nose is black."
+ },
+ {
+ "index": 1019,
+ "image_id": 2334526,
+ "entity": "dog",
+ "caption": "The dog eyes on his face.",
+ "question": [
+ "is there the dog ?",
+ "is there his face ?"
+ ],
+ "prompt": "The {} eyes on his face."
+ },
+ {
+ "index": 1020,
+ "image_id": 2334482,
+ "entity": "dog",
+ "caption": "This is a dog",
+ "question": [
+ "is there a dog ?"
+ ],
+ "prompt": "This is a {}"
+ },
+ {
+ "index": 1021,
+ "image_id": 2334482,
+ "entity": "dog",
+ "caption": "The dog is on a bench",
+ "question": [
+ "is there the dog ?",
+ "is there a bench ?"
+ ],
+ "prompt": "The {} is on a bench"
+ },
+ {
+ "index": 1022,
+ "image_id": 2334375,
+ "entity": "dog",
+ "caption": "dog nose is black",
+ "question": [
+ "is there dog nose ?"
+ ],
+ "prompt": "{} nose is black"
+ },
+ {
+ "index": 1023,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left eye is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye is black."
+ },
+ {
+ "index": 1024,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left eye is round.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s left eye is round."
+ },
+ {
+ "index": 1025,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs left ear is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "The {}s left ear is black."
+ },
+ {
+ "index": 1026,
+ "image_id": 2334355,
+ "entity": "dog",
+ "caption": "The dogs right eye is black.",
+ "question": [
+ "are there the dogs ?",
+ "is there right eye ?"
+ ],
+ "prompt": "The {}s right eye is black."
+ },
+ {
+ "index": 1027,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "The dog is laying on the back of the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the back ?",
+ "is there the couch ?"
+ ],
+ "prompt": "The {} is laying on the back of the couch"
+ },
+ {
+ "index": 1028,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "The dogs tongue is sticking out of his mouth",
+ "question": [
+ "are there the dogs tongue ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {}s tongue is sticking out of his mouth"
+ },
+ {
+ "index": 1029,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has a nose",
+ "question": [
+ "is there dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "{} has a nose"
+ },
+ {
+ "index": 1030,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has an ear",
+ "question": [
+ "is there dog ?",
+ "is there an ear ?"
+ ],
+ "prompt": "{} has an ear"
+ },
+ {
+ "index": 1031,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has a tounge",
+ "question": [
+ "is there dog ?",
+ "is there a tounge ?"
+ ],
+ "prompt": "{} has a tounge"
+ },
+ {
+ "index": 1032,
+ "image_id": 2333902,
+ "entity": "dog",
+ "caption": "dog has an arm",
+ "question": [
+ "is there dog ?",
+ "is there an arm ?"
+ ],
+ "prompt": "{} has an arm"
+ },
+ {
+ "index": 1033,
+ "image_id": 2333590,
+ "entity": "dog",
+ "caption": "the dog is smelling her hand",
+ "question": [
+ "is there the dog ?",
+ "is there her hand ?"
+ ],
+ "prompt": "the {} is smelling her hand"
+ },
+ {
+ "index": 1034,
+ "image_id": 2333443,
+ "entity": "dog",
+ "caption": "wet dog taking a bath in a tub",
+ "question": [
+ "is there wet dog ?",
+ "is there a bath ?",
+ "is there a tub ?"
+ ],
+ "prompt": "wet {} taking a bath in a tub"
+ },
+ {
+ "index": 1035,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a brown eye.",
+ "question": [
+ "is there the dog ?",
+ "is there a brown eye ?"
+ ],
+ "prompt": "The {} has a brown eye."
+ },
+ {
+ "index": 1036,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dogs eye is open.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is open."
+ },
+ {
+ "index": 1037,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has teeth.",
+ "question": [
+ "is there the dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "The {} has teeth."
+ },
+ {
+ "index": 1038,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a tongue.",
+ "question": [
+ "is there the dog ?",
+ "is there a tongue ?"
+ ],
+ "prompt": "The {} has a tongue."
+ },
+ {
+ "index": 1039,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "The dog has a red collar",
+ "question": [
+ "is there the dog ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "The {} has a red collar"
+ },
+ {
+ "index": 1040,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog with its ears bag",
+ "question": [
+ "is there dog ?",
+ "are there its ears ?"
+ ],
+ "prompt": "{} with its ears bag"
+ },
+ {
+ "index": 1041,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog mouth open",
+ "question": [],
+ "prompt": "{} mouth open"
+ },
+ {
+ "index": 1042,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog has black and white paws",
+ "question": [
+ "is there dog ?",
+ "are there black and white paws ?"
+ ],
+ "prompt": "{} has black and white paws"
+ },
+ {
+ "index": 1043,
+ "image_id": 2333438,
+ "entity": "dog",
+ "caption": "dog's mouth is open with tounge out",
+ "question": [
+ "is there dog's mouth ?",
+ "is there tounge ?"
+ ],
+ "prompt": "{}'s mouth is open with tounge out"
+ },
+ {
+ "index": 1044,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog has its mouth open.",
+ "question": [
+ "is there the dog ?",
+ "is there its mouth ?"
+ ],
+ "prompt": "the {} has its mouth open."
+ },
+ {
+ "index": 1045,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog's ear is standing straight up.",
+ "question": [
+ "is there the dog's ear ?"
+ ],
+ "prompt": "the {}'s ear is standing straight up."
+ },
+ {
+ "index": 1046,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "the dog's left back leg.",
+ "question": [
+ "is there the dog ?",
+ "is there leg ?"
+ ],
+ "prompt": "the {}'s left back leg."
+ },
+ {
+ "index": 1047,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "dog mouth wide open ",
+ "question": [],
+ "prompt": "{} mouth wide open "
+ },
+ {
+ "index": 1048,
+ "image_id": 2333301,
+ "entity": "dog",
+ "caption": "dog's tongue is pink.",
+ "question": [
+ "is there dog's tongue ?"
+ ],
+ "prompt": "{}'s tongue is pink."
+ },
+ {
+ "index": 1049,
+ "image_id": 2332835,
+ "entity": "dog",
+ "caption": "The dogs tongue is pink.",
+ "question": [
+ "are there the dogs tongue ?"
+ ],
+ "prompt": "The {}s tongue is pink."
+ },
+ {
+ "index": 1050,
+ "image_id": 2332835,
+ "entity": "dog",
+ "caption": "The dogs right eye is round.",
+ "question": [
+ "are there the dogs ?",
+ "is there right eye ?"
+ ],
+ "prompt": "The {}s right eye is round."
+ },
+ {
+ "index": 1051,
+ "image_id": 2332607,
+ "entity": "dog",
+ "caption": "dog's eyes looking at camera",
+ "question": [
+ "are there dog's eyes ?",
+ "is there camera ?"
+ ],
+ "prompt": "{}'s eyes looking at camera"
+ },
+ {
+ "index": 1052,
+ "image_id": 2332583,
+ "entity": "dog",
+ "caption": "dog has brown tail",
+ "question": [
+ "is there dog ?",
+ "is there brown tail ?"
+ ],
+ "prompt": "{} has brown tail"
+ },
+ {
+ "index": 1053,
+ "image_id": 2332583,
+ "entity": "dog",
+ "caption": "dog has brown back",
+ "question": [
+ "is there dog ?"
+ ],
+ "prompt": "{} has brown back"
+ },
+ {
+ "index": 1054,
+ "image_id": 2332513,
+ "entity": "dog",
+ "caption": "two dogs are lying ",
+ "question": [
+ "are there two dogs ?"
+ ],
+ "prompt": "two {}s are lying "
+ },
+ {
+ "index": 1055,
+ "image_id": 2332513,
+ "entity": "dog",
+ "caption": "this dog's head is up ",
+ "question": [
+ "is there this dog's head ?"
+ ],
+ "prompt": "this {}'s head is up "
+ },
+ {
+ "index": 1056,
+ "image_id": 2332418,
+ "entity": "dog",
+ "caption": "dog has white ears",
+ "question": [
+ "is there dog ?",
+ "are there white ears ?"
+ ],
+ "prompt": "{} has white ears"
+ },
+ {
+ "index": 1057,
+ "image_id": 2331647,
+ "entity": "dog",
+ "caption": "The hat the dog is wearing.",
+ "question": [
+ "is there the hat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The hat the {} is wearing."
+ },
+ {
+ "index": 1058,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog tongue is pink.",
+ "question": [
+ "is there the dog tongue ?"
+ ],
+ "prompt": "The {} tongue is pink."
+ },
+ {
+ "index": 1059,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog is licking his tongue out.",
+ "question": [
+ "is there the dog ?",
+ "is there his tongue ?"
+ ],
+ "prompt": "The {} is licking his tongue out."
+ },
+ {
+ "index": 1060,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The frisbee is near the dog leg.",
+ "question": [
+ "is there the dog leg ?"
+ ],
+ "prompt": "The frisbee is near the {} leg."
+ },
+ {
+ "index": 1061,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The dog is playing with the frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "The {} is playing with the frisbee"
+ },
+ {
+ "index": 1062,
+ "image_id": 2331519,
+ "entity": "dog",
+ "caption": "The Frisbee is in front of the dog. ",
+ "question": [
+ "is there the frisbee ?",
+ "is there front ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The Frisbee is in front of the {}. "
+ },
+ {
+ "index": 1063,
+ "image_id": 2331395,
+ "entity": "dog",
+ "caption": "The front left paw of the dog.",
+ "question": [
+ "is there the front left paw ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The front left paw of the {}."
+ },
+ {
+ "index": 1064,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has long nose",
+ "question": [
+ "is there dog ?",
+ "is there long nose ?"
+ ],
+ "prompt": "{} has long nose"
+ },
+ {
+ "index": 1065,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has nice coat",
+ "question": [
+ "is there dog ?",
+ "is there nice coat ?"
+ ],
+ "prompt": "{} has nice coat"
+ },
+ {
+ "index": 1066,
+ "image_id": 2330828,
+ "entity": "dog",
+ "caption": "dog has big ear",
+ "question": [
+ "is there dog ?",
+ "is there big ear ?"
+ ],
+ "prompt": "{} has big ear"
+ },
+ {
+ "index": 1067,
+ "image_id": 2329335,
+ "entity": "dog",
+ "caption": "dog has brown paws",
+ "question": [
+ "is there dog ?",
+ "are there brown paws ?"
+ ],
+ "prompt": "{} has brown paws"
+ },
+ {
+ "index": 1068,
+ "image_id": 2329309,
+ "entity": "dog",
+ "caption": "brown white and black dog catching yellow Frisbee",
+ "question": [
+ "is there brown white and black dog ?",
+ "is there yellow frisbee ?"
+ ],
+ "prompt": "brown white and black {} catching yellow Frisbee"
+ },
+ {
+ "index": 1069,
+ "image_id": 2329309,
+ "entity": "dog",
+ "caption": "Frisbee caught by black and brown dog",
+ "question": [
+ "is there black and brown dog ?"
+ ],
+ "prompt": "Frisbee caught by black and brown {}"
+ },
+ {
+ "index": 1070,
+ "image_id": 2329275,
+ "entity": "dog",
+ "caption": "the dog is lying on the couch",
+ "question": [
+ "is there the dog ?",
+ "is there the couch ?"
+ ],
+ "prompt": "the {} is lying on the couch"
+ },
+ {
+ "index": 1071,
+ "image_id": 2329129,
+ "entity": "dog",
+ "caption": "the dog is eating a cake",
+ "question": [
+ "is there the dog ?",
+ "is there a cake ?"
+ ],
+ "prompt": "the {} is eating a cake"
+ },
+ {
+ "index": 1072,
+ "image_id": 2328916,
+ "entity": "dog",
+ "caption": "The dog is sniffing the donut",
+ "question": [
+ "is there the dog ?",
+ "is there the donut ?"
+ ],
+ "prompt": "The {} is sniffing the donut"
+ },
+ {
+ "index": 1073,
+ "image_id": 2328916,
+ "entity": "dog",
+ "caption": "bulldog sniffing a doughnut ",
+ "question": [
+ "is there a doughnut ?"
+ ],
+ "prompt": "bull{} sniffing a doughnut "
+ },
+ {
+ "index": 1074,
+ "image_id": 2328869,
+ "entity": "dog",
+ "caption": "black hat dog is wearing",
+ "question": [
+ "is there black hat dog ?"
+ ],
+ "prompt": "black hat {} is wearing"
+ },
+ {
+ "index": 1075,
+ "image_id": 2328633,
+ "entity": "dog",
+ "caption": "a dog with black spots on it's ear",
+ "question": [
+ "is there a dog ?",
+ "are there black spots ?",
+ "is there ear ?"
+ ],
+ "prompt": "a {} with black spots on it's ear"
+ },
+ {
+ "index": 1076,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog is in a car ",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "the {} is in a car "
+ },
+ {
+ "index": 1077,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog is sticking its head out ",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?"
+ ],
+ "prompt": "the {} is sticking its head out "
+ },
+ {
+ "index": 1078,
+ "image_id": 2327968,
+ "entity": "dog",
+ "caption": "the dog has its head out the window ",
+ "question": [
+ "is there the dog ?",
+ "is there its head ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} has its head out the window "
+ },
+ {
+ "index": 1079,
+ "image_id": 2327286,
+ "entity": "dog",
+ "caption": "the dogs eyes are closed",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are closed"
+ },
+ {
+ "index": 1080,
+ "image_id": 2326860,
+ "entity": "dog",
+ "caption": "The dog has a frisbee inside his mouth.",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} has a frisbee inside his mouth."
+ },
+ {
+ "index": 1081,
+ "image_id": 2326801,
+ "entity": "dog",
+ "caption": "A blue duffel bag a dog is on.",
+ "question": [
+ "is there a blue duffel bag ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A blue duffel bag a {} is on."
+ },
+ {
+ "index": 1082,
+ "image_id": 2325767,
+ "entity": "dog",
+ "caption": "A person is holding the dog",
+ "question": [
+ "is there a person ?",
+ "is there the dog ?"
+ ],
+ "prompt": "A person is holding the {}"
+ },
+ {
+ "index": 1083,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's mouth is open",
+ "question": [
+ "is there the dog's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is open"
+ },
+ {
+ "index": 1084,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's nose is black",
+ "question": [
+ "is there the dog's nose ?"
+ ],
+ "prompt": "The {}'s nose is black"
+ },
+ {
+ "index": 1085,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "The dog's eyes are open",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open"
+ },
+ {
+ "index": 1086,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "dog has a black nose ",
+ "question": [
+ "is there dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "{} has a black nose "
+ },
+ {
+ "index": 1087,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dog has brown eye",
+ "question": [
+ "is there the dog ?",
+ "is there brown eye ?"
+ ],
+ "prompt": "the {} has brown eye"
+ },
+ {
+ "index": 1088,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dogs left eye ",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {}s left eye "
+ },
+ {
+ "index": 1089,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "the dogs left ear ",
+ "question": [
+ "are there the dogs ?",
+ "is there ear ?"
+ ],
+ "prompt": "the {}s left ear "
+ },
+ {
+ "index": 1090,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "dog has orange eyes",
+ "question": [
+ "is there dog ?",
+ "are there orange eyes ?"
+ ],
+ "prompt": "{} has orange eyes"
+ },
+ {
+ "index": 1091,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "brown dog has golden eyes",
+ "question": [
+ "is there brown dog ?",
+ "are there golden eyes ?"
+ ],
+ "prompt": "brown {} has golden eyes"
+ },
+ {
+ "index": 1092,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has brown eyes",
+ "question": [
+ "is there black dog ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "black {} has brown eyes"
+ },
+ {
+ "index": 1093,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has a black nose",
+ "question": [
+ "is there black dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "black {} has a black nose"
+ },
+ {
+ "index": 1094,
+ "image_id": 2325561,
+ "entity": "dog",
+ "caption": "black dog has some white hair in its ruff",
+ "question": [
+ "is there black dog ?",
+ "is there some white hair ?",
+ "is there its ruff ?"
+ ],
+ "prompt": "black {} has some white hair in its ruff"
+ },
+ {
+ "index": 1095,
+ "image_id": 2325500,
+ "entity": "dog",
+ "caption": "eyes of dog open wide",
+ "question": [
+ "are there eyes ?",
+ "is there dog ?"
+ ],
+ "prompt": "eyes of {} open wide"
+ },
+ {
+ "index": 1096,
+ "image_id": 2325500,
+ "entity": "dog",
+ "caption": "the dog has a safety vest",
+ "question": [
+ "is there the dog ?",
+ "is there a safety vest ?"
+ ],
+ "prompt": "the {} has a safety vest"
+ },
+ {
+ "index": 1097,
+ "image_id": 2325442,
+ "entity": "dog",
+ "caption": "dog's ears are pink",
+ "question": [
+ "are there dog's ears ?"
+ ],
+ "prompt": "{}'s ears are pink"
+ },
+ {
+ "index": 1098,
+ "image_id": 2325387,
+ "entity": "dog",
+ "caption": "Woman laying on the floor next to dog.",
+ "question": [
+ "is there woman ?",
+ "is there the floor ?",
+ "is there dog ?"
+ ],
+ "prompt": "Woman laying on the floor next to {}."
+ },
+ {
+ "index": 1099,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog has black patch over eye.",
+ "question": [
+ "is there the dog ?",
+ "is there black patch ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {} has black patch over eye."
+ },
+ {
+ "index": 1100,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog is carrying a blue frisbee.",
+ "question": [
+ "is there the dog ?",
+ "is there a blue frisbee ?"
+ ],
+ "prompt": "The {} is carrying a blue frisbee."
+ },
+ {
+ "index": 1101,
+ "image_id": 2324981,
+ "entity": "dog",
+ "caption": "The dog has a nose.",
+ "question": [
+ "is there the dog ?",
+ "is there a nose ?"
+ ],
+ "prompt": "The {} has a nose."
+ },
+ {
+ "index": 1102,
+ "image_id": 2323880,
+ "entity": "dog",
+ "caption": "dog is in picture",
+ "question": [
+ "is there dog ?",
+ "is there picture ?"
+ ],
+ "prompt": "{} is in picture"
+ },
+ {
+ "index": 1103,
+ "image_id": 2323470,
+ "entity": "dog",
+ "caption": "the dog is laying in a green towel",
+ "question": [
+ "is there the dog ?",
+ "is there a green towel ?"
+ ],
+ "prompt": "the {} is laying in a green towel"
+ },
+ {
+ "index": 1104,
+ "image_id": 2322848,
+ "entity": "dog",
+ "caption": "the cat and the dog are good friends",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?",
+ "are there good friends ?"
+ ],
+ "prompt": "the cat and the {} are good friends"
+ },
+ {
+ "index": 1105,
+ "image_id": 2322848,
+ "entity": "dog",
+ "caption": "this cat and this dog are obviously best friends",
+ "question": [
+ "is there this cat ?",
+ "is there this dog ?",
+ "are there best friends ?"
+ ],
+ "prompt": "this cat and this {} are obviously best friends"
+ },
+ {
+ "index": 1106,
+ "image_id": 2322792,
+ "entity": "dog",
+ "caption": "extended wet dog ear ",
+ "question": [
+ "is there extended wet dog ear ?"
+ ],
+ "prompt": "extended wet {} ear "
+ },
+ {
+ "index": 1107,
+ "image_id": 2322792,
+ "entity": "dog",
+ "caption": "dog ear flipping up",
+ "question": [
+ "is there dog ear ?"
+ ],
+ "prompt": "{} ear flipping up"
+ },
+ {
+ "index": 1108,
+ "image_id": 2322492,
+ "entity": "dog",
+ "caption": "Pile of clothes a small dog is lying on",
+ "question": [
+ "is there pile ?",
+ "are there clothes ?",
+ "is there a small dog ?"
+ ],
+ "prompt": "Pile of clothes a small {} is lying on"
+ },
+ {
+ "index": 1109,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "a dog is lying in the bed",
+ "question": [
+ "is there a dog ?",
+ "is there the bed ?"
+ ],
+ "prompt": "a {} is lying in the bed"
+ },
+ {
+ "index": 1110,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dog is under the sheet",
+ "question": [
+ "is there the dog ?",
+ "is there the sheet ?"
+ ],
+ "prompt": "the {} is under the sheet"
+ },
+ {
+ "index": 1111,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dogs ears are brown",
+ "question": [
+ "are there the dogs ears ?"
+ ],
+ "prompt": "the {}s ears are brown"
+ },
+ {
+ "index": 1112,
+ "image_id": 2322220,
+ "entity": "dog",
+ "caption": "the dogs front legs are white",
+ "question": [
+ "are there the dogs ?",
+ "are there front legs ?"
+ ],
+ "prompt": "the {}s front legs are white"
+ },
+ {
+ "index": 1113,
+ "image_id": 2322086,
+ "entity": "dog",
+ "caption": "the dog has white spots",
+ "question": [
+ "is there the dog ?",
+ "are there white spots ?"
+ ],
+ "prompt": "the {} has white spots"
+ },
+ {
+ "index": 1114,
+ "image_id": 2321901,
+ "entity": "dog",
+ "caption": "the dog is laying on a pillow ",
+ "question": [
+ "is there the dog ?",
+ "is there a pillow ?"
+ ],
+ "prompt": "the {} is laying on a pillow "
+ },
+ {
+ "index": 1115,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "A silver chain is around the dog's neck.",
+ "question": [
+ "is there a silver chain ?",
+ "is there the dog's neck ?"
+ ],
+ "prompt": "A silver chain is around the {}'s neck."
+ },
+ {
+ "index": 1116,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "The dog's left ear is black and brown. ",
+ "question": [
+ "is there the dog's left ear ?"
+ ],
+ "prompt": "The {}'s left ear is black and brown. "
+ },
+ {
+ "index": 1117,
+ "image_id": 2321544,
+ "entity": "dog",
+ "caption": "The dog's right ear is black and brown. ",
+ "question": [
+ "is there the dog's right ear ?"
+ ],
+ "prompt": "The {}'s right ear is black and brown. "
+ },
+ {
+ "index": 1118,
+ "image_id": 2321386,
+ "entity": "dog",
+ "caption": "the dog has a chain",
+ "question": [
+ "is there the dog ?",
+ "is there a chain ?"
+ ],
+ "prompt": "the {} has a chain"
+ },
+ {
+ "index": 1119,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "the dog has a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} has a frisbee"
+ },
+ {
+ "index": 1120,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "the dog has the frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there the frisbee ?"
+ ],
+ "prompt": "the {} has the frisbee"
+ },
+ {
+ "index": 1121,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "teh dog has brown eyes",
+ "question": [
+ "are there brown eyes ?"
+ ],
+ "prompt": "teh {} has brown eyes"
+ },
+ {
+ "index": 1122,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "dog has frisbee in his mouth",
+ "question": [
+ "is there dog ?",
+ "is there frisbee ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has frisbee in his mouth"
+ },
+ {
+ "index": 1123,
+ "image_id": 2320693,
+ "entity": "dog",
+ "caption": "dog in mouth is pink",
+ "question": [
+ "is there dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} in mouth is pink"
+ },
+ {
+ "index": 1124,
+ "image_id": 2319884,
+ "entity": "dog",
+ "caption": "dog is eating a vitamin water",
+ "question": [
+ "is there dog ?",
+ "is there a vitamin water ?"
+ ],
+ "prompt": "{} is eating a vitamin water"
+ },
+ {
+ "index": 1125,
+ "image_id": 2319723,
+ "entity": "dog",
+ "caption": "the dog is kissing the cat",
+ "question": [
+ "is there the dog ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is kissing the cat"
+ },
+ {
+ "index": 1126,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is wearing a shirt",
+ "question": [
+ "is there the dog ?",
+ "is there a shirt ?"
+ ],
+ "prompt": "The {} is wearing a shirt"
+ },
+ {
+ "index": 1127,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog has on a nice shirt",
+ "question": [
+ "is there the dog ?",
+ "is there a nice shirt ?"
+ ],
+ "prompt": "The {} has on a nice shirt"
+ },
+ {
+ "index": 1128,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog has very long hair",
+ "question": [
+ "is there the dog ?",
+ "is there very long hair ?"
+ ],
+ "prompt": "The {} has very long hair"
+ },
+ {
+ "index": 1129,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is having a great time",
+ "question": [
+ "is there the dog ?",
+ "is there a great time ?"
+ ],
+ "prompt": "The {} is having a great time"
+ },
+ {
+ "index": 1130,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is out in the daytime",
+ "question": [
+ "is there the dog ?",
+ "is there the daytime ?"
+ ],
+ "prompt": "The {} is out in the daytime"
+ },
+ {
+ "index": 1131,
+ "image_id": 2319347,
+ "entity": "dog",
+ "caption": "The dog is enjoying the day",
+ "question": [
+ "is there the dog ?",
+ "is there the day ?"
+ ],
+ "prompt": "The {} is enjoying the day"
+ },
+ {
+ "index": 1132,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is wearing a shirt",
+ "question": [
+ "is there a dog ?",
+ "is there a shirt ?"
+ ],
+ "prompt": "A {} is wearing a shirt"
+ },
+ {
+ "index": 1133,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog has on a visor",
+ "question": [
+ "is there a dog ?",
+ "is there a visor ?"
+ ],
+ "prompt": "A {} has on a visor"
+ },
+ {
+ "index": 1134,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog has white curly hair",
+ "question": [
+ "is there a dog ?",
+ "is there white curly hair ?"
+ ],
+ "prompt": "A {} has white curly hair"
+ },
+ {
+ "index": 1135,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is sticking its tongue out",
+ "question": [
+ "is there a dog ?",
+ "is there its tongue ?"
+ ],
+ "prompt": "A {} is sticking its tongue out"
+ },
+ {
+ "index": 1136,
+ "image_id": 2318934,
+ "entity": "dog",
+ "caption": "A dog is with its master",
+ "question": [
+ "is there a dog ?",
+ "is there its master ?"
+ ],
+ "prompt": "A {} is with its master"
+ },
+ {
+ "index": 1137,
+ "image_id": 2318892,
+ "entity": "dog",
+ "caption": "The dog has black fur",
+ "question": [
+ "is there the dog ?",
+ "is there black fur ?"
+ ],
+ "prompt": "The {} has black fur"
+ },
+ {
+ "index": 1138,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "brown dog curled up with head on blanket",
+ "question": [
+ "is there brown dog ?",
+ "is there head ?",
+ "is there blanket ?"
+ ],
+ "prompt": "brown {} curled up with head on blanket"
+ },
+ {
+ "index": 1139,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "brown dog cuddled with toy with paw on bunny",
+ "question": [
+ "is there brown dog ?",
+ "is there toy ?",
+ "is there paw ?",
+ "is there bunny ?"
+ ],
+ "prompt": "brown {} cuddled with toy with paw on bunny"
+ },
+ {
+ "index": 1140,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "a dog is in bed",
+ "question": [
+ "is there a dog ?",
+ "is there bed ?"
+ ],
+ "prompt": "a {} is in bed"
+ },
+ {
+ "index": 1141,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "the dog is holding a doll",
+ "question": [
+ "is there the dog ?",
+ "is there a doll ?"
+ ],
+ "prompt": "the {} is holding a doll"
+ },
+ {
+ "index": 1142,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "another doll lies close to the dog",
+ "question": [
+ "is there another doll ?",
+ "is there the dog ?"
+ ],
+ "prompt": "another doll lies close to the {}"
+ },
+ {
+ "index": 1143,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "dog eyes are open",
+ "question": [
+ "are there dog eyes ?"
+ ],
+ "prompt": "{} eyes are open"
+ },
+ {
+ "index": 1144,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "the dog's paw is on the toy",
+ "question": [
+ "is there the dog's paw ?",
+ "is there the toy ?"
+ ],
+ "prompt": "the {}'s paw is on the toy"
+ },
+ {
+ "index": 1145,
+ "image_id": 2318849,
+ "entity": "dog",
+ "caption": "dog holding white stuffed bunny",
+ "question": [
+ "is there white stuffed bunny ?"
+ ],
+ "prompt": "{} holding white stuffed bunny"
+ },
+ {
+ "index": 1146,
+ "image_id": 2318152,
+ "entity": "dog",
+ "caption": "Mulch dog is standing on",
+ "question": [
+ "is there mulch dog ?"
+ ],
+ "prompt": "Mulch {} is standing on"
+ },
+ {
+ "index": 1147,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "Brown leash on a dog",
+ "question": [
+ "is there brown leash ?",
+ "is there a dog ?"
+ ],
+ "prompt": "Brown leash on a {}"
+ },
+ {
+ "index": 1148,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "A person on a skateboard walking their dog",
+ "question": [
+ "is there a person ?",
+ "is there a skateboard ?",
+ "is there their dog ?"
+ ],
+ "prompt": "A person on a skateboard walking their {}"
+ },
+ {
+ "index": 1149,
+ "image_id": 2318115,
+ "entity": "dog",
+ "caption": "person walking the dog",
+ "question": [
+ "is there person ?",
+ "is there the dog ?"
+ ],
+ "prompt": "person walking the {}"
+ },
+ {
+ "index": 1150,
+ "image_id": 2317836,
+ "entity": "dog",
+ "caption": "the dog is in costume",
+ "question": [
+ "is there the dog ?",
+ "is there costume ?"
+ ],
+ "prompt": "the {} is in costume"
+ },
+ {
+ "index": 1151,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "dog paws are tan",
+ "question": [
+ "are there dog paws ?",
+ "is there tan ?"
+ ],
+ "prompt": "{} paws are tan"
+ },
+ {
+ "index": 1152,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "dog has mouth open",
+ "question": [
+ "is there dog ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} has mouth open"
+ },
+ {
+ "index": 1153,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "The dog is in a car.",
+ "question": [
+ "is there the dog ?",
+ "is there a car ?"
+ ],
+ "prompt": "The {} is in a car."
+ },
+ {
+ "index": 1154,
+ "image_id": 2317283,
+ "entity": "dog",
+ "caption": "The dog's eyes are open.",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open."
+ },
+ {
+ "index": 1155,
+ "image_id": 2317002,
+ "entity": "dog",
+ "caption": "black whiskers are on the dog",
+ "question": [
+ "are there black whiskers ?",
+ "is there the dog ?"
+ ],
+ "prompt": "black whiskers are on the {}"
+ },
+ {
+ "index": 1156,
+ "image_id": 2317002,
+ "entity": "dog",
+ "caption": "brown nails are on the dog",
+ "question": [
+ "are there brown nails ?",
+ "is there the dog ?"
+ ],
+ "prompt": "brown nails are on the {}"
+ },
+ {
+ "index": 1157,
+ "image_id": 2316886,
+ "entity": "dog",
+ "caption": "the dog appears to be enjoying his snack",
+ "question": [
+ "is there the dog ?",
+ "is there his snack ?"
+ ],
+ "prompt": "the {} appears to be enjoying his snack"
+ },
+ {
+ "index": 1158,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "nose of dog is black ",
+ "question": [
+ "is there nose ?",
+ "is there dog ?"
+ ],
+ "prompt": "nose of {} is black "
+ },
+ {
+ "index": 1159,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "dog sits on couch",
+ "question": [
+ "is there dog ?",
+ "is there couch ?"
+ ],
+ "prompt": "{} sits on couch"
+ },
+ {
+ "index": 1160,
+ "image_id": 2316480,
+ "entity": "dog",
+ "caption": "dog has pink dress",
+ "question": [
+ "is there dog ?",
+ "is there pink dress ?"
+ ],
+ "prompt": "{} has pink dress"
+ },
+ {
+ "index": 1161,
+ "image_id": 2316349,
+ "entity": "dog",
+ "caption": "dog ear on right",
+ "question": [
+ "is there dog ear ?"
+ ],
+ "prompt": "{} ear on right"
+ },
+ {
+ "index": 1162,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "a dog rests on a person",
+ "question": [
+ "is there a dog ?",
+ "is there a person ?"
+ ],
+ "prompt": "a {} rests on a person"
+ },
+ {
+ "index": 1163,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The dog is wearing a hat.",
+ "question": [
+ "is there the dog ?",
+ "is there a hat ?"
+ ],
+ "prompt": "The {} is wearing a hat."
+ },
+ {
+ "index": 1164,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The hat is on the dog's head.",
+ "question": [
+ "is there the hat ?",
+ "is there the dog's head ?"
+ ],
+ "prompt": "The hat is on the {}'s head."
+ },
+ {
+ "index": 1165,
+ "image_id": 2316242,
+ "entity": "dog",
+ "caption": "The dog has whiskers.",
+ "question": [
+ "is there the dog ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "The {} has whiskers."
+ },
+ {
+ "index": 1166,
+ "image_id": 2316170,
+ "entity": "dog",
+ "caption": "small dog with eyes closed",
+ "question": [
+ "is there small dog ?",
+ "are there eyes ?"
+ ],
+ "prompt": "small {} with eyes closed"
+ },
+ {
+ "index": 1167,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs nose is black in color. ",
+ "question": [
+ "are there the dogs nose ?",
+ "is there color ?"
+ ],
+ "prompt": "The {}s nose is black in color. "
+ },
+ {
+ "index": 1168,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dog has a black nose. ",
+ "question": [
+ "is there the dog ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose. "
+ },
+ {
+ "index": 1169,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs eye is brown.",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "The {}s eye is brown."
+ },
+ {
+ "index": 1170,
+ "image_id": 2315589,
+ "entity": "dog",
+ "caption": "The dogs ear is black. ",
+ "question": [
+ "are there the dogs ?"
+ ],
+ "prompt": "The {}s ear is black. "
+ },
+ {
+ "index": 1171,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "dog has a leg",
+ "question": [
+ "is there dog ?",
+ "is there a leg ?"
+ ],
+ "prompt": "{} has a leg"
+ },
+ {
+ "index": 1172,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "the dog carries a green frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a green frisbee ?"
+ ],
+ "prompt": "the {} carries a green frisbee"
+ },
+ {
+ "index": 1173,
+ "image_id": 2315468,
+ "entity": "dog",
+ "caption": "the dog's collar is green",
+ "question": [
+ "is there the dog's collar ?"
+ ],
+ "prompt": "the {}'s collar is green"
+ },
+ {
+ "index": 1174,
+ "image_id": 2315447,
+ "entity": "dog",
+ "caption": "A dogs left black eye. ",
+ "question": [
+ "are there a dogs ?",
+ "is there black eye ?"
+ ],
+ "prompt": "A {}s left black eye. "
+ },
+ {
+ "index": 1175,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The 2 dogs lay on the bed together",
+ "question": [
+ "are there the 2 dogs ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The 2 {}s lay on the bed together"
+ },
+ {
+ "index": 1176,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dog is laying on the other dog",
+ "question": [
+ "is there the dog ?",
+ "is there the other dog ?"
+ ],
+ "prompt": "The {} is laying on the other {}"
+ },
+ {
+ "index": 1177,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dogs are on the comfortable looking bed",
+ "question": [
+ "are there the dogs ?",
+ "is there the comfortable looking bed ?"
+ ],
+ "prompt": "The {}s are on the comfortable looking bed"
+ },
+ {
+ "index": 1178,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "The dog has a blue collar",
+ "question": [
+ "is there the dog ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "The {} has a blue collar"
+ },
+ {
+ "index": 1179,
+ "image_id": 2315441,
+ "entity": "dog",
+ "caption": "Brown dogs left eye.",
+ "question": [
+ "are there brown dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "Brown {}s left eye."
+ },
+ {
+ "index": 1180,
+ "image_id": 2414390,
+ "entity": "dog",
+ "caption": "the dog is playing with a frisbee",
+ "question": [
+ "is there the dog ?",
+ "is there a frisbee ?"
+ ],
+ "prompt": "the {} is playing with a frisbee"
+ },
+ {
+ "index": 1181,
+ "image_id": 2414390,
+ "entity": "dog",
+ "caption": "the dog has brown ears",
+ "question": [
+ "is there the dog ?",
+ "are there brown ears ?"
+ ],
+ "prompt": "the {} has brown ears"
+ },
+ {
+ "index": 1182,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "A dog is in the picture.",
+ "question": [
+ "is there a dog ?",
+ "is there the picture ?"
+ ],
+ "prompt": "A {} is in the picture."
+ },
+ {
+ "index": 1183,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog has on a black collar.",
+ "question": [
+ "is there the dog ?",
+ "is there a black collar ?"
+ ],
+ "prompt": "The {} has on a black collar."
+ },
+ {
+ "index": 1184,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog is standing in the sand.",
+ "question": [
+ "is there the dog ?",
+ "is there the sand ?"
+ ],
+ "prompt": "The {} is standing in the sand."
+ },
+ {
+ "index": 1185,
+ "image_id": 2414304,
+ "entity": "dog",
+ "caption": "The dog is staring at his master.",
+ "question": [
+ "is there the dog ?",
+ "is there his master ?"
+ ],
+ "prompt": "The {} is staring at his master."
+ },
+ {
+ "index": 1186,
+ "image_id": 2412940,
+ "entity": "dog",
+ "caption": "Sun light over the body of dogs",
+ "question": [
+ "is there sun light ?",
+ "is there the body ?",
+ "are there dogs ?"
+ ],
+ "prompt": "Sun light over the body of {}s"
+ },
+ {
+ "index": 1187,
+ "image_id": 2412940,
+ "entity": "dog",
+ "caption": "the dogs eyes are wide apart",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are wide apart"
+ },
+ {
+ "index": 1188,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog is resting on a blanket",
+ "question": [
+ "is there the dog ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} is resting on a blanket"
+ },
+ {
+ "index": 1189,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has his ears bent",
+ "question": [
+ "is there the dog ?",
+ "are there his ears ?"
+ ],
+ "prompt": "the {} has his ears bent"
+ },
+ {
+ "index": 1190,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has pretty blue eyes",
+ "question": [
+ "is there the dog ?",
+ "are there pretty blue eyes ?"
+ ],
+ "prompt": "the {} has pretty blue eyes"
+ },
+ {
+ "index": 1191,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "the dog has brown feet",
+ "question": [
+ "is there the dog ?",
+ "are there brown feet ?"
+ ],
+ "prompt": "the {} has brown feet"
+ },
+ {
+ "index": 1192,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog is sitting on blankets",
+ "question": [
+ "is there the dog ?",
+ "are there blankets ?"
+ ],
+ "prompt": "The {} is sitting on blankets"
+ },
+ {
+ "index": 1193,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has 2 ears",
+ "question": [
+ "is there the dog ?",
+ "are there 2 ears ?"
+ ],
+ "prompt": "The {} has 2 ears"
+ },
+ {
+ "index": 1194,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has a tail",
+ "question": [
+ "is there the dog ?",
+ "is there a tail ?"
+ ],
+ "prompt": "The {} has a tail"
+ },
+ {
+ "index": 1195,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog's eyes are blue",
+ "question": [
+ "are there the dog's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are blue"
+ },
+ {
+ "index": 1196,
+ "image_id": 2412718,
+ "entity": "dog",
+ "caption": "The dog has 4 paws",
+ "question": [
+ "is there the dog ?",
+ "are there 4 paws ?"
+ ],
+ "prompt": "The {} has 4 paws"
+ },
+ {
+ "index": 1197,
+ "image_id": 2412430,
+ "entity": "dog",
+ "caption": "A dog is laying down on a couch.",
+ "question": [
+ "is there a dog ?",
+ "is there a couch ?"
+ ],
+ "prompt": "A {} is laying down on a couch."
+ },
+ {
+ "index": 1198,
+ "image_id": 2412430,
+ "entity": "dog",
+ "caption": "The dog's nose is black in color.",
+ "question": [
+ "is there the dog's nose ?",
+ "is there color ?"
+ ],
+ "prompt": "The {}'s nose is black in color."
+ },
+ {
+ "index": 1199,
+ "image_id": 2412382,
+ "entity": "dog",
+ "caption": "the dogs are on the seat",
+ "question": [
+ "are there the dogs ?",
+ "is there the seat ?"
+ ],
+ "prompt": "the {}s are on the seat"
+ },
+ {
+ "index": 1200,
+ "image_id": 2412382,
+ "entity": "dog",
+ "caption": "the dogs eyes are black",
+ "question": [
+ "are there the dogs ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are black"
+ },
+ {
+ "index": 1201,
+ "image_id": 2412215,
+ "entity": "dog",
+ "caption": "The white sheet the dog's paw and mouth is resting on.",
+ "question": [
+ "is there the dog's paw ?",
+ "is there mouth ?"
+ ],
+ "prompt": "The white sheet the {}'s paw and mouth is resting on."
+ },
+ {
+ "index": 1202,
+ "image_id": 2412215,
+ "entity": "dog",
+ "caption": "The black dog's head resting on the bed.",
+ "question": [
+ "is there the black dog's head ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The black {}'s head resting on the bed."
+ },
+ {
+ "index": 1203,
+ "image_id": 2411734,
+ "entity": "dog",
+ "caption": "A dog with a white nose looks at a birthday cupcake",
+ "question": [
+ "is there a dog ?",
+ "is there a white nose ?",
+ "is there a birthday cupcake ?"
+ ],
+ "prompt": "A {} with a white nose looks at a birthday cupcake"
+ },
+ {
+ "index": 1204,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "White mouse and cat sitting on dog.",
+ "question": [
+ "is there cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "White mouse and cat sitting on {}."
+ },
+ {
+ "index": 1205,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "cat is on a dogs back",
+ "question": [
+ "is there cat ?",
+ "are there a dogs ?"
+ ],
+ "prompt": "cat is on a {}s back"
+ },
+ {
+ "index": 1206,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "dog is walking on sidewalk",
+ "question": [
+ "is there dog ?",
+ "is there sidewalk ?"
+ ],
+ "prompt": "{} is walking on sidewalk"
+ },
+ {
+ "index": 1207,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "dog is wearing a brown vest",
+ "question": [
+ "is there dog ?",
+ "is there a brown vest ?"
+ ],
+ "prompt": "{} is wearing a brown vest"
+ },
+ {
+ "index": 1208,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "a cat is on the dog's back",
+ "question": [
+ "is there a cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "a cat is on the {}'s back"
+ },
+ {
+ "index": 1209,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "a cat and a mouse are both on a dog",
+ "question": [
+ "is there a cat ?",
+ "is there a mouse ?",
+ "is there a dog ?"
+ ],
+ "prompt": "a cat and a mouse are both on a {}"
+ },
+ {
+ "index": 1210,
+ "image_id": 2411533,
+ "entity": "dog",
+ "caption": "the dog is wearing a vest",
+ "question": [
+ "is there the dog ?",
+ "is there a vest ?"
+ ],
+ "prompt": "the {} is wearing a vest"
+ },
+ {
+ "index": 1211,
+ "image_id": 2415243,
+ "entity": "dog",
+ "caption": "a dog lays on a television remote",
+ "question": [
+ "is there a dog ?",
+ "is there a television remote ?"
+ ],
+ "prompt": "a {} lays on a television remote"
+ },
+ {
+ "index": 1212,
+ "image_id": 2415243,
+ "entity": "dog",
+ "caption": "dog takes a nap on a couch",
+ "question": [
+ "is there dog ?",
+ "is there a nap ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} takes a nap on a couch"
+ },
+ {
+ "index": 1213,
+ "image_id": 2415532,
+ "entity": "dog",
+ "caption": "Elbow on the far arm washing the dog.",
+ "question": [
+ "is there the far arm ?",
+ "is there the dog ?"
+ ],
+ "prompt": "Elbow on the far arm washing the {}."
+ },
+ {
+ "index": 1214,
+ "image_id": 2416178,
+ "entity": "dog",
+ "caption": "the dogs left eye",
+ "question": [
+ "are there the dogs ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {}s left eye"
+ },
+ {
+ "index": 1215,
+ "image_id": 2416388,
+ "entity": "dog",
+ "caption": "pink bow the dog is wearing",
+ "question": [
+ "is there the dog ?"
+ ],
+ "prompt": "pink bow the {} is wearing"
+ },
+ {
+ "index": 1216,
+ "image_id": 2416388,
+ "entity": "dog",
+ "caption": "dog getting teeth brushed",
+ "question": [
+ "is there dog ?",
+ "are there teeth ?"
+ ],
+ "prompt": "{} getting teeth brushed"
+ },
+ {
+ "index": 1217,
+ "image_id": 2416731,
+ "entity": "dog",
+ "caption": "the dog has black hair",
+ "question": [
+ "is there the dog ?",
+ "is there black hair ?"
+ ],
+ "prompt": "the {} has black hair"
+ },
+ {
+ "index": 1218,
+ "image_id": 2416731,
+ "entity": "dog",
+ "caption": "the dog has pointy teeth",
+ "question": [
+ "is there the dog ?",
+ "are there pointy teeth ?"
+ ],
+ "prompt": "the {} has pointy teeth"
+ },
+ {
+ "index": 1219,
+ "image_id": 2416944,
+ "entity": "dog",
+ "caption": "grassy field dog is playing in",
+ "question": [
+ "is there grassy field dog ?"
+ ],
+ "prompt": "grassy field {} is playing in"
+ },
+ {
+ "index": 1220,
+ "image_id": 2417227,
+ "entity": "dog",
+ "caption": "The sofa the dog is leaning on.",
+ "question": [
+ "is there the sofa ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The sofa the {} is leaning on."
+ },
+ {
+ "index": 1221,
+ "image_id": 2417721,
+ "entity": "dog",
+ "caption": "dog has brown legs",
+ "question": [
+ "is there dog ?",
+ "are there brown legs ?"
+ ],
+ "prompt": "{} has brown legs"
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02089973.json b/data/imagenet/compositions/prompts/n02089973.json
new file mode 100644
index 0000000000000000000000000000000000000000..db9508f2d519c121841f29d5b620aaf093b952ac
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02089973.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 561, "entity": "dog", "caption": "dog has a black nose", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose"}, {"index": 1, "image_id": 561, "entity": "dog", "caption": "dog's ears are up", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are up"}, {"index": 2, "image_id": 561, "entity": "dog", "caption": "dog's eyes are dark", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are dark"}, {"index": 3, "image_id": 3535, "entity": "dog", "caption": "The dog has four legs.", "question": ["is there the dog ?", "are there four legs ?"], "prompt": "The {} has four legs."}, {"index": 4, "image_id": 3535, "entity": "dog", "caption": "tongue hanging out a dog's mouth", "question": ["is there tongue ?", "is there a dog's mouth ?"], "prompt": "tongue hanging out a {}'s mouth"}, {"index": 5, "image_id": 3553, "entity": "dog", "caption": "dog is sitting in grass", "question": ["is there dog ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 6, "image_id": 3553, "entity": "dog", "caption": "dog is mostly brown", "question": ["is there dog ?"], "prompt": "{} is mostly brown"}, {"index": 7, "image_id": 3553, "entity": "dog", "caption": "the dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "the {} has a black nose"}, {"index": 8, "image_id": 3553, "entity": "dog", "caption": "the brown dog has a long brown tail", "question": ["is there the brown dog ?", "is there a long brown tail ?"], "prompt": "the brown {} has a long brown tail"}, {"index": 9, "image_id": 3553, "entity": "dog", "caption": "the dog has large brown paws", "question": ["is there the dog ?", "are there large brown paws ?"], "prompt": "the {} has large brown paws"}, {"index": 10, "image_id": 3553, "entity": "dog", "caption": "a dog with its mouth open", "question": ["is there a dog ?", "is there its mouth ?"], "prompt": "a {} with its mouth open"}, {"index": 11, "image_id": 3752, "entity": "dog", "caption": "the dogs tail is black ", "question": ["are there the dogs tail ?"], "prompt": "the {}s tail is black "}, {"index": 12, "image_id": 3752, "entity": "dog", "caption": "the dogs feet is black ", "question": ["are there the dogs ?"], "prompt": "the {}s feet is black "}, {"index": 13, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat are standing together on the sidewalk", "question": ["is there a dog ?", "is there a cat ?", "is there the sidewalk ?"], "prompt": "A {} and a cat are standing together on the sidewalk"}, {"index": 14, "image_id": 107934, "entity": "dog", "caption": "dog has a brown patch", "question": ["is there dog ?", "is there a brown patch ?"], "prompt": "{} has a brown patch"}, {"index": 15, "image_id": 107934, "entity": "dog", "caption": "dog has a blue rope tied", "question": ["is there dog ?", "is there a blue rope ?"], "prompt": "{} has a blue rope tied"}, {"index": 16, "image_id": 107934, "entity": "dog", "caption": "the dog has a blue leash", "question": ["is there the dog ?", "is there a blue leash ?"], "prompt": "the {} has a blue leash"}, {"index": 17, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat walk together.", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} and a cat walk together."}, {"index": 18, "image_id": 107934, "entity": "dog", "caption": "Both dog and cat are in the middle of the frame.", "question": ["is there both dog ?", "is there cat ?", "is there the middle ?", "is there the frame ?"], "prompt": "Both {} and cat are in the middle of the frame."}, {"index": 19, "image_id": 107934, "entity": "dog", "caption": "The dog is looking at the camera.", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera."}, {"index": 20, "image_id": 1159975, "entity": "dog", "caption": "The gray collar the dog is wearing.", "question": ["is there the gray collar ?", "is there the dog ?"], "prompt": "The gray collar the {} is wearing."}, {"index": 21, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown and white sweater", "question": ["is there the dog ?", "is there a brown and white sweater ?"], "prompt": "The {} has a brown and white sweater"}, {"index": 22, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "The {} has a brown nose"}, {"index": 23, "image_id": 2414023, "entity": "dog", "caption": "the dog has a messed up eye", "question": ["is there the dog ?", "is there a messed up eye ?"], "prompt": "the {} has a messed up eye"}, {"index": 24, "image_id": 2414023, "entity": "dog", "caption": "the dog is wearing a sweater", "question": ["is there the dog ?", "is there a sweater ?"], "prompt": "the {} is wearing a sweater"}, {"index": 25, "image_id": 2414023, "entity": "dog", "caption": "the dog has a purple collar", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "the {} has a purple collar"}, {"index": 26, "image_id": 2413171, "entity": "dog", "caption": "Young man hold a cute dog", "question": ["is there young man ?", "is there a cute dog ?"], "prompt": "Young man hold a cute {}"}, {"index": 27, "image_id": 2412707, "entity": "dog", "caption": "black fur grows on a dog", "question": ["is there black fur ?", "is there a dog ?"], "prompt": "black fur grows on a {}"}, {"index": 28, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is sitting in the ground"}, {"index": 29, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is sitting in the floor"}, {"index": 30, "image_id": 2412546, "entity": "dog", "caption": "The dog has a collar on.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar on."}, {"index": 31, "image_id": 2412049, "entity": "dog", "caption": "the dog is long hair", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "the {} is long hair"}, {"index": 32, "image_id": 2412049, "entity": "dog", "caption": "the dog has some white hair", "question": ["is there the dog ?", "is there some white hair ?"], "prompt": "the {} has some white hair"}, {"index": 33, "image_id": 2412049, "entity": "dog", "caption": "the dog has some black hair", "question": ["is there the dog ?", "is there some black hair ?"], "prompt": "the {} has some black hair"}, {"index": 34, "image_id": 2412049, "entity": "dog", "caption": "the dog has some brown hair", "question": ["is there the dog ?", "is there some brown hair ?"], "prompt": "the {} has some brown hair"}, {"index": 35, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is shiny", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is shiny"}, {"index": 36, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is black"}, {"index": 37, "image_id": 2412049, "entity": "dog", "caption": "this are dog canines", "question": ["are there dog canines ?"], "prompt": "this are {} canines"}, {"index": 38, "image_id": 2412049, "entity": "dog", "caption": "this is the dogs fur", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "this is the {}s fur"}, {"index": 39, "image_id": 2411402, "entity": "dog", "caption": "Bed the dog is sleeping on", "question": ["is there the dog ?"], "prompt": "Bed the {} is sleeping on"}, {"index": 40, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar"}, {"index": 41, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} is wearing a chain"}, {"index": 42, "image_id": 2411357, "entity": "dog", "caption": "the dog is watching the oven", "question": ["is there the dog ?", "is there the oven ?"], "prompt": "the {} is watching the oven"}, {"index": 43, "image_id": 2411357, "entity": "dog", "caption": "the dog has a chain around its neck", "question": ["is there the dog ?", "is there a chain ?", "is there its neck ?"], "prompt": "the {} has a chain around its neck"}, {"index": 44, "image_id": 2411357, "entity": "dog", "caption": "the dog has two ears", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "the {} has two ears"}, {"index": 45, "image_id": 2411201, "entity": "dog", "caption": "A dog is on a moped.", "question": ["is there a dog ?"], "prompt": "A {} is on a moped."}, {"index": 46, "image_id": 2411201, "entity": "dog", "caption": "The dog has a red leash.", "question": ["is there the dog ?", "is there a red leash ?"], "prompt": "The {} has a red leash."}, {"index": 47, "image_id": 2411201, "entity": "dog", "caption": "The dog's ears are up.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are up."}, {"index": 48, "image_id": 2411201, "entity": "dog", "caption": "The dog's tail is hanging down.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is hanging down."}, {"index": 49, "image_id": 2411201, "entity": "dog", "caption": "a large dog sits on a scooter", "question": ["is there a large dog ?", "is there a scooter ?"], "prompt": "a large {} sits on a scooter"}, {"index": 50, "image_id": 2411201, "entity": "dog", "caption": "a dog has a red leash", "question": ["is there a dog ?", "is there a red leash ?"], "prompt": "a {} has a red leash"}, {"index": 51, "image_id": 2411201, "entity": "dog", "caption": "The dog on the scooter has a long tail", "question": ["is there the dog ?", "is there the scooter ?", "is there a long tail ?"], "prompt": "The {} on the scooter has a long tail"}, {"index": 52, "image_id": 2411201, "entity": "dog", "caption": "Brown dog on leash on moped", "question": ["is there brown dog ?", "is there leash ?"], "prompt": "Brown {} on leash on moped"}, {"index": 53, "image_id": 2411201, "entity": "dog", "caption": "Red moped with dog", "question": ["is there dog ?"], "prompt": "Red moped with {}"}, {"index": 54, "image_id": 2410967, "entity": "dog", "caption": "a dog's ears bent over", "question": ["are there a dog's ears ?"], "prompt": "a {}'s ears bent over"}, {"index": 55, "image_id": 2410840, "entity": "dog", "caption": "a dog's mouth biting a frisbee", "question": ["is there a dog's mouth ?", "is there a frisbee ?"], "prompt": "a {}'s mouth biting a frisbee"}, {"index": 56, "image_id": 2410817, "entity": "dog", "caption": "black and tan dog jumping to catch a frisbee", "question": ["is there black and tan dog ?", "is there a frisbee ?"], "prompt": "black and tan {} jumping to catch a frisbee"}, {"index": 57, "image_id": 2410817, "entity": "dog", "caption": "leaping dog going after a frisbee", "question": ["is there leaping dog ?", "is there a frisbee ?"], "prompt": "leaping {} going after a frisbee"}, {"index": 58, "image_id": 2410817, "entity": "dog", "caption": "German shepherd dog fetching a frisbee. ", "question": ["is there german shepherd dog ?", "is there a frisbee ?"], "prompt": "German shepherd {} fetching a frisbee. "}, {"index": 59, "image_id": 2409859, "entity": "dog", "caption": "dog's eyes appear to be different colors", "question": ["are there dog's eyes ?", "are there different colors ?"], "prompt": "{}'s eyes appear to be different colors"}, {"index": 60, "image_id": 2409859, "entity": "dog", "caption": "dog has black nose", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose"}, {"index": 61, "image_id": 2409859, "entity": "dog", "caption": "the dog is wearing a cap", "question": ["is there the dog ?", "is there a cap ?"], "prompt": "the {} is wearing a cap"}, {"index": 62, "image_id": 2409859, "entity": "dog", "caption": "Tongue of dog is pink", "question": ["is there tongue ?", "is there dog ?"], "prompt": "Tongue of {} is pink"}, {"index": 63, "image_id": 2409626, "entity": "dog", "caption": "dog has two eyes", "question": ["is there dog ?", "are there two eyes ?"], "prompt": "{} has two eyes"}, {"index": 64, "image_id": 2409626, "entity": "dog", "caption": "the dog is wearing pirate hat", "question": ["is there the dog ?", "is there pirate hat ?"], "prompt": "the {} is wearing pirate hat"}, {"index": 65, "image_id": 2409304, "entity": "dog", "caption": "White left foot of the dog", "question": ["is there white left foot ?", "is there the dog ?"], "prompt": "White left foot of the {}"}, {"index": 66, "image_id": 2409304, "entity": "dog", "caption": "dog catch the frisbee", "question": ["is there dog ?", "is there the frisbee ?"], "prompt": "{} catch the frisbee"}, {"index": 67, "image_id": 2409304, "entity": "dog", "caption": "dog's nose is black", "question": ["is there dog's nose ?"], "prompt": "{}'s nose is black"}, {"index": 68, "image_id": 2409304, "entity": "dog", "caption": "dog's ears are black", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are black"}, {"index": 69, "image_id": 2409304, "entity": "dog", "caption": "dog's paws are white", "question": ["are there dog's paws ?"], "prompt": "{}'s paws are white"}, {"index": 70, "image_id": 2409103, "entity": "dog", "caption": "the dog is wearing a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "the {} is wearing a blue collar"}, {"index": 71, "image_id": 2409103, "entity": "dog", "caption": "a book by T.C. Boyle is next to the dog", "question": ["is there a book ?", "is there the dog ?"], "prompt": "a book by T.C. Boyle is next to the {}"}, {"index": 72, "image_id": 2409103, "entity": "dog", "caption": "the dog is laying on top of an embroidered sheet", "question": ["is there the dog ?", "is there top ?", "is there an embroidered sheet ?"], "prompt": "the {} is laying on top of an embroidered sheet"}, {"index": 73, "image_id": 2408483, "entity": "dog", "caption": "Carpet is light in color under dog", "question": ["is there carpet ?", "is there color ?", "is there dog ?"], "prompt": "Carpet is light in color under {}"}, {"index": 74, "image_id": 2408383, "entity": "dog", "caption": "The dog and cat are looking in the same direction", "question": ["is there the dog ?", "is there cat ?", "is there the same direction ?"], "prompt": "The {} and cat are looking in the same direction"}, {"index": 75, "image_id": 2408210, "entity": "dog", "caption": "Nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "Nose of {} is black"}, {"index": 76, "image_id": 2408210, "entity": "dog", "caption": "Ears of dog is black and tan", "question": ["are there ears ?", "is there dog ?"], "prompt": "Ears of {} is black and tan"}, {"index": 77, "image_id": 2408210, "entity": "dog", "caption": "Eyes of dog are open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "Eyes of {} are open"}, {"index": 78, "image_id": 2408210, "entity": "dog", "caption": "three dogs are lying on a bed", "question": ["are there three dogs ?", "is there a bed ?"], "prompt": "three {}s are lying on a bed"}, {"index": 79, "image_id": 2408210, "entity": "dog", "caption": "the dog has his eyes open", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "the {} has his eyes open"}, {"index": 80, "image_id": 2408037, "entity": "dog", "caption": "the dog has red eyes", "question": ["is there the dog ?", "are there red eyes ?"], "prompt": "the {} has red eyes"}, {"index": 81, "image_id": 2408037, "entity": "dog", "caption": "the dog is holding carrot toy", "question": ["is there the dog ?", "is there carrot toy ?"], "prompt": "the {} is holding carrot toy"}, {"index": 82, "image_id": 2408037, "entity": "dog", "caption": "the dog has green ribbon on its nech", "question": ["is there the dog ?", "is there green ribbon ?"], "prompt": "the {} has green ribbon on its nech"}, {"index": 83, "image_id": 2408037, "entity": "dog", "caption": "a green toy is beside the dog", "question": ["is there a green toy ?", "is there the dog ?"], "prompt": "a green toy is beside the {}"}, {"index": 84, "image_id": 2408037, "entity": "dog", "caption": "the dog has brown legs", "question": ["is there the dog ?", "are there brown legs ?"], "prompt": "the {} has brown legs"}, {"index": 85, "image_id": 2407835, "entity": "dog", "caption": "Brown dog laying on a bed with eyes open.", "question": ["is there brown dog ?", "is there a bed ?", "are there eyes ?"], "prompt": "Brown {} laying on a bed with eyes open."}, {"index": 86, "image_id": 2407835, "entity": "dog", "caption": "dog is lying down.", "question": ["is there dog ?"], "prompt": "{} is lying down."}, {"index": 87, "image_id": 2407835, "entity": "dog", "caption": "dog is lying in cot.", "question": ["is there dog ?", "is there cot ?"], "prompt": "{} is lying in cot."}, {"index": 88, "image_id": 2407835, "entity": "dog", "caption": "dog nose is black color.", "question": ["is there dog nose ?", "is there black color ?"], "prompt": "{} nose is black color."}, {"index": 89, "image_id": 2407825, "entity": "dog", "caption": "the dog has two eyes", "question": ["is there the dog ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 90, "image_id": 2407825, "entity": "dog", "caption": "dog is wearing a collar", "question": ["is there dog ?", "is there a collar ?"], "prompt": "{} is wearing a collar"}, {"index": 91, "image_id": 2407825, "entity": "dog", "caption": "the dog is on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is on the couch"}, {"index": 92, "image_id": 2407825, "entity": "dog", "caption": "the dog has whiskers", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers"}, {"index": 93, "image_id": 2407234, "entity": "dog", "caption": "the dog is on the beanbag", "question": ["is there the dog ?", "is there the beanbag ?"], "prompt": "the {} is on the beanbag"}, {"index": 94, "image_id": 2407234, "entity": "dog", "caption": "a dog toy thats a rope", "question": ["is there a dog toy ?", "is there a rope ?"], "prompt": "a {} toy thats a rope"}, {"index": 95, "image_id": 2407234, "entity": "dog", "caption": "the dog is on bean bag", "question": ["is there the dog ?", "is there bean bag ?"], "prompt": "the {} is on bean bag"}, {"index": 96, "image_id": 2407234, "entity": "dog", "caption": "the dog is sad", "question": ["is there the dog ?"], "prompt": "the {} is sad"}, {"index": 97, "image_id": 2406999, "entity": "dog", "caption": "the dog has goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "the {} has goggles"}, {"index": 98, "image_id": 2406999, "entity": "dog", "caption": "The dog has a vest on", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "The {} has a vest on"}, {"index": 99, "image_id": 2406999, "entity": "dog", "caption": "The dog has goggles on", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} has goggles on"}, {"index": 100, "image_id": 2406999, "entity": "dog", "caption": "The dogs tongue is out. ", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is out. "}, {"index": 101, "image_id": 2406384, "entity": "dog", "caption": "The dog has amber-coloured eyes", "question": ["is there the dog ?", "are there amber-coloured eyes ?"], "prompt": "The {} has amber-coloured eyes"}, {"index": 102, "image_id": 2406384, "entity": "dog", "caption": "The dog's hat is courdoroy", "question": ["is there the dog's hat ?"], "prompt": "The {}'s hat is courdoroy"}, {"index": 103, "image_id": 2406384, "entity": "dog", "caption": "dog has collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} has collar"}, {"index": 104, "image_id": 2406384, "entity": "dog", "caption": "dog has whiskers", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers"}, {"index": 105, "image_id": 2406384, "entity": "dog", "caption": "dog has black lips", "question": ["is there dog ?", "are there black lips ?"], "prompt": "{} has black lips"}, {"index": 106, "image_id": 2406275, "entity": "dog", "caption": "dogs nose is black", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black"}, {"index": 107, "image_id": 2406275, "entity": "dog", "caption": "the dog has light brown eyes", "question": ["is there the dog ?", "are there light brown eyes ?"], "prompt": "the {} has light brown eyes"}, {"index": 108, "image_id": 2406275, "entity": "dog", "caption": "the dog has pointy ears", "question": ["is there the dog ?", "are there pointy ears ?"], "prompt": "the {} has pointy ears"}, {"index": 109, "image_id": 2406275, "entity": "dog", "caption": "something fuzzy is next to the dog", "question": ["is there something ?", "is there the dog ?"], "prompt": "something fuzzy is next to the {}"}, {"index": 110, "image_id": 2406275, "entity": "dog", "caption": "the dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "the {} has brown eyes"}, {"index": 111, "image_id": 2406275, "entity": "dog", "caption": "the dog is lying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is lying on a blanket"}, {"index": 112, "image_id": 2405633, "entity": "dog", "caption": "Dog kennel with dog.", "question": ["is there dog kennel ?", "is there dog ?"], "prompt": "Dog kennel with {}."}, {"index": 113, "image_id": 2405633, "entity": "dog", "caption": "The dog is lying on two blue and white pillows.", "question": ["is there the dog ?", "are there two blue and white pillows ?"], "prompt": "The {} is lying on two blue and white pillows."}, {"index": 114, "image_id": 2405484, "entity": "dog", "caption": "the dog has a pink tongue", "question": ["is there the dog ?", "is there a pink tongue ?"], "prompt": "the {} has a pink tongue"}, {"index": 115, "image_id": 2405484, "entity": "dog", "caption": "the dog is walking in the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is walking in the grass"}, {"index": 116, "image_id": 2405484, "entity": "dog", "caption": "the dog is wearing a metal collar", "question": ["is there the dog ?", "is there a metal collar ?"], "prompt": "the {} is wearing a metal collar"}, {"index": 117, "image_id": 2405484, "entity": "dog", "caption": "the dog is standing on the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is standing on the grass"}, {"index": 118, "image_id": 2405484, "entity": "dog", "caption": "the dog has a collar on", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar on"}, {"index": 119, "image_id": 2405484, "entity": "dog", "caption": "the dog has his tongue sticking out", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "the {} has his tongue sticking out"}, {"index": 120, "image_id": 2405484, "entity": "dog", "caption": "the dog is waggling his tail", "question": ["is there the dog ?", "is there his tail ?"], "prompt": "the {} is waggling his tail"}, {"index": 121, "image_id": 2405484, "entity": "dog", "caption": "the dog's collar is a chain", "question": ["is there the dog's collar ?", "is there a chain ?"], "prompt": "the {}'s collar is a chain"}, {"index": 122, "image_id": 2405484, "entity": "dog", "caption": "dog's tongue is pink", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink"}, {"index": 123, "image_id": 2405484, "entity": "dog", "caption": "dog is standing in the grass", "question": ["is there dog ?", "is there the grass ?"], "prompt": "{} is standing in the grass"}, {"index": 124, "image_id": 2405469, "entity": "dog", "caption": "The dog is wearing a collar. ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar. "}, {"index": 125, "image_id": 2405469, "entity": "dog", "caption": "The dog has it's head down. ", "question": ["is there the dog ?", "is there head ?"], "prompt": "The {} has it's head down. "}, {"index": 126, "image_id": 2405469, "entity": "dog", "caption": "the dog has sharp teeth", "question": ["is there the dog ?", "are there sharp teeth ?"], "prompt": "the {} has sharp teeth"}, {"index": 127, "image_id": 2405469, "entity": "dog", "caption": "the dog is on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground"}, {"index": 128, "image_id": 2405469, "entity": "dog", "caption": "dog is barking to the other dog", "question": ["is there dog ?", "is there the other dog ?"], "prompt": "{} is barking to the other {}"}, {"index": 129, "image_id": 2405469, "entity": "dog", "caption": "Dog ready to bite another dog", "question": ["is there dog ?", "is there another dog ?"], "prompt": "Dog ready to bite another {}"}, {"index": 130, "image_id": 2405369, "entity": "dog", "caption": "The dog is sleeping in a bed. ", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "The {} is sleeping in a bed. "}, {"index": 131, "image_id": 2405369, "entity": "dog", "caption": "The dog's nose hangs over the bed's edge.", "question": ["is there the dog's nose ?", "is there the bed's edge ?"], "prompt": "The {}'s nose hangs over the bed's edge."}, {"index": 132, "image_id": 2405369, "entity": "dog", "caption": "the dog is on a bed", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "the {} is on a bed"}, {"index": 133, "image_id": 2405369, "entity": "dog", "caption": "the dog sleeps on a tan and white dog bed", "question": ["is there the dog ?", "is there a tan and white dog bed ?"], "prompt": "the {} sleeps on a tan and white {} bed"}, {"index": 134, "image_id": 2405369, "entity": "dog", "caption": "the dog lays curled up on a plush dog bed", "question": ["is there the dog ?", "is there a plush dog bed ?"], "prompt": "the {} lays curled up on a plush {} bed"}, {"index": 135, "image_id": 2405369, "entity": "dog", "caption": "dogs ear on bottom left", "question": ["are there dogs ?", "is there bottom ?"], "prompt": "{}s ear on bottom left"}, {"index": 136, "image_id": 2405369, "entity": "dog", "caption": "White dog curled up sleeping on its bed", "question": ["is there white dog ?", "is there its bed ?"], "prompt": "White {} curled up sleeping on its bed"}, {"index": 137, "image_id": 2405343, "entity": "dog", "caption": "the dog has a Santa hat on his head", "question": ["is there the dog ?", "is there a santa hat ?", "is there his head ?"], "prompt": "the {} has a Santa hat on his head"}, {"index": 138, "image_id": 2405343, "entity": "dog", "caption": "the dog has a black eye", "question": ["is there the dog ?", "is there a black eye ?"], "prompt": "the {} has a black eye"}, {"index": 139, "image_id": 2405343, "entity": "dog", "caption": "the nose of the dog is black", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose of the {} is black"}, {"index": 140, "image_id": 2405343, "entity": "dog", "caption": "the fur on the dog is black and white ", "question": ["is there the fur ?", "is there the dog ?"], "prompt": "the fur on the {} is black and white "}, {"index": 141, "image_id": 2405343, "entity": "dog", "caption": "the dog has a white chest", "question": ["is there the dog ?", "is there a white chest ?"], "prompt": "the {} has a white chest"}, {"index": 142, "image_id": 2405343, "entity": "dog", "caption": "the dog's ear is black", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is black"}, {"index": 143, "image_id": 2405343, "entity": "dog", "caption": "the dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open"}, {"index": 144, "image_id": 2404815, "entity": "dog", "caption": "a cat sleeps on a dog", "question": ["is there a cat ?", "is there a dog ?"], "prompt": "a cat sleeps on a {}"}, {"index": 145, "image_id": 2404815, "entity": "dog", "caption": "a cat and dog lie on a wooden floor", "question": ["is there a cat ?", "is there dog ?", "is there a wooden floor ?"], "prompt": "a cat and {} lie on a wooden floor"}, {"index": 146, "image_id": 2404815, "entity": "dog", "caption": "the cat is laying on the dog", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "the cat is laying on the {}"}, {"index": 147, "image_id": 2404815, "entity": "dog", "caption": "the dog is laying on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is laying on the floor"}, {"index": 148, "image_id": 2404815, "entity": "dog", "caption": "the dog has something around its neck", "question": ["is there the dog ?", "is there something ?", "is there its neck ?"], "prompt": "the {} has something around its neck"}, {"index": 149, "image_id": 2404815, "entity": "dog", "caption": "the dog's ear is sticking up", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is sticking up"}, {"index": 150, "image_id": 2404815, "entity": "dog", "caption": "the dog is wearing a bandana on his neck", "question": ["is there the dog ?", "is there a bandana ?", "is there his neck ?"], "prompt": "the {} is wearing a bandana on his neck"}, {"index": 151, "image_id": 2404815, "entity": "dog", "caption": "the kitten is laying on top of the dog", "question": ["is there top ?", "is there the dog ?"], "prompt": "the kitten is laying on top of the {}"}, {"index": 152, "image_id": 2404815, "entity": "dog", "caption": "the dogs paws are white", "question": ["are there the dogs paws ?"], "prompt": "the {}s paws are white"}, {"index": 153, "image_id": 2404815, "entity": "dog", "caption": "the dog doesnt seem to mind the kitty laying on him", "question": ["is there the dog ?", "is there the kitty ?"], "prompt": "the {} doesnt seem to mind the kitty laying on him"}, {"index": 154, "image_id": 2404707, "entity": "dog", "caption": "A black dog sits on stairs", "question": ["is there a black dog ?", "are there stairs ?"], "prompt": "A black {} sits on stairs"}, {"index": 155, "image_id": 2404707, "entity": "dog", "caption": "The dog is wearing a red bow tie around its neck", "question": ["is there the dog ?", "is there a red bow tie ?", "is there its neck ?"], "prompt": "The {} is wearing a red bow tie around its neck"}, {"index": 156, "image_id": 2404707, "entity": "dog", "caption": "The dog has its head cocked to the side", "question": ["is there the dog ?", "is there its head ?", "is there the side ?"], "prompt": "The {} has its head cocked to the side"}, {"index": 157, "image_id": 2404707, "entity": "dog", "caption": "The dogs left hind leg is hanging off the stair", "question": ["are there the dogs ?", "is there hind leg ?", "is there the stair ?"], "prompt": "The {}s left hind leg is hanging off the stair"}, {"index": 158, "image_id": 2404163, "entity": "dog", "caption": "a woman is petting the dog", "question": ["is there a woman ?", "is there the dog ?"], "prompt": "a woman is petting the {}"}, {"index": 159, "image_id": 2404163, "entity": "dog", "caption": "the dog wears a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} wears a red collar"}, {"index": 160, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing red scarf", "question": ["is there person ?", "is there dog ?", "is there red scarf ?"], "prompt": "person petting {} is wearing red scarf"}, {"index": 161, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing a black dress", "question": ["is there person ?", "is there dog ?", "is there a black dress ?"], "prompt": "person petting {} is wearing a black dress"}, {"index": 162, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red and white scarf", "question": ["is there the dog ?", "is there a red and white scarf ?"], "prompt": "the {} is wearing a red and white scarf"}, {"index": 163, "image_id": 2404163, "entity": "dog", "caption": "the dog looks up at the woman", "question": ["is there the dog ?", "is there the woman ?"], "prompt": "the {} looks up at the woman"}, {"index": 164, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red halter style lead", "question": ["is there the dog ?", "is there a red halter style ?"], "prompt": "the {} is wearing a red halter style lead"}, {"index": 165, "image_id": 2404163, "entity": "dog", "caption": "a woman reaches down to a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "a woman reaches down to a {}"}, {"index": 166, "image_id": 2404163, "entity": "dog", "caption": "the woman in the red shoes pets the dog", "question": ["is there the woman ?", "are there the red shoes ?", "is there the dog ?"], "prompt": "the woman in the red shoes pets the {}"}, {"index": 167, "image_id": 2404075, "entity": "dog", "caption": "The dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket"}, {"index": 168, "image_id": 2403923, "entity": "dog", "caption": "the dog has a green collar", "question": ["is there the dog ?", "is there a green collar ?"], "prompt": "the {} has a green collar"}, {"index": 169, "image_id": 2403914, "entity": "dog", "caption": "This dog has his eyes closed", "question": ["is there this dog ?", "are there his eyes ?"], "prompt": "This {} has his eyes closed"}, {"index": 170, "image_id": 2403914, "entity": "dog", "caption": "This snauser dog has long ears", "question": ["is there this snauser dog ?", "are there long ears ?"], "prompt": "This snauser {} has long ears"}, {"index": 171, "image_id": 2403914, "entity": "dog", "caption": "This dog has a pug nose", "question": ["is there this dog ?", "is there a pug nose ?"], "prompt": "This {} has a pug nose"}, {"index": 172, "image_id": 2403914, "entity": "dog", "caption": "A dog's ear peeking out from the other side of its head", "question": ["is there a dog's ear ?", "is there the other side ?", "is there its head ?"], "prompt": "A {}'s ear peeking out from the other side of its head"}, {"index": 173, "image_id": 2403430, "entity": "dog", "caption": "The dog is laying on a couch.", "question": ["is there the dog ?", "is there a couch ?"], "prompt": "The {} is laying on a couch."}, {"index": 174, "image_id": 2403430, "entity": "dog", "caption": "black dog with eyes open", "question": ["is there black dog ?", "are there eyes ?"], "prompt": "black {} with eyes open"}, {"index": 175, "image_id": 2403430, "entity": "dog", "caption": "The dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes"}, {"index": 176, "image_id": 2403430, "entity": "dog", "caption": "The black dog likes laying on the couch", "question": ["is there the black dog ?", "is there the couch ?"], "prompt": "The black {} likes laying on the couch"}, {"index": 177, "image_id": 2403430, "entity": "dog", "caption": "the dog is laying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is laying on the couch"}, {"index": 178, "image_id": 2403430, "entity": "dog", "caption": "the dog's eye is brown", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is brown"}, {"index": 179, "image_id": 2403359, "entity": "dog", "caption": "a dog and a horse share an Eskimo kiss", "question": ["is there a dog ?", "is there a horse share ?"], "prompt": "a {} and a horse share an Eskimo kiss"}, {"index": 180, "image_id": 2403245, "entity": "dog", "caption": "large brown dog leashed to chair", "question": ["is there large brown dog ?", "is there chair ?"], "prompt": "large brown {} leashed to chair"}, {"index": 181, "image_id": 2403245, "entity": "dog", "caption": "the dog is on deck", "question": ["is there the dog ?", "is there deck ?"], "prompt": "the {} is on deck"}, {"index": 182, "image_id": 2403245, "entity": "dog", "caption": "the leash is on dog", "question": ["is there the leash ?", "is there dog ?"], "prompt": "the leash is on {}"}, {"index": 183, "image_id": 2403245, "entity": "dog", "caption": "Leash tied on golden dog", "question": ["is there golden dog ?"], "prompt": "Leash tied on golden {}"}, {"index": 184, "image_id": 2402933, "entity": "dog", "caption": "the doggy has a party hat on", "question": ["is there the doggy ?", "is there a party hat ?"], "prompt": "the {}gy has a party hat on"}, {"index": 185, "image_id": 2402933, "entity": "dog", "caption": "a stuffed animal is next to the dog", "question": ["is there a stuffed animal ?", "is there the dog ?"], "prompt": "a stuffed animal is next to the {}"}, {"index": 186, "image_id": 2402907, "entity": "dog", "caption": "The dog is standing on carpet", "question": ["is there the dog ?", "is there carpet ?"], "prompt": "The {} is standing on carpet"}, {"index": 187, "image_id": 2402907, "entity": "dog", "caption": "The dog has a collar and tags", "question": ["is there the dog ?", "is there a collar ?", "are there tags ?"], "prompt": "The {} has a collar and tags"}, {"index": 188, "image_id": 2402906, "entity": "dog", "caption": "a dog cover the book", "question": ["is there a dog ?", "is there the book ?"], "prompt": "a {} cover the book"}, {"index": 189, "image_id": 2402906, "entity": "dog", "caption": "the dog is looking to the left", "question": ["is there the dog ?"], "prompt": "the {} is looking to the left"}, {"index": 190, "image_id": 2402906, "entity": "dog", "caption": "the dog has black eyes", "question": ["is there the dog ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 191, "image_id": 2402433, "entity": "dog", "caption": "The dog's eyes are brown.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are brown."}, {"index": 192, "image_id": 2402433, "entity": "dog", "caption": "The dog's fur is brown and black.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is brown and black."}, {"index": 193, "image_id": 2402433, "entity": "dog", "caption": "The dog's tongue is pink.", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is pink."}, {"index": 194, "image_id": 2402433, "entity": "dog", "caption": "The dog's ears are down.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are down."}, {"index": 195, "image_id": 2402363, "entity": "dog", "caption": "the dog and the cat are on the pillow together", "question": ["is there the dog ?", "is there the cat ?", "is there the pillow ?"], "prompt": "the {} and the cat are on the pillow together"}, {"index": 196, "image_id": 2402363, "entity": "dog", "caption": "cat and dog sleeping on pet bed together", "question": ["is there cat ?", "is there dog ?", "is there pet bed ?"], "prompt": "cat and {} sleeping on pet bed together"}, {"index": 197, "image_id": 2402351, "entity": "dog", "caption": "The dog has a frisbee in his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee in his mouth."}, {"index": 198, "image_id": 2402351, "entity": "dog", "caption": "The dog has a white bushy tail.", "question": ["is there the dog ?", "is there a white bushy tail ?"], "prompt": "The {} has a white bushy tail."}, {"index": 199, "image_id": 2402351, "entity": "dog", "caption": "A flower pot is on the side of the dog.", "question": ["is there a flower pot ?", "is there the side ?", "is there the dog ?"], "prompt": "A flower pot is on the side of the {}."}, {"index": 200, "image_id": 2402059, "entity": "dog", "caption": "the dog has a human's tie around it's neck", "question": ["is there the dog ?", "is there a human's tie ?", "is there neck ?"], "prompt": "the {} has a human's tie around it's neck"}, {"index": 201, "image_id": 2401271, "entity": "dog", "caption": "The head of the dog sitting down.", "question": ["is there the head ?", "is there the dog ?"], "prompt": "The head of the {} sitting down."}, {"index": 202, "image_id": 2401271, "entity": "dog", "caption": "Soft brown chair the dog sits on", "question": ["is there soft brown chair ?", "is there the dog ?"], "prompt": "Soft brown chair the {} sits on"}, {"index": 203, "image_id": 2401271, "entity": "dog", "caption": "dog sittin gin brown chiar", "question": ["is there dog ?", "is there gin brown chiar ?"], "prompt": "{} sittin gin brown chiar"}, {"index": 204, "image_id": 2401271, "entity": "dog", "caption": "The dog is black and brown.", "question": ["is there the dog ?"], "prompt": "The {} is black and brown."}, {"index": 205, "image_id": 2401271, "entity": "dog", "caption": "The dog's nose is black.", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black."}, {"index": 206, "image_id": 2401024, "entity": "dog", "caption": "the dog has ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has ears"}, {"index": 207, "image_id": 2401024, "entity": "dog", "caption": "the dog is wearing strap", "question": ["is there the dog ?", "is there strap ?"], "prompt": "the {} is wearing strap"}, {"index": 208, "image_id": 2401024, "entity": "dog", "caption": "dog is wearing sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is wearing sweater"}, {"index": 209, "image_id": 2401024, "entity": "dog", "caption": "The sweater the dog is wearing", "question": ["is there the sweater ?", "is there the dog ?"], "prompt": "The sweater the {} is wearing"}, {"index": 210, "image_id": 2400958, "entity": "dog", "caption": "the man behind the dogs has blue jeans on", "question": ["is there the man ?", "are there the dogs ?", "are there blue jeans ?"], "prompt": "the man behind the {}s has blue jeans on"}, {"index": 211, "image_id": 2400958, "entity": "dog", "caption": "dog with tongue hanging out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue hanging out"}, {"index": 212, "image_id": 2400922, "entity": "dog", "caption": "The dog is staring out the window.", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is staring out the window."}, {"index": 213, "image_id": 2400865, "entity": "dog", "caption": "The dog is on a blanket.", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket."}, {"index": 214, "image_id": 2400865, "entity": "dog", "caption": "the dogs nose is pink.", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is pink."}, {"index": 215, "image_id": 2400865, "entity": "dog", "caption": "the dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "the {}s tongue is pink."}, {"index": 216, "image_id": 2400378, "entity": "dog", "caption": "this is the dog's head", "question": ["is there the dog's head ?"], "prompt": "this is the {}'s head"}, {"index": 217, "image_id": 2400368, "entity": "dog", "caption": "a dogs left paw", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw"}, {"index": 218, "image_id": 2399686, "entity": "dog", "caption": "a dog with its ears perked up", "question": ["is there a dog ?", "are there its ears ?"], "prompt": "a {} with its ears perked up"}, {"index": 219, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left eye", "question": ["are there the black dogs ?", "is there eye ?"], "prompt": "the black {}s left eye"}, {"index": 220, "image_id": 2399125, "entity": "dog", "caption": "the black dogs right eye", "question": ["are there the black dogs ?"], "prompt": "the black {}s right eye"}, {"index": 221, "image_id": 2399125, "entity": "dog", "caption": "piece of wood dog is lying on", "question": ["is there piece ?", "is there wood dog ?"], "prompt": "piece of wood {} is lying on"}, {"index": 222, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left ear", "question": ["are there the black dogs ?", "is there ear ?"], "prompt": "the black {}s left ear"}, {"index": 223, "image_id": 2399037, "entity": "dog", "caption": "she is holding a dog", "question": ["is there a dog ?"], "prompt": "she is holding a {}"}, {"index": 224, "image_id": 2399037, "entity": "dog", "caption": "The girl's hand that is resting on the dog.", "question": ["is there the girl's hand ?", "is there the dog ?"], "prompt": "The girl's hand that is resting on the {}."}, {"index": 225, "image_id": 2399037, "entity": "dog", "caption": "Girl's hand is on the dog.", "question": ["is there girl's hand ?", "is there the dog ?"], "prompt": "Girl's hand is on the {}."}, {"index": 226, "image_id": 2399037, "entity": "dog", "caption": "this is a dog", "question": ["is there a dog ?"], "prompt": "this is a {}"}, {"index": 227, "image_id": 2397742, "entity": "dog", "caption": "a green rug the dog is laying on", "question": ["is there a green rug ?", "is there the dog ?"], "prompt": "a green rug the {} is laying on"}, {"index": 228, "image_id": 2397739, "entity": "dog", "caption": "A dog is in front of a motorcycle.", "question": ["is there a dog ?", "is there front ?", "is there a motorcycle ?"], "prompt": "A {} is in front of a motorcycle."}, {"index": 229, "image_id": 2397739, "entity": "dog", "caption": "A dog has black and white spots.", "question": ["is there a dog ?", "are there black and white spots ?"], "prompt": "A {} has black and white spots."}, {"index": 230, "image_id": 2397739, "entity": "dog", "caption": "A dog is behind another dog.", "question": ["is there a dog ?", "is there another dog ?"], "prompt": "A {} is behind another {}."}, {"index": 231, "image_id": 2397739, "entity": "dog", "caption": "motorbike parked behind dogs", "question": ["is there motorbike ?", "are there dogs ?"], "prompt": "motorbike parked behind {}s"}, {"index": 232, "image_id": 2397731, "entity": "dog", "caption": "the red collar the dog is wearing", "question": ["is there the red collar ?", "is there the dog ?"], "prompt": "the red collar the {} is wearing"}, {"index": 233, "image_id": 2397731, "entity": "dog", "caption": "the green grass the dog is standing on", "question": ["is there the green grass ?", "is there the dog ?"], "prompt": "the green grass the {} is standing on"}, {"index": 234, "image_id": 2397731, "entity": "dog", "caption": "the dogs colored leash", "question": ["are there the dogs ?"], "prompt": "the {}s colored leash"}, {"index": 235, "image_id": 2397368, "entity": "dog", "caption": "the dog is holding something on its mouth", "question": ["is there the dog ?", "is there something ?", "is there its mouth ?"], "prompt": "the {} is holding something on its mouth"}, {"index": 236, "image_id": 2397327, "entity": "dog", "caption": "dog has big brown eyes", "question": ["is there dog ?", "are there big brown eyes ?"], "prompt": "{} has big brown eyes"}, {"index": 237, "image_id": 2397327, "entity": "dog", "caption": "dog has small black nose", "question": ["is there dog ?", "is there small black nose ?"], "prompt": "{} has small black nose"}, {"index": 238, "image_id": 2397327, "entity": "dog", "caption": "collar on dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar on {} is black"}, {"index": 239, "image_id": 2397327, "entity": "dog", "caption": "the carpet the dog is standing on", "question": ["is there the carpet ?", "is there the dog ?"], "prompt": "the carpet the {} is standing on"}, {"index": 240, "image_id": 2397327, "entity": "dog", "caption": "the dogs tail", "question": ["are there the dogs ?"], "prompt": "the {}s tail"}, {"index": 241, "image_id": 2397165, "entity": "dog", "caption": "a dogs left paw.", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw."}, {"index": 242, "image_id": 2396130, "entity": "dog", "caption": "A cushion a dog is lying on. ", "question": ["is there a cushion ?", "is there a dog ?"], "prompt": "A cushion a {} is lying on. "}, {"index": 243, "image_id": 2396130, "entity": "dog", "caption": "The dog is laying on the couch.", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "The {} is laying on the couch."}, {"index": 244, "image_id": 2395670, "entity": "dog", "caption": "dog is wearing a tiara", "question": ["is there dog ?", "is there a tiara ?"], "prompt": "{} is wearing a tiara"}, {"index": 245, "image_id": 2395670, "entity": "dog", "caption": "the dog is wearing a tutu", "question": ["is there the dog ?", "is there a tutu ?"], "prompt": "the {} is wearing a tutu"}, {"index": 246, "image_id": 2395670, "entity": "dog", "caption": "bulldog has big brown eye", "question": ["is there big brown eye ?"], "prompt": "bull{} has big brown eye"}, {"index": 247, "image_id": 2395670, "entity": "dog", "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest", "question": ["is there green ribbon ?", "is there orange collar+ribbed orange vest ?"], "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"}, {"index": 248, "image_id": 2395473, "entity": "dog", "caption": "The dog is on top of the pillow", "question": ["is there the dog ?", "is there top ?", "is there the pillow ?"], "prompt": "The {} is on top of the pillow"}, {"index": 249, "image_id": 2395473, "entity": "dog", "caption": "The dog is hugging the stuffed animal", "question": ["is there the dog ?", "is there the stuffed animal ?"], "prompt": "The {} is hugging the stuffed animal"}, {"index": 250, "image_id": 2395473, "entity": "dog", "caption": "stuff is on the floor behind the dog", "question": ["is there stuff ?", "is there the floor ?", "is there the dog ?"], "prompt": "stuff is on the floor behind the {}"}, {"index": 251, "image_id": 2395473, "entity": "dog", "caption": "a white pillow is underneath the dog", "question": ["is there a white pillow ?", "is there the dog ?"], "prompt": "a white pillow is underneath the {}"}, {"index": 252, "image_id": 2395473, "entity": "dog", "caption": "a black speaker is behind the dog", "question": ["is there a black speaker ?", "is there the dog ?"], "prompt": "a black speaker is behind the {}"}, {"index": 253, "image_id": 2395473, "entity": "dog", "caption": "old looking curtains is above the dog's head", "question": ["are there old looking curtains ?", "is there the dog's head ?"], "prompt": "old looking curtains is above the {}'s head"}, {"index": 254, "image_id": 2395369, "entity": "dog", "caption": "grey run the dog is standing on", "question": ["is there the dog ?"], "prompt": "grey run the {} is standing on"}, {"index": 255, "image_id": 2395369, "entity": "dog", "caption": "cat and dog playing with each other ", "question": ["is there cat ?", "is there dog ?"], "prompt": "cat and {} playing with each other "}, {"index": 256, "image_id": 2395369, "entity": "dog", "caption": "head of dog is black", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is black"}, {"index": 257, "image_id": 2394681, "entity": "dog", "caption": "The dog's tail is visible.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is visible."}, {"index": 258, "image_id": 2394681, "entity": "dog", "caption": "the dog has tail", "question": ["is there the dog ?", "is there tail ?"], "prompt": "the {} has tail"}, {"index": 259, "image_id": 2394499, "entity": "dog", "caption": "the dog is wearing a hat", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "the {} is wearing a hat"}, {"index": 260, "image_id": 2394499, "entity": "dog", "caption": "dog is wearing a fedora", "question": ["is there dog ?", "is there a fedora ?"], "prompt": "{} is wearing a fedora"}, {"index": 261, "image_id": 2394499, "entity": "dog", "caption": "The dog has a toy.", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "The {} has a toy."}, {"index": 262, "image_id": 2394499, "entity": "dog", "caption": "The dog is laying on a pillow.", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is laying on a pillow."}, {"index": 263, "image_id": 2394372, "entity": "dog", "caption": "The dog is black and white.", "question": ["is there the dog ?"], "prompt": "The {} is black and white."}, {"index": 264, "image_id": 2394372, "entity": "dog", "caption": "dog has white body with black spots", "question": ["is there dog ?", "is there white body ?", "are there black spots ?"], "prompt": "{} has white body with black spots"}, {"index": 265, "image_id": 2394372, "entity": "dog", "caption": "dog has cast a shadow", "question": ["is there dog ?", "is there a shadow ?"], "prompt": "{} has cast a shadow"}, {"index": 266, "image_id": 2394372, "entity": "dog", "caption": "dog has big fluffy tail", "question": ["is there dog ?", "is there big fluffy tail ?"], "prompt": "{} has big fluffy tail"}, {"index": 267, "image_id": 2394372, "entity": "dog", "caption": "dog has tags on collar", "question": ["is there dog ?", "are there tags ?", "is there collar ?"], "prompt": "{} has tags on collar"}, {"index": 268, "image_id": 2394372, "entity": "dog", "caption": "dog is wearing a white collar", "question": ["is there dog ?", "is there a white collar ?"], "prompt": "{} is wearing a white collar"}, {"index": 269, "image_id": 2394372, "entity": "dog", "caption": "dog is black and white", "question": ["is there dog ?"], "prompt": "{} is black and white"}, {"index": 270, "image_id": 2394372, "entity": "dog", "caption": "dog has frilly tail", "question": ["is there dog ?"], "prompt": "{} has frilly tail"}, {"index": 271, "image_id": 2394372, "entity": "dog", "caption": "dog has brown spots", "question": ["is there dog ?", "are there brown spots ?"], "prompt": "{} has brown spots"}, {"index": 272, "image_id": 2394372, "entity": "dog", "caption": "dog wears white collar", "question": ["is there dog ?", "is there white collar ?"], "prompt": "{} wears white collar"}, {"index": 273, "image_id": 2394372, "entity": "dog", "caption": "A dog is on the sand.", "question": ["is there a dog ?", "is there the sand ?"], "prompt": "A {} is on the sand."}, {"index": 274, "image_id": 2394372, "entity": "dog", "caption": "The dog is balck and white.", "question": ["is there the dog ?"], "prompt": "The {} is balck and white."}, {"index": 275, "image_id": 2394372, "entity": "dog", "caption": "The dog has a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar."}, {"index": 276, "image_id": 2394065, "entity": "dog", "caption": "The dog is licking the water bottle.", "question": ["is there the dog ?", "is there the water bottle ?"], "prompt": "The {} is licking the water bottle."}, {"index": 277, "image_id": 2394065, "entity": "dog", "caption": "The dog is standing next to the person.", "question": ["is there the dog ?", "is there the person ?"], "prompt": "The {} is standing next to the person."}, {"index": 278, "image_id": 2393921, "entity": "dog", "caption": "Aviator glasses on dogs face", "question": ["are there aviator glasses ?", "are there dogs ?"], "prompt": "Aviator glasses on {}s face"}, {"index": 279, "image_id": 2393921, "entity": "dog", "caption": "The dog has glasses on", "question": ["is there the dog ?", "are there glasses ?"], "prompt": "The {} has glasses on"}, {"index": 280, "image_id": 2393921, "entity": "dog", "caption": "The dog has a hat on", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} has a hat on"}, {"index": 281, "image_id": 2393921, "entity": "dog", "caption": "The dog has on a red bib", "question": ["is there the dog ?", "is there a red bib ?"], "prompt": "The {} has on a red bib"}, {"index": 282, "image_id": 2393921, "entity": "dog", "caption": "The dog is sitting in a seat", "question": ["is there the dog ?", "is there a seat ?"], "prompt": "The {} is sitting in a seat"}, {"index": 283, "image_id": 2393366, "entity": "dog", "caption": "this is the dog's nose", "question": ["is there the dog's nose ?"], "prompt": "this is the {}'s nose"}, {"index": 284, "image_id": 2393366, "entity": "dog", "caption": "these are the dog's eyes", "question": ["are there the dog's eyes ?"], "prompt": "these are the {}'s eyes"}, {"index": 285, "image_id": 2393366, "entity": "dog", "caption": "the dog's eye is orange", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is orange"}, {"index": 286, "image_id": 2392895, "entity": "dog", "caption": "a dog with his eyes closed", "question": ["is there a dog ?", "are there his eyes ?"], "prompt": "a {} with his eyes closed"}, {"index": 287, "image_id": 2392895, "entity": "dog", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "{} is on a boat"}, {"index": 288, "image_id": 2392895, "entity": "dog", "caption": "dog has a red collar on", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} has a red collar on"}, {"index": 289, "image_id": 2392895, "entity": "dog", "caption": "dog has a name tag", "question": ["is there dog ?", "is there a name tag ?"], "prompt": "{} has a name tag"}, {"index": 290, "image_id": 2392895, "entity": "dog", "caption": "dog has partially white fur", "question": ["is there dog ?", "is there partially white fur ?"], "prompt": "{} has partially white fur"}, {"index": 291, "image_id": 2392690, "entity": "dog", "caption": "a dog is on the grass", "question": ["is there a dog ?", "is there the grass ?"], "prompt": "a {} is on the grass"}, {"index": 292, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water", "question": ["is there dog ?", "is there water ?"], "prompt": "{} is drinking water"}, {"index": 293, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water from a bottle", "question": ["is there dog ?", "is there water ?", "is there a bottle ?"], "prompt": "{} is drinking water from a bottle"}, {"index": 294, "image_id": 2392690, "entity": "dog", "caption": "water is dripping from the dogs face", "question": ["is there water ?", "are there the dogs ?"], "prompt": "water is dripping from the {}s face"}, {"index": 295, "image_id": 2392690, "entity": "dog", "caption": "thirsty dog is taking a drink", "question": ["is there thirsty dog ?", "is there a drink ?"], "prompt": "thirsty {} is taking a drink"}, {"index": 296, "image_id": 2392690, "entity": "dog", "caption": "dog has drunk half the water bottle", "question": ["is there dog ?", "is there half the water bottle ?"], "prompt": "{} has drunk half the water bottle"}, {"index": 297, "image_id": 2392606, "entity": "dog", "caption": "The two dogs are waring party hats.", "question": ["are there the two dogs ?", "are there party hats ?"], "prompt": "The two {}s are waring party hats."}, {"index": 298, "image_id": 2392334, "entity": "dog", "caption": "The dog has long hair.", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "The {} has long hair."}, {"index": 299, "image_id": 2392334, "entity": "dog", "caption": "white dog wagging its tail", "question": ["is there white dog ?", "is there its tail ?"], "prompt": "white {} wagging its tail"}, {"index": 300, "image_id": 2392033, "entity": "dog", "caption": "ears of dog are long", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are long"}, {"index": 301, "image_id": 2392033, "entity": "dog", "caption": "tail of brown dog is furry", "question": ["is there tail ?", "is there brown dog ?"], "prompt": "tail of brown {} is furry"}, {"index": 302, "image_id": 2392033, "entity": "dog", "caption": "nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black"}, {"index": 303, "image_id": 2391972, "entity": "dog", "caption": "dog wears attentive expression", "question": ["is there dog ?", "is there attentive expression ?"], "prompt": "{} wears attentive expression"}, {"index": 304, "image_id": 2391972, "entity": "dog", "caption": "dog has soulful eye, folded down ear", "question": ["is there dog ?", "is there soulful eye ?", "is there ear ?"], "prompt": "{} has soulful eye, folded down ear"}, {"index": 305, "image_id": 2391972, "entity": "dog", "caption": "dog is wearing dog collar", "question": ["is there dog ?", "is there dog collar ?"], "prompt": "{} is wearing {} collar"}, {"index": 306, "image_id": 2391972, "entity": "dog", "caption": "the dog collar is black", "question": ["is there the dog collar ?"], "prompt": "the {} collar is black"}, {"index": 307, "image_id": 2390997, "entity": "dog", "caption": "dog has black leash", "question": ["is there dog ?", "is there black leash ?"], "prompt": "{} has black leash"}, {"index": 308, "image_id": 2390997, "entity": "dog", "caption": "dog has black fur", "question": ["is there dog ?", "is there black fur ?"], "prompt": "{} has black fur"}, {"index": 309, "image_id": 2390997, "entity": "dog", "caption": "this is a dog collar", "question": ["is there a dog collar ?"], "prompt": "this is a {} collar"}, {"index": 310, "image_id": 2390915, "entity": "dog", "caption": "dog has brown eyes", "question": ["is there dog ?", "are there brown eyes ?"], "prompt": "{} has brown eyes"}, {"index": 311, "image_id": 2390915, "entity": "dog", "caption": "these are the dog's paws", "question": ["are there the dog's paws ?"], "prompt": "these are the {}'s paws"}, {"index": 312, "image_id": 2390745, "entity": "dog", "caption": "a dog is lying on his side", "question": ["is there a dog ?", "is there his side ?"], "prompt": "a {} is lying on his side"}, {"index": 313, "image_id": 2390745, "entity": "dog", "caption": "ear of dog is long", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is long"}, {"index": 314, "image_id": 2390745, "entity": "dog", "caption": "The dog's eyes are wide open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are wide open"}, {"index": 315, "image_id": 2390745, "entity": "dog", "caption": "The dog is relaxing", "question": ["is there the dog ?"], "prompt": "The {} is relaxing"}, {"index": 316, "image_id": 2390588, "entity": "dog", "caption": "The dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "The {} has nose"}, {"index": 317, "image_id": 2390588, "entity": "dog", "caption": "the sling is on dog", "question": ["is there the sling ?", "is there dog ?"], "prompt": "the sling is on {}"}, {"index": 318, "image_id": 2390588, "entity": "dog", "caption": "the eyes are on the dog", "question": ["are there the eyes ?", "is there the dog ?"], "prompt": "the eyes are on the {}"}, {"index": 319, "image_id": 2390301, "entity": "dog", "caption": "dog's tongue hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue hanging out"}, {"index": 320, "image_id": 2390301, "entity": "dog", "caption": "The dog closes his eyes", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "The {} closes his eyes"}, {"index": 321, "image_id": 2390301, "entity": "dog", "caption": "The dogs fur is wet", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is wet"}, {"index": 322, "image_id": 2390301, "entity": "dog", "caption": "The dog has collar on", "question": ["is there the dog ?", "is there collar ?"], "prompt": "The {} has collar on"}, {"index": 323, "image_id": 2390301, "entity": "dog", "caption": "The dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose"}, {"index": 324, "image_id": 2390301, "entity": "dog", "caption": "The dogs eye is closed", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is closed"}, {"index": 325, "image_id": 2390301, "entity": "dog", "caption": "dog has a large pink tounge", "question": ["is there dog ?", "is there a large pink tounge ?"], "prompt": "{} has a large pink tounge"}, {"index": 326, "image_id": 2390301, "entity": "dog", "caption": "shallow water with dog paws submerged", "question": ["is there shallow water ?", "are there dog paws ?"], "prompt": "shallow water with {} paws submerged"}, {"index": 327, "image_id": 2390301, "entity": "dog", "caption": "tan dog standing in the ocean", "question": ["is there the ocean ?"], "prompt": "tan {} standing in the ocean"}, {"index": 328, "image_id": 2390301, "entity": "dog", "caption": "dog with his tongue hanging out", "question": ["is there dog ?", "is there his tongue ?"], "prompt": "{} with his tongue hanging out"}, {"index": 329, "image_id": 2390135, "entity": "dog", "caption": "Th enose od the dog.", "question": ["is there th enose ?", "is there od the dog ?"], "prompt": "Th enose od the {}."}, {"index": 330, "image_id": 2390135, "entity": "dog", "caption": "The dog rests his head.", "question": ["is there the dog ?", "is there his head ?"], "prompt": "The {} rests his head."}, {"index": 331, "image_id": 2390135, "entity": "dog", "caption": "The dogs ear", "question": ["are there the dogs ?"], "prompt": "The {}s ear"}, {"index": 332, "image_id": 2390135, "entity": "dog", "caption": "The dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye"}, {"index": 333, "image_id": 2390107, "entity": "dog", "caption": "long black dog tail curved up", "question": ["is there long black dog tail ?"], "prompt": "long black {} tail curved up"}, {"index": 334, "image_id": 2390107, "entity": "dog", "caption": "the dog has a white spot on it's leg", "question": ["is there the dog ?", "is there a white spot ?", "is there it's leg ?"], "prompt": "the {} has a white spot on it's leg"}, {"index": 335, "image_id": 2390107, "entity": "dog", "caption": "the dog has a long tail", "question": ["is there the dog ?", "is there a long tail ?"], "prompt": "the {} has a long tail"}, {"index": 336, "image_id": 2390107, "entity": "dog", "caption": "the dog has black paw pads", "question": ["is there the dog ?", "are there black paw pads ?"], "prompt": "the {} has black paw pads"}, {"index": 337, "image_id": 2389769, "entity": "dog", "caption": "dog ears are floppy", "question": ["are there dog ears ?"], "prompt": "{} ears are floppy"}, {"index": 338, "image_id": 2389769, "entity": "dog", "caption": "dog eyes are cute", "question": ["are there dog eyes ?"], "prompt": "{} eyes are cute"}, {"index": 339, "image_id": 2389769, "entity": "dog", "caption": "the dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are closed"}, {"index": 340, "image_id": 2389769, "entity": "dog", "caption": "The dog has tags on ", "question": ["is there the dog ?", "are there tags ?"], "prompt": "The {} has tags on "}, {"index": 341, "image_id": 2389769, "entity": "dog", "caption": "Mans toes beside dog", "question": ["is there dog ?"], "prompt": "Mans toes beside {}"}, {"index": 342, "image_id": 2389636, "entity": "dog", "caption": "the dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "the {} has nose"}, {"index": 343, "image_id": 2388972, "entity": "dog", "caption": "the grass is below the dog", "question": ["is there the grass ?", "is there the dog ?"], "prompt": "the grass is below the {}"}, {"index": 344, "image_id": 2388671, "entity": "dog", "caption": "white dog is standing looking out on the yard", "question": ["is there white dog ?", "is there the yard ?"], "prompt": "white {} is standing looking out on the yard"}, {"index": 345, "image_id": 2388671, "entity": "dog", "caption": "dog is mostly white", "question": ["is there dog ?"], "prompt": "{} is mostly white"}, {"index": 346, "image_id": 2388671, "entity": "dog", "caption": "dog has brown ears", "question": ["is there dog ?", "are there brown ears ?"], "prompt": "{} has brown ears"}, {"index": 347, "image_id": 2388671, "entity": "dog", "caption": "dog has black collar", "question": ["is there dog ?", "is there black collar ?"], "prompt": "{} has black collar"}, {"index": 348, "image_id": 2388671, "entity": "dog", "caption": "dog has white legs", "question": ["is there dog ?", "are there white legs ?"], "prompt": "{} has white legs"}, {"index": 349, "image_id": 2388320, "entity": "dog", "caption": "The dog has its head on a stuffed animal", "question": ["is there the dog ?", "is there its head ?", "is there a stuffed animal ?"], "prompt": "The {} has its head on a stuffed animal"}, {"index": 350, "image_id": 2388320, "entity": "dog", "caption": "The gate is behind the dog", "question": ["is there the gate ?", "is there the dog ?"], "prompt": "The gate is behind the {}"}, {"index": 351, "image_id": 2388320, "entity": "dog", "caption": "The dog is lying on wood", "question": ["is there the dog ?", "is there wood ?"], "prompt": "The {} is lying on wood"}, {"index": 352, "image_id": 2388066, "entity": "dog", "caption": "dog jumping for frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} jumping for frisbee"}, {"index": 353, "image_id": 2388048, "entity": "dog", "caption": "all are secondary to small dog chewing large toothbrush", "question": ["is there small dog ?", "is there large toothbrush ?"], "prompt": "all are secondary to small {} chewing large toothbrush"}, {"index": 354, "image_id": 2388048, "entity": "dog", "caption": "a dog is lying on a bed", "question": ["is there a dog ?", "is there a bed ?"], "prompt": "a {} is lying on a bed"}, {"index": 355, "image_id": 2388048, "entity": "dog", "caption": "body of dog is brown", "question": ["is there body ?", "is there dog ?"], "prompt": "body of {} is brown"}, {"index": 356, "image_id": 2388048, "entity": "dog", "caption": "head of dog is brown and white", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown and white"}, {"index": 357, "image_id": 2388048, "entity": "dog", "caption": "ears of dog are brown", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are brown"}, {"index": 358, "image_id": 2388048, "entity": "dog", "caption": "dog has a toothbrush in his mouth", "question": ["is there dog ?", "is there a toothbrush ?", "is there his mouth ?"], "prompt": "{} has a toothbrush in his mouth"}, {"index": 359, "image_id": 2388004, "entity": "dog", "caption": "tail of dog is long and curly", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is long and curly"}, {"index": 360, "image_id": 2388004, "entity": "dog", "caption": "front legs of dog are long", "question": ["are there front legs ?", "is there dog ?"], "prompt": "front legs of {} are long"}, {"index": 361, "image_id": 2388004, "entity": "dog", "caption": "The dog has a white spot.", "question": ["is there the dog ?", "is there a white spot ?"], "prompt": "The {} has a white spot."}, {"index": 362, "image_id": 2387774, "entity": "dog", "caption": "dog looks out window", "question": ["is there dog ?"], "prompt": "{} looks out window"}, {"index": 363, "image_id": 2387774, "entity": "dog", "caption": "dog has dark nose", "question": ["is there dog ?", "is there dark nose ?"], "prompt": "{} has dark nose"}, {"index": 364, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted ears", "question": ["is there dog ?", "are there ears ?"], "prompt": "{} has spotted ears"}, {"index": 365, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted face", "question": ["is there dog ?", "is there face ?"], "prompt": "{} has spotted face"}, {"index": 366, "image_id": 2387596, "entity": "dog", "caption": "dog is wearing glasses", "question": ["is there dog ?", "are there glasses ?"], "prompt": "{} is wearing glasses"}, {"index": 367, "image_id": 2387596, "entity": "dog", "caption": "dog has multicolor bandanna", "question": ["is there dog ?", "is there multicolor bandanna ?"], "prompt": "{} has multicolor bandanna"}, {"index": 368, "image_id": 2387596, "entity": "dog", "caption": "dog has white paws", "question": ["is there dog ?", "are there white paws ?"], "prompt": "{} has white paws"}, {"index": 369, "image_id": 2387596, "entity": "dog", "caption": "dog is on skateboard", "question": ["is there dog ?", "is there skateboard ?"], "prompt": "{} is on skateboard"}, {"index": 370, "image_id": 2387596, "entity": "dog", "caption": "The dog is on a leash.", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash."}, {"index": 371, "image_id": 2387470, "entity": "dog", "caption": "The dog's mouth is open. ", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open. "}, {"index": 372, "image_id": 2387448, "entity": "dog", "caption": "black dog jumping in air", "question": ["is there black dog ?", "is there air ?"], "prompt": "black {} jumping in air"}, {"index": 373, "image_id": 2387448, "entity": "dog", "caption": "dog has red collar", "question": ["is there dog ?", "is there red collar ?"], "prompt": "{} has red collar"}, {"index": 374, "image_id": 2387448, "entity": "dog", "caption": "dog has short curly tail", "question": ["is there dog ?", "is there short curly tail ?"], "prompt": "{} has short curly tail"}, {"index": 375, "image_id": 2387448, "entity": "dog", "caption": "grass under dog is green", "question": ["is there grass ?", "is there dog ?"], "prompt": "grass under {} is green"}, {"index": 376, "image_id": 2387387, "entity": "dog", "caption": "dog's tongue sticking out of mouth", "question": ["is there dog's tongue ?", "is there mouth ?"], "prompt": "{}'s tongue sticking out of mouth"}, {"index": 377, "image_id": 2387104, "entity": "dog", "caption": "the dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has a red collar"}, {"index": 378, "image_id": 2387104, "entity": "dog", "caption": "the dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "the {} has a brown nose"}, {"index": 379, "image_id": 2387104, "entity": "dog", "caption": "the cat is under the dog's chin", "question": ["is there the cat ?", "is there the dog's chin ?"], "prompt": "the cat is under the {}'s chin"}, {"index": 380, "image_id": 2387104, "entity": "dog", "caption": "the dog has a white face", "question": ["is there the dog ?", "is there a white face ?"], "prompt": "the {} has a white face"}, {"index": 381, "image_id": 2386600, "entity": "dog", "caption": "The frisbee is in front of the dog", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The frisbee is in front of the {}"}, {"index": 382, "image_id": 2386600, "entity": "dog", "caption": "dog's teeth showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth showing"}, {"index": 383, "image_id": 2386411, "entity": "dog", "caption": "The dog has a black nose.", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose."}, {"index": 384, "image_id": 2386411, "entity": "dog", "caption": "red bandana dog is wearing", "question": ["is there red bandana dog ?"], "prompt": "red bandana {} is wearing"}, {"index": 385, "image_id": 2386411, "entity": "dog", "caption": "dog's face looking at frisbees", "question": ["is there dog's face ?", "are there frisbees ?"], "prompt": "{}'s face looking at frisbees"}, {"index": 386, "image_id": 2386323, "entity": "dog", "caption": "dog is laying on suit case", "question": ["is there dog ?", "is there suit case ?"], "prompt": "{} is laying on suit case"}, {"index": 387, "image_id": 2386323, "entity": "dog", "caption": "The dog is wearing a gold tag.", "question": ["is there the dog ?", "is there a gold tag ?"], "prompt": "The {} is wearing a gold tag."}, {"index": 388, "image_id": 2386323, "entity": "dog", "caption": "The dog is sitting on a suitcase.", "question": ["is there the dog ?", "is there a suitcase ?"], "prompt": "The {} is sitting on a suitcase."}, {"index": 389, "image_id": 2386037, "entity": "dog", "caption": "dog is jumping above ground", "question": ["is there dog ?", "is there ground ?"], "prompt": "{} is jumping above ground"}, {"index": 390, "image_id": 2386037, "entity": "dog", "caption": "dog is wearing collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} is wearing collar"}, {"index": 391, "image_id": 2386031, "entity": "dog", "caption": "dog's tail is up in the air", "question": ["is there dog's tail ?", "is there the air ?"], "prompt": "{}'s tail is up in the air"}, {"index": 392, "image_id": 2386031, "entity": "dog", "caption": "dog's left perked up ear", "question": ["is there ear ?"], "prompt": "{}'s left perked up ear"}, {"index": 393, "image_id": 2386010, "entity": "dog", "caption": "dogs face in a side mirror", "question": ["are there dogs ?", "is there a side mirror ?"], "prompt": "{}s face in a side mirror"}, {"index": 394, "image_id": 2385955, "entity": "dog", "caption": "nose of dog is wet", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is wet"}, {"index": 395, "image_id": 2385955, "entity": "dog", "caption": "eyes of dog are wide open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are wide open"}, {"index": 396, "image_id": 2385955, "entity": "dog", "caption": "the frisbee is in the dog's mouth", "question": ["is there the frisbee ?", "is there the dog's mouth ?"], "prompt": "the frisbee is in the {}'s mouth"}, {"index": 397, "image_id": 2385955, "entity": "dog", "caption": "the dog's eyes are wild and wide open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are wild and wide open"}, {"index": 398, "image_id": 2385955, "entity": "dog", "caption": "the face of the dog is tricolored", "question": ["is there the face ?", "is there the dog ?"], "prompt": "the face of the {} is tricolored"}, {"index": 399, "image_id": 2385955, "entity": "dog", "caption": "the dog's paw is white", "question": ["is there the dog's paw ?"], "prompt": "the {}'s paw is white"}, {"index": 400, "image_id": 2385955, "entity": "dog", "caption": "grass is under the the dog", "question": ["is there grass ?", "is there the the dog ?"], "prompt": "grass is under the the {}"}, {"index": 401, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} is wearing a cap"}, {"index": 402, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing eyeglasses", "question": ["is there dog ?", "are there eyeglasses ?"], "prompt": "{} is wearing eyeglasses"}, {"index": 403, "image_id": 2385853, "entity": "dog", "caption": "dog's mouth is open", "question": ["is there dog's mouth ?"], "prompt": "{}'s mouth is open"}, {"index": 404, "image_id": 2385762, "entity": "dog", "caption": "a dog has a retractable leash attached to the collar", "question": ["is there a dog ?", "is there a retractable leash ?", "is there the collar ?"], "prompt": "a {} has a retractable leash attached to the collar"}, {"index": 405, "image_id": 2385757, "entity": "dog", "caption": "dog laying in dirt with eyes closed", "question": ["is there dog ?", "is there dirt ?", "are there eyes ?"], "prompt": "{} laying in dirt with eyes closed"}, {"index": 406, "image_id": 2385595, "entity": "dog", "caption": "the dog is lying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is lying on the bed"}, {"index": 407, "image_id": 2385566, "entity": "dog", "caption": "man is holding two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is holding two {}s"}, {"index": 408, "image_id": 2385566, "entity": "dog", "caption": "dog in rear has red collar", "question": ["is there dog ?", "is there rear ?", "is there red collar ?"], "prompt": "{} in rear has red collar"}, {"index": 409, "image_id": 2385566, "entity": "dog", "caption": "man is crouching near two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is crouching near two {}s"}, {"index": 410, "image_id": 2385566, "entity": "dog", "caption": "dog with its mouth wide open", "question": ["is there dog ?", "is there its mouth ?"], "prompt": "{} with its mouth wide open"}, {"index": 411, "image_id": 2385566, "entity": "dog", "caption": "man's hand resting on dog's hip", "question": ["is there man's hand ?", "is there dog's hip ?"], "prompt": "man's hand resting on {}'s hip"}, {"index": 412, "image_id": 2385466, "entity": "dog", "caption": "dog's eyes are brown", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are brown"}, {"index": 413, "image_id": 2385466, "entity": "dog", "caption": "dog's whiskers are white", "question": ["are there dog's whiskers ?"], "prompt": "{}'s whiskers are white"}, {"index": 414, "image_id": 2385466, "entity": "dog", "caption": "dog is next to the window", "question": ["is there dog ?", "is there the window ?"], "prompt": "{} is next to the window"}, {"index": 415, "image_id": 2385466, "entity": "dog", "caption": "dog's ears are down", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are down"}, {"index": 416, "image_id": 2385466, "entity": "dog", "caption": "the dog has a silver tag", "question": ["is there the dog ?", "is there a silver tag ?"], "prompt": "the {} has a silver tag"}, {"index": 417, "image_id": 2385466, "entity": "dog", "caption": "the dog is in the passenger seat", "question": ["is there the dog ?", "is there the passenger seat ?"], "prompt": "the {} is in the passenger seat"}, {"index": 418, "image_id": 2385466, "entity": "dog", "caption": "the dog has white parts of the eyes showing", "question": ["is there the dog ?", "are there white parts ?", "are there the eyes ?"], "prompt": "the {} has white parts of the eyes showing"}, {"index": 419, "image_id": 2385466, "entity": "dog", "caption": "A dog has a tag", "question": ["is there a dog ?", "is there a tag ?"], "prompt": "A {} has a tag"}, {"index": 420, "image_id": 2385345, "entity": "dog", "caption": "the dog is leaning on the bedding", "question": ["is there the dog ?", "is there the bedding ?"], "prompt": "the {} is leaning on the bedding"}, {"index": 421, "image_id": 2385345, "entity": "dog", "caption": "the bed is behind the dog", "question": ["is there the bed ?", "is there the dog ?"], "prompt": "the bed is behind the {}"}, {"index": 422, "image_id": 2385299, "entity": "dog", "caption": "white dog is lying on a bed", "question": ["is there white dog ?", "is there a bed ?"], "prompt": "white {} is lying on a bed"}, {"index": 423, "image_id": 2385299, "entity": "dog", "caption": "tail of dog is on bed", "question": ["is there tail ?", "is there dog ?", "is there bed ?"], "prompt": "tail of {} is on bed"}, {"index": 424, "image_id": 2385299, "entity": "dog", "caption": "eyes of dog are black", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are black"}, {"index": 425, "image_id": 2385299, "entity": "dog", "caption": "eyes and nose of dog are black", "question": ["are there eyes ?", "is there nose ?", "is there dog ?"], "prompt": "eyes and nose of {} are black"}, {"index": 426, "image_id": 2385299, "entity": "dog", "caption": "a dog collar has a tag", "question": ["is there a dog collar ?", "is there a tag ?"], "prompt": "a {} collar has a tag"}, {"index": 427, "image_id": 2385299, "entity": "dog", "caption": "legs and chest of dog are white", "question": ["are there legs ?", "is there chest ?", "is there dog ?"], "prompt": "legs and chest of {} are white"}, {"index": 428, "image_id": 2384917, "entity": "dog", "caption": "dogs tongue sticking out", "question": ["are there dogs ?", "is there tongue ?"], "prompt": "{}s tongue sticking out"}, {"index": 429, "image_id": 2384917, "entity": "dog", "caption": "brown pointy ear on dog", "question": ["is there brown pointy ear ?", "is there dog ?"], "prompt": "brown pointy ear on {}"}, {"index": 430, "image_id": 2384563, "entity": "dog", "caption": "dog curled up on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} curled up on a couch"}, {"index": 431, "image_id": 2384563, "entity": "dog", "caption": "a dog curled up on a cushion", "question": ["is there a dog ?", "is there a cushion ?"], "prompt": "a {} curled up on a cushion"}, {"index": 432, "image_id": 2384452, "entity": "dog", "caption": "dog is wearing a green collar ", "question": ["is there dog ?", "is there a green collar ?"], "prompt": "{} is wearing a green collar "}, {"index": 433, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear is bent ", "question": ["are there the dogs ?"], "prompt": "the {}s ear is bent "}, {"index": 434, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear ", "question": ["are there the dogs ?"], "prompt": "the {}s ear "}, {"index": 435, "image_id": 2384424, "entity": "dog", "caption": "the dog is beside the bike", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is beside the bike"}, {"index": 436, "image_id": 2384322, "entity": "dog", "caption": "Reindeer stuffed animal on the dog.", "question": ["is there reindeer ?", "is there animal ?", "is there the dog ?"], "prompt": "Reindeer stuffed animal on the {}."}, {"index": 437, "image_id": 2384105, "entity": "dog", "caption": "dog's collar is green", "question": ["is there dog's collar ?"], "prompt": "{}'s collar is green"}, {"index": 438, "image_id": 2384105, "entity": "dog", "caption": "the dog bed is plaid patterned", "question": ["is there the dog bed ?"], "prompt": "the {} bed is plaid patterned"}, {"index": 439, "image_id": 2384105, "entity": "dog", "caption": "dog's ears pointing upwards", "question": ["are there dog's ears ?"], "prompt": "{}'s ears pointing upwards"}, {"index": 440, "image_id": 2384105, "entity": "dog", "caption": "Black pillow dog is laying on", "question": ["is there black pillow dog ?"], "prompt": "Black pillow {} is laying on"}, {"index": 441, "image_id": 2384105, "entity": "dog", "caption": "Collar dog is wearing", "question": ["is there collar dog ?"], "prompt": "Collar {} is wearing"}, {"index": 442, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan", "question": ["is there dog toy ?", "is there tan ?"], "prompt": "{} toy is tan"}, {"index": 443, "image_id": 2383524, "entity": "dog", "caption": "dog is lying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying on the floor"}, {"index": 444, "image_id": 2383524, "entity": "dog", "caption": "dog has the toy in it's mouth", "question": ["is there dog ?", "is there the toy ?"], "prompt": "{} has the toy in it's mouth"}, {"index": 445, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan and hairy", "question": ["is there dog toy ?"], "prompt": "{} toy is tan and hairy"}, {"index": 446, "image_id": 2383524, "entity": "dog", "caption": "dog has whiskers that are white", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers that are white"}, {"index": 447, "image_id": 2383524, "entity": "dog", "caption": "dog is laying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is laying on the floor"}, {"index": 448, "image_id": 2383524, "entity": "dog", "caption": "dog has black ears", "question": ["is there dog ?", "are there black ears ?"], "prompt": "{} has black ears"}, {"index": 449, "image_id": 2383524, "entity": "dog", "caption": "dog is lying down on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying down on the floor"}, {"index": 450, "image_id": 2383524, "entity": "dog", "caption": "dog toy is brown", "question": ["is there dog toy ?"], "prompt": "{} toy is brown"}, {"index": 451, "image_id": 2383524, "entity": "dog", "caption": "dog has toy in it's mouth", "question": ["is there dog ?", "is there toy ?", "is there it's mouth ?"], "prompt": "{} has toy in it's mouth"}, {"index": 452, "image_id": 2383524, "entity": "dog", "caption": "dog has white whiskers", "question": ["is there dog ?", "are there white whiskers ?"], "prompt": "{} has white whiskers"}, {"index": 453, "image_id": 2383524, "entity": "dog", "caption": "the dog has a nose", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "the {} has a nose"}, {"index": 454, "image_id": 2383524, "entity": "dog", "caption": "the dog has eyes", "question": ["is there the dog ?", "are there eyes ?"], "prompt": "the {} has eyes"}, {"index": 455, "image_id": 2383524, "entity": "dog", "caption": "the dog has an ear", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "the {} has an ear"}, {"index": 456, "image_id": 2383524, "entity": "dog", "caption": "The dog's face looks angry", "question": ["is there the dog's face ?"], "prompt": "The {}'s face looks angry"}, {"index": 457, "image_id": 2383242, "entity": "dog", "caption": "The dog is between the persons legs", "question": ["is there the dog ?", "are there the persons legs ?"], "prompt": "The {} is between the persons legs"}, {"index": 458, "image_id": 2382434, "entity": "dog", "caption": "The dog is on the counter", "question": ["is there the dog ?", "is there the counter ?"], "prompt": "The {} is on the counter"}, {"index": 459, "image_id": 2382434, "entity": "dog", "caption": "The dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black"}, {"index": 460, "image_id": 2382434, "entity": "dog", "caption": "The dog has long fur.", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur."}, {"index": 461, "image_id": 2382434, "entity": "dog", "caption": "The dog is on a table.", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table."}, {"index": 462, "image_id": 2382434, "entity": "dog", "caption": "The dog is sniffing the newspaper.", "question": ["is there the dog ?", "is there the newspaper ?"], "prompt": "The {} is sniffing the newspaper."}, {"index": 463, "image_id": 2382434, "entity": "dog", "caption": "The dog has curly fur", "question": ["is there the dog ?", "is there curly fur ?"], "prompt": "The {} has curly fur"}, {"index": 464, "image_id": 2382434, "entity": "dog", "caption": "the dog`s nose is black", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is black"}, {"index": 465, "image_id": 2382434, "entity": "dog", "caption": "the dog`s eyes are black", "question": ["are there the dog`s eyes ?"], "prompt": "the {}`s eyes are black"}, {"index": 466, "image_id": 2382434, "entity": "dog", "caption": "the dog`s hair is curly", "question": ["is there the dog`s hair ?"], "prompt": "the {}`s hair is curly"}, {"index": 467, "image_id": 2382434, "entity": "dog", "caption": "the dog is smelling the paper", "question": ["is there the dog ?", "is there the paper ?"], "prompt": "the {} is smelling the paper"}, {"index": 468, "image_id": 2382396, "entity": "dog", "caption": "a dog is asleep", "question": ["is there a dog ?"], "prompt": "a {} is asleep"}, {"index": 469, "image_id": 2382396, "entity": "dog", "caption": "The dog's paw is on the remote", "question": ["is there the dog's paw ?", "is there the remote ?"], "prompt": "The {}'s paw is on the remote"}, {"index": 470, "image_id": 2382396, "entity": "dog", "caption": "The dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are closed"}, {"index": 471, "image_id": 2382396, "entity": "dog", "caption": "The dog is sleep on the couch.", "question": ["is there the dog ?", "is there sleep ?", "is there the couch ?"], "prompt": "The {} is sleep on the couch."}, {"index": 472, "image_id": 2382396, "entity": "dog", "caption": "The dog has two ears.", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "The {} has two ears."}, {"index": 473, "image_id": 2382396, "entity": "dog", "caption": "A dog is in the foreground", "question": ["is there a dog ?", "is there the foreground ?"], "prompt": "A {} is in the foreground"}, {"index": 474, "image_id": 2382082, "entity": "dog", "caption": "the dog`s nose is brown", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is brown"}, {"index": 475, "image_id": 2382082, "entity": "dog", "caption": "the dog`s stomach is wet", "question": ["is there the dog`s stomach ?"], "prompt": "the {}`s stomach is wet"}, {"index": 476, "image_id": 2382082, "entity": "dog", "caption": "dog is in the beach", "question": ["is there dog ?", "is there the beach ?"], "prompt": "{} is in the beach"}, {"index": 477, "image_id": 2382082, "entity": "dog", "caption": "tail of dog is up", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is up"}, {"index": 478, "image_id": 2382082, "entity": "dog", "caption": "face of dog is white and brown", "question": ["is there face ?", "is there dog ?"], "prompt": "face of {} is white and brown"}, {"index": 479, "image_id": 2382082, "entity": "dog", "caption": "collar of dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar of {} is black"}, {"index": 480, "image_id": 2382082, "entity": "dog", "caption": "ears of dog are down ", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are down "}, {"index": 481, "image_id": 2381848, "entity": "dog", "caption": "ear of dog is brown", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is brown"}, {"index": 482, "image_id": 2381777, "entity": "dog", "caption": "Leash attached to the dog", "question": ["is there the dog ?"], "prompt": "Leash attached to the {}"}, {"index": 483, "image_id": 2381777, "entity": "dog", "caption": "the dog is wearing a floater", "question": ["is there the dog ?", "is there a floater ?"], "prompt": "the {} is wearing a floater"}, {"index": 484, "image_id": 2381777, "entity": "dog", "caption": "this is the rope tying the dog", "question": ["is there the rope ?", "is there the dog ?"], "prompt": "this is the rope tying the {}"}, {"index": 485, "image_id": 2381403, "entity": "dog", "caption": "bull dog is wearing a black and red vest ", "question": ["is there bull dog ?", "is there a black and red vest ?"], "prompt": "bull {} is wearing a black and red vest "}, {"index": 486, "image_id": 2381403, "entity": "dog", "caption": "bull dog is standing on a blue surfboard ", "question": ["is there bull dog ?", "is there a blue surfboard ?"], "prompt": "bull {} is standing on a blue surfboard "}, {"index": 487, "image_id": 2381403, "entity": "dog", "caption": "the dog has an overbite", "question": ["is there the dog ?", "is there an overbite ?"], "prompt": "the {} has an overbite"}, {"index": 488, "image_id": 2381403, "entity": "dog", "caption": "the dog is wearing a life vest", "question": ["is there the dog ?", "is there a life vest ?"], "prompt": "the {} is wearing a life vest"}, {"index": 489, "image_id": 2381403, "entity": "dog", "caption": "the dog has front legs", "question": ["is there the dog ?", "are there front legs ?"], "prompt": "the {} has front legs"}, {"index": 490, "image_id": 2381403, "entity": "dog", "caption": "the dog is on the board", "question": ["is there the dog ?", "is there the board ?"], "prompt": "the {} is on the board"}, {"index": 491, "image_id": 2381375, "entity": "dog", "caption": "the dog is lying on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is lying on the ground"}, {"index": 492, "image_id": 2381375, "entity": "dog", "caption": "the dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} is on a leash"}, {"index": 493, "image_id": 2380480, "entity": "dog", "caption": "The dog's reflection is in a mirror.", "question": ["is there the dog's reflection ?", "is there a mirror ?"], "prompt": "The {}'s reflection is in a mirror."}, {"index": 494, "image_id": 2380480, "entity": "dog", "caption": "The dog's tongue is showing. ", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is showing. "}, {"index": 495, "image_id": 2380480, "entity": "dog", "caption": "The dog's legs are in the foreground.", "question": ["are there the dog's legs ?", "is there the foreground ?"], "prompt": "The {}'s legs are in the foreground."}, {"index": 496, "image_id": 2380480, "entity": "dog", "caption": "The dog's nose is black. ", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black. "}, {"index": 497, "image_id": 2380480, "entity": "dog", "caption": "the dog has an eye", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 498, "image_id": 2380480, "entity": "dog", "caption": "the dog has a tongue", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "the {} has a tongue"}, {"index": 499, "image_id": 2380480, "entity": "dog", "caption": "the dog has a long ear", "question": ["is there the dog ?", "is there a long ear ?"], "prompt": "the {} has a long ear"}, {"index": 500, "image_id": 2380237, "entity": "dog", "caption": "the dog has its mouth open", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 501, "image_id": 2380237, "entity": "dog", "caption": "the dog has a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar"}, {"index": 502, "image_id": 2380237, "entity": "dog", "caption": "the dog's collar is blue", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is blue"}, {"index": 503, "image_id": 2380237, "entity": "dog", "caption": "the dog has a pointy ear", "question": ["is there the dog ?", "is there a pointy ear ?"], "prompt": "the {} has a pointy ear"}, {"index": 504, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy ears", "question": ["is there dog ?", "are there pointy ears ?"], "prompt": "{} has pointy ears"}, {"index": 505, "image_id": 2380237, "entity": "dog", "caption": "dog has short legs", "question": ["is there dog ?", "are there short legs ?"], "prompt": "{} has short legs"}, {"index": 506, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy teeth", "question": ["is there dog ?", "are there pointy teeth ?"], "prompt": "{} has pointy teeth"}, {"index": 507, "image_id": 2380237, "entity": "dog", "caption": "the dog is attempting to catch a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is attempting to catch a frisbee"}, {"index": 508, "image_id": 2380237, "entity": "dog", "caption": "the dog is down on his \"knees\"", "question": ["is there the dog ?", "are there his \"knees ?"], "prompt": "the {} is down on his \"knees\""}, {"index": 509, "image_id": 2380237, "entity": "dog", "caption": "dog's mouth wide open", "question": [], "prompt": "{}'s mouth wide open"}, {"index": 510, "image_id": 2380220, "entity": "dog", "caption": "dog is laying on stuffed animal ", "question": ["is there dog ?", "is there stuffed animal ?"], "prompt": "{} is laying on stuffed animal "}, {"index": 511, "image_id": 2380220, "entity": "dog", "caption": "dogs ear is black ", "question": ["are there dogs ?"], "prompt": "{}s ear is black "}, {"index": 512, "image_id": 2379710, "entity": "dog", "caption": "water splashing next to dog", "question": ["is there dog ?"], "prompt": "water splashing next to {}"}, {"index": 513, "image_id": 2379519, "entity": "dog", "caption": "The dog has it's tongue out.", "question": ["is there the dog ?", "is there tongue ?"], "prompt": "The {} has it's tongue out."}, {"index": 514, "image_id": 2379519, "entity": "dog", "caption": "The dog has brown eyes.", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes."}, {"index": 515, "image_id": 2379470, "entity": "dog", "caption": "The dog has a brown spot over one eye.", "question": ["is there the dog ?", "is there a brown spot ?", "is there one eye ?"], "prompt": "The {} has a brown spot over one eye."}, {"index": 516, "image_id": 2379470, "entity": "dog", "caption": "The dog has a spotted ear.", "question": ["is there the dog ?", "is there a spotted ear ?"], "prompt": "The {} has a spotted ear."}, {"index": 517, "image_id": 2379470, "entity": "dog", "caption": "The dog has a short tail.", "question": ["is there the dog ?", "is there a short tail ?"], "prompt": "The {} has a short tail."}, {"index": 518, "image_id": 2379470, "entity": "dog", "caption": "The dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar."}, {"index": 519, "image_id": 2379470, "entity": "dog", "caption": "The dog has a closed mouth.", "question": ["is there the dog ?", "is there a closed mouth ?"], "prompt": "The {} has a closed mouth."}, {"index": 520, "image_id": 2378890, "entity": "dog", "caption": "The dog has a chain collar.", "question": ["is there the dog ?", "is there a chain collar ?"], "prompt": "The {} has a chain collar."}, {"index": 521, "image_id": 2378890, "entity": "dog", "caption": "The dog is playing with the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee."}, {"index": 522, "image_id": 2378872, "entity": "dog", "caption": "dog has grey fur", "question": ["is there dog ?"], "prompt": "{} has grey fur"}, {"index": 523, "image_id": 2378872, "entity": "dog", "caption": "other dog has black fur", "question": ["is there other dog ?", "is there black fur ?"], "prompt": "other {} has black fur"}, {"index": 524, "image_id": 2378872, "entity": "dog", "caption": "other dog has brown face", "question": ["is there other dog ?", "is there brown face ?"], "prompt": "other {} has brown face"}, {"index": 525, "image_id": 2378872, "entity": "dog", "caption": "nose of the dog with mouth closed", "question": ["is there nose ?", "is there the dog ?", "is there mouth ?"], "prompt": "nose of the {} with mouth closed"}, {"index": 526, "image_id": 2378872, "entity": "dog", "caption": "eye of the dog with mouth shut", "question": ["is there eye ?", "is there the dog ?", "is there mouth ?"], "prompt": "eye of the {} with mouth shut"}, {"index": 527, "image_id": 2378738, "entity": "dog", "caption": "the dog's tongue is sticking out", "question": ["is there the dog's tongue ?"], "prompt": "the {}'s tongue is sticking out"}, {"index": 528, "image_id": 2378738, "entity": "dog", "caption": "the dog is wearing a harness", "question": ["is there the dog ?", "is there a harness ?"], "prompt": "the {} is wearing a harness"}, {"index": 529, "image_id": 2378738, "entity": "dog", "caption": "the dog has whiskers ", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers "}, {"index": 530, "image_id": 2378738, "entity": "dog", "caption": "the dog's collar has a silver tag", "question": ["is there the dog's collar ?", "is there a silver tag ?"], "prompt": "the {}'s collar has a silver tag"}, {"index": 531, "image_id": 2378738, "entity": "dog", "caption": "the dog has teeth", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "the {} has teeth"}, {"index": 532, "image_id": 2378738, "entity": "dog", "caption": "the dogs curved tail", "question": ["are there the dogs ?", "is there tail ?"], "prompt": "the {}s curved tail"}, {"index": 533, "image_id": 2378738, "entity": "dog", "caption": "the dog collar is dark brown", "question": ["is there the dog collar ?"], "prompt": "the {} collar is dark brown"}, {"index": 534, "image_id": 2378738, "entity": "dog", "caption": "the dog`s mouth is open", "question": ["is there the dog`s mouth ?"], "prompt": "the {}`s mouth is open"}, {"index": 535, "image_id": 2378738, "entity": "dog", "caption": "the dog`s neck is white", "question": ["is there the dog`s neck ?"], "prompt": "the {}`s neck is white"}, {"index": 536, "image_id": 2378738, "entity": "dog", "caption": "the dog`s face is multi colored", "question": ["is there the dog`s face ?"], "prompt": "the {}`s face is multi colored"}, {"index": 537, "image_id": 2378013, "entity": "dog", "caption": "paws of dog are black", "question": ["are there paws ?", "is there dog ?"], "prompt": "paws of {} are black"}, {"index": 538, "image_id": 2378013, "entity": "dog", "caption": "hair eyes of dog are big", "question": ["are there hair eyes ?", "is there dog ?"], "prompt": "hair eyes of {} are big"}, {"index": 539, "image_id": 2378013, "entity": "dog", "caption": "dog is wearing a bandana", "question": ["is there dog ?", "is there a bandana ?"], "prompt": "{} is wearing a bandana"}, {"index": 540, "image_id": 2377946, "entity": "dog", "caption": "The dog is on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "The {} is on the bed"}, {"index": 541, "image_id": 2377946, "entity": "dog", "caption": "The dog has a red blanket", "question": ["is there the dog ?", "is there a red blanket ?"], "prompt": "The {} has a red blanket"}, {"index": 542, "image_id": 2377695, "entity": "dog", "caption": "the dogs pink tounge", "question": ["are there the dogs ?"], "prompt": "the {}s pink tounge"}, {"index": 543, "image_id": 2377541, "entity": "dog", "caption": "a dogs ear with black spots", "question": ["are there a dogs ?", "are there black spots ?"], "prompt": "a {}s ear with black spots"}, {"index": 544, "image_id": 2377541, "entity": "dog", "caption": "wet dog standing in pond", "question": ["is there wet dog ?", "is there pond ?"], "prompt": "wet {} standing in pond"}, {"index": 545, "image_id": 2377276, "entity": "dog", "caption": "fur of dog is long", "question": ["is there fur ?", "is there dog ?"], "prompt": "fur of {} is long"}, {"index": 546, "image_id": 2377096, "entity": "dog", "caption": "the dog's snout is black", "question": ["is there the dog's snout ?"], "prompt": "the {}'s snout is black"}, {"index": 547, "image_id": 2377096, "entity": "dog", "caption": "the dog has a leather collar", "question": ["is there the dog ?", "is there a leather collar ?"], "prompt": "the {} has a leather collar"}, {"index": 548, "image_id": 2377096, "entity": "dog", "caption": "the dog has black ears ", "question": ["is there the dog ?", "are there black ears ?"], "prompt": "the {} has black ears "}, {"index": 549, "image_id": 2376453, "entity": "dog", "caption": "the dog has an orange collar ", "question": ["is there the dog ?", "is there an orange collar ?"], "prompt": "the {} has an orange collar "}, {"index": 550, "image_id": 2376453, "entity": "dog", "caption": "this is an ear of a dog", "question": ["is there an ear ?", "is there a dog ?"], "prompt": "this is an ear of a {}"}, {"index": 551, "image_id": 2376453, "entity": "dog", "caption": "this is a tongue of a dog", "question": ["is there a tongue ?", "is there a dog ?"], "prompt": "this is a tongue of a {}"}, {"index": 552, "image_id": 2376453, "entity": "dog", "caption": "two dogs leashed to post", "question": ["are there two dogs ?"], "prompt": "two {}s leashed to post"}, {"index": 553, "image_id": 2376453, "entity": "dog", "caption": "two dogs tied to a tree", "question": ["are there two dogs ?", "is there a tree ?"], "prompt": "two {}s tied to a tree"}, {"index": 554, "image_id": 2376406, "entity": "dog", "caption": "dog has it's mouth open", "question": ["is there dog ?"], "prompt": "{} has it's mouth open"}, {"index": 555, "image_id": 2376406, "entity": "dog", "caption": "dog is leaning against the sofa", "question": ["is there dog ?", "is there the sofa ?"], "prompt": "{} is leaning against the sofa"}, {"index": 556, "image_id": 2376406, "entity": "dog", "caption": "dog's teeth are white", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are white"}, {"index": 557, "image_id": 2376134, "entity": "dog", "caption": "A dog is smelling a cat", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} is smelling a cat"}, {"index": 558, "image_id": 2376134, "entity": "dog", "caption": "An old dog is greeting the new cat", "question": ["is there an old dog ?", "is there the new cat ?"], "prompt": "An old {} is greeting the new cat"}, {"index": 559, "image_id": 2376134, "entity": "dog", "caption": "A cat is friends with a dog", "question": ["is there a cat ?", "are there friends ?", "is there a dog ?"], "prompt": "A cat is friends with a {}"}, {"index": 560, "image_id": 2376134, "entity": "dog", "caption": "dog has two ears.", "question": ["is there dog ?", "are there two ears ?"], "prompt": "{} has two ears."}, {"index": 561, "image_id": 2376108, "entity": "dog", "caption": "dog has purple collar", "question": ["is there dog ?", "is there purple collar ?"], "prompt": "{} has purple collar"}, {"index": 562, "image_id": 2376108, "entity": "dog", "caption": "dog has brown nose", "question": ["is there dog ?", "is there brown nose ?"], "prompt": "{} has brown nose"}, {"index": 563, "image_id": 2376108, "entity": "dog", "caption": "dog has light brown hair", "question": ["is there dog ?", "is there light brown hair ?"], "prompt": "{} has light brown hair"}, {"index": 564, "image_id": 2376108, "entity": "dog", "caption": "dog has dark brown ears", "question": ["is there dog ?", "are there dark brown ears ?"], "prompt": "{} has dark brown ears"}, {"index": 565, "image_id": 2375658, "entity": "dog", "caption": "Sad looking dog face", "question": ["is there sad looking dog face ?"], "prompt": "Sad looking {} face"}, {"index": 566, "image_id": 2375561, "entity": "dog", "caption": "The dog is wearing a blue harness", "question": ["is there the dog ?", "is there a blue harness ?"], "prompt": "The {} is wearing a blue harness"}, {"index": 567, "image_id": 2375561, "entity": "dog", "caption": "The dog is standing on a chair.", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} is standing on a chair."}, {"index": 568, "image_id": 2375451, "entity": "dog", "caption": "the dogs nose is black ", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black "}, {"index": 569, "image_id": 2375428, "entity": "dog", "caption": "The dog is looking at the camera", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera"}, {"index": 570, "image_id": 2375428, "entity": "dog", "caption": "The dog has long fur", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur"}, {"index": 571, "image_id": 2374930, "entity": "dog", "caption": "baby is leaning on a dog", "question": ["is there baby ?", "is there a dog ?"], "prompt": "baby is leaning on a {}"}, {"index": 572, "image_id": 2374930, "entity": "dog", "caption": "nose of dog is brown ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is brown "}, {"index": 573, "image_id": 2374268, "entity": "dog", "caption": "the dog's leg hanging over the sofa", "question": ["is there the dog's leg ?", "is there the sofa ?"], "prompt": "the {}'s leg hanging over the sofa"}, {"index": 574, "image_id": 2374268, "entity": "dog", "caption": "dog has face buried in the couch", "question": ["is there dog ?", "is there face ?", "is there the couch ?"], "prompt": "{} has face buried in the couch"}, {"index": 575, "image_id": 2374132, "entity": "dog", "caption": "dog has light brown paws", "question": ["is there dog ?", "are there light brown paws ?"], "prompt": "{} has light brown paws"}, {"index": 576, "image_id": 2374013, "entity": "dog", "caption": "dog's ears are light brown", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are light brown"}, {"index": 577, "image_id": 2373955, "entity": "dog", "caption": "a brown hat the dog is wearing", "question": ["is there a brown hat ?", "is there the dog ?"], "prompt": "a brown hat the {} is wearing"}, {"index": 578, "image_id": 2373955, "entity": "dog", "caption": "black dog kissing man", "question": ["is there black dog kissing man ?"], "prompt": "black {} kissing man"}, {"index": 579, "image_id": 2373533, "entity": "dog", "caption": "eyes of dog are big", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are big"}, {"index": 580, "image_id": 2373533, "entity": "dog", "caption": "mouth of dog is touching a rail", "question": ["is there mouth ?", "is there dog ?", "is there a rail ?"], "prompt": "mouth of {} is touching a rail"}, {"index": 581, "image_id": 2373340, "entity": "dog", "caption": "dog is wearing pink collar", "question": ["is there dog ?", "is there pink collar ?"], "prompt": "{} is wearing pink collar"}, {"index": 582, "image_id": 2373340, "entity": "dog", "caption": "dogs nose is brown", "question": ["are there dogs nose ?"], "prompt": "{}s nose is brown"}, {"index": 583, "image_id": 2373340, "entity": "dog", "caption": "dog right ear is brown", "question": ["is there dog right ear ?"], "prompt": "{} right ear is brown"}, {"index": 584, "image_id": 2373155, "entity": "dog", "caption": "dogs has a chain on his neck", "question": ["are there dogs ?", "is there a chain ?", "is there his neck ?"], "prompt": "{}s has a chain on his neck"}, {"index": 585, "image_id": 2373141, "entity": "dog", "caption": "This is a man with a dog", "question": ["is there a man ?", "is there a dog ?"], "prompt": "This is a man with a {}"}, {"index": 586, "image_id": 2373109, "entity": "dog", "caption": "the dog is on the ground ", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground "}, {"index": 587, "image_id": 2373073, "entity": "dog", "caption": "dog is wearing a hat ", "question": ["is there dog ?", "is there a hat ?"], "prompt": "{} is wearing a hat "}, {"index": 588, "image_id": 2372988, "entity": "dog", "caption": "Water drips down dog's face.", "question": ["is there water ?", "is there dog's face ?"], "prompt": "Water drips down {}'s face."}, {"index": 589, "image_id": 2372988, "entity": "dog", "caption": "dog is wearing a chain", "question": ["is there dog ?", "is there a chain ?"], "prompt": "{} is wearing a chain"}, {"index": 590, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A {} is riding in a car"}, {"index": 591, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in the passenger seat", "question": ["is there a dog ?", "is there the passenger seat ?"], "prompt": "A {} is riding in the passenger seat"}, {"index": 592, "image_id": 2372618, "entity": "dog", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A {} is in its master's car"}, {"index": 593, "image_id": 2372618, "entity": "dog", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} likes riding in a car"}, {"index": 594, "image_id": 2372618, "entity": "dog", "caption": "The dog is looking out the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is looking out the window"}, {"index": 595, "image_id": 2372586, "entity": "dog", "caption": "The dog is sitting on a bench.", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is sitting on a bench."}, {"index": 596, "image_id": 2372586, "entity": "dog", "caption": "dog is wearing a blue harness", "question": ["is there dog ?", "is there a blue harness ?"], "prompt": "{} is wearing a blue harness"}, {"index": 597, "image_id": 2372586, "entity": "dog", "caption": "the dog has a white belly", "question": ["is there the dog ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 598, "image_id": 2372549, "entity": "dog", "caption": "the dog looks sleepy", "question": ["is there the dog ?"], "prompt": "the {} looks sleepy"}, {"index": 599, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is laying on a stuffed animal"}, {"index": 600, "image_id": 2372549, "entity": "dog", "caption": "the dog is pale tan in color", "question": ["is there the dog ?", "is there pale tan ?", "is there color ?"], "prompt": "the {} is pale tan in color"}, {"index": 601, "image_id": 2372549, "entity": "dog", "caption": "stuffed animal dog is sleeping on", "question": ["is there stuffed animal dog ?"], "prompt": "stuffed animal {} is sleeping on"}, {"index": 602, "image_id": 2372549, "entity": "dog", "caption": "red bed dog is sleeping on", "question": ["is there red bed dog ?"], "prompt": "red bed {} is sleeping on"}, {"index": 603, "image_id": 2372549, "entity": "dog", "caption": "the cushion under the dog is red", "question": ["is there the cushion ?", "is there the dog ?"], "prompt": "the cushion under the {} is red"}, {"index": 604, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a cushion", "question": ["is there the dog ?", "is there a cushion ?"], "prompt": "the {} is laying on a cushion"}, {"index": 605, "image_id": 2372549, "entity": "dog", "caption": "The dog ear on the right", "question": ["is there the dog ear ?", "is there the right ?"], "prompt": "The {} ear on the right"}, {"index": 606, "image_id": 2372293, "entity": "dog", "caption": "Dog leash on the beige dog", "question": ["is there dog ?", "is there the beige dog ?"], "prompt": "Dog leash on the beige {}"}, {"index": 607, "image_id": 2372293, "entity": "dog", "caption": "dog has white teeth", "question": ["is there dog ?", "are there white teeth ?"], "prompt": "{} has white teeth"}, {"index": 608, "image_id": 2372293, "entity": "dog", "caption": "dog has black under his lip", "question": ["is there dog ?", "is there his lip ?"], "prompt": "{} has black under his lip"}, {"index": 609, "image_id": 2372091, "entity": "dog", "caption": "wooden bench dog is sitting on", "question": ["is there wooden bench dog ?"], "prompt": "wooden bench {} is sitting on"}, {"index": 610, "image_id": 2371865, "entity": "dog", "caption": "Flowered leash going to the dog", "question": ["is there flowered leash ?", "is there the dog ?"], "prompt": "Flowered leash going to the {}"}, {"index": 611, "image_id": 2371865, "entity": "dog", "caption": "dog looks off into distance", "question": ["is there dog ?", "is there distance ?"], "prompt": "{} looks off into distance"}, {"index": 612, "image_id": 2371865, "entity": "dog", "caption": "dog wears sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} wears sweater"}, {"index": 613, "image_id": 2371865, "entity": "dog", "caption": "dog sits next to bicycle", "question": ["is there dog ?", "is there bicycle ?"], "prompt": "{} sits next to bicycle"}, {"index": 614, "image_id": 2371865, "entity": "dog", "caption": "dog sits on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} sits on sidewalk"}, {"index": 615, "image_id": 2371865, "entity": "dog", "caption": "sweater is on dog", "question": ["is there dog ?"], "prompt": "sweater is on {}"}, {"index": 616, "image_id": 2371865, "entity": "dog", "caption": "dog is inside sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is inside sweater"}, {"index": 617, "image_id": 2371865, "entity": "dog", "caption": "The dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash"}, {"index": 618, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing near a bicycle", "question": ["is there the white dog ?", "is there a bicycle ?"], "prompt": "The white {} is standing near a bicycle"}, {"index": 619, "image_id": 2371865, "entity": "dog", "caption": "The white dog in the sweater has a bushy tail", "question": ["is there the white dog ?", "is there the sweater ?", "is there a bushy tail ?"], "prompt": "The white {} in the sweater has a bushy tail"}, {"index": 620, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing on the sidewalk", "question": ["is there the white dog ?", "is there the sidewalk ?"], "prompt": "The white {} is standing on the sidewalk"}, {"index": 621, "image_id": 2371612, "entity": "dog", "caption": "the dog is using the laptop", "question": ["is there the dog ?", "is there the laptop ?"], "prompt": "the {} is using the laptop"}, {"index": 622, "image_id": 2371612, "entity": "dog", "caption": "A dog with it's paws on a laptop.", "question": ["is there a dog ?", "are there it's paws ?", "is there a laptop ?"], "prompt": "A {} with it's paws on a laptop."}, {"index": 623, "image_id": 2371612, "entity": "dog", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The {} is using the computer "}, {"index": 624, "image_id": 2371612, "entity": "dog", "caption": "The nose of the dog is black ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "The nose of the {} is black "}, {"index": 625, "image_id": 2371612, "entity": "dog", "caption": "The eye of the dog is brown ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "The eye of the {} is brown "}, {"index": 626, "image_id": 2371520, "entity": "dog", "caption": "carpet dog is playing on", "question": ["is there carpet dog ?"], "prompt": "carpet {} is playing on"}, {"index": 627, "image_id": 2371249, "entity": "dog", "caption": "A dog has three colors of fur.", "question": ["is there a dog ?", "are there three colors ?", "is there fur ?"], "prompt": "A {} has three colors of fur."}, {"index": 628, "image_id": 2371249, "entity": "dog", "caption": "A dog is wearing a scarf around the neck.", "question": ["is there a dog ?", "is there a scarf ?", "is there the neck ?"], "prompt": "A {} is wearing a scarf around the neck."}, {"index": 629, "image_id": 2371249, "entity": "dog", "caption": "A woman is sitting close to a dog.", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman is sitting close to a {}."}, {"index": 630, "image_id": 2371169, "entity": "dog", "caption": "The dog has a frisbee in mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there mouth ?"], "prompt": "The {} has a frisbee in mouth."}, {"index": 631, "image_id": 2371169, "entity": "dog", "caption": "the dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar."}, {"index": 632, "image_id": 2371169, "entity": "dog", "caption": "The back left leg of a dog", "question": ["is there the back left leg ?", "is there a dog ?"], "prompt": "The back left leg of a {}"}, {"index": 633, "image_id": 2371169, "entity": "dog", "caption": "The front left leg of a dog", "question": ["is there the front left leg ?", "is there a dog ?"], "prompt": "The front left leg of a {}"}, {"index": 634, "image_id": 2371119, "entity": "dog", "caption": "the dog is laying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is laying on the bed"}, {"index": 635, "image_id": 2370667, "entity": "dog", "caption": "the dogs nail ", "question": ["are there the dogs ?"], "prompt": "the {}s nail "}, {"index": 636, "image_id": 2370647, "entity": "dog", "caption": "The dog has a serious face", "question": ["is there the dog ?", "is there a serious face ?"], "prompt": "The {} has a serious face"}, {"index": 637, "image_id": 2370647, "entity": "dog", "caption": "The dog has white whiskers.", "question": ["is there the dog ?", "are there white whiskers ?"], "prompt": "The {} has white whiskers."}, {"index": 638, "image_id": 2370647, "entity": "dog", "caption": "The dog has a brown colar.", "question": ["is there the dog ?", "is there a brown colar ?"], "prompt": "The {} has a brown colar."}, {"index": 639, "image_id": 2370508, "entity": "dog", "caption": "eye of dog is black ", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black "}, {"index": 640, "image_id": 2370508, "entity": "dog", "caption": "chest of dog is white", "question": ["is there chest ?", "is there dog ?"], "prompt": "chest of {} is white"}, {"index": 641, "image_id": 2370508, "entity": "dog", "caption": "dog has dog tags", "question": ["is there dog ?", "are there dog tags ?"], "prompt": "{} has {} tags"}, {"index": 642, "image_id": 2370342, "entity": "dog", "caption": "dog's head is on the pillow", "question": ["is there dog's head ?", "is there the pillow ?"], "prompt": "{}'s head is on the pillow"}, {"index": 643, "image_id": 2370107, "entity": "dog", "caption": "bottom left tooth of dog", "question": ["is there bottom ?", "is there tooth ?", "is there dog ?"], "prompt": "bottom left tooth of {}"}, {"index": 644, "image_id": 2369919, "entity": "dog", "caption": "dogs nose is black ", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black "}, {"index": 645, "image_id": 2369919, "entity": "dog", "caption": "the dog is laying down on a shoe ", "question": ["is there the dog ?", "is there a shoe ?"], "prompt": "the {} is laying down on a shoe "}, {"index": 646, "image_id": 2369591, "entity": "dog", "caption": "the dog has a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} has a leash"}, {"index": 647, "image_id": 2369591, "entity": "dog", "caption": "The dog's eye looking ahead", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye looking ahead"}, {"index": 648, "image_id": 2369270, "entity": "dog", "caption": "Frisbee is in the dog's mouth", "question": ["is there the dog's mouth ?"], "prompt": "Frisbee is in the {}'s mouth"}, {"index": 649, "image_id": 2368889, "entity": "dog", "caption": "Big brown dog spiked pink collar.", "question": ["is there big brown dog ?", "is there pink collar ?"], "prompt": "Big brown {} spiked pink collar."}, {"index": 650, "image_id": 2368858, "entity": "dog", "caption": "dog is laying on the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is laying on the ground"}, {"index": 651, "image_id": 2368858, "entity": "dog", "caption": "dog with tongue sticking out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue sticking out"}, {"index": 652, "image_id": 2368858, "entity": "dog", "caption": "the dog has a front paw", "question": ["is there the dog ?", "is there a front paw ?"], "prompt": "the {} has a front paw"}, {"index": 653, "image_id": 2368858, "entity": "dog", "caption": "the dog has nails", "question": ["is there the dog ?", "are there nails ?"], "prompt": "the {} has nails"}, {"index": 654, "image_id": 2368858, "entity": "dog", "caption": "the dog is lying down", "question": ["is there the dog ?"], "prompt": "the {} is lying down"}, {"index": 655, "image_id": 2368714, "entity": "dog", "caption": "dog curled up with a teddy bear", "question": ["is there dog ?"], "prompt": "{} curled up with a teddy bear"}, {"index": 656, "image_id": 2368714, "entity": "dog", "caption": "ear of dog is black ", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is black "}, {"index": 657, "image_id": 2368054, "entity": "dog", "caption": "dog has a purple leash", "question": ["is there dog ?", "is there a purple leash ?"], "prompt": "{} has a purple leash"}, {"index": 658, "image_id": 2368054, "entity": "dog", "caption": "this dog is wearing a red harness", "question": ["is there this dog ?", "is there a red harness ?"], "prompt": "this {} is wearing a red harness"}, {"index": 659, "image_id": 2367865, "entity": "dog", "caption": "The dog's eyes are yellow", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are yellow"}, {"index": 660, "image_id": 2367488, "entity": "dog", "caption": "the dog is inside a van", "question": ["is there the dog ?", "is there a van ?"], "prompt": "the {} is inside a van"}, {"index": 661, "image_id": 2367488, "entity": "dog", "caption": "the dog tag hanging", "question": ["is there the dog tag ?"], "prompt": "the {} tag hanging"}, {"index": 662, "image_id": 2367488, "entity": "dog", "caption": "The dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar"}, {"index": 663, "image_id": 2367488, "entity": "dog", "caption": "navy blanket dog is laying on", "question": ["is there navy blanket dog ?"], "prompt": "navy blanket {} is laying on"}, {"index": 664, "image_id": 2367488, "entity": "dog", "caption": "The dog's pink tongue is very long", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue is very long"}, {"index": 665, "image_id": 2367488, "entity": "dog", "caption": "A large tongue hanging out of the dog's mouth", "question": ["is there a large tongue ?", "is there the dog's mouth ?"], "prompt": "A large tongue hanging out of the {}'s mouth"}, {"index": 666, "image_id": 2367488, "entity": "dog", "caption": "The dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 667, "image_id": 2367433, "entity": "dog", "caption": "pizza that dog is eating", "question": ["is there pizza ?", "is there that dog ?"], "prompt": "pizza that {} is eating"}, {"index": 668, "image_id": 2367433, "entity": "dog", "caption": "steel grate that dog is standing on", "question": ["is there steel grate ?", "is there that dog ?"], "prompt": "steel grate that {} is standing on"}, {"index": 669, "image_id": 2367152, "entity": "dog", "caption": "mouth of dog is open", "question": ["is there mouth ?", "is there dog ?"], "prompt": "mouth of {} is open"}, {"index": 670, "image_id": 2366422, "entity": "dog", "caption": "dog tail held high", "question": ["is there dog tail ?"], "prompt": "{} tail held high"}, {"index": 671, "image_id": 2366422, "entity": "dog", "caption": "a dog that has brown eyes", "question": ["is there a dog ?", "are there brown eyes ?"], "prompt": "a {} that has brown eyes"}, {"index": 672, "image_id": 2366422, "entity": "dog", "caption": "the dog has a brown ear", "question": ["is there the dog ?", "is there a brown ear ?"], "prompt": "the {} has a brown ear"}, {"index": 673, "image_id": 2366422, "entity": "dog", "caption": "this dog has eyes", "question": ["is there this dog ?", "are there eyes ?"], "prompt": "this {} has eyes"}, {"index": 674, "image_id": 2366422, "entity": "dog", "caption": "this dog has ears", "question": ["is there this dog ?", "are there ears ?"], "prompt": "this {} has ears"}, {"index": 675, "image_id": 2366422, "entity": "dog", "caption": "this dog's nose is black", "question": ["is there this dog's nose ?"], "prompt": "this {}'s nose is black"}, {"index": 676, "image_id": 2366422, "entity": "dog", "caption": "this dog has a long tail", "question": ["is there this dog ?", "is there a long tail ?"], "prompt": "this {} has a long tail"}, {"index": 677, "image_id": 2365888, "entity": "dog", "caption": "the dog has a small tail", "question": ["is there the dog ?", "is there a small tail ?"], "prompt": "the {} has a small tail"}, {"index": 678, "image_id": 2365787, "entity": "dog", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th e{} is in the car "}, {"index": 679, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking outside the window"}, {"index": 680, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside ", "question": ["is there the dog ?"], "prompt": "the {} is looking outside "}, {"index": 681, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking through the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking through the window"}, {"index": 682, "image_id": 2365756, "entity": "dog", "caption": "the doghas a seat belt on ", "question": ["is there a seat belt ?"], "prompt": "the {}has a seat belt on "}, {"index": 683, "image_id": 2365756, "entity": "dog", "caption": "Black seatbelt holding back a dog. ", "question": ["is there black seatbelt ?", "is there a dog ?"], "prompt": "Black seatbelt holding back a {}. "}, {"index": 684, "image_id": 2365712, "entity": "dog", "caption": "the dog is licking the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is licking the cake"}, {"index": 685, "image_id": 2365044, "entity": "dog", "caption": "dog is wearing a bow tie ", "question": ["is there dog ?", "is there a bow tie ?"], "prompt": "{} is wearing a bow tie "}, {"index": 686, "image_id": 2364811, "entity": "dog", "caption": "The pillow the dog is laying on.", "question": ["is there the pillow ?", "is there the dog ?"], "prompt": "The pillow the {} is laying on."}, {"index": 687, "image_id": 2364811, "entity": "dog", "caption": "the dog is getting ready for bed", "question": ["is there the dog ?", "is there bed ?"], "prompt": "the {} is getting ready for bed"}, {"index": 688, "image_id": 2364811, "entity": "dog", "caption": "this dog looks comfortable in bed", "question": ["is there this dog ?", "is there bed ?"], "prompt": "this {} looks comfortable in bed"}, {"index": 689, "image_id": 2364811, "entity": "dog", "caption": "dog has hazel eyes", "question": ["is there dog ?", "are there hazel eyes ?"], "prompt": "{} has hazel eyes"}, {"index": 690, "image_id": 2364543, "entity": "dog", "caption": "dog is holding a ball", "question": ["is there dog ?", "is there a ball ?"], "prompt": "{} is holding a ball"}, {"index": 691, "image_id": 2364543, "entity": "dog", "caption": "black dog with paws forward looking at camera", "question": ["is there black dog ?", "are there paws ?", "is there camera ?"], "prompt": "black {} with paws forward looking at camera"}, {"index": 692, "image_id": 2364543, "entity": "dog", "caption": "dog has a ball inside his mouth", "question": ["is there dog ?", "is there a ball ?", "is there his mouth ?"], "prompt": "{} has a ball inside his mouth"}, {"index": 693, "image_id": 2364543, "entity": "dog", "caption": "snout of dog is color salt and pepper", "question": ["is there snout ?", "is there dog ?", "is there color salt ?", "is there pepper ?"], "prompt": "snout of {} is color salt and pepper"}, {"index": 694, "image_id": 2364504, "entity": "dog", "caption": "The dog is wearing a purple collar.", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "The {} is wearing a purple collar."}, {"index": 695, "image_id": 2364504, "entity": "dog", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One {} is sitting in the car."}, {"index": 696, "image_id": 2364448, "entity": "dog", "caption": "the dog has a paw", "question": ["is there the dog ?", "is there a paw ?"], "prompt": "the {} has a paw"}, {"index": 697, "image_id": 2364244, "entity": "dog", "caption": "the dog is wearing a tiara", "question": ["is there the dog ?", "is there a tiara ?"], "prompt": "the {} is wearing a tiara"}, {"index": 698, "image_id": 2364208, "entity": "dog", "caption": "the cow is looking at the dog", "question": ["is there the cow ?", "is there the dog ?"], "prompt": "the cow is looking at the {}"}, {"index": 699, "image_id": 2363392, "entity": "dog", "caption": "a dog with his tooth sticking out", "question": ["is there a dog ?", "is there his tooth ?"], "prompt": "a {} with his tooth sticking out"}, {"index": 700, "image_id": 2363392, "entity": "dog", "caption": "green couch cushion dog is sleeping on", "question": ["is there green couch cushion dog ?"], "prompt": "green couch cushion {} is sleeping on"}, {"index": 701, "image_id": 2363392, "entity": "dog", "caption": "dog lip pulled up against cushion", "question": ["is there dog lip ?", "is there cushion ?"], "prompt": "{} lip pulled up against cushion"}, {"index": 702, "image_id": 2363392, "entity": "dog", "caption": "dog's tongue sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue sticking out"}, {"index": 703, "image_id": 2363350, "entity": "dog", "caption": "A dog is laying in his bed", "question": ["is there a dog ?", "is there his bed ?"], "prompt": "A {} is laying in his bed"}, {"index": 704, "image_id": 2363350, "entity": "dog", "caption": "The dog is resting on a pillow", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is resting on a pillow"}, {"index": 705, "image_id": 2362763, "entity": "dog", "caption": "dog's teeth are showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are showing"}, {"index": 706, "image_id": 2362553, "entity": "dog", "caption": "dog with head tilted up", "question": ["is there dog ?", "is there head ?"], "prompt": "{} with head tilted up"}, {"index": 707, "image_id": 2362553, "entity": "dog", "caption": "the dog has a right eye", "question": ["is there the dog ?", "is there a right eye ?"], "prompt": "the {} has a right eye"}, {"index": 708, "image_id": 2362525, "entity": "dog", "caption": "The dog is in the bag", "question": ["is there the dog ?", "is there the bag ?"], "prompt": "The {} is in the bag"}, {"index": 709, "image_id": 2362525, "entity": "dog", "caption": "The bag is holding the dog", "question": ["is there the bag ?", "is there the dog ?"], "prompt": "The bag is holding the {}"}, {"index": 710, "image_id": 2362525, "entity": "dog", "caption": "The small backpack holds a dog", "question": ["is there the small backpack ?", "is there a dog ?"], "prompt": "The small backpack holds a {}"}, {"index": 711, "image_id": 2362525, "entity": "dog", "caption": "The dog is turning its head", "question": ["is there the dog ?", "is there its head ?"], "prompt": "The {} is turning its head"}, {"index": 712, "image_id": 2362525, "entity": "dog", "caption": "this is a \"doggy pack\"", "question": ["is there a \"doggy pack ?"], "prompt": "this is a \"{}gy pack\""}, {"index": 713, "image_id": 2362323, "entity": "dog", "caption": "dog is wearing chain collar", "question": ["is there dog ?", "is there chain collar ?"], "prompt": "{} is wearing chain collar"}, {"index": 714, "image_id": 2362323, "entity": "dog", "caption": "the dog is looking at the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is looking at the cake"}, {"index": 715, "image_id": 2362323, "entity": "dog", "caption": "the dog looks sad", "question": ["is there the dog ?"], "prompt": "the {} looks sad"}, {"index": 716, "image_id": 2362323, "entity": "dog", "caption": "the dog lays head on arm", "question": ["is there the dog ?", "is there head ?", "is there arm ?"], "prompt": "the {} lays head on arm"}, {"index": 717, "image_id": 2362323, "entity": "dog", "caption": "the dog has spots", "question": ["is there the dog ?", "are there spots ?"], "prompt": "the {} has spots"}, {"index": 718, "image_id": 2362323, "entity": "dog", "caption": "eye of dog is black", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black"}, {"index": 719, "image_id": 2362196, "entity": "dog", "caption": " a dog with it's tongue sticking out", "question": ["is there a dog ?", "is there tongue ?"], "prompt": " a {} with it's tongue sticking out"}, {"index": 720, "image_id": 2362106, "entity": "dog", "caption": "this is a dog ", "question": ["is there a dog ?"], "prompt": "this is a {} "}, {"index": 721, "image_id": 2362106, "entity": "dog", "caption": "the dog is lying down on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is lying down on the floor"}, {"index": 722, "image_id": 2362106, "entity": "dog", "caption": "The dog is in somebody's house", "question": ["is there the dog ?", "is there somebody's house ?"], "prompt": "The {} is in somebody's house"}, {"index": 723, "image_id": 2362106, "entity": "dog", "caption": "The dog is laying by the door", "question": ["is there the dog ?", "is there the door ?"], "prompt": "The {} is laying by the door"}, {"index": 724, "image_id": 2362106, "entity": "dog", "caption": "The dog is guarding the house", "question": ["is there the dog ?", "is there the house ?"], "prompt": "The {} is guarding the house"}, {"index": 725, "image_id": 2362106, "entity": "dog", "caption": "The dog is awake in daytime", "question": ["is there the dog ?", "is there daytime ?"], "prompt": "The {} is awake in daytime"}, {"index": 726, "image_id": 2362106, "entity": "dog", "caption": "The dog is waiting to go outside", "question": ["is there the dog ?"], "prompt": "The {} is waiting to go outside"}, {"index": 727, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting to be let out", "question": ["is there a dog ?"], "prompt": "A {} is waiting to be let out"}, {"index": 728, "image_id": 2362106, "entity": "dog", "caption": "A dog is sleeping on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is sleeping on the floor"}, {"index": 729, "image_id": 2362106, "entity": "dog", "caption": "A dog is looking for attention", "question": ["is there a dog ?", "is there attention ?"], "prompt": "A {} is looking for attention"}, {"index": 730, "image_id": 2362106, "entity": "dog", "caption": "The dog is looking lonely", "question": ["is there the dog ?"], "prompt": "The {} is looking lonely"}, {"index": 731, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting by the door", "question": ["is there a dog ?", "is there the door ?"], "prompt": "A {} is waiting by the door"}, {"index": 732, "image_id": 2362106, "entity": "dog", "caption": "A dog is laying on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is laying on the floor"}, {"index": 733, "image_id": 2362106, "entity": "dog", "caption": "The dog is wanting to be fed", "question": ["is there the dog ?"], "prompt": "The {} is wanting to be fed"}, {"index": 734, "image_id": 2362106, "entity": "dog", "caption": "The dog is enjoying its day", "question": ["is there the dog ?", "is there its day ?"], "prompt": "The {} is enjoying its day"}, {"index": 735, "image_id": 2362106, "entity": "dog", "caption": "The dog is getting some rest", "question": ["is there the dog ?", "is there some rest ?"], "prompt": "The {} is getting some rest"}, {"index": 736, "image_id": 2362106, "entity": "dog", "caption": "The dog belongs to the home owner", "question": ["is there the dog ?", "is there the home owner ?"], "prompt": "The {} belongs to the home owner"}, {"index": 737, "image_id": 2361653, "entity": "dog", "caption": "the dog has a left eye", "question": ["is there the dog ?", "is there a left eye ?"], "prompt": "the {} has a left eye"}, {"index": 738, "image_id": 2361100, "entity": "dog", "caption": "floppy black dog ear ", "question": ["is there floppy black dog ear ?"], "prompt": "floppy black {} ear "}, {"index": 739, "image_id": 2361100, "entity": "dog", "caption": "two dog ear in different positions at same time ", "question": ["is there two dog ear ?", "are there different positions ?", "is there same time ?"], "prompt": "two {} ear in different positions at same time "}, {"index": 740, "image_id": 2361100, "entity": "dog", "caption": "The dog's left ear flopped down", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear flopped down"}, {"index": 741, "image_id": 2361100, "entity": "dog", "caption": "the dog's right ear is up", "question": ["is there the dog's right ear ?"], "prompt": "the {}'s right ear is up"}, {"index": 742, "image_id": 2361100, "entity": "dog", "caption": "the dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are open"}, {"index": 743, "image_id": 2360869, "entity": "dog", "caption": "dog is laying on dog bed", "question": ["is there dog ?", "is there dog bed ?"], "prompt": "{} is laying on {} bed"}, {"index": 744, "image_id": 2360869, "entity": "dog", "caption": "dog has small nose", "question": ["is there dog ?", "is there small nose ?"], "prompt": "{} has small nose"}, {"index": 745, "image_id": 2360869, "entity": "dog", "caption": "dog bed is beige", "question": ["is there dog bed ?"], "prompt": "{} bed is beige"}, {"index": 746, "image_id": 2360869, "entity": "dog", "caption": "dog has wavy fur", "question": ["is there dog ?", "is there wavy fur ?"], "prompt": "{} has wavy fur"}, {"index": 747, "image_id": 2360869, "entity": "dog", "caption": "dog has fluffy tail", "question": ["is there dog ?", "is there fluffy tail ?"], "prompt": "{} has fluffy tail"}, {"index": 748, "image_id": 2360725, "entity": "dog", "caption": "the dog is biting an envelope", "question": ["is there the dog ?", "is there an envelope ?"], "prompt": "the {} is biting an envelope"}, {"index": 749, "image_id": 2360725, "entity": "dog", "caption": "dog is carrying an envelope", "question": ["is there dog ?", "is there an envelope ?"], "prompt": "{} is carrying an envelope"}, {"index": 750, "image_id": 2360542, "entity": "dog", "caption": "dog has black eyes", "question": ["is there dog ?", "are there black eyes ?"], "prompt": "{} has black eyes"}, {"index": 751, "image_id": 2360542, "entity": "dog", "caption": "pomeranian dog gets a ride inside duffle bag", "question": ["is there pomeranian dog ?", "is there a ride inside duffle bag ?"], "prompt": "pomeranian {} gets a ride inside duffle bag"}, {"index": 752, "image_id": 2360357, "entity": "dog", "caption": "The front left leg of the dog.", "question": ["is there the front left leg ?", "is there the dog ?"], "prompt": "The front left leg of the {}."}, {"index": 753, "image_id": 2360357, "entity": "dog", "caption": "eyes of dog are round", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are round"}, {"index": 754, "image_id": 2360357, "entity": "dog", "caption": "head of dog is brown", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown"}, {"index": 755, "image_id": 2360357, "entity": "dog", "caption": "dog has dark eyes ", "question": ["is there dog ?", "are there dark eyes ?"], "prompt": "{} has dark eyes "}, {"index": 756, "image_id": 2360299, "entity": "dog", "caption": "dog's right ear is black", "question": ["is there dog's right ear ?"], "prompt": "{}'s right ear is black"}, {"index": 757, "image_id": 2360145, "entity": "dog", "caption": "A shadow line is behind the dogs.", "question": ["is there a shadow line ?", "are there the dogs ?"], "prompt": "A shadow line is behind the {}s."}, {"index": 758, "image_id": 2359887, "entity": "dog", "caption": "dog with his eyes shut", "question": ["is there dog ?", "are there his eyes ?"], "prompt": "{} with his eyes shut"}, {"index": 759, "image_id": 2359887, "entity": "dog", "caption": "dog is on blanket", "question": ["is there dog ?", "is there blanket ?"], "prompt": "{} is on blanket"}, {"index": 760, "image_id": 2359887, "entity": "dog", "caption": "dog has blonde hair", "question": ["is there dog ?", "is there blonde hair ?"], "prompt": "{} has blonde hair"}, {"index": 761, "image_id": 2359887, "entity": "dog", "caption": "dog has long hair on ears", "question": ["is there dog ?", "is there long hair ?", "are there ears ?"], "prompt": "{} has long hair on ears"}, {"index": 762, "image_id": 2359809, "entity": "dog", "caption": "The rear left paw of the dog", "question": ["is there the rear left paw ?", "is there the dog ?"], "prompt": "The rear left paw of the {}"}, {"index": 763, "image_id": 2359809, "entity": "dog", "caption": "dog is standing on cement floors", "question": ["is there dog ?", "are there cement floors ?"], "prompt": "{} is standing on cement floors"}, {"index": 764, "image_id": 2359414, "entity": "dog", "caption": "the dog has a banana on its side", "question": ["is there the dog ?", "is there a banana ?", "is there its side ?"], "prompt": "the {} has a banana on its side"}, {"index": 765, "image_id": 2359172, "entity": "dog", "caption": "dog has brown ear", "question": ["is there dog ?", "is there brown ear ?"], "prompt": "{} has brown ear"}, {"index": 766, "image_id": 2359172, "entity": "dog", "caption": "dog has brown eye", "question": ["is there dog ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 767, "image_id": 2359073, "entity": "dog", "caption": "Cat is laying on top of dog.", "question": ["is there cat ?", "is there top ?", "is there dog ?"], "prompt": "Cat is laying on top of {}."}, {"index": 768, "image_id": 2359073, "entity": "dog", "caption": "The cat is on the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is on the {}."}, {"index": 769, "image_id": 2359073, "entity": "dog", "caption": "dog has brown eye brows", "question": ["is there dog ?", "are there brown eye brows ?"], "prompt": "{} has brown eye brows"}, {"index": 770, "image_id": 2358914, "entity": "dog", "caption": "dog holds chew toy", "question": ["is there dog ?", "is there toy ?"], "prompt": "{} holds chew toy"}, {"index": 771, "image_id": 2358914, "entity": "dog", "caption": "dog has pink tongue", "question": ["is there dog ?", "is there pink tongue ?"], "prompt": "{} has pink tongue"}, {"index": 772, "image_id": 2358914, "entity": "dog", "caption": "the dog is chewing on a toy", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "the {} is chewing on a toy"}, {"index": 773, "image_id": 2358914, "entity": "dog", "caption": "the dog chews on an orange toy", "question": ["is there the dog ?", "is there an orange toy ?"], "prompt": "the {} chews on an orange toy"}, {"index": 774, "image_id": 2358914, "entity": "dog", "caption": "the dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is on a blanket"}, {"index": 775, "image_id": 2358914, "entity": "dog", "caption": "the dog is laying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is laying on a blanket"}, {"index": 776, "image_id": 2358914, "entity": "dog", "caption": "Small orange looking stuffed animal a dog has. ", "question": ["is there small orange ?", "is there stuffed animal ?", "is there a dog ?"], "prompt": "Small orange looking stuffed animal a {} has. "}, {"index": 777, "image_id": 2358914, "entity": "dog", "caption": "A brown dogs left side front paw. ", "question": ["are there a brown dogs ?", "is there side front paw ?"], "prompt": "A brown {}s left side front paw. "}, {"index": 778, "image_id": 2358914, "entity": "dog", "caption": "A dogs left ear. ", "question": ["are there a dogs ?", "is there ear ?"], "prompt": "A {}s left ear. "}, {"index": 779, "image_id": 2358486, "entity": "dog", "caption": "dog is leaning over railing", "question": ["is there dog ?"], "prompt": "{} is leaning over railing"}, {"index": 780, "image_id": 2358453, "entity": "dog", "caption": "eye of dog is close", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is close"}, {"index": 781, "image_id": 2357732, "entity": "dog", "caption": "dog has a long ear", "question": ["is there dog ?", "is there a long ear ?"], "prompt": "{} has a long ear"}, {"index": 782, "image_id": 2357732, "entity": "dog", "caption": "the dog's head is on the blanket", "question": ["is there the dog's head ?", "is there the blanket ?"], "prompt": "the {}'s head is on the blanket"}, {"index": 783, "image_id": 2357732, "entity": "dog", "caption": "the dog has on a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has on a red collar"}, {"index": 784, "image_id": 2357693, "entity": "dog", "caption": "dog has brown patch on eye", "question": ["is there dog ?", "is there brown patch ?", "is there eye ?"], "prompt": "{} has brown patch on eye"}, {"index": 785, "image_id": 2357667, "entity": "dog", "caption": "the dog is wearing a tie", "question": ["is there the dog ?", "is there a tie ?"], "prompt": "the {} is wearing a tie"}, {"index": 786, "image_id": 2357667, "entity": "dog", "caption": "the dog is lying on the arm of a leather chair", "question": ["is there the dog ?", "is there the arm ?", "is there a leather chair ?"], "prompt": "the {} is lying on the arm of a leather chair"}, {"index": 787, "image_id": 2357667, "entity": "dog", "caption": "the dog has bulgy eyes", "question": ["is there the dog ?", "are there bulgy eyes ?"], "prompt": "the {} has bulgy eyes"}, {"index": 788, "image_id": 2357667, "entity": "dog", "caption": "the dog has dark brown ears", "question": ["is there the dog ?", "are there dark brown ears ?"], "prompt": "the {} has dark brown ears"}, {"index": 789, "image_id": 2356804, "entity": "dog", "caption": "two dogs with their tongues hanging out", "question": ["are there two dogs ?", "are there their tongues ?"], "prompt": "two {}s with their tongues hanging out"}, {"index": 790, "image_id": 2356804, "entity": "dog", "caption": "the dogs are in long grass", "question": ["are there the dogs ?", "is there long grass ?"], "prompt": "the {}s are in long grass"}, {"index": 791, "image_id": 2356762, "entity": "dog", "caption": "This is a dog trying to catch an apple.", "question": ["is there a dog ?", "is there an apple ?"], "prompt": "This is a {} trying to catch an apple."}, {"index": 792, "image_id": 2356762, "entity": "dog", "caption": "The dog has only a few teeth.", "question": ["is there the dog ?", "are there only a few teeth ?"], "prompt": "The {} has only a few teeth."}, {"index": 793, "image_id": 2356701, "entity": "dog", "caption": "the dog's nose is thru the hole", "question": ["is there the dog's nose ?", "is there the hole ?"], "prompt": "the {}'s nose is thru the hole"}, {"index": 794, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck", "question": ["are there the dogs ?"], "prompt": "the {}s head is stuck"}, {"index": 795, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck in the wheel", "question": ["are there the dogs ?", "is there the wheel ?"], "prompt": "the {}s head is stuck in the wheel"}, {"index": 796, "image_id": 2356554, "entity": "dog", "caption": "dog wears black glasses", "question": ["is there dog ?", "are there black glasses ?"], "prompt": "{} wears black glasses"}, {"index": 797, "image_id": 2356554, "entity": "dog", "caption": "dog wears black jacket", "question": ["is there dog ?", "is there black jacket ?"], "prompt": "{} wears black jacket"}, {"index": 798, "image_id": 2356554, "entity": "dog", "caption": "dog is near motorcycle", "question": ["is there dog ?", "is there motorcycle ?"], "prompt": "{} is near motorcycle"}, {"index": 799, "image_id": 2356554, "entity": "dog", "caption": "the dog has sunglasses ", "question": ["is there the dog ?", "are there sunglasses ?"], "prompt": "the {} has sunglasses "}, {"index": 800, "image_id": 2356554, "entity": "dog", "caption": "the dog is on the bike ", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is on the bike "}, {"index": 801, "image_id": 2356554, "entity": "dog", "caption": "This dog is wearing sunglasses.", "question": ["is there this dog ?", "are there sunglasses ?"], "prompt": "This {} is wearing sunglasses."}, {"index": 802, "image_id": 2356554, "entity": "dog", "caption": "dog has leash on", "question": ["is there dog ?"], "prompt": "{} has leash on"}, {"index": 803, "image_id": 2356554, "entity": "dog", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "{} is sitting in side car"}, {"index": 804, "image_id": 2356153, "entity": "dog", "caption": "blue dog bone shaped tag", "question": ["is there blue dog bone shaped tag ?"], "prompt": "blue {} bone shaped tag"}, {"index": 805, "image_id": 2356153, "entity": "dog", "caption": "dog is wearing a red collar", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} is wearing a red collar"}, {"index": 806, "image_id": 2356153, "entity": "dog", "caption": "dog is walking on the dirt", "question": ["is there dog ?", "is there the dirt ?"], "prompt": "{} is walking on the dirt"}, {"index": 807, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} is wearing goggles"}, {"index": 808, "image_id": 2355985, "entity": "dog", "caption": "The dog is on a motorcycle", "question": ["is there the dog ?", "is there a motorcycle ?"], "prompt": "The {} is on a motorcycle"}, {"index": 809, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing a leather jacket", "question": ["is there the dog ?", "is there a leather jacket ?"], "prompt": "The {} is wearing a leather jacket"}, {"index": 810, "image_id": 2355985, "entity": "dog", "caption": "the nose is black on the dog ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose is black on the {} "}, {"index": 811, "image_id": 2355964, "entity": "dog", "caption": "dog ears is pink inside ", "question": ["are there dog ears ?"], "prompt": "{} ears is pink inside "}, {"index": 812, "image_id": 2355964, "entity": "dog", "caption": "dog has black nose ", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose "}, {"index": 813, "image_id": 2355944, "entity": "dog", "caption": "The dog is wearing a color", "question": ["is there the dog ?", "is there a color ?"], "prompt": "The {} is wearing a color"}, {"index": 814, "image_id": 2355865, "entity": "dog", "caption": "it is the eye of the dog ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "it is the eye of the {} "}, {"index": 815, "image_id": 2355519, "entity": "dog", "caption": "The dog has a frisbee in its mouth", "question": ["is there the dog ?", "is there a frisbee ?", "is there its mouth ?"], "prompt": "The {} has a frisbee in its mouth"}, {"index": 816, "image_id": 2355511, "entity": "dog", "caption": "a black dog right ear ", "question": ["is there a black dog right ear ?"], "prompt": "a black {} right ear "}, {"index": 817, "image_id": 2355511, "entity": "dog", "caption": "A black dog ready to get a bath", "question": ["is there a black dog ?", "is there a bath ?"], "prompt": "A black {} ready to get a bath"}, {"index": 818, "image_id": 2355409, "entity": "dog", "caption": "a dog catchign a freesbee", "question": ["is there a dog ?", "is there a freesbee ?"], "prompt": "a {} catchign a freesbee"}, {"index": 819, "image_id": 2355409, "entity": "dog", "caption": "a white dog catchign a black freesbee", "question": ["is there a white dog ?"], "prompt": "a white {} catchign a black freesbee"}, {"index": 820, "image_id": 2355256, "entity": "dog", "caption": "dog is brown and white", "question": ["is there dog ?"], "prompt": "{} is brown and white"}, {"index": 821, "image_id": 2354835, "entity": "dog", "caption": "Brown dog's head sticking out of car window.", "question": ["is there brown dog's head ?", "is there car window ?"], "prompt": "Brown {}'s head sticking out of car window."}, {"index": 822, "image_id": 2354515, "entity": "dog", "caption": "bike is behind the dog", "question": ["is there bike ?", "is there the dog ?"], "prompt": "bike is behind the {}"}, {"index": 823, "image_id": 2354515, "entity": "dog", "caption": "dog has tongue out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue out"}, {"index": 824, "image_id": 2354515, "entity": "dog", "caption": "dog is on the street", "question": ["is there dog ?", "is there the street ?"], "prompt": "{} is on the street"}, {"index": 825, "image_id": 2354497, "entity": "dog", "caption": "This dog has a donut in his mouth", "question": ["is there this dog ?", "is there a donut ?", "is there his mouth ?"], "prompt": "This {} has a donut in his mouth"}, {"index": 826, "image_id": 2354497, "entity": "dog", "caption": "The dog is wearing a red color.", "question": ["is there the dog ?", "is there a red color ?"], "prompt": "The {} is wearing a red color."}, {"index": 827, "image_id": 2354497, "entity": "dog", "caption": "The dog is sitting on the grass.", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "The {} is sitting on the grass."}, {"index": 828, "image_id": 2354497, "entity": "dog", "caption": "The dog has two spots on his face.", "question": ["is there the dog ?", "are there two spots ?", "is there his face ?"], "prompt": "The {} has two spots on his face."}, {"index": 829, "image_id": 2354494, "entity": "dog", "caption": "The dog nose is black", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black"}, {"index": 830, "image_id": 2354494, "entity": "dog", "caption": "tan/yellow dog laying across young girls lap", "question": ["is there tan/yellow dog ?", "are there young girls ?"], "prompt": "tan/yellow {} laying across young girls lap"}, {"index": 831, "image_id": 2354494, "entity": "dog", "caption": "dog is wearing a red collar around neck", "question": ["is there dog ?", "is there a red collar ?", "is there neck ?"], "prompt": "{} is wearing a red collar around neck"}, {"index": 832, "image_id": 2354494, "entity": "dog", "caption": "Woman laying on the couch with dog.", "question": ["is there woman ?", "is there the couch ?", "is there dog ?"], "prompt": "Woman laying on the couch with {}."}, {"index": 833, "image_id": 2354353, "entity": "dog", "caption": "The dog's head is on the keyboard", "question": ["is there the dog's head ?", "is there the keyboard ?"], "prompt": "The {}'s head is on the keyboard"}, {"index": 834, "image_id": 2354353, "entity": "dog", "caption": "The dog is wearing a blue and yellow collar", "question": ["is there the dog ?", "is there a blue and yellow collar ?"], "prompt": "The {} is wearing a blue and yellow collar"}, {"index": 835, "image_id": 2354353, "entity": "dog", "caption": "dog is on the keys", "question": ["is there dog ?", "are there the keys ?"], "prompt": "{} is on the keys"}, {"index": 836, "image_id": 2354353, "entity": "dog", "caption": "the dog has yellow and blue flowers", "question": ["is there the dog ?", "are there yellow and blue flowers ?"], "prompt": "the {} has yellow and blue flowers"}, {"index": 837, "image_id": 2353969, "entity": "dog", "caption": "dog has white paw", "question": ["is there dog ?"], "prompt": "{} has white paw"}, {"index": 838, "image_id": 2353969, "entity": "dog", "caption": "dog is laying down on rug", "question": ["is there dog ?", "is there rug ?"], "prompt": "{} is laying down on rug"}, {"index": 839, "image_id": 2353558, "entity": "dog", "caption": "the dog's eye is yellowish", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is yellowish"}, {"index": 840, "image_id": 2353558, "entity": "dog", "caption": "The dog has long ears", "question": ["is there the dog ?", "are there long ears ?"], "prompt": "The {} has long ears"}, {"index": 841, "image_id": 2353558, "entity": "dog", "caption": "The dog is wide eyed", "question": ["is there the dog ?"], "prompt": "The {} is wide eyed"}, {"index": 842, "image_id": 2353558, "entity": "dog", "caption": "The dog's nose is very black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is very black"}, {"index": 843, "image_id": 2353558, "entity": "dog", "caption": "The dog is wearing a bowl", "question": ["is there the dog ?", "is there a bowl ?"], "prompt": "The {} is wearing a bowl"}, {"index": 844, "image_id": 2353404, "entity": "dog", "caption": "the plastic buckle on the dog", "question": ["is there the plastic buckle ?", "is there the dog ?"], "prompt": "the plastic buckle on the {}"}, {"index": 845, "image_id": 2353404, "entity": "dog", "caption": "the dog walking and connected to a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} walking and connected to a chain"}, {"index": 846, "image_id": 2353398, "entity": "dog", "caption": "green felt the dog is standing on", "question": ["is there the dog ?"], "prompt": "green felt the {} is standing on"}, {"index": 847, "image_id": 2353062, "entity": "dog", "caption": "the dog is on a sofa", "question": ["is there the dog ?", "is there a sofa ?"], "prompt": "the {} is on a sofa"}, {"index": 848, "image_id": 2353062, "entity": "dog", "caption": "dog's eyes are amber", "question": ["are there dog's eyes ?", "is there amber ?"], "prompt": "{}'s eyes are amber"}, {"index": 849, "image_id": 2353062, "entity": "dog", "caption": "dog is laying on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} is laying on a couch"}, {"index": 850, "image_id": 2352757, "entity": "dog", "caption": "the dog is wearing a jacket", "question": ["is there the dog ?", "is there a jacket ?"], "prompt": "the {} is wearing a jacket"}, {"index": 851, "image_id": 2352757, "entity": "dog", "caption": "the dog has a black tail", "question": ["is there the dog ?", "is there a black tail ?"], "prompt": "the {} has a black tail"}, {"index": 852, "image_id": 2352502, "entity": "dog", "caption": "The dog is biting the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is biting the frisbee."}, {"index": 853, "image_id": 2352502, "entity": "dog", "caption": "The dog is on the beach.", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "The {} is on the beach."}, {"index": 854, "image_id": 2351971, "entity": "dog", "caption": "legs and paws of dog that allow dog to walk with ", "question": ["are there legs ?", "are there paws ?", "is there dog ?", "is there dog ?"], "prompt": "legs and paws of {} that allow {} to walk with "}, {"index": 855, "image_id": 2351950, "entity": "dog", "caption": "The dog is holding a bowl in his mouth", "question": ["is there the dog ?", "is there a bowl ?", "is there his mouth ?"], "prompt": "The {} is holding a bowl in his mouth"}, {"index": 856, "image_id": 2351950, "entity": "dog", "caption": "The dog's ear is hanging downwards", "question": ["is there the dog's ear ?"], "prompt": "The {}'s ear is hanging downwards"}, {"index": 857, "image_id": 2351950, "entity": "dog", "caption": "dog has light brown face", "question": ["is there dog ?", "is there light brown face ?"], "prompt": "{} has light brown face"}, {"index": 858, "image_id": 2351950, "entity": "dog", "caption": "dog is holding bowl", "question": ["is there dog ?", "is there bowl ?"], "prompt": "{} is holding bowl"}, {"index": 859, "image_id": 2351811, "entity": "dog", "caption": "the dogs head ", "question": ["are there the dogs ?"], "prompt": "the {}s head "}, {"index": 860, "image_id": 2351083, "entity": "dog", "caption": "dog holds a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} holds a cap"}, {"index": 861, "image_id": 2351083, "entity": "dog", "caption": "the dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black"}, {"index": 862, "image_id": 2350951, "entity": "dog", "caption": "the mouth of dog is open", "question": ["is there the mouth ?", "is there dog ?"], "prompt": "the mouth of {} is open"}, {"index": 863, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a Harley Davidson bandanna", "question": ["is there the unfortunate dog ?"], "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"}, {"index": 864, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a biker headband", "question": ["is there the unfortunate dog ?", "is there a biker headband ?"], "prompt": "the unfortunate {} is wearing a biker headband"}, {"index": 865, "image_id": 2350646, "entity": "dog", "caption": "the dog has cropped ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has cropped ears"}, {"index": 866, "image_id": 2350609, "entity": "dog", "caption": "lot where dog and woman stand", "question": ["is there lot ?", "is there dog ?", "is there woman ?"], "prompt": "lot where {} and woman stand"}, {"index": 867, "image_id": 2350606, "entity": "dog", "caption": "the dog is on a white platform", "question": ["is there the dog ?", "is there a white platform ?"], "prompt": "the {} is on a white platform"}, {"index": 868, "image_id": 2349745, "entity": "dog", "caption": "legs of dog running", "question": ["are there legs ?", "is there dog ?"], "prompt": "legs of {} running"}, {"index": 869, "image_id": 2349745, "entity": "dog", "caption": "open mouth of dog running", "question": ["is there open mouth ?", "is there dog ?"], "prompt": "open mouth of {} running"}, {"index": 870, "image_id": 2349745, "entity": "dog", "caption": "the dog is white with black spots", "question": ["is there the dog ?", "are there black spots ?"], "prompt": "the {} is white with black spots"}, {"index": 871, "image_id": 2349745, "entity": "dog", "caption": "the dog is running with his mouth open", "question": ["is there the dog ?", "is there his mouth ?"], "prompt": "the {} is running with his mouth open"}, {"index": 872, "image_id": 2349745, "entity": "dog", "caption": "the dog has a black spot over his eye", "question": ["is there the dog ?", "is there a black spot ?", "is there his eye ?"], "prompt": "the {} has a black spot over his eye"}, {"index": 873, "image_id": 2349745, "entity": "dog", "caption": "the dirt is flying from the dog's paws", "question": ["is there the dirt ?", "are there the dog's paws ?"], "prompt": "the dirt is flying from the {}'s paws"}, {"index": 874, "image_id": 2349745, "entity": "dog", "caption": "the dog's paws are touching from running", "question": ["are there the dog's paws ?"], "prompt": "the {}'s paws are touching from running"}, {"index": 875, "image_id": 2349548, "entity": "dog", "caption": "The dogs ear is brown.", "question": ["are there the dogs ?"], "prompt": "The {}s ear is brown."}, {"index": 876, "image_id": 2349547, "entity": "dog", "caption": "The dog has a pinkish nose.", "question": ["is there the dog ?", "is there a pinkish nose ?"], "prompt": "The {} has a pinkish nose."}, {"index": 877, "image_id": 2349421, "entity": "dog", "caption": "The dog is sitting on the chair ", "question": ["is there the dog ?", "is there the chair ?"], "prompt": "The {} is sitting on the chair "}, {"index": 878, "image_id": 2349268, "entity": "dog", "caption": "the dog has long nails", "question": ["is there the dog ?", "are there long nails ?"], "prompt": "the {} has long nails"}, {"index": 879, "image_id": 2349268, "entity": "dog", "caption": "the dog lays with toy", "question": ["is there the dog ?", "is there toy ?"], "prompt": "the {} lays with toy"}, {"index": 880, "image_id": 2348690, "entity": "dog", "caption": "the dog is chewing up a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is chewing up a stuffed animal"}, {"index": 881, "image_id": 2348554, "entity": "dog", "caption": "dog with hind legs stretched out", "question": ["is there dog ?", "are there hind legs ?"], "prompt": "{} with hind legs stretched out"}, {"index": 882, "image_id": 2348554, "entity": "dog", "caption": "A dog is laying on the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "A {} is laying on the bed"}, {"index": 883, "image_id": 2348554, "entity": "dog", "caption": "The dog has white on her paws", "question": ["is there the dog ?", "are there her paws ?"], "prompt": "The {} has white on her paws"}, {"index": 884, "image_id": 2348407, "entity": "dog", "caption": "tan dog's face as he holds the frisbee", "question": ["is there tan dog's face ?", "is there the frisbee ?"], "prompt": "tan {}'s face as he holds the frisbee"}, {"index": 885, "image_id": 2348407, "entity": "dog", "caption": "dog's eye looking up past the frisbee", "question": ["is there dog's eye ?", "is there the frisbee ?"], "prompt": "{}'s eye looking up past the frisbee"}, {"index": 886, "image_id": 2348407, "entity": "dog", "caption": "dog's ear hanging down as he chews the frisbee", "question": ["is there dog's ear ?", "is there the frisbee ?"], "prompt": "{}'s ear hanging down as he chews the frisbee"}, {"index": 887, "image_id": 2347998, "entity": "dog", "caption": "dog is on the newspaper", "question": ["is there dog ?", "is there the newspaper ?"], "prompt": "{} is on the newspaper"}, {"index": 888, "image_id": 2347801, "entity": "dog", "caption": "a dog tag shaped like a bone ", "question": ["is there a dog tag ?", "is there a bone ?"], "prompt": "a {} tag shaped like a bone "}, {"index": 889, "image_id": 2347801, "entity": "dog", "caption": "The dog is inside a room", "question": ["is there the dog ?", "is there a room ?"], "prompt": "The {} is inside a room"}, {"index": 890, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a television", "question": ["is there the dog ?", "is there a television ?"], "prompt": "The {} is next to a television"}, {"index": 891, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The {} is next to a laptop computer"}, {"index": 892, "image_id": 2347801, "entity": "dog", "caption": "The dog is on a table", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table"}, {"index": 893, "image_id": 2347591, "entity": "dog", "caption": "A woman who is sitting with a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman who is sitting with a {}"}, {"index": 894, "image_id": 2347591, "entity": "dog", "caption": "Woman is holding the dog", "question": ["is there woman ?", "is there the dog ?"], "prompt": "Woman is holding the {}"}, {"index": 895, "image_id": 2347481, "entity": "dog", "caption": "a dog with a disc on it's face", "question": ["is there a dog ?", "is there a disc ?"], "prompt": "a {} with a disc on it's face"}, {"index": 896, "image_id": 2347481, "entity": "dog", "caption": "dog has black and white tail", "question": ["is there dog ?", "is there black and white tail ?"], "prompt": "{} has black and white tail"}, {"index": 897, "image_id": 2347481, "entity": "dog", "caption": "dog has white neck", "question": ["is there dog ?", "is there white neck ?"], "prompt": "{} has white neck"}, {"index": 898, "image_id": 2347481, "entity": "dog", "caption": "The dogs tail", "question": ["are there the dogs ?"], "prompt": "The {}s tail"}, {"index": 899, "image_id": 2347481, "entity": "dog", "caption": "The ears that belong to the dog", "question": ["are there the ears ?", "is there the dog ?"], "prompt": "The ears that belong to the {}"}, {"index": 900, "image_id": 2347481, "entity": "dog", "caption": "A dog that is standing in the dirt", "question": ["is there a dog ?", "is there the dirt ?"], "prompt": "A {} that is standing in the dirt"}, {"index": 901, "image_id": 2347473, "entity": "dog", "caption": "the brown patches on the dogs face", "question": ["are there the brown patches ?", "are there the dogs ?"], "prompt": "the brown patches on the {}s face"}, {"index": 902, "image_id": 2347340, "entity": "dog", "caption": "dog's dark eyes are open", "question": ["are there dog's dark eyes ?"], "prompt": "{}'s dark eyes are open"}, {"index": 903, "image_id": 2347340, "entity": "dog", "caption": "the dog is on a chair", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "the {} is on a chair"}, {"index": 904, "image_id": 2347027, "entity": "dog", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car"}, {"index": 905, "image_id": 2347027, "entity": "dog", "caption": "dog has tongue hanging out ", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue hanging out "}, {"index": 906, "image_id": 2347027, "entity": "dog", "caption": "The dog have waggy ear.", "question": ["is there the dog ?"], "prompt": "The {} have waggy ear."}, {"index": 907, "image_id": 2346970, "entity": "dog", "caption": "The dog is resting his head on the couch.", "question": ["is there the dog ?", "is there his head ?", "is there the couch ?"], "prompt": "The {} is resting his head on the couch."}, {"index": 908, "image_id": 2346970, "entity": "dog", "caption": "The dog is wearing a blue collar.", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} is wearing a blue collar."}, {"index": 909, "image_id": 2346970, "entity": "dog", "caption": "The dog's eye is open.", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open."}, {"index": 910, "image_id": 2346970, "entity": "dog", "caption": "The dog's fur is very short.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is very short."}, {"index": 911, "image_id": 2346970, "entity": "dog", "caption": "The dog is sitting on top of white sheet.", "question": ["is there the dog ?", "is there top ?", "is there white sheet ?"], "prompt": "The {} is sitting on top of white sheet."}, {"index": 912, "image_id": 2346970, "entity": "dog", "caption": "the dogs neck is long ", "question": ["are there the dogs neck ?"], "prompt": "the {}s neck is long "}, {"index": 913, "image_id": 2346869, "entity": "dog", "caption": "dog is catching frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} is catching frisbee"}, {"index": 914, "image_id": 2346869, "entity": "dog", "caption": "dog has white frisbee in mouth", "question": ["is there dog ?", "is there white frisbee ?", "is there mouth ?"], "prompt": "{} has white frisbee in mouth"}, {"index": 915, "image_id": 2346869, "entity": "dog", "caption": "tree is next to dog", "question": ["is there tree ?", "is there dog ?"], "prompt": "tree is next to {}"}, {"index": 916, "image_id": 2346869, "entity": "dog", "caption": "man in cap leaning forward behind dog", "question": ["is there man ?", "is there cap ?", "is there dog ?"], "prompt": "man in cap leaning forward behind {}"}, {"index": 917, "image_id": 2346765, "entity": "dog", "caption": "neck of dog is white", "question": ["is there neck ?", "is there dog ?"], "prompt": "neck of {} is white"}, {"index": 918, "image_id": 2346434, "entity": "dog", "caption": "the dog's eyes are black", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are black"}, {"index": 919, "image_id": 2346434, "entity": "dog", "caption": "black pads and nails are on the dog's paws", "question": ["are there black pads ?", "are there nails ?", "are there the dog's paws ?"], "prompt": "black pads and nails are on the {}'s paws"}, {"index": 920, "image_id": 2346247, "entity": "dog", "caption": "Brown ear on the dog.", "question": ["is there brown ear ?", "is there the dog ?"], "prompt": "Brown ear on the {}."}, {"index": 921, "image_id": 2346086, "entity": "dog", "caption": "the black dog has a sad face", "question": ["is there the black dog ?", "is there a sad face ?"], "prompt": "the black {} has a sad face"}, {"index": 922, "image_id": 2346086, "entity": "dog", "caption": "A dog is near a bag.", "question": ["is there a dog ?", "is there a bag ?"], "prompt": "A {} is near a bag."}, {"index": 923, "image_id": 2346086, "entity": "dog", "caption": "The dog's mouth is closed.", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is closed."}, {"index": 924, "image_id": 2346086, "entity": "dog", "caption": "The dog is wearing a crocheted hat.", "question": ["is there the dog ?", "is there a crocheted hat ?"], "prompt": "The {} is wearing a crocheted hat."}, {"index": 925, "image_id": 2346086, "entity": "dog", "caption": "The dog has an ear.", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "The {} has an ear."}, {"index": 926, "image_id": 2346086, "entity": "dog", "caption": "The dog has an eye.", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "The {} has an eye."}, {"index": 927, "image_id": 2345642, "entity": "dog", "caption": "head of dog bowed down ", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} bowed down "}, {"index": 928, "image_id": 2345642, "entity": "dog", "caption": "green blanket the dog is laying on", "question": ["is there green blanket ?", "is there the dog ?"], "prompt": "green blanket the {} is laying on"}, {"index": 929, "image_id": 2345272, "entity": "dog", "caption": "the dogs tail ", "question": ["are there the dogs ?"], "prompt": "the {}s tail "}, {"index": 930, "image_id": 2345272, "entity": "dog", "caption": "a black dog looks onward with his tongue hanging out", "question": ["is there a black dog ?", "is there his tongue ?"], "prompt": "a black {} looks onward with his tongue hanging out"}, {"index": 931, "image_id": 2345272, "entity": "dog", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the boat holding a {} with a leash"}, {"index": 932, "image_id": 2345231, "entity": "dog", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the {}s paws on on the computer"}, {"index": 933, "image_id": 2345068, "entity": "dog", "caption": "Extra pillow for the dog to be comfortable", "question": ["is there extra pillow ?", "is there the dog ?"], "prompt": "Extra pillow for the {} to be comfortable"}, {"index": 934, "image_id": 2345068, "entity": "dog", "caption": "Teddy bear for the dog", "question": ["is there the dog ?"], "prompt": "Teddy bear for the {}"}, {"index": 935, "image_id": 2345068, "entity": "dog", "caption": "a dog curled up on its bed ", "question": ["is there a dog ?", "is there its bed ?"], "prompt": "a {} curled up on its bed "}, {"index": 936, "image_id": 2344922, "entity": "dog", "caption": "This dog has a very red collar", "question": ["is there this dog ?", "is there a very red collar ?"], "prompt": "This {} has a very red collar"}, {"index": 937, "image_id": 2344729, "entity": "dog", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the {} is in the car"}, {"index": 938, "image_id": 2344729, "entity": "dog", "caption": "this is the dogs leash", "question": ["are there the dogs ?"], "prompt": "this is the {}s leash"}, {"index": 939, "image_id": 2344635, "entity": "dog", "caption": "The dog is wearing a tag.", "question": ["is there the dog ?", "is there a tag ?"], "prompt": "The {} is wearing a tag."}, {"index": 940, "image_id": 2344635, "entity": "dog", "caption": "dog is wearing a tag", "question": ["is there dog ?", "is there a tag ?"], "prompt": "{} is wearing a tag"}, {"index": 941, "image_id": 2344635, "entity": "dog", "caption": "dogs eye looks white ", "question": ["are there dogs ?"], "prompt": "{}s eye looks white "}, {"index": 942, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is black.", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black."}, {"index": 943, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is small", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is small"}, {"index": 944, "image_id": 2344526, "entity": "dog", "caption": "The dogs fur is white.", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is white."}, {"index": 945, "image_id": 2344358, "entity": "dog", "caption": "this dog is under a white blanket", "question": ["is there this dog ?", "is there a white blanket ?"], "prompt": "this {} is under a white blanket"}, {"index": 946, "image_id": 2344283, "entity": "dog", "caption": "the dog is at the beach", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "the {} is at the beach"}, {"index": 947, "image_id": 2344283, "entity": "dog", "caption": "the dog is sitting on a towel", "question": ["is there the dog ?", "is there a towel ?"], "prompt": "the {} is sitting on a towel"}, {"index": 948, "image_id": 2344283, "entity": "dog", "caption": "a bag is by the dog", "question": ["is there a bag ?", "is there the dog ?"], "prompt": "a bag is by the {}"}, {"index": 949, "image_id": 2344283, "entity": "dog", "caption": "Brown dog is on a towel", "question": ["is there brown dog ?", "is there a towel ?"], "prompt": "Brown {} is on a towel"}, {"index": 950, "image_id": 2344228, "entity": "dog", "caption": "the dog has a brown part", "question": ["is there the dog ?", "is there a brown part ?"], "prompt": "the {} has a brown part"}, {"index": 951, "image_id": 2344228, "entity": "dog", "caption": "the dog has a black spot", "question": ["is there the dog ?", "is there a black spot ?"], "prompt": "the {} has a black spot"}, {"index": 952, "image_id": 2343539, "entity": "dog", "caption": "dog's tongue is hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is hanging out"}, {"index": 953, "image_id": 2343539, "entity": "dog", "caption": "dog's ears are back ", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are back "}, {"index": 954, "image_id": 2343194, "entity": "dog", "caption": "the dog has three balls", "question": ["is there the dog ?", "are there three balls ?"], "prompt": "the {} has three balls"}, {"index": 955, "image_id": 2343194, "entity": "dog", "caption": "the dog has balls in his mouth", "question": ["is there the dog ?", "are there balls ?", "is there his mouth ?"], "prompt": "the {} has balls in his mouth"}, {"index": 956, "image_id": 2343194, "entity": "dog", "caption": "the dog has a spotted nose", "question": ["is there the dog ?", "is there a spotted nose ?"], "prompt": "the {} has a spotted nose"}, {"index": 957, "image_id": 2343149, "entity": "dog", "caption": "The dog is splashing water", "question": ["is there the dog ?", "is there water ?"], "prompt": "The {} is splashing water"}, {"index": 958, "image_id": 2343149, "entity": "dog", "caption": "The dog's teeth are visible", "question": ["are there the dog's teeth ?"], "prompt": "The {}'s teeth are visible"}, {"index": 959, "image_id": 2343038, "entity": "dog", "caption": "dog with eyes closed", "question": ["is there dog ?", "are there eyes ?"], "prompt": "{} with eyes closed"}, {"index": 960, "image_id": 2342562, "entity": "dog", "caption": "dog mout to grab frisbees and eat food and drink water ", "question": ["is there dog mout ?", "are there frisbees ?", "is there food ?", "is there water ?"], "prompt": "{} mout to grab frisbees and eat food and drink water "}, {"index": 961, "image_id": 2342562, "entity": "dog", "caption": "The dog has a black ear.", "question": ["is there the dog ?", "is there a black ear ?"], "prompt": "The {} has a black ear."}, {"index": 962, "image_id": 2341045, "entity": "dog", "caption": "this dog and teddy bear are posing", "question": ["is there this dog ?", "is there bear ?"], "prompt": "this {} and teddy bear are posing"}, {"index": 963, "image_id": 2341045, "entity": "dog", "caption": "The dog is resting on white shaggy carpet.", "question": ["is there the dog ?", "is there white shaggy carpet ?"], "prompt": "The {} is resting on white shaggy carpet."}, {"index": 964, "image_id": 2340940, "entity": "dog", "caption": "The banana is inside the dog's mouth.", "question": ["is there the banana ?", "is there the dog's mouth ?"], "prompt": "The banana is inside the {}'s mouth."}, {"index": 965, "image_id": 2340940, "entity": "dog", "caption": "The little dog is sitting on top of the white blanket.", "question": ["is there the little dog ?", "is there top ?", "is there the white blanket ?"], "prompt": "The little {} is sitting on top of the white blanket."}, {"index": 966, "image_id": 2340940, "entity": "dog", "caption": "The dog has a pink collar.", "question": ["is there the dog ?", "is there a pink collar ?"], "prompt": "The {} has a pink collar."}, {"index": 967, "image_id": 2340940, "entity": "dog", "caption": "The dog is wearing a white collar.", "question": ["is there the dog ?", "is there a white collar ?"], "prompt": "The {} is wearing a white collar."}, {"index": 968, "image_id": 2340686, "entity": "dog", "caption": "The dog face is partially white.", "question": ["is there the dog face ?"], "prompt": "The {} face is partially white."}, {"index": 969, "image_id": 2339641, "entity": "dog", "caption": "dog has white spot on chest", "question": ["is there dog ?", "is there white spot ?", "is there chest ?"], "prompt": "{} has white spot on chest"}, {"index": 970, "image_id": 2339641, "entity": "dog", "caption": "dog is on a motorcycle", "question": ["is there dog ?", "is there a motorcycle ?"], "prompt": "{} is on a motorcycle"}, {"index": 971, "image_id": 2339617, "entity": "dog", "caption": "The dog sits on a chair. ", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} sits on a chair. "}, {"index": 972, "image_id": 2339617, "entity": "dog", "caption": "A blanket that the dog sits on.", "question": ["is there a blanket ?", "is there the dog ?"], "prompt": "A blanket that the {} sits on."}, {"index": 973, "image_id": 2339617, "entity": "dog", "caption": "dog has black back", "question": ["is there dog ?"], "prompt": "{} has black back"}, {"index": 974, "image_id": 2339511, "entity": "dog", "caption": "The cat is next to the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is next to the {}."}, {"index": 975, "image_id": 2339511, "entity": "dog", "caption": "The paw on the dog is white.", "question": ["is there the paw ?", "is there the dog ?"], "prompt": "The paw on the {} is white."}, {"index": 976, "image_id": 2339511, "entity": "dog", "caption": "brown striped cat lays next to dog", "question": ["is there brown striped cat ?", "is there dog ?"], "prompt": "brown striped cat lays next to {}"}, {"index": 977, "image_id": 2339511, "entity": "dog", "caption": "white front left paw on dog", "question": ["is there white front ?", "is there paw ?", "is there dog ?"], "prompt": "white front left paw on {}"}, {"index": 978, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around nose", "question": ["is there dog ?", "is there white fur ?", "is there nose ?"], "prompt": "{} has white fur around nose"}, {"index": 979, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around paws", "question": ["is there dog ?", "is there white fur ?", "are there paws ?"], "prompt": "{} has white fur around paws"}, {"index": 980, "image_id": 2339238, "entity": "dog", "caption": "dog has black ear", "question": ["is there dog ?", "is there black ear ?"], "prompt": "{} has black ear"}, {"index": 981, "image_id": 2339238, "entity": "dog", "caption": "dog has black eye", "question": ["is there dog ?", "is there black eye ?"], "prompt": "{} has black eye"}, {"index": 982, "image_id": 2339238, "entity": "dog", "caption": "dog has a white tooth", "question": ["is there dog ?", "is there a white tooth ?"], "prompt": "{} has a white tooth"}, {"index": 983, "image_id": 2337950, "entity": "dog", "caption": "couch man and dog are sitting on", "question": ["is there couch man ?", "is there dog ?"], "prompt": "couch man and {} are sitting on"}, {"index": 984, "image_id": 2337205, "entity": "dog", "caption": "the dog's eye is open ", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open "}, {"index": 985, "image_id": 2336811, "entity": "dog", "caption": "Front left paw of the dog", "question": ["is there front left paw ?", "is there the dog ?"], "prompt": "Front left paw of the {}"}, {"index": 986, "image_id": 2336773, "entity": "dog", "caption": "Small dogs right eye", "question": ["are there small dogs ?"], "prompt": "Small {}s right eye"}, {"index": 987, "image_id": 2336773, "entity": "dog", "caption": "Small dogs left eye", "question": ["are there small dogs ?", "is there eye ?"], "prompt": "Small {}s left eye"}, {"index": 988, "image_id": 2336693, "entity": "dog", "caption": "the dog is carrying a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is carrying a frisbee"}, {"index": 989, "image_id": 2336693, "entity": "dog", "caption": "the dog's front legs are white", "question": ["are there the dog's front legs ?"], "prompt": "the {}'s front legs are white"}, {"index": 990, "image_id": 2336693, "entity": "dog", "caption": "the dog's back legs are black", "question": ["are there the dog's back legs ?"], "prompt": "the {}'s back legs are black"}, {"index": 991, "image_id": 2336693, "entity": "dog", "caption": "the dog's shadow is in the grass", "question": ["is there the dog's shadow ?", "is there the grass ?"], "prompt": "the {}'s shadow is in the grass"}, {"index": 992, "image_id": 2336402, "entity": "dog", "caption": "dog with it's head in a box", "question": ["is there dog ?", "is there head ?", "is there a box ?"], "prompt": "{} with it's head in a box"}, {"index": 993, "image_id": 2336402, "entity": "dog", "caption": "A black streak down dogs back", "question": ["is there a black streak ?"], "prompt": "A black streak down {}s back"}, {"index": 994, "image_id": 2336402, "entity": "dog", "caption": "the dogs head is in the box", "question": ["are there the dogs ?", "is there the box ?"], "prompt": "the {}s head is in the box"}, {"index": 995, "image_id": 2336257, "entity": "dog", "caption": "the dog is in water", "question": ["is there the dog ?", "is there water ?"], "prompt": "the {} is in water"}, {"index": 996, "image_id": 2336147, "entity": "dog", "caption": "Black and white dog standing on a sandy ground.", "question": ["is there black and white dog ?", "is there a sandy ground ?"], "prompt": "Black and white {} standing on a sandy ground."}, {"index": 997, "image_id": 2336147, "entity": "dog", "caption": "The dog's pink tongue sticking out.", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue sticking out."}, {"index": 998, "image_id": 2336147, "entity": "dog", "caption": "dog's face is black and white", "question": ["is there dog's face ?"], "prompt": "{}'s face is black and white"}, {"index": 999, "image_id": 2336147, "entity": "dog", "caption": "dog's tongue is sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is sticking out"}, {"index": 1000, "image_id": 2336147, "entity": "dog", "caption": "dog's paw is white", "question": ["is there dog's paw ?"], "prompt": "{}'s paw is white"}, {"index": 1001, "image_id": 2336045, "entity": "dog", "caption": "fake dog sits on bench", "question": ["is there fake dog ?", "is there bench ?"], "prompt": "fake {} sits on bench"}, {"index": 1002, "image_id": 2336045, "entity": "dog", "caption": "fake dog wears red collar", "question": ["is there fake dog ?", "is there red collar ?"], "prompt": "fake {} wears red collar"}, {"index": 1003, "image_id": 2335892, "entity": "dog", "caption": "Toy occupies leashed dog.", "question": ["is there toy ?", "is there leashed dog ?"], "prompt": "Toy occupies leashed {}."}, {"index": 1004, "image_id": 2335707, "entity": "dog", "caption": "dog has dark claws", "question": ["is there dog ?", "are there dark claws ?"], "prompt": "{} has dark claws"}, {"index": 1005, "image_id": 2335655, "entity": "dog", "caption": "Tan dog is holding toy in mouth.", "question": ["is there tan dog ?", "is there toy ?", "is there mouth ?"], "prompt": "Tan {} is holding toy in mouth."}, {"index": 1006, "image_id": 2335655, "entity": "dog", "caption": "This dog seems to have a white face", "question": ["is there this dog ?", "is there a white face ?"], "prompt": "This {} seems to have a white face"}, {"index": 1007, "image_id": 2335655, "entity": "dog", "caption": "This dog has quite a paw visible here", "question": ["is there this dog ?", "is there quite a paw ?"], "prompt": "This {} has quite a paw visible here"}, {"index": 1008, "image_id": 2335550, "entity": "dog", "caption": "dog is laying on the couch", "question": ["is there dog ?", "is there the couch ?"], "prompt": "{} is laying on the couch"}, {"index": 1009, "image_id": 2335550, "entity": "dog", "caption": "dog has fluffy dark fur", "question": ["is there dog ?", "is there fluffy dark fur ?"], "prompt": "{} has fluffy dark fur"}, {"index": 1010, "image_id": 2335487, "entity": "dog", "caption": "an ear is up on the dog", "question": ["is there an ear ?", "is there the dog ?"], "prompt": "an ear is up on the {}"}, {"index": 1011, "image_id": 2335487, "entity": "dog", "caption": "the dog is wearing a yellow coat", "question": ["is there the dog ?", "is there a yellow coat ?"], "prompt": "the {} is wearing a yellow coat"}, {"index": 1012, "image_id": 2335487, "entity": "dog", "caption": "dog's cloth is green", "question": ["is there dog's cloth ?"], "prompt": "{}'s cloth is green"}, {"index": 1013, "image_id": 2334964, "entity": "dog", "caption": "Chain connected to dog's collar.", "question": ["is there chain ?", "is there dog's collar ?"], "prompt": "Chain connected to {}'s collar."}, {"index": 1014, "image_id": 2334964, "entity": "dog", "caption": "the dog has a collar ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar "}, {"index": 1015, "image_id": 2334964, "entity": "dog", "caption": "the collar is around the dog's neck", "question": ["is there the collar ?", "is there the dog's neck ?"], "prompt": "the collar is around the {}'s neck"}, {"index": 1016, "image_id": 2334936, "entity": "dog", "caption": "dog has an eye", "question": ["is there dog ?", "is there an eye ?"], "prompt": "{} has an eye"}, {"index": 1017, "image_id": 2334611, "entity": "dog", "caption": "front left foot on dog", "question": ["is there front left foot ?", "is there dog ?"], "prompt": "front left foot on {}"}, {"index": 1018, "image_id": 2334526, "entity": "dog", "caption": "The dog nose is black.", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black."}, {"index": 1019, "image_id": 2334526, "entity": "dog", "caption": "The dog eyes on his face.", "question": ["is there the dog ?", "is there his face ?"], "prompt": "The {} eyes on his face."}, {"index": 1020, "image_id": 2334482, "entity": "dog", "caption": "This is a dog", "question": ["is there a dog ?"], "prompt": "This is a {}"}, {"index": 1021, "image_id": 2334482, "entity": "dog", "caption": "The dog is on a bench", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is on a bench"}, {"index": 1022, "image_id": 2334375, "entity": "dog", "caption": "dog nose is black", "question": ["is there dog nose ?"], "prompt": "{} nose is black"}, {"index": 1023, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is black.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is black."}, {"index": 1024, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is round.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is round."}, {"index": 1025, "image_id": 2334355, "entity": "dog", "caption": "The dogs left ear is black.", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "The {}s left ear is black."}, {"index": 1026, "image_id": 2334355, "entity": "dog", "caption": "The dogs right eye is black.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is black."}, {"index": 1027, "image_id": 2333902, "entity": "dog", "caption": "The dog is laying on the back of the couch", "question": ["is there the dog ?", "is there the back ?", "is there the couch ?"], "prompt": "The {} is laying on the back of the couch"}, {"index": 1028, "image_id": 2333902, "entity": "dog", "caption": "The dogs tongue is sticking out of his mouth", "question": ["are there the dogs tongue ?", "is there his mouth ?"], "prompt": "The {}s tongue is sticking out of his mouth"}, {"index": 1029, "image_id": 2333902, "entity": "dog", "caption": "dog has a nose", "question": ["is there dog ?", "is there a nose ?"], "prompt": "{} has a nose"}, {"index": 1030, "image_id": 2333902, "entity": "dog", "caption": "dog has an ear", "question": ["is there dog ?", "is there an ear ?"], "prompt": "{} has an ear"}, {"index": 1031, "image_id": 2333902, "entity": "dog", "caption": "dog has a tounge", "question": ["is there dog ?", "is there a tounge ?"], "prompt": "{} has a tounge"}, {"index": 1032, "image_id": 2333902, "entity": "dog", "caption": "dog has an arm", "question": ["is there dog ?", "is there an arm ?"], "prompt": "{} has an arm"}, {"index": 1033, "image_id": 2333590, "entity": "dog", "caption": "the dog is smelling her hand", "question": ["is there the dog ?", "is there her hand ?"], "prompt": "the {} is smelling her hand"}, {"index": 1034, "image_id": 2333443, "entity": "dog", "caption": "wet dog taking a bath in a tub", "question": ["is there wet dog ?", "is there a bath ?", "is there a tub ?"], "prompt": "wet {} taking a bath in a tub"}, {"index": 1035, "image_id": 2333438, "entity": "dog", "caption": "The dog has a brown eye.", "question": ["is there the dog ?", "is there a brown eye ?"], "prompt": "The {} has a brown eye."}, {"index": 1036, "image_id": 2333438, "entity": "dog", "caption": "The dogs eye is open.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is open."}, {"index": 1037, "image_id": 2333438, "entity": "dog", "caption": "The dog has teeth.", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "The {} has teeth."}, {"index": 1038, "image_id": 2333438, "entity": "dog", "caption": "The dog has a tongue.", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "The {} has a tongue."}, {"index": 1039, "image_id": 2333438, "entity": "dog", "caption": "The dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "The {} has a red collar"}, {"index": 1040, "image_id": 2333438, "entity": "dog", "caption": "dog with its ears bag", "question": ["is there dog ?", "are there its ears ?"], "prompt": "{} with its ears bag"}, {"index": 1041, "image_id": 2333438, "entity": "dog", "caption": "dog mouth open", "question": [], "prompt": "{} mouth open"}, {"index": 1042, "image_id": 2333438, "entity": "dog", "caption": "dog has black and white paws", "question": ["is there dog ?", "are there black and white paws ?"], "prompt": "{} has black and white paws"}, {"index": 1043, "image_id": 2333438, "entity": "dog", "caption": "dog's mouth is open with tounge out", "question": ["is there dog's mouth ?", "is there tounge ?"], "prompt": "{}'s mouth is open with tounge out"}, {"index": 1044, "image_id": 2333301, "entity": "dog", "caption": "the dog has its mouth open.", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open."}, {"index": 1045, "image_id": 2333301, "entity": "dog", "caption": "the dog's ear is standing straight up.", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is standing straight up."}, {"index": 1046, "image_id": 2333301, "entity": "dog", "caption": "the dog's left back leg.", "question": ["is there the dog ?", "is there leg ?"], "prompt": "the {}'s left back leg."}, {"index": 1047, "image_id": 2333301, "entity": "dog", "caption": "dog mouth wide open ", "question": [], "prompt": "{} mouth wide open "}, {"index": 1048, "image_id": 2333301, "entity": "dog", "caption": "dog's tongue is pink.", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink."}, {"index": 1049, "image_id": 2332835, "entity": "dog", "caption": "The dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is pink."}, {"index": 1050, "image_id": 2332835, "entity": "dog", "caption": "The dogs right eye is round.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is round."}, {"index": 1051, "image_id": 2332607, "entity": "dog", "caption": "dog's eyes looking at camera", "question": ["are there dog's eyes ?", "is there camera ?"], "prompt": "{}'s eyes looking at camera"}, {"index": 1052, "image_id": 2332583, "entity": "dog", "caption": "dog has brown tail", "question": ["is there dog ?", "is there brown tail ?"], "prompt": "{} has brown tail"}, {"index": 1053, "image_id": 2332583, "entity": "dog", "caption": "dog has brown back", "question": ["is there dog ?"], "prompt": "{} has brown back"}, {"index": 1054, "image_id": 2332513, "entity": "dog", "caption": "two dogs are lying ", "question": ["are there two dogs ?"], "prompt": "two {}s are lying "}, {"index": 1055, "image_id": 2332513, "entity": "dog", "caption": "this dog's head is up ", "question": ["is there this dog's head ?"], "prompt": "this {}'s head is up "}, {"index": 1056, "image_id": 2332418, "entity": "dog", "caption": "dog has white ears", "question": ["is there dog ?", "are there white ears ?"], "prompt": "{} has white ears"}, {"index": 1057, "image_id": 2331647, "entity": "dog", "caption": "The hat the dog is wearing.", "question": ["is there the hat ?", "is there the dog ?"], "prompt": "The hat the {} is wearing."}, {"index": 1058, "image_id": 2331519, "entity": "dog", "caption": "The dog tongue is pink.", "question": ["is there the dog tongue ?"], "prompt": "The {} tongue is pink."}, {"index": 1059, "image_id": 2331519, "entity": "dog", "caption": "The dog is licking his tongue out.", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "The {} is licking his tongue out."}, {"index": 1060, "image_id": 2331519, "entity": "dog", "caption": "The frisbee is near the dog leg.", "question": ["is there the dog leg ?"], "prompt": "The frisbee is near the {} leg."}, {"index": 1061, "image_id": 2331519, "entity": "dog", "caption": "The dog is playing with the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee"}, {"index": 1062, "image_id": 2331519, "entity": "dog", "caption": "The Frisbee is in front of the dog. ", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The Frisbee is in front of the {}. "}, {"index": 1063, "image_id": 2331395, "entity": "dog", "caption": "The front left paw of the dog.", "question": ["is there the front left paw ?", "is there the dog ?"], "prompt": "The front left paw of the {}."}, {"index": 1064, "image_id": 2330828, "entity": "dog", "caption": "dog has long nose", "question": ["is there dog ?", "is there long nose ?"], "prompt": "{} has long nose"}, {"index": 1065, "image_id": 2330828, "entity": "dog", "caption": "dog has nice coat", "question": ["is there dog ?", "is there nice coat ?"], "prompt": "{} has nice coat"}, {"index": 1066, "image_id": 2330828, "entity": "dog", "caption": "dog has big ear", "question": ["is there dog ?", "is there big ear ?"], "prompt": "{} has big ear"}, {"index": 1067, "image_id": 2329335, "entity": "dog", "caption": "dog has brown paws", "question": ["is there dog ?", "are there brown paws ?"], "prompt": "{} has brown paws"}, {"index": 1068, "image_id": 2329309, "entity": "dog", "caption": "brown white and black dog catching yellow Frisbee", "question": ["is there brown white and black dog ?", "is there yellow frisbee ?"], "prompt": "brown white and black {} catching yellow Frisbee"}, {"index": 1069, "image_id": 2329309, "entity": "dog", "caption": "Frisbee caught by black and brown dog", "question": ["is there black and brown dog ?"], "prompt": "Frisbee caught by black and brown {}"}, {"index": 1070, "image_id": 2329275, "entity": "dog", "caption": "the dog is lying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is lying on the couch"}, {"index": 1071, "image_id": 2329129, "entity": "dog", "caption": "the dog is eating a cake", "question": ["is there the dog ?", "is there a cake ?"], "prompt": "the {} is eating a cake"}, {"index": 1072, "image_id": 2328916, "entity": "dog", "caption": "The dog is sniffing the donut", "question": ["is there the dog ?", "is there the donut ?"], "prompt": "The {} is sniffing the donut"}, {"index": 1073, "image_id": 2328916, "entity": "dog", "caption": "bulldog sniffing a doughnut ", "question": ["is there a doughnut ?"], "prompt": "bull{} sniffing a doughnut "}, {"index": 1074, "image_id": 2328869, "entity": "dog", "caption": "black hat dog is wearing", "question": ["is there black hat dog ?"], "prompt": "black hat {} is wearing"}, {"index": 1075, "image_id": 2328633, "entity": "dog", "caption": "a dog with black spots on it's ear", "question": ["is there a dog ?", "are there black spots ?", "is there ear ?"], "prompt": "a {} with black spots on it's ear"}, {"index": 1076, "image_id": 2327968, "entity": "dog", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car "}, {"index": 1077, "image_id": 2327968, "entity": "dog", "caption": "the dog is sticking its head out ", "question": ["is there the dog ?", "is there its head ?"], "prompt": "the {} is sticking its head out "}, {"index": 1078, "image_id": 2327968, "entity": "dog", "caption": "the dog has its head out the window ", "question": ["is there the dog ?", "is there its head ?", "is there the window ?"], "prompt": "the {} has its head out the window "}, {"index": 1079, "image_id": 2327286, "entity": "dog", "caption": "the dogs eyes are closed", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are closed"}, {"index": 1080, "image_id": 2326860, "entity": "dog", "caption": "The dog has a frisbee inside his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee inside his mouth."}, {"index": 1081, "image_id": 2326801, "entity": "dog", "caption": "A blue duffel bag a dog is on.", "question": ["is there a blue duffel bag ?", "is there a dog ?"], "prompt": "A blue duffel bag a {} is on."}, {"index": 1082, "image_id": 2325767, "entity": "dog", "caption": "A person is holding the dog", "question": ["is there a person ?", "is there the dog ?"], "prompt": "A person is holding the {}"}, {"index": 1083, "image_id": 2325561, "entity": "dog", "caption": "The dog's mouth is open", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open"}, {"index": 1084, "image_id": 2325561, "entity": "dog", "caption": "The dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black"}, {"index": 1085, "image_id": 2325561, "entity": "dog", "caption": "The dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 1086, "image_id": 2325561, "entity": "dog", "caption": "dog has a black nose ", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose "}, {"index": 1087, "image_id": 2325561, "entity": "dog", "caption": "the dog has brown eye", "question": ["is there the dog ?", "is there brown eye ?"], "prompt": "the {} has brown eye"}, {"index": 1088, "image_id": 2325561, "entity": "dog", "caption": "the dogs left eye ", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye "}, {"index": 1089, "image_id": 2325561, "entity": "dog", "caption": "the dogs left ear ", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "the {}s left ear "}, {"index": 1090, "image_id": 2325561, "entity": "dog", "caption": "dog has orange eyes", "question": ["is there dog ?", "are there orange eyes ?"], "prompt": "{} has orange eyes"}, {"index": 1091, "image_id": 2325561, "entity": "dog", "caption": "brown dog has golden eyes", "question": ["is there brown dog ?", "are there golden eyes ?"], "prompt": "brown {} has golden eyes"}, {"index": 1092, "image_id": 2325561, "entity": "dog", "caption": "black dog has brown eyes", "question": ["is there black dog ?", "are there brown eyes ?"], "prompt": "black {} has brown eyes"}, {"index": 1093, "image_id": 2325561, "entity": "dog", "caption": "black dog has a black nose", "question": ["is there black dog ?", "is there a black nose ?"], "prompt": "black {} has a black nose"}, {"index": 1094, "image_id": 2325561, "entity": "dog", "caption": "black dog has some white hair in its ruff", "question": ["is there black dog ?", "is there some white hair ?", "is there its ruff ?"], "prompt": "black {} has some white hair in its ruff"}, {"index": 1095, "image_id": 2325500, "entity": "dog", "caption": "eyes of dog open wide", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} open wide"}, {"index": 1096, "image_id": 2325500, "entity": "dog", "caption": "the dog has a safety vest", "question": ["is there the dog ?", "is there a safety vest ?"], "prompt": "the {} has a safety vest"}, {"index": 1097, "image_id": 2325442, "entity": "dog", "caption": "dog's ears are pink", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are pink"}, {"index": 1098, "image_id": 2325387, "entity": "dog", "caption": "Woman laying on the floor next to dog.", "question": ["is there woman ?", "is there the floor ?", "is there dog ?"], "prompt": "Woman laying on the floor next to {}."}, {"index": 1099, "image_id": 2324981, "entity": "dog", "caption": "The dog has black patch over eye.", "question": ["is there the dog ?", "is there black patch ?", "is there eye ?"], "prompt": "The {} has black patch over eye."}, {"index": 1100, "image_id": 2324981, "entity": "dog", "caption": "The dog is carrying a blue frisbee.", "question": ["is there the dog ?", "is there a blue frisbee ?"], "prompt": "The {} is carrying a blue frisbee."}, {"index": 1101, "image_id": 2324981, "entity": "dog", "caption": "The dog has a nose.", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "The {} has a nose."}, {"index": 1102, "image_id": 2323880, "entity": "dog", "caption": "dog is in picture", "question": ["is there dog ?", "is there picture ?"], "prompt": "{} is in picture"}, {"index": 1103, "image_id": 2323470, "entity": "dog", "caption": "the dog is laying in a green towel", "question": ["is there the dog ?", "is there a green towel ?"], "prompt": "the {} is laying in a green towel"}, {"index": 1104, "image_id": 2322848, "entity": "dog", "caption": "the cat and the dog are good friends", "question": ["is there the cat ?", "is there the dog ?", "are there good friends ?"], "prompt": "the cat and the {} are good friends"}, {"index": 1105, "image_id": 2322848, "entity": "dog", "caption": "this cat and this dog are obviously best friends", "question": ["is there this cat ?", "is there this dog ?", "are there best friends ?"], "prompt": "this cat and this {} are obviously best friends"}, {"index": 1106, "image_id": 2322792, "entity": "dog", "caption": "extended wet dog ear ", "question": ["is there extended wet dog ear ?"], "prompt": "extended wet {} ear "}, {"index": 1107, "image_id": 2322792, "entity": "dog", "caption": "dog ear flipping up", "question": ["is there dog ear ?"], "prompt": "{} ear flipping up"}, {"index": 1108, "image_id": 2322492, "entity": "dog", "caption": "Pile of clothes a small dog is lying on", "question": ["is there pile ?", "are there clothes ?", "is there a small dog ?"], "prompt": "Pile of clothes a small {} is lying on"}, {"index": 1109, "image_id": 2322220, "entity": "dog", "caption": "a dog is lying in the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "a {} is lying in the bed"}, {"index": 1110, "image_id": 2322220, "entity": "dog", "caption": "the dog is under the sheet", "question": ["is there the dog ?", "is there the sheet ?"], "prompt": "the {} is under the sheet"}, {"index": 1111, "image_id": 2322220, "entity": "dog", "caption": "the dogs ears are brown", "question": ["are there the dogs ears ?"], "prompt": "the {}s ears are brown"}, {"index": 1112, "image_id": 2322220, "entity": "dog", "caption": "the dogs front legs are white", "question": ["are there the dogs ?", "are there front legs ?"], "prompt": "the {}s front legs are white"}, {"index": 1113, "image_id": 2322086, "entity": "dog", "caption": "the dog has white spots", "question": ["is there the dog ?", "are there white spots ?"], "prompt": "the {} has white spots"}, {"index": 1114, "image_id": 2321901, "entity": "dog", "caption": "the dog is laying on a pillow ", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "the {} is laying on a pillow "}, {"index": 1115, "image_id": 2321544, "entity": "dog", "caption": "A silver chain is around the dog's neck.", "question": ["is there a silver chain ?", "is there the dog's neck ?"], "prompt": "A silver chain is around the {}'s neck."}, {"index": 1116, "image_id": 2321544, "entity": "dog", "caption": "The dog's left ear is black and brown. ", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear is black and brown. "}, {"index": 1117, "image_id": 2321544, "entity": "dog", "caption": "The dog's right ear is black and brown. ", "question": ["is there the dog's right ear ?"], "prompt": "The {}'s right ear is black and brown. "}, {"index": 1118, "image_id": 2321386, "entity": "dog", "caption": "the dog has a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} has a chain"}, {"index": 1119, "image_id": 2320693, "entity": "dog", "caption": "the dog has a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} has a frisbee"}, {"index": 1120, "image_id": 2320693, "entity": "dog", "caption": "the dog has the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "the {} has the frisbee"}, {"index": 1121, "image_id": 2320693, "entity": "dog", "caption": "teh dog has brown eyes", "question": ["are there brown eyes ?"], "prompt": "teh {} has brown eyes"}, {"index": 1122, "image_id": 2320693, "entity": "dog", "caption": "dog has frisbee in his mouth", "question": ["is there dog ?", "is there frisbee ?", "is there his mouth ?"], "prompt": "{} has frisbee in his mouth"}, {"index": 1123, "image_id": 2320693, "entity": "dog", "caption": "dog in mouth is pink", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} in mouth is pink"}, {"index": 1124, "image_id": 2319884, "entity": "dog", "caption": "dog is eating a vitamin water", "question": ["is there dog ?", "is there a vitamin water ?"], "prompt": "{} is eating a vitamin water"}, {"index": 1125, "image_id": 2319723, "entity": "dog", "caption": "the dog is kissing the cat", "question": ["is there the dog ?", "is there the cat ?"], "prompt": "the {} is kissing the cat"}, {"index": 1126, "image_id": 2319347, "entity": "dog", "caption": "The dog is wearing a shirt", "question": ["is there the dog ?", "is there a shirt ?"], "prompt": "The {} is wearing a shirt"}, {"index": 1127, "image_id": 2319347, "entity": "dog", "caption": "The dog has on a nice shirt", "question": ["is there the dog ?", "is there a nice shirt ?"], "prompt": "The {} has on a nice shirt"}, {"index": 1128, "image_id": 2319347, "entity": "dog", "caption": "The dog has very long hair", "question": ["is there the dog ?", "is there very long hair ?"], "prompt": "The {} has very long hair"}, {"index": 1129, "image_id": 2319347, "entity": "dog", "caption": "The dog is having a great time", "question": ["is there the dog ?", "is there a great time ?"], "prompt": "The {} is having a great time"}, {"index": 1130, "image_id": 2319347, "entity": "dog", "caption": "The dog is out in the daytime", "question": ["is there the dog ?", "is there the daytime ?"], "prompt": "The {} is out in the daytime"}, {"index": 1131, "image_id": 2319347, "entity": "dog", "caption": "The dog is enjoying the day", "question": ["is there the dog ?", "is there the day ?"], "prompt": "The {} is enjoying the day"}, {"index": 1132, "image_id": 2318934, "entity": "dog", "caption": "A dog is wearing a shirt", "question": ["is there a dog ?", "is there a shirt ?"], "prompt": "A {} is wearing a shirt"}, {"index": 1133, "image_id": 2318934, "entity": "dog", "caption": "A dog has on a visor", "question": ["is there a dog ?", "is there a visor ?"], "prompt": "A {} has on a visor"}, {"index": 1134, "image_id": 2318934, "entity": "dog", "caption": "A dog has white curly hair", "question": ["is there a dog ?", "is there white curly hair ?"], "prompt": "A {} has white curly hair"}, {"index": 1135, "image_id": 2318934, "entity": "dog", "caption": "A dog is sticking its tongue out", "question": ["is there a dog ?", "is there its tongue ?"], "prompt": "A {} is sticking its tongue out"}, {"index": 1136, "image_id": 2318934, "entity": "dog", "caption": "A dog is with its master", "question": ["is there a dog ?", "is there its master ?"], "prompt": "A {} is with its master"}, {"index": 1137, "image_id": 2318892, "entity": "dog", "caption": "The dog has black fur", "question": ["is there the dog ?", "is there black fur ?"], "prompt": "The {} has black fur"}, {"index": 1138, "image_id": 2318849, "entity": "dog", "caption": "brown dog curled up with head on blanket", "question": ["is there brown dog ?", "is there head ?", "is there blanket ?"], "prompt": "brown {} curled up with head on blanket"}, {"index": 1139, "image_id": 2318849, "entity": "dog", "caption": "brown dog cuddled with toy with paw on bunny", "question": ["is there brown dog ?", "is there toy ?", "is there paw ?", "is there bunny ?"], "prompt": "brown {} cuddled with toy with paw on bunny"}, {"index": 1140, "image_id": 2318849, "entity": "dog", "caption": "a dog is in bed", "question": ["is there a dog ?", "is there bed ?"], "prompt": "a {} is in bed"}, {"index": 1141, "image_id": 2318849, "entity": "dog", "caption": "the dog is holding a doll", "question": ["is there the dog ?", "is there a doll ?"], "prompt": "the {} is holding a doll"}, {"index": 1142, "image_id": 2318849, "entity": "dog", "caption": "another doll lies close to the dog", "question": ["is there another doll ?", "is there the dog ?"], "prompt": "another doll lies close to the {}"}, {"index": 1143, "image_id": 2318849, "entity": "dog", "caption": "dog eyes are open", "question": ["are there dog eyes ?"], "prompt": "{} eyes are open"}, {"index": 1144, "image_id": 2318849, "entity": "dog", "caption": "the dog's paw is on the toy", "question": ["is there the dog's paw ?", "is there the toy ?"], "prompt": "the {}'s paw is on the toy"}, {"index": 1145, "image_id": 2318849, "entity": "dog", "caption": "dog holding white stuffed bunny", "question": ["is there white stuffed bunny ?"], "prompt": "{} holding white stuffed bunny"}, {"index": 1146, "image_id": 2318152, "entity": "dog", "caption": "Mulch dog is standing on", "question": ["is there mulch dog ?"], "prompt": "Mulch {} is standing on"}, {"index": 1147, "image_id": 2318115, "entity": "dog", "caption": "Brown leash on a dog", "question": ["is there brown leash ?", "is there a dog ?"], "prompt": "Brown leash on a {}"}, {"index": 1148, "image_id": 2318115, "entity": "dog", "caption": "A person on a skateboard walking their dog", "question": ["is there a person ?", "is there a skateboard ?", "is there their dog ?"], "prompt": "A person on a skateboard walking their {}"}, {"index": 1149, "image_id": 2318115, "entity": "dog", "caption": "person walking the dog", "question": ["is there person ?", "is there the dog ?"], "prompt": "person walking the {}"}, {"index": 1150, "image_id": 2317836, "entity": "dog", "caption": "the dog is in costume", "question": ["is there the dog ?", "is there costume ?"], "prompt": "the {} is in costume"}, {"index": 1151, "image_id": 2317283, "entity": "dog", "caption": "dog paws are tan", "question": ["are there dog paws ?", "is there tan ?"], "prompt": "{} paws are tan"}, {"index": 1152, "image_id": 2317283, "entity": "dog", "caption": "dog has mouth open", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} has mouth open"}, {"index": 1153, "image_id": 2317283, "entity": "dog", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} is in a car."}, {"index": 1154, "image_id": 2317283, "entity": "dog", "caption": "The dog's eyes are open.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open."}, {"index": 1155, "image_id": 2317002, "entity": "dog", "caption": "black whiskers are on the dog", "question": ["are there black whiskers ?", "is there the dog ?"], "prompt": "black whiskers are on the {}"}, {"index": 1156, "image_id": 2317002, "entity": "dog", "caption": "brown nails are on the dog", "question": ["are there brown nails ?", "is there the dog ?"], "prompt": "brown nails are on the {}"}, {"index": 1157, "image_id": 2316886, "entity": "dog", "caption": "the dog appears to be enjoying his snack", "question": ["is there the dog ?", "is there his snack ?"], "prompt": "the {} appears to be enjoying his snack"}, {"index": 1158, "image_id": 2316480, "entity": "dog", "caption": "nose of dog is black ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black "}, {"index": 1159, "image_id": 2316480, "entity": "dog", "caption": "dog sits on couch", "question": ["is there dog ?", "is there couch ?"], "prompt": "{} sits on couch"}, {"index": 1160, "image_id": 2316480, "entity": "dog", "caption": "dog has pink dress", "question": ["is there dog ?", "is there pink dress ?"], "prompt": "{} has pink dress"}, {"index": 1161, "image_id": 2316349, "entity": "dog", "caption": "dog ear on right", "question": ["is there dog ear ?"], "prompt": "{} ear on right"}, {"index": 1162, "image_id": 2316242, "entity": "dog", "caption": "a dog rests on a person", "question": ["is there a dog ?", "is there a person ?"], "prompt": "a {} rests on a person"}, {"index": 1163, "image_id": 2316242, "entity": "dog", "caption": "The dog is wearing a hat.", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} is wearing a hat."}, {"index": 1164, "image_id": 2316242, "entity": "dog", "caption": "The hat is on the dog's head.", "question": ["is there the hat ?", "is there the dog's head ?"], "prompt": "The hat is on the {}'s head."}, {"index": 1165, "image_id": 2316242, "entity": "dog", "caption": "The dog has whiskers.", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "The {} has whiskers."}, {"index": 1166, "image_id": 2316170, "entity": "dog", "caption": "small dog with eyes closed", "question": ["is there small dog ?", "are there eyes ?"], "prompt": "small {} with eyes closed"}, {"index": 1167, "image_id": 2315589, "entity": "dog", "caption": "The dogs nose is black in color. ", "question": ["are there the dogs nose ?", "is there color ?"], "prompt": "The {}s nose is black in color. "}, {"index": 1168, "image_id": 2315589, "entity": "dog", "caption": "The dog has a black nose. ", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose. "}, {"index": 1169, "image_id": 2315589, "entity": "dog", "caption": "The dogs eye is brown.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is brown."}, {"index": 1170, "image_id": 2315589, "entity": "dog", "caption": "The dogs ear is black. ", "question": ["are there the dogs ?"], "prompt": "The {}s ear is black. "}, {"index": 1171, "image_id": 2315468, "entity": "dog", "caption": "dog has a leg", "question": ["is there dog ?", "is there a leg ?"], "prompt": "{} has a leg"}, {"index": 1172, "image_id": 2315468, "entity": "dog", "caption": "the dog carries a green frisbee", "question": ["is there the dog ?", "is there a green frisbee ?"], "prompt": "the {} carries a green frisbee"}, {"index": 1173, "image_id": 2315468, "entity": "dog", "caption": "the dog's collar is green", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is green"}, {"index": 1174, "image_id": 2315447, "entity": "dog", "caption": "A dogs left black eye. ", "question": ["are there a dogs ?", "is there black eye ?"], "prompt": "A {}s left black eye. "}, {"index": 1175, "image_id": 2315441, "entity": "dog", "caption": "The 2 dogs lay on the bed together", "question": ["are there the 2 dogs ?", "is there the bed ?"], "prompt": "The 2 {}s lay on the bed together"}, {"index": 1176, "image_id": 2315441, "entity": "dog", "caption": "The dog is laying on the other dog", "question": ["is there the dog ?", "is there the other dog ?"], "prompt": "The {} is laying on the other {}"}, {"index": 1177, "image_id": 2315441, "entity": "dog", "caption": "The dogs are on the comfortable looking bed", "question": ["are there the dogs ?", "is there the comfortable looking bed ?"], "prompt": "The {}s are on the comfortable looking bed"}, {"index": 1178, "image_id": 2315441, "entity": "dog", "caption": "The dog has a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} has a blue collar"}, {"index": 1179, "image_id": 2315441, "entity": "dog", "caption": "Brown dogs left eye.", "question": ["are there brown dogs ?", "is there eye ?"], "prompt": "Brown {}s left eye."}, {"index": 1180, "image_id": 2414390, "entity": "dog", "caption": "the dog is playing with a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is playing with a frisbee"}, {"index": 1181, "image_id": 2414390, "entity": "dog", "caption": "the dog has brown ears", "question": ["is there the dog ?", "are there brown ears ?"], "prompt": "the {} has brown ears"}, {"index": 1182, "image_id": 2414304, "entity": "dog", "caption": "A dog is in the picture.", "question": ["is there a dog ?", "is there the picture ?"], "prompt": "A {} is in the picture."}, {"index": 1183, "image_id": 2414304, "entity": "dog", "caption": "The dog has on a black collar.", "question": ["is there the dog ?", "is there a black collar ?"], "prompt": "The {} has on a black collar."}, {"index": 1184, "image_id": 2414304, "entity": "dog", "caption": "The dog is standing in the sand.", "question": ["is there the dog ?", "is there the sand ?"], "prompt": "The {} is standing in the sand."}, {"index": 1185, "image_id": 2414304, "entity": "dog", "caption": "The dog is staring at his master.", "question": ["is there the dog ?", "is there his master ?"], "prompt": "The {} is staring at his master."}, {"index": 1186, "image_id": 2412940, "entity": "dog", "caption": "Sun light over the body of dogs", "question": ["is there sun light ?", "is there the body ?", "are there dogs ?"], "prompt": "Sun light over the body of {}s"}, {"index": 1187, "image_id": 2412940, "entity": "dog", "caption": "the dogs eyes are wide apart", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are wide apart"}, {"index": 1188, "image_id": 2412718, "entity": "dog", "caption": "the dog is resting on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is resting on a blanket"}, {"index": 1189, "image_id": 2412718, "entity": "dog", "caption": "the dog has his ears bent", "question": ["is there the dog ?", "are there his ears ?"], "prompt": "the {} has his ears bent"}, {"index": 1190, "image_id": 2412718, "entity": "dog", "caption": "the dog has pretty blue eyes", "question": ["is there the dog ?", "are there pretty blue eyes ?"], "prompt": "the {} has pretty blue eyes"}, {"index": 1191, "image_id": 2412718, "entity": "dog", "caption": "the dog has brown feet", "question": ["is there the dog ?", "are there brown feet ?"], "prompt": "the {} has brown feet"}, {"index": 1192, "image_id": 2412718, "entity": "dog", "caption": "The dog is sitting on blankets", "question": ["is there the dog ?", "are there blankets ?"], "prompt": "The {} is sitting on blankets"}, {"index": 1193, "image_id": 2412718, "entity": "dog", "caption": "The dog has 2 ears", "question": ["is there the dog ?", "are there 2 ears ?"], "prompt": "The {} has 2 ears"}, {"index": 1194, "image_id": 2412718, "entity": "dog", "caption": "The dog has a tail", "question": ["is there the dog ?", "is there a tail ?"], "prompt": "The {} has a tail"}, {"index": 1195, "image_id": 2412718, "entity": "dog", "caption": "The dog's eyes are blue", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are blue"}, {"index": 1196, "image_id": 2412718, "entity": "dog", "caption": "The dog has 4 paws", "question": ["is there the dog ?", "are there 4 paws ?"], "prompt": "The {} has 4 paws"}, {"index": 1197, "image_id": 2412430, "entity": "dog", "caption": "A dog is laying down on a couch.", "question": ["is there a dog ?", "is there a couch ?"], "prompt": "A {} is laying down on a couch."}, {"index": 1198, "image_id": 2412430, "entity": "dog", "caption": "The dog's nose is black in color.", "question": ["is there the dog's nose ?", "is there color ?"], "prompt": "The {}'s nose is black in color."}, {"index": 1199, "image_id": 2412382, "entity": "dog", "caption": "the dogs are on the seat", "question": ["are there the dogs ?", "is there the seat ?"], "prompt": "the {}s are on the seat"}, {"index": 1200, "image_id": 2412382, "entity": "dog", "caption": "the dogs eyes are black", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are black"}, {"index": 1201, "image_id": 2412215, "entity": "dog", "caption": "The white sheet the dog's paw and mouth is resting on.", "question": ["is there the dog's paw ?", "is there mouth ?"], "prompt": "The white sheet the {}'s paw and mouth is resting on."}, {"index": 1202, "image_id": 2412215, "entity": "dog", "caption": "The black dog's head resting on the bed.", "question": ["is there the black dog's head ?", "is there the bed ?"], "prompt": "The black {}'s head resting on the bed."}, {"index": 1203, "image_id": 2411734, "entity": "dog", "caption": "A dog with a white nose looks at a birthday cupcake", "question": ["is there a dog ?", "is there a white nose ?", "is there a birthday cupcake ?"], "prompt": "A {} with a white nose looks at a birthday cupcake"}, {"index": 1204, "image_id": 2411533, "entity": "dog", "caption": "White mouse and cat sitting on dog.", "question": ["is there cat ?", "is there dog ?"], "prompt": "White mouse and cat sitting on {}."}, {"index": 1205, "image_id": 2411533, "entity": "dog", "caption": "cat is on a dogs back", "question": ["is there cat ?", "are there a dogs ?"], "prompt": "cat is on a {}s back"}, {"index": 1206, "image_id": 2411533, "entity": "dog", "caption": "dog is walking on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} is walking on sidewalk"}, {"index": 1207, "image_id": 2411533, "entity": "dog", "caption": "dog is wearing a brown vest", "question": ["is there dog ?", "is there a brown vest ?"], "prompt": "{} is wearing a brown vest"}, {"index": 1208, "image_id": 2411533, "entity": "dog", "caption": "a cat is on the dog's back", "question": ["is there a cat ?", "is there the dog ?"], "prompt": "a cat is on the {}'s back"}, {"index": 1209, "image_id": 2411533, "entity": "dog", "caption": "a cat and a mouse are both on a dog", "question": ["is there a cat ?", "is there a mouse ?", "is there a dog ?"], "prompt": "a cat and a mouse are both on a {}"}, {"index": 1210, "image_id": 2411533, "entity": "dog", "caption": "the dog is wearing a vest", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "the {} is wearing a vest"}, {"index": 1211, "image_id": 2415243, "entity": "dog", "caption": "a dog lays on a television remote", "question": ["is there a dog ?", "is there a television remote ?"], "prompt": "a {} lays on a television remote"}, {"index": 1212, "image_id": 2415243, "entity": "dog", "caption": "dog takes a nap on a couch", "question": ["is there dog ?", "is there a nap ?", "is there a couch ?"], "prompt": "{} takes a nap on a couch"}, {"index": 1213, "image_id": 2415532, "entity": "dog", "caption": "Elbow on the far arm washing the dog.", "question": ["is there the far arm ?", "is there the dog ?"], "prompt": "Elbow on the far arm washing the {}."}, {"index": 1214, "image_id": 2416178, "entity": "dog", "caption": "the dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye"}, {"index": 1215, "image_id": 2416388, "entity": "dog", "caption": "pink bow the dog is wearing", "question": ["is there the dog ?"], "prompt": "pink bow the {} is wearing"}, {"index": 1216, "image_id": 2416388, "entity": "dog", "caption": "dog getting teeth brushed", "question": ["is there dog ?", "are there teeth ?"], "prompt": "{} getting teeth brushed"}, {"index": 1217, "image_id": 2416731, "entity": "dog", "caption": "the dog has black hair", "question": ["is there the dog ?", "is there black hair ?"], "prompt": "the {} has black hair"}, {"index": 1218, "image_id": 2416731, "entity": "dog", "caption": "the dog has pointy teeth", "question": ["is there the dog ?", "are there pointy teeth ?"], "prompt": "the {} has pointy teeth"}, {"index": 1219, "image_id": 2416944, "entity": "dog", "caption": "grassy field dog is playing in", "question": ["is there grassy field dog ?"], "prompt": "grassy field {} is playing in"}, {"index": 1220, "image_id": 2417227, "entity": "dog", "caption": "The sofa the dog is leaning on.", "question": ["is there the sofa ?", "is there the dog ?"], "prompt": "The sofa the {} is leaning on."}, {"index": 1221, "image_id": 2417721, "entity": "dog", "caption": "dog has brown legs", "question": ["is there dog ?", "are there brown legs ?"], "prompt": "{} has brown legs"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02090379.json b/data/imagenet/compositions/prompts/n02090379.json
new file mode 100644
index 0000000000000000000000000000000000000000..db9508f2d519c121841f29d5b620aaf093b952ac
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02090379.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 561, "entity": "dog", "caption": "dog has a black nose", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose"}, {"index": 1, "image_id": 561, "entity": "dog", "caption": "dog's ears are up", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are up"}, {"index": 2, "image_id": 561, "entity": "dog", "caption": "dog's eyes are dark", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are dark"}, {"index": 3, "image_id": 3535, "entity": "dog", "caption": "The dog has four legs.", "question": ["is there the dog ?", "are there four legs ?"], "prompt": "The {} has four legs."}, {"index": 4, "image_id": 3535, "entity": "dog", "caption": "tongue hanging out a dog's mouth", "question": ["is there tongue ?", "is there a dog's mouth ?"], "prompt": "tongue hanging out a {}'s mouth"}, {"index": 5, "image_id": 3553, "entity": "dog", "caption": "dog is sitting in grass", "question": ["is there dog ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 6, "image_id": 3553, "entity": "dog", "caption": "dog is mostly brown", "question": ["is there dog ?"], "prompt": "{} is mostly brown"}, {"index": 7, "image_id": 3553, "entity": "dog", "caption": "the dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "the {} has a black nose"}, {"index": 8, "image_id": 3553, "entity": "dog", "caption": "the brown dog has a long brown tail", "question": ["is there the brown dog ?", "is there a long brown tail ?"], "prompt": "the brown {} has a long brown tail"}, {"index": 9, "image_id": 3553, "entity": "dog", "caption": "the dog has large brown paws", "question": ["is there the dog ?", "are there large brown paws ?"], "prompt": "the {} has large brown paws"}, {"index": 10, "image_id": 3553, "entity": "dog", "caption": "a dog with its mouth open", "question": ["is there a dog ?", "is there its mouth ?"], "prompt": "a {} with its mouth open"}, {"index": 11, "image_id": 3752, "entity": "dog", "caption": "the dogs tail is black ", "question": ["are there the dogs tail ?"], "prompt": "the {}s tail is black "}, {"index": 12, "image_id": 3752, "entity": "dog", "caption": "the dogs feet is black ", "question": ["are there the dogs ?"], "prompt": "the {}s feet is black "}, {"index": 13, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat are standing together on the sidewalk", "question": ["is there a dog ?", "is there a cat ?", "is there the sidewalk ?"], "prompt": "A {} and a cat are standing together on the sidewalk"}, {"index": 14, "image_id": 107934, "entity": "dog", "caption": "dog has a brown patch", "question": ["is there dog ?", "is there a brown patch ?"], "prompt": "{} has a brown patch"}, {"index": 15, "image_id": 107934, "entity": "dog", "caption": "dog has a blue rope tied", "question": ["is there dog ?", "is there a blue rope ?"], "prompt": "{} has a blue rope tied"}, {"index": 16, "image_id": 107934, "entity": "dog", "caption": "the dog has a blue leash", "question": ["is there the dog ?", "is there a blue leash ?"], "prompt": "the {} has a blue leash"}, {"index": 17, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat walk together.", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} and a cat walk together."}, {"index": 18, "image_id": 107934, "entity": "dog", "caption": "Both dog and cat are in the middle of the frame.", "question": ["is there both dog ?", "is there cat ?", "is there the middle ?", "is there the frame ?"], "prompt": "Both {} and cat are in the middle of the frame."}, {"index": 19, "image_id": 107934, "entity": "dog", "caption": "The dog is looking at the camera.", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera."}, {"index": 20, "image_id": 1159975, "entity": "dog", "caption": "The gray collar the dog is wearing.", "question": ["is there the gray collar ?", "is there the dog ?"], "prompt": "The gray collar the {} is wearing."}, {"index": 21, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown and white sweater", "question": ["is there the dog ?", "is there a brown and white sweater ?"], "prompt": "The {} has a brown and white sweater"}, {"index": 22, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "The {} has a brown nose"}, {"index": 23, "image_id": 2414023, "entity": "dog", "caption": "the dog has a messed up eye", "question": ["is there the dog ?", "is there a messed up eye ?"], "prompt": "the {} has a messed up eye"}, {"index": 24, "image_id": 2414023, "entity": "dog", "caption": "the dog is wearing a sweater", "question": ["is there the dog ?", "is there a sweater ?"], "prompt": "the {} is wearing a sweater"}, {"index": 25, "image_id": 2414023, "entity": "dog", "caption": "the dog has a purple collar", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "the {} has a purple collar"}, {"index": 26, "image_id": 2413171, "entity": "dog", "caption": "Young man hold a cute dog", "question": ["is there young man ?", "is there a cute dog ?"], "prompt": "Young man hold a cute {}"}, {"index": 27, "image_id": 2412707, "entity": "dog", "caption": "black fur grows on a dog", "question": ["is there black fur ?", "is there a dog ?"], "prompt": "black fur grows on a {}"}, {"index": 28, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is sitting in the ground"}, {"index": 29, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is sitting in the floor"}, {"index": 30, "image_id": 2412546, "entity": "dog", "caption": "The dog has a collar on.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar on."}, {"index": 31, "image_id": 2412049, "entity": "dog", "caption": "the dog is long hair", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "the {} is long hair"}, {"index": 32, "image_id": 2412049, "entity": "dog", "caption": "the dog has some white hair", "question": ["is there the dog ?", "is there some white hair ?"], "prompt": "the {} has some white hair"}, {"index": 33, "image_id": 2412049, "entity": "dog", "caption": "the dog has some black hair", "question": ["is there the dog ?", "is there some black hair ?"], "prompt": "the {} has some black hair"}, {"index": 34, "image_id": 2412049, "entity": "dog", "caption": "the dog has some brown hair", "question": ["is there the dog ?", "is there some brown hair ?"], "prompt": "the {} has some brown hair"}, {"index": 35, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is shiny", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is shiny"}, {"index": 36, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is black"}, {"index": 37, "image_id": 2412049, "entity": "dog", "caption": "this are dog canines", "question": ["are there dog canines ?"], "prompt": "this are {} canines"}, {"index": 38, "image_id": 2412049, "entity": "dog", "caption": "this is the dogs fur", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "this is the {}s fur"}, {"index": 39, "image_id": 2411402, "entity": "dog", "caption": "Bed the dog is sleeping on", "question": ["is there the dog ?"], "prompt": "Bed the {} is sleeping on"}, {"index": 40, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar"}, {"index": 41, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} is wearing a chain"}, {"index": 42, "image_id": 2411357, "entity": "dog", "caption": "the dog is watching the oven", "question": ["is there the dog ?", "is there the oven ?"], "prompt": "the {} is watching the oven"}, {"index": 43, "image_id": 2411357, "entity": "dog", "caption": "the dog has a chain around its neck", "question": ["is there the dog ?", "is there a chain ?", "is there its neck ?"], "prompt": "the {} has a chain around its neck"}, {"index": 44, "image_id": 2411357, "entity": "dog", "caption": "the dog has two ears", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "the {} has two ears"}, {"index": 45, "image_id": 2411201, "entity": "dog", "caption": "A dog is on a moped.", "question": ["is there a dog ?"], "prompt": "A {} is on a moped."}, {"index": 46, "image_id": 2411201, "entity": "dog", "caption": "The dog has a red leash.", "question": ["is there the dog ?", "is there a red leash ?"], "prompt": "The {} has a red leash."}, {"index": 47, "image_id": 2411201, "entity": "dog", "caption": "The dog's ears are up.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are up."}, {"index": 48, "image_id": 2411201, "entity": "dog", "caption": "The dog's tail is hanging down.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is hanging down."}, {"index": 49, "image_id": 2411201, "entity": "dog", "caption": "a large dog sits on a scooter", "question": ["is there a large dog ?", "is there a scooter ?"], "prompt": "a large {} sits on a scooter"}, {"index": 50, "image_id": 2411201, "entity": "dog", "caption": "a dog has a red leash", "question": ["is there a dog ?", "is there a red leash ?"], "prompt": "a {} has a red leash"}, {"index": 51, "image_id": 2411201, "entity": "dog", "caption": "The dog on the scooter has a long tail", "question": ["is there the dog ?", "is there the scooter ?", "is there a long tail ?"], "prompt": "The {} on the scooter has a long tail"}, {"index": 52, "image_id": 2411201, "entity": "dog", "caption": "Brown dog on leash on moped", "question": ["is there brown dog ?", "is there leash ?"], "prompt": "Brown {} on leash on moped"}, {"index": 53, "image_id": 2411201, "entity": "dog", "caption": "Red moped with dog", "question": ["is there dog ?"], "prompt": "Red moped with {}"}, {"index": 54, "image_id": 2410967, "entity": "dog", "caption": "a dog's ears bent over", "question": ["are there a dog's ears ?"], "prompt": "a {}'s ears bent over"}, {"index": 55, "image_id": 2410840, "entity": "dog", "caption": "a dog's mouth biting a frisbee", "question": ["is there a dog's mouth ?", "is there a frisbee ?"], "prompt": "a {}'s mouth biting a frisbee"}, {"index": 56, "image_id": 2410817, "entity": "dog", "caption": "black and tan dog jumping to catch a frisbee", "question": ["is there black and tan dog ?", "is there a frisbee ?"], "prompt": "black and tan {} jumping to catch a frisbee"}, {"index": 57, "image_id": 2410817, "entity": "dog", "caption": "leaping dog going after a frisbee", "question": ["is there leaping dog ?", "is there a frisbee ?"], "prompt": "leaping {} going after a frisbee"}, {"index": 58, "image_id": 2410817, "entity": "dog", "caption": "German shepherd dog fetching a frisbee. ", "question": ["is there german shepherd dog ?", "is there a frisbee ?"], "prompt": "German shepherd {} fetching a frisbee. "}, {"index": 59, "image_id": 2409859, "entity": "dog", "caption": "dog's eyes appear to be different colors", "question": ["are there dog's eyes ?", "are there different colors ?"], "prompt": "{}'s eyes appear to be different colors"}, {"index": 60, "image_id": 2409859, "entity": "dog", "caption": "dog has black nose", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose"}, {"index": 61, "image_id": 2409859, "entity": "dog", "caption": "the dog is wearing a cap", "question": ["is there the dog ?", "is there a cap ?"], "prompt": "the {} is wearing a cap"}, {"index": 62, "image_id": 2409859, "entity": "dog", "caption": "Tongue of dog is pink", "question": ["is there tongue ?", "is there dog ?"], "prompt": "Tongue of {} is pink"}, {"index": 63, "image_id": 2409626, "entity": "dog", "caption": "dog has two eyes", "question": ["is there dog ?", "are there two eyes ?"], "prompt": "{} has two eyes"}, {"index": 64, "image_id": 2409626, "entity": "dog", "caption": "the dog is wearing pirate hat", "question": ["is there the dog ?", "is there pirate hat ?"], "prompt": "the {} is wearing pirate hat"}, {"index": 65, "image_id": 2409304, "entity": "dog", "caption": "White left foot of the dog", "question": ["is there white left foot ?", "is there the dog ?"], "prompt": "White left foot of the {}"}, {"index": 66, "image_id": 2409304, "entity": "dog", "caption": "dog catch the frisbee", "question": ["is there dog ?", "is there the frisbee ?"], "prompt": "{} catch the frisbee"}, {"index": 67, "image_id": 2409304, "entity": "dog", "caption": "dog's nose is black", "question": ["is there dog's nose ?"], "prompt": "{}'s nose is black"}, {"index": 68, "image_id": 2409304, "entity": "dog", "caption": "dog's ears are black", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are black"}, {"index": 69, "image_id": 2409304, "entity": "dog", "caption": "dog's paws are white", "question": ["are there dog's paws ?"], "prompt": "{}'s paws are white"}, {"index": 70, "image_id": 2409103, "entity": "dog", "caption": "the dog is wearing a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "the {} is wearing a blue collar"}, {"index": 71, "image_id": 2409103, "entity": "dog", "caption": "a book by T.C. Boyle is next to the dog", "question": ["is there a book ?", "is there the dog ?"], "prompt": "a book by T.C. Boyle is next to the {}"}, {"index": 72, "image_id": 2409103, "entity": "dog", "caption": "the dog is laying on top of an embroidered sheet", "question": ["is there the dog ?", "is there top ?", "is there an embroidered sheet ?"], "prompt": "the {} is laying on top of an embroidered sheet"}, {"index": 73, "image_id": 2408483, "entity": "dog", "caption": "Carpet is light in color under dog", "question": ["is there carpet ?", "is there color ?", "is there dog ?"], "prompt": "Carpet is light in color under {}"}, {"index": 74, "image_id": 2408383, "entity": "dog", "caption": "The dog and cat are looking in the same direction", "question": ["is there the dog ?", "is there cat ?", "is there the same direction ?"], "prompt": "The {} and cat are looking in the same direction"}, {"index": 75, "image_id": 2408210, "entity": "dog", "caption": "Nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "Nose of {} is black"}, {"index": 76, "image_id": 2408210, "entity": "dog", "caption": "Ears of dog is black and tan", "question": ["are there ears ?", "is there dog ?"], "prompt": "Ears of {} is black and tan"}, {"index": 77, "image_id": 2408210, "entity": "dog", "caption": "Eyes of dog are open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "Eyes of {} are open"}, {"index": 78, "image_id": 2408210, "entity": "dog", "caption": "three dogs are lying on a bed", "question": ["are there three dogs ?", "is there a bed ?"], "prompt": "three {}s are lying on a bed"}, {"index": 79, "image_id": 2408210, "entity": "dog", "caption": "the dog has his eyes open", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "the {} has his eyes open"}, {"index": 80, "image_id": 2408037, "entity": "dog", "caption": "the dog has red eyes", "question": ["is there the dog ?", "are there red eyes ?"], "prompt": "the {} has red eyes"}, {"index": 81, "image_id": 2408037, "entity": "dog", "caption": "the dog is holding carrot toy", "question": ["is there the dog ?", "is there carrot toy ?"], "prompt": "the {} is holding carrot toy"}, {"index": 82, "image_id": 2408037, "entity": "dog", "caption": "the dog has green ribbon on its nech", "question": ["is there the dog ?", "is there green ribbon ?"], "prompt": "the {} has green ribbon on its nech"}, {"index": 83, "image_id": 2408037, "entity": "dog", "caption": "a green toy is beside the dog", "question": ["is there a green toy ?", "is there the dog ?"], "prompt": "a green toy is beside the {}"}, {"index": 84, "image_id": 2408037, "entity": "dog", "caption": "the dog has brown legs", "question": ["is there the dog ?", "are there brown legs ?"], "prompt": "the {} has brown legs"}, {"index": 85, "image_id": 2407835, "entity": "dog", "caption": "Brown dog laying on a bed with eyes open.", "question": ["is there brown dog ?", "is there a bed ?", "are there eyes ?"], "prompt": "Brown {} laying on a bed with eyes open."}, {"index": 86, "image_id": 2407835, "entity": "dog", "caption": "dog is lying down.", "question": ["is there dog ?"], "prompt": "{} is lying down."}, {"index": 87, "image_id": 2407835, "entity": "dog", "caption": "dog is lying in cot.", "question": ["is there dog ?", "is there cot ?"], "prompt": "{} is lying in cot."}, {"index": 88, "image_id": 2407835, "entity": "dog", "caption": "dog nose is black color.", "question": ["is there dog nose ?", "is there black color ?"], "prompt": "{} nose is black color."}, {"index": 89, "image_id": 2407825, "entity": "dog", "caption": "the dog has two eyes", "question": ["is there the dog ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 90, "image_id": 2407825, "entity": "dog", "caption": "dog is wearing a collar", "question": ["is there dog ?", "is there a collar ?"], "prompt": "{} is wearing a collar"}, {"index": 91, "image_id": 2407825, "entity": "dog", "caption": "the dog is on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is on the couch"}, {"index": 92, "image_id": 2407825, "entity": "dog", "caption": "the dog has whiskers", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers"}, {"index": 93, "image_id": 2407234, "entity": "dog", "caption": "the dog is on the beanbag", "question": ["is there the dog ?", "is there the beanbag ?"], "prompt": "the {} is on the beanbag"}, {"index": 94, "image_id": 2407234, "entity": "dog", "caption": "a dog toy thats a rope", "question": ["is there a dog toy ?", "is there a rope ?"], "prompt": "a {} toy thats a rope"}, {"index": 95, "image_id": 2407234, "entity": "dog", "caption": "the dog is on bean bag", "question": ["is there the dog ?", "is there bean bag ?"], "prompt": "the {} is on bean bag"}, {"index": 96, "image_id": 2407234, "entity": "dog", "caption": "the dog is sad", "question": ["is there the dog ?"], "prompt": "the {} is sad"}, {"index": 97, "image_id": 2406999, "entity": "dog", "caption": "the dog has goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "the {} has goggles"}, {"index": 98, "image_id": 2406999, "entity": "dog", "caption": "The dog has a vest on", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "The {} has a vest on"}, {"index": 99, "image_id": 2406999, "entity": "dog", "caption": "The dog has goggles on", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} has goggles on"}, {"index": 100, "image_id": 2406999, "entity": "dog", "caption": "The dogs tongue is out. ", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is out. "}, {"index": 101, "image_id": 2406384, "entity": "dog", "caption": "The dog has amber-coloured eyes", "question": ["is there the dog ?", "are there amber-coloured eyes ?"], "prompt": "The {} has amber-coloured eyes"}, {"index": 102, "image_id": 2406384, "entity": "dog", "caption": "The dog's hat is courdoroy", "question": ["is there the dog's hat ?"], "prompt": "The {}'s hat is courdoroy"}, {"index": 103, "image_id": 2406384, "entity": "dog", "caption": "dog has collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} has collar"}, {"index": 104, "image_id": 2406384, "entity": "dog", "caption": "dog has whiskers", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers"}, {"index": 105, "image_id": 2406384, "entity": "dog", "caption": "dog has black lips", "question": ["is there dog ?", "are there black lips ?"], "prompt": "{} has black lips"}, {"index": 106, "image_id": 2406275, "entity": "dog", "caption": "dogs nose is black", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black"}, {"index": 107, "image_id": 2406275, "entity": "dog", "caption": "the dog has light brown eyes", "question": ["is there the dog ?", "are there light brown eyes ?"], "prompt": "the {} has light brown eyes"}, {"index": 108, "image_id": 2406275, "entity": "dog", "caption": "the dog has pointy ears", "question": ["is there the dog ?", "are there pointy ears ?"], "prompt": "the {} has pointy ears"}, {"index": 109, "image_id": 2406275, "entity": "dog", "caption": "something fuzzy is next to the dog", "question": ["is there something ?", "is there the dog ?"], "prompt": "something fuzzy is next to the {}"}, {"index": 110, "image_id": 2406275, "entity": "dog", "caption": "the dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "the {} has brown eyes"}, {"index": 111, "image_id": 2406275, "entity": "dog", "caption": "the dog is lying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is lying on a blanket"}, {"index": 112, "image_id": 2405633, "entity": "dog", "caption": "Dog kennel with dog.", "question": ["is there dog kennel ?", "is there dog ?"], "prompt": "Dog kennel with {}."}, {"index": 113, "image_id": 2405633, "entity": "dog", "caption": "The dog is lying on two blue and white pillows.", "question": ["is there the dog ?", "are there two blue and white pillows ?"], "prompt": "The {} is lying on two blue and white pillows."}, {"index": 114, "image_id": 2405484, "entity": "dog", "caption": "the dog has a pink tongue", "question": ["is there the dog ?", "is there a pink tongue ?"], "prompt": "the {} has a pink tongue"}, {"index": 115, "image_id": 2405484, "entity": "dog", "caption": "the dog is walking in the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is walking in the grass"}, {"index": 116, "image_id": 2405484, "entity": "dog", "caption": "the dog is wearing a metal collar", "question": ["is there the dog ?", "is there a metal collar ?"], "prompt": "the {} is wearing a metal collar"}, {"index": 117, "image_id": 2405484, "entity": "dog", "caption": "the dog is standing on the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is standing on the grass"}, {"index": 118, "image_id": 2405484, "entity": "dog", "caption": "the dog has a collar on", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar on"}, {"index": 119, "image_id": 2405484, "entity": "dog", "caption": "the dog has his tongue sticking out", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "the {} has his tongue sticking out"}, {"index": 120, "image_id": 2405484, "entity": "dog", "caption": "the dog is waggling his tail", "question": ["is there the dog ?", "is there his tail ?"], "prompt": "the {} is waggling his tail"}, {"index": 121, "image_id": 2405484, "entity": "dog", "caption": "the dog's collar is a chain", "question": ["is there the dog's collar ?", "is there a chain ?"], "prompt": "the {}'s collar is a chain"}, {"index": 122, "image_id": 2405484, "entity": "dog", "caption": "dog's tongue is pink", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink"}, {"index": 123, "image_id": 2405484, "entity": "dog", "caption": "dog is standing in the grass", "question": ["is there dog ?", "is there the grass ?"], "prompt": "{} is standing in the grass"}, {"index": 124, "image_id": 2405469, "entity": "dog", "caption": "The dog is wearing a collar. ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar. "}, {"index": 125, "image_id": 2405469, "entity": "dog", "caption": "The dog has it's head down. ", "question": ["is there the dog ?", "is there head ?"], "prompt": "The {} has it's head down. "}, {"index": 126, "image_id": 2405469, "entity": "dog", "caption": "the dog has sharp teeth", "question": ["is there the dog ?", "are there sharp teeth ?"], "prompt": "the {} has sharp teeth"}, {"index": 127, "image_id": 2405469, "entity": "dog", "caption": "the dog is on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground"}, {"index": 128, "image_id": 2405469, "entity": "dog", "caption": "dog is barking to the other dog", "question": ["is there dog ?", "is there the other dog ?"], "prompt": "{} is barking to the other {}"}, {"index": 129, "image_id": 2405469, "entity": "dog", "caption": "Dog ready to bite another dog", "question": ["is there dog ?", "is there another dog ?"], "prompt": "Dog ready to bite another {}"}, {"index": 130, "image_id": 2405369, "entity": "dog", "caption": "The dog is sleeping in a bed. ", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "The {} is sleeping in a bed. "}, {"index": 131, "image_id": 2405369, "entity": "dog", "caption": "The dog's nose hangs over the bed's edge.", "question": ["is there the dog's nose ?", "is there the bed's edge ?"], "prompt": "The {}'s nose hangs over the bed's edge."}, {"index": 132, "image_id": 2405369, "entity": "dog", "caption": "the dog is on a bed", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "the {} is on a bed"}, {"index": 133, "image_id": 2405369, "entity": "dog", "caption": "the dog sleeps on a tan and white dog bed", "question": ["is there the dog ?", "is there a tan and white dog bed ?"], "prompt": "the {} sleeps on a tan and white {} bed"}, {"index": 134, "image_id": 2405369, "entity": "dog", "caption": "the dog lays curled up on a plush dog bed", "question": ["is there the dog ?", "is there a plush dog bed ?"], "prompt": "the {} lays curled up on a plush {} bed"}, {"index": 135, "image_id": 2405369, "entity": "dog", "caption": "dogs ear on bottom left", "question": ["are there dogs ?", "is there bottom ?"], "prompt": "{}s ear on bottom left"}, {"index": 136, "image_id": 2405369, "entity": "dog", "caption": "White dog curled up sleeping on its bed", "question": ["is there white dog ?", "is there its bed ?"], "prompt": "White {} curled up sleeping on its bed"}, {"index": 137, "image_id": 2405343, "entity": "dog", "caption": "the dog has a Santa hat on his head", "question": ["is there the dog ?", "is there a santa hat ?", "is there his head ?"], "prompt": "the {} has a Santa hat on his head"}, {"index": 138, "image_id": 2405343, "entity": "dog", "caption": "the dog has a black eye", "question": ["is there the dog ?", "is there a black eye ?"], "prompt": "the {} has a black eye"}, {"index": 139, "image_id": 2405343, "entity": "dog", "caption": "the nose of the dog is black", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose of the {} is black"}, {"index": 140, "image_id": 2405343, "entity": "dog", "caption": "the fur on the dog is black and white ", "question": ["is there the fur ?", "is there the dog ?"], "prompt": "the fur on the {} is black and white "}, {"index": 141, "image_id": 2405343, "entity": "dog", "caption": "the dog has a white chest", "question": ["is there the dog ?", "is there a white chest ?"], "prompt": "the {} has a white chest"}, {"index": 142, "image_id": 2405343, "entity": "dog", "caption": "the dog's ear is black", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is black"}, {"index": 143, "image_id": 2405343, "entity": "dog", "caption": "the dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open"}, {"index": 144, "image_id": 2404815, "entity": "dog", "caption": "a cat sleeps on a dog", "question": ["is there a cat ?", "is there a dog ?"], "prompt": "a cat sleeps on a {}"}, {"index": 145, "image_id": 2404815, "entity": "dog", "caption": "a cat and dog lie on a wooden floor", "question": ["is there a cat ?", "is there dog ?", "is there a wooden floor ?"], "prompt": "a cat and {} lie on a wooden floor"}, {"index": 146, "image_id": 2404815, "entity": "dog", "caption": "the cat is laying on the dog", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "the cat is laying on the {}"}, {"index": 147, "image_id": 2404815, "entity": "dog", "caption": "the dog is laying on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is laying on the floor"}, {"index": 148, "image_id": 2404815, "entity": "dog", "caption": "the dog has something around its neck", "question": ["is there the dog ?", "is there something ?", "is there its neck ?"], "prompt": "the {} has something around its neck"}, {"index": 149, "image_id": 2404815, "entity": "dog", "caption": "the dog's ear is sticking up", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is sticking up"}, {"index": 150, "image_id": 2404815, "entity": "dog", "caption": "the dog is wearing a bandana on his neck", "question": ["is there the dog ?", "is there a bandana ?", "is there his neck ?"], "prompt": "the {} is wearing a bandana on his neck"}, {"index": 151, "image_id": 2404815, "entity": "dog", "caption": "the kitten is laying on top of the dog", "question": ["is there top ?", "is there the dog ?"], "prompt": "the kitten is laying on top of the {}"}, {"index": 152, "image_id": 2404815, "entity": "dog", "caption": "the dogs paws are white", "question": ["are there the dogs paws ?"], "prompt": "the {}s paws are white"}, {"index": 153, "image_id": 2404815, "entity": "dog", "caption": "the dog doesnt seem to mind the kitty laying on him", "question": ["is there the dog ?", "is there the kitty ?"], "prompt": "the {} doesnt seem to mind the kitty laying on him"}, {"index": 154, "image_id": 2404707, "entity": "dog", "caption": "A black dog sits on stairs", "question": ["is there a black dog ?", "are there stairs ?"], "prompt": "A black {} sits on stairs"}, {"index": 155, "image_id": 2404707, "entity": "dog", "caption": "The dog is wearing a red bow tie around its neck", "question": ["is there the dog ?", "is there a red bow tie ?", "is there its neck ?"], "prompt": "The {} is wearing a red bow tie around its neck"}, {"index": 156, "image_id": 2404707, "entity": "dog", "caption": "The dog has its head cocked to the side", "question": ["is there the dog ?", "is there its head ?", "is there the side ?"], "prompt": "The {} has its head cocked to the side"}, {"index": 157, "image_id": 2404707, "entity": "dog", "caption": "The dogs left hind leg is hanging off the stair", "question": ["are there the dogs ?", "is there hind leg ?", "is there the stair ?"], "prompt": "The {}s left hind leg is hanging off the stair"}, {"index": 158, "image_id": 2404163, "entity": "dog", "caption": "a woman is petting the dog", "question": ["is there a woman ?", "is there the dog ?"], "prompt": "a woman is petting the {}"}, {"index": 159, "image_id": 2404163, "entity": "dog", "caption": "the dog wears a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} wears a red collar"}, {"index": 160, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing red scarf", "question": ["is there person ?", "is there dog ?", "is there red scarf ?"], "prompt": "person petting {} is wearing red scarf"}, {"index": 161, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing a black dress", "question": ["is there person ?", "is there dog ?", "is there a black dress ?"], "prompt": "person petting {} is wearing a black dress"}, {"index": 162, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red and white scarf", "question": ["is there the dog ?", "is there a red and white scarf ?"], "prompt": "the {} is wearing a red and white scarf"}, {"index": 163, "image_id": 2404163, "entity": "dog", "caption": "the dog looks up at the woman", "question": ["is there the dog ?", "is there the woman ?"], "prompt": "the {} looks up at the woman"}, {"index": 164, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red halter style lead", "question": ["is there the dog ?", "is there a red halter style ?"], "prompt": "the {} is wearing a red halter style lead"}, {"index": 165, "image_id": 2404163, "entity": "dog", "caption": "a woman reaches down to a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "a woman reaches down to a {}"}, {"index": 166, "image_id": 2404163, "entity": "dog", "caption": "the woman in the red shoes pets the dog", "question": ["is there the woman ?", "are there the red shoes ?", "is there the dog ?"], "prompt": "the woman in the red shoes pets the {}"}, {"index": 167, "image_id": 2404075, "entity": "dog", "caption": "The dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket"}, {"index": 168, "image_id": 2403923, "entity": "dog", "caption": "the dog has a green collar", "question": ["is there the dog ?", "is there a green collar ?"], "prompt": "the {} has a green collar"}, {"index": 169, "image_id": 2403914, "entity": "dog", "caption": "This dog has his eyes closed", "question": ["is there this dog ?", "are there his eyes ?"], "prompt": "This {} has his eyes closed"}, {"index": 170, "image_id": 2403914, "entity": "dog", "caption": "This snauser dog has long ears", "question": ["is there this snauser dog ?", "are there long ears ?"], "prompt": "This snauser {} has long ears"}, {"index": 171, "image_id": 2403914, "entity": "dog", "caption": "This dog has a pug nose", "question": ["is there this dog ?", "is there a pug nose ?"], "prompt": "This {} has a pug nose"}, {"index": 172, "image_id": 2403914, "entity": "dog", "caption": "A dog's ear peeking out from the other side of its head", "question": ["is there a dog's ear ?", "is there the other side ?", "is there its head ?"], "prompt": "A {}'s ear peeking out from the other side of its head"}, {"index": 173, "image_id": 2403430, "entity": "dog", "caption": "The dog is laying on a couch.", "question": ["is there the dog ?", "is there a couch ?"], "prompt": "The {} is laying on a couch."}, {"index": 174, "image_id": 2403430, "entity": "dog", "caption": "black dog with eyes open", "question": ["is there black dog ?", "are there eyes ?"], "prompt": "black {} with eyes open"}, {"index": 175, "image_id": 2403430, "entity": "dog", "caption": "The dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes"}, {"index": 176, "image_id": 2403430, "entity": "dog", "caption": "The black dog likes laying on the couch", "question": ["is there the black dog ?", "is there the couch ?"], "prompt": "The black {} likes laying on the couch"}, {"index": 177, "image_id": 2403430, "entity": "dog", "caption": "the dog is laying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is laying on the couch"}, {"index": 178, "image_id": 2403430, "entity": "dog", "caption": "the dog's eye is brown", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is brown"}, {"index": 179, "image_id": 2403359, "entity": "dog", "caption": "a dog and a horse share an Eskimo kiss", "question": ["is there a dog ?", "is there a horse share ?"], "prompt": "a {} and a horse share an Eskimo kiss"}, {"index": 180, "image_id": 2403245, "entity": "dog", "caption": "large brown dog leashed to chair", "question": ["is there large brown dog ?", "is there chair ?"], "prompt": "large brown {} leashed to chair"}, {"index": 181, "image_id": 2403245, "entity": "dog", "caption": "the dog is on deck", "question": ["is there the dog ?", "is there deck ?"], "prompt": "the {} is on deck"}, {"index": 182, "image_id": 2403245, "entity": "dog", "caption": "the leash is on dog", "question": ["is there the leash ?", "is there dog ?"], "prompt": "the leash is on {}"}, {"index": 183, "image_id": 2403245, "entity": "dog", "caption": "Leash tied on golden dog", "question": ["is there golden dog ?"], "prompt": "Leash tied on golden {}"}, {"index": 184, "image_id": 2402933, "entity": "dog", "caption": "the doggy has a party hat on", "question": ["is there the doggy ?", "is there a party hat ?"], "prompt": "the {}gy has a party hat on"}, {"index": 185, "image_id": 2402933, "entity": "dog", "caption": "a stuffed animal is next to the dog", "question": ["is there a stuffed animal ?", "is there the dog ?"], "prompt": "a stuffed animal is next to the {}"}, {"index": 186, "image_id": 2402907, "entity": "dog", "caption": "The dog is standing on carpet", "question": ["is there the dog ?", "is there carpet ?"], "prompt": "The {} is standing on carpet"}, {"index": 187, "image_id": 2402907, "entity": "dog", "caption": "The dog has a collar and tags", "question": ["is there the dog ?", "is there a collar ?", "are there tags ?"], "prompt": "The {} has a collar and tags"}, {"index": 188, "image_id": 2402906, "entity": "dog", "caption": "a dog cover the book", "question": ["is there a dog ?", "is there the book ?"], "prompt": "a {} cover the book"}, {"index": 189, "image_id": 2402906, "entity": "dog", "caption": "the dog is looking to the left", "question": ["is there the dog ?"], "prompt": "the {} is looking to the left"}, {"index": 190, "image_id": 2402906, "entity": "dog", "caption": "the dog has black eyes", "question": ["is there the dog ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 191, "image_id": 2402433, "entity": "dog", "caption": "The dog's eyes are brown.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are brown."}, {"index": 192, "image_id": 2402433, "entity": "dog", "caption": "The dog's fur is brown and black.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is brown and black."}, {"index": 193, "image_id": 2402433, "entity": "dog", "caption": "The dog's tongue is pink.", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is pink."}, {"index": 194, "image_id": 2402433, "entity": "dog", "caption": "The dog's ears are down.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are down."}, {"index": 195, "image_id": 2402363, "entity": "dog", "caption": "the dog and the cat are on the pillow together", "question": ["is there the dog ?", "is there the cat ?", "is there the pillow ?"], "prompt": "the {} and the cat are on the pillow together"}, {"index": 196, "image_id": 2402363, "entity": "dog", "caption": "cat and dog sleeping on pet bed together", "question": ["is there cat ?", "is there dog ?", "is there pet bed ?"], "prompt": "cat and {} sleeping on pet bed together"}, {"index": 197, "image_id": 2402351, "entity": "dog", "caption": "The dog has a frisbee in his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee in his mouth."}, {"index": 198, "image_id": 2402351, "entity": "dog", "caption": "The dog has a white bushy tail.", "question": ["is there the dog ?", "is there a white bushy tail ?"], "prompt": "The {} has a white bushy tail."}, {"index": 199, "image_id": 2402351, "entity": "dog", "caption": "A flower pot is on the side of the dog.", "question": ["is there a flower pot ?", "is there the side ?", "is there the dog ?"], "prompt": "A flower pot is on the side of the {}."}, {"index": 200, "image_id": 2402059, "entity": "dog", "caption": "the dog has a human's tie around it's neck", "question": ["is there the dog ?", "is there a human's tie ?", "is there neck ?"], "prompt": "the {} has a human's tie around it's neck"}, {"index": 201, "image_id": 2401271, "entity": "dog", "caption": "The head of the dog sitting down.", "question": ["is there the head ?", "is there the dog ?"], "prompt": "The head of the {} sitting down."}, {"index": 202, "image_id": 2401271, "entity": "dog", "caption": "Soft brown chair the dog sits on", "question": ["is there soft brown chair ?", "is there the dog ?"], "prompt": "Soft brown chair the {} sits on"}, {"index": 203, "image_id": 2401271, "entity": "dog", "caption": "dog sittin gin brown chiar", "question": ["is there dog ?", "is there gin brown chiar ?"], "prompt": "{} sittin gin brown chiar"}, {"index": 204, "image_id": 2401271, "entity": "dog", "caption": "The dog is black and brown.", "question": ["is there the dog ?"], "prompt": "The {} is black and brown."}, {"index": 205, "image_id": 2401271, "entity": "dog", "caption": "The dog's nose is black.", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black."}, {"index": 206, "image_id": 2401024, "entity": "dog", "caption": "the dog has ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has ears"}, {"index": 207, "image_id": 2401024, "entity": "dog", "caption": "the dog is wearing strap", "question": ["is there the dog ?", "is there strap ?"], "prompt": "the {} is wearing strap"}, {"index": 208, "image_id": 2401024, "entity": "dog", "caption": "dog is wearing sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is wearing sweater"}, {"index": 209, "image_id": 2401024, "entity": "dog", "caption": "The sweater the dog is wearing", "question": ["is there the sweater ?", "is there the dog ?"], "prompt": "The sweater the {} is wearing"}, {"index": 210, "image_id": 2400958, "entity": "dog", "caption": "the man behind the dogs has blue jeans on", "question": ["is there the man ?", "are there the dogs ?", "are there blue jeans ?"], "prompt": "the man behind the {}s has blue jeans on"}, {"index": 211, "image_id": 2400958, "entity": "dog", "caption": "dog with tongue hanging out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue hanging out"}, {"index": 212, "image_id": 2400922, "entity": "dog", "caption": "The dog is staring out the window.", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is staring out the window."}, {"index": 213, "image_id": 2400865, "entity": "dog", "caption": "The dog is on a blanket.", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket."}, {"index": 214, "image_id": 2400865, "entity": "dog", "caption": "the dogs nose is pink.", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is pink."}, {"index": 215, "image_id": 2400865, "entity": "dog", "caption": "the dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "the {}s tongue is pink."}, {"index": 216, "image_id": 2400378, "entity": "dog", "caption": "this is the dog's head", "question": ["is there the dog's head ?"], "prompt": "this is the {}'s head"}, {"index": 217, "image_id": 2400368, "entity": "dog", "caption": "a dogs left paw", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw"}, {"index": 218, "image_id": 2399686, "entity": "dog", "caption": "a dog with its ears perked up", "question": ["is there a dog ?", "are there its ears ?"], "prompt": "a {} with its ears perked up"}, {"index": 219, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left eye", "question": ["are there the black dogs ?", "is there eye ?"], "prompt": "the black {}s left eye"}, {"index": 220, "image_id": 2399125, "entity": "dog", "caption": "the black dogs right eye", "question": ["are there the black dogs ?"], "prompt": "the black {}s right eye"}, {"index": 221, "image_id": 2399125, "entity": "dog", "caption": "piece of wood dog is lying on", "question": ["is there piece ?", "is there wood dog ?"], "prompt": "piece of wood {} is lying on"}, {"index": 222, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left ear", "question": ["are there the black dogs ?", "is there ear ?"], "prompt": "the black {}s left ear"}, {"index": 223, "image_id": 2399037, "entity": "dog", "caption": "she is holding a dog", "question": ["is there a dog ?"], "prompt": "she is holding a {}"}, {"index": 224, "image_id": 2399037, "entity": "dog", "caption": "The girl's hand that is resting on the dog.", "question": ["is there the girl's hand ?", "is there the dog ?"], "prompt": "The girl's hand that is resting on the {}."}, {"index": 225, "image_id": 2399037, "entity": "dog", "caption": "Girl's hand is on the dog.", "question": ["is there girl's hand ?", "is there the dog ?"], "prompt": "Girl's hand is on the {}."}, {"index": 226, "image_id": 2399037, "entity": "dog", "caption": "this is a dog", "question": ["is there a dog ?"], "prompt": "this is a {}"}, {"index": 227, "image_id": 2397742, "entity": "dog", "caption": "a green rug the dog is laying on", "question": ["is there a green rug ?", "is there the dog ?"], "prompt": "a green rug the {} is laying on"}, {"index": 228, "image_id": 2397739, "entity": "dog", "caption": "A dog is in front of a motorcycle.", "question": ["is there a dog ?", "is there front ?", "is there a motorcycle ?"], "prompt": "A {} is in front of a motorcycle."}, {"index": 229, "image_id": 2397739, "entity": "dog", "caption": "A dog has black and white spots.", "question": ["is there a dog ?", "are there black and white spots ?"], "prompt": "A {} has black and white spots."}, {"index": 230, "image_id": 2397739, "entity": "dog", "caption": "A dog is behind another dog.", "question": ["is there a dog ?", "is there another dog ?"], "prompt": "A {} is behind another {}."}, {"index": 231, "image_id": 2397739, "entity": "dog", "caption": "motorbike parked behind dogs", "question": ["is there motorbike ?", "are there dogs ?"], "prompt": "motorbike parked behind {}s"}, {"index": 232, "image_id": 2397731, "entity": "dog", "caption": "the red collar the dog is wearing", "question": ["is there the red collar ?", "is there the dog ?"], "prompt": "the red collar the {} is wearing"}, {"index": 233, "image_id": 2397731, "entity": "dog", "caption": "the green grass the dog is standing on", "question": ["is there the green grass ?", "is there the dog ?"], "prompt": "the green grass the {} is standing on"}, {"index": 234, "image_id": 2397731, "entity": "dog", "caption": "the dogs colored leash", "question": ["are there the dogs ?"], "prompt": "the {}s colored leash"}, {"index": 235, "image_id": 2397368, "entity": "dog", "caption": "the dog is holding something on its mouth", "question": ["is there the dog ?", "is there something ?", "is there its mouth ?"], "prompt": "the {} is holding something on its mouth"}, {"index": 236, "image_id": 2397327, "entity": "dog", "caption": "dog has big brown eyes", "question": ["is there dog ?", "are there big brown eyes ?"], "prompt": "{} has big brown eyes"}, {"index": 237, "image_id": 2397327, "entity": "dog", "caption": "dog has small black nose", "question": ["is there dog ?", "is there small black nose ?"], "prompt": "{} has small black nose"}, {"index": 238, "image_id": 2397327, "entity": "dog", "caption": "collar on dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar on {} is black"}, {"index": 239, "image_id": 2397327, "entity": "dog", "caption": "the carpet the dog is standing on", "question": ["is there the carpet ?", "is there the dog ?"], "prompt": "the carpet the {} is standing on"}, {"index": 240, "image_id": 2397327, "entity": "dog", "caption": "the dogs tail", "question": ["are there the dogs ?"], "prompt": "the {}s tail"}, {"index": 241, "image_id": 2397165, "entity": "dog", "caption": "a dogs left paw.", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw."}, {"index": 242, "image_id": 2396130, "entity": "dog", "caption": "A cushion a dog is lying on. ", "question": ["is there a cushion ?", "is there a dog ?"], "prompt": "A cushion a {} is lying on. "}, {"index": 243, "image_id": 2396130, "entity": "dog", "caption": "The dog is laying on the couch.", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "The {} is laying on the couch."}, {"index": 244, "image_id": 2395670, "entity": "dog", "caption": "dog is wearing a tiara", "question": ["is there dog ?", "is there a tiara ?"], "prompt": "{} is wearing a tiara"}, {"index": 245, "image_id": 2395670, "entity": "dog", "caption": "the dog is wearing a tutu", "question": ["is there the dog ?", "is there a tutu ?"], "prompt": "the {} is wearing a tutu"}, {"index": 246, "image_id": 2395670, "entity": "dog", "caption": "bulldog has big brown eye", "question": ["is there big brown eye ?"], "prompt": "bull{} has big brown eye"}, {"index": 247, "image_id": 2395670, "entity": "dog", "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest", "question": ["is there green ribbon ?", "is there orange collar+ribbed orange vest ?"], "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"}, {"index": 248, "image_id": 2395473, "entity": "dog", "caption": "The dog is on top of the pillow", "question": ["is there the dog ?", "is there top ?", "is there the pillow ?"], "prompt": "The {} is on top of the pillow"}, {"index": 249, "image_id": 2395473, "entity": "dog", "caption": "The dog is hugging the stuffed animal", "question": ["is there the dog ?", "is there the stuffed animal ?"], "prompt": "The {} is hugging the stuffed animal"}, {"index": 250, "image_id": 2395473, "entity": "dog", "caption": "stuff is on the floor behind the dog", "question": ["is there stuff ?", "is there the floor ?", "is there the dog ?"], "prompt": "stuff is on the floor behind the {}"}, {"index": 251, "image_id": 2395473, "entity": "dog", "caption": "a white pillow is underneath the dog", "question": ["is there a white pillow ?", "is there the dog ?"], "prompt": "a white pillow is underneath the {}"}, {"index": 252, "image_id": 2395473, "entity": "dog", "caption": "a black speaker is behind the dog", "question": ["is there a black speaker ?", "is there the dog ?"], "prompt": "a black speaker is behind the {}"}, {"index": 253, "image_id": 2395473, "entity": "dog", "caption": "old looking curtains is above the dog's head", "question": ["are there old looking curtains ?", "is there the dog's head ?"], "prompt": "old looking curtains is above the {}'s head"}, {"index": 254, "image_id": 2395369, "entity": "dog", "caption": "grey run the dog is standing on", "question": ["is there the dog ?"], "prompt": "grey run the {} is standing on"}, {"index": 255, "image_id": 2395369, "entity": "dog", "caption": "cat and dog playing with each other ", "question": ["is there cat ?", "is there dog ?"], "prompt": "cat and {} playing with each other "}, {"index": 256, "image_id": 2395369, "entity": "dog", "caption": "head of dog is black", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is black"}, {"index": 257, "image_id": 2394681, "entity": "dog", "caption": "The dog's tail is visible.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is visible."}, {"index": 258, "image_id": 2394681, "entity": "dog", "caption": "the dog has tail", "question": ["is there the dog ?", "is there tail ?"], "prompt": "the {} has tail"}, {"index": 259, "image_id": 2394499, "entity": "dog", "caption": "the dog is wearing a hat", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "the {} is wearing a hat"}, {"index": 260, "image_id": 2394499, "entity": "dog", "caption": "dog is wearing a fedora", "question": ["is there dog ?", "is there a fedora ?"], "prompt": "{} is wearing a fedora"}, {"index": 261, "image_id": 2394499, "entity": "dog", "caption": "The dog has a toy.", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "The {} has a toy."}, {"index": 262, "image_id": 2394499, "entity": "dog", "caption": "The dog is laying on a pillow.", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is laying on a pillow."}, {"index": 263, "image_id": 2394372, "entity": "dog", "caption": "The dog is black and white.", "question": ["is there the dog ?"], "prompt": "The {} is black and white."}, {"index": 264, "image_id": 2394372, "entity": "dog", "caption": "dog has white body with black spots", "question": ["is there dog ?", "is there white body ?", "are there black spots ?"], "prompt": "{} has white body with black spots"}, {"index": 265, "image_id": 2394372, "entity": "dog", "caption": "dog has cast a shadow", "question": ["is there dog ?", "is there a shadow ?"], "prompt": "{} has cast a shadow"}, {"index": 266, "image_id": 2394372, "entity": "dog", "caption": "dog has big fluffy tail", "question": ["is there dog ?", "is there big fluffy tail ?"], "prompt": "{} has big fluffy tail"}, {"index": 267, "image_id": 2394372, "entity": "dog", "caption": "dog has tags on collar", "question": ["is there dog ?", "are there tags ?", "is there collar ?"], "prompt": "{} has tags on collar"}, {"index": 268, "image_id": 2394372, "entity": "dog", "caption": "dog is wearing a white collar", "question": ["is there dog ?", "is there a white collar ?"], "prompt": "{} is wearing a white collar"}, {"index": 269, "image_id": 2394372, "entity": "dog", "caption": "dog is black and white", "question": ["is there dog ?"], "prompt": "{} is black and white"}, {"index": 270, "image_id": 2394372, "entity": "dog", "caption": "dog has frilly tail", "question": ["is there dog ?"], "prompt": "{} has frilly tail"}, {"index": 271, "image_id": 2394372, "entity": "dog", "caption": "dog has brown spots", "question": ["is there dog ?", "are there brown spots ?"], "prompt": "{} has brown spots"}, {"index": 272, "image_id": 2394372, "entity": "dog", "caption": "dog wears white collar", "question": ["is there dog ?", "is there white collar ?"], "prompt": "{} wears white collar"}, {"index": 273, "image_id": 2394372, "entity": "dog", "caption": "A dog is on the sand.", "question": ["is there a dog ?", "is there the sand ?"], "prompt": "A {} is on the sand."}, {"index": 274, "image_id": 2394372, "entity": "dog", "caption": "The dog is balck and white.", "question": ["is there the dog ?"], "prompt": "The {} is balck and white."}, {"index": 275, "image_id": 2394372, "entity": "dog", "caption": "The dog has a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar."}, {"index": 276, "image_id": 2394065, "entity": "dog", "caption": "The dog is licking the water bottle.", "question": ["is there the dog ?", "is there the water bottle ?"], "prompt": "The {} is licking the water bottle."}, {"index": 277, "image_id": 2394065, "entity": "dog", "caption": "The dog is standing next to the person.", "question": ["is there the dog ?", "is there the person ?"], "prompt": "The {} is standing next to the person."}, {"index": 278, "image_id": 2393921, "entity": "dog", "caption": "Aviator glasses on dogs face", "question": ["are there aviator glasses ?", "are there dogs ?"], "prompt": "Aviator glasses on {}s face"}, {"index": 279, "image_id": 2393921, "entity": "dog", "caption": "The dog has glasses on", "question": ["is there the dog ?", "are there glasses ?"], "prompt": "The {} has glasses on"}, {"index": 280, "image_id": 2393921, "entity": "dog", "caption": "The dog has a hat on", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} has a hat on"}, {"index": 281, "image_id": 2393921, "entity": "dog", "caption": "The dog has on a red bib", "question": ["is there the dog ?", "is there a red bib ?"], "prompt": "The {} has on a red bib"}, {"index": 282, "image_id": 2393921, "entity": "dog", "caption": "The dog is sitting in a seat", "question": ["is there the dog ?", "is there a seat ?"], "prompt": "The {} is sitting in a seat"}, {"index": 283, "image_id": 2393366, "entity": "dog", "caption": "this is the dog's nose", "question": ["is there the dog's nose ?"], "prompt": "this is the {}'s nose"}, {"index": 284, "image_id": 2393366, "entity": "dog", "caption": "these are the dog's eyes", "question": ["are there the dog's eyes ?"], "prompt": "these are the {}'s eyes"}, {"index": 285, "image_id": 2393366, "entity": "dog", "caption": "the dog's eye is orange", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is orange"}, {"index": 286, "image_id": 2392895, "entity": "dog", "caption": "a dog with his eyes closed", "question": ["is there a dog ?", "are there his eyes ?"], "prompt": "a {} with his eyes closed"}, {"index": 287, "image_id": 2392895, "entity": "dog", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "{} is on a boat"}, {"index": 288, "image_id": 2392895, "entity": "dog", "caption": "dog has a red collar on", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} has a red collar on"}, {"index": 289, "image_id": 2392895, "entity": "dog", "caption": "dog has a name tag", "question": ["is there dog ?", "is there a name tag ?"], "prompt": "{} has a name tag"}, {"index": 290, "image_id": 2392895, "entity": "dog", "caption": "dog has partially white fur", "question": ["is there dog ?", "is there partially white fur ?"], "prompt": "{} has partially white fur"}, {"index": 291, "image_id": 2392690, "entity": "dog", "caption": "a dog is on the grass", "question": ["is there a dog ?", "is there the grass ?"], "prompt": "a {} is on the grass"}, {"index": 292, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water", "question": ["is there dog ?", "is there water ?"], "prompt": "{} is drinking water"}, {"index": 293, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water from a bottle", "question": ["is there dog ?", "is there water ?", "is there a bottle ?"], "prompt": "{} is drinking water from a bottle"}, {"index": 294, "image_id": 2392690, "entity": "dog", "caption": "water is dripping from the dogs face", "question": ["is there water ?", "are there the dogs ?"], "prompt": "water is dripping from the {}s face"}, {"index": 295, "image_id": 2392690, "entity": "dog", "caption": "thirsty dog is taking a drink", "question": ["is there thirsty dog ?", "is there a drink ?"], "prompt": "thirsty {} is taking a drink"}, {"index": 296, "image_id": 2392690, "entity": "dog", "caption": "dog has drunk half the water bottle", "question": ["is there dog ?", "is there half the water bottle ?"], "prompt": "{} has drunk half the water bottle"}, {"index": 297, "image_id": 2392606, "entity": "dog", "caption": "The two dogs are waring party hats.", "question": ["are there the two dogs ?", "are there party hats ?"], "prompt": "The two {}s are waring party hats."}, {"index": 298, "image_id": 2392334, "entity": "dog", "caption": "The dog has long hair.", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "The {} has long hair."}, {"index": 299, "image_id": 2392334, "entity": "dog", "caption": "white dog wagging its tail", "question": ["is there white dog ?", "is there its tail ?"], "prompt": "white {} wagging its tail"}, {"index": 300, "image_id": 2392033, "entity": "dog", "caption": "ears of dog are long", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are long"}, {"index": 301, "image_id": 2392033, "entity": "dog", "caption": "tail of brown dog is furry", "question": ["is there tail ?", "is there brown dog ?"], "prompt": "tail of brown {} is furry"}, {"index": 302, "image_id": 2392033, "entity": "dog", "caption": "nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black"}, {"index": 303, "image_id": 2391972, "entity": "dog", "caption": "dog wears attentive expression", "question": ["is there dog ?", "is there attentive expression ?"], "prompt": "{} wears attentive expression"}, {"index": 304, "image_id": 2391972, "entity": "dog", "caption": "dog has soulful eye, folded down ear", "question": ["is there dog ?", "is there soulful eye ?", "is there ear ?"], "prompt": "{} has soulful eye, folded down ear"}, {"index": 305, "image_id": 2391972, "entity": "dog", "caption": "dog is wearing dog collar", "question": ["is there dog ?", "is there dog collar ?"], "prompt": "{} is wearing {} collar"}, {"index": 306, "image_id": 2391972, "entity": "dog", "caption": "the dog collar is black", "question": ["is there the dog collar ?"], "prompt": "the {} collar is black"}, {"index": 307, "image_id": 2390997, "entity": "dog", "caption": "dog has black leash", "question": ["is there dog ?", "is there black leash ?"], "prompt": "{} has black leash"}, {"index": 308, "image_id": 2390997, "entity": "dog", "caption": "dog has black fur", "question": ["is there dog ?", "is there black fur ?"], "prompt": "{} has black fur"}, {"index": 309, "image_id": 2390997, "entity": "dog", "caption": "this is a dog collar", "question": ["is there a dog collar ?"], "prompt": "this is a {} collar"}, {"index": 310, "image_id": 2390915, "entity": "dog", "caption": "dog has brown eyes", "question": ["is there dog ?", "are there brown eyes ?"], "prompt": "{} has brown eyes"}, {"index": 311, "image_id": 2390915, "entity": "dog", "caption": "these are the dog's paws", "question": ["are there the dog's paws ?"], "prompt": "these are the {}'s paws"}, {"index": 312, "image_id": 2390745, "entity": "dog", "caption": "a dog is lying on his side", "question": ["is there a dog ?", "is there his side ?"], "prompt": "a {} is lying on his side"}, {"index": 313, "image_id": 2390745, "entity": "dog", "caption": "ear of dog is long", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is long"}, {"index": 314, "image_id": 2390745, "entity": "dog", "caption": "The dog's eyes are wide open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are wide open"}, {"index": 315, "image_id": 2390745, "entity": "dog", "caption": "The dog is relaxing", "question": ["is there the dog ?"], "prompt": "The {} is relaxing"}, {"index": 316, "image_id": 2390588, "entity": "dog", "caption": "The dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "The {} has nose"}, {"index": 317, "image_id": 2390588, "entity": "dog", "caption": "the sling is on dog", "question": ["is there the sling ?", "is there dog ?"], "prompt": "the sling is on {}"}, {"index": 318, "image_id": 2390588, "entity": "dog", "caption": "the eyes are on the dog", "question": ["are there the eyes ?", "is there the dog ?"], "prompt": "the eyes are on the {}"}, {"index": 319, "image_id": 2390301, "entity": "dog", "caption": "dog's tongue hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue hanging out"}, {"index": 320, "image_id": 2390301, "entity": "dog", "caption": "The dog closes his eyes", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "The {} closes his eyes"}, {"index": 321, "image_id": 2390301, "entity": "dog", "caption": "The dogs fur is wet", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is wet"}, {"index": 322, "image_id": 2390301, "entity": "dog", "caption": "The dog has collar on", "question": ["is there the dog ?", "is there collar ?"], "prompt": "The {} has collar on"}, {"index": 323, "image_id": 2390301, "entity": "dog", "caption": "The dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose"}, {"index": 324, "image_id": 2390301, "entity": "dog", "caption": "The dogs eye is closed", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is closed"}, {"index": 325, "image_id": 2390301, "entity": "dog", "caption": "dog has a large pink tounge", "question": ["is there dog ?", "is there a large pink tounge ?"], "prompt": "{} has a large pink tounge"}, {"index": 326, "image_id": 2390301, "entity": "dog", "caption": "shallow water with dog paws submerged", "question": ["is there shallow water ?", "are there dog paws ?"], "prompt": "shallow water with {} paws submerged"}, {"index": 327, "image_id": 2390301, "entity": "dog", "caption": "tan dog standing in the ocean", "question": ["is there the ocean ?"], "prompt": "tan {} standing in the ocean"}, {"index": 328, "image_id": 2390301, "entity": "dog", "caption": "dog with his tongue hanging out", "question": ["is there dog ?", "is there his tongue ?"], "prompt": "{} with his tongue hanging out"}, {"index": 329, "image_id": 2390135, "entity": "dog", "caption": "Th enose od the dog.", "question": ["is there th enose ?", "is there od the dog ?"], "prompt": "Th enose od the {}."}, {"index": 330, "image_id": 2390135, "entity": "dog", "caption": "The dog rests his head.", "question": ["is there the dog ?", "is there his head ?"], "prompt": "The {} rests his head."}, {"index": 331, "image_id": 2390135, "entity": "dog", "caption": "The dogs ear", "question": ["are there the dogs ?"], "prompt": "The {}s ear"}, {"index": 332, "image_id": 2390135, "entity": "dog", "caption": "The dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye"}, {"index": 333, "image_id": 2390107, "entity": "dog", "caption": "long black dog tail curved up", "question": ["is there long black dog tail ?"], "prompt": "long black {} tail curved up"}, {"index": 334, "image_id": 2390107, "entity": "dog", "caption": "the dog has a white spot on it's leg", "question": ["is there the dog ?", "is there a white spot ?", "is there it's leg ?"], "prompt": "the {} has a white spot on it's leg"}, {"index": 335, "image_id": 2390107, "entity": "dog", "caption": "the dog has a long tail", "question": ["is there the dog ?", "is there a long tail ?"], "prompt": "the {} has a long tail"}, {"index": 336, "image_id": 2390107, "entity": "dog", "caption": "the dog has black paw pads", "question": ["is there the dog ?", "are there black paw pads ?"], "prompt": "the {} has black paw pads"}, {"index": 337, "image_id": 2389769, "entity": "dog", "caption": "dog ears are floppy", "question": ["are there dog ears ?"], "prompt": "{} ears are floppy"}, {"index": 338, "image_id": 2389769, "entity": "dog", "caption": "dog eyes are cute", "question": ["are there dog eyes ?"], "prompt": "{} eyes are cute"}, {"index": 339, "image_id": 2389769, "entity": "dog", "caption": "the dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are closed"}, {"index": 340, "image_id": 2389769, "entity": "dog", "caption": "The dog has tags on ", "question": ["is there the dog ?", "are there tags ?"], "prompt": "The {} has tags on "}, {"index": 341, "image_id": 2389769, "entity": "dog", "caption": "Mans toes beside dog", "question": ["is there dog ?"], "prompt": "Mans toes beside {}"}, {"index": 342, "image_id": 2389636, "entity": "dog", "caption": "the dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "the {} has nose"}, {"index": 343, "image_id": 2388972, "entity": "dog", "caption": "the grass is below the dog", "question": ["is there the grass ?", "is there the dog ?"], "prompt": "the grass is below the {}"}, {"index": 344, "image_id": 2388671, "entity": "dog", "caption": "white dog is standing looking out on the yard", "question": ["is there white dog ?", "is there the yard ?"], "prompt": "white {} is standing looking out on the yard"}, {"index": 345, "image_id": 2388671, "entity": "dog", "caption": "dog is mostly white", "question": ["is there dog ?"], "prompt": "{} is mostly white"}, {"index": 346, "image_id": 2388671, "entity": "dog", "caption": "dog has brown ears", "question": ["is there dog ?", "are there brown ears ?"], "prompt": "{} has brown ears"}, {"index": 347, "image_id": 2388671, "entity": "dog", "caption": "dog has black collar", "question": ["is there dog ?", "is there black collar ?"], "prompt": "{} has black collar"}, {"index": 348, "image_id": 2388671, "entity": "dog", "caption": "dog has white legs", "question": ["is there dog ?", "are there white legs ?"], "prompt": "{} has white legs"}, {"index": 349, "image_id": 2388320, "entity": "dog", "caption": "The dog has its head on a stuffed animal", "question": ["is there the dog ?", "is there its head ?", "is there a stuffed animal ?"], "prompt": "The {} has its head on a stuffed animal"}, {"index": 350, "image_id": 2388320, "entity": "dog", "caption": "The gate is behind the dog", "question": ["is there the gate ?", "is there the dog ?"], "prompt": "The gate is behind the {}"}, {"index": 351, "image_id": 2388320, "entity": "dog", "caption": "The dog is lying on wood", "question": ["is there the dog ?", "is there wood ?"], "prompt": "The {} is lying on wood"}, {"index": 352, "image_id": 2388066, "entity": "dog", "caption": "dog jumping for frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} jumping for frisbee"}, {"index": 353, "image_id": 2388048, "entity": "dog", "caption": "all are secondary to small dog chewing large toothbrush", "question": ["is there small dog ?", "is there large toothbrush ?"], "prompt": "all are secondary to small {} chewing large toothbrush"}, {"index": 354, "image_id": 2388048, "entity": "dog", "caption": "a dog is lying on a bed", "question": ["is there a dog ?", "is there a bed ?"], "prompt": "a {} is lying on a bed"}, {"index": 355, "image_id": 2388048, "entity": "dog", "caption": "body of dog is brown", "question": ["is there body ?", "is there dog ?"], "prompt": "body of {} is brown"}, {"index": 356, "image_id": 2388048, "entity": "dog", "caption": "head of dog is brown and white", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown and white"}, {"index": 357, "image_id": 2388048, "entity": "dog", "caption": "ears of dog are brown", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are brown"}, {"index": 358, "image_id": 2388048, "entity": "dog", "caption": "dog has a toothbrush in his mouth", "question": ["is there dog ?", "is there a toothbrush ?", "is there his mouth ?"], "prompt": "{} has a toothbrush in his mouth"}, {"index": 359, "image_id": 2388004, "entity": "dog", "caption": "tail of dog is long and curly", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is long and curly"}, {"index": 360, "image_id": 2388004, "entity": "dog", "caption": "front legs of dog are long", "question": ["are there front legs ?", "is there dog ?"], "prompt": "front legs of {} are long"}, {"index": 361, "image_id": 2388004, "entity": "dog", "caption": "The dog has a white spot.", "question": ["is there the dog ?", "is there a white spot ?"], "prompt": "The {} has a white spot."}, {"index": 362, "image_id": 2387774, "entity": "dog", "caption": "dog looks out window", "question": ["is there dog ?"], "prompt": "{} looks out window"}, {"index": 363, "image_id": 2387774, "entity": "dog", "caption": "dog has dark nose", "question": ["is there dog ?", "is there dark nose ?"], "prompt": "{} has dark nose"}, {"index": 364, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted ears", "question": ["is there dog ?", "are there ears ?"], "prompt": "{} has spotted ears"}, {"index": 365, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted face", "question": ["is there dog ?", "is there face ?"], "prompt": "{} has spotted face"}, {"index": 366, "image_id": 2387596, "entity": "dog", "caption": "dog is wearing glasses", "question": ["is there dog ?", "are there glasses ?"], "prompt": "{} is wearing glasses"}, {"index": 367, "image_id": 2387596, "entity": "dog", "caption": "dog has multicolor bandanna", "question": ["is there dog ?", "is there multicolor bandanna ?"], "prompt": "{} has multicolor bandanna"}, {"index": 368, "image_id": 2387596, "entity": "dog", "caption": "dog has white paws", "question": ["is there dog ?", "are there white paws ?"], "prompt": "{} has white paws"}, {"index": 369, "image_id": 2387596, "entity": "dog", "caption": "dog is on skateboard", "question": ["is there dog ?", "is there skateboard ?"], "prompt": "{} is on skateboard"}, {"index": 370, "image_id": 2387596, "entity": "dog", "caption": "The dog is on a leash.", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash."}, {"index": 371, "image_id": 2387470, "entity": "dog", "caption": "The dog's mouth is open. ", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open. "}, {"index": 372, "image_id": 2387448, "entity": "dog", "caption": "black dog jumping in air", "question": ["is there black dog ?", "is there air ?"], "prompt": "black {} jumping in air"}, {"index": 373, "image_id": 2387448, "entity": "dog", "caption": "dog has red collar", "question": ["is there dog ?", "is there red collar ?"], "prompt": "{} has red collar"}, {"index": 374, "image_id": 2387448, "entity": "dog", "caption": "dog has short curly tail", "question": ["is there dog ?", "is there short curly tail ?"], "prompt": "{} has short curly tail"}, {"index": 375, "image_id": 2387448, "entity": "dog", "caption": "grass under dog is green", "question": ["is there grass ?", "is there dog ?"], "prompt": "grass under {} is green"}, {"index": 376, "image_id": 2387387, "entity": "dog", "caption": "dog's tongue sticking out of mouth", "question": ["is there dog's tongue ?", "is there mouth ?"], "prompt": "{}'s tongue sticking out of mouth"}, {"index": 377, "image_id": 2387104, "entity": "dog", "caption": "the dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has a red collar"}, {"index": 378, "image_id": 2387104, "entity": "dog", "caption": "the dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "the {} has a brown nose"}, {"index": 379, "image_id": 2387104, "entity": "dog", "caption": "the cat is under the dog's chin", "question": ["is there the cat ?", "is there the dog's chin ?"], "prompt": "the cat is under the {}'s chin"}, {"index": 380, "image_id": 2387104, "entity": "dog", "caption": "the dog has a white face", "question": ["is there the dog ?", "is there a white face ?"], "prompt": "the {} has a white face"}, {"index": 381, "image_id": 2386600, "entity": "dog", "caption": "The frisbee is in front of the dog", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The frisbee is in front of the {}"}, {"index": 382, "image_id": 2386600, "entity": "dog", "caption": "dog's teeth showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth showing"}, {"index": 383, "image_id": 2386411, "entity": "dog", "caption": "The dog has a black nose.", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose."}, {"index": 384, "image_id": 2386411, "entity": "dog", "caption": "red bandana dog is wearing", "question": ["is there red bandana dog ?"], "prompt": "red bandana {} is wearing"}, {"index": 385, "image_id": 2386411, "entity": "dog", "caption": "dog's face looking at frisbees", "question": ["is there dog's face ?", "are there frisbees ?"], "prompt": "{}'s face looking at frisbees"}, {"index": 386, "image_id": 2386323, "entity": "dog", "caption": "dog is laying on suit case", "question": ["is there dog ?", "is there suit case ?"], "prompt": "{} is laying on suit case"}, {"index": 387, "image_id": 2386323, "entity": "dog", "caption": "The dog is wearing a gold tag.", "question": ["is there the dog ?", "is there a gold tag ?"], "prompt": "The {} is wearing a gold tag."}, {"index": 388, "image_id": 2386323, "entity": "dog", "caption": "The dog is sitting on a suitcase.", "question": ["is there the dog ?", "is there a suitcase ?"], "prompt": "The {} is sitting on a suitcase."}, {"index": 389, "image_id": 2386037, "entity": "dog", "caption": "dog is jumping above ground", "question": ["is there dog ?", "is there ground ?"], "prompt": "{} is jumping above ground"}, {"index": 390, "image_id": 2386037, "entity": "dog", "caption": "dog is wearing collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} is wearing collar"}, {"index": 391, "image_id": 2386031, "entity": "dog", "caption": "dog's tail is up in the air", "question": ["is there dog's tail ?", "is there the air ?"], "prompt": "{}'s tail is up in the air"}, {"index": 392, "image_id": 2386031, "entity": "dog", "caption": "dog's left perked up ear", "question": ["is there ear ?"], "prompt": "{}'s left perked up ear"}, {"index": 393, "image_id": 2386010, "entity": "dog", "caption": "dogs face in a side mirror", "question": ["are there dogs ?", "is there a side mirror ?"], "prompt": "{}s face in a side mirror"}, {"index": 394, "image_id": 2385955, "entity": "dog", "caption": "nose of dog is wet", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is wet"}, {"index": 395, "image_id": 2385955, "entity": "dog", "caption": "eyes of dog are wide open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are wide open"}, {"index": 396, "image_id": 2385955, "entity": "dog", "caption": "the frisbee is in the dog's mouth", "question": ["is there the frisbee ?", "is there the dog's mouth ?"], "prompt": "the frisbee is in the {}'s mouth"}, {"index": 397, "image_id": 2385955, "entity": "dog", "caption": "the dog's eyes are wild and wide open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are wild and wide open"}, {"index": 398, "image_id": 2385955, "entity": "dog", "caption": "the face of the dog is tricolored", "question": ["is there the face ?", "is there the dog ?"], "prompt": "the face of the {} is tricolored"}, {"index": 399, "image_id": 2385955, "entity": "dog", "caption": "the dog's paw is white", "question": ["is there the dog's paw ?"], "prompt": "the {}'s paw is white"}, {"index": 400, "image_id": 2385955, "entity": "dog", "caption": "grass is under the the dog", "question": ["is there grass ?", "is there the the dog ?"], "prompt": "grass is under the the {}"}, {"index": 401, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} is wearing a cap"}, {"index": 402, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing eyeglasses", "question": ["is there dog ?", "are there eyeglasses ?"], "prompt": "{} is wearing eyeglasses"}, {"index": 403, "image_id": 2385853, "entity": "dog", "caption": "dog's mouth is open", "question": ["is there dog's mouth ?"], "prompt": "{}'s mouth is open"}, {"index": 404, "image_id": 2385762, "entity": "dog", "caption": "a dog has a retractable leash attached to the collar", "question": ["is there a dog ?", "is there a retractable leash ?", "is there the collar ?"], "prompt": "a {} has a retractable leash attached to the collar"}, {"index": 405, "image_id": 2385757, "entity": "dog", "caption": "dog laying in dirt with eyes closed", "question": ["is there dog ?", "is there dirt ?", "are there eyes ?"], "prompt": "{} laying in dirt with eyes closed"}, {"index": 406, "image_id": 2385595, "entity": "dog", "caption": "the dog is lying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is lying on the bed"}, {"index": 407, "image_id": 2385566, "entity": "dog", "caption": "man is holding two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is holding two {}s"}, {"index": 408, "image_id": 2385566, "entity": "dog", "caption": "dog in rear has red collar", "question": ["is there dog ?", "is there rear ?", "is there red collar ?"], "prompt": "{} in rear has red collar"}, {"index": 409, "image_id": 2385566, "entity": "dog", "caption": "man is crouching near two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is crouching near two {}s"}, {"index": 410, "image_id": 2385566, "entity": "dog", "caption": "dog with its mouth wide open", "question": ["is there dog ?", "is there its mouth ?"], "prompt": "{} with its mouth wide open"}, {"index": 411, "image_id": 2385566, "entity": "dog", "caption": "man's hand resting on dog's hip", "question": ["is there man's hand ?", "is there dog's hip ?"], "prompt": "man's hand resting on {}'s hip"}, {"index": 412, "image_id": 2385466, "entity": "dog", "caption": "dog's eyes are brown", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are brown"}, {"index": 413, "image_id": 2385466, "entity": "dog", "caption": "dog's whiskers are white", "question": ["are there dog's whiskers ?"], "prompt": "{}'s whiskers are white"}, {"index": 414, "image_id": 2385466, "entity": "dog", "caption": "dog is next to the window", "question": ["is there dog ?", "is there the window ?"], "prompt": "{} is next to the window"}, {"index": 415, "image_id": 2385466, "entity": "dog", "caption": "dog's ears are down", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are down"}, {"index": 416, "image_id": 2385466, "entity": "dog", "caption": "the dog has a silver tag", "question": ["is there the dog ?", "is there a silver tag ?"], "prompt": "the {} has a silver tag"}, {"index": 417, "image_id": 2385466, "entity": "dog", "caption": "the dog is in the passenger seat", "question": ["is there the dog ?", "is there the passenger seat ?"], "prompt": "the {} is in the passenger seat"}, {"index": 418, "image_id": 2385466, "entity": "dog", "caption": "the dog has white parts of the eyes showing", "question": ["is there the dog ?", "are there white parts ?", "are there the eyes ?"], "prompt": "the {} has white parts of the eyes showing"}, {"index": 419, "image_id": 2385466, "entity": "dog", "caption": "A dog has a tag", "question": ["is there a dog ?", "is there a tag ?"], "prompt": "A {} has a tag"}, {"index": 420, "image_id": 2385345, "entity": "dog", "caption": "the dog is leaning on the bedding", "question": ["is there the dog ?", "is there the bedding ?"], "prompt": "the {} is leaning on the bedding"}, {"index": 421, "image_id": 2385345, "entity": "dog", "caption": "the bed is behind the dog", "question": ["is there the bed ?", "is there the dog ?"], "prompt": "the bed is behind the {}"}, {"index": 422, "image_id": 2385299, "entity": "dog", "caption": "white dog is lying on a bed", "question": ["is there white dog ?", "is there a bed ?"], "prompt": "white {} is lying on a bed"}, {"index": 423, "image_id": 2385299, "entity": "dog", "caption": "tail of dog is on bed", "question": ["is there tail ?", "is there dog ?", "is there bed ?"], "prompt": "tail of {} is on bed"}, {"index": 424, "image_id": 2385299, "entity": "dog", "caption": "eyes of dog are black", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are black"}, {"index": 425, "image_id": 2385299, "entity": "dog", "caption": "eyes and nose of dog are black", "question": ["are there eyes ?", "is there nose ?", "is there dog ?"], "prompt": "eyes and nose of {} are black"}, {"index": 426, "image_id": 2385299, "entity": "dog", "caption": "a dog collar has a tag", "question": ["is there a dog collar ?", "is there a tag ?"], "prompt": "a {} collar has a tag"}, {"index": 427, "image_id": 2385299, "entity": "dog", "caption": "legs and chest of dog are white", "question": ["are there legs ?", "is there chest ?", "is there dog ?"], "prompt": "legs and chest of {} are white"}, {"index": 428, "image_id": 2384917, "entity": "dog", "caption": "dogs tongue sticking out", "question": ["are there dogs ?", "is there tongue ?"], "prompt": "{}s tongue sticking out"}, {"index": 429, "image_id": 2384917, "entity": "dog", "caption": "brown pointy ear on dog", "question": ["is there brown pointy ear ?", "is there dog ?"], "prompt": "brown pointy ear on {}"}, {"index": 430, "image_id": 2384563, "entity": "dog", "caption": "dog curled up on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} curled up on a couch"}, {"index": 431, "image_id": 2384563, "entity": "dog", "caption": "a dog curled up on a cushion", "question": ["is there a dog ?", "is there a cushion ?"], "prompt": "a {} curled up on a cushion"}, {"index": 432, "image_id": 2384452, "entity": "dog", "caption": "dog is wearing a green collar ", "question": ["is there dog ?", "is there a green collar ?"], "prompt": "{} is wearing a green collar "}, {"index": 433, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear is bent ", "question": ["are there the dogs ?"], "prompt": "the {}s ear is bent "}, {"index": 434, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear ", "question": ["are there the dogs ?"], "prompt": "the {}s ear "}, {"index": 435, "image_id": 2384424, "entity": "dog", "caption": "the dog is beside the bike", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is beside the bike"}, {"index": 436, "image_id": 2384322, "entity": "dog", "caption": "Reindeer stuffed animal on the dog.", "question": ["is there reindeer ?", "is there animal ?", "is there the dog ?"], "prompt": "Reindeer stuffed animal on the {}."}, {"index": 437, "image_id": 2384105, "entity": "dog", "caption": "dog's collar is green", "question": ["is there dog's collar ?"], "prompt": "{}'s collar is green"}, {"index": 438, "image_id": 2384105, "entity": "dog", "caption": "the dog bed is plaid patterned", "question": ["is there the dog bed ?"], "prompt": "the {} bed is plaid patterned"}, {"index": 439, "image_id": 2384105, "entity": "dog", "caption": "dog's ears pointing upwards", "question": ["are there dog's ears ?"], "prompt": "{}'s ears pointing upwards"}, {"index": 440, "image_id": 2384105, "entity": "dog", "caption": "Black pillow dog is laying on", "question": ["is there black pillow dog ?"], "prompt": "Black pillow {} is laying on"}, {"index": 441, "image_id": 2384105, "entity": "dog", "caption": "Collar dog is wearing", "question": ["is there collar dog ?"], "prompt": "Collar {} is wearing"}, {"index": 442, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan", "question": ["is there dog toy ?", "is there tan ?"], "prompt": "{} toy is tan"}, {"index": 443, "image_id": 2383524, "entity": "dog", "caption": "dog is lying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying on the floor"}, {"index": 444, "image_id": 2383524, "entity": "dog", "caption": "dog has the toy in it's mouth", "question": ["is there dog ?", "is there the toy ?"], "prompt": "{} has the toy in it's mouth"}, {"index": 445, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan and hairy", "question": ["is there dog toy ?"], "prompt": "{} toy is tan and hairy"}, {"index": 446, "image_id": 2383524, "entity": "dog", "caption": "dog has whiskers that are white", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers that are white"}, {"index": 447, "image_id": 2383524, "entity": "dog", "caption": "dog is laying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is laying on the floor"}, {"index": 448, "image_id": 2383524, "entity": "dog", "caption": "dog has black ears", "question": ["is there dog ?", "are there black ears ?"], "prompt": "{} has black ears"}, {"index": 449, "image_id": 2383524, "entity": "dog", "caption": "dog is lying down on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying down on the floor"}, {"index": 450, "image_id": 2383524, "entity": "dog", "caption": "dog toy is brown", "question": ["is there dog toy ?"], "prompt": "{} toy is brown"}, {"index": 451, "image_id": 2383524, "entity": "dog", "caption": "dog has toy in it's mouth", "question": ["is there dog ?", "is there toy ?", "is there it's mouth ?"], "prompt": "{} has toy in it's mouth"}, {"index": 452, "image_id": 2383524, "entity": "dog", "caption": "dog has white whiskers", "question": ["is there dog ?", "are there white whiskers ?"], "prompt": "{} has white whiskers"}, {"index": 453, "image_id": 2383524, "entity": "dog", "caption": "the dog has a nose", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "the {} has a nose"}, {"index": 454, "image_id": 2383524, "entity": "dog", "caption": "the dog has eyes", "question": ["is there the dog ?", "are there eyes ?"], "prompt": "the {} has eyes"}, {"index": 455, "image_id": 2383524, "entity": "dog", "caption": "the dog has an ear", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "the {} has an ear"}, {"index": 456, "image_id": 2383524, "entity": "dog", "caption": "The dog's face looks angry", "question": ["is there the dog's face ?"], "prompt": "The {}'s face looks angry"}, {"index": 457, "image_id": 2383242, "entity": "dog", "caption": "The dog is between the persons legs", "question": ["is there the dog ?", "are there the persons legs ?"], "prompt": "The {} is between the persons legs"}, {"index": 458, "image_id": 2382434, "entity": "dog", "caption": "The dog is on the counter", "question": ["is there the dog ?", "is there the counter ?"], "prompt": "The {} is on the counter"}, {"index": 459, "image_id": 2382434, "entity": "dog", "caption": "The dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black"}, {"index": 460, "image_id": 2382434, "entity": "dog", "caption": "The dog has long fur.", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur."}, {"index": 461, "image_id": 2382434, "entity": "dog", "caption": "The dog is on a table.", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table."}, {"index": 462, "image_id": 2382434, "entity": "dog", "caption": "The dog is sniffing the newspaper.", "question": ["is there the dog ?", "is there the newspaper ?"], "prompt": "The {} is sniffing the newspaper."}, {"index": 463, "image_id": 2382434, "entity": "dog", "caption": "The dog has curly fur", "question": ["is there the dog ?", "is there curly fur ?"], "prompt": "The {} has curly fur"}, {"index": 464, "image_id": 2382434, "entity": "dog", "caption": "the dog`s nose is black", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is black"}, {"index": 465, "image_id": 2382434, "entity": "dog", "caption": "the dog`s eyes are black", "question": ["are there the dog`s eyes ?"], "prompt": "the {}`s eyes are black"}, {"index": 466, "image_id": 2382434, "entity": "dog", "caption": "the dog`s hair is curly", "question": ["is there the dog`s hair ?"], "prompt": "the {}`s hair is curly"}, {"index": 467, "image_id": 2382434, "entity": "dog", "caption": "the dog is smelling the paper", "question": ["is there the dog ?", "is there the paper ?"], "prompt": "the {} is smelling the paper"}, {"index": 468, "image_id": 2382396, "entity": "dog", "caption": "a dog is asleep", "question": ["is there a dog ?"], "prompt": "a {} is asleep"}, {"index": 469, "image_id": 2382396, "entity": "dog", "caption": "The dog's paw is on the remote", "question": ["is there the dog's paw ?", "is there the remote ?"], "prompt": "The {}'s paw is on the remote"}, {"index": 470, "image_id": 2382396, "entity": "dog", "caption": "The dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are closed"}, {"index": 471, "image_id": 2382396, "entity": "dog", "caption": "The dog is sleep on the couch.", "question": ["is there the dog ?", "is there sleep ?", "is there the couch ?"], "prompt": "The {} is sleep on the couch."}, {"index": 472, "image_id": 2382396, "entity": "dog", "caption": "The dog has two ears.", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "The {} has two ears."}, {"index": 473, "image_id": 2382396, "entity": "dog", "caption": "A dog is in the foreground", "question": ["is there a dog ?", "is there the foreground ?"], "prompt": "A {} is in the foreground"}, {"index": 474, "image_id": 2382082, "entity": "dog", "caption": "the dog`s nose is brown", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is brown"}, {"index": 475, "image_id": 2382082, "entity": "dog", "caption": "the dog`s stomach is wet", "question": ["is there the dog`s stomach ?"], "prompt": "the {}`s stomach is wet"}, {"index": 476, "image_id": 2382082, "entity": "dog", "caption": "dog is in the beach", "question": ["is there dog ?", "is there the beach ?"], "prompt": "{} is in the beach"}, {"index": 477, "image_id": 2382082, "entity": "dog", "caption": "tail of dog is up", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is up"}, {"index": 478, "image_id": 2382082, "entity": "dog", "caption": "face of dog is white and brown", "question": ["is there face ?", "is there dog ?"], "prompt": "face of {} is white and brown"}, {"index": 479, "image_id": 2382082, "entity": "dog", "caption": "collar of dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar of {} is black"}, {"index": 480, "image_id": 2382082, "entity": "dog", "caption": "ears of dog are down ", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are down "}, {"index": 481, "image_id": 2381848, "entity": "dog", "caption": "ear of dog is brown", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is brown"}, {"index": 482, "image_id": 2381777, "entity": "dog", "caption": "Leash attached to the dog", "question": ["is there the dog ?"], "prompt": "Leash attached to the {}"}, {"index": 483, "image_id": 2381777, "entity": "dog", "caption": "the dog is wearing a floater", "question": ["is there the dog ?", "is there a floater ?"], "prompt": "the {} is wearing a floater"}, {"index": 484, "image_id": 2381777, "entity": "dog", "caption": "this is the rope tying the dog", "question": ["is there the rope ?", "is there the dog ?"], "prompt": "this is the rope tying the {}"}, {"index": 485, "image_id": 2381403, "entity": "dog", "caption": "bull dog is wearing a black and red vest ", "question": ["is there bull dog ?", "is there a black and red vest ?"], "prompt": "bull {} is wearing a black and red vest "}, {"index": 486, "image_id": 2381403, "entity": "dog", "caption": "bull dog is standing on a blue surfboard ", "question": ["is there bull dog ?", "is there a blue surfboard ?"], "prompt": "bull {} is standing on a blue surfboard "}, {"index": 487, "image_id": 2381403, "entity": "dog", "caption": "the dog has an overbite", "question": ["is there the dog ?", "is there an overbite ?"], "prompt": "the {} has an overbite"}, {"index": 488, "image_id": 2381403, "entity": "dog", "caption": "the dog is wearing a life vest", "question": ["is there the dog ?", "is there a life vest ?"], "prompt": "the {} is wearing a life vest"}, {"index": 489, "image_id": 2381403, "entity": "dog", "caption": "the dog has front legs", "question": ["is there the dog ?", "are there front legs ?"], "prompt": "the {} has front legs"}, {"index": 490, "image_id": 2381403, "entity": "dog", "caption": "the dog is on the board", "question": ["is there the dog ?", "is there the board ?"], "prompt": "the {} is on the board"}, {"index": 491, "image_id": 2381375, "entity": "dog", "caption": "the dog is lying on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is lying on the ground"}, {"index": 492, "image_id": 2381375, "entity": "dog", "caption": "the dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} is on a leash"}, {"index": 493, "image_id": 2380480, "entity": "dog", "caption": "The dog's reflection is in a mirror.", "question": ["is there the dog's reflection ?", "is there a mirror ?"], "prompt": "The {}'s reflection is in a mirror."}, {"index": 494, "image_id": 2380480, "entity": "dog", "caption": "The dog's tongue is showing. ", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is showing. "}, {"index": 495, "image_id": 2380480, "entity": "dog", "caption": "The dog's legs are in the foreground.", "question": ["are there the dog's legs ?", "is there the foreground ?"], "prompt": "The {}'s legs are in the foreground."}, {"index": 496, "image_id": 2380480, "entity": "dog", "caption": "The dog's nose is black. ", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black. "}, {"index": 497, "image_id": 2380480, "entity": "dog", "caption": "the dog has an eye", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 498, "image_id": 2380480, "entity": "dog", "caption": "the dog has a tongue", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "the {} has a tongue"}, {"index": 499, "image_id": 2380480, "entity": "dog", "caption": "the dog has a long ear", "question": ["is there the dog ?", "is there a long ear ?"], "prompt": "the {} has a long ear"}, {"index": 500, "image_id": 2380237, "entity": "dog", "caption": "the dog has its mouth open", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 501, "image_id": 2380237, "entity": "dog", "caption": "the dog has a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar"}, {"index": 502, "image_id": 2380237, "entity": "dog", "caption": "the dog's collar is blue", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is blue"}, {"index": 503, "image_id": 2380237, "entity": "dog", "caption": "the dog has a pointy ear", "question": ["is there the dog ?", "is there a pointy ear ?"], "prompt": "the {} has a pointy ear"}, {"index": 504, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy ears", "question": ["is there dog ?", "are there pointy ears ?"], "prompt": "{} has pointy ears"}, {"index": 505, "image_id": 2380237, "entity": "dog", "caption": "dog has short legs", "question": ["is there dog ?", "are there short legs ?"], "prompt": "{} has short legs"}, {"index": 506, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy teeth", "question": ["is there dog ?", "are there pointy teeth ?"], "prompt": "{} has pointy teeth"}, {"index": 507, "image_id": 2380237, "entity": "dog", "caption": "the dog is attempting to catch a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is attempting to catch a frisbee"}, {"index": 508, "image_id": 2380237, "entity": "dog", "caption": "the dog is down on his \"knees\"", "question": ["is there the dog ?", "are there his \"knees ?"], "prompt": "the {} is down on his \"knees\""}, {"index": 509, "image_id": 2380237, "entity": "dog", "caption": "dog's mouth wide open", "question": [], "prompt": "{}'s mouth wide open"}, {"index": 510, "image_id": 2380220, "entity": "dog", "caption": "dog is laying on stuffed animal ", "question": ["is there dog ?", "is there stuffed animal ?"], "prompt": "{} is laying on stuffed animal "}, {"index": 511, "image_id": 2380220, "entity": "dog", "caption": "dogs ear is black ", "question": ["are there dogs ?"], "prompt": "{}s ear is black "}, {"index": 512, "image_id": 2379710, "entity": "dog", "caption": "water splashing next to dog", "question": ["is there dog ?"], "prompt": "water splashing next to {}"}, {"index": 513, "image_id": 2379519, "entity": "dog", "caption": "The dog has it's tongue out.", "question": ["is there the dog ?", "is there tongue ?"], "prompt": "The {} has it's tongue out."}, {"index": 514, "image_id": 2379519, "entity": "dog", "caption": "The dog has brown eyes.", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes."}, {"index": 515, "image_id": 2379470, "entity": "dog", "caption": "The dog has a brown spot over one eye.", "question": ["is there the dog ?", "is there a brown spot ?", "is there one eye ?"], "prompt": "The {} has a brown spot over one eye."}, {"index": 516, "image_id": 2379470, "entity": "dog", "caption": "The dog has a spotted ear.", "question": ["is there the dog ?", "is there a spotted ear ?"], "prompt": "The {} has a spotted ear."}, {"index": 517, "image_id": 2379470, "entity": "dog", "caption": "The dog has a short tail.", "question": ["is there the dog ?", "is there a short tail ?"], "prompt": "The {} has a short tail."}, {"index": 518, "image_id": 2379470, "entity": "dog", "caption": "The dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar."}, {"index": 519, "image_id": 2379470, "entity": "dog", "caption": "The dog has a closed mouth.", "question": ["is there the dog ?", "is there a closed mouth ?"], "prompt": "The {} has a closed mouth."}, {"index": 520, "image_id": 2378890, "entity": "dog", "caption": "The dog has a chain collar.", "question": ["is there the dog ?", "is there a chain collar ?"], "prompt": "The {} has a chain collar."}, {"index": 521, "image_id": 2378890, "entity": "dog", "caption": "The dog is playing with the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee."}, {"index": 522, "image_id": 2378872, "entity": "dog", "caption": "dog has grey fur", "question": ["is there dog ?"], "prompt": "{} has grey fur"}, {"index": 523, "image_id": 2378872, "entity": "dog", "caption": "other dog has black fur", "question": ["is there other dog ?", "is there black fur ?"], "prompt": "other {} has black fur"}, {"index": 524, "image_id": 2378872, "entity": "dog", "caption": "other dog has brown face", "question": ["is there other dog ?", "is there brown face ?"], "prompt": "other {} has brown face"}, {"index": 525, "image_id": 2378872, "entity": "dog", "caption": "nose of the dog with mouth closed", "question": ["is there nose ?", "is there the dog ?", "is there mouth ?"], "prompt": "nose of the {} with mouth closed"}, {"index": 526, "image_id": 2378872, "entity": "dog", "caption": "eye of the dog with mouth shut", "question": ["is there eye ?", "is there the dog ?", "is there mouth ?"], "prompt": "eye of the {} with mouth shut"}, {"index": 527, "image_id": 2378738, "entity": "dog", "caption": "the dog's tongue is sticking out", "question": ["is there the dog's tongue ?"], "prompt": "the {}'s tongue is sticking out"}, {"index": 528, "image_id": 2378738, "entity": "dog", "caption": "the dog is wearing a harness", "question": ["is there the dog ?", "is there a harness ?"], "prompt": "the {} is wearing a harness"}, {"index": 529, "image_id": 2378738, "entity": "dog", "caption": "the dog has whiskers ", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers "}, {"index": 530, "image_id": 2378738, "entity": "dog", "caption": "the dog's collar has a silver tag", "question": ["is there the dog's collar ?", "is there a silver tag ?"], "prompt": "the {}'s collar has a silver tag"}, {"index": 531, "image_id": 2378738, "entity": "dog", "caption": "the dog has teeth", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "the {} has teeth"}, {"index": 532, "image_id": 2378738, "entity": "dog", "caption": "the dogs curved tail", "question": ["are there the dogs ?", "is there tail ?"], "prompt": "the {}s curved tail"}, {"index": 533, "image_id": 2378738, "entity": "dog", "caption": "the dog collar is dark brown", "question": ["is there the dog collar ?"], "prompt": "the {} collar is dark brown"}, {"index": 534, "image_id": 2378738, "entity": "dog", "caption": "the dog`s mouth is open", "question": ["is there the dog`s mouth ?"], "prompt": "the {}`s mouth is open"}, {"index": 535, "image_id": 2378738, "entity": "dog", "caption": "the dog`s neck is white", "question": ["is there the dog`s neck ?"], "prompt": "the {}`s neck is white"}, {"index": 536, "image_id": 2378738, "entity": "dog", "caption": "the dog`s face is multi colored", "question": ["is there the dog`s face ?"], "prompt": "the {}`s face is multi colored"}, {"index": 537, "image_id": 2378013, "entity": "dog", "caption": "paws of dog are black", "question": ["are there paws ?", "is there dog ?"], "prompt": "paws of {} are black"}, {"index": 538, "image_id": 2378013, "entity": "dog", "caption": "hair eyes of dog are big", "question": ["are there hair eyes ?", "is there dog ?"], "prompt": "hair eyes of {} are big"}, {"index": 539, "image_id": 2378013, "entity": "dog", "caption": "dog is wearing a bandana", "question": ["is there dog ?", "is there a bandana ?"], "prompt": "{} is wearing a bandana"}, {"index": 540, "image_id": 2377946, "entity": "dog", "caption": "The dog is on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "The {} is on the bed"}, {"index": 541, "image_id": 2377946, "entity": "dog", "caption": "The dog has a red blanket", "question": ["is there the dog ?", "is there a red blanket ?"], "prompt": "The {} has a red blanket"}, {"index": 542, "image_id": 2377695, "entity": "dog", "caption": "the dogs pink tounge", "question": ["are there the dogs ?"], "prompt": "the {}s pink tounge"}, {"index": 543, "image_id": 2377541, "entity": "dog", "caption": "a dogs ear with black spots", "question": ["are there a dogs ?", "are there black spots ?"], "prompt": "a {}s ear with black spots"}, {"index": 544, "image_id": 2377541, "entity": "dog", "caption": "wet dog standing in pond", "question": ["is there wet dog ?", "is there pond ?"], "prompt": "wet {} standing in pond"}, {"index": 545, "image_id": 2377276, "entity": "dog", "caption": "fur of dog is long", "question": ["is there fur ?", "is there dog ?"], "prompt": "fur of {} is long"}, {"index": 546, "image_id": 2377096, "entity": "dog", "caption": "the dog's snout is black", "question": ["is there the dog's snout ?"], "prompt": "the {}'s snout is black"}, {"index": 547, "image_id": 2377096, "entity": "dog", "caption": "the dog has a leather collar", "question": ["is there the dog ?", "is there a leather collar ?"], "prompt": "the {} has a leather collar"}, {"index": 548, "image_id": 2377096, "entity": "dog", "caption": "the dog has black ears ", "question": ["is there the dog ?", "are there black ears ?"], "prompt": "the {} has black ears "}, {"index": 549, "image_id": 2376453, "entity": "dog", "caption": "the dog has an orange collar ", "question": ["is there the dog ?", "is there an orange collar ?"], "prompt": "the {} has an orange collar "}, {"index": 550, "image_id": 2376453, "entity": "dog", "caption": "this is an ear of a dog", "question": ["is there an ear ?", "is there a dog ?"], "prompt": "this is an ear of a {}"}, {"index": 551, "image_id": 2376453, "entity": "dog", "caption": "this is a tongue of a dog", "question": ["is there a tongue ?", "is there a dog ?"], "prompt": "this is a tongue of a {}"}, {"index": 552, "image_id": 2376453, "entity": "dog", "caption": "two dogs leashed to post", "question": ["are there two dogs ?"], "prompt": "two {}s leashed to post"}, {"index": 553, "image_id": 2376453, "entity": "dog", "caption": "two dogs tied to a tree", "question": ["are there two dogs ?", "is there a tree ?"], "prompt": "two {}s tied to a tree"}, {"index": 554, "image_id": 2376406, "entity": "dog", "caption": "dog has it's mouth open", "question": ["is there dog ?"], "prompt": "{} has it's mouth open"}, {"index": 555, "image_id": 2376406, "entity": "dog", "caption": "dog is leaning against the sofa", "question": ["is there dog ?", "is there the sofa ?"], "prompt": "{} is leaning against the sofa"}, {"index": 556, "image_id": 2376406, "entity": "dog", "caption": "dog's teeth are white", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are white"}, {"index": 557, "image_id": 2376134, "entity": "dog", "caption": "A dog is smelling a cat", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} is smelling a cat"}, {"index": 558, "image_id": 2376134, "entity": "dog", "caption": "An old dog is greeting the new cat", "question": ["is there an old dog ?", "is there the new cat ?"], "prompt": "An old {} is greeting the new cat"}, {"index": 559, "image_id": 2376134, "entity": "dog", "caption": "A cat is friends with a dog", "question": ["is there a cat ?", "are there friends ?", "is there a dog ?"], "prompt": "A cat is friends with a {}"}, {"index": 560, "image_id": 2376134, "entity": "dog", "caption": "dog has two ears.", "question": ["is there dog ?", "are there two ears ?"], "prompt": "{} has two ears."}, {"index": 561, "image_id": 2376108, "entity": "dog", "caption": "dog has purple collar", "question": ["is there dog ?", "is there purple collar ?"], "prompt": "{} has purple collar"}, {"index": 562, "image_id": 2376108, "entity": "dog", "caption": "dog has brown nose", "question": ["is there dog ?", "is there brown nose ?"], "prompt": "{} has brown nose"}, {"index": 563, "image_id": 2376108, "entity": "dog", "caption": "dog has light brown hair", "question": ["is there dog ?", "is there light brown hair ?"], "prompt": "{} has light brown hair"}, {"index": 564, "image_id": 2376108, "entity": "dog", "caption": "dog has dark brown ears", "question": ["is there dog ?", "are there dark brown ears ?"], "prompt": "{} has dark brown ears"}, {"index": 565, "image_id": 2375658, "entity": "dog", "caption": "Sad looking dog face", "question": ["is there sad looking dog face ?"], "prompt": "Sad looking {} face"}, {"index": 566, "image_id": 2375561, "entity": "dog", "caption": "The dog is wearing a blue harness", "question": ["is there the dog ?", "is there a blue harness ?"], "prompt": "The {} is wearing a blue harness"}, {"index": 567, "image_id": 2375561, "entity": "dog", "caption": "The dog is standing on a chair.", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} is standing on a chair."}, {"index": 568, "image_id": 2375451, "entity": "dog", "caption": "the dogs nose is black ", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black "}, {"index": 569, "image_id": 2375428, "entity": "dog", "caption": "The dog is looking at the camera", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera"}, {"index": 570, "image_id": 2375428, "entity": "dog", "caption": "The dog has long fur", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur"}, {"index": 571, "image_id": 2374930, "entity": "dog", "caption": "baby is leaning on a dog", "question": ["is there baby ?", "is there a dog ?"], "prompt": "baby is leaning on a {}"}, {"index": 572, "image_id": 2374930, "entity": "dog", "caption": "nose of dog is brown ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is brown "}, {"index": 573, "image_id": 2374268, "entity": "dog", "caption": "the dog's leg hanging over the sofa", "question": ["is there the dog's leg ?", "is there the sofa ?"], "prompt": "the {}'s leg hanging over the sofa"}, {"index": 574, "image_id": 2374268, "entity": "dog", "caption": "dog has face buried in the couch", "question": ["is there dog ?", "is there face ?", "is there the couch ?"], "prompt": "{} has face buried in the couch"}, {"index": 575, "image_id": 2374132, "entity": "dog", "caption": "dog has light brown paws", "question": ["is there dog ?", "are there light brown paws ?"], "prompt": "{} has light brown paws"}, {"index": 576, "image_id": 2374013, "entity": "dog", "caption": "dog's ears are light brown", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are light brown"}, {"index": 577, "image_id": 2373955, "entity": "dog", "caption": "a brown hat the dog is wearing", "question": ["is there a brown hat ?", "is there the dog ?"], "prompt": "a brown hat the {} is wearing"}, {"index": 578, "image_id": 2373955, "entity": "dog", "caption": "black dog kissing man", "question": ["is there black dog kissing man ?"], "prompt": "black {} kissing man"}, {"index": 579, "image_id": 2373533, "entity": "dog", "caption": "eyes of dog are big", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are big"}, {"index": 580, "image_id": 2373533, "entity": "dog", "caption": "mouth of dog is touching a rail", "question": ["is there mouth ?", "is there dog ?", "is there a rail ?"], "prompt": "mouth of {} is touching a rail"}, {"index": 581, "image_id": 2373340, "entity": "dog", "caption": "dog is wearing pink collar", "question": ["is there dog ?", "is there pink collar ?"], "prompt": "{} is wearing pink collar"}, {"index": 582, "image_id": 2373340, "entity": "dog", "caption": "dogs nose is brown", "question": ["are there dogs nose ?"], "prompt": "{}s nose is brown"}, {"index": 583, "image_id": 2373340, "entity": "dog", "caption": "dog right ear is brown", "question": ["is there dog right ear ?"], "prompt": "{} right ear is brown"}, {"index": 584, "image_id": 2373155, "entity": "dog", "caption": "dogs has a chain on his neck", "question": ["are there dogs ?", "is there a chain ?", "is there his neck ?"], "prompt": "{}s has a chain on his neck"}, {"index": 585, "image_id": 2373141, "entity": "dog", "caption": "This is a man with a dog", "question": ["is there a man ?", "is there a dog ?"], "prompt": "This is a man with a {}"}, {"index": 586, "image_id": 2373109, "entity": "dog", "caption": "the dog is on the ground ", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground "}, {"index": 587, "image_id": 2373073, "entity": "dog", "caption": "dog is wearing a hat ", "question": ["is there dog ?", "is there a hat ?"], "prompt": "{} is wearing a hat "}, {"index": 588, "image_id": 2372988, "entity": "dog", "caption": "Water drips down dog's face.", "question": ["is there water ?", "is there dog's face ?"], "prompt": "Water drips down {}'s face."}, {"index": 589, "image_id": 2372988, "entity": "dog", "caption": "dog is wearing a chain", "question": ["is there dog ?", "is there a chain ?"], "prompt": "{} is wearing a chain"}, {"index": 590, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A {} is riding in a car"}, {"index": 591, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in the passenger seat", "question": ["is there a dog ?", "is there the passenger seat ?"], "prompt": "A {} is riding in the passenger seat"}, {"index": 592, "image_id": 2372618, "entity": "dog", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A {} is in its master's car"}, {"index": 593, "image_id": 2372618, "entity": "dog", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} likes riding in a car"}, {"index": 594, "image_id": 2372618, "entity": "dog", "caption": "The dog is looking out the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is looking out the window"}, {"index": 595, "image_id": 2372586, "entity": "dog", "caption": "The dog is sitting on a bench.", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is sitting on a bench."}, {"index": 596, "image_id": 2372586, "entity": "dog", "caption": "dog is wearing a blue harness", "question": ["is there dog ?", "is there a blue harness ?"], "prompt": "{} is wearing a blue harness"}, {"index": 597, "image_id": 2372586, "entity": "dog", "caption": "the dog has a white belly", "question": ["is there the dog ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 598, "image_id": 2372549, "entity": "dog", "caption": "the dog looks sleepy", "question": ["is there the dog ?"], "prompt": "the {} looks sleepy"}, {"index": 599, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is laying on a stuffed animal"}, {"index": 600, "image_id": 2372549, "entity": "dog", "caption": "the dog is pale tan in color", "question": ["is there the dog ?", "is there pale tan ?", "is there color ?"], "prompt": "the {} is pale tan in color"}, {"index": 601, "image_id": 2372549, "entity": "dog", "caption": "stuffed animal dog is sleeping on", "question": ["is there stuffed animal dog ?"], "prompt": "stuffed animal {} is sleeping on"}, {"index": 602, "image_id": 2372549, "entity": "dog", "caption": "red bed dog is sleeping on", "question": ["is there red bed dog ?"], "prompt": "red bed {} is sleeping on"}, {"index": 603, "image_id": 2372549, "entity": "dog", "caption": "the cushion under the dog is red", "question": ["is there the cushion ?", "is there the dog ?"], "prompt": "the cushion under the {} is red"}, {"index": 604, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a cushion", "question": ["is there the dog ?", "is there a cushion ?"], "prompt": "the {} is laying on a cushion"}, {"index": 605, "image_id": 2372549, "entity": "dog", "caption": "The dog ear on the right", "question": ["is there the dog ear ?", "is there the right ?"], "prompt": "The {} ear on the right"}, {"index": 606, "image_id": 2372293, "entity": "dog", "caption": "Dog leash on the beige dog", "question": ["is there dog ?", "is there the beige dog ?"], "prompt": "Dog leash on the beige {}"}, {"index": 607, "image_id": 2372293, "entity": "dog", "caption": "dog has white teeth", "question": ["is there dog ?", "are there white teeth ?"], "prompt": "{} has white teeth"}, {"index": 608, "image_id": 2372293, "entity": "dog", "caption": "dog has black under his lip", "question": ["is there dog ?", "is there his lip ?"], "prompt": "{} has black under his lip"}, {"index": 609, "image_id": 2372091, "entity": "dog", "caption": "wooden bench dog is sitting on", "question": ["is there wooden bench dog ?"], "prompt": "wooden bench {} is sitting on"}, {"index": 610, "image_id": 2371865, "entity": "dog", "caption": "Flowered leash going to the dog", "question": ["is there flowered leash ?", "is there the dog ?"], "prompt": "Flowered leash going to the {}"}, {"index": 611, "image_id": 2371865, "entity": "dog", "caption": "dog looks off into distance", "question": ["is there dog ?", "is there distance ?"], "prompt": "{} looks off into distance"}, {"index": 612, "image_id": 2371865, "entity": "dog", "caption": "dog wears sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} wears sweater"}, {"index": 613, "image_id": 2371865, "entity": "dog", "caption": "dog sits next to bicycle", "question": ["is there dog ?", "is there bicycle ?"], "prompt": "{} sits next to bicycle"}, {"index": 614, "image_id": 2371865, "entity": "dog", "caption": "dog sits on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} sits on sidewalk"}, {"index": 615, "image_id": 2371865, "entity": "dog", "caption": "sweater is on dog", "question": ["is there dog ?"], "prompt": "sweater is on {}"}, {"index": 616, "image_id": 2371865, "entity": "dog", "caption": "dog is inside sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is inside sweater"}, {"index": 617, "image_id": 2371865, "entity": "dog", "caption": "The dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash"}, {"index": 618, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing near a bicycle", "question": ["is there the white dog ?", "is there a bicycle ?"], "prompt": "The white {} is standing near a bicycle"}, {"index": 619, "image_id": 2371865, "entity": "dog", "caption": "The white dog in the sweater has a bushy tail", "question": ["is there the white dog ?", "is there the sweater ?", "is there a bushy tail ?"], "prompt": "The white {} in the sweater has a bushy tail"}, {"index": 620, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing on the sidewalk", "question": ["is there the white dog ?", "is there the sidewalk ?"], "prompt": "The white {} is standing on the sidewalk"}, {"index": 621, "image_id": 2371612, "entity": "dog", "caption": "the dog is using the laptop", "question": ["is there the dog ?", "is there the laptop ?"], "prompt": "the {} is using the laptop"}, {"index": 622, "image_id": 2371612, "entity": "dog", "caption": "A dog with it's paws on a laptop.", "question": ["is there a dog ?", "are there it's paws ?", "is there a laptop ?"], "prompt": "A {} with it's paws on a laptop."}, {"index": 623, "image_id": 2371612, "entity": "dog", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The {} is using the computer "}, {"index": 624, "image_id": 2371612, "entity": "dog", "caption": "The nose of the dog is black ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "The nose of the {} is black "}, {"index": 625, "image_id": 2371612, "entity": "dog", "caption": "The eye of the dog is brown ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "The eye of the {} is brown "}, {"index": 626, "image_id": 2371520, "entity": "dog", "caption": "carpet dog is playing on", "question": ["is there carpet dog ?"], "prompt": "carpet {} is playing on"}, {"index": 627, "image_id": 2371249, "entity": "dog", "caption": "A dog has three colors of fur.", "question": ["is there a dog ?", "are there three colors ?", "is there fur ?"], "prompt": "A {} has three colors of fur."}, {"index": 628, "image_id": 2371249, "entity": "dog", "caption": "A dog is wearing a scarf around the neck.", "question": ["is there a dog ?", "is there a scarf ?", "is there the neck ?"], "prompt": "A {} is wearing a scarf around the neck."}, {"index": 629, "image_id": 2371249, "entity": "dog", "caption": "A woman is sitting close to a dog.", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman is sitting close to a {}."}, {"index": 630, "image_id": 2371169, "entity": "dog", "caption": "The dog has a frisbee in mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there mouth ?"], "prompt": "The {} has a frisbee in mouth."}, {"index": 631, "image_id": 2371169, "entity": "dog", "caption": "the dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar."}, {"index": 632, "image_id": 2371169, "entity": "dog", "caption": "The back left leg of a dog", "question": ["is there the back left leg ?", "is there a dog ?"], "prompt": "The back left leg of a {}"}, {"index": 633, "image_id": 2371169, "entity": "dog", "caption": "The front left leg of a dog", "question": ["is there the front left leg ?", "is there a dog ?"], "prompt": "The front left leg of a {}"}, {"index": 634, "image_id": 2371119, "entity": "dog", "caption": "the dog is laying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is laying on the bed"}, {"index": 635, "image_id": 2370667, "entity": "dog", "caption": "the dogs nail ", "question": ["are there the dogs ?"], "prompt": "the {}s nail "}, {"index": 636, "image_id": 2370647, "entity": "dog", "caption": "The dog has a serious face", "question": ["is there the dog ?", "is there a serious face ?"], "prompt": "The {} has a serious face"}, {"index": 637, "image_id": 2370647, "entity": "dog", "caption": "The dog has white whiskers.", "question": ["is there the dog ?", "are there white whiskers ?"], "prompt": "The {} has white whiskers."}, {"index": 638, "image_id": 2370647, "entity": "dog", "caption": "The dog has a brown colar.", "question": ["is there the dog ?", "is there a brown colar ?"], "prompt": "The {} has a brown colar."}, {"index": 639, "image_id": 2370508, "entity": "dog", "caption": "eye of dog is black ", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black "}, {"index": 640, "image_id": 2370508, "entity": "dog", "caption": "chest of dog is white", "question": ["is there chest ?", "is there dog ?"], "prompt": "chest of {} is white"}, {"index": 641, "image_id": 2370508, "entity": "dog", "caption": "dog has dog tags", "question": ["is there dog ?", "are there dog tags ?"], "prompt": "{} has {} tags"}, {"index": 642, "image_id": 2370342, "entity": "dog", "caption": "dog's head is on the pillow", "question": ["is there dog's head ?", "is there the pillow ?"], "prompt": "{}'s head is on the pillow"}, {"index": 643, "image_id": 2370107, "entity": "dog", "caption": "bottom left tooth of dog", "question": ["is there bottom ?", "is there tooth ?", "is there dog ?"], "prompt": "bottom left tooth of {}"}, {"index": 644, "image_id": 2369919, "entity": "dog", "caption": "dogs nose is black ", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black "}, {"index": 645, "image_id": 2369919, "entity": "dog", "caption": "the dog is laying down on a shoe ", "question": ["is there the dog ?", "is there a shoe ?"], "prompt": "the {} is laying down on a shoe "}, {"index": 646, "image_id": 2369591, "entity": "dog", "caption": "the dog has a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} has a leash"}, {"index": 647, "image_id": 2369591, "entity": "dog", "caption": "The dog's eye looking ahead", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye looking ahead"}, {"index": 648, "image_id": 2369270, "entity": "dog", "caption": "Frisbee is in the dog's mouth", "question": ["is there the dog's mouth ?"], "prompt": "Frisbee is in the {}'s mouth"}, {"index": 649, "image_id": 2368889, "entity": "dog", "caption": "Big brown dog spiked pink collar.", "question": ["is there big brown dog ?", "is there pink collar ?"], "prompt": "Big brown {} spiked pink collar."}, {"index": 650, "image_id": 2368858, "entity": "dog", "caption": "dog is laying on the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is laying on the ground"}, {"index": 651, "image_id": 2368858, "entity": "dog", "caption": "dog with tongue sticking out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue sticking out"}, {"index": 652, "image_id": 2368858, "entity": "dog", "caption": "the dog has a front paw", "question": ["is there the dog ?", "is there a front paw ?"], "prompt": "the {} has a front paw"}, {"index": 653, "image_id": 2368858, "entity": "dog", "caption": "the dog has nails", "question": ["is there the dog ?", "are there nails ?"], "prompt": "the {} has nails"}, {"index": 654, "image_id": 2368858, "entity": "dog", "caption": "the dog is lying down", "question": ["is there the dog ?"], "prompt": "the {} is lying down"}, {"index": 655, "image_id": 2368714, "entity": "dog", "caption": "dog curled up with a teddy bear", "question": ["is there dog ?"], "prompt": "{} curled up with a teddy bear"}, {"index": 656, "image_id": 2368714, "entity": "dog", "caption": "ear of dog is black ", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is black "}, {"index": 657, "image_id": 2368054, "entity": "dog", "caption": "dog has a purple leash", "question": ["is there dog ?", "is there a purple leash ?"], "prompt": "{} has a purple leash"}, {"index": 658, "image_id": 2368054, "entity": "dog", "caption": "this dog is wearing a red harness", "question": ["is there this dog ?", "is there a red harness ?"], "prompt": "this {} is wearing a red harness"}, {"index": 659, "image_id": 2367865, "entity": "dog", "caption": "The dog's eyes are yellow", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are yellow"}, {"index": 660, "image_id": 2367488, "entity": "dog", "caption": "the dog is inside a van", "question": ["is there the dog ?", "is there a van ?"], "prompt": "the {} is inside a van"}, {"index": 661, "image_id": 2367488, "entity": "dog", "caption": "the dog tag hanging", "question": ["is there the dog tag ?"], "prompt": "the {} tag hanging"}, {"index": 662, "image_id": 2367488, "entity": "dog", "caption": "The dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar"}, {"index": 663, "image_id": 2367488, "entity": "dog", "caption": "navy blanket dog is laying on", "question": ["is there navy blanket dog ?"], "prompt": "navy blanket {} is laying on"}, {"index": 664, "image_id": 2367488, "entity": "dog", "caption": "The dog's pink tongue is very long", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue is very long"}, {"index": 665, "image_id": 2367488, "entity": "dog", "caption": "A large tongue hanging out of the dog's mouth", "question": ["is there a large tongue ?", "is there the dog's mouth ?"], "prompt": "A large tongue hanging out of the {}'s mouth"}, {"index": 666, "image_id": 2367488, "entity": "dog", "caption": "The dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 667, "image_id": 2367433, "entity": "dog", "caption": "pizza that dog is eating", "question": ["is there pizza ?", "is there that dog ?"], "prompt": "pizza that {} is eating"}, {"index": 668, "image_id": 2367433, "entity": "dog", "caption": "steel grate that dog is standing on", "question": ["is there steel grate ?", "is there that dog ?"], "prompt": "steel grate that {} is standing on"}, {"index": 669, "image_id": 2367152, "entity": "dog", "caption": "mouth of dog is open", "question": ["is there mouth ?", "is there dog ?"], "prompt": "mouth of {} is open"}, {"index": 670, "image_id": 2366422, "entity": "dog", "caption": "dog tail held high", "question": ["is there dog tail ?"], "prompt": "{} tail held high"}, {"index": 671, "image_id": 2366422, "entity": "dog", "caption": "a dog that has brown eyes", "question": ["is there a dog ?", "are there brown eyes ?"], "prompt": "a {} that has brown eyes"}, {"index": 672, "image_id": 2366422, "entity": "dog", "caption": "the dog has a brown ear", "question": ["is there the dog ?", "is there a brown ear ?"], "prompt": "the {} has a brown ear"}, {"index": 673, "image_id": 2366422, "entity": "dog", "caption": "this dog has eyes", "question": ["is there this dog ?", "are there eyes ?"], "prompt": "this {} has eyes"}, {"index": 674, "image_id": 2366422, "entity": "dog", "caption": "this dog has ears", "question": ["is there this dog ?", "are there ears ?"], "prompt": "this {} has ears"}, {"index": 675, "image_id": 2366422, "entity": "dog", "caption": "this dog's nose is black", "question": ["is there this dog's nose ?"], "prompt": "this {}'s nose is black"}, {"index": 676, "image_id": 2366422, "entity": "dog", "caption": "this dog has a long tail", "question": ["is there this dog ?", "is there a long tail ?"], "prompt": "this {} has a long tail"}, {"index": 677, "image_id": 2365888, "entity": "dog", "caption": "the dog has a small tail", "question": ["is there the dog ?", "is there a small tail ?"], "prompt": "the {} has a small tail"}, {"index": 678, "image_id": 2365787, "entity": "dog", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th e{} is in the car "}, {"index": 679, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking outside the window"}, {"index": 680, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside ", "question": ["is there the dog ?"], "prompt": "the {} is looking outside "}, {"index": 681, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking through the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking through the window"}, {"index": 682, "image_id": 2365756, "entity": "dog", "caption": "the doghas a seat belt on ", "question": ["is there a seat belt ?"], "prompt": "the {}has a seat belt on "}, {"index": 683, "image_id": 2365756, "entity": "dog", "caption": "Black seatbelt holding back a dog. ", "question": ["is there black seatbelt ?", "is there a dog ?"], "prompt": "Black seatbelt holding back a {}. "}, {"index": 684, "image_id": 2365712, "entity": "dog", "caption": "the dog is licking the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is licking the cake"}, {"index": 685, "image_id": 2365044, "entity": "dog", "caption": "dog is wearing a bow tie ", "question": ["is there dog ?", "is there a bow tie ?"], "prompt": "{} is wearing a bow tie "}, {"index": 686, "image_id": 2364811, "entity": "dog", "caption": "The pillow the dog is laying on.", "question": ["is there the pillow ?", "is there the dog ?"], "prompt": "The pillow the {} is laying on."}, {"index": 687, "image_id": 2364811, "entity": "dog", "caption": "the dog is getting ready for bed", "question": ["is there the dog ?", "is there bed ?"], "prompt": "the {} is getting ready for bed"}, {"index": 688, "image_id": 2364811, "entity": "dog", "caption": "this dog looks comfortable in bed", "question": ["is there this dog ?", "is there bed ?"], "prompt": "this {} looks comfortable in bed"}, {"index": 689, "image_id": 2364811, "entity": "dog", "caption": "dog has hazel eyes", "question": ["is there dog ?", "are there hazel eyes ?"], "prompt": "{} has hazel eyes"}, {"index": 690, "image_id": 2364543, "entity": "dog", "caption": "dog is holding a ball", "question": ["is there dog ?", "is there a ball ?"], "prompt": "{} is holding a ball"}, {"index": 691, "image_id": 2364543, "entity": "dog", "caption": "black dog with paws forward looking at camera", "question": ["is there black dog ?", "are there paws ?", "is there camera ?"], "prompt": "black {} with paws forward looking at camera"}, {"index": 692, "image_id": 2364543, "entity": "dog", "caption": "dog has a ball inside his mouth", "question": ["is there dog ?", "is there a ball ?", "is there his mouth ?"], "prompt": "{} has a ball inside his mouth"}, {"index": 693, "image_id": 2364543, "entity": "dog", "caption": "snout of dog is color salt and pepper", "question": ["is there snout ?", "is there dog ?", "is there color salt ?", "is there pepper ?"], "prompt": "snout of {} is color salt and pepper"}, {"index": 694, "image_id": 2364504, "entity": "dog", "caption": "The dog is wearing a purple collar.", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "The {} is wearing a purple collar."}, {"index": 695, "image_id": 2364504, "entity": "dog", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One {} is sitting in the car."}, {"index": 696, "image_id": 2364448, "entity": "dog", "caption": "the dog has a paw", "question": ["is there the dog ?", "is there a paw ?"], "prompt": "the {} has a paw"}, {"index": 697, "image_id": 2364244, "entity": "dog", "caption": "the dog is wearing a tiara", "question": ["is there the dog ?", "is there a tiara ?"], "prompt": "the {} is wearing a tiara"}, {"index": 698, "image_id": 2364208, "entity": "dog", "caption": "the cow is looking at the dog", "question": ["is there the cow ?", "is there the dog ?"], "prompt": "the cow is looking at the {}"}, {"index": 699, "image_id": 2363392, "entity": "dog", "caption": "a dog with his tooth sticking out", "question": ["is there a dog ?", "is there his tooth ?"], "prompt": "a {} with his tooth sticking out"}, {"index": 700, "image_id": 2363392, "entity": "dog", "caption": "green couch cushion dog is sleeping on", "question": ["is there green couch cushion dog ?"], "prompt": "green couch cushion {} is sleeping on"}, {"index": 701, "image_id": 2363392, "entity": "dog", "caption": "dog lip pulled up against cushion", "question": ["is there dog lip ?", "is there cushion ?"], "prompt": "{} lip pulled up against cushion"}, {"index": 702, "image_id": 2363392, "entity": "dog", "caption": "dog's tongue sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue sticking out"}, {"index": 703, "image_id": 2363350, "entity": "dog", "caption": "A dog is laying in his bed", "question": ["is there a dog ?", "is there his bed ?"], "prompt": "A {} is laying in his bed"}, {"index": 704, "image_id": 2363350, "entity": "dog", "caption": "The dog is resting on a pillow", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is resting on a pillow"}, {"index": 705, "image_id": 2362763, "entity": "dog", "caption": "dog's teeth are showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are showing"}, {"index": 706, "image_id": 2362553, "entity": "dog", "caption": "dog with head tilted up", "question": ["is there dog ?", "is there head ?"], "prompt": "{} with head tilted up"}, {"index": 707, "image_id": 2362553, "entity": "dog", "caption": "the dog has a right eye", "question": ["is there the dog ?", "is there a right eye ?"], "prompt": "the {} has a right eye"}, {"index": 708, "image_id": 2362525, "entity": "dog", "caption": "The dog is in the bag", "question": ["is there the dog ?", "is there the bag ?"], "prompt": "The {} is in the bag"}, {"index": 709, "image_id": 2362525, "entity": "dog", "caption": "The bag is holding the dog", "question": ["is there the bag ?", "is there the dog ?"], "prompt": "The bag is holding the {}"}, {"index": 710, "image_id": 2362525, "entity": "dog", "caption": "The small backpack holds a dog", "question": ["is there the small backpack ?", "is there a dog ?"], "prompt": "The small backpack holds a {}"}, {"index": 711, "image_id": 2362525, "entity": "dog", "caption": "The dog is turning its head", "question": ["is there the dog ?", "is there its head ?"], "prompt": "The {} is turning its head"}, {"index": 712, "image_id": 2362525, "entity": "dog", "caption": "this is a \"doggy pack\"", "question": ["is there a \"doggy pack ?"], "prompt": "this is a \"{}gy pack\""}, {"index": 713, "image_id": 2362323, "entity": "dog", "caption": "dog is wearing chain collar", "question": ["is there dog ?", "is there chain collar ?"], "prompt": "{} is wearing chain collar"}, {"index": 714, "image_id": 2362323, "entity": "dog", "caption": "the dog is looking at the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is looking at the cake"}, {"index": 715, "image_id": 2362323, "entity": "dog", "caption": "the dog looks sad", "question": ["is there the dog ?"], "prompt": "the {} looks sad"}, {"index": 716, "image_id": 2362323, "entity": "dog", "caption": "the dog lays head on arm", "question": ["is there the dog ?", "is there head ?", "is there arm ?"], "prompt": "the {} lays head on arm"}, {"index": 717, "image_id": 2362323, "entity": "dog", "caption": "the dog has spots", "question": ["is there the dog ?", "are there spots ?"], "prompt": "the {} has spots"}, {"index": 718, "image_id": 2362323, "entity": "dog", "caption": "eye of dog is black", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black"}, {"index": 719, "image_id": 2362196, "entity": "dog", "caption": " a dog with it's tongue sticking out", "question": ["is there a dog ?", "is there tongue ?"], "prompt": " a {} with it's tongue sticking out"}, {"index": 720, "image_id": 2362106, "entity": "dog", "caption": "this is a dog ", "question": ["is there a dog ?"], "prompt": "this is a {} "}, {"index": 721, "image_id": 2362106, "entity": "dog", "caption": "the dog is lying down on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is lying down on the floor"}, {"index": 722, "image_id": 2362106, "entity": "dog", "caption": "The dog is in somebody's house", "question": ["is there the dog ?", "is there somebody's house ?"], "prompt": "The {} is in somebody's house"}, {"index": 723, "image_id": 2362106, "entity": "dog", "caption": "The dog is laying by the door", "question": ["is there the dog ?", "is there the door ?"], "prompt": "The {} is laying by the door"}, {"index": 724, "image_id": 2362106, "entity": "dog", "caption": "The dog is guarding the house", "question": ["is there the dog ?", "is there the house ?"], "prompt": "The {} is guarding the house"}, {"index": 725, "image_id": 2362106, "entity": "dog", "caption": "The dog is awake in daytime", "question": ["is there the dog ?", "is there daytime ?"], "prompt": "The {} is awake in daytime"}, {"index": 726, "image_id": 2362106, "entity": "dog", "caption": "The dog is waiting to go outside", "question": ["is there the dog ?"], "prompt": "The {} is waiting to go outside"}, {"index": 727, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting to be let out", "question": ["is there a dog ?"], "prompt": "A {} is waiting to be let out"}, {"index": 728, "image_id": 2362106, "entity": "dog", "caption": "A dog is sleeping on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is sleeping on the floor"}, {"index": 729, "image_id": 2362106, "entity": "dog", "caption": "A dog is looking for attention", "question": ["is there a dog ?", "is there attention ?"], "prompt": "A {} is looking for attention"}, {"index": 730, "image_id": 2362106, "entity": "dog", "caption": "The dog is looking lonely", "question": ["is there the dog ?"], "prompt": "The {} is looking lonely"}, {"index": 731, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting by the door", "question": ["is there a dog ?", "is there the door ?"], "prompt": "A {} is waiting by the door"}, {"index": 732, "image_id": 2362106, "entity": "dog", "caption": "A dog is laying on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is laying on the floor"}, {"index": 733, "image_id": 2362106, "entity": "dog", "caption": "The dog is wanting to be fed", "question": ["is there the dog ?"], "prompt": "The {} is wanting to be fed"}, {"index": 734, "image_id": 2362106, "entity": "dog", "caption": "The dog is enjoying its day", "question": ["is there the dog ?", "is there its day ?"], "prompt": "The {} is enjoying its day"}, {"index": 735, "image_id": 2362106, "entity": "dog", "caption": "The dog is getting some rest", "question": ["is there the dog ?", "is there some rest ?"], "prompt": "The {} is getting some rest"}, {"index": 736, "image_id": 2362106, "entity": "dog", "caption": "The dog belongs to the home owner", "question": ["is there the dog ?", "is there the home owner ?"], "prompt": "The {} belongs to the home owner"}, {"index": 737, "image_id": 2361653, "entity": "dog", "caption": "the dog has a left eye", "question": ["is there the dog ?", "is there a left eye ?"], "prompt": "the {} has a left eye"}, {"index": 738, "image_id": 2361100, "entity": "dog", "caption": "floppy black dog ear ", "question": ["is there floppy black dog ear ?"], "prompt": "floppy black {} ear "}, {"index": 739, "image_id": 2361100, "entity": "dog", "caption": "two dog ear in different positions at same time ", "question": ["is there two dog ear ?", "are there different positions ?", "is there same time ?"], "prompt": "two {} ear in different positions at same time "}, {"index": 740, "image_id": 2361100, "entity": "dog", "caption": "The dog's left ear flopped down", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear flopped down"}, {"index": 741, "image_id": 2361100, "entity": "dog", "caption": "the dog's right ear is up", "question": ["is there the dog's right ear ?"], "prompt": "the {}'s right ear is up"}, {"index": 742, "image_id": 2361100, "entity": "dog", "caption": "the dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are open"}, {"index": 743, "image_id": 2360869, "entity": "dog", "caption": "dog is laying on dog bed", "question": ["is there dog ?", "is there dog bed ?"], "prompt": "{} is laying on {} bed"}, {"index": 744, "image_id": 2360869, "entity": "dog", "caption": "dog has small nose", "question": ["is there dog ?", "is there small nose ?"], "prompt": "{} has small nose"}, {"index": 745, "image_id": 2360869, "entity": "dog", "caption": "dog bed is beige", "question": ["is there dog bed ?"], "prompt": "{} bed is beige"}, {"index": 746, "image_id": 2360869, "entity": "dog", "caption": "dog has wavy fur", "question": ["is there dog ?", "is there wavy fur ?"], "prompt": "{} has wavy fur"}, {"index": 747, "image_id": 2360869, "entity": "dog", "caption": "dog has fluffy tail", "question": ["is there dog ?", "is there fluffy tail ?"], "prompt": "{} has fluffy tail"}, {"index": 748, "image_id": 2360725, "entity": "dog", "caption": "the dog is biting an envelope", "question": ["is there the dog ?", "is there an envelope ?"], "prompt": "the {} is biting an envelope"}, {"index": 749, "image_id": 2360725, "entity": "dog", "caption": "dog is carrying an envelope", "question": ["is there dog ?", "is there an envelope ?"], "prompt": "{} is carrying an envelope"}, {"index": 750, "image_id": 2360542, "entity": "dog", "caption": "dog has black eyes", "question": ["is there dog ?", "are there black eyes ?"], "prompt": "{} has black eyes"}, {"index": 751, "image_id": 2360542, "entity": "dog", "caption": "pomeranian dog gets a ride inside duffle bag", "question": ["is there pomeranian dog ?", "is there a ride inside duffle bag ?"], "prompt": "pomeranian {} gets a ride inside duffle bag"}, {"index": 752, "image_id": 2360357, "entity": "dog", "caption": "The front left leg of the dog.", "question": ["is there the front left leg ?", "is there the dog ?"], "prompt": "The front left leg of the {}."}, {"index": 753, "image_id": 2360357, "entity": "dog", "caption": "eyes of dog are round", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are round"}, {"index": 754, "image_id": 2360357, "entity": "dog", "caption": "head of dog is brown", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown"}, {"index": 755, "image_id": 2360357, "entity": "dog", "caption": "dog has dark eyes ", "question": ["is there dog ?", "are there dark eyes ?"], "prompt": "{} has dark eyes "}, {"index": 756, "image_id": 2360299, "entity": "dog", "caption": "dog's right ear is black", "question": ["is there dog's right ear ?"], "prompt": "{}'s right ear is black"}, {"index": 757, "image_id": 2360145, "entity": "dog", "caption": "A shadow line is behind the dogs.", "question": ["is there a shadow line ?", "are there the dogs ?"], "prompt": "A shadow line is behind the {}s."}, {"index": 758, "image_id": 2359887, "entity": "dog", "caption": "dog with his eyes shut", "question": ["is there dog ?", "are there his eyes ?"], "prompt": "{} with his eyes shut"}, {"index": 759, "image_id": 2359887, "entity": "dog", "caption": "dog is on blanket", "question": ["is there dog ?", "is there blanket ?"], "prompt": "{} is on blanket"}, {"index": 760, "image_id": 2359887, "entity": "dog", "caption": "dog has blonde hair", "question": ["is there dog ?", "is there blonde hair ?"], "prompt": "{} has blonde hair"}, {"index": 761, "image_id": 2359887, "entity": "dog", "caption": "dog has long hair on ears", "question": ["is there dog ?", "is there long hair ?", "are there ears ?"], "prompt": "{} has long hair on ears"}, {"index": 762, "image_id": 2359809, "entity": "dog", "caption": "The rear left paw of the dog", "question": ["is there the rear left paw ?", "is there the dog ?"], "prompt": "The rear left paw of the {}"}, {"index": 763, "image_id": 2359809, "entity": "dog", "caption": "dog is standing on cement floors", "question": ["is there dog ?", "are there cement floors ?"], "prompt": "{} is standing on cement floors"}, {"index": 764, "image_id": 2359414, "entity": "dog", "caption": "the dog has a banana on its side", "question": ["is there the dog ?", "is there a banana ?", "is there its side ?"], "prompt": "the {} has a banana on its side"}, {"index": 765, "image_id": 2359172, "entity": "dog", "caption": "dog has brown ear", "question": ["is there dog ?", "is there brown ear ?"], "prompt": "{} has brown ear"}, {"index": 766, "image_id": 2359172, "entity": "dog", "caption": "dog has brown eye", "question": ["is there dog ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 767, "image_id": 2359073, "entity": "dog", "caption": "Cat is laying on top of dog.", "question": ["is there cat ?", "is there top ?", "is there dog ?"], "prompt": "Cat is laying on top of {}."}, {"index": 768, "image_id": 2359073, "entity": "dog", "caption": "The cat is on the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is on the {}."}, {"index": 769, "image_id": 2359073, "entity": "dog", "caption": "dog has brown eye brows", "question": ["is there dog ?", "are there brown eye brows ?"], "prompt": "{} has brown eye brows"}, {"index": 770, "image_id": 2358914, "entity": "dog", "caption": "dog holds chew toy", "question": ["is there dog ?", "is there toy ?"], "prompt": "{} holds chew toy"}, {"index": 771, "image_id": 2358914, "entity": "dog", "caption": "dog has pink tongue", "question": ["is there dog ?", "is there pink tongue ?"], "prompt": "{} has pink tongue"}, {"index": 772, "image_id": 2358914, "entity": "dog", "caption": "the dog is chewing on a toy", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "the {} is chewing on a toy"}, {"index": 773, "image_id": 2358914, "entity": "dog", "caption": "the dog chews on an orange toy", "question": ["is there the dog ?", "is there an orange toy ?"], "prompt": "the {} chews on an orange toy"}, {"index": 774, "image_id": 2358914, "entity": "dog", "caption": "the dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is on a blanket"}, {"index": 775, "image_id": 2358914, "entity": "dog", "caption": "the dog is laying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is laying on a blanket"}, {"index": 776, "image_id": 2358914, "entity": "dog", "caption": "Small orange looking stuffed animal a dog has. ", "question": ["is there small orange ?", "is there stuffed animal ?", "is there a dog ?"], "prompt": "Small orange looking stuffed animal a {} has. "}, {"index": 777, "image_id": 2358914, "entity": "dog", "caption": "A brown dogs left side front paw. ", "question": ["are there a brown dogs ?", "is there side front paw ?"], "prompt": "A brown {}s left side front paw. "}, {"index": 778, "image_id": 2358914, "entity": "dog", "caption": "A dogs left ear. ", "question": ["are there a dogs ?", "is there ear ?"], "prompt": "A {}s left ear. "}, {"index": 779, "image_id": 2358486, "entity": "dog", "caption": "dog is leaning over railing", "question": ["is there dog ?"], "prompt": "{} is leaning over railing"}, {"index": 780, "image_id": 2358453, "entity": "dog", "caption": "eye of dog is close", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is close"}, {"index": 781, "image_id": 2357732, "entity": "dog", "caption": "dog has a long ear", "question": ["is there dog ?", "is there a long ear ?"], "prompt": "{} has a long ear"}, {"index": 782, "image_id": 2357732, "entity": "dog", "caption": "the dog's head is on the blanket", "question": ["is there the dog's head ?", "is there the blanket ?"], "prompt": "the {}'s head is on the blanket"}, {"index": 783, "image_id": 2357732, "entity": "dog", "caption": "the dog has on a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has on a red collar"}, {"index": 784, "image_id": 2357693, "entity": "dog", "caption": "dog has brown patch on eye", "question": ["is there dog ?", "is there brown patch ?", "is there eye ?"], "prompt": "{} has brown patch on eye"}, {"index": 785, "image_id": 2357667, "entity": "dog", "caption": "the dog is wearing a tie", "question": ["is there the dog ?", "is there a tie ?"], "prompt": "the {} is wearing a tie"}, {"index": 786, "image_id": 2357667, "entity": "dog", "caption": "the dog is lying on the arm of a leather chair", "question": ["is there the dog ?", "is there the arm ?", "is there a leather chair ?"], "prompt": "the {} is lying on the arm of a leather chair"}, {"index": 787, "image_id": 2357667, "entity": "dog", "caption": "the dog has bulgy eyes", "question": ["is there the dog ?", "are there bulgy eyes ?"], "prompt": "the {} has bulgy eyes"}, {"index": 788, "image_id": 2357667, "entity": "dog", "caption": "the dog has dark brown ears", "question": ["is there the dog ?", "are there dark brown ears ?"], "prompt": "the {} has dark brown ears"}, {"index": 789, "image_id": 2356804, "entity": "dog", "caption": "two dogs with their tongues hanging out", "question": ["are there two dogs ?", "are there their tongues ?"], "prompt": "two {}s with their tongues hanging out"}, {"index": 790, "image_id": 2356804, "entity": "dog", "caption": "the dogs are in long grass", "question": ["are there the dogs ?", "is there long grass ?"], "prompt": "the {}s are in long grass"}, {"index": 791, "image_id": 2356762, "entity": "dog", "caption": "This is a dog trying to catch an apple.", "question": ["is there a dog ?", "is there an apple ?"], "prompt": "This is a {} trying to catch an apple."}, {"index": 792, "image_id": 2356762, "entity": "dog", "caption": "The dog has only a few teeth.", "question": ["is there the dog ?", "are there only a few teeth ?"], "prompt": "The {} has only a few teeth."}, {"index": 793, "image_id": 2356701, "entity": "dog", "caption": "the dog's nose is thru the hole", "question": ["is there the dog's nose ?", "is there the hole ?"], "prompt": "the {}'s nose is thru the hole"}, {"index": 794, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck", "question": ["are there the dogs ?"], "prompt": "the {}s head is stuck"}, {"index": 795, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck in the wheel", "question": ["are there the dogs ?", "is there the wheel ?"], "prompt": "the {}s head is stuck in the wheel"}, {"index": 796, "image_id": 2356554, "entity": "dog", "caption": "dog wears black glasses", "question": ["is there dog ?", "are there black glasses ?"], "prompt": "{} wears black glasses"}, {"index": 797, "image_id": 2356554, "entity": "dog", "caption": "dog wears black jacket", "question": ["is there dog ?", "is there black jacket ?"], "prompt": "{} wears black jacket"}, {"index": 798, "image_id": 2356554, "entity": "dog", "caption": "dog is near motorcycle", "question": ["is there dog ?", "is there motorcycle ?"], "prompt": "{} is near motorcycle"}, {"index": 799, "image_id": 2356554, "entity": "dog", "caption": "the dog has sunglasses ", "question": ["is there the dog ?", "are there sunglasses ?"], "prompt": "the {} has sunglasses "}, {"index": 800, "image_id": 2356554, "entity": "dog", "caption": "the dog is on the bike ", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is on the bike "}, {"index": 801, "image_id": 2356554, "entity": "dog", "caption": "This dog is wearing sunglasses.", "question": ["is there this dog ?", "are there sunglasses ?"], "prompt": "This {} is wearing sunglasses."}, {"index": 802, "image_id": 2356554, "entity": "dog", "caption": "dog has leash on", "question": ["is there dog ?"], "prompt": "{} has leash on"}, {"index": 803, "image_id": 2356554, "entity": "dog", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "{} is sitting in side car"}, {"index": 804, "image_id": 2356153, "entity": "dog", "caption": "blue dog bone shaped tag", "question": ["is there blue dog bone shaped tag ?"], "prompt": "blue {} bone shaped tag"}, {"index": 805, "image_id": 2356153, "entity": "dog", "caption": "dog is wearing a red collar", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} is wearing a red collar"}, {"index": 806, "image_id": 2356153, "entity": "dog", "caption": "dog is walking on the dirt", "question": ["is there dog ?", "is there the dirt ?"], "prompt": "{} is walking on the dirt"}, {"index": 807, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} is wearing goggles"}, {"index": 808, "image_id": 2355985, "entity": "dog", "caption": "The dog is on a motorcycle", "question": ["is there the dog ?", "is there a motorcycle ?"], "prompt": "The {} is on a motorcycle"}, {"index": 809, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing a leather jacket", "question": ["is there the dog ?", "is there a leather jacket ?"], "prompt": "The {} is wearing a leather jacket"}, {"index": 810, "image_id": 2355985, "entity": "dog", "caption": "the nose is black on the dog ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose is black on the {} "}, {"index": 811, "image_id": 2355964, "entity": "dog", "caption": "dog ears is pink inside ", "question": ["are there dog ears ?"], "prompt": "{} ears is pink inside "}, {"index": 812, "image_id": 2355964, "entity": "dog", "caption": "dog has black nose ", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose "}, {"index": 813, "image_id": 2355944, "entity": "dog", "caption": "The dog is wearing a color", "question": ["is there the dog ?", "is there a color ?"], "prompt": "The {} is wearing a color"}, {"index": 814, "image_id": 2355865, "entity": "dog", "caption": "it is the eye of the dog ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "it is the eye of the {} "}, {"index": 815, "image_id": 2355519, "entity": "dog", "caption": "The dog has a frisbee in its mouth", "question": ["is there the dog ?", "is there a frisbee ?", "is there its mouth ?"], "prompt": "The {} has a frisbee in its mouth"}, {"index": 816, "image_id": 2355511, "entity": "dog", "caption": "a black dog right ear ", "question": ["is there a black dog right ear ?"], "prompt": "a black {} right ear "}, {"index": 817, "image_id": 2355511, "entity": "dog", "caption": "A black dog ready to get a bath", "question": ["is there a black dog ?", "is there a bath ?"], "prompt": "A black {} ready to get a bath"}, {"index": 818, "image_id": 2355409, "entity": "dog", "caption": "a dog catchign a freesbee", "question": ["is there a dog ?", "is there a freesbee ?"], "prompt": "a {} catchign a freesbee"}, {"index": 819, "image_id": 2355409, "entity": "dog", "caption": "a white dog catchign a black freesbee", "question": ["is there a white dog ?"], "prompt": "a white {} catchign a black freesbee"}, {"index": 820, "image_id": 2355256, "entity": "dog", "caption": "dog is brown and white", "question": ["is there dog ?"], "prompt": "{} is brown and white"}, {"index": 821, "image_id": 2354835, "entity": "dog", "caption": "Brown dog's head sticking out of car window.", "question": ["is there brown dog's head ?", "is there car window ?"], "prompt": "Brown {}'s head sticking out of car window."}, {"index": 822, "image_id": 2354515, "entity": "dog", "caption": "bike is behind the dog", "question": ["is there bike ?", "is there the dog ?"], "prompt": "bike is behind the {}"}, {"index": 823, "image_id": 2354515, "entity": "dog", "caption": "dog has tongue out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue out"}, {"index": 824, "image_id": 2354515, "entity": "dog", "caption": "dog is on the street", "question": ["is there dog ?", "is there the street ?"], "prompt": "{} is on the street"}, {"index": 825, "image_id": 2354497, "entity": "dog", "caption": "This dog has a donut in his mouth", "question": ["is there this dog ?", "is there a donut ?", "is there his mouth ?"], "prompt": "This {} has a donut in his mouth"}, {"index": 826, "image_id": 2354497, "entity": "dog", "caption": "The dog is wearing a red color.", "question": ["is there the dog ?", "is there a red color ?"], "prompt": "The {} is wearing a red color."}, {"index": 827, "image_id": 2354497, "entity": "dog", "caption": "The dog is sitting on the grass.", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "The {} is sitting on the grass."}, {"index": 828, "image_id": 2354497, "entity": "dog", "caption": "The dog has two spots on his face.", "question": ["is there the dog ?", "are there two spots ?", "is there his face ?"], "prompt": "The {} has two spots on his face."}, {"index": 829, "image_id": 2354494, "entity": "dog", "caption": "The dog nose is black", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black"}, {"index": 830, "image_id": 2354494, "entity": "dog", "caption": "tan/yellow dog laying across young girls lap", "question": ["is there tan/yellow dog ?", "are there young girls ?"], "prompt": "tan/yellow {} laying across young girls lap"}, {"index": 831, "image_id": 2354494, "entity": "dog", "caption": "dog is wearing a red collar around neck", "question": ["is there dog ?", "is there a red collar ?", "is there neck ?"], "prompt": "{} is wearing a red collar around neck"}, {"index": 832, "image_id": 2354494, "entity": "dog", "caption": "Woman laying on the couch with dog.", "question": ["is there woman ?", "is there the couch ?", "is there dog ?"], "prompt": "Woman laying on the couch with {}."}, {"index": 833, "image_id": 2354353, "entity": "dog", "caption": "The dog's head is on the keyboard", "question": ["is there the dog's head ?", "is there the keyboard ?"], "prompt": "The {}'s head is on the keyboard"}, {"index": 834, "image_id": 2354353, "entity": "dog", "caption": "The dog is wearing a blue and yellow collar", "question": ["is there the dog ?", "is there a blue and yellow collar ?"], "prompt": "The {} is wearing a blue and yellow collar"}, {"index": 835, "image_id": 2354353, "entity": "dog", "caption": "dog is on the keys", "question": ["is there dog ?", "are there the keys ?"], "prompt": "{} is on the keys"}, {"index": 836, "image_id": 2354353, "entity": "dog", "caption": "the dog has yellow and blue flowers", "question": ["is there the dog ?", "are there yellow and blue flowers ?"], "prompt": "the {} has yellow and blue flowers"}, {"index": 837, "image_id": 2353969, "entity": "dog", "caption": "dog has white paw", "question": ["is there dog ?"], "prompt": "{} has white paw"}, {"index": 838, "image_id": 2353969, "entity": "dog", "caption": "dog is laying down on rug", "question": ["is there dog ?", "is there rug ?"], "prompt": "{} is laying down on rug"}, {"index": 839, "image_id": 2353558, "entity": "dog", "caption": "the dog's eye is yellowish", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is yellowish"}, {"index": 840, "image_id": 2353558, "entity": "dog", "caption": "The dog has long ears", "question": ["is there the dog ?", "are there long ears ?"], "prompt": "The {} has long ears"}, {"index": 841, "image_id": 2353558, "entity": "dog", "caption": "The dog is wide eyed", "question": ["is there the dog ?"], "prompt": "The {} is wide eyed"}, {"index": 842, "image_id": 2353558, "entity": "dog", "caption": "The dog's nose is very black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is very black"}, {"index": 843, "image_id": 2353558, "entity": "dog", "caption": "The dog is wearing a bowl", "question": ["is there the dog ?", "is there a bowl ?"], "prompt": "The {} is wearing a bowl"}, {"index": 844, "image_id": 2353404, "entity": "dog", "caption": "the plastic buckle on the dog", "question": ["is there the plastic buckle ?", "is there the dog ?"], "prompt": "the plastic buckle on the {}"}, {"index": 845, "image_id": 2353404, "entity": "dog", "caption": "the dog walking and connected to a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} walking and connected to a chain"}, {"index": 846, "image_id": 2353398, "entity": "dog", "caption": "green felt the dog is standing on", "question": ["is there the dog ?"], "prompt": "green felt the {} is standing on"}, {"index": 847, "image_id": 2353062, "entity": "dog", "caption": "the dog is on a sofa", "question": ["is there the dog ?", "is there a sofa ?"], "prompt": "the {} is on a sofa"}, {"index": 848, "image_id": 2353062, "entity": "dog", "caption": "dog's eyes are amber", "question": ["are there dog's eyes ?", "is there amber ?"], "prompt": "{}'s eyes are amber"}, {"index": 849, "image_id": 2353062, "entity": "dog", "caption": "dog is laying on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} is laying on a couch"}, {"index": 850, "image_id": 2352757, "entity": "dog", "caption": "the dog is wearing a jacket", "question": ["is there the dog ?", "is there a jacket ?"], "prompt": "the {} is wearing a jacket"}, {"index": 851, "image_id": 2352757, "entity": "dog", "caption": "the dog has a black tail", "question": ["is there the dog ?", "is there a black tail ?"], "prompt": "the {} has a black tail"}, {"index": 852, "image_id": 2352502, "entity": "dog", "caption": "The dog is biting the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is biting the frisbee."}, {"index": 853, "image_id": 2352502, "entity": "dog", "caption": "The dog is on the beach.", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "The {} is on the beach."}, {"index": 854, "image_id": 2351971, "entity": "dog", "caption": "legs and paws of dog that allow dog to walk with ", "question": ["are there legs ?", "are there paws ?", "is there dog ?", "is there dog ?"], "prompt": "legs and paws of {} that allow {} to walk with "}, {"index": 855, "image_id": 2351950, "entity": "dog", "caption": "The dog is holding a bowl in his mouth", "question": ["is there the dog ?", "is there a bowl ?", "is there his mouth ?"], "prompt": "The {} is holding a bowl in his mouth"}, {"index": 856, "image_id": 2351950, "entity": "dog", "caption": "The dog's ear is hanging downwards", "question": ["is there the dog's ear ?"], "prompt": "The {}'s ear is hanging downwards"}, {"index": 857, "image_id": 2351950, "entity": "dog", "caption": "dog has light brown face", "question": ["is there dog ?", "is there light brown face ?"], "prompt": "{} has light brown face"}, {"index": 858, "image_id": 2351950, "entity": "dog", "caption": "dog is holding bowl", "question": ["is there dog ?", "is there bowl ?"], "prompt": "{} is holding bowl"}, {"index": 859, "image_id": 2351811, "entity": "dog", "caption": "the dogs head ", "question": ["are there the dogs ?"], "prompt": "the {}s head "}, {"index": 860, "image_id": 2351083, "entity": "dog", "caption": "dog holds a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} holds a cap"}, {"index": 861, "image_id": 2351083, "entity": "dog", "caption": "the dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black"}, {"index": 862, "image_id": 2350951, "entity": "dog", "caption": "the mouth of dog is open", "question": ["is there the mouth ?", "is there dog ?"], "prompt": "the mouth of {} is open"}, {"index": 863, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a Harley Davidson bandanna", "question": ["is there the unfortunate dog ?"], "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"}, {"index": 864, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a biker headband", "question": ["is there the unfortunate dog ?", "is there a biker headband ?"], "prompt": "the unfortunate {} is wearing a biker headband"}, {"index": 865, "image_id": 2350646, "entity": "dog", "caption": "the dog has cropped ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has cropped ears"}, {"index": 866, "image_id": 2350609, "entity": "dog", "caption": "lot where dog and woman stand", "question": ["is there lot ?", "is there dog ?", "is there woman ?"], "prompt": "lot where {} and woman stand"}, {"index": 867, "image_id": 2350606, "entity": "dog", "caption": "the dog is on a white platform", "question": ["is there the dog ?", "is there a white platform ?"], "prompt": "the {} is on a white platform"}, {"index": 868, "image_id": 2349745, "entity": "dog", "caption": "legs of dog running", "question": ["are there legs ?", "is there dog ?"], "prompt": "legs of {} running"}, {"index": 869, "image_id": 2349745, "entity": "dog", "caption": "open mouth of dog running", "question": ["is there open mouth ?", "is there dog ?"], "prompt": "open mouth of {} running"}, {"index": 870, "image_id": 2349745, "entity": "dog", "caption": "the dog is white with black spots", "question": ["is there the dog ?", "are there black spots ?"], "prompt": "the {} is white with black spots"}, {"index": 871, "image_id": 2349745, "entity": "dog", "caption": "the dog is running with his mouth open", "question": ["is there the dog ?", "is there his mouth ?"], "prompt": "the {} is running with his mouth open"}, {"index": 872, "image_id": 2349745, "entity": "dog", "caption": "the dog has a black spot over his eye", "question": ["is there the dog ?", "is there a black spot ?", "is there his eye ?"], "prompt": "the {} has a black spot over his eye"}, {"index": 873, "image_id": 2349745, "entity": "dog", "caption": "the dirt is flying from the dog's paws", "question": ["is there the dirt ?", "are there the dog's paws ?"], "prompt": "the dirt is flying from the {}'s paws"}, {"index": 874, "image_id": 2349745, "entity": "dog", "caption": "the dog's paws are touching from running", "question": ["are there the dog's paws ?"], "prompt": "the {}'s paws are touching from running"}, {"index": 875, "image_id": 2349548, "entity": "dog", "caption": "The dogs ear is brown.", "question": ["are there the dogs ?"], "prompt": "The {}s ear is brown."}, {"index": 876, "image_id": 2349547, "entity": "dog", "caption": "The dog has a pinkish nose.", "question": ["is there the dog ?", "is there a pinkish nose ?"], "prompt": "The {} has a pinkish nose."}, {"index": 877, "image_id": 2349421, "entity": "dog", "caption": "The dog is sitting on the chair ", "question": ["is there the dog ?", "is there the chair ?"], "prompt": "The {} is sitting on the chair "}, {"index": 878, "image_id": 2349268, "entity": "dog", "caption": "the dog has long nails", "question": ["is there the dog ?", "are there long nails ?"], "prompt": "the {} has long nails"}, {"index": 879, "image_id": 2349268, "entity": "dog", "caption": "the dog lays with toy", "question": ["is there the dog ?", "is there toy ?"], "prompt": "the {} lays with toy"}, {"index": 880, "image_id": 2348690, "entity": "dog", "caption": "the dog is chewing up a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is chewing up a stuffed animal"}, {"index": 881, "image_id": 2348554, "entity": "dog", "caption": "dog with hind legs stretched out", "question": ["is there dog ?", "are there hind legs ?"], "prompt": "{} with hind legs stretched out"}, {"index": 882, "image_id": 2348554, "entity": "dog", "caption": "A dog is laying on the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "A {} is laying on the bed"}, {"index": 883, "image_id": 2348554, "entity": "dog", "caption": "The dog has white on her paws", "question": ["is there the dog ?", "are there her paws ?"], "prompt": "The {} has white on her paws"}, {"index": 884, "image_id": 2348407, "entity": "dog", "caption": "tan dog's face as he holds the frisbee", "question": ["is there tan dog's face ?", "is there the frisbee ?"], "prompt": "tan {}'s face as he holds the frisbee"}, {"index": 885, "image_id": 2348407, "entity": "dog", "caption": "dog's eye looking up past the frisbee", "question": ["is there dog's eye ?", "is there the frisbee ?"], "prompt": "{}'s eye looking up past the frisbee"}, {"index": 886, "image_id": 2348407, "entity": "dog", "caption": "dog's ear hanging down as he chews the frisbee", "question": ["is there dog's ear ?", "is there the frisbee ?"], "prompt": "{}'s ear hanging down as he chews the frisbee"}, {"index": 887, "image_id": 2347998, "entity": "dog", "caption": "dog is on the newspaper", "question": ["is there dog ?", "is there the newspaper ?"], "prompt": "{} is on the newspaper"}, {"index": 888, "image_id": 2347801, "entity": "dog", "caption": "a dog tag shaped like a bone ", "question": ["is there a dog tag ?", "is there a bone ?"], "prompt": "a {} tag shaped like a bone "}, {"index": 889, "image_id": 2347801, "entity": "dog", "caption": "The dog is inside a room", "question": ["is there the dog ?", "is there a room ?"], "prompt": "The {} is inside a room"}, {"index": 890, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a television", "question": ["is there the dog ?", "is there a television ?"], "prompt": "The {} is next to a television"}, {"index": 891, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The {} is next to a laptop computer"}, {"index": 892, "image_id": 2347801, "entity": "dog", "caption": "The dog is on a table", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table"}, {"index": 893, "image_id": 2347591, "entity": "dog", "caption": "A woman who is sitting with a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman who is sitting with a {}"}, {"index": 894, "image_id": 2347591, "entity": "dog", "caption": "Woman is holding the dog", "question": ["is there woman ?", "is there the dog ?"], "prompt": "Woman is holding the {}"}, {"index": 895, "image_id": 2347481, "entity": "dog", "caption": "a dog with a disc on it's face", "question": ["is there a dog ?", "is there a disc ?"], "prompt": "a {} with a disc on it's face"}, {"index": 896, "image_id": 2347481, "entity": "dog", "caption": "dog has black and white tail", "question": ["is there dog ?", "is there black and white tail ?"], "prompt": "{} has black and white tail"}, {"index": 897, "image_id": 2347481, "entity": "dog", "caption": "dog has white neck", "question": ["is there dog ?", "is there white neck ?"], "prompt": "{} has white neck"}, {"index": 898, "image_id": 2347481, "entity": "dog", "caption": "The dogs tail", "question": ["are there the dogs ?"], "prompt": "The {}s tail"}, {"index": 899, "image_id": 2347481, "entity": "dog", "caption": "The ears that belong to the dog", "question": ["are there the ears ?", "is there the dog ?"], "prompt": "The ears that belong to the {}"}, {"index": 900, "image_id": 2347481, "entity": "dog", "caption": "A dog that is standing in the dirt", "question": ["is there a dog ?", "is there the dirt ?"], "prompt": "A {} that is standing in the dirt"}, {"index": 901, "image_id": 2347473, "entity": "dog", "caption": "the brown patches on the dogs face", "question": ["are there the brown patches ?", "are there the dogs ?"], "prompt": "the brown patches on the {}s face"}, {"index": 902, "image_id": 2347340, "entity": "dog", "caption": "dog's dark eyes are open", "question": ["are there dog's dark eyes ?"], "prompt": "{}'s dark eyes are open"}, {"index": 903, "image_id": 2347340, "entity": "dog", "caption": "the dog is on a chair", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "the {} is on a chair"}, {"index": 904, "image_id": 2347027, "entity": "dog", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car"}, {"index": 905, "image_id": 2347027, "entity": "dog", "caption": "dog has tongue hanging out ", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue hanging out "}, {"index": 906, "image_id": 2347027, "entity": "dog", "caption": "The dog have waggy ear.", "question": ["is there the dog ?"], "prompt": "The {} have waggy ear."}, {"index": 907, "image_id": 2346970, "entity": "dog", "caption": "The dog is resting his head on the couch.", "question": ["is there the dog ?", "is there his head ?", "is there the couch ?"], "prompt": "The {} is resting his head on the couch."}, {"index": 908, "image_id": 2346970, "entity": "dog", "caption": "The dog is wearing a blue collar.", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} is wearing a blue collar."}, {"index": 909, "image_id": 2346970, "entity": "dog", "caption": "The dog's eye is open.", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open."}, {"index": 910, "image_id": 2346970, "entity": "dog", "caption": "The dog's fur is very short.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is very short."}, {"index": 911, "image_id": 2346970, "entity": "dog", "caption": "The dog is sitting on top of white sheet.", "question": ["is there the dog ?", "is there top ?", "is there white sheet ?"], "prompt": "The {} is sitting on top of white sheet."}, {"index": 912, "image_id": 2346970, "entity": "dog", "caption": "the dogs neck is long ", "question": ["are there the dogs neck ?"], "prompt": "the {}s neck is long "}, {"index": 913, "image_id": 2346869, "entity": "dog", "caption": "dog is catching frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} is catching frisbee"}, {"index": 914, "image_id": 2346869, "entity": "dog", "caption": "dog has white frisbee in mouth", "question": ["is there dog ?", "is there white frisbee ?", "is there mouth ?"], "prompt": "{} has white frisbee in mouth"}, {"index": 915, "image_id": 2346869, "entity": "dog", "caption": "tree is next to dog", "question": ["is there tree ?", "is there dog ?"], "prompt": "tree is next to {}"}, {"index": 916, "image_id": 2346869, "entity": "dog", "caption": "man in cap leaning forward behind dog", "question": ["is there man ?", "is there cap ?", "is there dog ?"], "prompt": "man in cap leaning forward behind {}"}, {"index": 917, "image_id": 2346765, "entity": "dog", "caption": "neck of dog is white", "question": ["is there neck ?", "is there dog ?"], "prompt": "neck of {} is white"}, {"index": 918, "image_id": 2346434, "entity": "dog", "caption": "the dog's eyes are black", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are black"}, {"index": 919, "image_id": 2346434, "entity": "dog", "caption": "black pads and nails are on the dog's paws", "question": ["are there black pads ?", "are there nails ?", "are there the dog's paws ?"], "prompt": "black pads and nails are on the {}'s paws"}, {"index": 920, "image_id": 2346247, "entity": "dog", "caption": "Brown ear on the dog.", "question": ["is there brown ear ?", "is there the dog ?"], "prompt": "Brown ear on the {}."}, {"index": 921, "image_id": 2346086, "entity": "dog", "caption": "the black dog has a sad face", "question": ["is there the black dog ?", "is there a sad face ?"], "prompt": "the black {} has a sad face"}, {"index": 922, "image_id": 2346086, "entity": "dog", "caption": "A dog is near a bag.", "question": ["is there a dog ?", "is there a bag ?"], "prompt": "A {} is near a bag."}, {"index": 923, "image_id": 2346086, "entity": "dog", "caption": "The dog's mouth is closed.", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is closed."}, {"index": 924, "image_id": 2346086, "entity": "dog", "caption": "The dog is wearing a crocheted hat.", "question": ["is there the dog ?", "is there a crocheted hat ?"], "prompt": "The {} is wearing a crocheted hat."}, {"index": 925, "image_id": 2346086, "entity": "dog", "caption": "The dog has an ear.", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "The {} has an ear."}, {"index": 926, "image_id": 2346086, "entity": "dog", "caption": "The dog has an eye.", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "The {} has an eye."}, {"index": 927, "image_id": 2345642, "entity": "dog", "caption": "head of dog bowed down ", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} bowed down "}, {"index": 928, "image_id": 2345642, "entity": "dog", "caption": "green blanket the dog is laying on", "question": ["is there green blanket ?", "is there the dog ?"], "prompt": "green blanket the {} is laying on"}, {"index": 929, "image_id": 2345272, "entity": "dog", "caption": "the dogs tail ", "question": ["are there the dogs ?"], "prompt": "the {}s tail "}, {"index": 930, "image_id": 2345272, "entity": "dog", "caption": "a black dog looks onward with his tongue hanging out", "question": ["is there a black dog ?", "is there his tongue ?"], "prompt": "a black {} looks onward with his tongue hanging out"}, {"index": 931, "image_id": 2345272, "entity": "dog", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the boat holding a {} with a leash"}, {"index": 932, "image_id": 2345231, "entity": "dog", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the {}s paws on on the computer"}, {"index": 933, "image_id": 2345068, "entity": "dog", "caption": "Extra pillow for the dog to be comfortable", "question": ["is there extra pillow ?", "is there the dog ?"], "prompt": "Extra pillow for the {} to be comfortable"}, {"index": 934, "image_id": 2345068, "entity": "dog", "caption": "Teddy bear for the dog", "question": ["is there the dog ?"], "prompt": "Teddy bear for the {}"}, {"index": 935, "image_id": 2345068, "entity": "dog", "caption": "a dog curled up on its bed ", "question": ["is there a dog ?", "is there its bed ?"], "prompt": "a {} curled up on its bed "}, {"index": 936, "image_id": 2344922, "entity": "dog", "caption": "This dog has a very red collar", "question": ["is there this dog ?", "is there a very red collar ?"], "prompt": "This {} has a very red collar"}, {"index": 937, "image_id": 2344729, "entity": "dog", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the {} is in the car"}, {"index": 938, "image_id": 2344729, "entity": "dog", "caption": "this is the dogs leash", "question": ["are there the dogs ?"], "prompt": "this is the {}s leash"}, {"index": 939, "image_id": 2344635, "entity": "dog", "caption": "The dog is wearing a tag.", "question": ["is there the dog ?", "is there a tag ?"], "prompt": "The {} is wearing a tag."}, {"index": 940, "image_id": 2344635, "entity": "dog", "caption": "dog is wearing a tag", "question": ["is there dog ?", "is there a tag ?"], "prompt": "{} is wearing a tag"}, {"index": 941, "image_id": 2344635, "entity": "dog", "caption": "dogs eye looks white ", "question": ["are there dogs ?"], "prompt": "{}s eye looks white "}, {"index": 942, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is black.", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black."}, {"index": 943, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is small", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is small"}, {"index": 944, "image_id": 2344526, "entity": "dog", "caption": "The dogs fur is white.", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is white."}, {"index": 945, "image_id": 2344358, "entity": "dog", "caption": "this dog is under a white blanket", "question": ["is there this dog ?", "is there a white blanket ?"], "prompt": "this {} is under a white blanket"}, {"index": 946, "image_id": 2344283, "entity": "dog", "caption": "the dog is at the beach", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "the {} is at the beach"}, {"index": 947, "image_id": 2344283, "entity": "dog", "caption": "the dog is sitting on a towel", "question": ["is there the dog ?", "is there a towel ?"], "prompt": "the {} is sitting on a towel"}, {"index": 948, "image_id": 2344283, "entity": "dog", "caption": "a bag is by the dog", "question": ["is there a bag ?", "is there the dog ?"], "prompt": "a bag is by the {}"}, {"index": 949, "image_id": 2344283, "entity": "dog", "caption": "Brown dog is on a towel", "question": ["is there brown dog ?", "is there a towel ?"], "prompt": "Brown {} is on a towel"}, {"index": 950, "image_id": 2344228, "entity": "dog", "caption": "the dog has a brown part", "question": ["is there the dog ?", "is there a brown part ?"], "prompt": "the {} has a brown part"}, {"index": 951, "image_id": 2344228, "entity": "dog", "caption": "the dog has a black spot", "question": ["is there the dog ?", "is there a black spot ?"], "prompt": "the {} has a black spot"}, {"index": 952, "image_id": 2343539, "entity": "dog", "caption": "dog's tongue is hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is hanging out"}, {"index": 953, "image_id": 2343539, "entity": "dog", "caption": "dog's ears are back ", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are back "}, {"index": 954, "image_id": 2343194, "entity": "dog", "caption": "the dog has three balls", "question": ["is there the dog ?", "are there three balls ?"], "prompt": "the {} has three balls"}, {"index": 955, "image_id": 2343194, "entity": "dog", "caption": "the dog has balls in his mouth", "question": ["is there the dog ?", "are there balls ?", "is there his mouth ?"], "prompt": "the {} has balls in his mouth"}, {"index": 956, "image_id": 2343194, "entity": "dog", "caption": "the dog has a spotted nose", "question": ["is there the dog ?", "is there a spotted nose ?"], "prompt": "the {} has a spotted nose"}, {"index": 957, "image_id": 2343149, "entity": "dog", "caption": "The dog is splashing water", "question": ["is there the dog ?", "is there water ?"], "prompt": "The {} is splashing water"}, {"index": 958, "image_id": 2343149, "entity": "dog", "caption": "The dog's teeth are visible", "question": ["are there the dog's teeth ?"], "prompt": "The {}'s teeth are visible"}, {"index": 959, "image_id": 2343038, "entity": "dog", "caption": "dog with eyes closed", "question": ["is there dog ?", "are there eyes ?"], "prompt": "{} with eyes closed"}, {"index": 960, "image_id": 2342562, "entity": "dog", "caption": "dog mout to grab frisbees and eat food and drink water ", "question": ["is there dog mout ?", "are there frisbees ?", "is there food ?", "is there water ?"], "prompt": "{} mout to grab frisbees and eat food and drink water "}, {"index": 961, "image_id": 2342562, "entity": "dog", "caption": "The dog has a black ear.", "question": ["is there the dog ?", "is there a black ear ?"], "prompt": "The {} has a black ear."}, {"index": 962, "image_id": 2341045, "entity": "dog", "caption": "this dog and teddy bear are posing", "question": ["is there this dog ?", "is there bear ?"], "prompt": "this {} and teddy bear are posing"}, {"index": 963, "image_id": 2341045, "entity": "dog", "caption": "The dog is resting on white shaggy carpet.", "question": ["is there the dog ?", "is there white shaggy carpet ?"], "prompt": "The {} is resting on white shaggy carpet."}, {"index": 964, "image_id": 2340940, "entity": "dog", "caption": "The banana is inside the dog's mouth.", "question": ["is there the banana ?", "is there the dog's mouth ?"], "prompt": "The banana is inside the {}'s mouth."}, {"index": 965, "image_id": 2340940, "entity": "dog", "caption": "The little dog is sitting on top of the white blanket.", "question": ["is there the little dog ?", "is there top ?", "is there the white blanket ?"], "prompt": "The little {} is sitting on top of the white blanket."}, {"index": 966, "image_id": 2340940, "entity": "dog", "caption": "The dog has a pink collar.", "question": ["is there the dog ?", "is there a pink collar ?"], "prompt": "The {} has a pink collar."}, {"index": 967, "image_id": 2340940, "entity": "dog", "caption": "The dog is wearing a white collar.", "question": ["is there the dog ?", "is there a white collar ?"], "prompt": "The {} is wearing a white collar."}, {"index": 968, "image_id": 2340686, "entity": "dog", "caption": "The dog face is partially white.", "question": ["is there the dog face ?"], "prompt": "The {} face is partially white."}, {"index": 969, "image_id": 2339641, "entity": "dog", "caption": "dog has white spot on chest", "question": ["is there dog ?", "is there white spot ?", "is there chest ?"], "prompt": "{} has white spot on chest"}, {"index": 970, "image_id": 2339641, "entity": "dog", "caption": "dog is on a motorcycle", "question": ["is there dog ?", "is there a motorcycle ?"], "prompt": "{} is on a motorcycle"}, {"index": 971, "image_id": 2339617, "entity": "dog", "caption": "The dog sits on a chair. ", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} sits on a chair. "}, {"index": 972, "image_id": 2339617, "entity": "dog", "caption": "A blanket that the dog sits on.", "question": ["is there a blanket ?", "is there the dog ?"], "prompt": "A blanket that the {} sits on."}, {"index": 973, "image_id": 2339617, "entity": "dog", "caption": "dog has black back", "question": ["is there dog ?"], "prompt": "{} has black back"}, {"index": 974, "image_id": 2339511, "entity": "dog", "caption": "The cat is next to the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is next to the {}."}, {"index": 975, "image_id": 2339511, "entity": "dog", "caption": "The paw on the dog is white.", "question": ["is there the paw ?", "is there the dog ?"], "prompt": "The paw on the {} is white."}, {"index": 976, "image_id": 2339511, "entity": "dog", "caption": "brown striped cat lays next to dog", "question": ["is there brown striped cat ?", "is there dog ?"], "prompt": "brown striped cat lays next to {}"}, {"index": 977, "image_id": 2339511, "entity": "dog", "caption": "white front left paw on dog", "question": ["is there white front ?", "is there paw ?", "is there dog ?"], "prompt": "white front left paw on {}"}, {"index": 978, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around nose", "question": ["is there dog ?", "is there white fur ?", "is there nose ?"], "prompt": "{} has white fur around nose"}, {"index": 979, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around paws", "question": ["is there dog ?", "is there white fur ?", "are there paws ?"], "prompt": "{} has white fur around paws"}, {"index": 980, "image_id": 2339238, "entity": "dog", "caption": "dog has black ear", "question": ["is there dog ?", "is there black ear ?"], "prompt": "{} has black ear"}, {"index": 981, "image_id": 2339238, "entity": "dog", "caption": "dog has black eye", "question": ["is there dog ?", "is there black eye ?"], "prompt": "{} has black eye"}, {"index": 982, "image_id": 2339238, "entity": "dog", "caption": "dog has a white tooth", "question": ["is there dog ?", "is there a white tooth ?"], "prompt": "{} has a white tooth"}, {"index": 983, "image_id": 2337950, "entity": "dog", "caption": "couch man and dog are sitting on", "question": ["is there couch man ?", "is there dog ?"], "prompt": "couch man and {} are sitting on"}, {"index": 984, "image_id": 2337205, "entity": "dog", "caption": "the dog's eye is open ", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open "}, {"index": 985, "image_id": 2336811, "entity": "dog", "caption": "Front left paw of the dog", "question": ["is there front left paw ?", "is there the dog ?"], "prompt": "Front left paw of the {}"}, {"index": 986, "image_id": 2336773, "entity": "dog", "caption": "Small dogs right eye", "question": ["are there small dogs ?"], "prompt": "Small {}s right eye"}, {"index": 987, "image_id": 2336773, "entity": "dog", "caption": "Small dogs left eye", "question": ["are there small dogs ?", "is there eye ?"], "prompt": "Small {}s left eye"}, {"index": 988, "image_id": 2336693, "entity": "dog", "caption": "the dog is carrying a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is carrying a frisbee"}, {"index": 989, "image_id": 2336693, "entity": "dog", "caption": "the dog's front legs are white", "question": ["are there the dog's front legs ?"], "prompt": "the {}'s front legs are white"}, {"index": 990, "image_id": 2336693, "entity": "dog", "caption": "the dog's back legs are black", "question": ["are there the dog's back legs ?"], "prompt": "the {}'s back legs are black"}, {"index": 991, "image_id": 2336693, "entity": "dog", "caption": "the dog's shadow is in the grass", "question": ["is there the dog's shadow ?", "is there the grass ?"], "prompt": "the {}'s shadow is in the grass"}, {"index": 992, "image_id": 2336402, "entity": "dog", "caption": "dog with it's head in a box", "question": ["is there dog ?", "is there head ?", "is there a box ?"], "prompt": "{} with it's head in a box"}, {"index": 993, "image_id": 2336402, "entity": "dog", "caption": "A black streak down dogs back", "question": ["is there a black streak ?"], "prompt": "A black streak down {}s back"}, {"index": 994, "image_id": 2336402, "entity": "dog", "caption": "the dogs head is in the box", "question": ["are there the dogs ?", "is there the box ?"], "prompt": "the {}s head is in the box"}, {"index": 995, "image_id": 2336257, "entity": "dog", "caption": "the dog is in water", "question": ["is there the dog ?", "is there water ?"], "prompt": "the {} is in water"}, {"index": 996, "image_id": 2336147, "entity": "dog", "caption": "Black and white dog standing on a sandy ground.", "question": ["is there black and white dog ?", "is there a sandy ground ?"], "prompt": "Black and white {} standing on a sandy ground."}, {"index": 997, "image_id": 2336147, "entity": "dog", "caption": "The dog's pink tongue sticking out.", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue sticking out."}, {"index": 998, "image_id": 2336147, "entity": "dog", "caption": "dog's face is black and white", "question": ["is there dog's face ?"], "prompt": "{}'s face is black and white"}, {"index": 999, "image_id": 2336147, "entity": "dog", "caption": "dog's tongue is sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is sticking out"}, {"index": 1000, "image_id": 2336147, "entity": "dog", "caption": "dog's paw is white", "question": ["is there dog's paw ?"], "prompt": "{}'s paw is white"}, {"index": 1001, "image_id": 2336045, "entity": "dog", "caption": "fake dog sits on bench", "question": ["is there fake dog ?", "is there bench ?"], "prompt": "fake {} sits on bench"}, {"index": 1002, "image_id": 2336045, "entity": "dog", "caption": "fake dog wears red collar", "question": ["is there fake dog ?", "is there red collar ?"], "prompt": "fake {} wears red collar"}, {"index": 1003, "image_id": 2335892, "entity": "dog", "caption": "Toy occupies leashed dog.", "question": ["is there toy ?", "is there leashed dog ?"], "prompt": "Toy occupies leashed {}."}, {"index": 1004, "image_id": 2335707, "entity": "dog", "caption": "dog has dark claws", "question": ["is there dog ?", "are there dark claws ?"], "prompt": "{} has dark claws"}, {"index": 1005, "image_id": 2335655, "entity": "dog", "caption": "Tan dog is holding toy in mouth.", "question": ["is there tan dog ?", "is there toy ?", "is there mouth ?"], "prompt": "Tan {} is holding toy in mouth."}, {"index": 1006, "image_id": 2335655, "entity": "dog", "caption": "This dog seems to have a white face", "question": ["is there this dog ?", "is there a white face ?"], "prompt": "This {} seems to have a white face"}, {"index": 1007, "image_id": 2335655, "entity": "dog", "caption": "This dog has quite a paw visible here", "question": ["is there this dog ?", "is there quite a paw ?"], "prompt": "This {} has quite a paw visible here"}, {"index": 1008, "image_id": 2335550, "entity": "dog", "caption": "dog is laying on the couch", "question": ["is there dog ?", "is there the couch ?"], "prompt": "{} is laying on the couch"}, {"index": 1009, "image_id": 2335550, "entity": "dog", "caption": "dog has fluffy dark fur", "question": ["is there dog ?", "is there fluffy dark fur ?"], "prompt": "{} has fluffy dark fur"}, {"index": 1010, "image_id": 2335487, "entity": "dog", "caption": "an ear is up on the dog", "question": ["is there an ear ?", "is there the dog ?"], "prompt": "an ear is up on the {}"}, {"index": 1011, "image_id": 2335487, "entity": "dog", "caption": "the dog is wearing a yellow coat", "question": ["is there the dog ?", "is there a yellow coat ?"], "prompt": "the {} is wearing a yellow coat"}, {"index": 1012, "image_id": 2335487, "entity": "dog", "caption": "dog's cloth is green", "question": ["is there dog's cloth ?"], "prompt": "{}'s cloth is green"}, {"index": 1013, "image_id": 2334964, "entity": "dog", "caption": "Chain connected to dog's collar.", "question": ["is there chain ?", "is there dog's collar ?"], "prompt": "Chain connected to {}'s collar."}, {"index": 1014, "image_id": 2334964, "entity": "dog", "caption": "the dog has a collar ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar "}, {"index": 1015, "image_id": 2334964, "entity": "dog", "caption": "the collar is around the dog's neck", "question": ["is there the collar ?", "is there the dog's neck ?"], "prompt": "the collar is around the {}'s neck"}, {"index": 1016, "image_id": 2334936, "entity": "dog", "caption": "dog has an eye", "question": ["is there dog ?", "is there an eye ?"], "prompt": "{} has an eye"}, {"index": 1017, "image_id": 2334611, "entity": "dog", "caption": "front left foot on dog", "question": ["is there front left foot ?", "is there dog ?"], "prompt": "front left foot on {}"}, {"index": 1018, "image_id": 2334526, "entity": "dog", "caption": "The dog nose is black.", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black."}, {"index": 1019, "image_id": 2334526, "entity": "dog", "caption": "The dog eyes on his face.", "question": ["is there the dog ?", "is there his face ?"], "prompt": "The {} eyes on his face."}, {"index": 1020, "image_id": 2334482, "entity": "dog", "caption": "This is a dog", "question": ["is there a dog ?"], "prompt": "This is a {}"}, {"index": 1021, "image_id": 2334482, "entity": "dog", "caption": "The dog is on a bench", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is on a bench"}, {"index": 1022, "image_id": 2334375, "entity": "dog", "caption": "dog nose is black", "question": ["is there dog nose ?"], "prompt": "{} nose is black"}, {"index": 1023, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is black.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is black."}, {"index": 1024, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is round.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is round."}, {"index": 1025, "image_id": 2334355, "entity": "dog", "caption": "The dogs left ear is black.", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "The {}s left ear is black."}, {"index": 1026, "image_id": 2334355, "entity": "dog", "caption": "The dogs right eye is black.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is black."}, {"index": 1027, "image_id": 2333902, "entity": "dog", "caption": "The dog is laying on the back of the couch", "question": ["is there the dog ?", "is there the back ?", "is there the couch ?"], "prompt": "The {} is laying on the back of the couch"}, {"index": 1028, "image_id": 2333902, "entity": "dog", "caption": "The dogs tongue is sticking out of his mouth", "question": ["are there the dogs tongue ?", "is there his mouth ?"], "prompt": "The {}s tongue is sticking out of his mouth"}, {"index": 1029, "image_id": 2333902, "entity": "dog", "caption": "dog has a nose", "question": ["is there dog ?", "is there a nose ?"], "prompt": "{} has a nose"}, {"index": 1030, "image_id": 2333902, "entity": "dog", "caption": "dog has an ear", "question": ["is there dog ?", "is there an ear ?"], "prompt": "{} has an ear"}, {"index": 1031, "image_id": 2333902, "entity": "dog", "caption": "dog has a tounge", "question": ["is there dog ?", "is there a tounge ?"], "prompt": "{} has a tounge"}, {"index": 1032, "image_id": 2333902, "entity": "dog", "caption": "dog has an arm", "question": ["is there dog ?", "is there an arm ?"], "prompt": "{} has an arm"}, {"index": 1033, "image_id": 2333590, "entity": "dog", "caption": "the dog is smelling her hand", "question": ["is there the dog ?", "is there her hand ?"], "prompt": "the {} is smelling her hand"}, {"index": 1034, "image_id": 2333443, "entity": "dog", "caption": "wet dog taking a bath in a tub", "question": ["is there wet dog ?", "is there a bath ?", "is there a tub ?"], "prompt": "wet {} taking a bath in a tub"}, {"index": 1035, "image_id": 2333438, "entity": "dog", "caption": "The dog has a brown eye.", "question": ["is there the dog ?", "is there a brown eye ?"], "prompt": "The {} has a brown eye."}, {"index": 1036, "image_id": 2333438, "entity": "dog", "caption": "The dogs eye is open.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is open."}, {"index": 1037, "image_id": 2333438, "entity": "dog", "caption": "The dog has teeth.", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "The {} has teeth."}, {"index": 1038, "image_id": 2333438, "entity": "dog", "caption": "The dog has a tongue.", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "The {} has a tongue."}, {"index": 1039, "image_id": 2333438, "entity": "dog", "caption": "The dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "The {} has a red collar"}, {"index": 1040, "image_id": 2333438, "entity": "dog", "caption": "dog with its ears bag", "question": ["is there dog ?", "are there its ears ?"], "prompt": "{} with its ears bag"}, {"index": 1041, "image_id": 2333438, "entity": "dog", "caption": "dog mouth open", "question": [], "prompt": "{} mouth open"}, {"index": 1042, "image_id": 2333438, "entity": "dog", "caption": "dog has black and white paws", "question": ["is there dog ?", "are there black and white paws ?"], "prompt": "{} has black and white paws"}, {"index": 1043, "image_id": 2333438, "entity": "dog", "caption": "dog's mouth is open with tounge out", "question": ["is there dog's mouth ?", "is there tounge ?"], "prompt": "{}'s mouth is open with tounge out"}, {"index": 1044, "image_id": 2333301, "entity": "dog", "caption": "the dog has its mouth open.", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open."}, {"index": 1045, "image_id": 2333301, "entity": "dog", "caption": "the dog's ear is standing straight up.", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is standing straight up."}, {"index": 1046, "image_id": 2333301, "entity": "dog", "caption": "the dog's left back leg.", "question": ["is there the dog ?", "is there leg ?"], "prompt": "the {}'s left back leg."}, {"index": 1047, "image_id": 2333301, "entity": "dog", "caption": "dog mouth wide open ", "question": [], "prompt": "{} mouth wide open "}, {"index": 1048, "image_id": 2333301, "entity": "dog", "caption": "dog's tongue is pink.", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink."}, {"index": 1049, "image_id": 2332835, "entity": "dog", "caption": "The dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is pink."}, {"index": 1050, "image_id": 2332835, "entity": "dog", "caption": "The dogs right eye is round.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is round."}, {"index": 1051, "image_id": 2332607, "entity": "dog", "caption": "dog's eyes looking at camera", "question": ["are there dog's eyes ?", "is there camera ?"], "prompt": "{}'s eyes looking at camera"}, {"index": 1052, "image_id": 2332583, "entity": "dog", "caption": "dog has brown tail", "question": ["is there dog ?", "is there brown tail ?"], "prompt": "{} has brown tail"}, {"index": 1053, "image_id": 2332583, "entity": "dog", "caption": "dog has brown back", "question": ["is there dog ?"], "prompt": "{} has brown back"}, {"index": 1054, "image_id": 2332513, "entity": "dog", "caption": "two dogs are lying ", "question": ["are there two dogs ?"], "prompt": "two {}s are lying "}, {"index": 1055, "image_id": 2332513, "entity": "dog", "caption": "this dog's head is up ", "question": ["is there this dog's head ?"], "prompt": "this {}'s head is up "}, {"index": 1056, "image_id": 2332418, "entity": "dog", "caption": "dog has white ears", "question": ["is there dog ?", "are there white ears ?"], "prompt": "{} has white ears"}, {"index": 1057, "image_id": 2331647, "entity": "dog", "caption": "The hat the dog is wearing.", "question": ["is there the hat ?", "is there the dog ?"], "prompt": "The hat the {} is wearing."}, {"index": 1058, "image_id": 2331519, "entity": "dog", "caption": "The dog tongue is pink.", "question": ["is there the dog tongue ?"], "prompt": "The {} tongue is pink."}, {"index": 1059, "image_id": 2331519, "entity": "dog", "caption": "The dog is licking his tongue out.", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "The {} is licking his tongue out."}, {"index": 1060, "image_id": 2331519, "entity": "dog", "caption": "The frisbee is near the dog leg.", "question": ["is there the dog leg ?"], "prompt": "The frisbee is near the {} leg."}, {"index": 1061, "image_id": 2331519, "entity": "dog", "caption": "The dog is playing with the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee"}, {"index": 1062, "image_id": 2331519, "entity": "dog", "caption": "The Frisbee is in front of the dog. ", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The Frisbee is in front of the {}. "}, {"index": 1063, "image_id": 2331395, "entity": "dog", "caption": "The front left paw of the dog.", "question": ["is there the front left paw ?", "is there the dog ?"], "prompt": "The front left paw of the {}."}, {"index": 1064, "image_id": 2330828, "entity": "dog", "caption": "dog has long nose", "question": ["is there dog ?", "is there long nose ?"], "prompt": "{} has long nose"}, {"index": 1065, "image_id": 2330828, "entity": "dog", "caption": "dog has nice coat", "question": ["is there dog ?", "is there nice coat ?"], "prompt": "{} has nice coat"}, {"index": 1066, "image_id": 2330828, "entity": "dog", "caption": "dog has big ear", "question": ["is there dog ?", "is there big ear ?"], "prompt": "{} has big ear"}, {"index": 1067, "image_id": 2329335, "entity": "dog", "caption": "dog has brown paws", "question": ["is there dog ?", "are there brown paws ?"], "prompt": "{} has brown paws"}, {"index": 1068, "image_id": 2329309, "entity": "dog", "caption": "brown white and black dog catching yellow Frisbee", "question": ["is there brown white and black dog ?", "is there yellow frisbee ?"], "prompt": "brown white and black {} catching yellow Frisbee"}, {"index": 1069, "image_id": 2329309, "entity": "dog", "caption": "Frisbee caught by black and brown dog", "question": ["is there black and brown dog ?"], "prompt": "Frisbee caught by black and brown {}"}, {"index": 1070, "image_id": 2329275, "entity": "dog", "caption": "the dog is lying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is lying on the couch"}, {"index": 1071, "image_id": 2329129, "entity": "dog", "caption": "the dog is eating a cake", "question": ["is there the dog ?", "is there a cake ?"], "prompt": "the {} is eating a cake"}, {"index": 1072, "image_id": 2328916, "entity": "dog", "caption": "The dog is sniffing the donut", "question": ["is there the dog ?", "is there the donut ?"], "prompt": "The {} is sniffing the donut"}, {"index": 1073, "image_id": 2328916, "entity": "dog", "caption": "bulldog sniffing a doughnut ", "question": ["is there a doughnut ?"], "prompt": "bull{} sniffing a doughnut "}, {"index": 1074, "image_id": 2328869, "entity": "dog", "caption": "black hat dog is wearing", "question": ["is there black hat dog ?"], "prompt": "black hat {} is wearing"}, {"index": 1075, "image_id": 2328633, "entity": "dog", "caption": "a dog with black spots on it's ear", "question": ["is there a dog ?", "are there black spots ?", "is there ear ?"], "prompt": "a {} with black spots on it's ear"}, {"index": 1076, "image_id": 2327968, "entity": "dog", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car "}, {"index": 1077, "image_id": 2327968, "entity": "dog", "caption": "the dog is sticking its head out ", "question": ["is there the dog ?", "is there its head ?"], "prompt": "the {} is sticking its head out "}, {"index": 1078, "image_id": 2327968, "entity": "dog", "caption": "the dog has its head out the window ", "question": ["is there the dog ?", "is there its head ?", "is there the window ?"], "prompt": "the {} has its head out the window "}, {"index": 1079, "image_id": 2327286, "entity": "dog", "caption": "the dogs eyes are closed", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are closed"}, {"index": 1080, "image_id": 2326860, "entity": "dog", "caption": "The dog has a frisbee inside his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee inside his mouth."}, {"index": 1081, "image_id": 2326801, "entity": "dog", "caption": "A blue duffel bag a dog is on.", "question": ["is there a blue duffel bag ?", "is there a dog ?"], "prompt": "A blue duffel bag a {} is on."}, {"index": 1082, "image_id": 2325767, "entity": "dog", "caption": "A person is holding the dog", "question": ["is there a person ?", "is there the dog ?"], "prompt": "A person is holding the {}"}, {"index": 1083, "image_id": 2325561, "entity": "dog", "caption": "The dog's mouth is open", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open"}, {"index": 1084, "image_id": 2325561, "entity": "dog", "caption": "The dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black"}, {"index": 1085, "image_id": 2325561, "entity": "dog", "caption": "The dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 1086, "image_id": 2325561, "entity": "dog", "caption": "dog has a black nose ", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose "}, {"index": 1087, "image_id": 2325561, "entity": "dog", "caption": "the dog has brown eye", "question": ["is there the dog ?", "is there brown eye ?"], "prompt": "the {} has brown eye"}, {"index": 1088, "image_id": 2325561, "entity": "dog", "caption": "the dogs left eye ", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye "}, {"index": 1089, "image_id": 2325561, "entity": "dog", "caption": "the dogs left ear ", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "the {}s left ear "}, {"index": 1090, "image_id": 2325561, "entity": "dog", "caption": "dog has orange eyes", "question": ["is there dog ?", "are there orange eyes ?"], "prompt": "{} has orange eyes"}, {"index": 1091, "image_id": 2325561, "entity": "dog", "caption": "brown dog has golden eyes", "question": ["is there brown dog ?", "are there golden eyes ?"], "prompt": "brown {} has golden eyes"}, {"index": 1092, "image_id": 2325561, "entity": "dog", "caption": "black dog has brown eyes", "question": ["is there black dog ?", "are there brown eyes ?"], "prompt": "black {} has brown eyes"}, {"index": 1093, "image_id": 2325561, "entity": "dog", "caption": "black dog has a black nose", "question": ["is there black dog ?", "is there a black nose ?"], "prompt": "black {} has a black nose"}, {"index": 1094, "image_id": 2325561, "entity": "dog", "caption": "black dog has some white hair in its ruff", "question": ["is there black dog ?", "is there some white hair ?", "is there its ruff ?"], "prompt": "black {} has some white hair in its ruff"}, {"index": 1095, "image_id": 2325500, "entity": "dog", "caption": "eyes of dog open wide", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} open wide"}, {"index": 1096, "image_id": 2325500, "entity": "dog", "caption": "the dog has a safety vest", "question": ["is there the dog ?", "is there a safety vest ?"], "prompt": "the {} has a safety vest"}, {"index": 1097, "image_id": 2325442, "entity": "dog", "caption": "dog's ears are pink", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are pink"}, {"index": 1098, "image_id": 2325387, "entity": "dog", "caption": "Woman laying on the floor next to dog.", "question": ["is there woman ?", "is there the floor ?", "is there dog ?"], "prompt": "Woman laying on the floor next to {}."}, {"index": 1099, "image_id": 2324981, "entity": "dog", "caption": "The dog has black patch over eye.", "question": ["is there the dog ?", "is there black patch ?", "is there eye ?"], "prompt": "The {} has black patch over eye."}, {"index": 1100, "image_id": 2324981, "entity": "dog", "caption": "The dog is carrying a blue frisbee.", "question": ["is there the dog ?", "is there a blue frisbee ?"], "prompt": "The {} is carrying a blue frisbee."}, {"index": 1101, "image_id": 2324981, "entity": "dog", "caption": "The dog has a nose.", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "The {} has a nose."}, {"index": 1102, "image_id": 2323880, "entity": "dog", "caption": "dog is in picture", "question": ["is there dog ?", "is there picture ?"], "prompt": "{} is in picture"}, {"index": 1103, "image_id": 2323470, "entity": "dog", "caption": "the dog is laying in a green towel", "question": ["is there the dog ?", "is there a green towel ?"], "prompt": "the {} is laying in a green towel"}, {"index": 1104, "image_id": 2322848, "entity": "dog", "caption": "the cat and the dog are good friends", "question": ["is there the cat ?", "is there the dog ?", "are there good friends ?"], "prompt": "the cat and the {} are good friends"}, {"index": 1105, "image_id": 2322848, "entity": "dog", "caption": "this cat and this dog are obviously best friends", "question": ["is there this cat ?", "is there this dog ?", "are there best friends ?"], "prompt": "this cat and this {} are obviously best friends"}, {"index": 1106, "image_id": 2322792, "entity": "dog", "caption": "extended wet dog ear ", "question": ["is there extended wet dog ear ?"], "prompt": "extended wet {} ear "}, {"index": 1107, "image_id": 2322792, "entity": "dog", "caption": "dog ear flipping up", "question": ["is there dog ear ?"], "prompt": "{} ear flipping up"}, {"index": 1108, "image_id": 2322492, "entity": "dog", "caption": "Pile of clothes a small dog is lying on", "question": ["is there pile ?", "are there clothes ?", "is there a small dog ?"], "prompt": "Pile of clothes a small {} is lying on"}, {"index": 1109, "image_id": 2322220, "entity": "dog", "caption": "a dog is lying in the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "a {} is lying in the bed"}, {"index": 1110, "image_id": 2322220, "entity": "dog", "caption": "the dog is under the sheet", "question": ["is there the dog ?", "is there the sheet ?"], "prompt": "the {} is under the sheet"}, {"index": 1111, "image_id": 2322220, "entity": "dog", "caption": "the dogs ears are brown", "question": ["are there the dogs ears ?"], "prompt": "the {}s ears are brown"}, {"index": 1112, "image_id": 2322220, "entity": "dog", "caption": "the dogs front legs are white", "question": ["are there the dogs ?", "are there front legs ?"], "prompt": "the {}s front legs are white"}, {"index": 1113, "image_id": 2322086, "entity": "dog", "caption": "the dog has white spots", "question": ["is there the dog ?", "are there white spots ?"], "prompt": "the {} has white spots"}, {"index": 1114, "image_id": 2321901, "entity": "dog", "caption": "the dog is laying on a pillow ", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "the {} is laying on a pillow "}, {"index": 1115, "image_id": 2321544, "entity": "dog", "caption": "A silver chain is around the dog's neck.", "question": ["is there a silver chain ?", "is there the dog's neck ?"], "prompt": "A silver chain is around the {}'s neck."}, {"index": 1116, "image_id": 2321544, "entity": "dog", "caption": "The dog's left ear is black and brown. ", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear is black and brown. "}, {"index": 1117, "image_id": 2321544, "entity": "dog", "caption": "The dog's right ear is black and brown. ", "question": ["is there the dog's right ear ?"], "prompt": "The {}'s right ear is black and brown. "}, {"index": 1118, "image_id": 2321386, "entity": "dog", "caption": "the dog has a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} has a chain"}, {"index": 1119, "image_id": 2320693, "entity": "dog", "caption": "the dog has a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} has a frisbee"}, {"index": 1120, "image_id": 2320693, "entity": "dog", "caption": "the dog has the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "the {} has the frisbee"}, {"index": 1121, "image_id": 2320693, "entity": "dog", "caption": "teh dog has brown eyes", "question": ["are there brown eyes ?"], "prompt": "teh {} has brown eyes"}, {"index": 1122, "image_id": 2320693, "entity": "dog", "caption": "dog has frisbee in his mouth", "question": ["is there dog ?", "is there frisbee ?", "is there his mouth ?"], "prompt": "{} has frisbee in his mouth"}, {"index": 1123, "image_id": 2320693, "entity": "dog", "caption": "dog in mouth is pink", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} in mouth is pink"}, {"index": 1124, "image_id": 2319884, "entity": "dog", "caption": "dog is eating a vitamin water", "question": ["is there dog ?", "is there a vitamin water ?"], "prompt": "{} is eating a vitamin water"}, {"index": 1125, "image_id": 2319723, "entity": "dog", "caption": "the dog is kissing the cat", "question": ["is there the dog ?", "is there the cat ?"], "prompt": "the {} is kissing the cat"}, {"index": 1126, "image_id": 2319347, "entity": "dog", "caption": "The dog is wearing a shirt", "question": ["is there the dog ?", "is there a shirt ?"], "prompt": "The {} is wearing a shirt"}, {"index": 1127, "image_id": 2319347, "entity": "dog", "caption": "The dog has on a nice shirt", "question": ["is there the dog ?", "is there a nice shirt ?"], "prompt": "The {} has on a nice shirt"}, {"index": 1128, "image_id": 2319347, "entity": "dog", "caption": "The dog has very long hair", "question": ["is there the dog ?", "is there very long hair ?"], "prompt": "The {} has very long hair"}, {"index": 1129, "image_id": 2319347, "entity": "dog", "caption": "The dog is having a great time", "question": ["is there the dog ?", "is there a great time ?"], "prompt": "The {} is having a great time"}, {"index": 1130, "image_id": 2319347, "entity": "dog", "caption": "The dog is out in the daytime", "question": ["is there the dog ?", "is there the daytime ?"], "prompt": "The {} is out in the daytime"}, {"index": 1131, "image_id": 2319347, "entity": "dog", "caption": "The dog is enjoying the day", "question": ["is there the dog ?", "is there the day ?"], "prompt": "The {} is enjoying the day"}, {"index": 1132, "image_id": 2318934, "entity": "dog", "caption": "A dog is wearing a shirt", "question": ["is there a dog ?", "is there a shirt ?"], "prompt": "A {} is wearing a shirt"}, {"index": 1133, "image_id": 2318934, "entity": "dog", "caption": "A dog has on a visor", "question": ["is there a dog ?", "is there a visor ?"], "prompt": "A {} has on a visor"}, {"index": 1134, "image_id": 2318934, "entity": "dog", "caption": "A dog has white curly hair", "question": ["is there a dog ?", "is there white curly hair ?"], "prompt": "A {} has white curly hair"}, {"index": 1135, "image_id": 2318934, "entity": "dog", "caption": "A dog is sticking its tongue out", "question": ["is there a dog ?", "is there its tongue ?"], "prompt": "A {} is sticking its tongue out"}, {"index": 1136, "image_id": 2318934, "entity": "dog", "caption": "A dog is with its master", "question": ["is there a dog ?", "is there its master ?"], "prompt": "A {} is with its master"}, {"index": 1137, "image_id": 2318892, "entity": "dog", "caption": "The dog has black fur", "question": ["is there the dog ?", "is there black fur ?"], "prompt": "The {} has black fur"}, {"index": 1138, "image_id": 2318849, "entity": "dog", "caption": "brown dog curled up with head on blanket", "question": ["is there brown dog ?", "is there head ?", "is there blanket ?"], "prompt": "brown {} curled up with head on blanket"}, {"index": 1139, "image_id": 2318849, "entity": "dog", "caption": "brown dog cuddled with toy with paw on bunny", "question": ["is there brown dog ?", "is there toy ?", "is there paw ?", "is there bunny ?"], "prompt": "brown {} cuddled with toy with paw on bunny"}, {"index": 1140, "image_id": 2318849, "entity": "dog", "caption": "a dog is in bed", "question": ["is there a dog ?", "is there bed ?"], "prompt": "a {} is in bed"}, {"index": 1141, "image_id": 2318849, "entity": "dog", "caption": "the dog is holding a doll", "question": ["is there the dog ?", "is there a doll ?"], "prompt": "the {} is holding a doll"}, {"index": 1142, "image_id": 2318849, "entity": "dog", "caption": "another doll lies close to the dog", "question": ["is there another doll ?", "is there the dog ?"], "prompt": "another doll lies close to the {}"}, {"index": 1143, "image_id": 2318849, "entity": "dog", "caption": "dog eyes are open", "question": ["are there dog eyes ?"], "prompt": "{} eyes are open"}, {"index": 1144, "image_id": 2318849, "entity": "dog", "caption": "the dog's paw is on the toy", "question": ["is there the dog's paw ?", "is there the toy ?"], "prompt": "the {}'s paw is on the toy"}, {"index": 1145, "image_id": 2318849, "entity": "dog", "caption": "dog holding white stuffed bunny", "question": ["is there white stuffed bunny ?"], "prompt": "{} holding white stuffed bunny"}, {"index": 1146, "image_id": 2318152, "entity": "dog", "caption": "Mulch dog is standing on", "question": ["is there mulch dog ?"], "prompt": "Mulch {} is standing on"}, {"index": 1147, "image_id": 2318115, "entity": "dog", "caption": "Brown leash on a dog", "question": ["is there brown leash ?", "is there a dog ?"], "prompt": "Brown leash on a {}"}, {"index": 1148, "image_id": 2318115, "entity": "dog", "caption": "A person on a skateboard walking their dog", "question": ["is there a person ?", "is there a skateboard ?", "is there their dog ?"], "prompt": "A person on a skateboard walking their {}"}, {"index": 1149, "image_id": 2318115, "entity": "dog", "caption": "person walking the dog", "question": ["is there person ?", "is there the dog ?"], "prompt": "person walking the {}"}, {"index": 1150, "image_id": 2317836, "entity": "dog", "caption": "the dog is in costume", "question": ["is there the dog ?", "is there costume ?"], "prompt": "the {} is in costume"}, {"index": 1151, "image_id": 2317283, "entity": "dog", "caption": "dog paws are tan", "question": ["are there dog paws ?", "is there tan ?"], "prompt": "{} paws are tan"}, {"index": 1152, "image_id": 2317283, "entity": "dog", "caption": "dog has mouth open", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} has mouth open"}, {"index": 1153, "image_id": 2317283, "entity": "dog", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} is in a car."}, {"index": 1154, "image_id": 2317283, "entity": "dog", "caption": "The dog's eyes are open.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open."}, {"index": 1155, "image_id": 2317002, "entity": "dog", "caption": "black whiskers are on the dog", "question": ["are there black whiskers ?", "is there the dog ?"], "prompt": "black whiskers are on the {}"}, {"index": 1156, "image_id": 2317002, "entity": "dog", "caption": "brown nails are on the dog", "question": ["are there brown nails ?", "is there the dog ?"], "prompt": "brown nails are on the {}"}, {"index": 1157, "image_id": 2316886, "entity": "dog", "caption": "the dog appears to be enjoying his snack", "question": ["is there the dog ?", "is there his snack ?"], "prompt": "the {} appears to be enjoying his snack"}, {"index": 1158, "image_id": 2316480, "entity": "dog", "caption": "nose of dog is black ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black "}, {"index": 1159, "image_id": 2316480, "entity": "dog", "caption": "dog sits on couch", "question": ["is there dog ?", "is there couch ?"], "prompt": "{} sits on couch"}, {"index": 1160, "image_id": 2316480, "entity": "dog", "caption": "dog has pink dress", "question": ["is there dog ?", "is there pink dress ?"], "prompt": "{} has pink dress"}, {"index": 1161, "image_id": 2316349, "entity": "dog", "caption": "dog ear on right", "question": ["is there dog ear ?"], "prompt": "{} ear on right"}, {"index": 1162, "image_id": 2316242, "entity": "dog", "caption": "a dog rests on a person", "question": ["is there a dog ?", "is there a person ?"], "prompt": "a {} rests on a person"}, {"index": 1163, "image_id": 2316242, "entity": "dog", "caption": "The dog is wearing a hat.", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} is wearing a hat."}, {"index": 1164, "image_id": 2316242, "entity": "dog", "caption": "The hat is on the dog's head.", "question": ["is there the hat ?", "is there the dog's head ?"], "prompt": "The hat is on the {}'s head."}, {"index": 1165, "image_id": 2316242, "entity": "dog", "caption": "The dog has whiskers.", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "The {} has whiskers."}, {"index": 1166, "image_id": 2316170, "entity": "dog", "caption": "small dog with eyes closed", "question": ["is there small dog ?", "are there eyes ?"], "prompt": "small {} with eyes closed"}, {"index": 1167, "image_id": 2315589, "entity": "dog", "caption": "The dogs nose is black in color. ", "question": ["are there the dogs nose ?", "is there color ?"], "prompt": "The {}s nose is black in color. "}, {"index": 1168, "image_id": 2315589, "entity": "dog", "caption": "The dog has a black nose. ", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose. "}, {"index": 1169, "image_id": 2315589, "entity": "dog", "caption": "The dogs eye is brown.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is brown."}, {"index": 1170, "image_id": 2315589, "entity": "dog", "caption": "The dogs ear is black. ", "question": ["are there the dogs ?"], "prompt": "The {}s ear is black. "}, {"index": 1171, "image_id": 2315468, "entity": "dog", "caption": "dog has a leg", "question": ["is there dog ?", "is there a leg ?"], "prompt": "{} has a leg"}, {"index": 1172, "image_id": 2315468, "entity": "dog", "caption": "the dog carries a green frisbee", "question": ["is there the dog ?", "is there a green frisbee ?"], "prompt": "the {} carries a green frisbee"}, {"index": 1173, "image_id": 2315468, "entity": "dog", "caption": "the dog's collar is green", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is green"}, {"index": 1174, "image_id": 2315447, "entity": "dog", "caption": "A dogs left black eye. ", "question": ["are there a dogs ?", "is there black eye ?"], "prompt": "A {}s left black eye. "}, {"index": 1175, "image_id": 2315441, "entity": "dog", "caption": "The 2 dogs lay on the bed together", "question": ["are there the 2 dogs ?", "is there the bed ?"], "prompt": "The 2 {}s lay on the bed together"}, {"index": 1176, "image_id": 2315441, "entity": "dog", "caption": "The dog is laying on the other dog", "question": ["is there the dog ?", "is there the other dog ?"], "prompt": "The {} is laying on the other {}"}, {"index": 1177, "image_id": 2315441, "entity": "dog", "caption": "The dogs are on the comfortable looking bed", "question": ["are there the dogs ?", "is there the comfortable looking bed ?"], "prompt": "The {}s are on the comfortable looking bed"}, {"index": 1178, "image_id": 2315441, "entity": "dog", "caption": "The dog has a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} has a blue collar"}, {"index": 1179, "image_id": 2315441, "entity": "dog", "caption": "Brown dogs left eye.", "question": ["are there brown dogs ?", "is there eye ?"], "prompt": "Brown {}s left eye."}, {"index": 1180, "image_id": 2414390, "entity": "dog", "caption": "the dog is playing with a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is playing with a frisbee"}, {"index": 1181, "image_id": 2414390, "entity": "dog", "caption": "the dog has brown ears", "question": ["is there the dog ?", "are there brown ears ?"], "prompt": "the {} has brown ears"}, {"index": 1182, "image_id": 2414304, "entity": "dog", "caption": "A dog is in the picture.", "question": ["is there a dog ?", "is there the picture ?"], "prompt": "A {} is in the picture."}, {"index": 1183, "image_id": 2414304, "entity": "dog", "caption": "The dog has on a black collar.", "question": ["is there the dog ?", "is there a black collar ?"], "prompt": "The {} has on a black collar."}, {"index": 1184, "image_id": 2414304, "entity": "dog", "caption": "The dog is standing in the sand.", "question": ["is there the dog ?", "is there the sand ?"], "prompt": "The {} is standing in the sand."}, {"index": 1185, "image_id": 2414304, "entity": "dog", "caption": "The dog is staring at his master.", "question": ["is there the dog ?", "is there his master ?"], "prompt": "The {} is staring at his master."}, {"index": 1186, "image_id": 2412940, "entity": "dog", "caption": "Sun light over the body of dogs", "question": ["is there sun light ?", "is there the body ?", "are there dogs ?"], "prompt": "Sun light over the body of {}s"}, {"index": 1187, "image_id": 2412940, "entity": "dog", "caption": "the dogs eyes are wide apart", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are wide apart"}, {"index": 1188, "image_id": 2412718, "entity": "dog", "caption": "the dog is resting on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is resting on a blanket"}, {"index": 1189, "image_id": 2412718, "entity": "dog", "caption": "the dog has his ears bent", "question": ["is there the dog ?", "are there his ears ?"], "prompt": "the {} has his ears bent"}, {"index": 1190, "image_id": 2412718, "entity": "dog", "caption": "the dog has pretty blue eyes", "question": ["is there the dog ?", "are there pretty blue eyes ?"], "prompt": "the {} has pretty blue eyes"}, {"index": 1191, "image_id": 2412718, "entity": "dog", "caption": "the dog has brown feet", "question": ["is there the dog ?", "are there brown feet ?"], "prompt": "the {} has brown feet"}, {"index": 1192, "image_id": 2412718, "entity": "dog", "caption": "The dog is sitting on blankets", "question": ["is there the dog ?", "are there blankets ?"], "prompt": "The {} is sitting on blankets"}, {"index": 1193, "image_id": 2412718, "entity": "dog", "caption": "The dog has 2 ears", "question": ["is there the dog ?", "are there 2 ears ?"], "prompt": "The {} has 2 ears"}, {"index": 1194, "image_id": 2412718, "entity": "dog", "caption": "The dog has a tail", "question": ["is there the dog ?", "is there a tail ?"], "prompt": "The {} has a tail"}, {"index": 1195, "image_id": 2412718, "entity": "dog", "caption": "The dog's eyes are blue", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are blue"}, {"index": 1196, "image_id": 2412718, "entity": "dog", "caption": "The dog has 4 paws", "question": ["is there the dog ?", "are there 4 paws ?"], "prompt": "The {} has 4 paws"}, {"index": 1197, "image_id": 2412430, "entity": "dog", "caption": "A dog is laying down on a couch.", "question": ["is there a dog ?", "is there a couch ?"], "prompt": "A {} is laying down on a couch."}, {"index": 1198, "image_id": 2412430, "entity": "dog", "caption": "The dog's nose is black in color.", "question": ["is there the dog's nose ?", "is there color ?"], "prompt": "The {}'s nose is black in color."}, {"index": 1199, "image_id": 2412382, "entity": "dog", "caption": "the dogs are on the seat", "question": ["are there the dogs ?", "is there the seat ?"], "prompt": "the {}s are on the seat"}, {"index": 1200, "image_id": 2412382, "entity": "dog", "caption": "the dogs eyes are black", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are black"}, {"index": 1201, "image_id": 2412215, "entity": "dog", "caption": "The white sheet the dog's paw and mouth is resting on.", "question": ["is there the dog's paw ?", "is there mouth ?"], "prompt": "The white sheet the {}'s paw and mouth is resting on."}, {"index": 1202, "image_id": 2412215, "entity": "dog", "caption": "The black dog's head resting on the bed.", "question": ["is there the black dog's head ?", "is there the bed ?"], "prompt": "The black {}'s head resting on the bed."}, {"index": 1203, "image_id": 2411734, "entity": "dog", "caption": "A dog with a white nose looks at a birthday cupcake", "question": ["is there a dog ?", "is there a white nose ?", "is there a birthday cupcake ?"], "prompt": "A {} with a white nose looks at a birthday cupcake"}, {"index": 1204, "image_id": 2411533, "entity": "dog", "caption": "White mouse and cat sitting on dog.", "question": ["is there cat ?", "is there dog ?"], "prompt": "White mouse and cat sitting on {}."}, {"index": 1205, "image_id": 2411533, "entity": "dog", "caption": "cat is on a dogs back", "question": ["is there cat ?", "are there a dogs ?"], "prompt": "cat is on a {}s back"}, {"index": 1206, "image_id": 2411533, "entity": "dog", "caption": "dog is walking on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} is walking on sidewalk"}, {"index": 1207, "image_id": 2411533, "entity": "dog", "caption": "dog is wearing a brown vest", "question": ["is there dog ?", "is there a brown vest ?"], "prompt": "{} is wearing a brown vest"}, {"index": 1208, "image_id": 2411533, "entity": "dog", "caption": "a cat is on the dog's back", "question": ["is there a cat ?", "is there the dog ?"], "prompt": "a cat is on the {}'s back"}, {"index": 1209, "image_id": 2411533, "entity": "dog", "caption": "a cat and a mouse are both on a dog", "question": ["is there a cat ?", "is there a mouse ?", "is there a dog ?"], "prompt": "a cat and a mouse are both on a {}"}, {"index": 1210, "image_id": 2411533, "entity": "dog", "caption": "the dog is wearing a vest", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "the {} is wearing a vest"}, {"index": 1211, "image_id": 2415243, "entity": "dog", "caption": "a dog lays on a television remote", "question": ["is there a dog ?", "is there a television remote ?"], "prompt": "a {} lays on a television remote"}, {"index": 1212, "image_id": 2415243, "entity": "dog", "caption": "dog takes a nap on a couch", "question": ["is there dog ?", "is there a nap ?", "is there a couch ?"], "prompt": "{} takes a nap on a couch"}, {"index": 1213, "image_id": 2415532, "entity": "dog", "caption": "Elbow on the far arm washing the dog.", "question": ["is there the far arm ?", "is there the dog ?"], "prompt": "Elbow on the far arm washing the {}."}, {"index": 1214, "image_id": 2416178, "entity": "dog", "caption": "the dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye"}, {"index": 1215, "image_id": 2416388, "entity": "dog", "caption": "pink bow the dog is wearing", "question": ["is there the dog ?"], "prompt": "pink bow the {} is wearing"}, {"index": 1216, "image_id": 2416388, "entity": "dog", "caption": "dog getting teeth brushed", "question": ["is there dog ?", "are there teeth ?"], "prompt": "{} getting teeth brushed"}, {"index": 1217, "image_id": 2416731, "entity": "dog", "caption": "the dog has black hair", "question": ["is there the dog ?", "is there black hair ?"], "prompt": "the {} has black hair"}, {"index": 1218, "image_id": 2416731, "entity": "dog", "caption": "the dog has pointy teeth", "question": ["is there the dog ?", "are there pointy teeth ?"], "prompt": "the {} has pointy teeth"}, {"index": 1219, "image_id": 2416944, "entity": "dog", "caption": "grassy field dog is playing in", "question": ["is there grassy field dog ?"], "prompt": "grassy field {} is playing in"}, {"index": 1220, "image_id": 2417227, "entity": "dog", "caption": "The sofa the dog is leaning on.", "question": ["is there the sofa ?", "is there the dog ?"], "prompt": "The sofa the {} is leaning on."}, {"index": 1221, "image_id": 2417721, "entity": "dog", "caption": "dog has brown legs", "question": ["is there dog ?", "are there brown legs ?"], "prompt": "{} has brown legs"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02090622.json b/data/imagenet/compositions/prompts/n02090622.json
new file mode 100644
index 0000000000000000000000000000000000000000..db9508f2d519c121841f29d5b620aaf093b952ac
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02090622.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 561, "entity": "dog", "caption": "dog has a black nose", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose"}, {"index": 1, "image_id": 561, "entity": "dog", "caption": "dog's ears are up", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are up"}, {"index": 2, "image_id": 561, "entity": "dog", "caption": "dog's eyes are dark", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are dark"}, {"index": 3, "image_id": 3535, "entity": "dog", "caption": "The dog has four legs.", "question": ["is there the dog ?", "are there four legs ?"], "prompt": "The {} has four legs."}, {"index": 4, "image_id": 3535, "entity": "dog", "caption": "tongue hanging out a dog's mouth", "question": ["is there tongue ?", "is there a dog's mouth ?"], "prompt": "tongue hanging out a {}'s mouth"}, {"index": 5, "image_id": 3553, "entity": "dog", "caption": "dog is sitting in grass", "question": ["is there dog ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 6, "image_id": 3553, "entity": "dog", "caption": "dog is mostly brown", "question": ["is there dog ?"], "prompt": "{} is mostly brown"}, {"index": 7, "image_id": 3553, "entity": "dog", "caption": "the dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "the {} has a black nose"}, {"index": 8, "image_id": 3553, "entity": "dog", "caption": "the brown dog has a long brown tail", "question": ["is there the brown dog ?", "is there a long brown tail ?"], "prompt": "the brown {} has a long brown tail"}, {"index": 9, "image_id": 3553, "entity": "dog", "caption": "the dog has large brown paws", "question": ["is there the dog ?", "are there large brown paws ?"], "prompt": "the {} has large brown paws"}, {"index": 10, "image_id": 3553, "entity": "dog", "caption": "a dog with its mouth open", "question": ["is there a dog ?", "is there its mouth ?"], "prompt": "a {} with its mouth open"}, {"index": 11, "image_id": 3752, "entity": "dog", "caption": "the dogs tail is black ", "question": ["are there the dogs tail ?"], "prompt": "the {}s tail is black "}, {"index": 12, "image_id": 3752, "entity": "dog", "caption": "the dogs feet is black ", "question": ["are there the dogs ?"], "prompt": "the {}s feet is black "}, {"index": 13, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat are standing together on the sidewalk", "question": ["is there a dog ?", "is there a cat ?", "is there the sidewalk ?"], "prompt": "A {} and a cat are standing together on the sidewalk"}, {"index": 14, "image_id": 107934, "entity": "dog", "caption": "dog has a brown patch", "question": ["is there dog ?", "is there a brown patch ?"], "prompt": "{} has a brown patch"}, {"index": 15, "image_id": 107934, "entity": "dog", "caption": "dog has a blue rope tied", "question": ["is there dog ?", "is there a blue rope ?"], "prompt": "{} has a blue rope tied"}, {"index": 16, "image_id": 107934, "entity": "dog", "caption": "the dog has a blue leash", "question": ["is there the dog ?", "is there a blue leash ?"], "prompt": "the {} has a blue leash"}, {"index": 17, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat walk together.", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} and a cat walk together."}, {"index": 18, "image_id": 107934, "entity": "dog", "caption": "Both dog and cat are in the middle of the frame.", "question": ["is there both dog ?", "is there cat ?", "is there the middle ?", "is there the frame ?"], "prompt": "Both {} and cat are in the middle of the frame."}, {"index": 19, "image_id": 107934, "entity": "dog", "caption": "The dog is looking at the camera.", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera."}, {"index": 20, "image_id": 1159975, "entity": "dog", "caption": "The gray collar the dog is wearing.", "question": ["is there the gray collar ?", "is there the dog ?"], "prompt": "The gray collar the {} is wearing."}, {"index": 21, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown and white sweater", "question": ["is there the dog ?", "is there a brown and white sweater ?"], "prompt": "The {} has a brown and white sweater"}, {"index": 22, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "The {} has a brown nose"}, {"index": 23, "image_id": 2414023, "entity": "dog", "caption": "the dog has a messed up eye", "question": ["is there the dog ?", "is there a messed up eye ?"], "prompt": "the {} has a messed up eye"}, {"index": 24, "image_id": 2414023, "entity": "dog", "caption": "the dog is wearing a sweater", "question": ["is there the dog ?", "is there a sweater ?"], "prompt": "the {} is wearing a sweater"}, {"index": 25, "image_id": 2414023, "entity": "dog", "caption": "the dog has a purple collar", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "the {} has a purple collar"}, {"index": 26, "image_id": 2413171, "entity": "dog", "caption": "Young man hold a cute dog", "question": ["is there young man ?", "is there a cute dog ?"], "prompt": "Young man hold a cute {}"}, {"index": 27, "image_id": 2412707, "entity": "dog", "caption": "black fur grows on a dog", "question": ["is there black fur ?", "is there a dog ?"], "prompt": "black fur grows on a {}"}, {"index": 28, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is sitting in the ground"}, {"index": 29, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is sitting in the floor"}, {"index": 30, "image_id": 2412546, "entity": "dog", "caption": "The dog has a collar on.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar on."}, {"index": 31, "image_id": 2412049, "entity": "dog", "caption": "the dog is long hair", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "the {} is long hair"}, {"index": 32, "image_id": 2412049, "entity": "dog", "caption": "the dog has some white hair", "question": ["is there the dog ?", "is there some white hair ?"], "prompt": "the {} has some white hair"}, {"index": 33, "image_id": 2412049, "entity": "dog", "caption": "the dog has some black hair", "question": ["is there the dog ?", "is there some black hair ?"], "prompt": "the {} has some black hair"}, {"index": 34, "image_id": 2412049, "entity": "dog", "caption": "the dog has some brown hair", "question": ["is there the dog ?", "is there some brown hair ?"], "prompt": "the {} has some brown hair"}, {"index": 35, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is shiny", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is shiny"}, {"index": 36, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is black"}, {"index": 37, "image_id": 2412049, "entity": "dog", "caption": "this are dog canines", "question": ["are there dog canines ?"], "prompt": "this are {} canines"}, {"index": 38, "image_id": 2412049, "entity": "dog", "caption": "this is the dogs fur", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "this is the {}s fur"}, {"index": 39, "image_id": 2411402, "entity": "dog", "caption": "Bed the dog is sleeping on", "question": ["is there the dog ?"], "prompt": "Bed the {} is sleeping on"}, {"index": 40, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar"}, {"index": 41, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} is wearing a chain"}, {"index": 42, "image_id": 2411357, "entity": "dog", "caption": "the dog is watching the oven", "question": ["is there the dog ?", "is there the oven ?"], "prompt": "the {} is watching the oven"}, {"index": 43, "image_id": 2411357, "entity": "dog", "caption": "the dog has a chain around its neck", "question": ["is there the dog ?", "is there a chain ?", "is there its neck ?"], "prompt": "the {} has a chain around its neck"}, {"index": 44, "image_id": 2411357, "entity": "dog", "caption": "the dog has two ears", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "the {} has two ears"}, {"index": 45, "image_id": 2411201, "entity": "dog", "caption": "A dog is on a moped.", "question": ["is there a dog ?"], "prompt": "A {} is on a moped."}, {"index": 46, "image_id": 2411201, "entity": "dog", "caption": "The dog has a red leash.", "question": ["is there the dog ?", "is there a red leash ?"], "prompt": "The {} has a red leash."}, {"index": 47, "image_id": 2411201, "entity": "dog", "caption": "The dog's ears are up.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are up."}, {"index": 48, "image_id": 2411201, "entity": "dog", "caption": "The dog's tail is hanging down.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is hanging down."}, {"index": 49, "image_id": 2411201, "entity": "dog", "caption": "a large dog sits on a scooter", "question": ["is there a large dog ?", "is there a scooter ?"], "prompt": "a large {} sits on a scooter"}, {"index": 50, "image_id": 2411201, "entity": "dog", "caption": "a dog has a red leash", "question": ["is there a dog ?", "is there a red leash ?"], "prompt": "a {} has a red leash"}, {"index": 51, "image_id": 2411201, "entity": "dog", "caption": "The dog on the scooter has a long tail", "question": ["is there the dog ?", "is there the scooter ?", "is there a long tail ?"], "prompt": "The {} on the scooter has a long tail"}, {"index": 52, "image_id": 2411201, "entity": "dog", "caption": "Brown dog on leash on moped", "question": ["is there brown dog ?", "is there leash ?"], "prompt": "Brown {} on leash on moped"}, {"index": 53, "image_id": 2411201, "entity": "dog", "caption": "Red moped with dog", "question": ["is there dog ?"], "prompt": "Red moped with {}"}, {"index": 54, "image_id": 2410967, "entity": "dog", "caption": "a dog's ears bent over", "question": ["are there a dog's ears ?"], "prompt": "a {}'s ears bent over"}, {"index": 55, "image_id": 2410840, "entity": "dog", "caption": "a dog's mouth biting a frisbee", "question": ["is there a dog's mouth ?", "is there a frisbee ?"], "prompt": "a {}'s mouth biting a frisbee"}, {"index": 56, "image_id": 2410817, "entity": "dog", "caption": "black and tan dog jumping to catch a frisbee", "question": ["is there black and tan dog ?", "is there a frisbee ?"], "prompt": "black and tan {} jumping to catch a frisbee"}, {"index": 57, "image_id": 2410817, "entity": "dog", "caption": "leaping dog going after a frisbee", "question": ["is there leaping dog ?", "is there a frisbee ?"], "prompt": "leaping {} going after a frisbee"}, {"index": 58, "image_id": 2410817, "entity": "dog", "caption": "German shepherd dog fetching a frisbee. ", "question": ["is there german shepherd dog ?", "is there a frisbee ?"], "prompt": "German shepherd {} fetching a frisbee. "}, {"index": 59, "image_id": 2409859, "entity": "dog", "caption": "dog's eyes appear to be different colors", "question": ["are there dog's eyes ?", "are there different colors ?"], "prompt": "{}'s eyes appear to be different colors"}, {"index": 60, "image_id": 2409859, "entity": "dog", "caption": "dog has black nose", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose"}, {"index": 61, "image_id": 2409859, "entity": "dog", "caption": "the dog is wearing a cap", "question": ["is there the dog ?", "is there a cap ?"], "prompt": "the {} is wearing a cap"}, {"index": 62, "image_id": 2409859, "entity": "dog", "caption": "Tongue of dog is pink", "question": ["is there tongue ?", "is there dog ?"], "prompt": "Tongue of {} is pink"}, {"index": 63, "image_id": 2409626, "entity": "dog", "caption": "dog has two eyes", "question": ["is there dog ?", "are there two eyes ?"], "prompt": "{} has two eyes"}, {"index": 64, "image_id": 2409626, "entity": "dog", "caption": "the dog is wearing pirate hat", "question": ["is there the dog ?", "is there pirate hat ?"], "prompt": "the {} is wearing pirate hat"}, {"index": 65, "image_id": 2409304, "entity": "dog", "caption": "White left foot of the dog", "question": ["is there white left foot ?", "is there the dog ?"], "prompt": "White left foot of the {}"}, {"index": 66, "image_id": 2409304, "entity": "dog", "caption": "dog catch the frisbee", "question": ["is there dog ?", "is there the frisbee ?"], "prompt": "{} catch the frisbee"}, {"index": 67, "image_id": 2409304, "entity": "dog", "caption": "dog's nose is black", "question": ["is there dog's nose ?"], "prompt": "{}'s nose is black"}, {"index": 68, "image_id": 2409304, "entity": "dog", "caption": "dog's ears are black", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are black"}, {"index": 69, "image_id": 2409304, "entity": "dog", "caption": "dog's paws are white", "question": ["are there dog's paws ?"], "prompt": "{}'s paws are white"}, {"index": 70, "image_id": 2409103, "entity": "dog", "caption": "the dog is wearing a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "the {} is wearing a blue collar"}, {"index": 71, "image_id": 2409103, "entity": "dog", "caption": "a book by T.C. Boyle is next to the dog", "question": ["is there a book ?", "is there the dog ?"], "prompt": "a book by T.C. Boyle is next to the {}"}, {"index": 72, "image_id": 2409103, "entity": "dog", "caption": "the dog is laying on top of an embroidered sheet", "question": ["is there the dog ?", "is there top ?", "is there an embroidered sheet ?"], "prompt": "the {} is laying on top of an embroidered sheet"}, {"index": 73, "image_id": 2408483, "entity": "dog", "caption": "Carpet is light in color under dog", "question": ["is there carpet ?", "is there color ?", "is there dog ?"], "prompt": "Carpet is light in color under {}"}, {"index": 74, "image_id": 2408383, "entity": "dog", "caption": "The dog and cat are looking in the same direction", "question": ["is there the dog ?", "is there cat ?", "is there the same direction ?"], "prompt": "The {} and cat are looking in the same direction"}, {"index": 75, "image_id": 2408210, "entity": "dog", "caption": "Nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "Nose of {} is black"}, {"index": 76, "image_id": 2408210, "entity": "dog", "caption": "Ears of dog is black and tan", "question": ["are there ears ?", "is there dog ?"], "prompt": "Ears of {} is black and tan"}, {"index": 77, "image_id": 2408210, "entity": "dog", "caption": "Eyes of dog are open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "Eyes of {} are open"}, {"index": 78, "image_id": 2408210, "entity": "dog", "caption": "three dogs are lying on a bed", "question": ["are there three dogs ?", "is there a bed ?"], "prompt": "three {}s are lying on a bed"}, {"index": 79, "image_id": 2408210, "entity": "dog", "caption": "the dog has his eyes open", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "the {} has his eyes open"}, {"index": 80, "image_id": 2408037, "entity": "dog", "caption": "the dog has red eyes", "question": ["is there the dog ?", "are there red eyes ?"], "prompt": "the {} has red eyes"}, {"index": 81, "image_id": 2408037, "entity": "dog", "caption": "the dog is holding carrot toy", "question": ["is there the dog ?", "is there carrot toy ?"], "prompt": "the {} is holding carrot toy"}, {"index": 82, "image_id": 2408037, "entity": "dog", "caption": "the dog has green ribbon on its nech", "question": ["is there the dog ?", "is there green ribbon ?"], "prompt": "the {} has green ribbon on its nech"}, {"index": 83, "image_id": 2408037, "entity": "dog", "caption": "a green toy is beside the dog", "question": ["is there a green toy ?", "is there the dog ?"], "prompt": "a green toy is beside the {}"}, {"index": 84, "image_id": 2408037, "entity": "dog", "caption": "the dog has brown legs", "question": ["is there the dog ?", "are there brown legs ?"], "prompt": "the {} has brown legs"}, {"index": 85, "image_id": 2407835, "entity": "dog", "caption": "Brown dog laying on a bed with eyes open.", "question": ["is there brown dog ?", "is there a bed ?", "are there eyes ?"], "prompt": "Brown {} laying on a bed with eyes open."}, {"index": 86, "image_id": 2407835, "entity": "dog", "caption": "dog is lying down.", "question": ["is there dog ?"], "prompt": "{} is lying down."}, {"index": 87, "image_id": 2407835, "entity": "dog", "caption": "dog is lying in cot.", "question": ["is there dog ?", "is there cot ?"], "prompt": "{} is lying in cot."}, {"index": 88, "image_id": 2407835, "entity": "dog", "caption": "dog nose is black color.", "question": ["is there dog nose ?", "is there black color ?"], "prompt": "{} nose is black color."}, {"index": 89, "image_id": 2407825, "entity": "dog", "caption": "the dog has two eyes", "question": ["is there the dog ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 90, "image_id": 2407825, "entity": "dog", "caption": "dog is wearing a collar", "question": ["is there dog ?", "is there a collar ?"], "prompt": "{} is wearing a collar"}, {"index": 91, "image_id": 2407825, "entity": "dog", "caption": "the dog is on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is on the couch"}, {"index": 92, "image_id": 2407825, "entity": "dog", "caption": "the dog has whiskers", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers"}, {"index": 93, "image_id": 2407234, "entity": "dog", "caption": "the dog is on the beanbag", "question": ["is there the dog ?", "is there the beanbag ?"], "prompt": "the {} is on the beanbag"}, {"index": 94, "image_id": 2407234, "entity": "dog", "caption": "a dog toy thats a rope", "question": ["is there a dog toy ?", "is there a rope ?"], "prompt": "a {} toy thats a rope"}, {"index": 95, "image_id": 2407234, "entity": "dog", "caption": "the dog is on bean bag", "question": ["is there the dog ?", "is there bean bag ?"], "prompt": "the {} is on bean bag"}, {"index": 96, "image_id": 2407234, "entity": "dog", "caption": "the dog is sad", "question": ["is there the dog ?"], "prompt": "the {} is sad"}, {"index": 97, "image_id": 2406999, "entity": "dog", "caption": "the dog has goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "the {} has goggles"}, {"index": 98, "image_id": 2406999, "entity": "dog", "caption": "The dog has a vest on", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "The {} has a vest on"}, {"index": 99, "image_id": 2406999, "entity": "dog", "caption": "The dog has goggles on", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} has goggles on"}, {"index": 100, "image_id": 2406999, "entity": "dog", "caption": "The dogs tongue is out. ", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is out. "}, {"index": 101, "image_id": 2406384, "entity": "dog", "caption": "The dog has amber-coloured eyes", "question": ["is there the dog ?", "are there amber-coloured eyes ?"], "prompt": "The {} has amber-coloured eyes"}, {"index": 102, "image_id": 2406384, "entity": "dog", "caption": "The dog's hat is courdoroy", "question": ["is there the dog's hat ?"], "prompt": "The {}'s hat is courdoroy"}, {"index": 103, "image_id": 2406384, "entity": "dog", "caption": "dog has collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} has collar"}, {"index": 104, "image_id": 2406384, "entity": "dog", "caption": "dog has whiskers", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers"}, {"index": 105, "image_id": 2406384, "entity": "dog", "caption": "dog has black lips", "question": ["is there dog ?", "are there black lips ?"], "prompt": "{} has black lips"}, {"index": 106, "image_id": 2406275, "entity": "dog", "caption": "dogs nose is black", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black"}, {"index": 107, "image_id": 2406275, "entity": "dog", "caption": "the dog has light brown eyes", "question": ["is there the dog ?", "are there light brown eyes ?"], "prompt": "the {} has light brown eyes"}, {"index": 108, "image_id": 2406275, "entity": "dog", "caption": "the dog has pointy ears", "question": ["is there the dog ?", "are there pointy ears ?"], "prompt": "the {} has pointy ears"}, {"index": 109, "image_id": 2406275, "entity": "dog", "caption": "something fuzzy is next to the dog", "question": ["is there something ?", "is there the dog ?"], "prompt": "something fuzzy is next to the {}"}, {"index": 110, "image_id": 2406275, "entity": "dog", "caption": "the dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "the {} has brown eyes"}, {"index": 111, "image_id": 2406275, "entity": "dog", "caption": "the dog is lying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is lying on a blanket"}, {"index": 112, "image_id": 2405633, "entity": "dog", "caption": "Dog kennel with dog.", "question": ["is there dog kennel ?", "is there dog ?"], "prompt": "Dog kennel with {}."}, {"index": 113, "image_id": 2405633, "entity": "dog", "caption": "The dog is lying on two blue and white pillows.", "question": ["is there the dog ?", "are there two blue and white pillows ?"], "prompt": "The {} is lying on two blue and white pillows."}, {"index": 114, "image_id": 2405484, "entity": "dog", "caption": "the dog has a pink tongue", "question": ["is there the dog ?", "is there a pink tongue ?"], "prompt": "the {} has a pink tongue"}, {"index": 115, "image_id": 2405484, "entity": "dog", "caption": "the dog is walking in the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is walking in the grass"}, {"index": 116, "image_id": 2405484, "entity": "dog", "caption": "the dog is wearing a metal collar", "question": ["is there the dog ?", "is there a metal collar ?"], "prompt": "the {} is wearing a metal collar"}, {"index": 117, "image_id": 2405484, "entity": "dog", "caption": "the dog is standing on the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is standing on the grass"}, {"index": 118, "image_id": 2405484, "entity": "dog", "caption": "the dog has a collar on", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar on"}, {"index": 119, "image_id": 2405484, "entity": "dog", "caption": "the dog has his tongue sticking out", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "the {} has his tongue sticking out"}, {"index": 120, "image_id": 2405484, "entity": "dog", "caption": "the dog is waggling his tail", "question": ["is there the dog ?", "is there his tail ?"], "prompt": "the {} is waggling his tail"}, {"index": 121, "image_id": 2405484, "entity": "dog", "caption": "the dog's collar is a chain", "question": ["is there the dog's collar ?", "is there a chain ?"], "prompt": "the {}'s collar is a chain"}, {"index": 122, "image_id": 2405484, "entity": "dog", "caption": "dog's tongue is pink", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink"}, {"index": 123, "image_id": 2405484, "entity": "dog", "caption": "dog is standing in the grass", "question": ["is there dog ?", "is there the grass ?"], "prompt": "{} is standing in the grass"}, {"index": 124, "image_id": 2405469, "entity": "dog", "caption": "The dog is wearing a collar. ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar. "}, {"index": 125, "image_id": 2405469, "entity": "dog", "caption": "The dog has it's head down. ", "question": ["is there the dog ?", "is there head ?"], "prompt": "The {} has it's head down. "}, {"index": 126, "image_id": 2405469, "entity": "dog", "caption": "the dog has sharp teeth", "question": ["is there the dog ?", "are there sharp teeth ?"], "prompt": "the {} has sharp teeth"}, {"index": 127, "image_id": 2405469, "entity": "dog", "caption": "the dog is on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground"}, {"index": 128, "image_id": 2405469, "entity": "dog", "caption": "dog is barking to the other dog", "question": ["is there dog ?", "is there the other dog ?"], "prompt": "{} is barking to the other {}"}, {"index": 129, "image_id": 2405469, "entity": "dog", "caption": "Dog ready to bite another dog", "question": ["is there dog ?", "is there another dog ?"], "prompt": "Dog ready to bite another {}"}, {"index": 130, "image_id": 2405369, "entity": "dog", "caption": "The dog is sleeping in a bed. ", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "The {} is sleeping in a bed. "}, {"index": 131, "image_id": 2405369, "entity": "dog", "caption": "The dog's nose hangs over the bed's edge.", "question": ["is there the dog's nose ?", "is there the bed's edge ?"], "prompt": "The {}'s nose hangs over the bed's edge."}, {"index": 132, "image_id": 2405369, "entity": "dog", "caption": "the dog is on a bed", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "the {} is on a bed"}, {"index": 133, "image_id": 2405369, "entity": "dog", "caption": "the dog sleeps on a tan and white dog bed", "question": ["is there the dog ?", "is there a tan and white dog bed ?"], "prompt": "the {} sleeps on a tan and white {} bed"}, {"index": 134, "image_id": 2405369, "entity": "dog", "caption": "the dog lays curled up on a plush dog bed", "question": ["is there the dog ?", "is there a plush dog bed ?"], "prompt": "the {} lays curled up on a plush {} bed"}, {"index": 135, "image_id": 2405369, "entity": "dog", "caption": "dogs ear on bottom left", "question": ["are there dogs ?", "is there bottom ?"], "prompt": "{}s ear on bottom left"}, {"index": 136, "image_id": 2405369, "entity": "dog", "caption": "White dog curled up sleeping on its bed", "question": ["is there white dog ?", "is there its bed ?"], "prompt": "White {} curled up sleeping on its bed"}, {"index": 137, "image_id": 2405343, "entity": "dog", "caption": "the dog has a Santa hat on his head", "question": ["is there the dog ?", "is there a santa hat ?", "is there his head ?"], "prompt": "the {} has a Santa hat on his head"}, {"index": 138, "image_id": 2405343, "entity": "dog", "caption": "the dog has a black eye", "question": ["is there the dog ?", "is there a black eye ?"], "prompt": "the {} has a black eye"}, {"index": 139, "image_id": 2405343, "entity": "dog", "caption": "the nose of the dog is black", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose of the {} is black"}, {"index": 140, "image_id": 2405343, "entity": "dog", "caption": "the fur on the dog is black and white ", "question": ["is there the fur ?", "is there the dog ?"], "prompt": "the fur on the {} is black and white "}, {"index": 141, "image_id": 2405343, "entity": "dog", "caption": "the dog has a white chest", "question": ["is there the dog ?", "is there a white chest ?"], "prompt": "the {} has a white chest"}, {"index": 142, "image_id": 2405343, "entity": "dog", "caption": "the dog's ear is black", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is black"}, {"index": 143, "image_id": 2405343, "entity": "dog", "caption": "the dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open"}, {"index": 144, "image_id": 2404815, "entity": "dog", "caption": "a cat sleeps on a dog", "question": ["is there a cat ?", "is there a dog ?"], "prompt": "a cat sleeps on a {}"}, {"index": 145, "image_id": 2404815, "entity": "dog", "caption": "a cat and dog lie on a wooden floor", "question": ["is there a cat ?", "is there dog ?", "is there a wooden floor ?"], "prompt": "a cat and {} lie on a wooden floor"}, {"index": 146, "image_id": 2404815, "entity": "dog", "caption": "the cat is laying on the dog", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "the cat is laying on the {}"}, {"index": 147, "image_id": 2404815, "entity": "dog", "caption": "the dog is laying on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is laying on the floor"}, {"index": 148, "image_id": 2404815, "entity": "dog", "caption": "the dog has something around its neck", "question": ["is there the dog ?", "is there something ?", "is there its neck ?"], "prompt": "the {} has something around its neck"}, {"index": 149, "image_id": 2404815, "entity": "dog", "caption": "the dog's ear is sticking up", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is sticking up"}, {"index": 150, "image_id": 2404815, "entity": "dog", "caption": "the dog is wearing a bandana on his neck", "question": ["is there the dog ?", "is there a bandana ?", "is there his neck ?"], "prompt": "the {} is wearing a bandana on his neck"}, {"index": 151, "image_id": 2404815, "entity": "dog", "caption": "the kitten is laying on top of the dog", "question": ["is there top ?", "is there the dog ?"], "prompt": "the kitten is laying on top of the {}"}, {"index": 152, "image_id": 2404815, "entity": "dog", "caption": "the dogs paws are white", "question": ["are there the dogs paws ?"], "prompt": "the {}s paws are white"}, {"index": 153, "image_id": 2404815, "entity": "dog", "caption": "the dog doesnt seem to mind the kitty laying on him", "question": ["is there the dog ?", "is there the kitty ?"], "prompt": "the {} doesnt seem to mind the kitty laying on him"}, {"index": 154, "image_id": 2404707, "entity": "dog", "caption": "A black dog sits on stairs", "question": ["is there a black dog ?", "are there stairs ?"], "prompt": "A black {} sits on stairs"}, {"index": 155, "image_id": 2404707, "entity": "dog", "caption": "The dog is wearing a red bow tie around its neck", "question": ["is there the dog ?", "is there a red bow tie ?", "is there its neck ?"], "prompt": "The {} is wearing a red bow tie around its neck"}, {"index": 156, "image_id": 2404707, "entity": "dog", "caption": "The dog has its head cocked to the side", "question": ["is there the dog ?", "is there its head ?", "is there the side ?"], "prompt": "The {} has its head cocked to the side"}, {"index": 157, "image_id": 2404707, "entity": "dog", "caption": "The dogs left hind leg is hanging off the stair", "question": ["are there the dogs ?", "is there hind leg ?", "is there the stair ?"], "prompt": "The {}s left hind leg is hanging off the stair"}, {"index": 158, "image_id": 2404163, "entity": "dog", "caption": "a woman is petting the dog", "question": ["is there a woman ?", "is there the dog ?"], "prompt": "a woman is petting the {}"}, {"index": 159, "image_id": 2404163, "entity": "dog", "caption": "the dog wears a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} wears a red collar"}, {"index": 160, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing red scarf", "question": ["is there person ?", "is there dog ?", "is there red scarf ?"], "prompt": "person petting {} is wearing red scarf"}, {"index": 161, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing a black dress", "question": ["is there person ?", "is there dog ?", "is there a black dress ?"], "prompt": "person petting {} is wearing a black dress"}, {"index": 162, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red and white scarf", "question": ["is there the dog ?", "is there a red and white scarf ?"], "prompt": "the {} is wearing a red and white scarf"}, {"index": 163, "image_id": 2404163, "entity": "dog", "caption": "the dog looks up at the woman", "question": ["is there the dog ?", "is there the woman ?"], "prompt": "the {} looks up at the woman"}, {"index": 164, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red halter style lead", "question": ["is there the dog ?", "is there a red halter style ?"], "prompt": "the {} is wearing a red halter style lead"}, {"index": 165, "image_id": 2404163, "entity": "dog", "caption": "a woman reaches down to a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "a woman reaches down to a {}"}, {"index": 166, "image_id": 2404163, "entity": "dog", "caption": "the woman in the red shoes pets the dog", "question": ["is there the woman ?", "are there the red shoes ?", "is there the dog ?"], "prompt": "the woman in the red shoes pets the {}"}, {"index": 167, "image_id": 2404075, "entity": "dog", "caption": "The dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket"}, {"index": 168, "image_id": 2403923, "entity": "dog", "caption": "the dog has a green collar", "question": ["is there the dog ?", "is there a green collar ?"], "prompt": "the {} has a green collar"}, {"index": 169, "image_id": 2403914, "entity": "dog", "caption": "This dog has his eyes closed", "question": ["is there this dog ?", "are there his eyes ?"], "prompt": "This {} has his eyes closed"}, {"index": 170, "image_id": 2403914, "entity": "dog", "caption": "This snauser dog has long ears", "question": ["is there this snauser dog ?", "are there long ears ?"], "prompt": "This snauser {} has long ears"}, {"index": 171, "image_id": 2403914, "entity": "dog", "caption": "This dog has a pug nose", "question": ["is there this dog ?", "is there a pug nose ?"], "prompt": "This {} has a pug nose"}, {"index": 172, "image_id": 2403914, "entity": "dog", "caption": "A dog's ear peeking out from the other side of its head", "question": ["is there a dog's ear ?", "is there the other side ?", "is there its head ?"], "prompt": "A {}'s ear peeking out from the other side of its head"}, {"index": 173, "image_id": 2403430, "entity": "dog", "caption": "The dog is laying on a couch.", "question": ["is there the dog ?", "is there a couch ?"], "prompt": "The {} is laying on a couch."}, {"index": 174, "image_id": 2403430, "entity": "dog", "caption": "black dog with eyes open", "question": ["is there black dog ?", "are there eyes ?"], "prompt": "black {} with eyes open"}, {"index": 175, "image_id": 2403430, "entity": "dog", "caption": "The dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes"}, {"index": 176, "image_id": 2403430, "entity": "dog", "caption": "The black dog likes laying on the couch", "question": ["is there the black dog ?", "is there the couch ?"], "prompt": "The black {} likes laying on the couch"}, {"index": 177, "image_id": 2403430, "entity": "dog", "caption": "the dog is laying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is laying on the couch"}, {"index": 178, "image_id": 2403430, "entity": "dog", "caption": "the dog's eye is brown", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is brown"}, {"index": 179, "image_id": 2403359, "entity": "dog", "caption": "a dog and a horse share an Eskimo kiss", "question": ["is there a dog ?", "is there a horse share ?"], "prompt": "a {} and a horse share an Eskimo kiss"}, {"index": 180, "image_id": 2403245, "entity": "dog", "caption": "large brown dog leashed to chair", "question": ["is there large brown dog ?", "is there chair ?"], "prompt": "large brown {} leashed to chair"}, {"index": 181, "image_id": 2403245, "entity": "dog", "caption": "the dog is on deck", "question": ["is there the dog ?", "is there deck ?"], "prompt": "the {} is on deck"}, {"index": 182, "image_id": 2403245, "entity": "dog", "caption": "the leash is on dog", "question": ["is there the leash ?", "is there dog ?"], "prompt": "the leash is on {}"}, {"index": 183, "image_id": 2403245, "entity": "dog", "caption": "Leash tied on golden dog", "question": ["is there golden dog ?"], "prompt": "Leash tied on golden {}"}, {"index": 184, "image_id": 2402933, "entity": "dog", "caption": "the doggy has a party hat on", "question": ["is there the doggy ?", "is there a party hat ?"], "prompt": "the {}gy has a party hat on"}, {"index": 185, "image_id": 2402933, "entity": "dog", "caption": "a stuffed animal is next to the dog", "question": ["is there a stuffed animal ?", "is there the dog ?"], "prompt": "a stuffed animal is next to the {}"}, {"index": 186, "image_id": 2402907, "entity": "dog", "caption": "The dog is standing on carpet", "question": ["is there the dog ?", "is there carpet ?"], "prompt": "The {} is standing on carpet"}, {"index": 187, "image_id": 2402907, "entity": "dog", "caption": "The dog has a collar and tags", "question": ["is there the dog ?", "is there a collar ?", "are there tags ?"], "prompt": "The {} has a collar and tags"}, {"index": 188, "image_id": 2402906, "entity": "dog", "caption": "a dog cover the book", "question": ["is there a dog ?", "is there the book ?"], "prompt": "a {} cover the book"}, {"index": 189, "image_id": 2402906, "entity": "dog", "caption": "the dog is looking to the left", "question": ["is there the dog ?"], "prompt": "the {} is looking to the left"}, {"index": 190, "image_id": 2402906, "entity": "dog", "caption": "the dog has black eyes", "question": ["is there the dog ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 191, "image_id": 2402433, "entity": "dog", "caption": "The dog's eyes are brown.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are brown."}, {"index": 192, "image_id": 2402433, "entity": "dog", "caption": "The dog's fur is brown and black.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is brown and black."}, {"index": 193, "image_id": 2402433, "entity": "dog", "caption": "The dog's tongue is pink.", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is pink."}, {"index": 194, "image_id": 2402433, "entity": "dog", "caption": "The dog's ears are down.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are down."}, {"index": 195, "image_id": 2402363, "entity": "dog", "caption": "the dog and the cat are on the pillow together", "question": ["is there the dog ?", "is there the cat ?", "is there the pillow ?"], "prompt": "the {} and the cat are on the pillow together"}, {"index": 196, "image_id": 2402363, "entity": "dog", "caption": "cat and dog sleeping on pet bed together", "question": ["is there cat ?", "is there dog ?", "is there pet bed ?"], "prompt": "cat and {} sleeping on pet bed together"}, {"index": 197, "image_id": 2402351, "entity": "dog", "caption": "The dog has a frisbee in his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee in his mouth."}, {"index": 198, "image_id": 2402351, "entity": "dog", "caption": "The dog has a white bushy tail.", "question": ["is there the dog ?", "is there a white bushy tail ?"], "prompt": "The {} has a white bushy tail."}, {"index": 199, "image_id": 2402351, "entity": "dog", "caption": "A flower pot is on the side of the dog.", "question": ["is there a flower pot ?", "is there the side ?", "is there the dog ?"], "prompt": "A flower pot is on the side of the {}."}, {"index": 200, "image_id": 2402059, "entity": "dog", "caption": "the dog has a human's tie around it's neck", "question": ["is there the dog ?", "is there a human's tie ?", "is there neck ?"], "prompt": "the {} has a human's tie around it's neck"}, {"index": 201, "image_id": 2401271, "entity": "dog", "caption": "The head of the dog sitting down.", "question": ["is there the head ?", "is there the dog ?"], "prompt": "The head of the {} sitting down."}, {"index": 202, "image_id": 2401271, "entity": "dog", "caption": "Soft brown chair the dog sits on", "question": ["is there soft brown chair ?", "is there the dog ?"], "prompt": "Soft brown chair the {} sits on"}, {"index": 203, "image_id": 2401271, "entity": "dog", "caption": "dog sittin gin brown chiar", "question": ["is there dog ?", "is there gin brown chiar ?"], "prompt": "{} sittin gin brown chiar"}, {"index": 204, "image_id": 2401271, "entity": "dog", "caption": "The dog is black and brown.", "question": ["is there the dog ?"], "prompt": "The {} is black and brown."}, {"index": 205, "image_id": 2401271, "entity": "dog", "caption": "The dog's nose is black.", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black."}, {"index": 206, "image_id": 2401024, "entity": "dog", "caption": "the dog has ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has ears"}, {"index": 207, "image_id": 2401024, "entity": "dog", "caption": "the dog is wearing strap", "question": ["is there the dog ?", "is there strap ?"], "prompt": "the {} is wearing strap"}, {"index": 208, "image_id": 2401024, "entity": "dog", "caption": "dog is wearing sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is wearing sweater"}, {"index": 209, "image_id": 2401024, "entity": "dog", "caption": "The sweater the dog is wearing", "question": ["is there the sweater ?", "is there the dog ?"], "prompt": "The sweater the {} is wearing"}, {"index": 210, "image_id": 2400958, "entity": "dog", "caption": "the man behind the dogs has blue jeans on", "question": ["is there the man ?", "are there the dogs ?", "are there blue jeans ?"], "prompt": "the man behind the {}s has blue jeans on"}, {"index": 211, "image_id": 2400958, "entity": "dog", "caption": "dog with tongue hanging out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue hanging out"}, {"index": 212, "image_id": 2400922, "entity": "dog", "caption": "The dog is staring out the window.", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is staring out the window."}, {"index": 213, "image_id": 2400865, "entity": "dog", "caption": "The dog is on a blanket.", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket."}, {"index": 214, "image_id": 2400865, "entity": "dog", "caption": "the dogs nose is pink.", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is pink."}, {"index": 215, "image_id": 2400865, "entity": "dog", "caption": "the dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "the {}s tongue is pink."}, {"index": 216, "image_id": 2400378, "entity": "dog", "caption": "this is the dog's head", "question": ["is there the dog's head ?"], "prompt": "this is the {}'s head"}, {"index": 217, "image_id": 2400368, "entity": "dog", "caption": "a dogs left paw", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw"}, {"index": 218, "image_id": 2399686, "entity": "dog", "caption": "a dog with its ears perked up", "question": ["is there a dog ?", "are there its ears ?"], "prompt": "a {} with its ears perked up"}, {"index": 219, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left eye", "question": ["are there the black dogs ?", "is there eye ?"], "prompt": "the black {}s left eye"}, {"index": 220, "image_id": 2399125, "entity": "dog", "caption": "the black dogs right eye", "question": ["are there the black dogs ?"], "prompt": "the black {}s right eye"}, {"index": 221, "image_id": 2399125, "entity": "dog", "caption": "piece of wood dog is lying on", "question": ["is there piece ?", "is there wood dog ?"], "prompt": "piece of wood {} is lying on"}, {"index": 222, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left ear", "question": ["are there the black dogs ?", "is there ear ?"], "prompt": "the black {}s left ear"}, {"index": 223, "image_id": 2399037, "entity": "dog", "caption": "she is holding a dog", "question": ["is there a dog ?"], "prompt": "she is holding a {}"}, {"index": 224, "image_id": 2399037, "entity": "dog", "caption": "The girl's hand that is resting on the dog.", "question": ["is there the girl's hand ?", "is there the dog ?"], "prompt": "The girl's hand that is resting on the {}."}, {"index": 225, "image_id": 2399037, "entity": "dog", "caption": "Girl's hand is on the dog.", "question": ["is there girl's hand ?", "is there the dog ?"], "prompt": "Girl's hand is on the {}."}, {"index": 226, "image_id": 2399037, "entity": "dog", "caption": "this is a dog", "question": ["is there a dog ?"], "prompt": "this is a {}"}, {"index": 227, "image_id": 2397742, "entity": "dog", "caption": "a green rug the dog is laying on", "question": ["is there a green rug ?", "is there the dog ?"], "prompt": "a green rug the {} is laying on"}, {"index": 228, "image_id": 2397739, "entity": "dog", "caption": "A dog is in front of a motorcycle.", "question": ["is there a dog ?", "is there front ?", "is there a motorcycle ?"], "prompt": "A {} is in front of a motorcycle."}, {"index": 229, "image_id": 2397739, "entity": "dog", "caption": "A dog has black and white spots.", "question": ["is there a dog ?", "are there black and white spots ?"], "prompt": "A {} has black and white spots."}, {"index": 230, "image_id": 2397739, "entity": "dog", "caption": "A dog is behind another dog.", "question": ["is there a dog ?", "is there another dog ?"], "prompt": "A {} is behind another {}."}, {"index": 231, "image_id": 2397739, "entity": "dog", "caption": "motorbike parked behind dogs", "question": ["is there motorbike ?", "are there dogs ?"], "prompt": "motorbike parked behind {}s"}, {"index": 232, "image_id": 2397731, "entity": "dog", "caption": "the red collar the dog is wearing", "question": ["is there the red collar ?", "is there the dog ?"], "prompt": "the red collar the {} is wearing"}, {"index": 233, "image_id": 2397731, "entity": "dog", "caption": "the green grass the dog is standing on", "question": ["is there the green grass ?", "is there the dog ?"], "prompt": "the green grass the {} is standing on"}, {"index": 234, "image_id": 2397731, "entity": "dog", "caption": "the dogs colored leash", "question": ["are there the dogs ?"], "prompt": "the {}s colored leash"}, {"index": 235, "image_id": 2397368, "entity": "dog", "caption": "the dog is holding something on its mouth", "question": ["is there the dog ?", "is there something ?", "is there its mouth ?"], "prompt": "the {} is holding something on its mouth"}, {"index": 236, "image_id": 2397327, "entity": "dog", "caption": "dog has big brown eyes", "question": ["is there dog ?", "are there big brown eyes ?"], "prompt": "{} has big brown eyes"}, {"index": 237, "image_id": 2397327, "entity": "dog", "caption": "dog has small black nose", "question": ["is there dog ?", "is there small black nose ?"], "prompt": "{} has small black nose"}, {"index": 238, "image_id": 2397327, "entity": "dog", "caption": "collar on dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar on {} is black"}, {"index": 239, "image_id": 2397327, "entity": "dog", "caption": "the carpet the dog is standing on", "question": ["is there the carpet ?", "is there the dog ?"], "prompt": "the carpet the {} is standing on"}, {"index": 240, "image_id": 2397327, "entity": "dog", "caption": "the dogs tail", "question": ["are there the dogs ?"], "prompt": "the {}s tail"}, {"index": 241, "image_id": 2397165, "entity": "dog", "caption": "a dogs left paw.", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw."}, {"index": 242, "image_id": 2396130, "entity": "dog", "caption": "A cushion a dog is lying on. ", "question": ["is there a cushion ?", "is there a dog ?"], "prompt": "A cushion a {} is lying on. "}, {"index": 243, "image_id": 2396130, "entity": "dog", "caption": "The dog is laying on the couch.", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "The {} is laying on the couch."}, {"index": 244, "image_id": 2395670, "entity": "dog", "caption": "dog is wearing a tiara", "question": ["is there dog ?", "is there a tiara ?"], "prompt": "{} is wearing a tiara"}, {"index": 245, "image_id": 2395670, "entity": "dog", "caption": "the dog is wearing a tutu", "question": ["is there the dog ?", "is there a tutu ?"], "prompt": "the {} is wearing a tutu"}, {"index": 246, "image_id": 2395670, "entity": "dog", "caption": "bulldog has big brown eye", "question": ["is there big brown eye ?"], "prompt": "bull{} has big brown eye"}, {"index": 247, "image_id": 2395670, "entity": "dog", "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest", "question": ["is there green ribbon ?", "is there orange collar+ribbed orange vest ?"], "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"}, {"index": 248, "image_id": 2395473, "entity": "dog", "caption": "The dog is on top of the pillow", "question": ["is there the dog ?", "is there top ?", "is there the pillow ?"], "prompt": "The {} is on top of the pillow"}, {"index": 249, "image_id": 2395473, "entity": "dog", "caption": "The dog is hugging the stuffed animal", "question": ["is there the dog ?", "is there the stuffed animal ?"], "prompt": "The {} is hugging the stuffed animal"}, {"index": 250, "image_id": 2395473, "entity": "dog", "caption": "stuff is on the floor behind the dog", "question": ["is there stuff ?", "is there the floor ?", "is there the dog ?"], "prompt": "stuff is on the floor behind the {}"}, {"index": 251, "image_id": 2395473, "entity": "dog", "caption": "a white pillow is underneath the dog", "question": ["is there a white pillow ?", "is there the dog ?"], "prompt": "a white pillow is underneath the {}"}, {"index": 252, "image_id": 2395473, "entity": "dog", "caption": "a black speaker is behind the dog", "question": ["is there a black speaker ?", "is there the dog ?"], "prompt": "a black speaker is behind the {}"}, {"index": 253, "image_id": 2395473, "entity": "dog", "caption": "old looking curtains is above the dog's head", "question": ["are there old looking curtains ?", "is there the dog's head ?"], "prompt": "old looking curtains is above the {}'s head"}, {"index": 254, "image_id": 2395369, "entity": "dog", "caption": "grey run the dog is standing on", "question": ["is there the dog ?"], "prompt": "grey run the {} is standing on"}, {"index": 255, "image_id": 2395369, "entity": "dog", "caption": "cat and dog playing with each other ", "question": ["is there cat ?", "is there dog ?"], "prompt": "cat and {} playing with each other "}, {"index": 256, "image_id": 2395369, "entity": "dog", "caption": "head of dog is black", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is black"}, {"index": 257, "image_id": 2394681, "entity": "dog", "caption": "The dog's tail is visible.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is visible."}, {"index": 258, "image_id": 2394681, "entity": "dog", "caption": "the dog has tail", "question": ["is there the dog ?", "is there tail ?"], "prompt": "the {} has tail"}, {"index": 259, "image_id": 2394499, "entity": "dog", "caption": "the dog is wearing a hat", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "the {} is wearing a hat"}, {"index": 260, "image_id": 2394499, "entity": "dog", "caption": "dog is wearing a fedora", "question": ["is there dog ?", "is there a fedora ?"], "prompt": "{} is wearing a fedora"}, {"index": 261, "image_id": 2394499, "entity": "dog", "caption": "The dog has a toy.", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "The {} has a toy."}, {"index": 262, "image_id": 2394499, "entity": "dog", "caption": "The dog is laying on a pillow.", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is laying on a pillow."}, {"index": 263, "image_id": 2394372, "entity": "dog", "caption": "The dog is black and white.", "question": ["is there the dog ?"], "prompt": "The {} is black and white."}, {"index": 264, "image_id": 2394372, "entity": "dog", "caption": "dog has white body with black spots", "question": ["is there dog ?", "is there white body ?", "are there black spots ?"], "prompt": "{} has white body with black spots"}, {"index": 265, "image_id": 2394372, "entity": "dog", "caption": "dog has cast a shadow", "question": ["is there dog ?", "is there a shadow ?"], "prompt": "{} has cast a shadow"}, {"index": 266, "image_id": 2394372, "entity": "dog", "caption": "dog has big fluffy tail", "question": ["is there dog ?", "is there big fluffy tail ?"], "prompt": "{} has big fluffy tail"}, {"index": 267, "image_id": 2394372, "entity": "dog", "caption": "dog has tags on collar", "question": ["is there dog ?", "are there tags ?", "is there collar ?"], "prompt": "{} has tags on collar"}, {"index": 268, "image_id": 2394372, "entity": "dog", "caption": "dog is wearing a white collar", "question": ["is there dog ?", "is there a white collar ?"], "prompt": "{} is wearing a white collar"}, {"index": 269, "image_id": 2394372, "entity": "dog", "caption": "dog is black and white", "question": ["is there dog ?"], "prompt": "{} is black and white"}, {"index": 270, "image_id": 2394372, "entity": "dog", "caption": "dog has frilly tail", "question": ["is there dog ?"], "prompt": "{} has frilly tail"}, {"index": 271, "image_id": 2394372, "entity": "dog", "caption": "dog has brown spots", "question": ["is there dog ?", "are there brown spots ?"], "prompt": "{} has brown spots"}, {"index": 272, "image_id": 2394372, "entity": "dog", "caption": "dog wears white collar", "question": ["is there dog ?", "is there white collar ?"], "prompt": "{} wears white collar"}, {"index": 273, "image_id": 2394372, "entity": "dog", "caption": "A dog is on the sand.", "question": ["is there a dog ?", "is there the sand ?"], "prompt": "A {} is on the sand."}, {"index": 274, "image_id": 2394372, "entity": "dog", "caption": "The dog is balck and white.", "question": ["is there the dog ?"], "prompt": "The {} is balck and white."}, {"index": 275, "image_id": 2394372, "entity": "dog", "caption": "The dog has a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar."}, {"index": 276, "image_id": 2394065, "entity": "dog", "caption": "The dog is licking the water bottle.", "question": ["is there the dog ?", "is there the water bottle ?"], "prompt": "The {} is licking the water bottle."}, {"index": 277, "image_id": 2394065, "entity": "dog", "caption": "The dog is standing next to the person.", "question": ["is there the dog ?", "is there the person ?"], "prompt": "The {} is standing next to the person."}, {"index": 278, "image_id": 2393921, "entity": "dog", "caption": "Aviator glasses on dogs face", "question": ["are there aviator glasses ?", "are there dogs ?"], "prompt": "Aviator glasses on {}s face"}, {"index": 279, "image_id": 2393921, "entity": "dog", "caption": "The dog has glasses on", "question": ["is there the dog ?", "are there glasses ?"], "prompt": "The {} has glasses on"}, {"index": 280, "image_id": 2393921, "entity": "dog", "caption": "The dog has a hat on", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} has a hat on"}, {"index": 281, "image_id": 2393921, "entity": "dog", "caption": "The dog has on a red bib", "question": ["is there the dog ?", "is there a red bib ?"], "prompt": "The {} has on a red bib"}, {"index": 282, "image_id": 2393921, "entity": "dog", "caption": "The dog is sitting in a seat", "question": ["is there the dog ?", "is there a seat ?"], "prompt": "The {} is sitting in a seat"}, {"index": 283, "image_id": 2393366, "entity": "dog", "caption": "this is the dog's nose", "question": ["is there the dog's nose ?"], "prompt": "this is the {}'s nose"}, {"index": 284, "image_id": 2393366, "entity": "dog", "caption": "these are the dog's eyes", "question": ["are there the dog's eyes ?"], "prompt": "these are the {}'s eyes"}, {"index": 285, "image_id": 2393366, "entity": "dog", "caption": "the dog's eye is orange", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is orange"}, {"index": 286, "image_id": 2392895, "entity": "dog", "caption": "a dog with his eyes closed", "question": ["is there a dog ?", "are there his eyes ?"], "prompt": "a {} with his eyes closed"}, {"index": 287, "image_id": 2392895, "entity": "dog", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "{} is on a boat"}, {"index": 288, "image_id": 2392895, "entity": "dog", "caption": "dog has a red collar on", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} has a red collar on"}, {"index": 289, "image_id": 2392895, "entity": "dog", "caption": "dog has a name tag", "question": ["is there dog ?", "is there a name tag ?"], "prompt": "{} has a name tag"}, {"index": 290, "image_id": 2392895, "entity": "dog", "caption": "dog has partially white fur", "question": ["is there dog ?", "is there partially white fur ?"], "prompt": "{} has partially white fur"}, {"index": 291, "image_id": 2392690, "entity": "dog", "caption": "a dog is on the grass", "question": ["is there a dog ?", "is there the grass ?"], "prompt": "a {} is on the grass"}, {"index": 292, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water", "question": ["is there dog ?", "is there water ?"], "prompt": "{} is drinking water"}, {"index": 293, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water from a bottle", "question": ["is there dog ?", "is there water ?", "is there a bottle ?"], "prompt": "{} is drinking water from a bottle"}, {"index": 294, "image_id": 2392690, "entity": "dog", "caption": "water is dripping from the dogs face", "question": ["is there water ?", "are there the dogs ?"], "prompt": "water is dripping from the {}s face"}, {"index": 295, "image_id": 2392690, "entity": "dog", "caption": "thirsty dog is taking a drink", "question": ["is there thirsty dog ?", "is there a drink ?"], "prompt": "thirsty {} is taking a drink"}, {"index": 296, "image_id": 2392690, "entity": "dog", "caption": "dog has drunk half the water bottle", "question": ["is there dog ?", "is there half the water bottle ?"], "prompt": "{} has drunk half the water bottle"}, {"index": 297, "image_id": 2392606, "entity": "dog", "caption": "The two dogs are waring party hats.", "question": ["are there the two dogs ?", "are there party hats ?"], "prompt": "The two {}s are waring party hats."}, {"index": 298, "image_id": 2392334, "entity": "dog", "caption": "The dog has long hair.", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "The {} has long hair."}, {"index": 299, "image_id": 2392334, "entity": "dog", "caption": "white dog wagging its tail", "question": ["is there white dog ?", "is there its tail ?"], "prompt": "white {} wagging its tail"}, {"index": 300, "image_id": 2392033, "entity": "dog", "caption": "ears of dog are long", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are long"}, {"index": 301, "image_id": 2392033, "entity": "dog", "caption": "tail of brown dog is furry", "question": ["is there tail ?", "is there brown dog ?"], "prompt": "tail of brown {} is furry"}, {"index": 302, "image_id": 2392033, "entity": "dog", "caption": "nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black"}, {"index": 303, "image_id": 2391972, "entity": "dog", "caption": "dog wears attentive expression", "question": ["is there dog ?", "is there attentive expression ?"], "prompt": "{} wears attentive expression"}, {"index": 304, "image_id": 2391972, "entity": "dog", "caption": "dog has soulful eye, folded down ear", "question": ["is there dog ?", "is there soulful eye ?", "is there ear ?"], "prompt": "{} has soulful eye, folded down ear"}, {"index": 305, "image_id": 2391972, "entity": "dog", "caption": "dog is wearing dog collar", "question": ["is there dog ?", "is there dog collar ?"], "prompt": "{} is wearing {} collar"}, {"index": 306, "image_id": 2391972, "entity": "dog", "caption": "the dog collar is black", "question": ["is there the dog collar ?"], "prompt": "the {} collar is black"}, {"index": 307, "image_id": 2390997, "entity": "dog", "caption": "dog has black leash", "question": ["is there dog ?", "is there black leash ?"], "prompt": "{} has black leash"}, {"index": 308, "image_id": 2390997, "entity": "dog", "caption": "dog has black fur", "question": ["is there dog ?", "is there black fur ?"], "prompt": "{} has black fur"}, {"index": 309, "image_id": 2390997, "entity": "dog", "caption": "this is a dog collar", "question": ["is there a dog collar ?"], "prompt": "this is a {} collar"}, {"index": 310, "image_id": 2390915, "entity": "dog", "caption": "dog has brown eyes", "question": ["is there dog ?", "are there brown eyes ?"], "prompt": "{} has brown eyes"}, {"index": 311, "image_id": 2390915, "entity": "dog", "caption": "these are the dog's paws", "question": ["are there the dog's paws ?"], "prompt": "these are the {}'s paws"}, {"index": 312, "image_id": 2390745, "entity": "dog", "caption": "a dog is lying on his side", "question": ["is there a dog ?", "is there his side ?"], "prompt": "a {} is lying on his side"}, {"index": 313, "image_id": 2390745, "entity": "dog", "caption": "ear of dog is long", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is long"}, {"index": 314, "image_id": 2390745, "entity": "dog", "caption": "The dog's eyes are wide open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are wide open"}, {"index": 315, "image_id": 2390745, "entity": "dog", "caption": "The dog is relaxing", "question": ["is there the dog ?"], "prompt": "The {} is relaxing"}, {"index": 316, "image_id": 2390588, "entity": "dog", "caption": "The dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "The {} has nose"}, {"index": 317, "image_id": 2390588, "entity": "dog", "caption": "the sling is on dog", "question": ["is there the sling ?", "is there dog ?"], "prompt": "the sling is on {}"}, {"index": 318, "image_id": 2390588, "entity": "dog", "caption": "the eyes are on the dog", "question": ["are there the eyes ?", "is there the dog ?"], "prompt": "the eyes are on the {}"}, {"index": 319, "image_id": 2390301, "entity": "dog", "caption": "dog's tongue hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue hanging out"}, {"index": 320, "image_id": 2390301, "entity": "dog", "caption": "The dog closes his eyes", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "The {} closes his eyes"}, {"index": 321, "image_id": 2390301, "entity": "dog", "caption": "The dogs fur is wet", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is wet"}, {"index": 322, "image_id": 2390301, "entity": "dog", "caption": "The dog has collar on", "question": ["is there the dog ?", "is there collar ?"], "prompt": "The {} has collar on"}, {"index": 323, "image_id": 2390301, "entity": "dog", "caption": "The dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose"}, {"index": 324, "image_id": 2390301, "entity": "dog", "caption": "The dogs eye is closed", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is closed"}, {"index": 325, "image_id": 2390301, "entity": "dog", "caption": "dog has a large pink tounge", "question": ["is there dog ?", "is there a large pink tounge ?"], "prompt": "{} has a large pink tounge"}, {"index": 326, "image_id": 2390301, "entity": "dog", "caption": "shallow water with dog paws submerged", "question": ["is there shallow water ?", "are there dog paws ?"], "prompt": "shallow water with {} paws submerged"}, {"index": 327, "image_id": 2390301, "entity": "dog", "caption": "tan dog standing in the ocean", "question": ["is there the ocean ?"], "prompt": "tan {} standing in the ocean"}, {"index": 328, "image_id": 2390301, "entity": "dog", "caption": "dog with his tongue hanging out", "question": ["is there dog ?", "is there his tongue ?"], "prompt": "{} with his tongue hanging out"}, {"index": 329, "image_id": 2390135, "entity": "dog", "caption": "Th enose od the dog.", "question": ["is there th enose ?", "is there od the dog ?"], "prompt": "Th enose od the {}."}, {"index": 330, "image_id": 2390135, "entity": "dog", "caption": "The dog rests his head.", "question": ["is there the dog ?", "is there his head ?"], "prompt": "The {} rests his head."}, {"index": 331, "image_id": 2390135, "entity": "dog", "caption": "The dogs ear", "question": ["are there the dogs ?"], "prompt": "The {}s ear"}, {"index": 332, "image_id": 2390135, "entity": "dog", "caption": "The dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye"}, {"index": 333, "image_id": 2390107, "entity": "dog", "caption": "long black dog tail curved up", "question": ["is there long black dog tail ?"], "prompt": "long black {} tail curved up"}, {"index": 334, "image_id": 2390107, "entity": "dog", "caption": "the dog has a white spot on it's leg", "question": ["is there the dog ?", "is there a white spot ?", "is there it's leg ?"], "prompt": "the {} has a white spot on it's leg"}, {"index": 335, "image_id": 2390107, "entity": "dog", "caption": "the dog has a long tail", "question": ["is there the dog ?", "is there a long tail ?"], "prompt": "the {} has a long tail"}, {"index": 336, "image_id": 2390107, "entity": "dog", "caption": "the dog has black paw pads", "question": ["is there the dog ?", "are there black paw pads ?"], "prompt": "the {} has black paw pads"}, {"index": 337, "image_id": 2389769, "entity": "dog", "caption": "dog ears are floppy", "question": ["are there dog ears ?"], "prompt": "{} ears are floppy"}, {"index": 338, "image_id": 2389769, "entity": "dog", "caption": "dog eyes are cute", "question": ["are there dog eyes ?"], "prompt": "{} eyes are cute"}, {"index": 339, "image_id": 2389769, "entity": "dog", "caption": "the dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are closed"}, {"index": 340, "image_id": 2389769, "entity": "dog", "caption": "The dog has tags on ", "question": ["is there the dog ?", "are there tags ?"], "prompt": "The {} has tags on "}, {"index": 341, "image_id": 2389769, "entity": "dog", "caption": "Mans toes beside dog", "question": ["is there dog ?"], "prompt": "Mans toes beside {}"}, {"index": 342, "image_id": 2389636, "entity": "dog", "caption": "the dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "the {} has nose"}, {"index": 343, "image_id": 2388972, "entity": "dog", "caption": "the grass is below the dog", "question": ["is there the grass ?", "is there the dog ?"], "prompt": "the grass is below the {}"}, {"index": 344, "image_id": 2388671, "entity": "dog", "caption": "white dog is standing looking out on the yard", "question": ["is there white dog ?", "is there the yard ?"], "prompt": "white {} is standing looking out on the yard"}, {"index": 345, "image_id": 2388671, "entity": "dog", "caption": "dog is mostly white", "question": ["is there dog ?"], "prompt": "{} is mostly white"}, {"index": 346, "image_id": 2388671, "entity": "dog", "caption": "dog has brown ears", "question": ["is there dog ?", "are there brown ears ?"], "prompt": "{} has brown ears"}, {"index": 347, "image_id": 2388671, "entity": "dog", "caption": "dog has black collar", "question": ["is there dog ?", "is there black collar ?"], "prompt": "{} has black collar"}, {"index": 348, "image_id": 2388671, "entity": "dog", "caption": "dog has white legs", "question": ["is there dog ?", "are there white legs ?"], "prompt": "{} has white legs"}, {"index": 349, "image_id": 2388320, "entity": "dog", "caption": "The dog has its head on a stuffed animal", "question": ["is there the dog ?", "is there its head ?", "is there a stuffed animal ?"], "prompt": "The {} has its head on a stuffed animal"}, {"index": 350, "image_id": 2388320, "entity": "dog", "caption": "The gate is behind the dog", "question": ["is there the gate ?", "is there the dog ?"], "prompt": "The gate is behind the {}"}, {"index": 351, "image_id": 2388320, "entity": "dog", "caption": "The dog is lying on wood", "question": ["is there the dog ?", "is there wood ?"], "prompt": "The {} is lying on wood"}, {"index": 352, "image_id": 2388066, "entity": "dog", "caption": "dog jumping for frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} jumping for frisbee"}, {"index": 353, "image_id": 2388048, "entity": "dog", "caption": "all are secondary to small dog chewing large toothbrush", "question": ["is there small dog ?", "is there large toothbrush ?"], "prompt": "all are secondary to small {} chewing large toothbrush"}, {"index": 354, "image_id": 2388048, "entity": "dog", "caption": "a dog is lying on a bed", "question": ["is there a dog ?", "is there a bed ?"], "prompt": "a {} is lying on a bed"}, {"index": 355, "image_id": 2388048, "entity": "dog", "caption": "body of dog is brown", "question": ["is there body ?", "is there dog ?"], "prompt": "body of {} is brown"}, {"index": 356, "image_id": 2388048, "entity": "dog", "caption": "head of dog is brown and white", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown and white"}, {"index": 357, "image_id": 2388048, "entity": "dog", "caption": "ears of dog are brown", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are brown"}, {"index": 358, "image_id": 2388048, "entity": "dog", "caption": "dog has a toothbrush in his mouth", "question": ["is there dog ?", "is there a toothbrush ?", "is there his mouth ?"], "prompt": "{} has a toothbrush in his mouth"}, {"index": 359, "image_id": 2388004, "entity": "dog", "caption": "tail of dog is long and curly", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is long and curly"}, {"index": 360, "image_id": 2388004, "entity": "dog", "caption": "front legs of dog are long", "question": ["are there front legs ?", "is there dog ?"], "prompt": "front legs of {} are long"}, {"index": 361, "image_id": 2388004, "entity": "dog", "caption": "The dog has a white spot.", "question": ["is there the dog ?", "is there a white spot ?"], "prompt": "The {} has a white spot."}, {"index": 362, "image_id": 2387774, "entity": "dog", "caption": "dog looks out window", "question": ["is there dog ?"], "prompt": "{} looks out window"}, {"index": 363, "image_id": 2387774, "entity": "dog", "caption": "dog has dark nose", "question": ["is there dog ?", "is there dark nose ?"], "prompt": "{} has dark nose"}, {"index": 364, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted ears", "question": ["is there dog ?", "are there ears ?"], "prompt": "{} has spotted ears"}, {"index": 365, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted face", "question": ["is there dog ?", "is there face ?"], "prompt": "{} has spotted face"}, {"index": 366, "image_id": 2387596, "entity": "dog", "caption": "dog is wearing glasses", "question": ["is there dog ?", "are there glasses ?"], "prompt": "{} is wearing glasses"}, {"index": 367, "image_id": 2387596, "entity": "dog", "caption": "dog has multicolor bandanna", "question": ["is there dog ?", "is there multicolor bandanna ?"], "prompt": "{} has multicolor bandanna"}, {"index": 368, "image_id": 2387596, "entity": "dog", "caption": "dog has white paws", "question": ["is there dog ?", "are there white paws ?"], "prompt": "{} has white paws"}, {"index": 369, "image_id": 2387596, "entity": "dog", "caption": "dog is on skateboard", "question": ["is there dog ?", "is there skateboard ?"], "prompt": "{} is on skateboard"}, {"index": 370, "image_id": 2387596, "entity": "dog", "caption": "The dog is on a leash.", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash."}, {"index": 371, "image_id": 2387470, "entity": "dog", "caption": "The dog's mouth is open. ", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open. "}, {"index": 372, "image_id": 2387448, "entity": "dog", "caption": "black dog jumping in air", "question": ["is there black dog ?", "is there air ?"], "prompt": "black {} jumping in air"}, {"index": 373, "image_id": 2387448, "entity": "dog", "caption": "dog has red collar", "question": ["is there dog ?", "is there red collar ?"], "prompt": "{} has red collar"}, {"index": 374, "image_id": 2387448, "entity": "dog", "caption": "dog has short curly tail", "question": ["is there dog ?", "is there short curly tail ?"], "prompt": "{} has short curly tail"}, {"index": 375, "image_id": 2387448, "entity": "dog", "caption": "grass under dog is green", "question": ["is there grass ?", "is there dog ?"], "prompt": "grass under {} is green"}, {"index": 376, "image_id": 2387387, "entity": "dog", "caption": "dog's tongue sticking out of mouth", "question": ["is there dog's tongue ?", "is there mouth ?"], "prompt": "{}'s tongue sticking out of mouth"}, {"index": 377, "image_id": 2387104, "entity": "dog", "caption": "the dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has a red collar"}, {"index": 378, "image_id": 2387104, "entity": "dog", "caption": "the dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "the {} has a brown nose"}, {"index": 379, "image_id": 2387104, "entity": "dog", "caption": "the cat is under the dog's chin", "question": ["is there the cat ?", "is there the dog's chin ?"], "prompt": "the cat is under the {}'s chin"}, {"index": 380, "image_id": 2387104, "entity": "dog", "caption": "the dog has a white face", "question": ["is there the dog ?", "is there a white face ?"], "prompt": "the {} has a white face"}, {"index": 381, "image_id": 2386600, "entity": "dog", "caption": "The frisbee is in front of the dog", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The frisbee is in front of the {}"}, {"index": 382, "image_id": 2386600, "entity": "dog", "caption": "dog's teeth showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth showing"}, {"index": 383, "image_id": 2386411, "entity": "dog", "caption": "The dog has a black nose.", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose."}, {"index": 384, "image_id": 2386411, "entity": "dog", "caption": "red bandana dog is wearing", "question": ["is there red bandana dog ?"], "prompt": "red bandana {} is wearing"}, {"index": 385, "image_id": 2386411, "entity": "dog", "caption": "dog's face looking at frisbees", "question": ["is there dog's face ?", "are there frisbees ?"], "prompt": "{}'s face looking at frisbees"}, {"index": 386, "image_id": 2386323, "entity": "dog", "caption": "dog is laying on suit case", "question": ["is there dog ?", "is there suit case ?"], "prompt": "{} is laying on suit case"}, {"index": 387, "image_id": 2386323, "entity": "dog", "caption": "The dog is wearing a gold tag.", "question": ["is there the dog ?", "is there a gold tag ?"], "prompt": "The {} is wearing a gold tag."}, {"index": 388, "image_id": 2386323, "entity": "dog", "caption": "The dog is sitting on a suitcase.", "question": ["is there the dog ?", "is there a suitcase ?"], "prompt": "The {} is sitting on a suitcase."}, {"index": 389, "image_id": 2386037, "entity": "dog", "caption": "dog is jumping above ground", "question": ["is there dog ?", "is there ground ?"], "prompt": "{} is jumping above ground"}, {"index": 390, "image_id": 2386037, "entity": "dog", "caption": "dog is wearing collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} is wearing collar"}, {"index": 391, "image_id": 2386031, "entity": "dog", "caption": "dog's tail is up in the air", "question": ["is there dog's tail ?", "is there the air ?"], "prompt": "{}'s tail is up in the air"}, {"index": 392, "image_id": 2386031, "entity": "dog", "caption": "dog's left perked up ear", "question": ["is there ear ?"], "prompt": "{}'s left perked up ear"}, {"index": 393, "image_id": 2386010, "entity": "dog", "caption": "dogs face in a side mirror", "question": ["are there dogs ?", "is there a side mirror ?"], "prompt": "{}s face in a side mirror"}, {"index": 394, "image_id": 2385955, "entity": "dog", "caption": "nose of dog is wet", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is wet"}, {"index": 395, "image_id": 2385955, "entity": "dog", "caption": "eyes of dog are wide open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are wide open"}, {"index": 396, "image_id": 2385955, "entity": "dog", "caption": "the frisbee is in the dog's mouth", "question": ["is there the frisbee ?", "is there the dog's mouth ?"], "prompt": "the frisbee is in the {}'s mouth"}, {"index": 397, "image_id": 2385955, "entity": "dog", "caption": "the dog's eyes are wild and wide open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are wild and wide open"}, {"index": 398, "image_id": 2385955, "entity": "dog", "caption": "the face of the dog is tricolored", "question": ["is there the face ?", "is there the dog ?"], "prompt": "the face of the {} is tricolored"}, {"index": 399, "image_id": 2385955, "entity": "dog", "caption": "the dog's paw is white", "question": ["is there the dog's paw ?"], "prompt": "the {}'s paw is white"}, {"index": 400, "image_id": 2385955, "entity": "dog", "caption": "grass is under the the dog", "question": ["is there grass ?", "is there the the dog ?"], "prompt": "grass is under the the {}"}, {"index": 401, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} is wearing a cap"}, {"index": 402, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing eyeglasses", "question": ["is there dog ?", "are there eyeglasses ?"], "prompt": "{} is wearing eyeglasses"}, {"index": 403, "image_id": 2385853, "entity": "dog", "caption": "dog's mouth is open", "question": ["is there dog's mouth ?"], "prompt": "{}'s mouth is open"}, {"index": 404, "image_id": 2385762, "entity": "dog", "caption": "a dog has a retractable leash attached to the collar", "question": ["is there a dog ?", "is there a retractable leash ?", "is there the collar ?"], "prompt": "a {} has a retractable leash attached to the collar"}, {"index": 405, "image_id": 2385757, "entity": "dog", "caption": "dog laying in dirt with eyes closed", "question": ["is there dog ?", "is there dirt ?", "are there eyes ?"], "prompt": "{} laying in dirt with eyes closed"}, {"index": 406, "image_id": 2385595, "entity": "dog", "caption": "the dog is lying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is lying on the bed"}, {"index": 407, "image_id": 2385566, "entity": "dog", "caption": "man is holding two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is holding two {}s"}, {"index": 408, "image_id": 2385566, "entity": "dog", "caption": "dog in rear has red collar", "question": ["is there dog ?", "is there rear ?", "is there red collar ?"], "prompt": "{} in rear has red collar"}, {"index": 409, "image_id": 2385566, "entity": "dog", "caption": "man is crouching near two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is crouching near two {}s"}, {"index": 410, "image_id": 2385566, "entity": "dog", "caption": "dog with its mouth wide open", "question": ["is there dog ?", "is there its mouth ?"], "prompt": "{} with its mouth wide open"}, {"index": 411, "image_id": 2385566, "entity": "dog", "caption": "man's hand resting on dog's hip", "question": ["is there man's hand ?", "is there dog's hip ?"], "prompt": "man's hand resting on {}'s hip"}, {"index": 412, "image_id": 2385466, "entity": "dog", "caption": "dog's eyes are brown", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are brown"}, {"index": 413, "image_id": 2385466, "entity": "dog", "caption": "dog's whiskers are white", "question": ["are there dog's whiskers ?"], "prompt": "{}'s whiskers are white"}, {"index": 414, "image_id": 2385466, "entity": "dog", "caption": "dog is next to the window", "question": ["is there dog ?", "is there the window ?"], "prompt": "{} is next to the window"}, {"index": 415, "image_id": 2385466, "entity": "dog", "caption": "dog's ears are down", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are down"}, {"index": 416, "image_id": 2385466, "entity": "dog", "caption": "the dog has a silver tag", "question": ["is there the dog ?", "is there a silver tag ?"], "prompt": "the {} has a silver tag"}, {"index": 417, "image_id": 2385466, "entity": "dog", "caption": "the dog is in the passenger seat", "question": ["is there the dog ?", "is there the passenger seat ?"], "prompt": "the {} is in the passenger seat"}, {"index": 418, "image_id": 2385466, "entity": "dog", "caption": "the dog has white parts of the eyes showing", "question": ["is there the dog ?", "are there white parts ?", "are there the eyes ?"], "prompt": "the {} has white parts of the eyes showing"}, {"index": 419, "image_id": 2385466, "entity": "dog", "caption": "A dog has a tag", "question": ["is there a dog ?", "is there a tag ?"], "prompt": "A {} has a tag"}, {"index": 420, "image_id": 2385345, "entity": "dog", "caption": "the dog is leaning on the bedding", "question": ["is there the dog ?", "is there the bedding ?"], "prompt": "the {} is leaning on the bedding"}, {"index": 421, "image_id": 2385345, "entity": "dog", "caption": "the bed is behind the dog", "question": ["is there the bed ?", "is there the dog ?"], "prompt": "the bed is behind the {}"}, {"index": 422, "image_id": 2385299, "entity": "dog", "caption": "white dog is lying on a bed", "question": ["is there white dog ?", "is there a bed ?"], "prompt": "white {} is lying on a bed"}, {"index": 423, "image_id": 2385299, "entity": "dog", "caption": "tail of dog is on bed", "question": ["is there tail ?", "is there dog ?", "is there bed ?"], "prompt": "tail of {} is on bed"}, {"index": 424, "image_id": 2385299, "entity": "dog", "caption": "eyes of dog are black", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are black"}, {"index": 425, "image_id": 2385299, "entity": "dog", "caption": "eyes and nose of dog are black", "question": ["are there eyes ?", "is there nose ?", "is there dog ?"], "prompt": "eyes and nose of {} are black"}, {"index": 426, "image_id": 2385299, "entity": "dog", "caption": "a dog collar has a tag", "question": ["is there a dog collar ?", "is there a tag ?"], "prompt": "a {} collar has a tag"}, {"index": 427, "image_id": 2385299, "entity": "dog", "caption": "legs and chest of dog are white", "question": ["are there legs ?", "is there chest ?", "is there dog ?"], "prompt": "legs and chest of {} are white"}, {"index": 428, "image_id": 2384917, "entity": "dog", "caption": "dogs tongue sticking out", "question": ["are there dogs ?", "is there tongue ?"], "prompt": "{}s tongue sticking out"}, {"index": 429, "image_id": 2384917, "entity": "dog", "caption": "brown pointy ear on dog", "question": ["is there brown pointy ear ?", "is there dog ?"], "prompt": "brown pointy ear on {}"}, {"index": 430, "image_id": 2384563, "entity": "dog", "caption": "dog curled up on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} curled up on a couch"}, {"index": 431, "image_id": 2384563, "entity": "dog", "caption": "a dog curled up on a cushion", "question": ["is there a dog ?", "is there a cushion ?"], "prompt": "a {} curled up on a cushion"}, {"index": 432, "image_id": 2384452, "entity": "dog", "caption": "dog is wearing a green collar ", "question": ["is there dog ?", "is there a green collar ?"], "prompt": "{} is wearing a green collar "}, {"index": 433, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear is bent ", "question": ["are there the dogs ?"], "prompt": "the {}s ear is bent "}, {"index": 434, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear ", "question": ["are there the dogs ?"], "prompt": "the {}s ear "}, {"index": 435, "image_id": 2384424, "entity": "dog", "caption": "the dog is beside the bike", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is beside the bike"}, {"index": 436, "image_id": 2384322, "entity": "dog", "caption": "Reindeer stuffed animal on the dog.", "question": ["is there reindeer ?", "is there animal ?", "is there the dog ?"], "prompt": "Reindeer stuffed animal on the {}."}, {"index": 437, "image_id": 2384105, "entity": "dog", "caption": "dog's collar is green", "question": ["is there dog's collar ?"], "prompt": "{}'s collar is green"}, {"index": 438, "image_id": 2384105, "entity": "dog", "caption": "the dog bed is plaid patterned", "question": ["is there the dog bed ?"], "prompt": "the {} bed is plaid patterned"}, {"index": 439, "image_id": 2384105, "entity": "dog", "caption": "dog's ears pointing upwards", "question": ["are there dog's ears ?"], "prompt": "{}'s ears pointing upwards"}, {"index": 440, "image_id": 2384105, "entity": "dog", "caption": "Black pillow dog is laying on", "question": ["is there black pillow dog ?"], "prompt": "Black pillow {} is laying on"}, {"index": 441, "image_id": 2384105, "entity": "dog", "caption": "Collar dog is wearing", "question": ["is there collar dog ?"], "prompt": "Collar {} is wearing"}, {"index": 442, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan", "question": ["is there dog toy ?", "is there tan ?"], "prompt": "{} toy is tan"}, {"index": 443, "image_id": 2383524, "entity": "dog", "caption": "dog is lying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying on the floor"}, {"index": 444, "image_id": 2383524, "entity": "dog", "caption": "dog has the toy in it's mouth", "question": ["is there dog ?", "is there the toy ?"], "prompt": "{} has the toy in it's mouth"}, {"index": 445, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan and hairy", "question": ["is there dog toy ?"], "prompt": "{} toy is tan and hairy"}, {"index": 446, "image_id": 2383524, "entity": "dog", "caption": "dog has whiskers that are white", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers that are white"}, {"index": 447, "image_id": 2383524, "entity": "dog", "caption": "dog is laying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is laying on the floor"}, {"index": 448, "image_id": 2383524, "entity": "dog", "caption": "dog has black ears", "question": ["is there dog ?", "are there black ears ?"], "prompt": "{} has black ears"}, {"index": 449, "image_id": 2383524, "entity": "dog", "caption": "dog is lying down on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying down on the floor"}, {"index": 450, "image_id": 2383524, "entity": "dog", "caption": "dog toy is brown", "question": ["is there dog toy ?"], "prompt": "{} toy is brown"}, {"index": 451, "image_id": 2383524, "entity": "dog", "caption": "dog has toy in it's mouth", "question": ["is there dog ?", "is there toy ?", "is there it's mouth ?"], "prompt": "{} has toy in it's mouth"}, {"index": 452, "image_id": 2383524, "entity": "dog", "caption": "dog has white whiskers", "question": ["is there dog ?", "are there white whiskers ?"], "prompt": "{} has white whiskers"}, {"index": 453, "image_id": 2383524, "entity": "dog", "caption": "the dog has a nose", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "the {} has a nose"}, {"index": 454, "image_id": 2383524, "entity": "dog", "caption": "the dog has eyes", "question": ["is there the dog ?", "are there eyes ?"], "prompt": "the {} has eyes"}, {"index": 455, "image_id": 2383524, "entity": "dog", "caption": "the dog has an ear", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "the {} has an ear"}, {"index": 456, "image_id": 2383524, "entity": "dog", "caption": "The dog's face looks angry", "question": ["is there the dog's face ?"], "prompt": "The {}'s face looks angry"}, {"index": 457, "image_id": 2383242, "entity": "dog", "caption": "The dog is between the persons legs", "question": ["is there the dog ?", "are there the persons legs ?"], "prompt": "The {} is between the persons legs"}, {"index": 458, "image_id": 2382434, "entity": "dog", "caption": "The dog is on the counter", "question": ["is there the dog ?", "is there the counter ?"], "prompt": "The {} is on the counter"}, {"index": 459, "image_id": 2382434, "entity": "dog", "caption": "The dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black"}, {"index": 460, "image_id": 2382434, "entity": "dog", "caption": "The dog has long fur.", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur."}, {"index": 461, "image_id": 2382434, "entity": "dog", "caption": "The dog is on a table.", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table."}, {"index": 462, "image_id": 2382434, "entity": "dog", "caption": "The dog is sniffing the newspaper.", "question": ["is there the dog ?", "is there the newspaper ?"], "prompt": "The {} is sniffing the newspaper."}, {"index": 463, "image_id": 2382434, "entity": "dog", "caption": "The dog has curly fur", "question": ["is there the dog ?", "is there curly fur ?"], "prompt": "The {} has curly fur"}, {"index": 464, "image_id": 2382434, "entity": "dog", "caption": "the dog`s nose is black", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is black"}, {"index": 465, "image_id": 2382434, "entity": "dog", "caption": "the dog`s eyes are black", "question": ["are there the dog`s eyes ?"], "prompt": "the {}`s eyes are black"}, {"index": 466, "image_id": 2382434, "entity": "dog", "caption": "the dog`s hair is curly", "question": ["is there the dog`s hair ?"], "prompt": "the {}`s hair is curly"}, {"index": 467, "image_id": 2382434, "entity": "dog", "caption": "the dog is smelling the paper", "question": ["is there the dog ?", "is there the paper ?"], "prompt": "the {} is smelling the paper"}, {"index": 468, "image_id": 2382396, "entity": "dog", "caption": "a dog is asleep", "question": ["is there a dog ?"], "prompt": "a {} is asleep"}, {"index": 469, "image_id": 2382396, "entity": "dog", "caption": "The dog's paw is on the remote", "question": ["is there the dog's paw ?", "is there the remote ?"], "prompt": "The {}'s paw is on the remote"}, {"index": 470, "image_id": 2382396, "entity": "dog", "caption": "The dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are closed"}, {"index": 471, "image_id": 2382396, "entity": "dog", "caption": "The dog is sleep on the couch.", "question": ["is there the dog ?", "is there sleep ?", "is there the couch ?"], "prompt": "The {} is sleep on the couch."}, {"index": 472, "image_id": 2382396, "entity": "dog", "caption": "The dog has two ears.", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "The {} has two ears."}, {"index": 473, "image_id": 2382396, "entity": "dog", "caption": "A dog is in the foreground", "question": ["is there a dog ?", "is there the foreground ?"], "prompt": "A {} is in the foreground"}, {"index": 474, "image_id": 2382082, "entity": "dog", "caption": "the dog`s nose is brown", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is brown"}, {"index": 475, "image_id": 2382082, "entity": "dog", "caption": "the dog`s stomach is wet", "question": ["is there the dog`s stomach ?"], "prompt": "the {}`s stomach is wet"}, {"index": 476, "image_id": 2382082, "entity": "dog", "caption": "dog is in the beach", "question": ["is there dog ?", "is there the beach ?"], "prompt": "{} is in the beach"}, {"index": 477, "image_id": 2382082, "entity": "dog", "caption": "tail of dog is up", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is up"}, {"index": 478, "image_id": 2382082, "entity": "dog", "caption": "face of dog is white and brown", "question": ["is there face ?", "is there dog ?"], "prompt": "face of {} is white and brown"}, {"index": 479, "image_id": 2382082, "entity": "dog", "caption": "collar of dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar of {} is black"}, {"index": 480, "image_id": 2382082, "entity": "dog", "caption": "ears of dog are down ", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are down "}, {"index": 481, "image_id": 2381848, "entity": "dog", "caption": "ear of dog is brown", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is brown"}, {"index": 482, "image_id": 2381777, "entity": "dog", "caption": "Leash attached to the dog", "question": ["is there the dog ?"], "prompt": "Leash attached to the {}"}, {"index": 483, "image_id": 2381777, "entity": "dog", "caption": "the dog is wearing a floater", "question": ["is there the dog ?", "is there a floater ?"], "prompt": "the {} is wearing a floater"}, {"index": 484, "image_id": 2381777, "entity": "dog", "caption": "this is the rope tying the dog", "question": ["is there the rope ?", "is there the dog ?"], "prompt": "this is the rope tying the {}"}, {"index": 485, "image_id": 2381403, "entity": "dog", "caption": "bull dog is wearing a black and red vest ", "question": ["is there bull dog ?", "is there a black and red vest ?"], "prompt": "bull {} is wearing a black and red vest "}, {"index": 486, "image_id": 2381403, "entity": "dog", "caption": "bull dog is standing on a blue surfboard ", "question": ["is there bull dog ?", "is there a blue surfboard ?"], "prompt": "bull {} is standing on a blue surfboard "}, {"index": 487, "image_id": 2381403, "entity": "dog", "caption": "the dog has an overbite", "question": ["is there the dog ?", "is there an overbite ?"], "prompt": "the {} has an overbite"}, {"index": 488, "image_id": 2381403, "entity": "dog", "caption": "the dog is wearing a life vest", "question": ["is there the dog ?", "is there a life vest ?"], "prompt": "the {} is wearing a life vest"}, {"index": 489, "image_id": 2381403, "entity": "dog", "caption": "the dog has front legs", "question": ["is there the dog ?", "are there front legs ?"], "prompt": "the {} has front legs"}, {"index": 490, "image_id": 2381403, "entity": "dog", "caption": "the dog is on the board", "question": ["is there the dog ?", "is there the board ?"], "prompt": "the {} is on the board"}, {"index": 491, "image_id": 2381375, "entity": "dog", "caption": "the dog is lying on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is lying on the ground"}, {"index": 492, "image_id": 2381375, "entity": "dog", "caption": "the dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} is on a leash"}, {"index": 493, "image_id": 2380480, "entity": "dog", "caption": "The dog's reflection is in a mirror.", "question": ["is there the dog's reflection ?", "is there a mirror ?"], "prompt": "The {}'s reflection is in a mirror."}, {"index": 494, "image_id": 2380480, "entity": "dog", "caption": "The dog's tongue is showing. ", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is showing. "}, {"index": 495, "image_id": 2380480, "entity": "dog", "caption": "The dog's legs are in the foreground.", "question": ["are there the dog's legs ?", "is there the foreground ?"], "prompt": "The {}'s legs are in the foreground."}, {"index": 496, "image_id": 2380480, "entity": "dog", "caption": "The dog's nose is black. ", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black. "}, {"index": 497, "image_id": 2380480, "entity": "dog", "caption": "the dog has an eye", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 498, "image_id": 2380480, "entity": "dog", "caption": "the dog has a tongue", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "the {} has a tongue"}, {"index": 499, "image_id": 2380480, "entity": "dog", "caption": "the dog has a long ear", "question": ["is there the dog ?", "is there a long ear ?"], "prompt": "the {} has a long ear"}, {"index": 500, "image_id": 2380237, "entity": "dog", "caption": "the dog has its mouth open", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 501, "image_id": 2380237, "entity": "dog", "caption": "the dog has a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar"}, {"index": 502, "image_id": 2380237, "entity": "dog", "caption": "the dog's collar is blue", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is blue"}, {"index": 503, "image_id": 2380237, "entity": "dog", "caption": "the dog has a pointy ear", "question": ["is there the dog ?", "is there a pointy ear ?"], "prompt": "the {} has a pointy ear"}, {"index": 504, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy ears", "question": ["is there dog ?", "are there pointy ears ?"], "prompt": "{} has pointy ears"}, {"index": 505, "image_id": 2380237, "entity": "dog", "caption": "dog has short legs", "question": ["is there dog ?", "are there short legs ?"], "prompt": "{} has short legs"}, {"index": 506, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy teeth", "question": ["is there dog ?", "are there pointy teeth ?"], "prompt": "{} has pointy teeth"}, {"index": 507, "image_id": 2380237, "entity": "dog", "caption": "the dog is attempting to catch a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is attempting to catch a frisbee"}, {"index": 508, "image_id": 2380237, "entity": "dog", "caption": "the dog is down on his \"knees\"", "question": ["is there the dog ?", "are there his \"knees ?"], "prompt": "the {} is down on his \"knees\""}, {"index": 509, "image_id": 2380237, "entity": "dog", "caption": "dog's mouth wide open", "question": [], "prompt": "{}'s mouth wide open"}, {"index": 510, "image_id": 2380220, "entity": "dog", "caption": "dog is laying on stuffed animal ", "question": ["is there dog ?", "is there stuffed animal ?"], "prompt": "{} is laying on stuffed animal "}, {"index": 511, "image_id": 2380220, "entity": "dog", "caption": "dogs ear is black ", "question": ["are there dogs ?"], "prompt": "{}s ear is black "}, {"index": 512, "image_id": 2379710, "entity": "dog", "caption": "water splashing next to dog", "question": ["is there dog ?"], "prompt": "water splashing next to {}"}, {"index": 513, "image_id": 2379519, "entity": "dog", "caption": "The dog has it's tongue out.", "question": ["is there the dog ?", "is there tongue ?"], "prompt": "The {} has it's tongue out."}, {"index": 514, "image_id": 2379519, "entity": "dog", "caption": "The dog has brown eyes.", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes."}, {"index": 515, "image_id": 2379470, "entity": "dog", "caption": "The dog has a brown spot over one eye.", "question": ["is there the dog ?", "is there a brown spot ?", "is there one eye ?"], "prompt": "The {} has a brown spot over one eye."}, {"index": 516, "image_id": 2379470, "entity": "dog", "caption": "The dog has a spotted ear.", "question": ["is there the dog ?", "is there a spotted ear ?"], "prompt": "The {} has a spotted ear."}, {"index": 517, "image_id": 2379470, "entity": "dog", "caption": "The dog has a short tail.", "question": ["is there the dog ?", "is there a short tail ?"], "prompt": "The {} has a short tail."}, {"index": 518, "image_id": 2379470, "entity": "dog", "caption": "The dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar."}, {"index": 519, "image_id": 2379470, "entity": "dog", "caption": "The dog has a closed mouth.", "question": ["is there the dog ?", "is there a closed mouth ?"], "prompt": "The {} has a closed mouth."}, {"index": 520, "image_id": 2378890, "entity": "dog", "caption": "The dog has a chain collar.", "question": ["is there the dog ?", "is there a chain collar ?"], "prompt": "The {} has a chain collar."}, {"index": 521, "image_id": 2378890, "entity": "dog", "caption": "The dog is playing with the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee."}, {"index": 522, "image_id": 2378872, "entity": "dog", "caption": "dog has grey fur", "question": ["is there dog ?"], "prompt": "{} has grey fur"}, {"index": 523, "image_id": 2378872, "entity": "dog", "caption": "other dog has black fur", "question": ["is there other dog ?", "is there black fur ?"], "prompt": "other {} has black fur"}, {"index": 524, "image_id": 2378872, "entity": "dog", "caption": "other dog has brown face", "question": ["is there other dog ?", "is there brown face ?"], "prompt": "other {} has brown face"}, {"index": 525, "image_id": 2378872, "entity": "dog", "caption": "nose of the dog with mouth closed", "question": ["is there nose ?", "is there the dog ?", "is there mouth ?"], "prompt": "nose of the {} with mouth closed"}, {"index": 526, "image_id": 2378872, "entity": "dog", "caption": "eye of the dog with mouth shut", "question": ["is there eye ?", "is there the dog ?", "is there mouth ?"], "prompt": "eye of the {} with mouth shut"}, {"index": 527, "image_id": 2378738, "entity": "dog", "caption": "the dog's tongue is sticking out", "question": ["is there the dog's tongue ?"], "prompt": "the {}'s tongue is sticking out"}, {"index": 528, "image_id": 2378738, "entity": "dog", "caption": "the dog is wearing a harness", "question": ["is there the dog ?", "is there a harness ?"], "prompt": "the {} is wearing a harness"}, {"index": 529, "image_id": 2378738, "entity": "dog", "caption": "the dog has whiskers ", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers "}, {"index": 530, "image_id": 2378738, "entity": "dog", "caption": "the dog's collar has a silver tag", "question": ["is there the dog's collar ?", "is there a silver tag ?"], "prompt": "the {}'s collar has a silver tag"}, {"index": 531, "image_id": 2378738, "entity": "dog", "caption": "the dog has teeth", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "the {} has teeth"}, {"index": 532, "image_id": 2378738, "entity": "dog", "caption": "the dogs curved tail", "question": ["are there the dogs ?", "is there tail ?"], "prompt": "the {}s curved tail"}, {"index": 533, "image_id": 2378738, "entity": "dog", "caption": "the dog collar is dark brown", "question": ["is there the dog collar ?"], "prompt": "the {} collar is dark brown"}, {"index": 534, "image_id": 2378738, "entity": "dog", "caption": "the dog`s mouth is open", "question": ["is there the dog`s mouth ?"], "prompt": "the {}`s mouth is open"}, {"index": 535, "image_id": 2378738, "entity": "dog", "caption": "the dog`s neck is white", "question": ["is there the dog`s neck ?"], "prompt": "the {}`s neck is white"}, {"index": 536, "image_id": 2378738, "entity": "dog", "caption": "the dog`s face is multi colored", "question": ["is there the dog`s face ?"], "prompt": "the {}`s face is multi colored"}, {"index": 537, "image_id": 2378013, "entity": "dog", "caption": "paws of dog are black", "question": ["are there paws ?", "is there dog ?"], "prompt": "paws of {} are black"}, {"index": 538, "image_id": 2378013, "entity": "dog", "caption": "hair eyes of dog are big", "question": ["are there hair eyes ?", "is there dog ?"], "prompt": "hair eyes of {} are big"}, {"index": 539, "image_id": 2378013, "entity": "dog", "caption": "dog is wearing a bandana", "question": ["is there dog ?", "is there a bandana ?"], "prompt": "{} is wearing a bandana"}, {"index": 540, "image_id": 2377946, "entity": "dog", "caption": "The dog is on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "The {} is on the bed"}, {"index": 541, "image_id": 2377946, "entity": "dog", "caption": "The dog has a red blanket", "question": ["is there the dog ?", "is there a red blanket ?"], "prompt": "The {} has a red blanket"}, {"index": 542, "image_id": 2377695, "entity": "dog", "caption": "the dogs pink tounge", "question": ["are there the dogs ?"], "prompt": "the {}s pink tounge"}, {"index": 543, "image_id": 2377541, "entity": "dog", "caption": "a dogs ear with black spots", "question": ["are there a dogs ?", "are there black spots ?"], "prompt": "a {}s ear with black spots"}, {"index": 544, "image_id": 2377541, "entity": "dog", "caption": "wet dog standing in pond", "question": ["is there wet dog ?", "is there pond ?"], "prompt": "wet {} standing in pond"}, {"index": 545, "image_id": 2377276, "entity": "dog", "caption": "fur of dog is long", "question": ["is there fur ?", "is there dog ?"], "prompt": "fur of {} is long"}, {"index": 546, "image_id": 2377096, "entity": "dog", "caption": "the dog's snout is black", "question": ["is there the dog's snout ?"], "prompt": "the {}'s snout is black"}, {"index": 547, "image_id": 2377096, "entity": "dog", "caption": "the dog has a leather collar", "question": ["is there the dog ?", "is there a leather collar ?"], "prompt": "the {} has a leather collar"}, {"index": 548, "image_id": 2377096, "entity": "dog", "caption": "the dog has black ears ", "question": ["is there the dog ?", "are there black ears ?"], "prompt": "the {} has black ears "}, {"index": 549, "image_id": 2376453, "entity": "dog", "caption": "the dog has an orange collar ", "question": ["is there the dog ?", "is there an orange collar ?"], "prompt": "the {} has an orange collar "}, {"index": 550, "image_id": 2376453, "entity": "dog", "caption": "this is an ear of a dog", "question": ["is there an ear ?", "is there a dog ?"], "prompt": "this is an ear of a {}"}, {"index": 551, "image_id": 2376453, "entity": "dog", "caption": "this is a tongue of a dog", "question": ["is there a tongue ?", "is there a dog ?"], "prompt": "this is a tongue of a {}"}, {"index": 552, "image_id": 2376453, "entity": "dog", "caption": "two dogs leashed to post", "question": ["are there two dogs ?"], "prompt": "two {}s leashed to post"}, {"index": 553, "image_id": 2376453, "entity": "dog", "caption": "two dogs tied to a tree", "question": ["are there two dogs ?", "is there a tree ?"], "prompt": "two {}s tied to a tree"}, {"index": 554, "image_id": 2376406, "entity": "dog", "caption": "dog has it's mouth open", "question": ["is there dog ?"], "prompt": "{} has it's mouth open"}, {"index": 555, "image_id": 2376406, "entity": "dog", "caption": "dog is leaning against the sofa", "question": ["is there dog ?", "is there the sofa ?"], "prompt": "{} is leaning against the sofa"}, {"index": 556, "image_id": 2376406, "entity": "dog", "caption": "dog's teeth are white", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are white"}, {"index": 557, "image_id": 2376134, "entity": "dog", "caption": "A dog is smelling a cat", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} is smelling a cat"}, {"index": 558, "image_id": 2376134, "entity": "dog", "caption": "An old dog is greeting the new cat", "question": ["is there an old dog ?", "is there the new cat ?"], "prompt": "An old {} is greeting the new cat"}, {"index": 559, "image_id": 2376134, "entity": "dog", "caption": "A cat is friends with a dog", "question": ["is there a cat ?", "are there friends ?", "is there a dog ?"], "prompt": "A cat is friends with a {}"}, {"index": 560, "image_id": 2376134, "entity": "dog", "caption": "dog has two ears.", "question": ["is there dog ?", "are there two ears ?"], "prompt": "{} has two ears."}, {"index": 561, "image_id": 2376108, "entity": "dog", "caption": "dog has purple collar", "question": ["is there dog ?", "is there purple collar ?"], "prompt": "{} has purple collar"}, {"index": 562, "image_id": 2376108, "entity": "dog", "caption": "dog has brown nose", "question": ["is there dog ?", "is there brown nose ?"], "prompt": "{} has brown nose"}, {"index": 563, "image_id": 2376108, "entity": "dog", "caption": "dog has light brown hair", "question": ["is there dog ?", "is there light brown hair ?"], "prompt": "{} has light brown hair"}, {"index": 564, "image_id": 2376108, "entity": "dog", "caption": "dog has dark brown ears", "question": ["is there dog ?", "are there dark brown ears ?"], "prompt": "{} has dark brown ears"}, {"index": 565, "image_id": 2375658, "entity": "dog", "caption": "Sad looking dog face", "question": ["is there sad looking dog face ?"], "prompt": "Sad looking {} face"}, {"index": 566, "image_id": 2375561, "entity": "dog", "caption": "The dog is wearing a blue harness", "question": ["is there the dog ?", "is there a blue harness ?"], "prompt": "The {} is wearing a blue harness"}, {"index": 567, "image_id": 2375561, "entity": "dog", "caption": "The dog is standing on a chair.", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} is standing on a chair."}, {"index": 568, "image_id": 2375451, "entity": "dog", "caption": "the dogs nose is black ", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black "}, {"index": 569, "image_id": 2375428, "entity": "dog", "caption": "The dog is looking at the camera", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera"}, {"index": 570, "image_id": 2375428, "entity": "dog", "caption": "The dog has long fur", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur"}, {"index": 571, "image_id": 2374930, "entity": "dog", "caption": "baby is leaning on a dog", "question": ["is there baby ?", "is there a dog ?"], "prompt": "baby is leaning on a {}"}, {"index": 572, "image_id": 2374930, "entity": "dog", "caption": "nose of dog is brown ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is brown "}, {"index": 573, "image_id": 2374268, "entity": "dog", "caption": "the dog's leg hanging over the sofa", "question": ["is there the dog's leg ?", "is there the sofa ?"], "prompt": "the {}'s leg hanging over the sofa"}, {"index": 574, "image_id": 2374268, "entity": "dog", "caption": "dog has face buried in the couch", "question": ["is there dog ?", "is there face ?", "is there the couch ?"], "prompt": "{} has face buried in the couch"}, {"index": 575, "image_id": 2374132, "entity": "dog", "caption": "dog has light brown paws", "question": ["is there dog ?", "are there light brown paws ?"], "prompt": "{} has light brown paws"}, {"index": 576, "image_id": 2374013, "entity": "dog", "caption": "dog's ears are light brown", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are light brown"}, {"index": 577, "image_id": 2373955, "entity": "dog", "caption": "a brown hat the dog is wearing", "question": ["is there a brown hat ?", "is there the dog ?"], "prompt": "a brown hat the {} is wearing"}, {"index": 578, "image_id": 2373955, "entity": "dog", "caption": "black dog kissing man", "question": ["is there black dog kissing man ?"], "prompt": "black {} kissing man"}, {"index": 579, "image_id": 2373533, "entity": "dog", "caption": "eyes of dog are big", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are big"}, {"index": 580, "image_id": 2373533, "entity": "dog", "caption": "mouth of dog is touching a rail", "question": ["is there mouth ?", "is there dog ?", "is there a rail ?"], "prompt": "mouth of {} is touching a rail"}, {"index": 581, "image_id": 2373340, "entity": "dog", "caption": "dog is wearing pink collar", "question": ["is there dog ?", "is there pink collar ?"], "prompt": "{} is wearing pink collar"}, {"index": 582, "image_id": 2373340, "entity": "dog", "caption": "dogs nose is brown", "question": ["are there dogs nose ?"], "prompt": "{}s nose is brown"}, {"index": 583, "image_id": 2373340, "entity": "dog", "caption": "dog right ear is brown", "question": ["is there dog right ear ?"], "prompt": "{} right ear is brown"}, {"index": 584, "image_id": 2373155, "entity": "dog", "caption": "dogs has a chain on his neck", "question": ["are there dogs ?", "is there a chain ?", "is there his neck ?"], "prompt": "{}s has a chain on his neck"}, {"index": 585, "image_id": 2373141, "entity": "dog", "caption": "This is a man with a dog", "question": ["is there a man ?", "is there a dog ?"], "prompt": "This is a man with a {}"}, {"index": 586, "image_id": 2373109, "entity": "dog", "caption": "the dog is on the ground ", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground "}, {"index": 587, "image_id": 2373073, "entity": "dog", "caption": "dog is wearing a hat ", "question": ["is there dog ?", "is there a hat ?"], "prompt": "{} is wearing a hat "}, {"index": 588, "image_id": 2372988, "entity": "dog", "caption": "Water drips down dog's face.", "question": ["is there water ?", "is there dog's face ?"], "prompt": "Water drips down {}'s face."}, {"index": 589, "image_id": 2372988, "entity": "dog", "caption": "dog is wearing a chain", "question": ["is there dog ?", "is there a chain ?"], "prompt": "{} is wearing a chain"}, {"index": 590, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A {} is riding in a car"}, {"index": 591, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in the passenger seat", "question": ["is there a dog ?", "is there the passenger seat ?"], "prompt": "A {} is riding in the passenger seat"}, {"index": 592, "image_id": 2372618, "entity": "dog", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A {} is in its master's car"}, {"index": 593, "image_id": 2372618, "entity": "dog", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} likes riding in a car"}, {"index": 594, "image_id": 2372618, "entity": "dog", "caption": "The dog is looking out the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is looking out the window"}, {"index": 595, "image_id": 2372586, "entity": "dog", "caption": "The dog is sitting on a bench.", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is sitting on a bench."}, {"index": 596, "image_id": 2372586, "entity": "dog", "caption": "dog is wearing a blue harness", "question": ["is there dog ?", "is there a blue harness ?"], "prompt": "{} is wearing a blue harness"}, {"index": 597, "image_id": 2372586, "entity": "dog", "caption": "the dog has a white belly", "question": ["is there the dog ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 598, "image_id": 2372549, "entity": "dog", "caption": "the dog looks sleepy", "question": ["is there the dog ?"], "prompt": "the {} looks sleepy"}, {"index": 599, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is laying on a stuffed animal"}, {"index": 600, "image_id": 2372549, "entity": "dog", "caption": "the dog is pale tan in color", "question": ["is there the dog ?", "is there pale tan ?", "is there color ?"], "prompt": "the {} is pale tan in color"}, {"index": 601, "image_id": 2372549, "entity": "dog", "caption": "stuffed animal dog is sleeping on", "question": ["is there stuffed animal dog ?"], "prompt": "stuffed animal {} is sleeping on"}, {"index": 602, "image_id": 2372549, "entity": "dog", "caption": "red bed dog is sleeping on", "question": ["is there red bed dog ?"], "prompt": "red bed {} is sleeping on"}, {"index": 603, "image_id": 2372549, "entity": "dog", "caption": "the cushion under the dog is red", "question": ["is there the cushion ?", "is there the dog ?"], "prompt": "the cushion under the {} is red"}, {"index": 604, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a cushion", "question": ["is there the dog ?", "is there a cushion ?"], "prompt": "the {} is laying on a cushion"}, {"index": 605, "image_id": 2372549, "entity": "dog", "caption": "The dog ear on the right", "question": ["is there the dog ear ?", "is there the right ?"], "prompt": "The {} ear on the right"}, {"index": 606, "image_id": 2372293, "entity": "dog", "caption": "Dog leash on the beige dog", "question": ["is there dog ?", "is there the beige dog ?"], "prompt": "Dog leash on the beige {}"}, {"index": 607, "image_id": 2372293, "entity": "dog", "caption": "dog has white teeth", "question": ["is there dog ?", "are there white teeth ?"], "prompt": "{} has white teeth"}, {"index": 608, "image_id": 2372293, "entity": "dog", "caption": "dog has black under his lip", "question": ["is there dog ?", "is there his lip ?"], "prompt": "{} has black under his lip"}, {"index": 609, "image_id": 2372091, "entity": "dog", "caption": "wooden bench dog is sitting on", "question": ["is there wooden bench dog ?"], "prompt": "wooden bench {} is sitting on"}, {"index": 610, "image_id": 2371865, "entity": "dog", "caption": "Flowered leash going to the dog", "question": ["is there flowered leash ?", "is there the dog ?"], "prompt": "Flowered leash going to the {}"}, {"index": 611, "image_id": 2371865, "entity": "dog", "caption": "dog looks off into distance", "question": ["is there dog ?", "is there distance ?"], "prompt": "{} looks off into distance"}, {"index": 612, "image_id": 2371865, "entity": "dog", "caption": "dog wears sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} wears sweater"}, {"index": 613, "image_id": 2371865, "entity": "dog", "caption": "dog sits next to bicycle", "question": ["is there dog ?", "is there bicycle ?"], "prompt": "{} sits next to bicycle"}, {"index": 614, "image_id": 2371865, "entity": "dog", "caption": "dog sits on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} sits on sidewalk"}, {"index": 615, "image_id": 2371865, "entity": "dog", "caption": "sweater is on dog", "question": ["is there dog ?"], "prompt": "sweater is on {}"}, {"index": 616, "image_id": 2371865, "entity": "dog", "caption": "dog is inside sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is inside sweater"}, {"index": 617, "image_id": 2371865, "entity": "dog", "caption": "The dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash"}, {"index": 618, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing near a bicycle", "question": ["is there the white dog ?", "is there a bicycle ?"], "prompt": "The white {} is standing near a bicycle"}, {"index": 619, "image_id": 2371865, "entity": "dog", "caption": "The white dog in the sweater has a bushy tail", "question": ["is there the white dog ?", "is there the sweater ?", "is there a bushy tail ?"], "prompt": "The white {} in the sweater has a bushy tail"}, {"index": 620, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing on the sidewalk", "question": ["is there the white dog ?", "is there the sidewalk ?"], "prompt": "The white {} is standing on the sidewalk"}, {"index": 621, "image_id": 2371612, "entity": "dog", "caption": "the dog is using the laptop", "question": ["is there the dog ?", "is there the laptop ?"], "prompt": "the {} is using the laptop"}, {"index": 622, "image_id": 2371612, "entity": "dog", "caption": "A dog with it's paws on a laptop.", "question": ["is there a dog ?", "are there it's paws ?", "is there a laptop ?"], "prompt": "A {} with it's paws on a laptop."}, {"index": 623, "image_id": 2371612, "entity": "dog", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The {} is using the computer "}, {"index": 624, "image_id": 2371612, "entity": "dog", "caption": "The nose of the dog is black ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "The nose of the {} is black "}, {"index": 625, "image_id": 2371612, "entity": "dog", "caption": "The eye of the dog is brown ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "The eye of the {} is brown "}, {"index": 626, "image_id": 2371520, "entity": "dog", "caption": "carpet dog is playing on", "question": ["is there carpet dog ?"], "prompt": "carpet {} is playing on"}, {"index": 627, "image_id": 2371249, "entity": "dog", "caption": "A dog has three colors of fur.", "question": ["is there a dog ?", "are there three colors ?", "is there fur ?"], "prompt": "A {} has three colors of fur."}, {"index": 628, "image_id": 2371249, "entity": "dog", "caption": "A dog is wearing a scarf around the neck.", "question": ["is there a dog ?", "is there a scarf ?", "is there the neck ?"], "prompt": "A {} is wearing a scarf around the neck."}, {"index": 629, "image_id": 2371249, "entity": "dog", "caption": "A woman is sitting close to a dog.", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman is sitting close to a {}."}, {"index": 630, "image_id": 2371169, "entity": "dog", "caption": "The dog has a frisbee in mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there mouth ?"], "prompt": "The {} has a frisbee in mouth."}, {"index": 631, "image_id": 2371169, "entity": "dog", "caption": "the dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar."}, {"index": 632, "image_id": 2371169, "entity": "dog", "caption": "The back left leg of a dog", "question": ["is there the back left leg ?", "is there a dog ?"], "prompt": "The back left leg of a {}"}, {"index": 633, "image_id": 2371169, "entity": "dog", "caption": "The front left leg of a dog", "question": ["is there the front left leg ?", "is there a dog ?"], "prompt": "The front left leg of a {}"}, {"index": 634, "image_id": 2371119, "entity": "dog", "caption": "the dog is laying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is laying on the bed"}, {"index": 635, "image_id": 2370667, "entity": "dog", "caption": "the dogs nail ", "question": ["are there the dogs ?"], "prompt": "the {}s nail "}, {"index": 636, "image_id": 2370647, "entity": "dog", "caption": "The dog has a serious face", "question": ["is there the dog ?", "is there a serious face ?"], "prompt": "The {} has a serious face"}, {"index": 637, "image_id": 2370647, "entity": "dog", "caption": "The dog has white whiskers.", "question": ["is there the dog ?", "are there white whiskers ?"], "prompt": "The {} has white whiskers."}, {"index": 638, "image_id": 2370647, "entity": "dog", "caption": "The dog has a brown colar.", "question": ["is there the dog ?", "is there a brown colar ?"], "prompt": "The {} has a brown colar."}, {"index": 639, "image_id": 2370508, "entity": "dog", "caption": "eye of dog is black ", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black "}, {"index": 640, "image_id": 2370508, "entity": "dog", "caption": "chest of dog is white", "question": ["is there chest ?", "is there dog ?"], "prompt": "chest of {} is white"}, {"index": 641, "image_id": 2370508, "entity": "dog", "caption": "dog has dog tags", "question": ["is there dog ?", "are there dog tags ?"], "prompt": "{} has {} tags"}, {"index": 642, "image_id": 2370342, "entity": "dog", "caption": "dog's head is on the pillow", "question": ["is there dog's head ?", "is there the pillow ?"], "prompt": "{}'s head is on the pillow"}, {"index": 643, "image_id": 2370107, "entity": "dog", "caption": "bottom left tooth of dog", "question": ["is there bottom ?", "is there tooth ?", "is there dog ?"], "prompt": "bottom left tooth of {}"}, {"index": 644, "image_id": 2369919, "entity": "dog", "caption": "dogs nose is black ", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black "}, {"index": 645, "image_id": 2369919, "entity": "dog", "caption": "the dog is laying down on a shoe ", "question": ["is there the dog ?", "is there a shoe ?"], "prompt": "the {} is laying down on a shoe "}, {"index": 646, "image_id": 2369591, "entity": "dog", "caption": "the dog has a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} has a leash"}, {"index": 647, "image_id": 2369591, "entity": "dog", "caption": "The dog's eye looking ahead", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye looking ahead"}, {"index": 648, "image_id": 2369270, "entity": "dog", "caption": "Frisbee is in the dog's mouth", "question": ["is there the dog's mouth ?"], "prompt": "Frisbee is in the {}'s mouth"}, {"index": 649, "image_id": 2368889, "entity": "dog", "caption": "Big brown dog spiked pink collar.", "question": ["is there big brown dog ?", "is there pink collar ?"], "prompt": "Big brown {} spiked pink collar."}, {"index": 650, "image_id": 2368858, "entity": "dog", "caption": "dog is laying on the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is laying on the ground"}, {"index": 651, "image_id": 2368858, "entity": "dog", "caption": "dog with tongue sticking out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue sticking out"}, {"index": 652, "image_id": 2368858, "entity": "dog", "caption": "the dog has a front paw", "question": ["is there the dog ?", "is there a front paw ?"], "prompt": "the {} has a front paw"}, {"index": 653, "image_id": 2368858, "entity": "dog", "caption": "the dog has nails", "question": ["is there the dog ?", "are there nails ?"], "prompt": "the {} has nails"}, {"index": 654, "image_id": 2368858, "entity": "dog", "caption": "the dog is lying down", "question": ["is there the dog ?"], "prompt": "the {} is lying down"}, {"index": 655, "image_id": 2368714, "entity": "dog", "caption": "dog curled up with a teddy bear", "question": ["is there dog ?"], "prompt": "{} curled up with a teddy bear"}, {"index": 656, "image_id": 2368714, "entity": "dog", "caption": "ear of dog is black ", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is black "}, {"index": 657, "image_id": 2368054, "entity": "dog", "caption": "dog has a purple leash", "question": ["is there dog ?", "is there a purple leash ?"], "prompt": "{} has a purple leash"}, {"index": 658, "image_id": 2368054, "entity": "dog", "caption": "this dog is wearing a red harness", "question": ["is there this dog ?", "is there a red harness ?"], "prompt": "this {} is wearing a red harness"}, {"index": 659, "image_id": 2367865, "entity": "dog", "caption": "The dog's eyes are yellow", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are yellow"}, {"index": 660, "image_id": 2367488, "entity": "dog", "caption": "the dog is inside a van", "question": ["is there the dog ?", "is there a van ?"], "prompt": "the {} is inside a van"}, {"index": 661, "image_id": 2367488, "entity": "dog", "caption": "the dog tag hanging", "question": ["is there the dog tag ?"], "prompt": "the {} tag hanging"}, {"index": 662, "image_id": 2367488, "entity": "dog", "caption": "The dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar"}, {"index": 663, "image_id": 2367488, "entity": "dog", "caption": "navy blanket dog is laying on", "question": ["is there navy blanket dog ?"], "prompt": "navy blanket {} is laying on"}, {"index": 664, "image_id": 2367488, "entity": "dog", "caption": "The dog's pink tongue is very long", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue is very long"}, {"index": 665, "image_id": 2367488, "entity": "dog", "caption": "A large tongue hanging out of the dog's mouth", "question": ["is there a large tongue ?", "is there the dog's mouth ?"], "prompt": "A large tongue hanging out of the {}'s mouth"}, {"index": 666, "image_id": 2367488, "entity": "dog", "caption": "The dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 667, "image_id": 2367433, "entity": "dog", "caption": "pizza that dog is eating", "question": ["is there pizza ?", "is there that dog ?"], "prompt": "pizza that {} is eating"}, {"index": 668, "image_id": 2367433, "entity": "dog", "caption": "steel grate that dog is standing on", "question": ["is there steel grate ?", "is there that dog ?"], "prompt": "steel grate that {} is standing on"}, {"index": 669, "image_id": 2367152, "entity": "dog", "caption": "mouth of dog is open", "question": ["is there mouth ?", "is there dog ?"], "prompt": "mouth of {} is open"}, {"index": 670, "image_id": 2366422, "entity": "dog", "caption": "dog tail held high", "question": ["is there dog tail ?"], "prompt": "{} tail held high"}, {"index": 671, "image_id": 2366422, "entity": "dog", "caption": "a dog that has brown eyes", "question": ["is there a dog ?", "are there brown eyes ?"], "prompt": "a {} that has brown eyes"}, {"index": 672, "image_id": 2366422, "entity": "dog", "caption": "the dog has a brown ear", "question": ["is there the dog ?", "is there a brown ear ?"], "prompt": "the {} has a brown ear"}, {"index": 673, "image_id": 2366422, "entity": "dog", "caption": "this dog has eyes", "question": ["is there this dog ?", "are there eyes ?"], "prompt": "this {} has eyes"}, {"index": 674, "image_id": 2366422, "entity": "dog", "caption": "this dog has ears", "question": ["is there this dog ?", "are there ears ?"], "prompt": "this {} has ears"}, {"index": 675, "image_id": 2366422, "entity": "dog", "caption": "this dog's nose is black", "question": ["is there this dog's nose ?"], "prompt": "this {}'s nose is black"}, {"index": 676, "image_id": 2366422, "entity": "dog", "caption": "this dog has a long tail", "question": ["is there this dog ?", "is there a long tail ?"], "prompt": "this {} has a long tail"}, {"index": 677, "image_id": 2365888, "entity": "dog", "caption": "the dog has a small tail", "question": ["is there the dog ?", "is there a small tail ?"], "prompt": "the {} has a small tail"}, {"index": 678, "image_id": 2365787, "entity": "dog", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th e{} is in the car "}, {"index": 679, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking outside the window"}, {"index": 680, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside ", "question": ["is there the dog ?"], "prompt": "the {} is looking outside "}, {"index": 681, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking through the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking through the window"}, {"index": 682, "image_id": 2365756, "entity": "dog", "caption": "the doghas a seat belt on ", "question": ["is there a seat belt ?"], "prompt": "the {}has a seat belt on "}, {"index": 683, "image_id": 2365756, "entity": "dog", "caption": "Black seatbelt holding back a dog. ", "question": ["is there black seatbelt ?", "is there a dog ?"], "prompt": "Black seatbelt holding back a {}. "}, {"index": 684, "image_id": 2365712, "entity": "dog", "caption": "the dog is licking the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is licking the cake"}, {"index": 685, "image_id": 2365044, "entity": "dog", "caption": "dog is wearing a bow tie ", "question": ["is there dog ?", "is there a bow tie ?"], "prompt": "{} is wearing a bow tie "}, {"index": 686, "image_id": 2364811, "entity": "dog", "caption": "The pillow the dog is laying on.", "question": ["is there the pillow ?", "is there the dog ?"], "prompt": "The pillow the {} is laying on."}, {"index": 687, "image_id": 2364811, "entity": "dog", "caption": "the dog is getting ready for bed", "question": ["is there the dog ?", "is there bed ?"], "prompt": "the {} is getting ready for bed"}, {"index": 688, "image_id": 2364811, "entity": "dog", "caption": "this dog looks comfortable in bed", "question": ["is there this dog ?", "is there bed ?"], "prompt": "this {} looks comfortable in bed"}, {"index": 689, "image_id": 2364811, "entity": "dog", "caption": "dog has hazel eyes", "question": ["is there dog ?", "are there hazel eyes ?"], "prompt": "{} has hazel eyes"}, {"index": 690, "image_id": 2364543, "entity": "dog", "caption": "dog is holding a ball", "question": ["is there dog ?", "is there a ball ?"], "prompt": "{} is holding a ball"}, {"index": 691, "image_id": 2364543, "entity": "dog", "caption": "black dog with paws forward looking at camera", "question": ["is there black dog ?", "are there paws ?", "is there camera ?"], "prompt": "black {} with paws forward looking at camera"}, {"index": 692, "image_id": 2364543, "entity": "dog", "caption": "dog has a ball inside his mouth", "question": ["is there dog ?", "is there a ball ?", "is there his mouth ?"], "prompt": "{} has a ball inside his mouth"}, {"index": 693, "image_id": 2364543, "entity": "dog", "caption": "snout of dog is color salt and pepper", "question": ["is there snout ?", "is there dog ?", "is there color salt ?", "is there pepper ?"], "prompt": "snout of {} is color salt and pepper"}, {"index": 694, "image_id": 2364504, "entity": "dog", "caption": "The dog is wearing a purple collar.", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "The {} is wearing a purple collar."}, {"index": 695, "image_id": 2364504, "entity": "dog", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One {} is sitting in the car."}, {"index": 696, "image_id": 2364448, "entity": "dog", "caption": "the dog has a paw", "question": ["is there the dog ?", "is there a paw ?"], "prompt": "the {} has a paw"}, {"index": 697, "image_id": 2364244, "entity": "dog", "caption": "the dog is wearing a tiara", "question": ["is there the dog ?", "is there a tiara ?"], "prompt": "the {} is wearing a tiara"}, {"index": 698, "image_id": 2364208, "entity": "dog", "caption": "the cow is looking at the dog", "question": ["is there the cow ?", "is there the dog ?"], "prompt": "the cow is looking at the {}"}, {"index": 699, "image_id": 2363392, "entity": "dog", "caption": "a dog with his tooth sticking out", "question": ["is there a dog ?", "is there his tooth ?"], "prompt": "a {} with his tooth sticking out"}, {"index": 700, "image_id": 2363392, "entity": "dog", "caption": "green couch cushion dog is sleeping on", "question": ["is there green couch cushion dog ?"], "prompt": "green couch cushion {} is sleeping on"}, {"index": 701, "image_id": 2363392, "entity": "dog", "caption": "dog lip pulled up against cushion", "question": ["is there dog lip ?", "is there cushion ?"], "prompt": "{} lip pulled up against cushion"}, {"index": 702, "image_id": 2363392, "entity": "dog", "caption": "dog's tongue sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue sticking out"}, {"index": 703, "image_id": 2363350, "entity": "dog", "caption": "A dog is laying in his bed", "question": ["is there a dog ?", "is there his bed ?"], "prompt": "A {} is laying in his bed"}, {"index": 704, "image_id": 2363350, "entity": "dog", "caption": "The dog is resting on a pillow", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is resting on a pillow"}, {"index": 705, "image_id": 2362763, "entity": "dog", "caption": "dog's teeth are showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are showing"}, {"index": 706, "image_id": 2362553, "entity": "dog", "caption": "dog with head tilted up", "question": ["is there dog ?", "is there head ?"], "prompt": "{} with head tilted up"}, {"index": 707, "image_id": 2362553, "entity": "dog", "caption": "the dog has a right eye", "question": ["is there the dog ?", "is there a right eye ?"], "prompt": "the {} has a right eye"}, {"index": 708, "image_id": 2362525, "entity": "dog", "caption": "The dog is in the bag", "question": ["is there the dog ?", "is there the bag ?"], "prompt": "The {} is in the bag"}, {"index": 709, "image_id": 2362525, "entity": "dog", "caption": "The bag is holding the dog", "question": ["is there the bag ?", "is there the dog ?"], "prompt": "The bag is holding the {}"}, {"index": 710, "image_id": 2362525, "entity": "dog", "caption": "The small backpack holds a dog", "question": ["is there the small backpack ?", "is there a dog ?"], "prompt": "The small backpack holds a {}"}, {"index": 711, "image_id": 2362525, "entity": "dog", "caption": "The dog is turning its head", "question": ["is there the dog ?", "is there its head ?"], "prompt": "The {} is turning its head"}, {"index": 712, "image_id": 2362525, "entity": "dog", "caption": "this is a \"doggy pack\"", "question": ["is there a \"doggy pack ?"], "prompt": "this is a \"{}gy pack\""}, {"index": 713, "image_id": 2362323, "entity": "dog", "caption": "dog is wearing chain collar", "question": ["is there dog ?", "is there chain collar ?"], "prompt": "{} is wearing chain collar"}, {"index": 714, "image_id": 2362323, "entity": "dog", "caption": "the dog is looking at the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is looking at the cake"}, {"index": 715, "image_id": 2362323, "entity": "dog", "caption": "the dog looks sad", "question": ["is there the dog ?"], "prompt": "the {} looks sad"}, {"index": 716, "image_id": 2362323, "entity": "dog", "caption": "the dog lays head on arm", "question": ["is there the dog ?", "is there head ?", "is there arm ?"], "prompt": "the {} lays head on arm"}, {"index": 717, "image_id": 2362323, "entity": "dog", "caption": "the dog has spots", "question": ["is there the dog ?", "are there spots ?"], "prompt": "the {} has spots"}, {"index": 718, "image_id": 2362323, "entity": "dog", "caption": "eye of dog is black", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black"}, {"index": 719, "image_id": 2362196, "entity": "dog", "caption": " a dog with it's tongue sticking out", "question": ["is there a dog ?", "is there tongue ?"], "prompt": " a {} with it's tongue sticking out"}, {"index": 720, "image_id": 2362106, "entity": "dog", "caption": "this is a dog ", "question": ["is there a dog ?"], "prompt": "this is a {} "}, {"index": 721, "image_id": 2362106, "entity": "dog", "caption": "the dog is lying down on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is lying down on the floor"}, {"index": 722, "image_id": 2362106, "entity": "dog", "caption": "The dog is in somebody's house", "question": ["is there the dog ?", "is there somebody's house ?"], "prompt": "The {} is in somebody's house"}, {"index": 723, "image_id": 2362106, "entity": "dog", "caption": "The dog is laying by the door", "question": ["is there the dog ?", "is there the door ?"], "prompt": "The {} is laying by the door"}, {"index": 724, "image_id": 2362106, "entity": "dog", "caption": "The dog is guarding the house", "question": ["is there the dog ?", "is there the house ?"], "prompt": "The {} is guarding the house"}, {"index": 725, "image_id": 2362106, "entity": "dog", "caption": "The dog is awake in daytime", "question": ["is there the dog ?", "is there daytime ?"], "prompt": "The {} is awake in daytime"}, {"index": 726, "image_id": 2362106, "entity": "dog", "caption": "The dog is waiting to go outside", "question": ["is there the dog ?"], "prompt": "The {} is waiting to go outside"}, {"index": 727, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting to be let out", "question": ["is there a dog ?"], "prompt": "A {} is waiting to be let out"}, {"index": 728, "image_id": 2362106, "entity": "dog", "caption": "A dog is sleeping on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is sleeping on the floor"}, {"index": 729, "image_id": 2362106, "entity": "dog", "caption": "A dog is looking for attention", "question": ["is there a dog ?", "is there attention ?"], "prompt": "A {} is looking for attention"}, {"index": 730, "image_id": 2362106, "entity": "dog", "caption": "The dog is looking lonely", "question": ["is there the dog ?"], "prompt": "The {} is looking lonely"}, {"index": 731, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting by the door", "question": ["is there a dog ?", "is there the door ?"], "prompt": "A {} is waiting by the door"}, {"index": 732, "image_id": 2362106, "entity": "dog", "caption": "A dog is laying on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is laying on the floor"}, {"index": 733, "image_id": 2362106, "entity": "dog", "caption": "The dog is wanting to be fed", "question": ["is there the dog ?"], "prompt": "The {} is wanting to be fed"}, {"index": 734, "image_id": 2362106, "entity": "dog", "caption": "The dog is enjoying its day", "question": ["is there the dog ?", "is there its day ?"], "prompt": "The {} is enjoying its day"}, {"index": 735, "image_id": 2362106, "entity": "dog", "caption": "The dog is getting some rest", "question": ["is there the dog ?", "is there some rest ?"], "prompt": "The {} is getting some rest"}, {"index": 736, "image_id": 2362106, "entity": "dog", "caption": "The dog belongs to the home owner", "question": ["is there the dog ?", "is there the home owner ?"], "prompt": "The {} belongs to the home owner"}, {"index": 737, "image_id": 2361653, "entity": "dog", "caption": "the dog has a left eye", "question": ["is there the dog ?", "is there a left eye ?"], "prompt": "the {} has a left eye"}, {"index": 738, "image_id": 2361100, "entity": "dog", "caption": "floppy black dog ear ", "question": ["is there floppy black dog ear ?"], "prompt": "floppy black {} ear "}, {"index": 739, "image_id": 2361100, "entity": "dog", "caption": "two dog ear in different positions at same time ", "question": ["is there two dog ear ?", "are there different positions ?", "is there same time ?"], "prompt": "two {} ear in different positions at same time "}, {"index": 740, "image_id": 2361100, "entity": "dog", "caption": "The dog's left ear flopped down", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear flopped down"}, {"index": 741, "image_id": 2361100, "entity": "dog", "caption": "the dog's right ear is up", "question": ["is there the dog's right ear ?"], "prompt": "the {}'s right ear is up"}, {"index": 742, "image_id": 2361100, "entity": "dog", "caption": "the dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are open"}, {"index": 743, "image_id": 2360869, "entity": "dog", "caption": "dog is laying on dog bed", "question": ["is there dog ?", "is there dog bed ?"], "prompt": "{} is laying on {} bed"}, {"index": 744, "image_id": 2360869, "entity": "dog", "caption": "dog has small nose", "question": ["is there dog ?", "is there small nose ?"], "prompt": "{} has small nose"}, {"index": 745, "image_id": 2360869, "entity": "dog", "caption": "dog bed is beige", "question": ["is there dog bed ?"], "prompt": "{} bed is beige"}, {"index": 746, "image_id": 2360869, "entity": "dog", "caption": "dog has wavy fur", "question": ["is there dog ?", "is there wavy fur ?"], "prompt": "{} has wavy fur"}, {"index": 747, "image_id": 2360869, "entity": "dog", "caption": "dog has fluffy tail", "question": ["is there dog ?", "is there fluffy tail ?"], "prompt": "{} has fluffy tail"}, {"index": 748, "image_id": 2360725, "entity": "dog", "caption": "the dog is biting an envelope", "question": ["is there the dog ?", "is there an envelope ?"], "prompt": "the {} is biting an envelope"}, {"index": 749, "image_id": 2360725, "entity": "dog", "caption": "dog is carrying an envelope", "question": ["is there dog ?", "is there an envelope ?"], "prompt": "{} is carrying an envelope"}, {"index": 750, "image_id": 2360542, "entity": "dog", "caption": "dog has black eyes", "question": ["is there dog ?", "are there black eyes ?"], "prompt": "{} has black eyes"}, {"index": 751, "image_id": 2360542, "entity": "dog", "caption": "pomeranian dog gets a ride inside duffle bag", "question": ["is there pomeranian dog ?", "is there a ride inside duffle bag ?"], "prompt": "pomeranian {} gets a ride inside duffle bag"}, {"index": 752, "image_id": 2360357, "entity": "dog", "caption": "The front left leg of the dog.", "question": ["is there the front left leg ?", "is there the dog ?"], "prompt": "The front left leg of the {}."}, {"index": 753, "image_id": 2360357, "entity": "dog", "caption": "eyes of dog are round", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are round"}, {"index": 754, "image_id": 2360357, "entity": "dog", "caption": "head of dog is brown", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown"}, {"index": 755, "image_id": 2360357, "entity": "dog", "caption": "dog has dark eyes ", "question": ["is there dog ?", "are there dark eyes ?"], "prompt": "{} has dark eyes "}, {"index": 756, "image_id": 2360299, "entity": "dog", "caption": "dog's right ear is black", "question": ["is there dog's right ear ?"], "prompt": "{}'s right ear is black"}, {"index": 757, "image_id": 2360145, "entity": "dog", "caption": "A shadow line is behind the dogs.", "question": ["is there a shadow line ?", "are there the dogs ?"], "prompt": "A shadow line is behind the {}s."}, {"index": 758, "image_id": 2359887, "entity": "dog", "caption": "dog with his eyes shut", "question": ["is there dog ?", "are there his eyes ?"], "prompt": "{} with his eyes shut"}, {"index": 759, "image_id": 2359887, "entity": "dog", "caption": "dog is on blanket", "question": ["is there dog ?", "is there blanket ?"], "prompt": "{} is on blanket"}, {"index": 760, "image_id": 2359887, "entity": "dog", "caption": "dog has blonde hair", "question": ["is there dog ?", "is there blonde hair ?"], "prompt": "{} has blonde hair"}, {"index": 761, "image_id": 2359887, "entity": "dog", "caption": "dog has long hair on ears", "question": ["is there dog ?", "is there long hair ?", "are there ears ?"], "prompt": "{} has long hair on ears"}, {"index": 762, "image_id": 2359809, "entity": "dog", "caption": "The rear left paw of the dog", "question": ["is there the rear left paw ?", "is there the dog ?"], "prompt": "The rear left paw of the {}"}, {"index": 763, "image_id": 2359809, "entity": "dog", "caption": "dog is standing on cement floors", "question": ["is there dog ?", "are there cement floors ?"], "prompt": "{} is standing on cement floors"}, {"index": 764, "image_id": 2359414, "entity": "dog", "caption": "the dog has a banana on its side", "question": ["is there the dog ?", "is there a banana ?", "is there its side ?"], "prompt": "the {} has a banana on its side"}, {"index": 765, "image_id": 2359172, "entity": "dog", "caption": "dog has brown ear", "question": ["is there dog ?", "is there brown ear ?"], "prompt": "{} has brown ear"}, {"index": 766, "image_id": 2359172, "entity": "dog", "caption": "dog has brown eye", "question": ["is there dog ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 767, "image_id": 2359073, "entity": "dog", "caption": "Cat is laying on top of dog.", "question": ["is there cat ?", "is there top ?", "is there dog ?"], "prompt": "Cat is laying on top of {}."}, {"index": 768, "image_id": 2359073, "entity": "dog", "caption": "The cat is on the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is on the {}."}, {"index": 769, "image_id": 2359073, "entity": "dog", "caption": "dog has brown eye brows", "question": ["is there dog ?", "are there brown eye brows ?"], "prompt": "{} has brown eye brows"}, {"index": 770, "image_id": 2358914, "entity": "dog", "caption": "dog holds chew toy", "question": ["is there dog ?", "is there toy ?"], "prompt": "{} holds chew toy"}, {"index": 771, "image_id": 2358914, "entity": "dog", "caption": "dog has pink tongue", "question": ["is there dog ?", "is there pink tongue ?"], "prompt": "{} has pink tongue"}, {"index": 772, "image_id": 2358914, "entity": "dog", "caption": "the dog is chewing on a toy", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "the {} is chewing on a toy"}, {"index": 773, "image_id": 2358914, "entity": "dog", "caption": "the dog chews on an orange toy", "question": ["is there the dog ?", "is there an orange toy ?"], "prompt": "the {} chews on an orange toy"}, {"index": 774, "image_id": 2358914, "entity": "dog", "caption": "the dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is on a blanket"}, {"index": 775, "image_id": 2358914, "entity": "dog", "caption": "the dog is laying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is laying on a blanket"}, {"index": 776, "image_id": 2358914, "entity": "dog", "caption": "Small orange looking stuffed animal a dog has. ", "question": ["is there small orange ?", "is there stuffed animal ?", "is there a dog ?"], "prompt": "Small orange looking stuffed animal a {} has. "}, {"index": 777, "image_id": 2358914, "entity": "dog", "caption": "A brown dogs left side front paw. ", "question": ["are there a brown dogs ?", "is there side front paw ?"], "prompt": "A brown {}s left side front paw. "}, {"index": 778, "image_id": 2358914, "entity": "dog", "caption": "A dogs left ear. ", "question": ["are there a dogs ?", "is there ear ?"], "prompt": "A {}s left ear. "}, {"index": 779, "image_id": 2358486, "entity": "dog", "caption": "dog is leaning over railing", "question": ["is there dog ?"], "prompt": "{} is leaning over railing"}, {"index": 780, "image_id": 2358453, "entity": "dog", "caption": "eye of dog is close", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is close"}, {"index": 781, "image_id": 2357732, "entity": "dog", "caption": "dog has a long ear", "question": ["is there dog ?", "is there a long ear ?"], "prompt": "{} has a long ear"}, {"index": 782, "image_id": 2357732, "entity": "dog", "caption": "the dog's head is on the blanket", "question": ["is there the dog's head ?", "is there the blanket ?"], "prompt": "the {}'s head is on the blanket"}, {"index": 783, "image_id": 2357732, "entity": "dog", "caption": "the dog has on a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has on a red collar"}, {"index": 784, "image_id": 2357693, "entity": "dog", "caption": "dog has brown patch on eye", "question": ["is there dog ?", "is there brown patch ?", "is there eye ?"], "prompt": "{} has brown patch on eye"}, {"index": 785, "image_id": 2357667, "entity": "dog", "caption": "the dog is wearing a tie", "question": ["is there the dog ?", "is there a tie ?"], "prompt": "the {} is wearing a tie"}, {"index": 786, "image_id": 2357667, "entity": "dog", "caption": "the dog is lying on the arm of a leather chair", "question": ["is there the dog ?", "is there the arm ?", "is there a leather chair ?"], "prompt": "the {} is lying on the arm of a leather chair"}, {"index": 787, "image_id": 2357667, "entity": "dog", "caption": "the dog has bulgy eyes", "question": ["is there the dog ?", "are there bulgy eyes ?"], "prompt": "the {} has bulgy eyes"}, {"index": 788, "image_id": 2357667, "entity": "dog", "caption": "the dog has dark brown ears", "question": ["is there the dog ?", "are there dark brown ears ?"], "prompt": "the {} has dark brown ears"}, {"index": 789, "image_id": 2356804, "entity": "dog", "caption": "two dogs with their tongues hanging out", "question": ["are there two dogs ?", "are there their tongues ?"], "prompt": "two {}s with their tongues hanging out"}, {"index": 790, "image_id": 2356804, "entity": "dog", "caption": "the dogs are in long grass", "question": ["are there the dogs ?", "is there long grass ?"], "prompt": "the {}s are in long grass"}, {"index": 791, "image_id": 2356762, "entity": "dog", "caption": "This is a dog trying to catch an apple.", "question": ["is there a dog ?", "is there an apple ?"], "prompt": "This is a {} trying to catch an apple."}, {"index": 792, "image_id": 2356762, "entity": "dog", "caption": "The dog has only a few teeth.", "question": ["is there the dog ?", "are there only a few teeth ?"], "prompt": "The {} has only a few teeth."}, {"index": 793, "image_id": 2356701, "entity": "dog", "caption": "the dog's nose is thru the hole", "question": ["is there the dog's nose ?", "is there the hole ?"], "prompt": "the {}'s nose is thru the hole"}, {"index": 794, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck", "question": ["are there the dogs ?"], "prompt": "the {}s head is stuck"}, {"index": 795, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck in the wheel", "question": ["are there the dogs ?", "is there the wheel ?"], "prompt": "the {}s head is stuck in the wheel"}, {"index": 796, "image_id": 2356554, "entity": "dog", "caption": "dog wears black glasses", "question": ["is there dog ?", "are there black glasses ?"], "prompt": "{} wears black glasses"}, {"index": 797, "image_id": 2356554, "entity": "dog", "caption": "dog wears black jacket", "question": ["is there dog ?", "is there black jacket ?"], "prompt": "{} wears black jacket"}, {"index": 798, "image_id": 2356554, "entity": "dog", "caption": "dog is near motorcycle", "question": ["is there dog ?", "is there motorcycle ?"], "prompt": "{} is near motorcycle"}, {"index": 799, "image_id": 2356554, "entity": "dog", "caption": "the dog has sunglasses ", "question": ["is there the dog ?", "are there sunglasses ?"], "prompt": "the {} has sunglasses "}, {"index": 800, "image_id": 2356554, "entity": "dog", "caption": "the dog is on the bike ", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is on the bike "}, {"index": 801, "image_id": 2356554, "entity": "dog", "caption": "This dog is wearing sunglasses.", "question": ["is there this dog ?", "are there sunglasses ?"], "prompt": "This {} is wearing sunglasses."}, {"index": 802, "image_id": 2356554, "entity": "dog", "caption": "dog has leash on", "question": ["is there dog ?"], "prompt": "{} has leash on"}, {"index": 803, "image_id": 2356554, "entity": "dog", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "{} is sitting in side car"}, {"index": 804, "image_id": 2356153, "entity": "dog", "caption": "blue dog bone shaped tag", "question": ["is there blue dog bone shaped tag ?"], "prompt": "blue {} bone shaped tag"}, {"index": 805, "image_id": 2356153, "entity": "dog", "caption": "dog is wearing a red collar", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} is wearing a red collar"}, {"index": 806, "image_id": 2356153, "entity": "dog", "caption": "dog is walking on the dirt", "question": ["is there dog ?", "is there the dirt ?"], "prompt": "{} is walking on the dirt"}, {"index": 807, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} is wearing goggles"}, {"index": 808, "image_id": 2355985, "entity": "dog", "caption": "The dog is on a motorcycle", "question": ["is there the dog ?", "is there a motorcycle ?"], "prompt": "The {} is on a motorcycle"}, {"index": 809, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing a leather jacket", "question": ["is there the dog ?", "is there a leather jacket ?"], "prompt": "The {} is wearing a leather jacket"}, {"index": 810, "image_id": 2355985, "entity": "dog", "caption": "the nose is black on the dog ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose is black on the {} "}, {"index": 811, "image_id": 2355964, "entity": "dog", "caption": "dog ears is pink inside ", "question": ["are there dog ears ?"], "prompt": "{} ears is pink inside "}, {"index": 812, "image_id": 2355964, "entity": "dog", "caption": "dog has black nose ", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose "}, {"index": 813, "image_id": 2355944, "entity": "dog", "caption": "The dog is wearing a color", "question": ["is there the dog ?", "is there a color ?"], "prompt": "The {} is wearing a color"}, {"index": 814, "image_id": 2355865, "entity": "dog", "caption": "it is the eye of the dog ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "it is the eye of the {} "}, {"index": 815, "image_id": 2355519, "entity": "dog", "caption": "The dog has a frisbee in its mouth", "question": ["is there the dog ?", "is there a frisbee ?", "is there its mouth ?"], "prompt": "The {} has a frisbee in its mouth"}, {"index": 816, "image_id": 2355511, "entity": "dog", "caption": "a black dog right ear ", "question": ["is there a black dog right ear ?"], "prompt": "a black {} right ear "}, {"index": 817, "image_id": 2355511, "entity": "dog", "caption": "A black dog ready to get a bath", "question": ["is there a black dog ?", "is there a bath ?"], "prompt": "A black {} ready to get a bath"}, {"index": 818, "image_id": 2355409, "entity": "dog", "caption": "a dog catchign a freesbee", "question": ["is there a dog ?", "is there a freesbee ?"], "prompt": "a {} catchign a freesbee"}, {"index": 819, "image_id": 2355409, "entity": "dog", "caption": "a white dog catchign a black freesbee", "question": ["is there a white dog ?"], "prompt": "a white {} catchign a black freesbee"}, {"index": 820, "image_id": 2355256, "entity": "dog", "caption": "dog is brown and white", "question": ["is there dog ?"], "prompt": "{} is brown and white"}, {"index": 821, "image_id": 2354835, "entity": "dog", "caption": "Brown dog's head sticking out of car window.", "question": ["is there brown dog's head ?", "is there car window ?"], "prompt": "Brown {}'s head sticking out of car window."}, {"index": 822, "image_id": 2354515, "entity": "dog", "caption": "bike is behind the dog", "question": ["is there bike ?", "is there the dog ?"], "prompt": "bike is behind the {}"}, {"index": 823, "image_id": 2354515, "entity": "dog", "caption": "dog has tongue out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue out"}, {"index": 824, "image_id": 2354515, "entity": "dog", "caption": "dog is on the street", "question": ["is there dog ?", "is there the street ?"], "prompt": "{} is on the street"}, {"index": 825, "image_id": 2354497, "entity": "dog", "caption": "This dog has a donut in his mouth", "question": ["is there this dog ?", "is there a donut ?", "is there his mouth ?"], "prompt": "This {} has a donut in his mouth"}, {"index": 826, "image_id": 2354497, "entity": "dog", "caption": "The dog is wearing a red color.", "question": ["is there the dog ?", "is there a red color ?"], "prompt": "The {} is wearing a red color."}, {"index": 827, "image_id": 2354497, "entity": "dog", "caption": "The dog is sitting on the grass.", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "The {} is sitting on the grass."}, {"index": 828, "image_id": 2354497, "entity": "dog", "caption": "The dog has two spots on his face.", "question": ["is there the dog ?", "are there two spots ?", "is there his face ?"], "prompt": "The {} has two spots on his face."}, {"index": 829, "image_id": 2354494, "entity": "dog", "caption": "The dog nose is black", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black"}, {"index": 830, "image_id": 2354494, "entity": "dog", "caption": "tan/yellow dog laying across young girls lap", "question": ["is there tan/yellow dog ?", "are there young girls ?"], "prompt": "tan/yellow {} laying across young girls lap"}, {"index": 831, "image_id": 2354494, "entity": "dog", "caption": "dog is wearing a red collar around neck", "question": ["is there dog ?", "is there a red collar ?", "is there neck ?"], "prompt": "{} is wearing a red collar around neck"}, {"index": 832, "image_id": 2354494, "entity": "dog", "caption": "Woman laying on the couch with dog.", "question": ["is there woman ?", "is there the couch ?", "is there dog ?"], "prompt": "Woman laying on the couch with {}."}, {"index": 833, "image_id": 2354353, "entity": "dog", "caption": "The dog's head is on the keyboard", "question": ["is there the dog's head ?", "is there the keyboard ?"], "prompt": "The {}'s head is on the keyboard"}, {"index": 834, "image_id": 2354353, "entity": "dog", "caption": "The dog is wearing a blue and yellow collar", "question": ["is there the dog ?", "is there a blue and yellow collar ?"], "prompt": "The {} is wearing a blue and yellow collar"}, {"index": 835, "image_id": 2354353, "entity": "dog", "caption": "dog is on the keys", "question": ["is there dog ?", "are there the keys ?"], "prompt": "{} is on the keys"}, {"index": 836, "image_id": 2354353, "entity": "dog", "caption": "the dog has yellow and blue flowers", "question": ["is there the dog ?", "are there yellow and blue flowers ?"], "prompt": "the {} has yellow and blue flowers"}, {"index": 837, "image_id": 2353969, "entity": "dog", "caption": "dog has white paw", "question": ["is there dog ?"], "prompt": "{} has white paw"}, {"index": 838, "image_id": 2353969, "entity": "dog", "caption": "dog is laying down on rug", "question": ["is there dog ?", "is there rug ?"], "prompt": "{} is laying down on rug"}, {"index": 839, "image_id": 2353558, "entity": "dog", "caption": "the dog's eye is yellowish", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is yellowish"}, {"index": 840, "image_id": 2353558, "entity": "dog", "caption": "The dog has long ears", "question": ["is there the dog ?", "are there long ears ?"], "prompt": "The {} has long ears"}, {"index": 841, "image_id": 2353558, "entity": "dog", "caption": "The dog is wide eyed", "question": ["is there the dog ?"], "prompt": "The {} is wide eyed"}, {"index": 842, "image_id": 2353558, "entity": "dog", "caption": "The dog's nose is very black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is very black"}, {"index": 843, "image_id": 2353558, "entity": "dog", "caption": "The dog is wearing a bowl", "question": ["is there the dog ?", "is there a bowl ?"], "prompt": "The {} is wearing a bowl"}, {"index": 844, "image_id": 2353404, "entity": "dog", "caption": "the plastic buckle on the dog", "question": ["is there the plastic buckle ?", "is there the dog ?"], "prompt": "the plastic buckle on the {}"}, {"index": 845, "image_id": 2353404, "entity": "dog", "caption": "the dog walking and connected to a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} walking and connected to a chain"}, {"index": 846, "image_id": 2353398, "entity": "dog", "caption": "green felt the dog is standing on", "question": ["is there the dog ?"], "prompt": "green felt the {} is standing on"}, {"index": 847, "image_id": 2353062, "entity": "dog", "caption": "the dog is on a sofa", "question": ["is there the dog ?", "is there a sofa ?"], "prompt": "the {} is on a sofa"}, {"index": 848, "image_id": 2353062, "entity": "dog", "caption": "dog's eyes are amber", "question": ["are there dog's eyes ?", "is there amber ?"], "prompt": "{}'s eyes are amber"}, {"index": 849, "image_id": 2353062, "entity": "dog", "caption": "dog is laying on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} is laying on a couch"}, {"index": 850, "image_id": 2352757, "entity": "dog", "caption": "the dog is wearing a jacket", "question": ["is there the dog ?", "is there a jacket ?"], "prompt": "the {} is wearing a jacket"}, {"index": 851, "image_id": 2352757, "entity": "dog", "caption": "the dog has a black tail", "question": ["is there the dog ?", "is there a black tail ?"], "prompt": "the {} has a black tail"}, {"index": 852, "image_id": 2352502, "entity": "dog", "caption": "The dog is biting the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is biting the frisbee."}, {"index": 853, "image_id": 2352502, "entity": "dog", "caption": "The dog is on the beach.", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "The {} is on the beach."}, {"index": 854, "image_id": 2351971, "entity": "dog", "caption": "legs and paws of dog that allow dog to walk with ", "question": ["are there legs ?", "are there paws ?", "is there dog ?", "is there dog ?"], "prompt": "legs and paws of {} that allow {} to walk with "}, {"index": 855, "image_id": 2351950, "entity": "dog", "caption": "The dog is holding a bowl in his mouth", "question": ["is there the dog ?", "is there a bowl ?", "is there his mouth ?"], "prompt": "The {} is holding a bowl in his mouth"}, {"index": 856, "image_id": 2351950, "entity": "dog", "caption": "The dog's ear is hanging downwards", "question": ["is there the dog's ear ?"], "prompt": "The {}'s ear is hanging downwards"}, {"index": 857, "image_id": 2351950, "entity": "dog", "caption": "dog has light brown face", "question": ["is there dog ?", "is there light brown face ?"], "prompt": "{} has light brown face"}, {"index": 858, "image_id": 2351950, "entity": "dog", "caption": "dog is holding bowl", "question": ["is there dog ?", "is there bowl ?"], "prompt": "{} is holding bowl"}, {"index": 859, "image_id": 2351811, "entity": "dog", "caption": "the dogs head ", "question": ["are there the dogs ?"], "prompt": "the {}s head "}, {"index": 860, "image_id": 2351083, "entity": "dog", "caption": "dog holds a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} holds a cap"}, {"index": 861, "image_id": 2351083, "entity": "dog", "caption": "the dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black"}, {"index": 862, "image_id": 2350951, "entity": "dog", "caption": "the mouth of dog is open", "question": ["is there the mouth ?", "is there dog ?"], "prompt": "the mouth of {} is open"}, {"index": 863, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a Harley Davidson bandanna", "question": ["is there the unfortunate dog ?"], "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"}, {"index": 864, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a biker headband", "question": ["is there the unfortunate dog ?", "is there a biker headband ?"], "prompt": "the unfortunate {} is wearing a biker headband"}, {"index": 865, "image_id": 2350646, "entity": "dog", "caption": "the dog has cropped ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has cropped ears"}, {"index": 866, "image_id": 2350609, "entity": "dog", "caption": "lot where dog and woman stand", "question": ["is there lot ?", "is there dog ?", "is there woman ?"], "prompt": "lot where {} and woman stand"}, {"index": 867, "image_id": 2350606, "entity": "dog", "caption": "the dog is on a white platform", "question": ["is there the dog ?", "is there a white platform ?"], "prompt": "the {} is on a white platform"}, {"index": 868, "image_id": 2349745, "entity": "dog", "caption": "legs of dog running", "question": ["are there legs ?", "is there dog ?"], "prompt": "legs of {} running"}, {"index": 869, "image_id": 2349745, "entity": "dog", "caption": "open mouth of dog running", "question": ["is there open mouth ?", "is there dog ?"], "prompt": "open mouth of {} running"}, {"index": 870, "image_id": 2349745, "entity": "dog", "caption": "the dog is white with black spots", "question": ["is there the dog ?", "are there black spots ?"], "prompt": "the {} is white with black spots"}, {"index": 871, "image_id": 2349745, "entity": "dog", "caption": "the dog is running with his mouth open", "question": ["is there the dog ?", "is there his mouth ?"], "prompt": "the {} is running with his mouth open"}, {"index": 872, "image_id": 2349745, "entity": "dog", "caption": "the dog has a black spot over his eye", "question": ["is there the dog ?", "is there a black spot ?", "is there his eye ?"], "prompt": "the {} has a black spot over his eye"}, {"index": 873, "image_id": 2349745, "entity": "dog", "caption": "the dirt is flying from the dog's paws", "question": ["is there the dirt ?", "are there the dog's paws ?"], "prompt": "the dirt is flying from the {}'s paws"}, {"index": 874, "image_id": 2349745, "entity": "dog", "caption": "the dog's paws are touching from running", "question": ["are there the dog's paws ?"], "prompt": "the {}'s paws are touching from running"}, {"index": 875, "image_id": 2349548, "entity": "dog", "caption": "The dogs ear is brown.", "question": ["are there the dogs ?"], "prompt": "The {}s ear is brown."}, {"index": 876, "image_id": 2349547, "entity": "dog", "caption": "The dog has a pinkish nose.", "question": ["is there the dog ?", "is there a pinkish nose ?"], "prompt": "The {} has a pinkish nose."}, {"index": 877, "image_id": 2349421, "entity": "dog", "caption": "The dog is sitting on the chair ", "question": ["is there the dog ?", "is there the chair ?"], "prompt": "The {} is sitting on the chair "}, {"index": 878, "image_id": 2349268, "entity": "dog", "caption": "the dog has long nails", "question": ["is there the dog ?", "are there long nails ?"], "prompt": "the {} has long nails"}, {"index": 879, "image_id": 2349268, "entity": "dog", "caption": "the dog lays with toy", "question": ["is there the dog ?", "is there toy ?"], "prompt": "the {} lays with toy"}, {"index": 880, "image_id": 2348690, "entity": "dog", "caption": "the dog is chewing up a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is chewing up a stuffed animal"}, {"index": 881, "image_id": 2348554, "entity": "dog", "caption": "dog with hind legs stretched out", "question": ["is there dog ?", "are there hind legs ?"], "prompt": "{} with hind legs stretched out"}, {"index": 882, "image_id": 2348554, "entity": "dog", "caption": "A dog is laying on the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "A {} is laying on the bed"}, {"index": 883, "image_id": 2348554, "entity": "dog", "caption": "The dog has white on her paws", "question": ["is there the dog ?", "are there her paws ?"], "prompt": "The {} has white on her paws"}, {"index": 884, "image_id": 2348407, "entity": "dog", "caption": "tan dog's face as he holds the frisbee", "question": ["is there tan dog's face ?", "is there the frisbee ?"], "prompt": "tan {}'s face as he holds the frisbee"}, {"index": 885, "image_id": 2348407, "entity": "dog", "caption": "dog's eye looking up past the frisbee", "question": ["is there dog's eye ?", "is there the frisbee ?"], "prompt": "{}'s eye looking up past the frisbee"}, {"index": 886, "image_id": 2348407, "entity": "dog", "caption": "dog's ear hanging down as he chews the frisbee", "question": ["is there dog's ear ?", "is there the frisbee ?"], "prompt": "{}'s ear hanging down as he chews the frisbee"}, {"index": 887, "image_id": 2347998, "entity": "dog", "caption": "dog is on the newspaper", "question": ["is there dog ?", "is there the newspaper ?"], "prompt": "{} is on the newspaper"}, {"index": 888, "image_id": 2347801, "entity": "dog", "caption": "a dog tag shaped like a bone ", "question": ["is there a dog tag ?", "is there a bone ?"], "prompt": "a {} tag shaped like a bone "}, {"index": 889, "image_id": 2347801, "entity": "dog", "caption": "The dog is inside a room", "question": ["is there the dog ?", "is there a room ?"], "prompt": "The {} is inside a room"}, {"index": 890, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a television", "question": ["is there the dog ?", "is there a television ?"], "prompt": "The {} is next to a television"}, {"index": 891, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The {} is next to a laptop computer"}, {"index": 892, "image_id": 2347801, "entity": "dog", "caption": "The dog is on a table", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table"}, {"index": 893, "image_id": 2347591, "entity": "dog", "caption": "A woman who is sitting with a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman who is sitting with a {}"}, {"index": 894, "image_id": 2347591, "entity": "dog", "caption": "Woman is holding the dog", "question": ["is there woman ?", "is there the dog ?"], "prompt": "Woman is holding the {}"}, {"index": 895, "image_id": 2347481, "entity": "dog", "caption": "a dog with a disc on it's face", "question": ["is there a dog ?", "is there a disc ?"], "prompt": "a {} with a disc on it's face"}, {"index": 896, "image_id": 2347481, "entity": "dog", "caption": "dog has black and white tail", "question": ["is there dog ?", "is there black and white tail ?"], "prompt": "{} has black and white tail"}, {"index": 897, "image_id": 2347481, "entity": "dog", "caption": "dog has white neck", "question": ["is there dog ?", "is there white neck ?"], "prompt": "{} has white neck"}, {"index": 898, "image_id": 2347481, "entity": "dog", "caption": "The dogs tail", "question": ["are there the dogs ?"], "prompt": "The {}s tail"}, {"index": 899, "image_id": 2347481, "entity": "dog", "caption": "The ears that belong to the dog", "question": ["are there the ears ?", "is there the dog ?"], "prompt": "The ears that belong to the {}"}, {"index": 900, "image_id": 2347481, "entity": "dog", "caption": "A dog that is standing in the dirt", "question": ["is there a dog ?", "is there the dirt ?"], "prompt": "A {} that is standing in the dirt"}, {"index": 901, "image_id": 2347473, "entity": "dog", "caption": "the brown patches on the dogs face", "question": ["are there the brown patches ?", "are there the dogs ?"], "prompt": "the brown patches on the {}s face"}, {"index": 902, "image_id": 2347340, "entity": "dog", "caption": "dog's dark eyes are open", "question": ["are there dog's dark eyes ?"], "prompt": "{}'s dark eyes are open"}, {"index": 903, "image_id": 2347340, "entity": "dog", "caption": "the dog is on a chair", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "the {} is on a chair"}, {"index": 904, "image_id": 2347027, "entity": "dog", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car"}, {"index": 905, "image_id": 2347027, "entity": "dog", "caption": "dog has tongue hanging out ", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue hanging out "}, {"index": 906, "image_id": 2347027, "entity": "dog", "caption": "The dog have waggy ear.", "question": ["is there the dog ?"], "prompt": "The {} have waggy ear."}, {"index": 907, "image_id": 2346970, "entity": "dog", "caption": "The dog is resting his head on the couch.", "question": ["is there the dog ?", "is there his head ?", "is there the couch ?"], "prompt": "The {} is resting his head on the couch."}, {"index": 908, "image_id": 2346970, "entity": "dog", "caption": "The dog is wearing a blue collar.", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} is wearing a blue collar."}, {"index": 909, "image_id": 2346970, "entity": "dog", "caption": "The dog's eye is open.", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open."}, {"index": 910, "image_id": 2346970, "entity": "dog", "caption": "The dog's fur is very short.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is very short."}, {"index": 911, "image_id": 2346970, "entity": "dog", "caption": "The dog is sitting on top of white sheet.", "question": ["is there the dog ?", "is there top ?", "is there white sheet ?"], "prompt": "The {} is sitting on top of white sheet."}, {"index": 912, "image_id": 2346970, "entity": "dog", "caption": "the dogs neck is long ", "question": ["are there the dogs neck ?"], "prompt": "the {}s neck is long "}, {"index": 913, "image_id": 2346869, "entity": "dog", "caption": "dog is catching frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} is catching frisbee"}, {"index": 914, "image_id": 2346869, "entity": "dog", "caption": "dog has white frisbee in mouth", "question": ["is there dog ?", "is there white frisbee ?", "is there mouth ?"], "prompt": "{} has white frisbee in mouth"}, {"index": 915, "image_id": 2346869, "entity": "dog", "caption": "tree is next to dog", "question": ["is there tree ?", "is there dog ?"], "prompt": "tree is next to {}"}, {"index": 916, "image_id": 2346869, "entity": "dog", "caption": "man in cap leaning forward behind dog", "question": ["is there man ?", "is there cap ?", "is there dog ?"], "prompt": "man in cap leaning forward behind {}"}, {"index": 917, "image_id": 2346765, "entity": "dog", "caption": "neck of dog is white", "question": ["is there neck ?", "is there dog ?"], "prompt": "neck of {} is white"}, {"index": 918, "image_id": 2346434, "entity": "dog", "caption": "the dog's eyes are black", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are black"}, {"index": 919, "image_id": 2346434, "entity": "dog", "caption": "black pads and nails are on the dog's paws", "question": ["are there black pads ?", "are there nails ?", "are there the dog's paws ?"], "prompt": "black pads and nails are on the {}'s paws"}, {"index": 920, "image_id": 2346247, "entity": "dog", "caption": "Brown ear on the dog.", "question": ["is there brown ear ?", "is there the dog ?"], "prompt": "Brown ear on the {}."}, {"index": 921, "image_id": 2346086, "entity": "dog", "caption": "the black dog has a sad face", "question": ["is there the black dog ?", "is there a sad face ?"], "prompt": "the black {} has a sad face"}, {"index": 922, "image_id": 2346086, "entity": "dog", "caption": "A dog is near a bag.", "question": ["is there a dog ?", "is there a bag ?"], "prompt": "A {} is near a bag."}, {"index": 923, "image_id": 2346086, "entity": "dog", "caption": "The dog's mouth is closed.", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is closed."}, {"index": 924, "image_id": 2346086, "entity": "dog", "caption": "The dog is wearing a crocheted hat.", "question": ["is there the dog ?", "is there a crocheted hat ?"], "prompt": "The {} is wearing a crocheted hat."}, {"index": 925, "image_id": 2346086, "entity": "dog", "caption": "The dog has an ear.", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "The {} has an ear."}, {"index": 926, "image_id": 2346086, "entity": "dog", "caption": "The dog has an eye.", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "The {} has an eye."}, {"index": 927, "image_id": 2345642, "entity": "dog", "caption": "head of dog bowed down ", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} bowed down "}, {"index": 928, "image_id": 2345642, "entity": "dog", "caption": "green blanket the dog is laying on", "question": ["is there green blanket ?", "is there the dog ?"], "prompt": "green blanket the {} is laying on"}, {"index": 929, "image_id": 2345272, "entity": "dog", "caption": "the dogs tail ", "question": ["are there the dogs ?"], "prompt": "the {}s tail "}, {"index": 930, "image_id": 2345272, "entity": "dog", "caption": "a black dog looks onward with his tongue hanging out", "question": ["is there a black dog ?", "is there his tongue ?"], "prompt": "a black {} looks onward with his tongue hanging out"}, {"index": 931, "image_id": 2345272, "entity": "dog", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the boat holding a {} with a leash"}, {"index": 932, "image_id": 2345231, "entity": "dog", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the {}s paws on on the computer"}, {"index": 933, "image_id": 2345068, "entity": "dog", "caption": "Extra pillow for the dog to be comfortable", "question": ["is there extra pillow ?", "is there the dog ?"], "prompt": "Extra pillow for the {} to be comfortable"}, {"index": 934, "image_id": 2345068, "entity": "dog", "caption": "Teddy bear for the dog", "question": ["is there the dog ?"], "prompt": "Teddy bear for the {}"}, {"index": 935, "image_id": 2345068, "entity": "dog", "caption": "a dog curled up on its bed ", "question": ["is there a dog ?", "is there its bed ?"], "prompt": "a {} curled up on its bed "}, {"index": 936, "image_id": 2344922, "entity": "dog", "caption": "This dog has a very red collar", "question": ["is there this dog ?", "is there a very red collar ?"], "prompt": "This {} has a very red collar"}, {"index": 937, "image_id": 2344729, "entity": "dog", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the {} is in the car"}, {"index": 938, "image_id": 2344729, "entity": "dog", "caption": "this is the dogs leash", "question": ["are there the dogs ?"], "prompt": "this is the {}s leash"}, {"index": 939, "image_id": 2344635, "entity": "dog", "caption": "The dog is wearing a tag.", "question": ["is there the dog ?", "is there a tag ?"], "prompt": "The {} is wearing a tag."}, {"index": 940, "image_id": 2344635, "entity": "dog", "caption": "dog is wearing a tag", "question": ["is there dog ?", "is there a tag ?"], "prompt": "{} is wearing a tag"}, {"index": 941, "image_id": 2344635, "entity": "dog", "caption": "dogs eye looks white ", "question": ["are there dogs ?"], "prompt": "{}s eye looks white "}, {"index": 942, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is black.", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black."}, {"index": 943, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is small", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is small"}, {"index": 944, "image_id": 2344526, "entity": "dog", "caption": "The dogs fur is white.", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is white."}, {"index": 945, "image_id": 2344358, "entity": "dog", "caption": "this dog is under a white blanket", "question": ["is there this dog ?", "is there a white blanket ?"], "prompt": "this {} is under a white blanket"}, {"index": 946, "image_id": 2344283, "entity": "dog", "caption": "the dog is at the beach", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "the {} is at the beach"}, {"index": 947, "image_id": 2344283, "entity": "dog", "caption": "the dog is sitting on a towel", "question": ["is there the dog ?", "is there a towel ?"], "prompt": "the {} is sitting on a towel"}, {"index": 948, "image_id": 2344283, "entity": "dog", "caption": "a bag is by the dog", "question": ["is there a bag ?", "is there the dog ?"], "prompt": "a bag is by the {}"}, {"index": 949, "image_id": 2344283, "entity": "dog", "caption": "Brown dog is on a towel", "question": ["is there brown dog ?", "is there a towel ?"], "prompt": "Brown {} is on a towel"}, {"index": 950, "image_id": 2344228, "entity": "dog", "caption": "the dog has a brown part", "question": ["is there the dog ?", "is there a brown part ?"], "prompt": "the {} has a brown part"}, {"index": 951, "image_id": 2344228, "entity": "dog", "caption": "the dog has a black spot", "question": ["is there the dog ?", "is there a black spot ?"], "prompt": "the {} has a black spot"}, {"index": 952, "image_id": 2343539, "entity": "dog", "caption": "dog's tongue is hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is hanging out"}, {"index": 953, "image_id": 2343539, "entity": "dog", "caption": "dog's ears are back ", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are back "}, {"index": 954, "image_id": 2343194, "entity": "dog", "caption": "the dog has three balls", "question": ["is there the dog ?", "are there three balls ?"], "prompt": "the {} has three balls"}, {"index": 955, "image_id": 2343194, "entity": "dog", "caption": "the dog has balls in his mouth", "question": ["is there the dog ?", "are there balls ?", "is there his mouth ?"], "prompt": "the {} has balls in his mouth"}, {"index": 956, "image_id": 2343194, "entity": "dog", "caption": "the dog has a spotted nose", "question": ["is there the dog ?", "is there a spotted nose ?"], "prompt": "the {} has a spotted nose"}, {"index": 957, "image_id": 2343149, "entity": "dog", "caption": "The dog is splashing water", "question": ["is there the dog ?", "is there water ?"], "prompt": "The {} is splashing water"}, {"index": 958, "image_id": 2343149, "entity": "dog", "caption": "The dog's teeth are visible", "question": ["are there the dog's teeth ?"], "prompt": "The {}'s teeth are visible"}, {"index": 959, "image_id": 2343038, "entity": "dog", "caption": "dog with eyes closed", "question": ["is there dog ?", "are there eyes ?"], "prompt": "{} with eyes closed"}, {"index": 960, "image_id": 2342562, "entity": "dog", "caption": "dog mout to grab frisbees and eat food and drink water ", "question": ["is there dog mout ?", "are there frisbees ?", "is there food ?", "is there water ?"], "prompt": "{} mout to grab frisbees and eat food and drink water "}, {"index": 961, "image_id": 2342562, "entity": "dog", "caption": "The dog has a black ear.", "question": ["is there the dog ?", "is there a black ear ?"], "prompt": "The {} has a black ear."}, {"index": 962, "image_id": 2341045, "entity": "dog", "caption": "this dog and teddy bear are posing", "question": ["is there this dog ?", "is there bear ?"], "prompt": "this {} and teddy bear are posing"}, {"index": 963, "image_id": 2341045, "entity": "dog", "caption": "The dog is resting on white shaggy carpet.", "question": ["is there the dog ?", "is there white shaggy carpet ?"], "prompt": "The {} is resting on white shaggy carpet."}, {"index": 964, "image_id": 2340940, "entity": "dog", "caption": "The banana is inside the dog's mouth.", "question": ["is there the banana ?", "is there the dog's mouth ?"], "prompt": "The banana is inside the {}'s mouth."}, {"index": 965, "image_id": 2340940, "entity": "dog", "caption": "The little dog is sitting on top of the white blanket.", "question": ["is there the little dog ?", "is there top ?", "is there the white blanket ?"], "prompt": "The little {} is sitting on top of the white blanket."}, {"index": 966, "image_id": 2340940, "entity": "dog", "caption": "The dog has a pink collar.", "question": ["is there the dog ?", "is there a pink collar ?"], "prompt": "The {} has a pink collar."}, {"index": 967, "image_id": 2340940, "entity": "dog", "caption": "The dog is wearing a white collar.", "question": ["is there the dog ?", "is there a white collar ?"], "prompt": "The {} is wearing a white collar."}, {"index": 968, "image_id": 2340686, "entity": "dog", "caption": "The dog face is partially white.", "question": ["is there the dog face ?"], "prompt": "The {} face is partially white."}, {"index": 969, "image_id": 2339641, "entity": "dog", "caption": "dog has white spot on chest", "question": ["is there dog ?", "is there white spot ?", "is there chest ?"], "prompt": "{} has white spot on chest"}, {"index": 970, "image_id": 2339641, "entity": "dog", "caption": "dog is on a motorcycle", "question": ["is there dog ?", "is there a motorcycle ?"], "prompt": "{} is on a motorcycle"}, {"index": 971, "image_id": 2339617, "entity": "dog", "caption": "The dog sits on a chair. ", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} sits on a chair. "}, {"index": 972, "image_id": 2339617, "entity": "dog", "caption": "A blanket that the dog sits on.", "question": ["is there a blanket ?", "is there the dog ?"], "prompt": "A blanket that the {} sits on."}, {"index": 973, "image_id": 2339617, "entity": "dog", "caption": "dog has black back", "question": ["is there dog ?"], "prompt": "{} has black back"}, {"index": 974, "image_id": 2339511, "entity": "dog", "caption": "The cat is next to the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is next to the {}."}, {"index": 975, "image_id": 2339511, "entity": "dog", "caption": "The paw on the dog is white.", "question": ["is there the paw ?", "is there the dog ?"], "prompt": "The paw on the {} is white."}, {"index": 976, "image_id": 2339511, "entity": "dog", "caption": "brown striped cat lays next to dog", "question": ["is there brown striped cat ?", "is there dog ?"], "prompt": "brown striped cat lays next to {}"}, {"index": 977, "image_id": 2339511, "entity": "dog", "caption": "white front left paw on dog", "question": ["is there white front ?", "is there paw ?", "is there dog ?"], "prompt": "white front left paw on {}"}, {"index": 978, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around nose", "question": ["is there dog ?", "is there white fur ?", "is there nose ?"], "prompt": "{} has white fur around nose"}, {"index": 979, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around paws", "question": ["is there dog ?", "is there white fur ?", "are there paws ?"], "prompt": "{} has white fur around paws"}, {"index": 980, "image_id": 2339238, "entity": "dog", "caption": "dog has black ear", "question": ["is there dog ?", "is there black ear ?"], "prompt": "{} has black ear"}, {"index": 981, "image_id": 2339238, "entity": "dog", "caption": "dog has black eye", "question": ["is there dog ?", "is there black eye ?"], "prompt": "{} has black eye"}, {"index": 982, "image_id": 2339238, "entity": "dog", "caption": "dog has a white tooth", "question": ["is there dog ?", "is there a white tooth ?"], "prompt": "{} has a white tooth"}, {"index": 983, "image_id": 2337950, "entity": "dog", "caption": "couch man and dog are sitting on", "question": ["is there couch man ?", "is there dog ?"], "prompt": "couch man and {} are sitting on"}, {"index": 984, "image_id": 2337205, "entity": "dog", "caption": "the dog's eye is open ", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open "}, {"index": 985, "image_id": 2336811, "entity": "dog", "caption": "Front left paw of the dog", "question": ["is there front left paw ?", "is there the dog ?"], "prompt": "Front left paw of the {}"}, {"index": 986, "image_id": 2336773, "entity": "dog", "caption": "Small dogs right eye", "question": ["are there small dogs ?"], "prompt": "Small {}s right eye"}, {"index": 987, "image_id": 2336773, "entity": "dog", "caption": "Small dogs left eye", "question": ["are there small dogs ?", "is there eye ?"], "prompt": "Small {}s left eye"}, {"index": 988, "image_id": 2336693, "entity": "dog", "caption": "the dog is carrying a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is carrying a frisbee"}, {"index": 989, "image_id": 2336693, "entity": "dog", "caption": "the dog's front legs are white", "question": ["are there the dog's front legs ?"], "prompt": "the {}'s front legs are white"}, {"index": 990, "image_id": 2336693, "entity": "dog", "caption": "the dog's back legs are black", "question": ["are there the dog's back legs ?"], "prompt": "the {}'s back legs are black"}, {"index": 991, "image_id": 2336693, "entity": "dog", "caption": "the dog's shadow is in the grass", "question": ["is there the dog's shadow ?", "is there the grass ?"], "prompt": "the {}'s shadow is in the grass"}, {"index": 992, "image_id": 2336402, "entity": "dog", "caption": "dog with it's head in a box", "question": ["is there dog ?", "is there head ?", "is there a box ?"], "prompt": "{} with it's head in a box"}, {"index": 993, "image_id": 2336402, "entity": "dog", "caption": "A black streak down dogs back", "question": ["is there a black streak ?"], "prompt": "A black streak down {}s back"}, {"index": 994, "image_id": 2336402, "entity": "dog", "caption": "the dogs head is in the box", "question": ["are there the dogs ?", "is there the box ?"], "prompt": "the {}s head is in the box"}, {"index": 995, "image_id": 2336257, "entity": "dog", "caption": "the dog is in water", "question": ["is there the dog ?", "is there water ?"], "prompt": "the {} is in water"}, {"index": 996, "image_id": 2336147, "entity": "dog", "caption": "Black and white dog standing on a sandy ground.", "question": ["is there black and white dog ?", "is there a sandy ground ?"], "prompt": "Black and white {} standing on a sandy ground."}, {"index": 997, "image_id": 2336147, "entity": "dog", "caption": "The dog's pink tongue sticking out.", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue sticking out."}, {"index": 998, "image_id": 2336147, "entity": "dog", "caption": "dog's face is black and white", "question": ["is there dog's face ?"], "prompt": "{}'s face is black and white"}, {"index": 999, "image_id": 2336147, "entity": "dog", "caption": "dog's tongue is sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is sticking out"}, {"index": 1000, "image_id": 2336147, "entity": "dog", "caption": "dog's paw is white", "question": ["is there dog's paw ?"], "prompt": "{}'s paw is white"}, {"index": 1001, "image_id": 2336045, "entity": "dog", "caption": "fake dog sits on bench", "question": ["is there fake dog ?", "is there bench ?"], "prompt": "fake {} sits on bench"}, {"index": 1002, "image_id": 2336045, "entity": "dog", "caption": "fake dog wears red collar", "question": ["is there fake dog ?", "is there red collar ?"], "prompt": "fake {} wears red collar"}, {"index": 1003, "image_id": 2335892, "entity": "dog", "caption": "Toy occupies leashed dog.", "question": ["is there toy ?", "is there leashed dog ?"], "prompt": "Toy occupies leashed {}."}, {"index": 1004, "image_id": 2335707, "entity": "dog", "caption": "dog has dark claws", "question": ["is there dog ?", "are there dark claws ?"], "prompt": "{} has dark claws"}, {"index": 1005, "image_id": 2335655, "entity": "dog", "caption": "Tan dog is holding toy in mouth.", "question": ["is there tan dog ?", "is there toy ?", "is there mouth ?"], "prompt": "Tan {} is holding toy in mouth."}, {"index": 1006, "image_id": 2335655, "entity": "dog", "caption": "This dog seems to have a white face", "question": ["is there this dog ?", "is there a white face ?"], "prompt": "This {} seems to have a white face"}, {"index": 1007, "image_id": 2335655, "entity": "dog", "caption": "This dog has quite a paw visible here", "question": ["is there this dog ?", "is there quite a paw ?"], "prompt": "This {} has quite a paw visible here"}, {"index": 1008, "image_id": 2335550, "entity": "dog", "caption": "dog is laying on the couch", "question": ["is there dog ?", "is there the couch ?"], "prompt": "{} is laying on the couch"}, {"index": 1009, "image_id": 2335550, "entity": "dog", "caption": "dog has fluffy dark fur", "question": ["is there dog ?", "is there fluffy dark fur ?"], "prompt": "{} has fluffy dark fur"}, {"index": 1010, "image_id": 2335487, "entity": "dog", "caption": "an ear is up on the dog", "question": ["is there an ear ?", "is there the dog ?"], "prompt": "an ear is up on the {}"}, {"index": 1011, "image_id": 2335487, "entity": "dog", "caption": "the dog is wearing a yellow coat", "question": ["is there the dog ?", "is there a yellow coat ?"], "prompt": "the {} is wearing a yellow coat"}, {"index": 1012, "image_id": 2335487, "entity": "dog", "caption": "dog's cloth is green", "question": ["is there dog's cloth ?"], "prompt": "{}'s cloth is green"}, {"index": 1013, "image_id": 2334964, "entity": "dog", "caption": "Chain connected to dog's collar.", "question": ["is there chain ?", "is there dog's collar ?"], "prompt": "Chain connected to {}'s collar."}, {"index": 1014, "image_id": 2334964, "entity": "dog", "caption": "the dog has a collar ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar "}, {"index": 1015, "image_id": 2334964, "entity": "dog", "caption": "the collar is around the dog's neck", "question": ["is there the collar ?", "is there the dog's neck ?"], "prompt": "the collar is around the {}'s neck"}, {"index": 1016, "image_id": 2334936, "entity": "dog", "caption": "dog has an eye", "question": ["is there dog ?", "is there an eye ?"], "prompt": "{} has an eye"}, {"index": 1017, "image_id": 2334611, "entity": "dog", "caption": "front left foot on dog", "question": ["is there front left foot ?", "is there dog ?"], "prompt": "front left foot on {}"}, {"index": 1018, "image_id": 2334526, "entity": "dog", "caption": "The dog nose is black.", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black."}, {"index": 1019, "image_id": 2334526, "entity": "dog", "caption": "The dog eyes on his face.", "question": ["is there the dog ?", "is there his face ?"], "prompt": "The {} eyes on his face."}, {"index": 1020, "image_id": 2334482, "entity": "dog", "caption": "This is a dog", "question": ["is there a dog ?"], "prompt": "This is a {}"}, {"index": 1021, "image_id": 2334482, "entity": "dog", "caption": "The dog is on a bench", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is on a bench"}, {"index": 1022, "image_id": 2334375, "entity": "dog", "caption": "dog nose is black", "question": ["is there dog nose ?"], "prompt": "{} nose is black"}, {"index": 1023, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is black.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is black."}, {"index": 1024, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is round.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is round."}, {"index": 1025, "image_id": 2334355, "entity": "dog", "caption": "The dogs left ear is black.", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "The {}s left ear is black."}, {"index": 1026, "image_id": 2334355, "entity": "dog", "caption": "The dogs right eye is black.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is black."}, {"index": 1027, "image_id": 2333902, "entity": "dog", "caption": "The dog is laying on the back of the couch", "question": ["is there the dog ?", "is there the back ?", "is there the couch ?"], "prompt": "The {} is laying on the back of the couch"}, {"index": 1028, "image_id": 2333902, "entity": "dog", "caption": "The dogs tongue is sticking out of his mouth", "question": ["are there the dogs tongue ?", "is there his mouth ?"], "prompt": "The {}s tongue is sticking out of his mouth"}, {"index": 1029, "image_id": 2333902, "entity": "dog", "caption": "dog has a nose", "question": ["is there dog ?", "is there a nose ?"], "prompt": "{} has a nose"}, {"index": 1030, "image_id": 2333902, "entity": "dog", "caption": "dog has an ear", "question": ["is there dog ?", "is there an ear ?"], "prompt": "{} has an ear"}, {"index": 1031, "image_id": 2333902, "entity": "dog", "caption": "dog has a tounge", "question": ["is there dog ?", "is there a tounge ?"], "prompt": "{} has a tounge"}, {"index": 1032, "image_id": 2333902, "entity": "dog", "caption": "dog has an arm", "question": ["is there dog ?", "is there an arm ?"], "prompt": "{} has an arm"}, {"index": 1033, "image_id": 2333590, "entity": "dog", "caption": "the dog is smelling her hand", "question": ["is there the dog ?", "is there her hand ?"], "prompt": "the {} is smelling her hand"}, {"index": 1034, "image_id": 2333443, "entity": "dog", "caption": "wet dog taking a bath in a tub", "question": ["is there wet dog ?", "is there a bath ?", "is there a tub ?"], "prompt": "wet {} taking a bath in a tub"}, {"index": 1035, "image_id": 2333438, "entity": "dog", "caption": "The dog has a brown eye.", "question": ["is there the dog ?", "is there a brown eye ?"], "prompt": "The {} has a brown eye."}, {"index": 1036, "image_id": 2333438, "entity": "dog", "caption": "The dogs eye is open.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is open."}, {"index": 1037, "image_id": 2333438, "entity": "dog", "caption": "The dog has teeth.", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "The {} has teeth."}, {"index": 1038, "image_id": 2333438, "entity": "dog", "caption": "The dog has a tongue.", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "The {} has a tongue."}, {"index": 1039, "image_id": 2333438, "entity": "dog", "caption": "The dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "The {} has a red collar"}, {"index": 1040, "image_id": 2333438, "entity": "dog", "caption": "dog with its ears bag", "question": ["is there dog ?", "are there its ears ?"], "prompt": "{} with its ears bag"}, {"index": 1041, "image_id": 2333438, "entity": "dog", "caption": "dog mouth open", "question": [], "prompt": "{} mouth open"}, {"index": 1042, "image_id": 2333438, "entity": "dog", "caption": "dog has black and white paws", "question": ["is there dog ?", "are there black and white paws ?"], "prompt": "{} has black and white paws"}, {"index": 1043, "image_id": 2333438, "entity": "dog", "caption": "dog's mouth is open with tounge out", "question": ["is there dog's mouth ?", "is there tounge ?"], "prompt": "{}'s mouth is open with tounge out"}, {"index": 1044, "image_id": 2333301, "entity": "dog", "caption": "the dog has its mouth open.", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open."}, {"index": 1045, "image_id": 2333301, "entity": "dog", "caption": "the dog's ear is standing straight up.", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is standing straight up."}, {"index": 1046, "image_id": 2333301, "entity": "dog", "caption": "the dog's left back leg.", "question": ["is there the dog ?", "is there leg ?"], "prompt": "the {}'s left back leg."}, {"index": 1047, "image_id": 2333301, "entity": "dog", "caption": "dog mouth wide open ", "question": [], "prompt": "{} mouth wide open "}, {"index": 1048, "image_id": 2333301, "entity": "dog", "caption": "dog's tongue is pink.", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink."}, {"index": 1049, "image_id": 2332835, "entity": "dog", "caption": "The dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is pink."}, {"index": 1050, "image_id": 2332835, "entity": "dog", "caption": "The dogs right eye is round.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is round."}, {"index": 1051, "image_id": 2332607, "entity": "dog", "caption": "dog's eyes looking at camera", "question": ["are there dog's eyes ?", "is there camera ?"], "prompt": "{}'s eyes looking at camera"}, {"index": 1052, "image_id": 2332583, "entity": "dog", "caption": "dog has brown tail", "question": ["is there dog ?", "is there brown tail ?"], "prompt": "{} has brown tail"}, {"index": 1053, "image_id": 2332583, "entity": "dog", "caption": "dog has brown back", "question": ["is there dog ?"], "prompt": "{} has brown back"}, {"index": 1054, "image_id": 2332513, "entity": "dog", "caption": "two dogs are lying ", "question": ["are there two dogs ?"], "prompt": "two {}s are lying "}, {"index": 1055, "image_id": 2332513, "entity": "dog", "caption": "this dog's head is up ", "question": ["is there this dog's head ?"], "prompt": "this {}'s head is up "}, {"index": 1056, "image_id": 2332418, "entity": "dog", "caption": "dog has white ears", "question": ["is there dog ?", "are there white ears ?"], "prompt": "{} has white ears"}, {"index": 1057, "image_id": 2331647, "entity": "dog", "caption": "The hat the dog is wearing.", "question": ["is there the hat ?", "is there the dog ?"], "prompt": "The hat the {} is wearing."}, {"index": 1058, "image_id": 2331519, "entity": "dog", "caption": "The dog tongue is pink.", "question": ["is there the dog tongue ?"], "prompt": "The {} tongue is pink."}, {"index": 1059, "image_id": 2331519, "entity": "dog", "caption": "The dog is licking his tongue out.", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "The {} is licking his tongue out."}, {"index": 1060, "image_id": 2331519, "entity": "dog", "caption": "The frisbee is near the dog leg.", "question": ["is there the dog leg ?"], "prompt": "The frisbee is near the {} leg."}, {"index": 1061, "image_id": 2331519, "entity": "dog", "caption": "The dog is playing with the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee"}, {"index": 1062, "image_id": 2331519, "entity": "dog", "caption": "The Frisbee is in front of the dog. ", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The Frisbee is in front of the {}. "}, {"index": 1063, "image_id": 2331395, "entity": "dog", "caption": "The front left paw of the dog.", "question": ["is there the front left paw ?", "is there the dog ?"], "prompt": "The front left paw of the {}."}, {"index": 1064, "image_id": 2330828, "entity": "dog", "caption": "dog has long nose", "question": ["is there dog ?", "is there long nose ?"], "prompt": "{} has long nose"}, {"index": 1065, "image_id": 2330828, "entity": "dog", "caption": "dog has nice coat", "question": ["is there dog ?", "is there nice coat ?"], "prompt": "{} has nice coat"}, {"index": 1066, "image_id": 2330828, "entity": "dog", "caption": "dog has big ear", "question": ["is there dog ?", "is there big ear ?"], "prompt": "{} has big ear"}, {"index": 1067, "image_id": 2329335, "entity": "dog", "caption": "dog has brown paws", "question": ["is there dog ?", "are there brown paws ?"], "prompt": "{} has brown paws"}, {"index": 1068, "image_id": 2329309, "entity": "dog", "caption": "brown white and black dog catching yellow Frisbee", "question": ["is there brown white and black dog ?", "is there yellow frisbee ?"], "prompt": "brown white and black {} catching yellow Frisbee"}, {"index": 1069, "image_id": 2329309, "entity": "dog", "caption": "Frisbee caught by black and brown dog", "question": ["is there black and brown dog ?"], "prompt": "Frisbee caught by black and brown {}"}, {"index": 1070, "image_id": 2329275, "entity": "dog", "caption": "the dog is lying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is lying on the couch"}, {"index": 1071, "image_id": 2329129, "entity": "dog", "caption": "the dog is eating a cake", "question": ["is there the dog ?", "is there a cake ?"], "prompt": "the {} is eating a cake"}, {"index": 1072, "image_id": 2328916, "entity": "dog", "caption": "The dog is sniffing the donut", "question": ["is there the dog ?", "is there the donut ?"], "prompt": "The {} is sniffing the donut"}, {"index": 1073, "image_id": 2328916, "entity": "dog", "caption": "bulldog sniffing a doughnut ", "question": ["is there a doughnut ?"], "prompt": "bull{} sniffing a doughnut "}, {"index": 1074, "image_id": 2328869, "entity": "dog", "caption": "black hat dog is wearing", "question": ["is there black hat dog ?"], "prompt": "black hat {} is wearing"}, {"index": 1075, "image_id": 2328633, "entity": "dog", "caption": "a dog with black spots on it's ear", "question": ["is there a dog ?", "are there black spots ?", "is there ear ?"], "prompt": "a {} with black spots on it's ear"}, {"index": 1076, "image_id": 2327968, "entity": "dog", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car "}, {"index": 1077, "image_id": 2327968, "entity": "dog", "caption": "the dog is sticking its head out ", "question": ["is there the dog ?", "is there its head ?"], "prompt": "the {} is sticking its head out "}, {"index": 1078, "image_id": 2327968, "entity": "dog", "caption": "the dog has its head out the window ", "question": ["is there the dog ?", "is there its head ?", "is there the window ?"], "prompt": "the {} has its head out the window "}, {"index": 1079, "image_id": 2327286, "entity": "dog", "caption": "the dogs eyes are closed", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are closed"}, {"index": 1080, "image_id": 2326860, "entity": "dog", "caption": "The dog has a frisbee inside his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee inside his mouth."}, {"index": 1081, "image_id": 2326801, "entity": "dog", "caption": "A blue duffel bag a dog is on.", "question": ["is there a blue duffel bag ?", "is there a dog ?"], "prompt": "A blue duffel bag a {} is on."}, {"index": 1082, "image_id": 2325767, "entity": "dog", "caption": "A person is holding the dog", "question": ["is there a person ?", "is there the dog ?"], "prompt": "A person is holding the {}"}, {"index": 1083, "image_id": 2325561, "entity": "dog", "caption": "The dog's mouth is open", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open"}, {"index": 1084, "image_id": 2325561, "entity": "dog", "caption": "The dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black"}, {"index": 1085, "image_id": 2325561, "entity": "dog", "caption": "The dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 1086, "image_id": 2325561, "entity": "dog", "caption": "dog has a black nose ", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose "}, {"index": 1087, "image_id": 2325561, "entity": "dog", "caption": "the dog has brown eye", "question": ["is there the dog ?", "is there brown eye ?"], "prompt": "the {} has brown eye"}, {"index": 1088, "image_id": 2325561, "entity": "dog", "caption": "the dogs left eye ", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye "}, {"index": 1089, "image_id": 2325561, "entity": "dog", "caption": "the dogs left ear ", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "the {}s left ear "}, {"index": 1090, "image_id": 2325561, "entity": "dog", "caption": "dog has orange eyes", "question": ["is there dog ?", "are there orange eyes ?"], "prompt": "{} has orange eyes"}, {"index": 1091, "image_id": 2325561, "entity": "dog", "caption": "brown dog has golden eyes", "question": ["is there brown dog ?", "are there golden eyes ?"], "prompt": "brown {} has golden eyes"}, {"index": 1092, "image_id": 2325561, "entity": "dog", "caption": "black dog has brown eyes", "question": ["is there black dog ?", "are there brown eyes ?"], "prompt": "black {} has brown eyes"}, {"index": 1093, "image_id": 2325561, "entity": "dog", "caption": "black dog has a black nose", "question": ["is there black dog ?", "is there a black nose ?"], "prompt": "black {} has a black nose"}, {"index": 1094, "image_id": 2325561, "entity": "dog", "caption": "black dog has some white hair in its ruff", "question": ["is there black dog ?", "is there some white hair ?", "is there its ruff ?"], "prompt": "black {} has some white hair in its ruff"}, {"index": 1095, "image_id": 2325500, "entity": "dog", "caption": "eyes of dog open wide", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} open wide"}, {"index": 1096, "image_id": 2325500, "entity": "dog", "caption": "the dog has a safety vest", "question": ["is there the dog ?", "is there a safety vest ?"], "prompt": "the {} has a safety vest"}, {"index": 1097, "image_id": 2325442, "entity": "dog", "caption": "dog's ears are pink", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are pink"}, {"index": 1098, "image_id": 2325387, "entity": "dog", "caption": "Woman laying on the floor next to dog.", "question": ["is there woman ?", "is there the floor ?", "is there dog ?"], "prompt": "Woman laying on the floor next to {}."}, {"index": 1099, "image_id": 2324981, "entity": "dog", "caption": "The dog has black patch over eye.", "question": ["is there the dog ?", "is there black patch ?", "is there eye ?"], "prompt": "The {} has black patch over eye."}, {"index": 1100, "image_id": 2324981, "entity": "dog", "caption": "The dog is carrying a blue frisbee.", "question": ["is there the dog ?", "is there a blue frisbee ?"], "prompt": "The {} is carrying a blue frisbee."}, {"index": 1101, "image_id": 2324981, "entity": "dog", "caption": "The dog has a nose.", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "The {} has a nose."}, {"index": 1102, "image_id": 2323880, "entity": "dog", "caption": "dog is in picture", "question": ["is there dog ?", "is there picture ?"], "prompt": "{} is in picture"}, {"index": 1103, "image_id": 2323470, "entity": "dog", "caption": "the dog is laying in a green towel", "question": ["is there the dog ?", "is there a green towel ?"], "prompt": "the {} is laying in a green towel"}, {"index": 1104, "image_id": 2322848, "entity": "dog", "caption": "the cat and the dog are good friends", "question": ["is there the cat ?", "is there the dog ?", "are there good friends ?"], "prompt": "the cat and the {} are good friends"}, {"index": 1105, "image_id": 2322848, "entity": "dog", "caption": "this cat and this dog are obviously best friends", "question": ["is there this cat ?", "is there this dog ?", "are there best friends ?"], "prompt": "this cat and this {} are obviously best friends"}, {"index": 1106, "image_id": 2322792, "entity": "dog", "caption": "extended wet dog ear ", "question": ["is there extended wet dog ear ?"], "prompt": "extended wet {} ear "}, {"index": 1107, "image_id": 2322792, "entity": "dog", "caption": "dog ear flipping up", "question": ["is there dog ear ?"], "prompt": "{} ear flipping up"}, {"index": 1108, "image_id": 2322492, "entity": "dog", "caption": "Pile of clothes a small dog is lying on", "question": ["is there pile ?", "are there clothes ?", "is there a small dog ?"], "prompt": "Pile of clothes a small {} is lying on"}, {"index": 1109, "image_id": 2322220, "entity": "dog", "caption": "a dog is lying in the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "a {} is lying in the bed"}, {"index": 1110, "image_id": 2322220, "entity": "dog", "caption": "the dog is under the sheet", "question": ["is there the dog ?", "is there the sheet ?"], "prompt": "the {} is under the sheet"}, {"index": 1111, "image_id": 2322220, "entity": "dog", "caption": "the dogs ears are brown", "question": ["are there the dogs ears ?"], "prompt": "the {}s ears are brown"}, {"index": 1112, "image_id": 2322220, "entity": "dog", "caption": "the dogs front legs are white", "question": ["are there the dogs ?", "are there front legs ?"], "prompt": "the {}s front legs are white"}, {"index": 1113, "image_id": 2322086, "entity": "dog", "caption": "the dog has white spots", "question": ["is there the dog ?", "are there white spots ?"], "prompt": "the {} has white spots"}, {"index": 1114, "image_id": 2321901, "entity": "dog", "caption": "the dog is laying on a pillow ", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "the {} is laying on a pillow "}, {"index": 1115, "image_id": 2321544, "entity": "dog", "caption": "A silver chain is around the dog's neck.", "question": ["is there a silver chain ?", "is there the dog's neck ?"], "prompt": "A silver chain is around the {}'s neck."}, {"index": 1116, "image_id": 2321544, "entity": "dog", "caption": "The dog's left ear is black and brown. ", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear is black and brown. "}, {"index": 1117, "image_id": 2321544, "entity": "dog", "caption": "The dog's right ear is black and brown. ", "question": ["is there the dog's right ear ?"], "prompt": "The {}'s right ear is black and brown. "}, {"index": 1118, "image_id": 2321386, "entity": "dog", "caption": "the dog has a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} has a chain"}, {"index": 1119, "image_id": 2320693, "entity": "dog", "caption": "the dog has a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} has a frisbee"}, {"index": 1120, "image_id": 2320693, "entity": "dog", "caption": "the dog has the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "the {} has the frisbee"}, {"index": 1121, "image_id": 2320693, "entity": "dog", "caption": "teh dog has brown eyes", "question": ["are there brown eyes ?"], "prompt": "teh {} has brown eyes"}, {"index": 1122, "image_id": 2320693, "entity": "dog", "caption": "dog has frisbee in his mouth", "question": ["is there dog ?", "is there frisbee ?", "is there his mouth ?"], "prompt": "{} has frisbee in his mouth"}, {"index": 1123, "image_id": 2320693, "entity": "dog", "caption": "dog in mouth is pink", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} in mouth is pink"}, {"index": 1124, "image_id": 2319884, "entity": "dog", "caption": "dog is eating a vitamin water", "question": ["is there dog ?", "is there a vitamin water ?"], "prompt": "{} is eating a vitamin water"}, {"index": 1125, "image_id": 2319723, "entity": "dog", "caption": "the dog is kissing the cat", "question": ["is there the dog ?", "is there the cat ?"], "prompt": "the {} is kissing the cat"}, {"index": 1126, "image_id": 2319347, "entity": "dog", "caption": "The dog is wearing a shirt", "question": ["is there the dog ?", "is there a shirt ?"], "prompt": "The {} is wearing a shirt"}, {"index": 1127, "image_id": 2319347, "entity": "dog", "caption": "The dog has on a nice shirt", "question": ["is there the dog ?", "is there a nice shirt ?"], "prompt": "The {} has on a nice shirt"}, {"index": 1128, "image_id": 2319347, "entity": "dog", "caption": "The dog has very long hair", "question": ["is there the dog ?", "is there very long hair ?"], "prompt": "The {} has very long hair"}, {"index": 1129, "image_id": 2319347, "entity": "dog", "caption": "The dog is having a great time", "question": ["is there the dog ?", "is there a great time ?"], "prompt": "The {} is having a great time"}, {"index": 1130, "image_id": 2319347, "entity": "dog", "caption": "The dog is out in the daytime", "question": ["is there the dog ?", "is there the daytime ?"], "prompt": "The {} is out in the daytime"}, {"index": 1131, "image_id": 2319347, "entity": "dog", "caption": "The dog is enjoying the day", "question": ["is there the dog ?", "is there the day ?"], "prompt": "The {} is enjoying the day"}, {"index": 1132, "image_id": 2318934, "entity": "dog", "caption": "A dog is wearing a shirt", "question": ["is there a dog ?", "is there a shirt ?"], "prompt": "A {} is wearing a shirt"}, {"index": 1133, "image_id": 2318934, "entity": "dog", "caption": "A dog has on a visor", "question": ["is there a dog ?", "is there a visor ?"], "prompt": "A {} has on a visor"}, {"index": 1134, "image_id": 2318934, "entity": "dog", "caption": "A dog has white curly hair", "question": ["is there a dog ?", "is there white curly hair ?"], "prompt": "A {} has white curly hair"}, {"index": 1135, "image_id": 2318934, "entity": "dog", "caption": "A dog is sticking its tongue out", "question": ["is there a dog ?", "is there its tongue ?"], "prompt": "A {} is sticking its tongue out"}, {"index": 1136, "image_id": 2318934, "entity": "dog", "caption": "A dog is with its master", "question": ["is there a dog ?", "is there its master ?"], "prompt": "A {} is with its master"}, {"index": 1137, "image_id": 2318892, "entity": "dog", "caption": "The dog has black fur", "question": ["is there the dog ?", "is there black fur ?"], "prompt": "The {} has black fur"}, {"index": 1138, "image_id": 2318849, "entity": "dog", "caption": "brown dog curled up with head on blanket", "question": ["is there brown dog ?", "is there head ?", "is there blanket ?"], "prompt": "brown {} curled up with head on blanket"}, {"index": 1139, "image_id": 2318849, "entity": "dog", "caption": "brown dog cuddled with toy with paw on bunny", "question": ["is there brown dog ?", "is there toy ?", "is there paw ?", "is there bunny ?"], "prompt": "brown {} cuddled with toy with paw on bunny"}, {"index": 1140, "image_id": 2318849, "entity": "dog", "caption": "a dog is in bed", "question": ["is there a dog ?", "is there bed ?"], "prompt": "a {} is in bed"}, {"index": 1141, "image_id": 2318849, "entity": "dog", "caption": "the dog is holding a doll", "question": ["is there the dog ?", "is there a doll ?"], "prompt": "the {} is holding a doll"}, {"index": 1142, "image_id": 2318849, "entity": "dog", "caption": "another doll lies close to the dog", "question": ["is there another doll ?", "is there the dog ?"], "prompt": "another doll lies close to the {}"}, {"index": 1143, "image_id": 2318849, "entity": "dog", "caption": "dog eyes are open", "question": ["are there dog eyes ?"], "prompt": "{} eyes are open"}, {"index": 1144, "image_id": 2318849, "entity": "dog", "caption": "the dog's paw is on the toy", "question": ["is there the dog's paw ?", "is there the toy ?"], "prompt": "the {}'s paw is on the toy"}, {"index": 1145, "image_id": 2318849, "entity": "dog", "caption": "dog holding white stuffed bunny", "question": ["is there white stuffed bunny ?"], "prompt": "{} holding white stuffed bunny"}, {"index": 1146, "image_id": 2318152, "entity": "dog", "caption": "Mulch dog is standing on", "question": ["is there mulch dog ?"], "prompt": "Mulch {} is standing on"}, {"index": 1147, "image_id": 2318115, "entity": "dog", "caption": "Brown leash on a dog", "question": ["is there brown leash ?", "is there a dog ?"], "prompt": "Brown leash on a {}"}, {"index": 1148, "image_id": 2318115, "entity": "dog", "caption": "A person on a skateboard walking their dog", "question": ["is there a person ?", "is there a skateboard ?", "is there their dog ?"], "prompt": "A person on a skateboard walking their {}"}, {"index": 1149, "image_id": 2318115, "entity": "dog", "caption": "person walking the dog", "question": ["is there person ?", "is there the dog ?"], "prompt": "person walking the {}"}, {"index": 1150, "image_id": 2317836, "entity": "dog", "caption": "the dog is in costume", "question": ["is there the dog ?", "is there costume ?"], "prompt": "the {} is in costume"}, {"index": 1151, "image_id": 2317283, "entity": "dog", "caption": "dog paws are tan", "question": ["are there dog paws ?", "is there tan ?"], "prompt": "{} paws are tan"}, {"index": 1152, "image_id": 2317283, "entity": "dog", "caption": "dog has mouth open", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} has mouth open"}, {"index": 1153, "image_id": 2317283, "entity": "dog", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} is in a car."}, {"index": 1154, "image_id": 2317283, "entity": "dog", "caption": "The dog's eyes are open.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open."}, {"index": 1155, "image_id": 2317002, "entity": "dog", "caption": "black whiskers are on the dog", "question": ["are there black whiskers ?", "is there the dog ?"], "prompt": "black whiskers are on the {}"}, {"index": 1156, "image_id": 2317002, "entity": "dog", "caption": "brown nails are on the dog", "question": ["are there brown nails ?", "is there the dog ?"], "prompt": "brown nails are on the {}"}, {"index": 1157, "image_id": 2316886, "entity": "dog", "caption": "the dog appears to be enjoying his snack", "question": ["is there the dog ?", "is there his snack ?"], "prompt": "the {} appears to be enjoying his snack"}, {"index": 1158, "image_id": 2316480, "entity": "dog", "caption": "nose of dog is black ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black "}, {"index": 1159, "image_id": 2316480, "entity": "dog", "caption": "dog sits on couch", "question": ["is there dog ?", "is there couch ?"], "prompt": "{} sits on couch"}, {"index": 1160, "image_id": 2316480, "entity": "dog", "caption": "dog has pink dress", "question": ["is there dog ?", "is there pink dress ?"], "prompt": "{} has pink dress"}, {"index": 1161, "image_id": 2316349, "entity": "dog", "caption": "dog ear on right", "question": ["is there dog ear ?"], "prompt": "{} ear on right"}, {"index": 1162, "image_id": 2316242, "entity": "dog", "caption": "a dog rests on a person", "question": ["is there a dog ?", "is there a person ?"], "prompt": "a {} rests on a person"}, {"index": 1163, "image_id": 2316242, "entity": "dog", "caption": "The dog is wearing a hat.", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} is wearing a hat."}, {"index": 1164, "image_id": 2316242, "entity": "dog", "caption": "The hat is on the dog's head.", "question": ["is there the hat ?", "is there the dog's head ?"], "prompt": "The hat is on the {}'s head."}, {"index": 1165, "image_id": 2316242, "entity": "dog", "caption": "The dog has whiskers.", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "The {} has whiskers."}, {"index": 1166, "image_id": 2316170, "entity": "dog", "caption": "small dog with eyes closed", "question": ["is there small dog ?", "are there eyes ?"], "prompt": "small {} with eyes closed"}, {"index": 1167, "image_id": 2315589, "entity": "dog", "caption": "The dogs nose is black in color. ", "question": ["are there the dogs nose ?", "is there color ?"], "prompt": "The {}s nose is black in color. "}, {"index": 1168, "image_id": 2315589, "entity": "dog", "caption": "The dog has a black nose. ", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose. "}, {"index": 1169, "image_id": 2315589, "entity": "dog", "caption": "The dogs eye is brown.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is brown."}, {"index": 1170, "image_id": 2315589, "entity": "dog", "caption": "The dogs ear is black. ", "question": ["are there the dogs ?"], "prompt": "The {}s ear is black. "}, {"index": 1171, "image_id": 2315468, "entity": "dog", "caption": "dog has a leg", "question": ["is there dog ?", "is there a leg ?"], "prompt": "{} has a leg"}, {"index": 1172, "image_id": 2315468, "entity": "dog", "caption": "the dog carries a green frisbee", "question": ["is there the dog ?", "is there a green frisbee ?"], "prompt": "the {} carries a green frisbee"}, {"index": 1173, "image_id": 2315468, "entity": "dog", "caption": "the dog's collar is green", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is green"}, {"index": 1174, "image_id": 2315447, "entity": "dog", "caption": "A dogs left black eye. ", "question": ["are there a dogs ?", "is there black eye ?"], "prompt": "A {}s left black eye. "}, {"index": 1175, "image_id": 2315441, "entity": "dog", "caption": "The 2 dogs lay on the bed together", "question": ["are there the 2 dogs ?", "is there the bed ?"], "prompt": "The 2 {}s lay on the bed together"}, {"index": 1176, "image_id": 2315441, "entity": "dog", "caption": "The dog is laying on the other dog", "question": ["is there the dog ?", "is there the other dog ?"], "prompt": "The {} is laying on the other {}"}, {"index": 1177, "image_id": 2315441, "entity": "dog", "caption": "The dogs are on the comfortable looking bed", "question": ["are there the dogs ?", "is there the comfortable looking bed ?"], "prompt": "The {}s are on the comfortable looking bed"}, {"index": 1178, "image_id": 2315441, "entity": "dog", "caption": "The dog has a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} has a blue collar"}, {"index": 1179, "image_id": 2315441, "entity": "dog", "caption": "Brown dogs left eye.", "question": ["are there brown dogs ?", "is there eye ?"], "prompt": "Brown {}s left eye."}, {"index": 1180, "image_id": 2414390, "entity": "dog", "caption": "the dog is playing with a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is playing with a frisbee"}, {"index": 1181, "image_id": 2414390, "entity": "dog", "caption": "the dog has brown ears", "question": ["is there the dog ?", "are there brown ears ?"], "prompt": "the {} has brown ears"}, {"index": 1182, "image_id": 2414304, "entity": "dog", "caption": "A dog is in the picture.", "question": ["is there a dog ?", "is there the picture ?"], "prompt": "A {} is in the picture."}, {"index": 1183, "image_id": 2414304, "entity": "dog", "caption": "The dog has on a black collar.", "question": ["is there the dog ?", "is there a black collar ?"], "prompt": "The {} has on a black collar."}, {"index": 1184, "image_id": 2414304, "entity": "dog", "caption": "The dog is standing in the sand.", "question": ["is there the dog ?", "is there the sand ?"], "prompt": "The {} is standing in the sand."}, {"index": 1185, "image_id": 2414304, "entity": "dog", "caption": "The dog is staring at his master.", "question": ["is there the dog ?", "is there his master ?"], "prompt": "The {} is staring at his master."}, {"index": 1186, "image_id": 2412940, "entity": "dog", "caption": "Sun light over the body of dogs", "question": ["is there sun light ?", "is there the body ?", "are there dogs ?"], "prompt": "Sun light over the body of {}s"}, {"index": 1187, "image_id": 2412940, "entity": "dog", "caption": "the dogs eyes are wide apart", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are wide apart"}, {"index": 1188, "image_id": 2412718, "entity": "dog", "caption": "the dog is resting on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is resting on a blanket"}, {"index": 1189, "image_id": 2412718, "entity": "dog", "caption": "the dog has his ears bent", "question": ["is there the dog ?", "are there his ears ?"], "prompt": "the {} has his ears bent"}, {"index": 1190, "image_id": 2412718, "entity": "dog", "caption": "the dog has pretty blue eyes", "question": ["is there the dog ?", "are there pretty blue eyes ?"], "prompt": "the {} has pretty blue eyes"}, {"index": 1191, "image_id": 2412718, "entity": "dog", "caption": "the dog has brown feet", "question": ["is there the dog ?", "are there brown feet ?"], "prompt": "the {} has brown feet"}, {"index": 1192, "image_id": 2412718, "entity": "dog", "caption": "The dog is sitting on blankets", "question": ["is there the dog ?", "are there blankets ?"], "prompt": "The {} is sitting on blankets"}, {"index": 1193, "image_id": 2412718, "entity": "dog", "caption": "The dog has 2 ears", "question": ["is there the dog ?", "are there 2 ears ?"], "prompt": "The {} has 2 ears"}, {"index": 1194, "image_id": 2412718, "entity": "dog", "caption": "The dog has a tail", "question": ["is there the dog ?", "is there a tail ?"], "prompt": "The {} has a tail"}, {"index": 1195, "image_id": 2412718, "entity": "dog", "caption": "The dog's eyes are blue", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are blue"}, {"index": 1196, "image_id": 2412718, "entity": "dog", "caption": "The dog has 4 paws", "question": ["is there the dog ?", "are there 4 paws ?"], "prompt": "The {} has 4 paws"}, {"index": 1197, "image_id": 2412430, "entity": "dog", "caption": "A dog is laying down on a couch.", "question": ["is there a dog ?", "is there a couch ?"], "prompt": "A {} is laying down on a couch."}, {"index": 1198, "image_id": 2412430, "entity": "dog", "caption": "The dog's nose is black in color.", "question": ["is there the dog's nose ?", "is there color ?"], "prompt": "The {}'s nose is black in color."}, {"index": 1199, "image_id": 2412382, "entity": "dog", "caption": "the dogs are on the seat", "question": ["are there the dogs ?", "is there the seat ?"], "prompt": "the {}s are on the seat"}, {"index": 1200, "image_id": 2412382, "entity": "dog", "caption": "the dogs eyes are black", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are black"}, {"index": 1201, "image_id": 2412215, "entity": "dog", "caption": "The white sheet the dog's paw and mouth is resting on.", "question": ["is there the dog's paw ?", "is there mouth ?"], "prompt": "The white sheet the {}'s paw and mouth is resting on."}, {"index": 1202, "image_id": 2412215, "entity": "dog", "caption": "The black dog's head resting on the bed.", "question": ["is there the black dog's head ?", "is there the bed ?"], "prompt": "The black {}'s head resting on the bed."}, {"index": 1203, "image_id": 2411734, "entity": "dog", "caption": "A dog with a white nose looks at a birthday cupcake", "question": ["is there a dog ?", "is there a white nose ?", "is there a birthday cupcake ?"], "prompt": "A {} with a white nose looks at a birthday cupcake"}, {"index": 1204, "image_id": 2411533, "entity": "dog", "caption": "White mouse and cat sitting on dog.", "question": ["is there cat ?", "is there dog ?"], "prompt": "White mouse and cat sitting on {}."}, {"index": 1205, "image_id": 2411533, "entity": "dog", "caption": "cat is on a dogs back", "question": ["is there cat ?", "are there a dogs ?"], "prompt": "cat is on a {}s back"}, {"index": 1206, "image_id": 2411533, "entity": "dog", "caption": "dog is walking on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} is walking on sidewalk"}, {"index": 1207, "image_id": 2411533, "entity": "dog", "caption": "dog is wearing a brown vest", "question": ["is there dog ?", "is there a brown vest ?"], "prompt": "{} is wearing a brown vest"}, {"index": 1208, "image_id": 2411533, "entity": "dog", "caption": "a cat is on the dog's back", "question": ["is there a cat ?", "is there the dog ?"], "prompt": "a cat is on the {}'s back"}, {"index": 1209, "image_id": 2411533, "entity": "dog", "caption": "a cat and a mouse are both on a dog", "question": ["is there a cat ?", "is there a mouse ?", "is there a dog ?"], "prompt": "a cat and a mouse are both on a {}"}, {"index": 1210, "image_id": 2411533, "entity": "dog", "caption": "the dog is wearing a vest", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "the {} is wearing a vest"}, {"index": 1211, "image_id": 2415243, "entity": "dog", "caption": "a dog lays on a television remote", "question": ["is there a dog ?", "is there a television remote ?"], "prompt": "a {} lays on a television remote"}, {"index": 1212, "image_id": 2415243, "entity": "dog", "caption": "dog takes a nap on a couch", "question": ["is there dog ?", "is there a nap ?", "is there a couch ?"], "prompt": "{} takes a nap on a couch"}, {"index": 1213, "image_id": 2415532, "entity": "dog", "caption": "Elbow on the far arm washing the dog.", "question": ["is there the far arm ?", "is there the dog ?"], "prompt": "Elbow on the far arm washing the {}."}, {"index": 1214, "image_id": 2416178, "entity": "dog", "caption": "the dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye"}, {"index": 1215, "image_id": 2416388, "entity": "dog", "caption": "pink bow the dog is wearing", "question": ["is there the dog ?"], "prompt": "pink bow the {} is wearing"}, {"index": 1216, "image_id": 2416388, "entity": "dog", "caption": "dog getting teeth brushed", "question": ["is there dog ?", "are there teeth ?"], "prompt": "{} getting teeth brushed"}, {"index": 1217, "image_id": 2416731, "entity": "dog", "caption": "the dog has black hair", "question": ["is there the dog ?", "is there black hair ?"], "prompt": "the {} has black hair"}, {"index": 1218, "image_id": 2416731, "entity": "dog", "caption": "the dog has pointy teeth", "question": ["is there the dog ?", "are there pointy teeth ?"], "prompt": "the {} has pointy teeth"}, {"index": 1219, "image_id": 2416944, "entity": "dog", "caption": "grassy field dog is playing in", "question": ["is there grassy field dog ?"], "prompt": "grassy field {} is playing in"}, {"index": 1220, "image_id": 2417227, "entity": "dog", "caption": "The sofa the dog is leaning on.", "question": ["is there the sofa ?", "is there the dog ?"], "prompt": "The sofa the {} is leaning on."}, {"index": 1221, "image_id": 2417721, "entity": "dog", "caption": "dog has brown legs", "question": ["is there dog ?", "are there brown legs ?"], "prompt": "{} has brown legs"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02090721.json b/data/imagenet/compositions/prompts/n02090721.json
new file mode 100644
index 0000000000000000000000000000000000000000..db9508f2d519c121841f29d5b620aaf093b952ac
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02090721.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 561, "entity": "dog", "caption": "dog has a black nose", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose"}, {"index": 1, "image_id": 561, "entity": "dog", "caption": "dog's ears are up", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are up"}, {"index": 2, "image_id": 561, "entity": "dog", "caption": "dog's eyes are dark", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are dark"}, {"index": 3, "image_id": 3535, "entity": "dog", "caption": "The dog has four legs.", "question": ["is there the dog ?", "are there four legs ?"], "prompt": "The {} has four legs."}, {"index": 4, "image_id": 3535, "entity": "dog", "caption": "tongue hanging out a dog's mouth", "question": ["is there tongue ?", "is there a dog's mouth ?"], "prompt": "tongue hanging out a {}'s mouth"}, {"index": 5, "image_id": 3553, "entity": "dog", "caption": "dog is sitting in grass", "question": ["is there dog ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 6, "image_id": 3553, "entity": "dog", "caption": "dog is mostly brown", "question": ["is there dog ?"], "prompt": "{} is mostly brown"}, {"index": 7, "image_id": 3553, "entity": "dog", "caption": "the dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "the {} has a black nose"}, {"index": 8, "image_id": 3553, "entity": "dog", "caption": "the brown dog has a long brown tail", "question": ["is there the brown dog ?", "is there a long brown tail ?"], "prompt": "the brown {} has a long brown tail"}, {"index": 9, "image_id": 3553, "entity": "dog", "caption": "the dog has large brown paws", "question": ["is there the dog ?", "are there large brown paws ?"], "prompt": "the {} has large brown paws"}, {"index": 10, "image_id": 3553, "entity": "dog", "caption": "a dog with its mouth open", "question": ["is there a dog ?", "is there its mouth ?"], "prompt": "a {} with its mouth open"}, {"index": 11, "image_id": 3752, "entity": "dog", "caption": "the dogs tail is black ", "question": ["are there the dogs tail ?"], "prompt": "the {}s tail is black "}, {"index": 12, "image_id": 3752, "entity": "dog", "caption": "the dogs feet is black ", "question": ["are there the dogs ?"], "prompt": "the {}s feet is black "}, {"index": 13, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat are standing together on the sidewalk", "question": ["is there a dog ?", "is there a cat ?", "is there the sidewalk ?"], "prompt": "A {} and a cat are standing together on the sidewalk"}, {"index": 14, "image_id": 107934, "entity": "dog", "caption": "dog has a brown patch", "question": ["is there dog ?", "is there a brown patch ?"], "prompt": "{} has a brown patch"}, {"index": 15, "image_id": 107934, "entity": "dog", "caption": "dog has a blue rope tied", "question": ["is there dog ?", "is there a blue rope ?"], "prompt": "{} has a blue rope tied"}, {"index": 16, "image_id": 107934, "entity": "dog", "caption": "the dog has a blue leash", "question": ["is there the dog ?", "is there a blue leash ?"], "prompt": "the {} has a blue leash"}, {"index": 17, "image_id": 107934, "entity": "dog", "caption": "A dog and a cat walk together.", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} and a cat walk together."}, {"index": 18, "image_id": 107934, "entity": "dog", "caption": "Both dog and cat are in the middle of the frame.", "question": ["is there both dog ?", "is there cat ?", "is there the middle ?", "is there the frame ?"], "prompt": "Both {} and cat are in the middle of the frame."}, {"index": 19, "image_id": 107934, "entity": "dog", "caption": "The dog is looking at the camera.", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera."}, {"index": 20, "image_id": 1159975, "entity": "dog", "caption": "The gray collar the dog is wearing.", "question": ["is there the gray collar ?", "is there the dog ?"], "prompt": "The gray collar the {} is wearing."}, {"index": 21, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown and white sweater", "question": ["is there the dog ?", "is there a brown and white sweater ?"], "prompt": "The {} has a brown and white sweater"}, {"index": 22, "image_id": 2414023, "entity": "dog", "caption": "The dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "The {} has a brown nose"}, {"index": 23, "image_id": 2414023, "entity": "dog", "caption": "the dog has a messed up eye", "question": ["is there the dog ?", "is there a messed up eye ?"], "prompt": "the {} has a messed up eye"}, {"index": 24, "image_id": 2414023, "entity": "dog", "caption": "the dog is wearing a sweater", "question": ["is there the dog ?", "is there a sweater ?"], "prompt": "the {} is wearing a sweater"}, {"index": 25, "image_id": 2414023, "entity": "dog", "caption": "the dog has a purple collar", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "the {} has a purple collar"}, {"index": 26, "image_id": 2413171, "entity": "dog", "caption": "Young man hold a cute dog", "question": ["is there young man ?", "is there a cute dog ?"], "prompt": "Young man hold a cute {}"}, {"index": 27, "image_id": 2412707, "entity": "dog", "caption": "black fur grows on a dog", "question": ["is there black fur ?", "is there a dog ?"], "prompt": "black fur grows on a {}"}, {"index": 28, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is sitting in the ground"}, {"index": 29, "image_id": 2412707, "entity": "dog", "caption": "dog is sitting in the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is sitting in the floor"}, {"index": 30, "image_id": 2412546, "entity": "dog", "caption": "The dog has a collar on.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar on."}, {"index": 31, "image_id": 2412049, "entity": "dog", "caption": "the dog is long hair", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "the {} is long hair"}, {"index": 32, "image_id": 2412049, "entity": "dog", "caption": "the dog has some white hair", "question": ["is there the dog ?", "is there some white hair ?"], "prompt": "the {} has some white hair"}, {"index": 33, "image_id": 2412049, "entity": "dog", "caption": "the dog has some black hair", "question": ["is there the dog ?", "is there some black hair ?"], "prompt": "the {} has some black hair"}, {"index": 34, "image_id": 2412049, "entity": "dog", "caption": "the dog has some brown hair", "question": ["is there the dog ?", "is there some brown hair ?"], "prompt": "the {} has some brown hair"}, {"index": 35, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is shiny", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is shiny"}, {"index": 36, "image_id": 2412049, "entity": "dog", "caption": "the dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "the {}'s nose is black"}, {"index": 37, "image_id": 2412049, "entity": "dog", "caption": "this are dog canines", "question": ["are there dog canines ?"], "prompt": "this are {} canines"}, {"index": 38, "image_id": 2412049, "entity": "dog", "caption": "this is the dogs fur", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "this is the {}s fur"}, {"index": 39, "image_id": 2411402, "entity": "dog", "caption": "Bed the dog is sleeping on", "question": ["is there the dog ?"], "prompt": "Bed the {} is sleeping on"}, {"index": 40, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar"}, {"index": 41, "image_id": 2411357, "entity": "dog", "caption": "the dog is wearing a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} is wearing a chain"}, {"index": 42, "image_id": 2411357, "entity": "dog", "caption": "the dog is watching the oven", "question": ["is there the dog ?", "is there the oven ?"], "prompt": "the {} is watching the oven"}, {"index": 43, "image_id": 2411357, "entity": "dog", "caption": "the dog has a chain around its neck", "question": ["is there the dog ?", "is there a chain ?", "is there its neck ?"], "prompt": "the {} has a chain around its neck"}, {"index": 44, "image_id": 2411357, "entity": "dog", "caption": "the dog has two ears", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "the {} has two ears"}, {"index": 45, "image_id": 2411201, "entity": "dog", "caption": "A dog is on a moped.", "question": ["is there a dog ?"], "prompt": "A {} is on a moped."}, {"index": 46, "image_id": 2411201, "entity": "dog", "caption": "The dog has a red leash.", "question": ["is there the dog ?", "is there a red leash ?"], "prompt": "The {} has a red leash."}, {"index": 47, "image_id": 2411201, "entity": "dog", "caption": "The dog's ears are up.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are up."}, {"index": 48, "image_id": 2411201, "entity": "dog", "caption": "The dog's tail is hanging down.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is hanging down."}, {"index": 49, "image_id": 2411201, "entity": "dog", "caption": "a large dog sits on a scooter", "question": ["is there a large dog ?", "is there a scooter ?"], "prompt": "a large {} sits on a scooter"}, {"index": 50, "image_id": 2411201, "entity": "dog", "caption": "a dog has a red leash", "question": ["is there a dog ?", "is there a red leash ?"], "prompt": "a {} has a red leash"}, {"index": 51, "image_id": 2411201, "entity": "dog", "caption": "The dog on the scooter has a long tail", "question": ["is there the dog ?", "is there the scooter ?", "is there a long tail ?"], "prompt": "The {} on the scooter has a long tail"}, {"index": 52, "image_id": 2411201, "entity": "dog", "caption": "Brown dog on leash on moped", "question": ["is there brown dog ?", "is there leash ?"], "prompt": "Brown {} on leash on moped"}, {"index": 53, "image_id": 2411201, "entity": "dog", "caption": "Red moped with dog", "question": ["is there dog ?"], "prompt": "Red moped with {}"}, {"index": 54, "image_id": 2410967, "entity": "dog", "caption": "a dog's ears bent over", "question": ["are there a dog's ears ?"], "prompt": "a {}'s ears bent over"}, {"index": 55, "image_id": 2410840, "entity": "dog", "caption": "a dog's mouth biting a frisbee", "question": ["is there a dog's mouth ?", "is there a frisbee ?"], "prompt": "a {}'s mouth biting a frisbee"}, {"index": 56, "image_id": 2410817, "entity": "dog", "caption": "black and tan dog jumping to catch a frisbee", "question": ["is there black and tan dog ?", "is there a frisbee ?"], "prompt": "black and tan {} jumping to catch a frisbee"}, {"index": 57, "image_id": 2410817, "entity": "dog", "caption": "leaping dog going after a frisbee", "question": ["is there leaping dog ?", "is there a frisbee ?"], "prompt": "leaping {} going after a frisbee"}, {"index": 58, "image_id": 2410817, "entity": "dog", "caption": "German shepherd dog fetching a frisbee. ", "question": ["is there german shepherd dog ?", "is there a frisbee ?"], "prompt": "German shepherd {} fetching a frisbee. "}, {"index": 59, "image_id": 2409859, "entity": "dog", "caption": "dog's eyes appear to be different colors", "question": ["are there dog's eyes ?", "are there different colors ?"], "prompt": "{}'s eyes appear to be different colors"}, {"index": 60, "image_id": 2409859, "entity": "dog", "caption": "dog has black nose", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose"}, {"index": 61, "image_id": 2409859, "entity": "dog", "caption": "the dog is wearing a cap", "question": ["is there the dog ?", "is there a cap ?"], "prompt": "the {} is wearing a cap"}, {"index": 62, "image_id": 2409859, "entity": "dog", "caption": "Tongue of dog is pink", "question": ["is there tongue ?", "is there dog ?"], "prompt": "Tongue of {} is pink"}, {"index": 63, "image_id": 2409626, "entity": "dog", "caption": "dog has two eyes", "question": ["is there dog ?", "are there two eyes ?"], "prompt": "{} has two eyes"}, {"index": 64, "image_id": 2409626, "entity": "dog", "caption": "the dog is wearing pirate hat", "question": ["is there the dog ?", "is there pirate hat ?"], "prompt": "the {} is wearing pirate hat"}, {"index": 65, "image_id": 2409304, "entity": "dog", "caption": "White left foot of the dog", "question": ["is there white left foot ?", "is there the dog ?"], "prompt": "White left foot of the {}"}, {"index": 66, "image_id": 2409304, "entity": "dog", "caption": "dog catch the frisbee", "question": ["is there dog ?", "is there the frisbee ?"], "prompt": "{} catch the frisbee"}, {"index": 67, "image_id": 2409304, "entity": "dog", "caption": "dog's nose is black", "question": ["is there dog's nose ?"], "prompt": "{}'s nose is black"}, {"index": 68, "image_id": 2409304, "entity": "dog", "caption": "dog's ears are black", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are black"}, {"index": 69, "image_id": 2409304, "entity": "dog", "caption": "dog's paws are white", "question": ["are there dog's paws ?"], "prompt": "{}'s paws are white"}, {"index": 70, "image_id": 2409103, "entity": "dog", "caption": "the dog is wearing a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "the {} is wearing a blue collar"}, {"index": 71, "image_id": 2409103, "entity": "dog", "caption": "a book by T.C. Boyle is next to the dog", "question": ["is there a book ?", "is there the dog ?"], "prompt": "a book by T.C. Boyle is next to the {}"}, {"index": 72, "image_id": 2409103, "entity": "dog", "caption": "the dog is laying on top of an embroidered sheet", "question": ["is there the dog ?", "is there top ?", "is there an embroidered sheet ?"], "prompt": "the {} is laying on top of an embroidered sheet"}, {"index": 73, "image_id": 2408483, "entity": "dog", "caption": "Carpet is light in color under dog", "question": ["is there carpet ?", "is there color ?", "is there dog ?"], "prompt": "Carpet is light in color under {}"}, {"index": 74, "image_id": 2408383, "entity": "dog", "caption": "The dog and cat are looking in the same direction", "question": ["is there the dog ?", "is there cat ?", "is there the same direction ?"], "prompt": "The {} and cat are looking in the same direction"}, {"index": 75, "image_id": 2408210, "entity": "dog", "caption": "Nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "Nose of {} is black"}, {"index": 76, "image_id": 2408210, "entity": "dog", "caption": "Ears of dog is black and tan", "question": ["are there ears ?", "is there dog ?"], "prompt": "Ears of {} is black and tan"}, {"index": 77, "image_id": 2408210, "entity": "dog", "caption": "Eyes of dog are open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "Eyes of {} are open"}, {"index": 78, "image_id": 2408210, "entity": "dog", "caption": "three dogs are lying on a bed", "question": ["are there three dogs ?", "is there a bed ?"], "prompt": "three {}s are lying on a bed"}, {"index": 79, "image_id": 2408210, "entity": "dog", "caption": "the dog has his eyes open", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "the {} has his eyes open"}, {"index": 80, "image_id": 2408037, "entity": "dog", "caption": "the dog has red eyes", "question": ["is there the dog ?", "are there red eyes ?"], "prompt": "the {} has red eyes"}, {"index": 81, "image_id": 2408037, "entity": "dog", "caption": "the dog is holding carrot toy", "question": ["is there the dog ?", "is there carrot toy ?"], "prompt": "the {} is holding carrot toy"}, {"index": 82, "image_id": 2408037, "entity": "dog", "caption": "the dog has green ribbon on its nech", "question": ["is there the dog ?", "is there green ribbon ?"], "prompt": "the {} has green ribbon on its nech"}, {"index": 83, "image_id": 2408037, "entity": "dog", "caption": "a green toy is beside the dog", "question": ["is there a green toy ?", "is there the dog ?"], "prompt": "a green toy is beside the {}"}, {"index": 84, "image_id": 2408037, "entity": "dog", "caption": "the dog has brown legs", "question": ["is there the dog ?", "are there brown legs ?"], "prompt": "the {} has brown legs"}, {"index": 85, "image_id": 2407835, "entity": "dog", "caption": "Brown dog laying on a bed with eyes open.", "question": ["is there brown dog ?", "is there a bed ?", "are there eyes ?"], "prompt": "Brown {} laying on a bed with eyes open."}, {"index": 86, "image_id": 2407835, "entity": "dog", "caption": "dog is lying down.", "question": ["is there dog ?"], "prompt": "{} is lying down."}, {"index": 87, "image_id": 2407835, "entity": "dog", "caption": "dog is lying in cot.", "question": ["is there dog ?", "is there cot ?"], "prompt": "{} is lying in cot."}, {"index": 88, "image_id": 2407835, "entity": "dog", "caption": "dog nose is black color.", "question": ["is there dog nose ?", "is there black color ?"], "prompt": "{} nose is black color."}, {"index": 89, "image_id": 2407825, "entity": "dog", "caption": "the dog has two eyes", "question": ["is there the dog ?", "are there two eyes ?"], "prompt": "the {} has two eyes"}, {"index": 90, "image_id": 2407825, "entity": "dog", "caption": "dog is wearing a collar", "question": ["is there dog ?", "is there a collar ?"], "prompt": "{} is wearing a collar"}, {"index": 91, "image_id": 2407825, "entity": "dog", "caption": "the dog is on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is on the couch"}, {"index": 92, "image_id": 2407825, "entity": "dog", "caption": "the dog has whiskers", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers"}, {"index": 93, "image_id": 2407234, "entity": "dog", "caption": "the dog is on the beanbag", "question": ["is there the dog ?", "is there the beanbag ?"], "prompt": "the {} is on the beanbag"}, {"index": 94, "image_id": 2407234, "entity": "dog", "caption": "a dog toy thats a rope", "question": ["is there a dog toy ?", "is there a rope ?"], "prompt": "a {} toy thats a rope"}, {"index": 95, "image_id": 2407234, "entity": "dog", "caption": "the dog is on bean bag", "question": ["is there the dog ?", "is there bean bag ?"], "prompt": "the {} is on bean bag"}, {"index": 96, "image_id": 2407234, "entity": "dog", "caption": "the dog is sad", "question": ["is there the dog ?"], "prompt": "the {} is sad"}, {"index": 97, "image_id": 2406999, "entity": "dog", "caption": "the dog has goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "the {} has goggles"}, {"index": 98, "image_id": 2406999, "entity": "dog", "caption": "The dog has a vest on", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "The {} has a vest on"}, {"index": 99, "image_id": 2406999, "entity": "dog", "caption": "The dog has goggles on", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} has goggles on"}, {"index": 100, "image_id": 2406999, "entity": "dog", "caption": "The dogs tongue is out. ", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is out. "}, {"index": 101, "image_id": 2406384, "entity": "dog", "caption": "The dog has amber-coloured eyes", "question": ["is there the dog ?", "are there amber-coloured eyes ?"], "prompt": "The {} has amber-coloured eyes"}, {"index": 102, "image_id": 2406384, "entity": "dog", "caption": "The dog's hat is courdoroy", "question": ["is there the dog's hat ?"], "prompt": "The {}'s hat is courdoroy"}, {"index": 103, "image_id": 2406384, "entity": "dog", "caption": "dog has collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} has collar"}, {"index": 104, "image_id": 2406384, "entity": "dog", "caption": "dog has whiskers", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers"}, {"index": 105, "image_id": 2406384, "entity": "dog", "caption": "dog has black lips", "question": ["is there dog ?", "are there black lips ?"], "prompt": "{} has black lips"}, {"index": 106, "image_id": 2406275, "entity": "dog", "caption": "dogs nose is black", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black"}, {"index": 107, "image_id": 2406275, "entity": "dog", "caption": "the dog has light brown eyes", "question": ["is there the dog ?", "are there light brown eyes ?"], "prompt": "the {} has light brown eyes"}, {"index": 108, "image_id": 2406275, "entity": "dog", "caption": "the dog has pointy ears", "question": ["is there the dog ?", "are there pointy ears ?"], "prompt": "the {} has pointy ears"}, {"index": 109, "image_id": 2406275, "entity": "dog", "caption": "something fuzzy is next to the dog", "question": ["is there something ?", "is there the dog ?"], "prompt": "something fuzzy is next to the {}"}, {"index": 110, "image_id": 2406275, "entity": "dog", "caption": "the dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "the {} has brown eyes"}, {"index": 111, "image_id": 2406275, "entity": "dog", "caption": "the dog is lying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is lying on a blanket"}, {"index": 112, "image_id": 2405633, "entity": "dog", "caption": "Dog kennel with dog.", "question": ["is there dog kennel ?", "is there dog ?"], "prompt": "Dog kennel with {}."}, {"index": 113, "image_id": 2405633, "entity": "dog", "caption": "The dog is lying on two blue and white pillows.", "question": ["is there the dog ?", "are there two blue and white pillows ?"], "prompt": "The {} is lying on two blue and white pillows."}, {"index": 114, "image_id": 2405484, "entity": "dog", "caption": "the dog has a pink tongue", "question": ["is there the dog ?", "is there a pink tongue ?"], "prompt": "the {} has a pink tongue"}, {"index": 115, "image_id": 2405484, "entity": "dog", "caption": "the dog is walking in the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is walking in the grass"}, {"index": 116, "image_id": 2405484, "entity": "dog", "caption": "the dog is wearing a metal collar", "question": ["is there the dog ?", "is there a metal collar ?"], "prompt": "the {} is wearing a metal collar"}, {"index": 117, "image_id": 2405484, "entity": "dog", "caption": "the dog is standing on the grass", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "the {} is standing on the grass"}, {"index": 118, "image_id": 2405484, "entity": "dog", "caption": "the dog has a collar on", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar on"}, {"index": 119, "image_id": 2405484, "entity": "dog", "caption": "the dog has his tongue sticking out", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "the {} has his tongue sticking out"}, {"index": 120, "image_id": 2405484, "entity": "dog", "caption": "the dog is waggling his tail", "question": ["is there the dog ?", "is there his tail ?"], "prompt": "the {} is waggling his tail"}, {"index": 121, "image_id": 2405484, "entity": "dog", "caption": "the dog's collar is a chain", "question": ["is there the dog's collar ?", "is there a chain ?"], "prompt": "the {}'s collar is a chain"}, {"index": 122, "image_id": 2405484, "entity": "dog", "caption": "dog's tongue is pink", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink"}, {"index": 123, "image_id": 2405484, "entity": "dog", "caption": "dog is standing in the grass", "question": ["is there dog ?", "is there the grass ?"], "prompt": "{} is standing in the grass"}, {"index": 124, "image_id": 2405469, "entity": "dog", "caption": "The dog is wearing a collar. ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar. "}, {"index": 125, "image_id": 2405469, "entity": "dog", "caption": "The dog has it's head down. ", "question": ["is there the dog ?", "is there head ?"], "prompt": "The {} has it's head down. "}, {"index": 126, "image_id": 2405469, "entity": "dog", "caption": "the dog has sharp teeth", "question": ["is there the dog ?", "are there sharp teeth ?"], "prompt": "the {} has sharp teeth"}, {"index": 127, "image_id": 2405469, "entity": "dog", "caption": "the dog is on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground"}, {"index": 128, "image_id": 2405469, "entity": "dog", "caption": "dog is barking to the other dog", "question": ["is there dog ?", "is there the other dog ?"], "prompt": "{} is barking to the other {}"}, {"index": 129, "image_id": 2405469, "entity": "dog", "caption": "Dog ready to bite another dog", "question": ["is there dog ?", "is there another dog ?"], "prompt": "Dog ready to bite another {}"}, {"index": 130, "image_id": 2405369, "entity": "dog", "caption": "The dog is sleeping in a bed. ", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "The {} is sleeping in a bed. "}, {"index": 131, "image_id": 2405369, "entity": "dog", "caption": "The dog's nose hangs over the bed's edge.", "question": ["is there the dog's nose ?", "is there the bed's edge ?"], "prompt": "The {}'s nose hangs over the bed's edge."}, {"index": 132, "image_id": 2405369, "entity": "dog", "caption": "the dog is on a bed", "question": ["is there the dog ?", "is there a bed ?"], "prompt": "the {} is on a bed"}, {"index": 133, "image_id": 2405369, "entity": "dog", "caption": "the dog sleeps on a tan and white dog bed", "question": ["is there the dog ?", "is there a tan and white dog bed ?"], "prompt": "the {} sleeps on a tan and white {} bed"}, {"index": 134, "image_id": 2405369, "entity": "dog", "caption": "the dog lays curled up on a plush dog bed", "question": ["is there the dog ?", "is there a plush dog bed ?"], "prompt": "the {} lays curled up on a plush {} bed"}, {"index": 135, "image_id": 2405369, "entity": "dog", "caption": "dogs ear on bottom left", "question": ["are there dogs ?", "is there bottom ?"], "prompt": "{}s ear on bottom left"}, {"index": 136, "image_id": 2405369, "entity": "dog", "caption": "White dog curled up sleeping on its bed", "question": ["is there white dog ?", "is there its bed ?"], "prompt": "White {} curled up sleeping on its bed"}, {"index": 137, "image_id": 2405343, "entity": "dog", "caption": "the dog has a Santa hat on his head", "question": ["is there the dog ?", "is there a santa hat ?", "is there his head ?"], "prompt": "the {} has a Santa hat on his head"}, {"index": 138, "image_id": 2405343, "entity": "dog", "caption": "the dog has a black eye", "question": ["is there the dog ?", "is there a black eye ?"], "prompt": "the {} has a black eye"}, {"index": 139, "image_id": 2405343, "entity": "dog", "caption": "the nose of the dog is black", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose of the {} is black"}, {"index": 140, "image_id": 2405343, "entity": "dog", "caption": "the fur on the dog is black and white ", "question": ["is there the fur ?", "is there the dog ?"], "prompt": "the fur on the {} is black and white "}, {"index": 141, "image_id": 2405343, "entity": "dog", "caption": "the dog has a white chest", "question": ["is there the dog ?", "is there a white chest ?"], "prompt": "the {} has a white chest"}, {"index": 142, "image_id": 2405343, "entity": "dog", "caption": "the dog's ear is black", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is black"}, {"index": 143, "image_id": 2405343, "entity": "dog", "caption": "the dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open"}, {"index": 144, "image_id": 2404815, "entity": "dog", "caption": "a cat sleeps on a dog", "question": ["is there a cat ?", "is there a dog ?"], "prompt": "a cat sleeps on a {}"}, {"index": 145, "image_id": 2404815, "entity": "dog", "caption": "a cat and dog lie on a wooden floor", "question": ["is there a cat ?", "is there dog ?", "is there a wooden floor ?"], "prompt": "a cat and {} lie on a wooden floor"}, {"index": 146, "image_id": 2404815, "entity": "dog", "caption": "the cat is laying on the dog", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "the cat is laying on the {}"}, {"index": 147, "image_id": 2404815, "entity": "dog", "caption": "the dog is laying on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is laying on the floor"}, {"index": 148, "image_id": 2404815, "entity": "dog", "caption": "the dog has something around its neck", "question": ["is there the dog ?", "is there something ?", "is there its neck ?"], "prompt": "the {} has something around its neck"}, {"index": 149, "image_id": 2404815, "entity": "dog", "caption": "the dog's ear is sticking up", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is sticking up"}, {"index": 150, "image_id": 2404815, "entity": "dog", "caption": "the dog is wearing a bandana on his neck", "question": ["is there the dog ?", "is there a bandana ?", "is there his neck ?"], "prompt": "the {} is wearing a bandana on his neck"}, {"index": 151, "image_id": 2404815, "entity": "dog", "caption": "the kitten is laying on top of the dog", "question": ["is there top ?", "is there the dog ?"], "prompt": "the kitten is laying on top of the {}"}, {"index": 152, "image_id": 2404815, "entity": "dog", "caption": "the dogs paws are white", "question": ["are there the dogs paws ?"], "prompt": "the {}s paws are white"}, {"index": 153, "image_id": 2404815, "entity": "dog", "caption": "the dog doesnt seem to mind the kitty laying on him", "question": ["is there the dog ?", "is there the kitty ?"], "prompt": "the {} doesnt seem to mind the kitty laying on him"}, {"index": 154, "image_id": 2404707, "entity": "dog", "caption": "A black dog sits on stairs", "question": ["is there a black dog ?", "are there stairs ?"], "prompt": "A black {} sits on stairs"}, {"index": 155, "image_id": 2404707, "entity": "dog", "caption": "The dog is wearing a red bow tie around its neck", "question": ["is there the dog ?", "is there a red bow tie ?", "is there its neck ?"], "prompt": "The {} is wearing a red bow tie around its neck"}, {"index": 156, "image_id": 2404707, "entity": "dog", "caption": "The dog has its head cocked to the side", "question": ["is there the dog ?", "is there its head ?", "is there the side ?"], "prompt": "The {} has its head cocked to the side"}, {"index": 157, "image_id": 2404707, "entity": "dog", "caption": "The dogs left hind leg is hanging off the stair", "question": ["are there the dogs ?", "is there hind leg ?", "is there the stair ?"], "prompt": "The {}s left hind leg is hanging off the stair"}, {"index": 158, "image_id": 2404163, "entity": "dog", "caption": "a woman is petting the dog", "question": ["is there a woman ?", "is there the dog ?"], "prompt": "a woman is petting the {}"}, {"index": 159, "image_id": 2404163, "entity": "dog", "caption": "the dog wears a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} wears a red collar"}, {"index": 160, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing red scarf", "question": ["is there person ?", "is there dog ?", "is there red scarf ?"], "prompt": "person petting {} is wearing red scarf"}, {"index": 161, "image_id": 2404163, "entity": "dog", "caption": "person petting dog is wearing a black dress", "question": ["is there person ?", "is there dog ?", "is there a black dress ?"], "prompt": "person petting {} is wearing a black dress"}, {"index": 162, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red and white scarf", "question": ["is there the dog ?", "is there a red and white scarf ?"], "prompt": "the {} is wearing a red and white scarf"}, {"index": 163, "image_id": 2404163, "entity": "dog", "caption": "the dog looks up at the woman", "question": ["is there the dog ?", "is there the woman ?"], "prompt": "the {} looks up at the woman"}, {"index": 164, "image_id": 2404163, "entity": "dog", "caption": "the dog is wearing a red halter style lead", "question": ["is there the dog ?", "is there a red halter style ?"], "prompt": "the {} is wearing a red halter style lead"}, {"index": 165, "image_id": 2404163, "entity": "dog", "caption": "a woman reaches down to a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "a woman reaches down to a {}"}, {"index": 166, "image_id": 2404163, "entity": "dog", "caption": "the woman in the red shoes pets the dog", "question": ["is there the woman ?", "are there the red shoes ?", "is there the dog ?"], "prompt": "the woman in the red shoes pets the {}"}, {"index": 167, "image_id": 2404075, "entity": "dog", "caption": "The dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket"}, {"index": 168, "image_id": 2403923, "entity": "dog", "caption": "the dog has a green collar", "question": ["is there the dog ?", "is there a green collar ?"], "prompt": "the {} has a green collar"}, {"index": 169, "image_id": 2403914, "entity": "dog", "caption": "This dog has his eyes closed", "question": ["is there this dog ?", "are there his eyes ?"], "prompt": "This {} has his eyes closed"}, {"index": 170, "image_id": 2403914, "entity": "dog", "caption": "This snauser dog has long ears", "question": ["is there this snauser dog ?", "are there long ears ?"], "prompt": "This snauser {} has long ears"}, {"index": 171, "image_id": 2403914, "entity": "dog", "caption": "This dog has a pug nose", "question": ["is there this dog ?", "is there a pug nose ?"], "prompt": "This {} has a pug nose"}, {"index": 172, "image_id": 2403914, "entity": "dog", "caption": "A dog's ear peeking out from the other side of its head", "question": ["is there a dog's ear ?", "is there the other side ?", "is there its head ?"], "prompt": "A {}'s ear peeking out from the other side of its head"}, {"index": 173, "image_id": 2403430, "entity": "dog", "caption": "The dog is laying on a couch.", "question": ["is there the dog ?", "is there a couch ?"], "prompt": "The {} is laying on a couch."}, {"index": 174, "image_id": 2403430, "entity": "dog", "caption": "black dog with eyes open", "question": ["is there black dog ?", "are there eyes ?"], "prompt": "black {} with eyes open"}, {"index": 175, "image_id": 2403430, "entity": "dog", "caption": "The dog has brown eyes", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes"}, {"index": 176, "image_id": 2403430, "entity": "dog", "caption": "The black dog likes laying on the couch", "question": ["is there the black dog ?", "is there the couch ?"], "prompt": "The black {} likes laying on the couch"}, {"index": 177, "image_id": 2403430, "entity": "dog", "caption": "the dog is laying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is laying on the couch"}, {"index": 178, "image_id": 2403430, "entity": "dog", "caption": "the dog's eye is brown", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is brown"}, {"index": 179, "image_id": 2403359, "entity": "dog", "caption": "a dog and a horse share an Eskimo kiss", "question": ["is there a dog ?", "is there a horse share ?"], "prompt": "a {} and a horse share an Eskimo kiss"}, {"index": 180, "image_id": 2403245, "entity": "dog", "caption": "large brown dog leashed to chair", "question": ["is there large brown dog ?", "is there chair ?"], "prompt": "large brown {} leashed to chair"}, {"index": 181, "image_id": 2403245, "entity": "dog", "caption": "the dog is on deck", "question": ["is there the dog ?", "is there deck ?"], "prompt": "the {} is on deck"}, {"index": 182, "image_id": 2403245, "entity": "dog", "caption": "the leash is on dog", "question": ["is there the leash ?", "is there dog ?"], "prompt": "the leash is on {}"}, {"index": 183, "image_id": 2403245, "entity": "dog", "caption": "Leash tied on golden dog", "question": ["is there golden dog ?"], "prompt": "Leash tied on golden {}"}, {"index": 184, "image_id": 2402933, "entity": "dog", "caption": "the doggy has a party hat on", "question": ["is there the doggy ?", "is there a party hat ?"], "prompt": "the {}gy has a party hat on"}, {"index": 185, "image_id": 2402933, "entity": "dog", "caption": "a stuffed animal is next to the dog", "question": ["is there a stuffed animal ?", "is there the dog ?"], "prompt": "a stuffed animal is next to the {}"}, {"index": 186, "image_id": 2402907, "entity": "dog", "caption": "The dog is standing on carpet", "question": ["is there the dog ?", "is there carpet ?"], "prompt": "The {} is standing on carpet"}, {"index": 187, "image_id": 2402907, "entity": "dog", "caption": "The dog has a collar and tags", "question": ["is there the dog ?", "is there a collar ?", "are there tags ?"], "prompt": "The {} has a collar and tags"}, {"index": 188, "image_id": 2402906, "entity": "dog", "caption": "a dog cover the book", "question": ["is there a dog ?", "is there the book ?"], "prompt": "a {} cover the book"}, {"index": 189, "image_id": 2402906, "entity": "dog", "caption": "the dog is looking to the left", "question": ["is there the dog ?"], "prompt": "the {} is looking to the left"}, {"index": 190, "image_id": 2402906, "entity": "dog", "caption": "the dog has black eyes", "question": ["is there the dog ?", "are there black eyes ?"], "prompt": "the {} has black eyes"}, {"index": 191, "image_id": 2402433, "entity": "dog", "caption": "The dog's eyes are brown.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are brown."}, {"index": 192, "image_id": 2402433, "entity": "dog", "caption": "The dog's fur is brown and black.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is brown and black."}, {"index": 193, "image_id": 2402433, "entity": "dog", "caption": "The dog's tongue is pink.", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is pink."}, {"index": 194, "image_id": 2402433, "entity": "dog", "caption": "The dog's ears are down.", "question": ["are there the dog's ears ?"], "prompt": "The {}'s ears are down."}, {"index": 195, "image_id": 2402363, "entity": "dog", "caption": "the dog and the cat are on the pillow together", "question": ["is there the dog ?", "is there the cat ?", "is there the pillow ?"], "prompt": "the {} and the cat are on the pillow together"}, {"index": 196, "image_id": 2402363, "entity": "dog", "caption": "cat and dog sleeping on pet bed together", "question": ["is there cat ?", "is there dog ?", "is there pet bed ?"], "prompt": "cat and {} sleeping on pet bed together"}, {"index": 197, "image_id": 2402351, "entity": "dog", "caption": "The dog has a frisbee in his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee in his mouth."}, {"index": 198, "image_id": 2402351, "entity": "dog", "caption": "The dog has a white bushy tail.", "question": ["is there the dog ?", "is there a white bushy tail ?"], "prompt": "The {} has a white bushy tail."}, {"index": 199, "image_id": 2402351, "entity": "dog", "caption": "A flower pot is on the side of the dog.", "question": ["is there a flower pot ?", "is there the side ?", "is there the dog ?"], "prompt": "A flower pot is on the side of the {}."}, {"index": 200, "image_id": 2402059, "entity": "dog", "caption": "the dog has a human's tie around it's neck", "question": ["is there the dog ?", "is there a human's tie ?", "is there neck ?"], "prompt": "the {} has a human's tie around it's neck"}, {"index": 201, "image_id": 2401271, "entity": "dog", "caption": "The head of the dog sitting down.", "question": ["is there the head ?", "is there the dog ?"], "prompt": "The head of the {} sitting down."}, {"index": 202, "image_id": 2401271, "entity": "dog", "caption": "Soft brown chair the dog sits on", "question": ["is there soft brown chair ?", "is there the dog ?"], "prompt": "Soft brown chair the {} sits on"}, {"index": 203, "image_id": 2401271, "entity": "dog", "caption": "dog sittin gin brown chiar", "question": ["is there dog ?", "is there gin brown chiar ?"], "prompt": "{} sittin gin brown chiar"}, {"index": 204, "image_id": 2401271, "entity": "dog", "caption": "The dog is black and brown.", "question": ["is there the dog ?"], "prompt": "The {} is black and brown."}, {"index": 205, "image_id": 2401271, "entity": "dog", "caption": "The dog's nose is black.", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black."}, {"index": 206, "image_id": 2401024, "entity": "dog", "caption": "the dog has ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has ears"}, {"index": 207, "image_id": 2401024, "entity": "dog", "caption": "the dog is wearing strap", "question": ["is there the dog ?", "is there strap ?"], "prompt": "the {} is wearing strap"}, {"index": 208, "image_id": 2401024, "entity": "dog", "caption": "dog is wearing sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is wearing sweater"}, {"index": 209, "image_id": 2401024, "entity": "dog", "caption": "The sweater the dog is wearing", "question": ["is there the sweater ?", "is there the dog ?"], "prompt": "The sweater the {} is wearing"}, {"index": 210, "image_id": 2400958, "entity": "dog", "caption": "the man behind the dogs has blue jeans on", "question": ["is there the man ?", "are there the dogs ?", "are there blue jeans ?"], "prompt": "the man behind the {}s has blue jeans on"}, {"index": 211, "image_id": 2400958, "entity": "dog", "caption": "dog with tongue hanging out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue hanging out"}, {"index": 212, "image_id": 2400922, "entity": "dog", "caption": "The dog is staring out the window.", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is staring out the window."}, {"index": 213, "image_id": 2400865, "entity": "dog", "caption": "The dog is on a blanket.", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "The {} is on a blanket."}, {"index": 214, "image_id": 2400865, "entity": "dog", "caption": "the dogs nose is pink.", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is pink."}, {"index": 215, "image_id": 2400865, "entity": "dog", "caption": "the dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "the {}s tongue is pink."}, {"index": 216, "image_id": 2400378, "entity": "dog", "caption": "this is the dog's head", "question": ["is there the dog's head ?"], "prompt": "this is the {}'s head"}, {"index": 217, "image_id": 2400368, "entity": "dog", "caption": "a dogs left paw", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw"}, {"index": 218, "image_id": 2399686, "entity": "dog", "caption": "a dog with its ears perked up", "question": ["is there a dog ?", "are there its ears ?"], "prompt": "a {} with its ears perked up"}, {"index": 219, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left eye", "question": ["are there the black dogs ?", "is there eye ?"], "prompt": "the black {}s left eye"}, {"index": 220, "image_id": 2399125, "entity": "dog", "caption": "the black dogs right eye", "question": ["are there the black dogs ?"], "prompt": "the black {}s right eye"}, {"index": 221, "image_id": 2399125, "entity": "dog", "caption": "piece of wood dog is lying on", "question": ["is there piece ?", "is there wood dog ?"], "prompt": "piece of wood {} is lying on"}, {"index": 222, "image_id": 2399125, "entity": "dog", "caption": "the black dogs left ear", "question": ["are there the black dogs ?", "is there ear ?"], "prompt": "the black {}s left ear"}, {"index": 223, "image_id": 2399037, "entity": "dog", "caption": "she is holding a dog", "question": ["is there a dog ?"], "prompt": "she is holding a {}"}, {"index": 224, "image_id": 2399037, "entity": "dog", "caption": "The girl's hand that is resting on the dog.", "question": ["is there the girl's hand ?", "is there the dog ?"], "prompt": "The girl's hand that is resting on the {}."}, {"index": 225, "image_id": 2399037, "entity": "dog", "caption": "Girl's hand is on the dog.", "question": ["is there girl's hand ?", "is there the dog ?"], "prompt": "Girl's hand is on the {}."}, {"index": 226, "image_id": 2399037, "entity": "dog", "caption": "this is a dog", "question": ["is there a dog ?"], "prompt": "this is a {}"}, {"index": 227, "image_id": 2397742, "entity": "dog", "caption": "a green rug the dog is laying on", "question": ["is there a green rug ?", "is there the dog ?"], "prompt": "a green rug the {} is laying on"}, {"index": 228, "image_id": 2397739, "entity": "dog", "caption": "A dog is in front of a motorcycle.", "question": ["is there a dog ?", "is there front ?", "is there a motorcycle ?"], "prompt": "A {} is in front of a motorcycle."}, {"index": 229, "image_id": 2397739, "entity": "dog", "caption": "A dog has black and white spots.", "question": ["is there a dog ?", "are there black and white spots ?"], "prompt": "A {} has black and white spots."}, {"index": 230, "image_id": 2397739, "entity": "dog", "caption": "A dog is behind another dog.", "question": ["is there a dog ?", "is there another dog ?"], "prompt": "A {} is behind another {}."}, {"index": 231, "image_id": 2397739, "entity": "dog", "caption": "motorbike parked behind dogs", "question": ["is there motorbike ?", "are there dogs ?"], "prompt": "motorbike parked behind {}s"}, {"index": 232, "image_id": 2397731, "entity": "dog", "caption": "the red collar the dog is wearing", "question": ["is there the red collar ?", "is there the dog ?"], "prompt": "the red collar the {} is wearing"}, {"index": 233, "image_id": 2397731, "entity": "dog", "caption": "the green grass the dog is standing on", "question": ["is there the green grass ?", "is there the dog ?"], "prompt": "the green grass the {} is standing on"}, {"index": 234, "image_id": 2397731, "entity": "dog", "caption": "the dogs colored leash", "question": ["are there the dogs ?"], "prompt": "the {}s colored leash"}, {"index": 235, "image_id": 2397368, "entity": "dog", "caption": "the dog is holding something on its mouth", "question": ["is there the dog ?", "is there something ?", "is there its mouth ?"], "prompt": "the {} is holding something on its mouth"}, {"index": 236, "image_id": 2397327, "entity": "dog", "caption": "dog has big brown eyes", "question": ["is there dog ?", "are there big brown eyes ?"], "prompt": "{} has big brown eyes"}, {"index": 237, "image_id": 2397327, "entity": "dog", "caption": "dog has small black nose", "question": ["is there dog ?", "is there small black nose ?"], "prompt": "{} has small black nose"}, {"index": 238, "image_id": 2397327, "entity": "dog", "caption": "collar on dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar on {} is black"}, {"index": 239, "image_id": 2397327, "entity": "dog", "caption": "the carpet the dog is standing on", "question": ["is there the carpet ?", "is there the dog ?"], "prompt": "the carpet the {} is standing on"}, {"index": 240, "image_id": 2397327, "entity": "dog", "caption": "the dogs tail", "question": ["are there the dogs ?"], "prompt": "the {}s tail"}, {"index": 241, "image_id": 2397165, "entity": "dog", "caption": "a dogs left paw.", "question": ["are there a dogs ?", "is there paw ?"], "prompt": "a {}s left paw."}, {"index": 242, "image_id": 2396130, "entity": "dog", "caption": "A cushion a dog is lying on. ", "question": ["is there a cushion ?", "is there a dog ?"], "prompt": "A cushion a {} is lying on. "}, {"index": 243, "image_id": 2396130, "entity": "dog", "caption": "The dog is laying on the couch.", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "The {} is laying on the couch."}, {"index": 244, "image_id": 2395670, "entity": "dog", "caption": "dog is wearing a tiara", "question": ["is there dog ?", "is there a tiara ?"], "prompt": "{} is wearing a tiara"}, {"index": 245, "image_id": 2395670, "entity": "dog", "caption": "the dog is wearing a tutu", "question": ["is there the dog ?", "is there a tutu ?"], "prompt": "the {} is wearing a tutu"}, {"index": 246, "image_id": 2395670, "entity": "dog", "caption": "bulldog has big brown eye", "question": ["is there big brown eye ?"], "prompt": "bull{} has big brown eye"}, {"index": 247, "image_id": 2395670, "entity": "dog", "caption": "bulldog has green ribbon attached to orange collar+ribbed orange vest", "question": ["is there green ribbon ?", "is there orange collar+ribbed orange vest ?"], "prompt": "bull{} has green ribbon attached to orange collar+ribbed orange vest"}, {"index": 248, "image_id": 2395473, "entity": "dog", "caption": "The dog is on top of the pillow", "question": ["is there the dog ?", "is there top ?", "is there the pillow ?"], "prompt": "The {} is on top of the pillow"}, {"index": 249, "image_id": 2395473, "entity": "dog", "caption": "The dog is hugging the stuffed animal", "question": ["is there the dog ?", "is there the stuffed animal ?"], "prompt": "The {} is hugging the stuffed animal"}, {"index": 250, "image_id": 2395473, "entity": "dog", "caption": "stuff is on the floor behind the dog", "question": ["is there stuff ?", "is there the floor ?", "is there the dog ?"], "prompt": "stuff is on the floor behind the {}"}, {"index": 251, "image_id": 2395473, "entity": "dog", "caption": "a white pillow is underneath the dog", "question": ["is there a white pillow ?", "is there the dog ?"], "prompt": "a white pillow is underneath the {}"}, {"index": 252, "image_id": 2395473, "entity": "dog", "caption": "a black speaker is behind the dog", "question": ["is there a black speaker ?", "is there the dog ?"], "prompt": "a black speaker is behind the {}"}, {"index": 253, "image_id": 2395473, "entity": "dog", "caption": "old looking curtains is above the dog's head", "question": ["are there old looking curtains ?", "is there the dog's head ?"], "prompt": "old looking curtains is above the {}'s head"}, {"index": 254, "image_id": 2395369, "entity": "dog", "caption": "grey run the dog is standing on", "question": ["is there the dog ?"], "prompt": "grey run the {} is standing on"}, {"index": 255, "image_id": 2395369, "entity": "dog", "caption": "cat and dog playing with each other ", "question": ["is there cat ?", "is there dog ?"], "prompt": "cat and {} playing with each other "}, {"index": 256, "image_id": 2395369, "entity": "dog", "caption": "head of dog is black", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is black"}, {"index": 257, "image_id": 2394681, "entity": "dog", "caption": "The dog's tail is visible.", "question": ["is there the dog's tail ?"], "prompt": "The {}'s tail is visible."}, {"index": 258, "image_id": 2394681, "entity": "dog", "caption": "the dog has tail", "question": ["is there the dog ?", "is there tail ?"], "prompt": "the {} has tail"}, {"index": 259, "image_id": 2394499, "entity": "dog", "caption": "the dog is wearing a hat", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "the {} is wearing a hat"}, {"index": 260, "image_id": 2394499, "entity": "dog", "caption": "dog is wearing a fedora", "question": ["is there dog ?", "is there a fedora ?"], "prompt": "{} is wearing a fedora"}, {"index": 261, "image_id": 2394499, "entity": "dog", "caption": "The dog has a toy.", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "The {} has a toy."}, {"index": 262, "image_id": 2394499, "entity": "dog", "caption": "The dog is laying on a pillow.", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is laying on a pillow."}, {"index": 263, "image_id": 2394372, "entity": "dog", "caption": "The dog is black and white.", "question": ["is there the dog ?"], "prompt": "The {} is black and white."}, {"index": 264, "image_id": 2394372, "entity": "dog", "caption": "dog has white body with black spots", "question": ["is there dog ?", "is there white body ?", "are there black spots ?"], "prompt": "{} has white body with black spots"}, {"index": 265, "image_id": 2394372, "entity": "dog", "caption": "dog has cast a shadow", "question": ["is there dog ?", "is there a shadow ?"], "prompt": "{} has cast a shadow"}, {"index": 266, "image_id": 2394372, "entity": "dog", "caption": "dog has big fluffy tail", "question": ["is there dog ?", "is there big fluffy tail ?"], "prompt": "{} has big fluffy tail"}, {"index": 267, "image_id": 2394372, "entity": "dog", "caption": "dog has tags on collar", "question": ["is there dog ?", "are there tags ?", "is there collar ?"], "prompt": "{} has tags on collar"}, {"index": 268, "image_id": 2394372, "entity": "dog", "caption": "dog is wearing a white collar", "question": ["is there dog ?", "is there a white collar ?"], "prompt": "{} is wearing a white collar"}, {"index": 269, "image_id": 2394372, "entity": "dog", "caption": "dog is black and white", "question": ["is there dog ?"], "prompt": "{} is black and white"}, {"index": 270, "image_id": 2394372, "entity": "dog", "caption": "dog has frilly tail", "question": ["is there dog ?"], "prompt": "{} has frilly tail"}, {"index": 271, "image_id": 2394372, "entity": "dog", "caption": "dog has brown spots", "question": ["is there dog ?", "are there brown spots ?"], "prompt": "{} has brown spots"}, {"index": 272, "image_id": 2394372, "entity": "dog", "caption": "dog wears white collar", "question": ["is there dog ?", "is there white collar ?"], "prompt": "{} wears white collar"}, {"index": 273, "image_id": 2394372, "entity": "dog", "caption": "A dog is on the sand.", "question": ["is there a dog ?", "is there the sand ?"], "prompt": "A {} is on the sand."}, {"index": 274, "image_id": 2394372, "entity": "dog", "caption": "The dog is balck and white.", "question": ["is there the dog ?"], "prompt": "The {} is balck and white."}, {"index": 275, "image_id": 2394372, "entity": "dog", "caption": "The dog has a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} has a collar."}, {"index": 276, "image_id": 2394065, "entity": "dog", "caption": "The dog is licking the water bottle.", "question": ["is there the dog ?", "is there the water bottle ?"], "prompt": "The {} is licking the water bottle."}, {"index": 277, "image_id": 2394065, "entity": "dog", "caption": "The dog is standing next to the person.", "question": ["is there the dog ?", "is there the person ?"], "prompt": "The {} is standing next to the person."}, {"index": 278, "image_id": 2393921, "entity": "dog", "caption": "Aviator glasses on dogs face", "question": ["are there aviator glasses ?", "are there dogs ?"], "prompt": "Aviator glasses on {}s face"}, {"index": 279, "image_id": 2393921, "entity": "dog", "caption": "The dog has glasses on", "question": ["is there the dog ?", "are there glasses ?"], "prompt": "The {} has glasses on"}, {"index": 280, "image_id": 2393921, "entity": "dog", "caption": "The dog has a hat on", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} has a hat on"}, {"index": 281, "image_id": 2393921, "entity": "dog", "caption": "The dog has on a red bib", "question": ["is there the dog ?", "is there a red bib ?"], "prompt": "The {} has on a red bib"}, {"index": 282, "image_id": 2393921, "entity": "dog", "caption": "The dog is sitting in a seat", "question": ["is there the dog ?", "is there a seat ?"], "prompt": "The {} is sitting in a seat"}, {"index": 283, "image_id": 2393366, "entity": "dog", "caption": "this is the dog's nose", "question": ["is there the dog's nose ?"], "prompt": "this is the {}'s nose"}, {"index": 284, "image_id": 2393366, "entity": "dog", "caption": "these are the dog's eyes", "question": ["are there the dog's eyes ?"], "prompt": "these are the {}'s eyes"}, {"index": 285, "image_id": 2393366, "entity": "dog", "caption": "the dog's eye is orange", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is orange"}, {"index": 286, "image_id": 2392895, "entity": "dog", "caption": "a dog with his eyes closed", "question": ["is there a dog ?", "are there his eyes ?"], "prompt": "a {} with his eyes closed"}, {"index": 287, "image_id": 2392895, "entity": "dog", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "{} is on a boat"}, {"index": 288, "image_id": 2392895, "entity": "dog", "caption": "dog has a red collar on", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} has a red collar on"}, {"index": 289, "image_id": 2392895, "entity": "dog", "caption": "dog has a name tag", "question": ["is there dog ?", "is there a name tag ?"], "prompt": "{} has a name tag"}, {"index": 290, "image_id": 2392895, "entity": "dog", "caption": "dog has partially white fur", "question": ["is there dog ?", "is there partially white fur ?"], "prompt": "{} has partially white fur"}, {"index": 291, "image_id": 2392690, "entity": "dog", "caption": "a dog is on the grass", "question": ["is there a dog ?", "is there the grass ?"], "prompt": "a {} is on the grass"}, {"index": 292, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water", "question": ["is there dog ?", "is there water ?"], "prompt": "{} is drinking water"}, {"index": 293, "image_id": 2392690, "entity": "dog", "caption": "dog is drinking water from a bottle", "question": ["is there dog ?", "is there water ?", "is there a bottle ?"], "prompt": "{} is drinking water from a bottle"}, {"index": 294, "image_id": 2392690, "entity": "dog", "caption": "water is dripping from the dogs face", "question": ["is there water ?", "are there the dogs ?"], "prompt": "water is dripping from the {}s face"}, {"index": 295, "image_id": 2392690, "entity": "dog", "caption": "thirsty dog is taking a drink", "question": ["is there thirsty dog ?", "is there a drink ?"], "prompt": "thirsty {} is taking a drink"}, {"index": 296, "image_id": 2392690, "entity": "dog", "caption": "dog has drunk half the water bottle", "question": ["is there dog ?", "is there half the water bottle ?"], "prompt": "{} has drunk half the water bottle"}, {"index": 297, "image_id": 2392606, "entity": "dog", "caption": "The two dogs are waring party hats.", "question": ["are there the two dogs ?", "are there party hats ?"], "prompt": "The two {}s are waring party hats."}, {"index": 298, "image_id": 2392334, "entity": "dog", "caption": "The dog has long hair.", "question": ["is there the dog ?", "is there long hair ?"], "prompt": "The {} has long hair."}, {"index": 299, "image_id": 2392334, "entity": "dog", "caption": "white dog wagging its tail", "question": ["is there white dog ?", "is there its tail ?"], "prompt": "white {} wagging its tail"}, {"index": 300, "image_id": 2392033, "entity": "dog", "caption": "ears of dog are long", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are long"}, {"index": 301, "image_id": 2392033, "entity": "dog", "caption": "tail of brown dog is furry", "question": ["is there tail ?", "is there brown dog ?"], "prompt": "tail of brown {} is furry"}, {"index": 302, "image_id": 2392033, "entity": "dog", "caption": "nose of dog is black", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black"}, {"index": 303, "image_id": 2391972, "entity": "dog", "caption": "dog wears attentive expression", "question": ["is there dog ?", "is there attentive expression ?"], "prompt": "{} wears attentive expression"}, {"index": 304, "image_id": 2391972, "entity": "dog", "caption": "dog has soulful eye, folded down ear", "question": ["is there dog ?", "is there soulful eye ?", "is there ear ?"], "prompt": "{} has soulful eye, folded down ear"}, {"index": 305, "image_id": 2391972, "entity": "dog", "caption": "dog is wearing dog collar", "question": ["is there dog ?", "is there dog collar ?"], "prompt": "{} is wearing {} collar"}, {"index": 306, "image_id": 2391972, "entity": "dog", "caption": "the dog collar is black", "question": ["is there the dog collar ?"], "prompt": "the {} collar is black"}, {"index": 307, "image_id": 2390997, "entity": "dog", "caption": "dog has black leash", "question": ["is there dog ?", "is there black leash ?"], "prompt": "{} has black leash"}, {"index": 308, "image_id": 2390997, "entity": "dog", "caption": "dog has black fur", "question": ["is there dog ?", "is there black fur ?"], "prompt": "{} has black fur"}, {"index": 309, "image_id": 2390997, "entity": "dog", "caption": "this is a dog collar", "question": ["is there a dog collar ?"], "prompt": "this is a {} collar"}, {"index": 310, "image_id": 2390915, "entity": "dog", "caption": "dog has brown eyes", "question": ["is there dog ?", "are there brown eyes ?"], "prompt": "{} has brown eyes"}, {"index": 311, "image_id": 2390915, "entity": "dog", "caption": "these are the dog's paws", "question": ["are there the dog's paws ?"], "prompt": "these are the {}'s paws"}, {"index": 312, "image_id": 2390745, "entity": "dog", "caption": "a dog is lying on his side", "question": ["is there a dog ?", "is there his side ?"], "prompt": "a {} is lying on his side"}, {"index": 313, "image_id": 2390745, "entity": "dog", "caption": "ear of dog is long", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is long"}, {"index": 314, "image_id": 2390745, "entity": "dog", "caption": "The dog's eyes are wide open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are wide open"}, {"index": 315, "image_id": 2390745, "entity": "dog", "caption": "The dog is relaxing", "question": ["is there the dog ?"], "prompt": "The {} is relaxing"}, {"index": 316, "image_id": 2390588, "entity": "dog", "caption": "The dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "The {} has nose"}, {"index": 317, "image_id": 2390588, "entity": "dog", "caption": "the sling is on dog", "question": ["is there the sling ?", "is there dog ?"], "prompt": "the sling is on {}"}, {"index": 318, "image_id": 2390588, "entity": "dog", "caption": "the eyes are on the dog", "question": ["are there the eyes ?", "is there the dog ?"], "prompt": "the eyes are on the {}"}, {"index": 319, "image_id": 2390301, "entity": "dog", "caption": "dog's tongue hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue hanging out"}, {"index": 320, "image_id": 2390301, "entity": "dog", "caption": "The dog closes his eyes", "question": ["is there the dog ?", "are there his eyes ?"], "prompt": "The {} closes his eyes"}, {"index": 321, "image_id": 2390301, "entity": "dog", "caption": "The dogs fur is wet", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is wet"}, {"index": 322, "image_id": 2390301, "entity": "dog", "caption": "The dog has collar on", "question": ["is there the dog ?", "is there collar ?"], "prompt": "The {} has collar on"}, {"index": 323, "image_id": 2390301, "entity": "dog", "caption": "The dog has a black nose", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose"}, {"index": 324, "image_id": 2390301, "entity": "dog", "caption": "The dogs eye is closed", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is closed"}, {"index": 325, "image_id": 2390301, "entity": "dog", "caption": "dog has a large pink tounge", "question": ["is there dog ?", "is there a large pink tounge ?"], "prompt": "{} has a large pink tounge"}, {"index": 326, "image_id": 2390301, "entity": "dog", "caption": "shallow water with dog paws submerged", "question": ["is there shallow water ?", "are there dog paws ?"], "prompt": "shallow water with {} paws submerged"}, {"index": 327, "image_id": 2390301, "entity": "dog", "caption": "tan dog standing in the ocean", "question": ["is there the ocean ?"], "prompt": "tan {} standing in the ocean"}, {"index": 328, "image_id": 2390301, "entity": "dog", "caption": "dog with his tongue hanging out", "question": ["is there dog ?", "is there his tongue ?"], "prompt": "{} with his tongue hanging out"}, {"index": 329, "image_id": 2390135, "entity": "dog", "caption": "Th enose od the dog.", "question": ["is there th enose ?", "is there od the dog ?"], "prompt": "Th enose od the {}."}, {"index": 330, "image_id": 2390135, "entity": "dog", "caption": "The dog rests his head.", "question": ["is there the dog ?", "is there his head ?"], "prompt": "The {} rests his head."}, {"index": 331, "image_id": 2390135, "entity": "dog", "caption": "The dogs ear", "question": ["are there the dogs ?"], "prompt": "The {}s ear"}, {"index": 332, "image_id": 2390135, "entity": "dog", "caption": "The dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye"}, {"index": 333, "image_id": 2390107, "entity": "dog", "caption": "long black dog tail curved up", "question": ["is there long black dog tail ?"], "prompt": "long black {} tail curved up"}, {"index": 334, "image_id": 2390107, "entity": "dog", "caption": "the dog has a white spot on it's leg", "question": ["is there the dog ?", "is there a white spot ?", "is there it's leg ?"], "prompt": "the {} has a white spot on it's leg"}, {"index": 335, "image_id": 2390107, "entity": "dog", "caption": "the dog has a long tail", "question": ["is there the dog ?", "is there a long tail ?"], "prompt": "the {} has a long tail"}, {"index": 336, "image_id": 2390107, "entity": "dog", "caption": "the dog has black paw pads", "question": ["is there the dog ?", "are there black paw pads ?"], "prompt": "the {} has black paw pads"}, {"index": 337, "image_id": 2389769, "entity": "dog", "caption": "dog ears are floppy", "question": ["are there dog ears ?"], "prompt": "{} ears are floppy"}, {"index": 338, "image_id": 2389769, "entity": "dog", "caption": "dog eyes are cute", "question": ["are there dog eyes ?"], "prompt": "{} eyes are cute"}, {"index": 339, "image_id": 2389769, "entity": "dog", "caption": "the dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are closed"}, {"index": 340, "image_id": 2389769, "entity": "dog", "caption": "The dog has tags on ", "question": ["is there the dog ?", "are there tags ?"], "prompt": "The {} has tags on "}, {"index": 341, "image_id": 2389769, "entity": "dog", "caption": "Mans toes beside dog", "question": ["is there dog ?"], "prompt": "Mans toes beside {}"}, {"index": 342, "image_id": 2389636, "entity": "dog", "caption": "the dog has nose", "question": ["is there the dog ?", "is there nose ?"], "prompt": "the {} has nose"}, {"index": 343, "image_id": 2388972, "entity": "dog", "caption": "the grass is below the dog", "question": ["is there the grass ?", "is there the dog ?"], "prompt": "the grass is below the {}"}, {"index": 344, "image_id": 2388671, "entity": "dog", "caption": "white dog is standing looking out on the yard", "question": ["is there white dog ?", "is there the yard ?"], "prompt": "white {} is standing looking out on the yard"}, {"index": 345, "image_id": 2388671, "entity": "dog", "caption": "dog is mostly white", "question": ["is there dog ?"], "prompt": "{} is mostly white"}, {"index": 346, "image_id": 2388671, "entity": "dog", "caption": "dog has brown ears", "question": ["is there dog ?", "are there brown ears ?"], "prompt": "{} has brown ears"}, {"index": 347, "image_id": 2388671, "entity": "dog", "caption": "dog has black collar", "question": ["is there dog ?", "is there black collar ?"], "prompt": "{} has black collar"}, {"index": 348, "image_id": 2388671, "entity": "dog", "caption": "dog has white legs", "question": ["is there dog ?", "are there white legs ?"], "prompt": "{} has white legs"}, {"index": 349, "image_id": 2388320, "entity": "dog", "caption": "The dog has its head on a stuffed animal", "question": ["is there the dog ?", "is there its head ?", "is there a stuffed animal ?"], "prompt": "The {} has its head on a stuffed animal"}, {"index": 350, "image_id": 2388320, "entity": "dog", "caption": "The gate is behind the dog", "question": ["is there the gate ?", "is there the dog ?"], "prompt": "The gate is behind the {}"}, {"index": 351, "image_id": 2388320, "entity": "dog", "caption": "The dog is lying on wood", "question": ["is there the dog ?", "is there wood ?"], "prompt": "The {} is lying on wood"}, {"index": 352, "image_id": 2388066, "entity": "dog", "caption": "dog jumping for frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} jumping for frisbee"}, {"index": 353, "image_id": 2388048, "entity": "dog", "caption": "all are secondary to small dog chewing large toothbrush", "question": ["is there small dog ?", "is there large toothbrush ?"], "prompt": "all are secondary to small {} chewing large toothbrush"}, {"index": 354, "image_id": 2388048, "entity": "dog", "caption": "a dog is lying on a bed", "question": ["is there a dog ?", "is there a bed ?"], "prompt": "a {} is lying on a bed"}, {"index": 355, "image_id": 2388048, "entity": "dog", "caption": "body of dog is brown", "question": ["is there body ?", "is there dog ?"], "prompt": "body of {} is brown"}, {"index": 356, "image_id": 2388048, "entity": "dog", "caption": "head of dog is brown and white", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown and white"}, {"index": 357, "image_id": 2388048, "entity": "dog", "caption": "ears of dog are brown", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are brown"}, {"index": 358, "image_id": 2388048, "entity": "dog", "caption": "dog has a toothbrush in his mouth", "question": ["is there dog ?", "is there a toothbrush ?", "is there his mouth ?"], "prompt": "{} has a toothbrush in his mouth"}, {"index": 359, "image_id": 2388004, "entity": "dog", "caption": "tail of dog is long and curly", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is long and curly"}, {"index": 360, "image_id": 2388004, "entity": "dog", "caption": "front legs of dog are long", "question": ["are there front legs ?", "is there dog ?"], "prompt": "front legs of {} are long"}, {"index": 361, "image_id": 2388004, "entity": "dog", "caption": "The dog has a white spot.", "question": ["is there the dog ?", "is there a white spot ?"], "prompt": "The {} has a white spot."}, {"index": 362, "image_id": 2387774, "entity": "dog", "caption": "dog looks out window", "question": ["is there dog ?"], "prompt": "{} looks out window"}, {"index": 363, "image_id": 2387774, "entity": "dog", "caption": "dog has dark nose", "question": ["is there dog ?", "is there dark nose ?"], "prompt": "{} has dark nose"}, {"index": 364, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted ears", "question": ["is there dog ?", "are there ears ?"], "prompt": "{} has spotted ears"}, {"index": 365, "image_id": 2387774, "entity": "dog", "caption": "dog has spotted face", "question": ["is there dog ?", "is there face ?"], "prompt": "{} has spotted face"}, {"index": 366, "image_id": 2387596, "entity": "dog", "caption": "dog is wearing glasses", "question": ["is there dog ?", "are there glasses ?"], "prompt": "{} is wearing glasses"}, {"index": 367, "image_id": 2387596, "entity": "dog", "caption": "dog has multicolor bandanna", "question": ["is there dog ?", "is there multicolor bandanna ?"], "prompt": "{} has multicolor bandanna"}, {"index": 368, "image_id": 2387596, "entity": "dog", "caption": "dog has white paws", "question": ["is there dog ?", "are there white paws ?"], "prompt": "{} has white paws"}, {"index": 369, "image_id": 2387596, "entity": "dog", "caption": "dog is on skateboard", "question": ["is there dog ?", "is there skateboard ?"], "prompt": "{} is on skateboard"}, {"index": 370, "image_id": 2387596, "entity": "dog", "caption": "The dog is on a leash.", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash."}, {"index": 371, "image_id": 2387470, "entity": "dog", "caption": "The dog's mouth is open. ", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open. "}, {"index": 372, "image_id": 2387448, "entity": "dog", "caption": "black dog jumping in air", "question": ["is there black dog ?", "is there air ?"], "prompt": "black {} jumping in air"}, {"index": 373, "image_id": 2387448, "entity": "dog", "caption": "dog has red collar", "question": ["is there dog ?", "is there red collar ?"], "prompt": "{} has red collar"}, {"index": 374, "image_id": 2387448, "entity": "dog", "caption": "dog has short curly tail", "question": ["is there dog ?", "is there short curly tail ?"], "prompt": "{} has short curly tail"}, {"index": 375, "image_id": 2387448, "entity": "dog", "caption": "grass under dog is green", "question": ["is there grass ?", "is there dog ?"], "prompt": "grass under {} is green"}, {"index": 376, "image_id": 2387387, "entity": "dog", "caption": "dog's tongue sticking out of mouth", "question": ["is there dog's tongue ?", "is there mouth ?"], "prompt": "{}'s tongue sticking out of mouth"}, {"index": 377, "image_id": 2387104, "entity": "dog", "caption": "the dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has a red collar"}, {"index": 378, "image_id": 2387104, "entity": "dog", "caption": "the dog has a brown nose", "question": ["is there the dog ?", "is there a brown nose ?"], "prompt": "the {} has a brown nose"}, {"index": 379, "image_id": 2387104, "entity": "dog", "caption": "the cat is under the dog's chin", "question": ["is there the cat ?", "is there the dog's chin ?"], "prompt": "the cat is under the {}'s chin"}, {"index": 380, "image_id": 2387104, "entity": "dog", "caption": "the dog has a white face", "question": ["is there the dog ?", "is there a white face ?"], "prompt": "the {} has a white face"}, {"index": 381, "image_id": 2386600, "entity": "dog", "caption": "The frisbee is in front of the dog", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The frisbee is in front of the {}"}, {"index": 382, "image_id": 2386600, "entity": "dog", "caption": "dog's teeth showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth showing"}, {"index": 383, "image_id": 2386411, "entity": "dog", "caption": "The dog has a black nose.", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose."}, {"index": 384, "image_id": 2386411, "entity": "dog", "caption": "red bandana dog is wearing", "question": ["is there red bandana dog ?"], "prompt": "red bandana {} is wearing"}, {"index": 385, "image_id": 2386411, "entity": "dog", "caption": "dog's face looking at frisbees", "question": ["is there dog's face ?", "are there frisbees ?"], "prompt": "{}'s face looking at frisbees"}, {"index": 386, "image_id": 2386323, "entity": "dog", "caption": "dog is laying on suit case", "question": ["is there dog ?", "is there suit case ?"], "prompt": "{} is laying on suit case"}, {"index": 387, "image_id": 2386323, "entity": "dog", "caption": "The dog is wearing a gold tag.", "question": ["is there the dog ?", "is there a gold tag ?"], "prompt": "The {} is wearing a gold tag."}, {"index": 388, "image_id": 2386323, "entity": "dog", "caption": "The dog is sitting on a suitcase.", "question": ["is there the dog ?", "is there a suitcase ?"], "prompt": "The {} is sitting on a suitcase."}, {"index": 389, "image_id": 2386037, "entity": "dog", "caption": "dog is jumping above ground", "question": ["is there dog ?", "is there ground ?"], "prompt": "{} is jumping above ground"}, {"index": 390, "image_id": 2386037, "entity": "dog", "caption": "dog is wearing collar", "question": ["is there dog ?", "is there collar ?"], "prompt": "{} is wearing collar"}, {"index": 391, "image_id": 2386031, "entity": "dog", "caption": "dog's tail is up in the air", "question": ["is there dog's tail ?", "is there the air ?"], "prompt": "{}'s tail is up in the air"}, {"index": 392, "image_id": 2386031, "entity": "dog", "caption": "dog's left perked up ear", "question": ["is there ear ?"], "prompt": "{}'s left perked up ear"}, {"index": 393, "image_id": 2386010, "entity": "dog", "caption": "dogs face in a side mirror", "question": ["are there dogs ?", "is there a side mirror ?"], "prompt": "{}s face in a side mirror"}, {"index": 394, "image_id": 2385955, "entity": "dog", "caption": "nose of dog is wet", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is wet"}, {"index": 395, "image_id": 2385955, "entity": "dog", "caption": "eyes of dog are wide open", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are wide open"}, {"index": 396, "image_id": 2385955, "entity": "dog", "caption": "the frisbee is in the dog's mouth", "question": ["is there the frisbee ?", "is there the dog's mouth ?"], "prompt": "the frisbee is in the {}'s mouth"}, {"index": 397, "image_id": 2385955, "entity": "dog", "caption": "the dog's eyes are wild and wide open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are wild and wide open"}, {"index": 398, "image_id": 2385955, "entity": "dog", "caption": "the face of the dog is tricolored", "question": ["is there the face ?", "is there the dog ?"], "prompt": "the face of the {} is tricolored"}, {"index": 399, "image_id": 2385955, "entity": "dog", "caption": "the dog's paw is white", "question": ["is there the dog's paw ?"], "prompt": "the {}'s paw is white"}, {"index": 400, "image_id": 2385955, "entity": "dog", "caption": "grass is under the the dog", "question": ["is there grass ?", "is there the the dog ?"], "prompt": "grass is under the the {}"}, {"index": 401, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} is wearing a cap"}, {"index": 402, "image_id": 2385853, "entity": "dog", "caption": "dog is wearing eyeglasses", "question": ["is there dog ?", "are there eyeglasses ?"], "prompt": "{} is wearing eyeglasses"}, {"index": 403, "image_id": 2385853, "entity": "dog", "caption": "dog's mouth is open", "question": ["is there dog's mouth ?"], "prompt": "{}'s mouth is open"}, {"index": 404, "image_id": 2385762, "entity": "dog", "caption": "a dog has a retractable leash attached to the collar", "question": ["is there a dog ?", "is there a retractable leash ?", "is there the collar ?"], "prompt": "a {} has a retractable leash attached to the collar"}, {"index": 405, "image_id": 2385757, "entity": "dog", "caption": "dog laying in dirt with eyes closed", "question": ["is there dog ?", "is there dirt ?", "are there eyes ?"], "prompt": "{} laying in dirt with eyes closed"}, {"index": 406, "image_id": 2385595, "entity": "dog", "caption": "the dog is lying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is lying on the bed"}, {"index": 407, "image_id": 2385566, "entity": "dog", "caption": "man is holding two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is holding two {}s"}, {"index": 408, "image_id": 2385566, "entity": "dog", "caption": "dog in rear has red collar", "question": ["is there dog ?", "is there rear ?", "is there red collar ?"], "prompt": "{} in rear has red collar"}, {"index": 409, "image_id": 2385566, "entity": "dog", "caption": "man is crouching near two dogs", "question": ["is there man ?", "are there two dogs ?"], "prompt": "man is crouching near two {}s"}, {"index": 410, "image_id": 2385566, "entity": "dog", "caption": "dog with its mouth wide open", "question": ["is there dog ?", "is there its mouth ?"], "prompt": "{} with its mouth wide open"}, {"index": 411, "image_id": 2385566, "entity": "dog", "caption": "man's hand resting on dog's hip", "question": ["is there man's hand ?", "is there dog's hip ?"], "prompt": "man's hand resting on {}'s hip"}, {"index": 412, "image_id": 2385466, "entity": "dog", "caption": "dog's eyes are brown", "question": ["are there dog's eyes ?"], "prompt": "{}'s eyes are brown"}, {"index": 413, "image_id": 2385466, "entity": "dog", "caption": "dog's whiskers are white", "question": ["are there dog's whiskers ?"], "prompt": "{}'s whiskers are white"}, {"index": 414, "image_id": 2385466, "entity": "dog", "caption": "dog is next to the window", "question": ["is there dog ?", "is there the window ?"], "prompt": "{} is next to the window"}, {"index": 415, "image_id": 2385466, "entity": "dog", "caption": "dog's ears are down", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are down"}, {"index": 416, "image_id": 2385466, "entity": "dog", "caption": "the dog has a silver tag", "question": ["is there the dog ?", "is there a silver tag ?"], "prompt": "the {} has a silver tag"}, {"index": 417, "image_id": 2385466, "entity": "dog", "caption": "the dog is in the passenger seat", "question": ["is there the dog ?", "is there the passenger seat ?"], "prompt": "the {} is in the passenger seat"}, {"index": 418, "image_id": 2385466, "entity": "dog", "caption": "the dog has white parts of the eyes showing", "question": ["is there the dog ?", "are there white parts ?", "are there the eyes ?"], "prompt": "the {} has white parts of the eyes showing"}, {"index": 419, "image_id": 2385466, "entity": "dog", "caption": "A dog has a tag", "question": ["is there a dog ?", "is there a tag ?"], "prompt": "A {} has a tag"}, {"index": 420, "image_id": 2385345, "entity": "dog", "caption": "the dog is leaning on the bedding", "question": ["is there the dog ?", "is there the bedding ?"], "prompt": "the {} is leaning on the bedding"}, {"index": 421, "image_id": 2385345, "entity": "dog", "caption": "the bed is behind the dog", "question": ["is there the bed ?", "is there the dog ?"], "prompt": "the bed is behind the {}"}, {"index": 422, "image_id": 2385299, "entity": "dog", "caption": "white dog is lying on a bed", "question": ["is there white dog ?", "is there a bed ?"], "prompt": "white {} is lying on a bed"}, {"index": 423, "image_id": 2385299, "entity": "dog", "caption": "tail of dog is on bed", "question": ["is there tail ?", "is there dog ?", "is there bed ?"], "prompt": "tail of {} is on bed"}, {"index": 424, "image_id": 2385299, "entity": "dog", "caption": "eyes of dog are black", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are black"}, {"index": 425, "image_id": 2385299, "entity": "dog", "caption": "eyes and nose of dog are black", "question": ["are there eyes ?", "is there nose ?", "is there dog ?"], "prompt": "eyes and nose of {} are black"}, {"index": 426, "image_id": 2385299, "entity": "dog", "caption": "a dog collar has a tag", "question": ["is there a dog collar ?", "is there a tag ?"], "prompt": "a {} collar has a tag"}, {"index": 427, "image_id": 2385299, "entity": "dog", "caption": "legs and chest of dog are white", "question": ["are there legs ?", "is there chest ?", "is there dog ?"], "prompt": "legs and chest of {} are white"}, {"index": 428, "image_id": 2384917, "entity": "dog", "caption": "dogs tongue sticking out", "question": ["are there dogs ?", "is there tongue ?"], "prompt": "{}s tongue sticking out"}, {"index": 429, "image_id": 2384917, "entity": "dog", "caption": "brown pointy ear on dog", "question": ["is there brown pointy ear ?", "is there dog ?"], "prompt": "brown pointy ear on {}"}, {"index": 430, "image_id": 2384563, "entity": "dog", "caption": "dog curled up on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} curled up on a couch"}, {"index": 431, "image_id": 2384563, "entity": "dog", "caption": "a dog curled up on a cushion", "question": ["is there a dog ?", "is there a cushion ?"], "prompt": "a {} curled up on a cushion"}, {"index": 432, "image_id": 2384452, "entity": "dog", "caption": "dog is wearing a green collar ", "question": ["is there dog ?", "is there a green collar ?"], "prompt": "{} is wearing a green collar "}, {"index": 433, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear is bent ", "question": ["are there the dogs ?"], "prompt": "the {}s ear is bent "}, {"index": 434, "image_id": 2384452, "entity": "dog", "caption": "the dogs ear ", "question": ["are there the dogs ?"], "prompt": "the {}s ear "}, {"index": 435, "image_id": 2384424, "entity": "dog", "caption": "the dog is beside the bike", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is beside the bike"}, {"index": 436, "image_id": 2384322, "entity": "dog", "caption": "Reindeer stuffed animal on the dog.", "question": ["is there reindeer ?", "is there animal ?", "is there the dog ?"], "prompt": "Reindeer stuffed animal on the {}."}, {"index": 437, "image_id": 2384105, "entity": "dog", "caption": "dog's collar is green", "question": ["is there dog's collar ?"], "prompt": "{}'s collar is green"}, {"index": 438, "image_id": 2384105, "entity": "dog", "caption": "the dog bed is plaid patterned", "question": ["is there the dog bed ?"], "prompt": "the {} bed is plaid patterned"}, {"index": 439, "image_id": 2384105, "entity": "dog", "caption": "dog's ears pointing upwards", "question": ["are there dog's ears ?"], "prompt": "{}'s ears pointing upwards"}, {"index": 440, "image_id": 2384105, "entity": "dog", "caption": "Black pillow dog is laying on", "question": ["is there black pillow dog ?"], "prompt": "Black pillow {} is laying on"}, {"index": 441, "image_id": 2384105, "entity": "dog", "caption": "Collar dog is wearing", "question": ["is there collar dog ?"], "prompt": "Collar {} is wearing"}, {"index": 442, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan", "question": ["is there dog toy ?", "is there tan ?"], "prompt": "{} toy is tan"}, {"index": 443, "image_id": 2383524, "entity": "dog", "caption": "dog is lying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying on the floor"}, {"index": 444, "image_id": 2383524, "entity": "dog", "caption": "dog has the toy in it's mouth", "question": ["is there dog ?", "is there the toy ?"], "prompt": "{} has the toy in it's mouth"}, {"index": 445, "image_id": 2383524, "entity": "dog", "caption": "dog toy is tan and hairy", "question": ["is there dog toy ?"], "prompt": "{} toy is tan and hairy"}, {"index": 446, "image_id": 2383524, "entity": "dog", "caption": "dog has whiskers that are white", "question": ["is there dog ?", "are there whiskers ?"], "prompt": "{} has whiskers that are white"}, {"index": 447, "image_id": 2383524, "entity": "dog", "caption": "dog is laying on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is laying on the floor"}, {"index": 448, "image_id": 2383524, "entity": "dog", "caption": "dog has black ears", "question": ["is there dog ?", "are there black ears ?"], "prompt": "{} has black ears"}, {"index": 449, "image_id": 2383524, "entity": "dog", "caption": "dog is lying down on the floor", "question": ["is there dog ?", "is there the floor ?"], "prompt": "{} is lying down on the floor"}, {"index": 450, "image_id": 2383524, "entity": "dog", "caption": "dog toy is brown", "question": ["is there dog toy ?"], "prompt": "{} toy is brown"}, {"index": 451, "image_id": 2383524, "entity": "dog", "caption": "dog has toy in it's mouth", "question": ["is there dog ?", "is there toy ?", "is there it's mouth ?"], "prompt": "{} has toy in it's mouth"}, {"index": 452, "image_id": 2383524, "entity": "dog", "caption": "dog has white whiskers", "question": ["is there dog ?", "are there white whiskers ?"], "prompt": "{} has white whiskers"}, {"index": 453, "image_id": 2383524, "entity": "dog", "caption": "the dog has a nose", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "the {} has a nose"}, {"index": 454, "image_id": 2383524, "entity": "dog", "caption": "the dog has eyes", "question": ["is there the dog ?", "are there eyes ?"], "prompt": "the {} has eyes"}, {"index": 455, "image_id": 2383524, "entity": "dog", "caption": "the dog has an ear", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "the {} has an ear"}, {"index": 456, "image_id": 2383524, "entity": "dog", "caption": "The dog's face looks angry", "question": ["is there the dog's face ?"], "prompt": "The {}'s face looks angry"}, {"index": 457, "image_id": 2383242, "entity": "dog", "caption": "The dog is between the persons legs", "question": ["is there the dog ?", "are there the persons legs ?"], "prompt": "The {} is between the persons legs"}, {"index": 458, "image_id": 2382434, "entity": "dog", "caption": "The dog is on the counter", "question": ["is there the dog ?", "is there the counter ?"], "prompt": "The {} is on the counter"}, {"index": 459, "image_id": 2382434, "entity": "dog", "caption": "The dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black"}, {"index": 460, "image_id": 2382434, "entity": "dog", "caption": "The dog has long fur.", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur."}, {"index": 461, "image_id": 2382434, "entity": "dog", "caption": "The dog is on a table.", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table."}, {"index": 462, "image_id": 2382434, "entity": "dog", "caption": "The dog is sniffing the newspaper.", "question": ["is there the dog ?", "is there the newspaper ?"], "prompt": "The {} is sniffing the newspaper."}, {"index": 463, "image_id": 2382434, "entity": "dog", "caption": "The dog has curly fur", "question": ["is there the dog ?", "is there curly fur ?"], "prompt": "The {} has curly fur"}, {"index": 464, "image_id": 2382434, "entity": "dog", "caption": "the dog`s nose is black", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is black"}, {"index": 465, "image_id": 2382434, "entity": "dog", "caption": "the dog`s eyes are black", "question": ["are there the dog`s eyes ?"], "prompt": "the {}`s eyes are black"}, {"index": 466, "image_id": 2382434, "entity": "dog", "caption": "the dog`s hair is curly", "question": ["is there the dog`s hair ?"], "prompt": "the {}`s hair is curly"}, {"index": 467, "image_id": 2382434, "entity": "dog", "caption": "the dog is smelling the paper", "question": ["is there the dog ?", "is there the paper ?"], "prompt": "the {} is smelling the paper"}, {"index": 468, "image_id": 2382396, "entity": "dog", "caption": "a dog is asleep", "question": ["is there a dog ?"], "prompt": "a {} is asleep"}, {"index": 469, "image_id": 2382396, "entity": "dog", "caption": "The dog's paw is on the remote", "question": ["is there the dog's paw ?", "is there the remote ?"], "prompt": "The {}'s paw is on the remote"}, {"index": 470, "image_id": 2382396, "entity": "dog", "caption": "The dog's eyes are closed", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are closed"}, {"index": 471, "image_id": 2382396, "entity": "dog", "caption": "The dog is sleep on the couch.", "question": ["is there the dog ?", "is there sleep ?", "is there the couch ?"], "prompt": "The {} is sleep on the couch."}, {"index": 472, "image_id": 2382396, "entity": "dog", "caption": "The dog has two ears.", "question": ["is there the dog ?", "are there two ears ?"], "prompt": "The {} has two ears."}, {"index": 473, "image_id": 2382396, "entity": "dog", "caption": "A dog is in the foreground", "question": ["is there a dog ?", "is there the foreground ?"], "prompt": "A {} is in the foreground"}, {"index": 474, "image_id": 2382082, "entity": "dog", "caption": "the dog`s nose is brown", "question": ["is there the dog`s nose ?"], "prompt": "the {}`s nose is brown"}, {"index": 475, "image_id": 2382082, "entity": "dog", "caption": "the dog`s stomach is wet", "question": ["is there the dog`s stomach ?"], "prompt": "the {}`s stomach is wet"}, {"index": 476, "image_id": 2382082, "entity": "dog", "caption": "dog is in the beach", "question": ["is there dog ?", "is there the beach ?"], "prompt": "{} is in the beach"}, {"index": 477, "image_id": 2382082, "entity": "dog", "caption": "tail of dog is up", "question": ["is there tail ?", "is there dog ?"], "prompt": "tail of {} is up"}, {"index": 478, "image_id": 2382082, "entity": "dog", "caption": "face of dog is white and brown", "question": ["is there face ?", "is there dog ?"], "prompt": "face of {} is white and brown"}, {"index": 479, "image_id": 2382082, "entity": "dog", "caption": "collar of dog is black", "question": ["is there collar ?", "is there dog ?"], "prompt": "collar of {} is black"}, {"index": 480, "image_id": 2382082, "entity": "dog", "caption": "ears of dog are down ", "question": ["are there ears ?", "is there dog ?"], "prompt": "ears of {} are down "}, {"index": 481, "image_id": 2381848, "entity": "dog", "caption": "ear of dog is brown", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is brown"}, {"index": 482, "image_id": 2381777, "entity": "dog", "caption": "Leash attached to the dog", "question": ["is there the dog ?"], "prompt": "Leash attached to the {}"}, {"index": 483, "image_id": 2381777, "entity": "dog", "caption": "the dog is wearing a floater", "question": ["is there the dog ?", "is there a floater ?"], "prompt": "the {} is wearing a floater"}, {"index": 484, "image_id": 2381777, "entity": "dog", "caption": "this is the rope tying the dog", "question": ["is there the rope ?", "is there the dog ?"], "prompt": "this is the rope tying the {}"}, {"index": 485, "image_id": 2381403, "entity": "dog", "caption": "bull dog is wearing a black and red vest ", "question": ["is there bull dog ?", "is there a black and red vest ?"], "prompt": "bull {} is wearing a black and red vest "}, {"index": 486, "image_id": 2381403, "entity": "dog", "caption": "bull dog is standing on a blue surfboard ", "question": ["is there bull dog ?", "is there a blue surfboard ?"], "prompt": "bull {} is standing on a blue surfboard "}, {"index": 487, "image_id": 2381403, "entity": "dog", "caption": "the dog has an overbite", "question": ["is there the dog ?", "is there an overbite ?"], "prompt": "the {} has an overbite"}, {"index": 488, "image_id": 2381403, "entity": "dog", "caption": "the dog is wearing a life vest", "question": ["is there the dog ?", "is there a life vest ?"], "prompt": "the {} is wearing a life vest"}, {"index": 489, "image_id": 2381403, "entity": "dog", "caption": "the dog has front legs", "question": ["is there the dog ?", "are there front legs ?"], "prompt": "the {} has front legs"}, {"index": 490, "image_id": 2381403, "entity": "dog", "caption": "the dog is on the board", "question": ["is there the dog ?", "is there the board ?"], "prompt": "the {} is on the board"}, {"index": 491, "image_id": 2381375, "entity": "dog", "caption": "the dog is lying on the ground", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is lying on the ground"}, {"index": 492, "image_id": 2381375, "entity": "dog", "caption": "the dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} is on a leash"}, {"index": 493, "image_id": 2380480, "entity": "dog", "caption": "The dog's reflection is in a mirror.", "question": ["is there the dog's reflection ?", "is there a mirror ?"], "prompt": "The {}'s reflection is in a mirror."}, {"index": 494, "image_id": 2380480, "entity": "dog", "caption": "The dog's tongue is showing. ", "question": ["is there the dog's tongue ?"], "prompt": "The {}'s tongue is showing. "}, {"index": 495, "image_id": 2380480, "entity": "dog", "caption": "The dog's legs are in the foreground.", "question": ["are there the dog's legs ?", "is there the foreground ?"], "prompt": "The {}'s legs are in the foreground."}, {"index": 496, "image_id": 2380480, "entity": "dog", "caption": "The dog's nose is black. ", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black. "}, {"index": 497, "image_id": 2380480, "entity": "dog", "caption": "the dog has an eye", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 498, "image_id": 2380480, "entity": "dog", "caption": "the dog has a tongue", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "the {} has a tongue"}, {"index": 499, "image_id": 2380480, "entity": "dog", "caption": "the dog has a long ear", "question": ["is there the dog ?", "is there a long ear ?"], "prompt": "the {} has a long ear"}, {"index": 500, "image_id": 2380237, "entity": "dog", "caption": "the dog has its mouth open", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open"}, {"index": 501, "image_id": 2380237, "entity": "dog", "caption": "the dog has a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar"}, {"index": 502, "image_id": 2380237, "entity": "dog", "caption": "the dog's collar is blue", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is blue"}, {"index": 503, "image_id": 2380237, "entity": "dog", "caption": "the dog has a pointy ear", "question": ["is there the dog ?", "is there a pointy ear ?"], "prompt": "the {} has a pointy ear"}, {"index": 504, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy ears", "question": ["is there dog ?", "are there pointy ears ?"], "prompt": "{} has pointy ears"}, {"index": 505, "image_id": 2380237, "entity": "dog", "caption": "dog has short legs", "question": ["is there dog ?", "are there short legs ?"], "prompt": "{} has short legs"}, {"index": 506, "image_id": 2380237, "entity": "dog", "caption": "dog has pointy teeth", "question": ["is there dog ?", "are there pointy teeth ?"], "prompt": "{} has pointy teeth"}, {"index": 507, "image_id": 2380237, "entity": "dog", "caption": "the dog is attempting to catch a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is attempting to catch a frisbee"}, {"index": 508, "image_id": 2380237, "entity": "dog", "caption": "the dog is down on his \"knees\"", "question": ["is there the dog ?", "are there his \"knees ?"], "prompt": "the {} is down on his \"knees\""}, {"index": 509, "image_id": 2380237, "entity": "dog", "caption": "dog's mouth wide open", "question": [], "prompt": "{}'s mouth wide open"}, {"index": 510, "image_id": 2380220, "entity": "dog", "caption": "dog is laying on stuffed animal ", "question": ["is there dog ?", "is there stuffed animal ?"], "prompt": "{} is laying on stuffed animal "}, {"index": 511, "image_id": 2380220, "entity": "dog", "caption": "dogs ear is black ", "question": ["are there dogs ?"], "prompt": "{}s ear is black "}, {"index": 512, "image_id": 2379710, "entity": "dog", "caption": "water splashing next to dog", "question": ["is there dog ?"], "prompt": "water splashing next to {}"}, {"index": 513, "image_id": 2379519, "entity": "dog", "caption": "The dog has it's tongue out.", "question": ["is there the dog ?", "is there tongue ?"], "prompt": "The {} has it's tongue out."}, {"index": 514, "image_id": 2379519, "entity": "dog", "caption": "The dog has brown eyes.", "question": ["is there the dog ?", "are there brown eyes ?"], "prompt": "The {} has brown eyes."}, {"index": 515, "image_id": 2379470, "entity": "dog", "caption": "The dog has a brown spot over one eye.", "question": ["is there the dog ?", "is there a brown spot ?", "is there one eye ?"], "prompt": "The {} has a brown spot over one eye."}, {"index": 516, "image_id": 2379470, "entity": "dog", "caption": "The dog has a spotted ear.", "question": ["is there the dog ?", "is there a spotted ear ?"], "prompt": "The {} has a spotted ear."}, {"index": 517, "image_id": 2379470, "entity": "dog", "caption": "The dog has a short tail.", "question": ["is there the dog ?", "is there a short tail ?"], "prompt": "The {} has a short tail."}, {"index": 518, "image_id": 2379470, "entity": "dog", "caption": "The dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar."}, {"index": 519, "image_id": 2379470, "entity": "dog", "caption": "The dog has a closed mouth.", "question": ["is there the dog ?", "is there a closed mouth ?"], "prompt": "The {} has a closed mouth."}, {"index": 520, "image_id": 2378890, "entity": "dog", "caption": "The dog has a chain collar.", "question": ["is there the dog ?", "is there a chain collar ?"], "prompt": "The {} has a chain collar."}, {"index": 521, "image_id": 2378890, "entity": "dog", "caption": "The dog is playing with the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee."}, {"index": 522, "image_id": 2378872, "entity": "dog", "caption": "dog has grey fur", "question": ["is there dog ?"], "prompt": "{} has grey fur"}, {"index": 523, "image_id": 2378872, "entity": "dog", "caption": "other dog has black fur", "question": ["is there other dog ?", "is there black fur ?"], "prompt": "other {} has black fur"}, {"index": 524, "image_id": 2378872, "entity": "dog", "caption": "other dog has brown face", "question": ["is there other dog ?", "is there brown face ?"], "prompt": "other {} has brown face"}, {"index": 525, "image_id": 2378872, "entity": "dog", "caption": "nose of the dog with mouth closed", "question": ["is there nose ?", "is there the dog ?", "is there mouth ?"], "prompt": "nose of the {} with mouth closed"}, {"index": 526, "image_id": 2378872, "entity": "dog", "caption": "eye of the dog with mouth shut", "question": ["is there eye ?", "is there the dog ?", "is there mouth ?"], "prompt": "eye of the {} with mouth shut"}, {"index": 527, "image_id": 2378738, "entity": "dog", "caption": "the dog's tongue is sticking out", "question": ["is there the dog's tongue ?"], "prompt": "the {}'s tongue is sticking out"}, {"index": 528, "image_id": 2378738, "entity": "dog", "caption": "the dog is wearing a harness", "question": ["is there the dog ?", "is there a harness ?"], "prompt": "the {} is wearing a harness"}, {"index": 529, "image_id": 2378738, "entity": "dog", "caption": "the dog has whiskers ", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "the {} has whiskers "}, {"index": 530, "image_id": 2378738, "entity": "dog", "caption": "the dog's collar has a silver tag", "question": ["is there the dog's collar ?", "is there a silver tag ?"], "prompt": "the {}'s collar has a silver tag"}, {"index": 531, "image_id": 2378738, "entity": "dog", "caption": "the dog has teeth", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "the {} has teeth"}, {"index": 532, "image_id": 2378738, "entity": "dog", "caption": "the dogs curved tail", "question": ["are there the dogs ?", "is there tail ?"], "prompt": "the {}s curved tail"}, {"index": 533, "image_id": 2378738, "entity": "dog", "caption": "the dog collar is dark brown", "question": ["is there the dog collar ?"], "prompt": "the {} collar is dark brown"}, {"index": 534, "image_id": 2378738, "entity": "dog", "caption": "the dog`s mouth is open", "question": ["is there the dog`s mouth ?"], "prompt": "the {}`s mouth is open"}, {"index": 535, "image_id": 2378738, "entity": "dog", "caption": "the dog`s neck is white", "question": ["is there the dog`s neck ?"], "prompt": "the {}`s neck is white"}, {"index": 536, "image_id": 2378738, "entity": "dog", "caption": "the dog`s face is multi colored", "question": ["is there the dog`s face ?"], "prompt": "the {}`s face is multi colored"}, {"index": 537, "image_id": 2378013, "entity": "dog", "caption": "paws of dog are black", "question": ["are there paws ?", "is there dog ?"], "prompt": "paws of {} are black"}, {"index": 538, "image_id": 2378013, "entity": "dog", "caption": "hair eyes of dog are big", "question": ["are there hair eyes ?", "is there dog ?"], "prompt": "hair eyes of {} are big"}, {"index": 539, "image_id": 2378013, "entity": "dog", "caption": "dog is wearing a bandana", "question": ["is there dog ?", "is there a bandana ?"], "prompt": "{} is wearing a bandana"}, {"index": 540, "image_id": 2377946, "entity": "dog", "caption": "The dog is on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "The {} is on the bed"}, {"index": 541, "image_id": 2377946, "entity": "dog", "caption": "The dog has a red blanket", "question": ["is there the dog ?", "is there a red blanket ?"], "prompt": "The {} has a red blanket"}, {"index": 542, "image_id": 2377695, "entity": "dog", "caption": "the dogs pink tounge", "question": ["are there the dogs ?"], "prompt": "the {}s pink tounge"}, {"index": 543, "image_id": 2377541, "entity": "dog", "caption": "a dogs ear with black spots", "question": ["are there a dogs ?", "are there black spots ?"], "prompt": "a {}s ear with black spots"}, {"index": 544, "image_id": 2377541, "entity": "dog", "caption": "wet dog standing in pond", "question": ["is there wet dog ?", "is there pond ?"], "prompt": "wet {} standing in pond"}, {"index": 545, "image_id": 2377276, "entity": "dog", "caption": "fur of dog is long", "question": ["is there fur ?", "is there dog ?"], "prompt": "fur of {} is long"}, {"index": 546, "image_id": 2377096, "entity": "dog", "caption": "the dog's snout is black", "question": ["is there the dog's snout ?"], "prompt": "the {}'s snout is black"}, {"index": 547, "image_id": 2377096, "entity": "dog", "caption": "the dog has a leather collar", "question": ["is there the dog ?", "is there a leather collar ?"], "prompt": "the {} has a leather collar"}, {"index": 548, "image_id": 2377096, "entity": "dog", "caption": "the dog has black ears ", "question": ["is there the dog ?", "are there black ears ?"], "prompt": "the {} has black ears "}, {"index": 549, "image_id": 2376453, "entity": "dog", "caption": "the dog has an orange collar ", "question": ["is there the dog ?", "is there an orange collar ?"], "prompt": "the {} has an orange collar "}, {"index": 550, "image_id": 2376453, "entity": "dog", "caption": "this is an ear of a dog", "question": ["is there an ear ?", "is there a dog ?"], "prompt": "this is an ear of a {}"}, {"index": 551, "image_id": 2376453, "entity": "dog", "caption": "this is a tongue of a dog", "question": ["is there a tongue ?", "is there a dog ?"], "prompt": "this is a tongue of a {}"}, {"index": 552, "image_id": 2376453, "entity": "dog", "caption": "two dogs leashed to post", "question": ["are there two dogs ?"], "prompt": "two {}s leashed to post"}, {"index": 553, "image_id": 2376453, "entity": "dog", "caption": "two dogs tied to a tree", "question": ["are there two dogs ?", "is there a tree ?"], "prompt": "two {}s tied to a tree"}, {"index": 554, "image_id": 2376406, "entity": "dog", "caption": "dog has it's mouth open", "question": ["is there dog ?"], "prompt": "{} has it's mouth open"}, {"index": 555, "image_id": 2376406, "entity": "dog", "caption": "dog is leaning against the sofa", "question": ["is there dog ?", "is there the sofa ?"], "prompt": "{} is leaning against the sofa"}, {"index": 556, "image_id": 2376406, "entity": "dog", "caption": "dog's teeth are white", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are white"}, {"index": 557, "image_id": 2376134, "entity": "dog", "caption": "A dog is smelling a cat", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A {} is smelling a cat"}, {"index": 558, "image_id": 2376134, "entity": "dog", "caption": "An old dog is greeting the new cat", "question": ["is there an old dog ?", "is there the new cat ?"], "prompt": "An old {} is greeting the new cat"}, {"index": 559, "image_id": 2376134, "entity": "dog", "caption": "A cat is friends with a dog", "question": ["is there a cat ?", "are there friends ?", "is there a dog ?"], "prompt": "A cat is friends with a {}"}, {"index": 560, "image_id": 2376134, "entity": "dog", "caption": "dog has two ears.", "question": ["is there dog ?", "are there two ears ?"], "prompt": "{} has two ears."}, {"index": 561, "image_id": 2376108, "entity": "dog", "caption": "dog has purple collar", "question": ["is there dog ?", "is there purple collar ?"], "prompt": "{} has purple collar"}, {"index": 562, "image_id": 2376108, "entity": "dog", "caption": "dog has brown nose", "question": ["is there dog ?", "is there brown nose ?"], "prompt": "{} has brown nose"}, {"index": 563, "image_id": 2376108, "entity": "dog", "caption": "dog has light brown hair", "question": ["is there dog ?", "is there light brown hair ?"], "prompt": "{} has light brown hair"}, {"index": 564, "image_id": 2376108, "entity": "dog", "caption": "dog has dark brown ears", "question": ["is there dog ?", "are there dark brown ears ?"], "prompt": "{} has dark brown ears"}, {"index": 565, "image_id": 2375658, "entity": "dog", "caption": "Sad looking dog face", "question": ["is there sad looking dog face ?"], "prompt": "Sad looking {} face"}, {"index": 566, "image_id": 2375561, "entity": "dog", "caption": "The dog is wearing a blue harness", "question": ["is there the dog ?", "is there a blue harness ?"], "prompt": "The {} is wearing a blue harness"}, {"index": 567, "image_id": 2375561, "entity": "dog", "caption": "The dog is standing on a chair.", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} is standing on a chair."}, {"index": 568, "image_id": 2375451, "entity": "dog", "caption": "the dogs nose is black ", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black "}, {"index": 569, "image_id": 2375428, "entity": "dog", "caption": "The dog is looking at the camera", "question": ["is there the dog ?", "is there the camera ?"], "prompt": "The {} is looking at the camera"}, {"index": 570, "image_id": 2375428, "entity": "dog", "caption": "The dog has long fur", "question": ["is there the dog ?", "is there long fur ?"], "prompt": "The {} has long fur"}, {"index": 571, "image_id": 2374930, "entity": "dog", "caption": "baby is leaning on a dog", "question": ["is there baby ?", "is there a dog ?"], "prompt": "baby is leaning on a {}"}, {"index": 572, "image_id": 2374930, "entity": "dog", "caption": "nose of dog is brown ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is brown "}, {"index": 573, "image_id": 2374268, "entity": "dog", "caption": "the dog's leg hanging over the sofa", "question": ["is there the dog's leg ?", "is there the sofa ?"], "prompt": "the {}'s leg hanging over the sofa"}, {"index": 574, "image_id": 2374268, "entity": "dog", "caption": "dog has face buried in the couch", "question": ["is there dog ?", "is there face ?", "is there the couch ?"], "prompt": "{} has face buried in the couch"}, {"index": 575, "image_id": 2374132, "entity": "dog", "caption": "dog has light brown paws", "question": ["is there dog ?", "are there light brown paws ?"], "prompt": "{} has light brown paws"}, {"index": 576, "image_id": 2374013, "entity": "dog", "caption": "dog's ears are light brown", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are light brown"}, {"index": 577, "image_id": 2373955, "entity": "dog", "caption": "a brown hat the dog is wearing", "question": ["is there a brown hat ?", "is there the dog ?"], "prompt": "a brown hat the {} is wearing"}, {"index": 578, "image_id": 2373955, "entity": "dog", "caption": "black dog kissing man", "question": ["is there black dog kissing man ?"], "prompt": "black {} kissing man"}, {"index": 579, "image_id": 2373533, "entity": "dog", "caption": "eyes of dog are big", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are big"}, {"index": 580, "image_id": 2373533, "entity": "dog", "caption": "mouth of dog is touching a rail", "question": ["is there mouth ?", "is there dog ?", "is there a rail ?"], "prompt": "mouth of {} is touching a rail"}, {"index": 581, "image_id": 2373340, "entity": "dog", "caption": "dog is wearing pink collar", "question": ["is there dog ?", "is there pink collar ?"], "prompt": "{} is wearing pink collar"}, {"index": 582, "image_id": 2373340, "entity": "dog", "caption": "dogs nose is brown", "question": ["are there dogs nose ?"], "prompt": "{}s nose is brown"}, {"index": 583, "image_id": 2373340, "entity": "dog", "caption": "dog right ear is brown", "question": ["is there dog right ear ?"], "prompt": "{} right ear is brown"}, {"index": 584, "image_id": 2373155, "entity": "dog", "caption": "dogs has a chain on his neck", "question": ["are there dogs ?", "is there a chain ?", "is there his neck ?"], "prompt": "{}s has a chain on his neck"}, {"index": 585, "image_id": 2373141, "entity": "dog", "caption": "This is a man with a dog", "question": ["is there a man ?", "is there a dog ?"], "prompt": "This is a man with a {}"}, {"index": 586, "image_id": 2373109, "entity": "dog", "caption": "the dog is on the ground ", "question": ["is there the dog ?", "is there the ground ?"], "prompt": "the {} is on the ground "}, {"index": 587, "image_id": 2373073, "entity": "dog", "caption": "dog is wearing a hat ", "question": ["is there dog ?", "is there a hat ?"], "prompt": "{} is wearing a hat "}, {"index": 588, "image_id": 2372988, "entity": "dog", "caption": "Water drips down dog's face.", "question": ["is there water ?", "is there dog's face ?"], "prompt": "Water drips down {}'s face."}, {"index": 589, "image_id": 2372988, "entity": "dog", "caption": "dog is wearing a chain", "question": ["is there dog ?", "is there a chain ?"], "prompt": "{} is wearing a chain"}, {"index": 590, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A {} is riding in a car"}, {"index": 591, "image_id": 2372618, "entity": "dog", "caption": "A dog is riding in the passenger seat", "question": ["is there a dog ?", "is there the passenger seat ?"], "prompt": "A {} is riding in the passenger seat"}, {"index": 592, "image_id": 2372618, "entity": "dog", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A {} is in its master's car"}, {"index": 593, "image_id": 2372618, "entity": "dog", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} likes riding in a car"}, {"index": 594, "image_id": 2372618, "entity": "dog", "caption": "The dog is looking out the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "The {} is looking out the window"}, {"index": 595, "image_id": 2372586, "entity": "dog", "caption": "The dog is sitting on a bench.", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is sitting on a bench."}, {"index": 596, "image_id": 2372586, "entity": "dog", "caption": "dog is wearing a blue harness", "question": ["is there dog ?", "is there a blue harness ?"], "prompt": "{} is wearing a blue harness"}, {"index": 597, "image_id": 2372586, "entity": "dog", "caption": "the dog has a white belly", "question": ["is there the dog ?", "is there a white belly ?"], "prompt": "the {} has a white belly"}, {"index": 598, "image_id": 2372549, "entity": "dog", "caption": "the dog looks sleepy", "question": ["is there the dog ?"], "prompt": "the {} looks sleepy"}, {"index": 599, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is laying on a stuffed animal"}, {"index": 600, "image_id": 2372549, "entity": "dog", "caption": "the dog is pale tan in color", "question": ["is there the dog ?", "is there pale tan ?", "is there color ?"], "prompt": "the {} is pale tan in color"}, {"index": 601, "image_id": 2372549, "entity": "dog", "caption": "stuffed animal dog is sleeping on", "question": ["is there stuffed animal dog ?"], "prompt": "stuffed animal {} is sleeping on"}, {"index": 602, "image_id": 2372549, "entity": "dog", "caption": "red bed dog is sleeping on", "question": ["is there red bed dog ?"], "prompt": "red bed {} is sleeping on"}, {"index": 603, "image_id": 2372549, "entity": "dog", "caption": "the cushion under the dog is red", "question": ["is there the cushion ?", "is there the dog ?"], "prompt": "the cushion under the {} is red"}, {"index": 604, "image_id": 2372549, "entity": "dog", "caption": "the dog is laying on a cushion", "question": ["is there the dog ?", "is there a cushion ?"], "prompt": "the {} is laying on a cushion"}, {"index": 605, "image_id": 2372549, "entity": "dog", "caption": "The dog ear on the right", "question": ["is there the dog ear ?", "is there the right ?"], "prompt": "The {} ear on the right"}, {"index": 606, "image_id": 2372293, "entity": "dog", "caption": "Dog leash on the beige dog", "question": ["is there dog ?", "is there the beige dog ?"], "prompt": "Dog leash on the beige {}"}, {"index": 607, "image_id": 2372293, "entity": "dog", "caption": "dog has white teeth", "question": ["is there dog ?", "are there white teeth ?"], "prompt": "{} has white teeth"}, {"index": 608, "image_id": 2372293, "entity": "dog", "caption": "dog has black under his lip", "question": ["is there dog ?", "is there his lip ?"], "prompt": "{} has black under his lip"}, {"index": 609, "image_id": 2372091, "entity": "dog", "caption": "wooden bench dog is sitting on", "question": ["is there wooden bench dog ?"], "prompt": "wooden bench {} is sitting on"}, {"index": 610, "image_id": 2371865, "entity": "dog", "caption": "Flowered leash going to the dog", "question": ["is there flowered leash ?", "is there the dog ?"], "prompt": "Flowered leash going to the {}"}, {"index": 611, "image_id": 2371865, "entity": "dog", "caption": "dog looks off into distance", "question": ["is there dog ?", "is there distance ?"], "prompt": "{} looks off into distance"}, {"index": 612, "image_id": 2371865, "entity": "dog", "caption": "dog wears sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} wears sweater"}, {"index": 613, "image_id": 2371865, "entity": "dog", "caption": "dog sits next to bicycle", "question": ["is there dog ?", "is there bicycle ?"], "prompt": "{} sits next to bicycle"}, {"index": 614, "image_id": 2371865, "entity": "dog", "caption": "dog sits on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} sits on sidewalk"}, {"index": 615, "image_id": 2371865, "entity": "dog", "caption": "sweater is on dog", "question": ["is there dog ?"], "prompt": "sweater is on {}"}, {"index": 616, "image_id": 2371865, "entity": "dog", "caption": "dog is inside sweater", "question": ["is there dog ?", "is there sweater ?"], "prompt": "{} is inside sweater"}, {"index": 617, "image_id": 2371865, "entity": "dog", "caption": "The dog is on a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "The {} is on a leash"}, {"index": 618, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing near a bicycle", "question": ["is there the white dog ?", "is there a bicycle ?"], "prompt": "The white {} is standing near a bicycle"}, {"index": 619, "image_id": 2371865, "entity": "dog", "caption": "The white dog in the sweater has a bushy tail", "question": ["is there the white dog ?", "is there the sweater ?", "is there a bushy tail ?"], "prompt": "The white {} in the sweater has a bushy tail"}, {"index": 620, "image_id": 2371865, "entity": "dog", "caption": "The white dog is standing on the sidewalk", "question": ["is there the white dog ?", "is there the sidewalk ?"], "prompt": "The white {} is standing on the sidewalk"}, {"index": 621, "image_id": 2371612, "entity": "dog", "caption": "the dog is using the laptop", "question": ["is there the dog ?", "is there the laptop ?"], "prompt": "the {} is using the laptop"}, {"index": 622, "image_id": 2371612, "entity": "dog", "caption": "A dog with it's paws on a laptop.", "question": ["is there a dog ?", "are there it's paws ?", "is there a laptop ?"], "prompt": "A {} with it's paws on a laptop."}, {"index": 623, "image_id": 2371612, "entity": "dog", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The {} is using the computer "}, {"index": 624, "image_id": 2371612, "entity": "dog", "caption": "The nose of the dog is black ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "The nose of the {} is black "}, {"index": 625, "image_id": 2371612, "entity": "dog", "caption": "The eye of the dog is brown ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "The eye of the {} is brown "}, {"index": 626, "image_id": 2371520, "entity": "dog", "caption": "carpet dog is playing on", "question": ["is there carpet dog ?"], "prompt": "carpet {} is playing on"}, {"index": 627, "image_id": 2371249, "entity": "dog", "caption": "A dog has three colors of fur.", "question": ["is there a dog ?", "are there three colors ?", "is there fur ?"], "prompt": "A {} has three colors of fur."}, {"index": 628, "image_id": 2371249, "entity": "dog", "caption": "A dog is wearing a scarf around the neck.", "question": ["is there a dog ?", "is there a scarf ?", "is there the neck ?"], "prompt": "A {} is wearing a scarf around the neck."}, {"index": 629, "image_id": 2371249, "entity": "dog", "caption": "A woman is sitting close to a dog.", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman is sitting close to a {}."}, {"index": 630, "image_id": 2371169, "entity": "dog", "caption": "The dog has a frisbee in mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there mouth ?"], "prompt": "The {} has a frisbee in mouth."}, {"index": 631, "image_id": 2371169, "entity": "dog", "caption": "the dog is wearing a collar.", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} is wearing a collar."}, {"index": 632, "image_id": 2371169, "entity": "dog", "caption": "The back left leg of a dog", "question": ["is there the back left leg ?", "is there a dog ?"], "prompt": "The back left leg of a {}"}, {"index": 633, "image_id": 2371169, "entity": "dog", "caption": "The front left leg of a dog", "question": ["is there the front left leg ?", "is there a dog ?"], "prompt": "The front left leg of a {}"}, {"index": 634, "image_id": 2371119, "entity": "dog", "caption": "the dog is laying on the bed", "question": ["is there the dog ?", "is there the bed ?"], "prompt": "the {} is laying on the bed"}, {"index": 635, "image_id": 2370667, "entity": "dog", "caption": "the dogs nail ", "question": ["are there the dogs ?"], "prompt": "the {}s nail "}, {"index": 636, "image_id": 2370647, "entity": "dog", "caption": "The dog has a serious face", "question": ["is there the dog ?", "is there a serious face ?"], "prompt": "The {} has a serious face"}, {"index": 637, "image_id": 2370647, "entity": "dog", "caption": "The dog has white whiskers.", "question": ["is there the dog ?", "are there white whiskers ?"], "prompt": "The {} has white whiskers."}, {"index": 638, "image_id": 2370647, "entity": "dog", "caption": "The dog has a brown colar.", "question": ["is there the dog ?", "is there a brown colar ?"], "prompt": "The {} has a brown colar."}, {"index": 639, "image_id": 2370508, "entity": "dog", "caption": "eye of dog is black ", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black "}, {"index": 640, "image_id": 2370508, "entity": "dog", "caption": "chest of dog is white", "question": ["is there chest ?", "is there dog ?"], "prompt": "chest of {} is white"}, {"index": 641, "image_id": 2370508, "entity": "dog", "caption": "dog has dog tags", "question": ["is there dog ?", "are there dog tags ?"], "prompt": "{} has {} tags"}, {"index": 642, "image_id": 2370342, "entity": "dog", "caption": "dog's head is on the pillow", "question": ["is there dog's head ?", "is there the pillow ?"], "prompt": "{}'s head is on the pillow"}, {"index": 643, "image_id": 2370107, "entity": "dog", "caption": "bottom left tooth of dog", "question": ["is there bottom ?", "is there tooth ?", "is there dog ?"], "prompt": "bottom left tooth of {}"}, {"index": 644, "image_id": 2369919, "entity": "dog", "caption": "dogs nose is black ", "question": ["are there dogs nose ?"], "prompt": "{}s nose is black "}, {"index": 645, "image_id": 2369919, "entity": "dog", "caption": "the dog is laying down on a shoe ", "question": ["is there the dog ?", "is there a shoe ?"], "prompt": "the {} is laying down on a shoe "}, {"index": 646, "image_id": 2369591, "entity": "dog", "caption": "the dog has a leash", "question": ["is there the dog ?", "is there a leash ?"], "prompt": "the {} has a leash"}, {"index": 647, "image_id": 2369591, "entity": "dog", "caption": "The dog's eye looking ahead", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye looking ahead"}, {"index": 648, "image_id": 2369270, "entity": "dog", "caption": "Frisbee is in the dog's mouth", "question": ["is there the dog's mouth ?"], "prompt": "Frisbee is in the {}'s mouth"}, {"index": 649, "image_id": 2368889, "entity": "dog", "caption": "Big brown dog spiked pink collar.", "question": ["is there big brown dog ?", "is there pink collar ?"], "prompt": "Big brown {} spiked pink collar."}, {"index": 650, "image_id": 2368858, "entity": "dog", "caption": "dog is laying on the ground", "question": ["is there dog ?", "is there the ground ?"], "prompt": "{} is laying on the ground"}, {"index": 651, "image_id": 2368858, "entity": "dog", "caption": "dog with tongue sticking out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} with tongue sticking out"}, {"index": 652, "image_id": 2368858, "entity": "dog", "caption": "the dog has a front paw", "question": ["is there the dog ?", "is there a front paw ?"], "prompt": "the {} has a front paw"}, {"index": 653, "image_id": 2368858, "entity": "dog", "caption": "the dog has nails", "question": ["is there the dog ?", "are there nails ?"], "prompt": "the {} has nails"}, {"index": 654, "image_id": 2368858, "entity": "dog", "caption": "the dog is lying down", "question": ["is there the dog ?"], "prompt": "the {} is lying down"}, {"index": 655, "image_id": 2368714, "entity": "dog", "caption": "dog curled up with a teddy bear", "question": ["is there dog ?"], "prompt": "{} curled up with a teddy bear"}, {"index": 656, "image_id": 2368714, "entity": "dog", "caption": "ear of dog is black ", "question": ["is there ear ?", "is there dog ?"], "prompt": "ear of {} is black "}, {"index": 657, "image_id": 2368054, "entity": "dog", "caption": "dog has a purple leash", "question": ["is there dog ?", "is there a purple leash ?"], "prompt": "{} has a purple leash"}, {"index": 658, "image_id": 2368054, "entity": "dog", "caption": "this dog is wearing a red harness", "question": ["is there this dog ?", "is there a red harness ?"], "prompt": "this {} is wearing a red harness"}, {"index": 659, "image_id": 2367865, "entity": "dog", "caption": "The dog's eyes are yellow", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are yellow"}, {"index": 660, "image_id": 2367488, "entity": "dog", "caption": "the dog is inside a van", "question": ["is there the dog ?", "is there a van ?"], "prompt": "the {} is inside a van"}, {"index": 661, "image_id": 2367488, "entity": "dog", "caption": "the dog tag hanging", "question": ["is there the dog tag ?"], "prompt": "the {} tag hanging"}, {"index": 662, "image_id": 2367488, "entity": "dog", "caption": "The dog is wearing a collar", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "The {} is wearing a collar"}, {"index": 663, "image_id": 2367488, "entity": "dog", "caption": "navy blanket dog is laying on", "question": ["is there navy blanket dog ?"], "prompt": "navy blanket {} is laying on"}, {"index": 664, "image_id": 2367488, "entity": "dog", "caption": "The dog's pink tongue is very long", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue is very long"}, {"index": 665, "image_id": 2367488, "entity": "dog", "caption": "A large tongue hanging out of the dog's mouth", "question": ["is there a large tongue ?", "is there the dog's mouth ?"], "prompt": "A large tongue hanging out of the {}'s mouth"}, {"index": 666, "image_id": 2367488, "entity": "dog", "caption": "The dog's eye is open", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open"}, {"index": 667, "image_id": 2367433, "entity": "dog", "caption": "pizza that dog is eating", "question": ["is there pizza ?", "is there that dog ?"], "prompt": "pizza that {} is eating"}, {"index": 668, "image_id": 2367433, "entity": "dog", "caption": "steel grate that dog is standing on", "question": ["is there steel grate ?", "is there that dog ?"], "prompt": "steel grate that {} is standing on"}, {"index": 669, "image_id": 2367152, "entity": "dog", "caption": "mouth of dog is open", "question": ["is there mouth ?", "is there dog ?"], "prompt": "mouth of {} is open"}, {"index": 670, "image_id": 2366422, "entity": "dog", "caption": "dog tail held high", "question": ["is there dog tail ?"], "prompt": "{} tail held high"}, {"index": 671, "image_id": 2366422, "entity": "dog", "caption": "a dog that has brown eyes", "question": ["is there a dog ?", "are there brown eyes ?"], "prompt": "a {} that has brown eyes"}, {"index": 672, "image_id": 2366422, "entity": "dog", "caption": "the dog has a brown ear", "question": ["is there the dog ?", "is there a brown ear ?"], "prompt": "the {} has a brown ear"}, {"index": 673, "image_id": 2366422, "entity": "dog", "caption": "this dog has eyes", "question": ["is there this dog ?", "are there eyes ?"], "prompt": "this {} has eyes"}, {"index": 674, "image_id": 2366422, "entity": "dog", "caption": "this dog has ears", "question": ["is there this dog ?", "are there ears ?"], "prompt": "this {} has ears"}, {"index": 675, "image_id": 2366422, "entity": "dog", "caption": "this dog's nose is black", "question": ["is there this dog's nose ?"], "prompt": "this {}'s nose is black"}, {"index": 676, "image_id": 2366422, "entity": "dog", "caption": "this dog has a long tail", "question": ["is there this dog ?", "is there a long tail ?"], "prompt": "this {} has a long tail"}, {"index": 677, "image_id": 2365888, "entity": "dog", "caption": "the dog has a small tail", "question": ["is there the dog ?", "is there a small tail ?"], "prompt": "the {} has a small tail"}, {"index": 678, "image_id": 2365787, "entity": "dog", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th e{} is in the car "}, {"index": 679, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking outside the window"}, {"index": 680, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking outside ", "question": ["is there the dog ?"], "prompt": "the {} is looking outside "}, {"index": 681, "image_id": 2365787, "entity": "dog", "caption": "the dog is looking through the window", "question": ["is there the dog ?", "is there the window ?"], "prompt": "the {} is looking through the window"}, {"index": 682, "image_id": 2365756, "entity": "dog", "caption": "the doghas a seat belt on ", "question": ["is there a seat belt ?"], "prompt": "the {}has a seat belt on "}, {"index": 683, "image_id": 2365756, "entity": "dog", "caption": "Black seatbelt holding back a dog. ", "question": ["is there black seatbelt ?", "is there a dog ?"], "prompt": "Black seatbelt holding back a {}. "}, {"index": 684, "image_id": 2365712, "entity": "dog", "caption": "the dog is licking the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is licking the cake"}, {"index": 685, "image_id": 2365044, "entity": "dog", "caption": "dog is wearing a bow tie ", "question": ["is there dog ?", "is there a bow tie ?"], "prompt": "{} is wearing a bow tie "}, {"index": 686, "image_id": 2364811, "entity": "dog", "caption": "The pillow the dog is laying on.", "question": ["is there the pillow ?", "is there the dog ?"], "prompt": "The pillow the {} is laying on."}, {"index": 687, "image_id": 2364811, "entity": "dog", "caption": "the dog is getting ready for bed", "question": ["is there the dog ?", "is there bed ?"], "prompt": "the {} is getting ready for bed"}, {"index": 688, "image_id": 2364811, "entity": "dog", "caption": "this dog looks comfortable in bed", "question": ["is there this dog ?", "is there bed ?"], "prompt": "this {} looks comfortable in bed"}, {"index": 689, "image_id": 2364811, "entity": "dog", "caption": "dog has hazel eyes", "question": ["is there dog ?", "are there hazel eyes ?"], "prompt": "{} has hazel eyes"}, {"index": 690, "image_id": 2364543, "entity": "dog", "caption": "dog is holding a ball", "question": ["is there dog ?", "is there a ball ?"], "prompt": "{} is holding a ball"}, {"index": 691, "image_id": 2364543, "entity": "dog", "caption": "black dog with paws forward looking at camera", "question": ["is there black dog ?", "are there paws ?", "is there camera ?"], "prompt": "black {} with paws forward looking at camera"}, {"index": 692, "image_id": 2364543, "entity": "dog", "caption": "dog has a ball inside his mouth", "question": ["is there dog ?", "is there a ball ?", "is there his mouth ?"], "prompt": "{} has a ball inside his mouth"}, {"index": 693, "image_id": 2364543, "entity": "dog", "caption": "snout of dog is color salt and pepper", "question": ["is there snout ?", "is there dog ?", "is there color salt ?", "is there pepper ?"], "prompt": "snout of {} is color salt and pepper"}, {"index": 694, "image_id": 2364504, "entity": "dog", "caption": "The dog is wearing a purple collar.", "question": ["is there the dog ?", "is there a purple collar ?"], "prompt": "The {} is wearing a purple collar."}, {"index": 695, "image_id": 2364504, "entity": "dog", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One {} is sitting in the car."}, {"index": 696, "image_id": 2364448, "entity": "dog", "caption": "the dog has a paw", "question": ["is there the dog ?", "is there a paw ?"], "prompt": "the {} has a paw"}, {"index": 697, "image_id": 2364244, "entity": "dog", "caption": "the dog is wearing a tiara", "question": ["is there the dog ?", "is there a tiara ?"], "prompt": "the {} is wearing a tiara"}, {"index": 698, "image_id": 2364208, "entity": "dog", "caption": "the cow is looking at the dog", "question": ["is there the cow ?", "is there the dog ?"], "prompt": "the cow is looking at the {}"}, {"index": 699, "image_id": 2363392, "entity": "dog", "caption": "a dog with his tooth sticking out", "question": ["is there a dog ?", "is there his tooth ?"], "prompt": "a {} with his tooth sticking out"}, {"index": 700, "image_id": 2363392, "entity": "dog", "caption": "green couch cushion dog is sleeping on", "question": ["is there green couch cushion dog ?"], "prompt": "green couch cushion {} is sleeping on"}, {"index": 701, "image_id": 2363392, "entity": "dog", "caption": "dog lip pulled up against cushion", "question": ["is there dog lip ?", "is there cushion ?"], "prompt": "{} lip pulled up against cushion"}, {"index": 702, "image_id": 2363392, "entity": "dog", "caption": "dog's tongue sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue sticking out"}, {"index": 703, "image_id": 2363350, "entity": "dog", "caption": "A dog is laying in his bed", "question": ["is there a dog ?", "is there his bed ?"], "prompt": "A {} is laying in his bed"}, {"index": 704, "image_id": 2363350, "entity": "dog", "caption": "The dog is resting on a pillow", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "The {} is resting on a pillow"}, {"index": 705, "image_id": 2362763, "entity": "dog", "caption": "dog's teeth are showing", "question": ["are there dog's teeth ?"], "prompt": "{}'s teeth are showing"}, {"index": 706, "image_id": 2362553, "entity": "dog", "caption": "dog with head tilted up", "question": ["is there dog ?", "is there head ?"], "prompt": "{} with head tilted up"}, {"index": 707, "image_id": 2362553, "entity": "dog", "caption": "the dog has a right eye", "question": ["is there the dog ?", "is there a right eye ?"], "prompt": "the {} has a right eye"}, {"index": 708, "image_id": 2362525, "entity": "dog", "caption": "The dog is in the bag", "question": ["is there the dog ?", "is there the bag ?"], "prompt": "The {} is in the bag"}, {"index": 709, "image_id": 2362525, "entity": "dog", "caption": "The bag is holding the dog", "question": ["is there the bag ?", "is there the dog ?"], "prompt": "The bag is holding the {}"}, {"index": 710, "image_id": 2362525, "entity": "dog", "caption": "The small backpack holds a dog", "question": ["is there the small backpack ?", "is there a dog ?"], "prompt": "The small backpack holds a {}"}, {"index": 711, "image_id": 2362525, "entity": "dog", "caption": "The dog is turning its head", "question": ["is there the dog ?", "is there its head ?"], "prompt": "The {} is turning its head"}, {"index": 712, "image_id": 2362525, "entity": "dog", "caption": "this is a \"doggy pack\"", "question": ["is there a \"doggy pack ?"], "prompt": "this is a \"{}gy pack\""}, {"index": 713, "image_id": 2362323, "entity": "dog", "caption": "dog is wearing chain collar", "question": ["is there dog ?", "is there chain collar ?"], "prompt": "{} is wearing chain collar"}, {"index": 714, "image_id": 2362323, "entity": "dog", "caption": "the dog is looking at the cake", "question": ["is there the dog ?", "is there the cake ?"], "prompt": "the {} is looking at the cake"}, {"index": 715, "image_id": 2362323, "entity": "dog", "caption": "the dog looks sad", "question": ["is there the dog ?"], "prompt": "the {} looks sad"}, {"index": 716, "image_id": 2362323, "entity": "dog", "caption": "the dog lays head on arm", "question": ["is there the dog ?", "is there head ?", "is there arm ?"], "prompt": "the {} lays head on arm"}, {"index": 717, "image_id": 2362323, "entity": "dog", "caption": "the dog has spots", "question": ["is there the dog ?", "are there spots ?"], "prompt": "the {} has spots"}, {"index": 718, "image_id": 2362323, "entity": "dog", "caption": "eye of dog is black", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is black"}, {"index": 719, "image_id": 2362196, "entity": "dog", "caption": " a dog with it's tongue sticking out", "question": ["is there a dog ?", "is there tongue ?"], "prompt": " a {} with it's tongue sticking out"}, {"index": 720, "image_id": 2362106, "entity": "dog", "caption": "this is a dog ", "question": ["is there a dog ?"], "prompt": "this is a {} "}, {"index": 721, "image_id": 2362106, "entity": "dog", "caption": "the dog is lying down on the floor", "question": ["is there the dog ?", "is there the floor ?"], "prompt": "the {} is lying down on the floor"}, {"index": 722, "image_id": 2362106, "entity": "dog", "caption": "The dog is in somebody's house", "question": ["is there the dog ?", "is there somebody's house ?"], "prompt": "The {} is in somebody's house"}, {"index": 723, "image_id": 2362106, "entity": "dog", "caption": "The dog is laying by the door", "question": ["is there the dog ?", "is there the door ?"], "prompt": "The {} is laying by the door"}, {"index": 724, "image_id": 2362106, "entity": "dog", "caption": "The dog is guarding the house", "question": ["is there the dog ?", "is there the house ?"], "prompt": "The {} is guarding the house"}, {"index": 725, "image_id": 2362106, "entity": "dog", "caption": "The dog is awake in daytime", "question": ["is there the dog ?", "is there daytime ?"], "prompt": "The {} is awake in daytime"}, {"index": 726, "image_id": 2362106, "entity": "dog", "caption": "The dog is waiting to go outside", "question": ["is there the dog ?"], "prompt": "The {} is waiting to go outside"}, {"index": 727, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting to be let out", "question": ["is there a dog ?"], "prompt": "A {} is waiting to be let out"}, {"index": 728, "image_id": 2362106, "entity": "dog", "caption": "A dog is sleeping on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is sleeping on the floor"}, {"index": 729, "image_id": 2362106, "entity": "dog", "caption": "A dog is looking for attention", "question": ["is there a dog ?", "is there attention ?"], "prompt": "A {} is looking for attention"}, {"index": 730, "image_id": 2362106, "entity": "dog", "caption": "The dog is looking lonely", "question": ["is there the dog ?"], "prompt": "The {} is looking lonely"}, {"index": 731, "image_id": 2362106, "entity": "dog", "caption": "A dog is waiting by the door", "question": ["is there a dog ?", "is there the door ?"], "prompt": "A {} is waiting by the door"}, {"index": 732, "image_id": 2362106, "entity": "dog", "caption": "A dog is laying on the floor", "question": ["is there a dog ?", "is there the floor ?"], "prompt": "A {} is laying on the floor"}, {"index": 733, "image_id": 2362106, "entity": "dog", "caption": "The dog is wanting to be fed", "question": ["is there the dog ?"], "prompt": "The {} is wanting to be fed"}, {"index": 734, "image_id": 2362106, "entity": "dog", "caption": "The dog is enjoying its day", "question": ["is there the dog ?", "is there its day ?"], "prompt": "The {} is enjoying its day"}, {"index": 735, "image_id": 2362106, "entity": "dog", "caption": "The dog is getting some rest", "question": ["is there the dog ?", "is there some rest ?"], "prompt": "The {} is getting some rest"}, {"index": 736, "image_id": 2362106, "entity": "dog", "caption": "The dog belongs to the home owner", "question": ["is there the dog ?", "is there the home owner ?"], "prompt": "The {} belongs to the home owner"}, {"index": 737, "image_id": 2361653, "entity": "dog", "caption": "the dog has a left eye", "question": ["is there the dog ?", "is there a left eye ?"], "prompt": "the {} has a left eye"}, {"index": 738, "image_id": 2361100, "entity": "dog", "caption": "floppy black dog ear ", "question": ["is there floppy black dog ear ?"], "prompt": "floppy black {} ear "}, {"index": 739, "image_id": 2361100, "entity": "dog", "caption": "two dog ear in different positions at same time ", "question": ["is there two dog ear ?", "are there different positions ?", "is there same time ?"], "prompt": "two {} ear in different positions at same time "}, {"index": 740, "image_id": 2361100, "entity": "dog", "caption": "The dog's left ear flopped down", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear flopped down"}, {"index": 741, "image_id": 2361100, "entity": "dog", "caption": "the dog's right ear is up", "question": ["is there the dog's right ear ?"], "prompt": "the {}'s right ear is up"}, {"index": 742, "image_id": 2361100, "entity": "dog", "caption": "the dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are open"}, {"index": 743, "image_id": 2360869, "entity": "dog", "caption": "dog is laying on dog bed", "question": ["is there dog ?", "is there dog bed ?"], "prompt": "{} is laying on {} bed"}, {"index": 744, "image_id": 2360869, "entity": "dog", "caption": "dog has small nose", "question": ["is there dog ?", "is there small nose ?"], "prompt": "{} has small nose"}, {"index": 745, "image_id": 2360869, "entity": "dog", "caption": "dog bed is beige", "question": ["is there dog bed ?"], "prompt": "{} bed is beige"}, {"index": 746, "image_id": 2360869, "entity": "dog", "caption": "dog has wavy fur", "question": ["is there dog ?", "is there wavy fur ?"], "prompt": "{} has wavy fur"}, {"index": 747, "image_id": 2360869, "entity": "dog", "caption": "dog has fluffy tail", "question": ["is there dog ?", "is there fluffy tail ?"], "prompt": "{} has fluffy tail"}, {"index": 748, "image_id": 2360725, "entity": "dog", "caption": "the dog is biting an envelope", "question": ["is there the dog ?", "is there an envelope ?"], "prompt": "the {} is biting an envelope"}, {"index": 749, "image_id": 2360725, "entity": "dog", "caption": "dog is carrying an envelope", "question": ["is there dog ?", "is there an envelope ?"], "prompt": "{} is carrying an envelope"}, {"index": 750, "image_id": 2360542, "entity": "dog", "caption": "dog has black eyes", "question": ["is there dog ?", "are there black eyes ?"], "prompt": "{} has black eyes"}, {"index": 751, "image_id": 2360542, "entity": "dog", "caption": "pomeranian dog gets a ride inside duffle bag", "question": ["is there pomeranian dog ?", "is there a ride inside duffle bag ?"], "prompt": "pomeranian {} gets a ride inside duffle bag"}, {"index": 752, "image_id": 2360357, "entity": "dog", "caption": "The front left leg of the dog.", "question": ["is there the front left leg ?", "is there the dog ?"], "prompt": "The front left leg of the {}."}, {"index": 753, "image_id": 2360357, "entity": "dog", "caption": "eyes of dog are round", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} are round"}, {"index": 754, "image_id": 2360357, "entity": "dog", "caption": "head of dog is brown", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} is brown"}, {"index": 755, "image_id": 2360357, "entity": "dog", "caption": "dog has dark eyes ", "question": ["is there dog ?", "are there dark eyes ?"], "prompt": "{} has dark eyes "}, {"index": 756, "image_id": 2360299, "entity": "dog", "caption": "dog's right ear is black", "question": ["is there dog's right ear ?"], "prompt": "{}'s right ear is black"}, {"index": 757, "image_id": 2360145, "entity": "dog", "caption": "A shadow line is behind the dogs.", "question": ["is there a shadow line ?", "are there the dogs ?"], "prompt": "A shadow line is behind the {}s."}, {"index": 758, "image_id": 2359887, "entity": "dog", "caption": "dog with his eyes shut", "question": ["is there dog ?", "are there his eyes ?"], "prompt": "{} with his eyes shut"}, {"index": 759, "image_id": 2359887, "entity": "dog", "caption": "dog is on blanket", "question": ["is there dog ?", "is there blanket ?"], "prompt": "{} is on blanket"}, {"index": 760, "image_id": 2359887, "entity": "dog", "caption": "dog has blonde hair", "question": ["is there dog ?", "is there blonde hair ?"], "prompt": "{} has blonde hair"}, {"index": 761, "image_id": 2359887, "entity": "dog", "caption": "dog has long hair on ears", "question": ["is there dog ?", "is there long hair ?", "are there ears ?"], "prompt": "{} has long hair on ears"}, {"index": 762, "image_id": 2359809, "entity": "dog", "caption": "The rear left paw of the dog", "question": ["is there the rear left paw ?", "is there the dog ?"], "prompt": "The rear left paw of the {}"}, {"index": 763, "image_id": 2359809, "entity": "dog", "caption": "dog is standing on cement floors", "question": ["is there dog ?", "are there cement floors ?"], "prompt": "{} is standing on cement floors"}, {"index": 764, "image_id": 2359414, "entity": "dog", "caption": "the dog has a banana on its side", "question": ["is there the dog ?", "is there a banana ?", "is there its side ?"], "prompt": "the {} has a banana on its side"}, {"index": 765, "image_id": 2359172, "entity": "dog", "caption": "dog has brown ear", "question": ["is there dog ?", "is there brown ear ?"], "prompt": "{} has brown ear"}, {"index": 766, "image_id": 2359172, "entity": "dog", "caption": "dog has brown eye", "question": ["is there dog ?", "is there brown eye ?"], "prompt": "{} has brown eye"}, {"index": 767, "image_id": 2359073, "entity": "dog", "caption": "Cat is laying on top of dog.", "question": ["is there cat ?", "is there top ?", "is there dog ?"], "prompt": "Cat is laying on top of {}."}, {"index": 768, "image_id": 2359073, "entity": "dog", "caption": "The cat is on the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is on the {}."}, {"index": 769, "image_id": 2359073, "entity": "dog", "caption": "dog has brown eye brows", "question": ["is there dog ?", "are there brown eye brows ?"], "prompt": "{} has brown eye brows"}, {"index": 770, "image_id": 2358914, "entity": "dog", "caption": "dog holds chew toy", "question": ["is there dog ?", "is there toy ?"], "prompt": "{} holds chew toy"}, {"index": 771, "image_id": 2358914, "entity": "dog", "caption": "dog has pink tongue", "question": ["is there dog ?", "is there pink tongue ?"], "prompt": "{} has pink tongue"}, {"index": 772, "image_id": 2358914, "entity": "dog", "caption": "the dog is chewing on a toy", "question": ["is there the dog ?", "is there a toy ?"], "prompt": "the {} is chewing on a toy"}, {"index": 773, "image_id": 2358914, "entity": "dog", "caption": "the dog chews on an orange toy", "question": ["is there the dog ?", "is there an orange toy ?"], "prompt": "the {} chews on an orange toy"}, {"index": 774, "image_id": 2358914, "entity": "dog", "caption": "the dog is on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is on a blanket"}, {"index": 775, "image_id": 2358914, "entity": "dog", "caption": "the dog is laying on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is laying on a blanket"}, {"index": 776, "image_id": 2358914, "entity": "dog", "caption": "Small orange looking stuffed animal a dog has. ", "question": ["is there small orange ?", "is there stuffed animal ?", "is there a dog ?"], "prompt": "Small orange looking stuffed animal a {} has. "}, {"index": 777, "image_id": 2358914, "entity": "dog", "caption": "A brown dogs left side front paw. ", "question": ["are there a brown dogs ?", "is there side front paw ?"], "prompt": "A brown {}s left side front paw. "}, {"index": 778, "image_id": 2358914, "entity": "dog", "caption": "A dogs left ear. ", "question": ["are there a dogs ?", "is there ear ?"], "prompt": "A {}s left ear. "}, {"index": 779, "image_id": 2358486, "entity": "dog", "caption": "dog is leaning over railing", "question": ["is there dog ?"], "prompt": "{} is leaning over railing"}, {"index": 780, "image_id": 2358453, "entity": "dog", "caption": "eye of dog is close", "question": ["is there eye ?", "is there dog ?"], "prompt": "eye of {} is close"}, {"index": 781, "image_id": 2357732, "entity": "dog", "caption": "dog has a long ear", "question": ["is there dog ?", "is there a long ear ?"], "prompt": "{} has a long ear"}, {"index": 782, "image_id": 2357732, "entity": "dog", "caption": "the dog's head is on the blanket", "question": ["is there the dog's head ?", "is there the blanket ?"], "prompt": "the {}'s head is on the blanket"}, {"index": 783, "image_id": 2357732, "entity": "dog", "caption": "the dog has on a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "the {} has on a red collar"}, {"index": 784, "image_id": 2357693, "entity": "dog", "caption": "dog has brown patch on eye", "question": ["is there dog ?", "is there brown patch ?", "is there eye ?"], "prompt": "{} has brown patch on eye"}, {"index": 785, "image_id": 2357667, "entity": "dog", "caption": "the dog is wearing a tie", "question": ["is there the dog ?", "is there a tie ?"], "prompt": "the {} is wearing a tie"}, {"index": 786, "image_id": 2357667, "entity": "dog", "caption": "the dog is lying on the arm of a leather chair", "question": ["is there the dog ?", "is there the arm ?", "is there a leather chair ?"], "prompt": "the {} is lying on the arm of a leather chair"}, {"index": 787, "image_id": 2357667, "entity": "dog", "caption": "the dog has bulgy eyes", "question": ["is there the dog ?", "are there bulgy eyes ?"], "prompt": "the {} has bulgy eyes"}, {"index": 788, "image_id": 2357667, "entity": "dog", "caption": "the dog has dark brown ears", "question": ["is there the dog ?", "are there dark brown ears ?"], "prompt": "the {} has dark brown ears"}, {"index": 789, "image_id": 2356804, "entity": "dog", "caption": "two dogs with their tongues hanging out", "question": ["are there two dogs ?", "are there their tongues ?"], "prompt": "two {}s with their tongues hanging out"}, {"index": 790, "image_id": 2356804, "entity": "dog", "caption": "the dogs are in long grass", "question": ["are there the dogs ?", "is there long grass ?"], "prompt": "the {}s are in long grass"}, {"index": 791, "image_id": 2356762, "entity": "dog", "caption": "This is a dog trying to catch an apple.", "question": ["is there a dog ?", "is there an apple ?"], "prompt": "This is a {} trying to catch an apple."}, {"index": 792, "image_id": 2356762, "entity": "dog", "caption": "The dog has only a few teeth.", "question": ["is there the dog ?", "are there only a few teeth ?"], "prompt": "The {} has only a few teeth."}, {"index": 793, "image_id": 2356701, "entity": "dog", "caption": "the dog's nose is thru the hole", "question": ["is there the dog's nose ?", "is there the hole ?"], "prompt": "the {}'s nose is thru the hole"}, {"index": 794, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck", "question": ["are there the dogs ?"], "prompt": "the {}s head is stuck"}, {"index": 795, "image_id": 2356701, "entity": "dog", "caption": "the dogs head is stuck in the wheel", "question": ["are there the dogs ?", "is there the wheel ?"], "prompt": "the {}s head is stuck in the wheel"}, {"index": 796, "image_id": 2356554, "entity": "dog", "caption": "dog wears black glasses", "question": ["is there dog ?", "are there black glasses ?"], "prompt": "{} wears black glasses"}, {"index": 797, "image_id": 2356554, "entity": "dog", "caption": "dog wears black jacket", "question": ["is there dog ?", "is there black jacket ?"], "prompt": "{} wears black jacket"}, {"index": 798, "image_id": 2356554, "entity": "dog", "caption": "dog is near motorcycle", "question": ["is there dog ?", "is there motorcycle ?"], "prompt": "{} is near motorcycle"}, {"index": 799, "image_id": 2356554, "entity": "dog", "caption": "the dog has sunglasses ", "question": ["is there the dog ?", "are there sunglasses ?"], "prompt": "the {} has sunglasses "}, {"index": 800, "image_id": 2356554, "entity": "dog", "caption": "the dog is on the bike ", "question": ["is there the dog ?", "is there the bike ?"], "prompt": "the {} is on the bike "}, {"index": 801, "image_id": 2356554, "entity": "dog", "caption": "This dog is wearing sunglasses.", "question": ["is there this dog ?", "are there sunglasses ?"], "prompt": "This {} is wearing sunglasses."}, {"index": 802, "image_id": 2356554, "entity": "dog", "caption": "dog has leash on", "question": ["is there dog ?"], "prompt": "{} has leash on"}, {"index": 803, "image_id": 2356554, "entity": "dog", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "{} is sitting in side car"}, {"index": 804, "image_id": 2356153, "entity": "dog", "caption": "blue dog bone shaped tag", "question": ["is there blue dog bone shaped tag ?"], "prompt": "blue {} bone shaped tag"}, {"index": 805, "image_id": 2356153, "entity": "dog", "caption": "dog is wearing a red collar", "question": ["is there dog ?", "is there a red collar ?"], "prompt": "{} is wearing a red collar"}, {"index": 806, "image_id": 2356153, "entity": "dog", "caption": "dog is walking on the dirt", "question": ["is there dog ?", "is there the dirt ?"], "prompt": "{} is walking on the dirt"}, {"index": 807, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing goggles", "question": ["is there the dog ?", "are there goggles ?"], "prompt": "The {} is wearing goggles"}, {"index": 808, "image_id": 2355985, "entity": "dog", "caption": "The dog is on a motorcycle", "question": ["is there the dog ?", "is there a motorcycle ?"], "prompt": "The {} is on a motorcycle"}, {"index": 809, "image_id": 2355985, "entity": "dog", "caption": "The dog is wearing a leather jacket", "question": ["is there the dog ?", "is there a leather jacket ?"], "prompt": "The {} is wearing a leather jacket"}, {"index": 810, "image_id": 2355985, "entity": "dog", "caption": "the nose is black on the dog ", "question": ["is there the nose ?", "is there the dog ?"], "prompt": "the nose is black on the {} "}, {"index": 811, "image_id": 2355964, "entity": "dog", "caption": "dog ears is pink inside ", "question": ["are there dog ears ?"], "prompt": "{} ears is pink inside "}, {"index": 812, "image_id": 2355964, "entity": "dog", "caption": "dog has black nose ", "question": ["is there dog ?", "is there black nose ?"], "prompt": "{} has black nose "}, {"index": 813, "image_id": 2355944, "entity": "dog", "caption": "The dog is wearing a color", "question": ["is there the dog ?", "is there a color ?"], "prompt": "The {} is wearing a color"}, {"index": 814, "image_id": 2355865, "entity": "dog", "caption": "it is the eye of the dog ", "question": ["is there the eye ?", "is there the dog ?"], "prompt": "it is the eye of the {} "}, {"index": 815, "image_id": 2355519, "entity": "dog", "caption": "The dog has a frisbee in its mouth", "question": ["is there the dog ?", "is there a frisbee ?", "is there its mouth ?"], "prompt": "The {} has a frisbee in its mouth"}, {"index": 816, "image_id": 2355511, "entity": "dog", "caption": "a black dog right ear ", "question": ["is there a black dog right ear ?"], "prompt": "a black {} right ear "}, {"index": 817, "image_id": 2355511, "entity": "dog", "caption": "A black dog ready to get a bath", "question": ["is there a black dog ?", "is there a bath ?"], "prompt": "A black {} ready to get a bath"}, {"index": 818, "image_id": 2355409, "entity": "dog", "caption": "a dog catchign a freesbee", "question": ["is there a dog ?", "is there a freesbee ?"], "prompt": "a {} catchign a freesbee"}, {"index": 819, "image_id": 2355409, "entity": "dog", "caption": "a white dog catchign a black freesbee", "question": ["is there a white dog ?"], "prompt": "a white {} catchign a black freesbee"}, {"index": 820, "image_id": 2355256, "entity": "dog", "caption": "dog is brown and white", "question": ["is there dog ?"], "prompt": "{} is brown and white"}, {"index": 821, "image_id": 2354835, "entity": "dog", "caption": "Brown dog's head sticking out of car window.", "question": ["is there brown dog's head ?", "is there car window ?"], "prompt": "Brown {}'s head sticking out of car window."}, {"index": 822, "image_id": 2354515, "entity": "dog", "caption": "bike is behind the dog", "question": ["is there bike ?", "is there the dog ?"], "prompt": "bike is behind the {}"}, {"index": 823, "image_id": 2354515, "entity": "dog", "caption": "dog has tongue out", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue out"}, {"index": 824, "image_id": 2354515, "entity": "dog", "caption": "dog is on the street", "question": ["is there dog ?", "is there the street ?"], "prompt": "{} is on the street"}, {"index": 825, "image_id": 2354497, "entity": "dog", "caption": "This dog has a donut in his mouth", "question": ["is there this dog ?", "is there a donut ?", "is there his mouth ?"], "prompt": "This {} has a donut in his mouth"}, {"index": 826, "image_id": 2354497, "entity": "dog", "caption": "The dog is wearing a red color.", "question": ["is there the dog ?", "is there a red color ?"], "prompt": "The {} is wearing a red color."}, {"index": 827, "image_id": 2354497, "entity": "dog", "caption": "The dog is sitting on the grass.", "question": ["is there the dog ?", "is there the grass ?"], "prompt": "The {} is sitting on the grass."}, {"index": 828, "image_id": 2354497, "entity": "dog", "caption": "The dog has two spots on his face.", "question": ["is there the dog ?", "are there two spots ?", "is there his face ?"], "prompt": "The {} has two spots on his face."}, {"index": 829, "image_id": 2354494, "entity": "dog", "caption": "The dog nose is black", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black"}, {"index": 830, "image_id": 2354494, "entity": "dog", "caption": "tan/yellow dog laying across young girls lap", "question": ["is there tan/yellow dog ?", "are there young girls ?"], "prompt": "tan/yellow {} laying across young girls lap"}, {"index": 831, "image_id": 2354494, "entity": "dog", "caption": "dog is wearing a red collar around neck", "question": ["is there dog ?", "is there a red collar ?", "is there neck ?"], "prompt": "{} is wearing a red collar around neck"}, {"index": 832, "image_id": 2354494, "entity": "dog", "caption": "Woman laying on the couch with dog.", "question": ["is there woman ?", "is there the couch ?", "is there dog ?"], "prompt": "Woman laying on the couch with {}."}, {"index": 833, "image_id": 2354353, "entity": "dog", "caption": "The dog's head is on the keyboard", "question": ["is there the dog's head ?", "is there the keyboard ?"], "prompt": "The {}'s head is on the keyboard"}, {"index": 834, "image_id": 2354353, "entity": "dog", "caption": "The dog is wearing a blue and yellow collar", "question": ["is there the dog ?", "is there a blue and yellow collar ?"], "prompt": "The {} is wearing a blue and yellow collar"}, {"index": 835, "image_id": 2354353, "entity": "dog", "caption": "dog is on the keys", "question": ["is there dog ?", "are there the keys ?"], "prompt": "{} is on the keys"}, {"index": 836, "image_id": 2354353, "entity": "dog", "caption": "the dog has yellow and blue flowers", "question": ["is there the dog ?", "are there yellow and blue flowers ?"], "prompt": "the {} has yellow and blue flowers"}, {"index": 837, "image_id": 2353969, "entity": "dog", "caption": "dog has white paw", "question": ["is there dog ?"], "prompt": "{} has white paw"}, {"index": 838, "image_id": 2353969, "entity": "dog", "caption": "dog is laying down on rug", "question": ["is there dog ?", "is there rug ?"], "prompt": "{} is laying down on rug"}, {"index": 839, "image_id": 2353558, "entity": "dog", "caption": "the dog's eye is yellowish", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is yellowish"}, {"index": 840, "image_id": 2353558, "entity": "dog", "caption": "The dog has long ears", "question": ["is there the dog ?", "are there long ears ?"], "prompt": "The {} has long ears"}, {"index": 841, "image_id": 2353558, "entity": "dog", "caption": "The dog is wide eyed", "question": ["is there the dog ?"], "prompt": "The {} is wide eyed"}, {"index": 842, "image_id": 2353558, "entity": "dog", "caption": "The dog's nose is very black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is very black"}, {"index": 843, "image_id": 2353558, "entity": "dog", "caption": "The dog is wearing a bowl", "question": ["is there the dog ?", "is there a bowl ?"], "prompt": "The {} is wearing a bowl"}, {"index": 844, "image_id": 2353404, "entity": "dog", "caption": "the plastic buckle on the dog", "question": ["is there the plastic buckle ?", "is there the dog ?"], "prompt": "the plastic buckle on the {}"}, {"index": 845, "image_id": 2353404, "entity": "dog", "caption": "the dog walking and connected to a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} walking and connected to a chain"}, {"index": 846, "image_id": 2353398, "entity": "dog", "caption": "green felt the dog is standing on", "question": ["is there the dog ?"], "prompt": "green felt the {} is standing on"}, {"index": 847, "image_id": 2353062, "entity": "dog", "caption": "the dog is on a sofa", "question": ["is there the dog ?", "is there a sofa ?"], "prompt": "the {} is on a sofa"}, {"index": 848, "image_id": 2353062, "entity": "dog", "caption": "dog's eyes are amber", "question": ["are there dog's eyes ?", "is there amber ?"], "prompt": "{}'s eyes are amber"}, {"index": 849, "image_id": 2353062, "entity": "dog", "caption": "dog is laying on a couch", "question": ["is there dog ?", "is there a couch ?"], "prompt": "{} is laying on a couch"}, {"index": 850, "image_id": 2352757, "entity": "dog", "caption": "the dog is wearing a jacket", "question": ["is there the dog ?", "is there a jacket ?"], "prompt": "the {} is wearing a jacket"}, {"index": 851, "image_id": 2352757, "entity": "dog", "caption": "the dog has a black tail", "question": ["is there the dog ?", "is there a black tail ?"], "prompt": "the {} has a black tail"}, {"index": 852, "image_id": 2352502, "entity": "dog", "caption": "The dog is biting the frisbee.", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is biting the frisbee."}, {"index": 853, "image_id": 2352502, "entity": "dog", "caption": "The dog is on the beach.", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "The {} is on the beach."}, {"index": 854, "image_id": 2351971, "entity": "dog", "caption": "legs and paws of dog that allow dog to walk with ", "question": ["are there legs ?", "are there paws ?", "is there dog ?", "is there dog ?"], "prompt": "legs and paws of {} that allow {} to walk with "}, {"index": 855, "image_id": 2351950, "entity": "dog", "caption": "The dog is holding a bowl in his mouth", "question": ["is there the dog ?", "is there a bowl ?", "is there his mouth ?"], "prompt": "The {} is holding a bowl in his mouth"}, {"index": 856, "image_id": 2351950, "entity": "dog", "caption": "The dog's ear is hanging downwards", "question": ["is there the dog's ear ?"], "prompt": "The {}'s ear is hanging downwards"}, {"index": 857, "image_id": 2351950, "entity": "dog", "caption": "dog has light brown face", "question": ["is there dog ?", "is there light brown face ?"], "prompt": "{} has light brown face"}, {"index": 858, "image_id": 2351950, "entity": "dog", "caption": "dog is holding bowl", "question": ["is there dog ?", "is there bowl ?"], "prompt": "{} is holding bowl"}, {"index": 859, "image_id": 2351811, "entity": "dog", "caption": "the dogs head ", "question": ["are there the dogs ?"], "prompt": "the {}s head "}, {"index": 860, "image_id": 2351083, "entity": "dog", "caption": "dog holds a cap", "question": ["is there dog ?", "is there a cap ?"], "prompt": "{} holds a cap"}, {"index": 861, "image_id": 2351083, "entity": "dog", "caption": "the dogs nose is black", "question": ["are there the dogs nose ?"], "prompt": "the {}s nose is black"}, {"index": 862, "image_id": 2350951, "entity": "dog", "caption": "the mouth of dog is open", "question": ["is there the mouth ?", "is there dog ?"], "prompt": "the mouth of {} is open"}, {"index": 863, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a Harley Davidson bandanna", "question": ["is there the unfortunate dog ?"], "prompt": "the unfortunate {} is wearing a Harley Davidson bandanna"}, {"index": 864, "image_id": 2350646, "entity": "dog", "caption": "the unfortunate dog is wearing a biker headband", "question": ["is there the unfortunate dog ?", "is there a biker headband ?"], "prompt": "the unfortunate {} is wearing a biker headband"}, {"index": 865, "image_id": 2350646, "entity": "dog", "caption": "the dog has cropped ears", "question": ["is there the dog ?", "are there ears ?"], "prompt": "the {} has cropped ears"}, {"index": 866, "image_id": 2350609, "entity": "dog", "caption": "lot where dog and woman stand", "question": ["is there lot ?", "is there dog ?", "is there woman ?"], "prompt": "lot where {} and woman stand"}, {"index": 867, "image_id": 2350606, "entity": "dog", "caption": "the dog is on a white platform", "question": ["is there the dog ?", "is there a white platform ?"], "prompt": "the {} is on a white platform"}, {"index": 868, "image_id": 2349745, "entity": "dog", "caption": "legs of dog running", "question": ["are there legs ?", "is there dog ?"], "prompt": "legs of {} running"}, {"index": 869, "image_id": 2349745, "entity": "dog", "caption": "open mouth of dog running", "question": ["is there open mouth ?", "is there dog ?"], "prompt": "open mouth of {} running"}, {"index": 870, "image_id": 2349745, "entity": "dog", "caption": "the dog is white with black spots", "question": ["is there the dog ?", "are there black spots ?"], "prompt": "the {} is white with black spots"}, {"index": 871, "image_id": 2349745, "entity": "dog", "caption": "the dog is running with his mouth open", "question": ["is there the dog ?", "is there his mouth ?"], "prompt": "the {} is running with his mouth open"}, {"index": 872, "image_id": 2349745, "entity": "dog", "caption": "the dog has a black spot over his eye", "question": ["is there the dog ?", "is there a black spot ?", "is there his eye ?"], "prompt": "the {} has a black spot over his eye"}, {"index": 873, "image_id": 2349745, "entity": "dog", "caption": "the dirt is flying from the dog's paws", "question": ["is there the dirt ?", "are there the dog's paws ?"], "prompt": "the dirt is flying from the {}'s paws"}, {"index": 874, "image_id": 2349745, "entity": "dog", "caption": "the dog's paws are touching from running", "question": ["are there the dog's paws ?"], "prompt": "the {}'s paws are touching from running"}, {"index": 875, "image_id": 2349548, "entity": "dog", "caption": "The dogs ear is brown.", "question": ["are there the dogs ?"], "prompt": "The {}s ear is brown."}, {"index": 876, "image_id": 2349547, "entity": "dog", "caption": "The dog has a pinkish nose.", "question": ["is there the dog ?", "is there a pinkish nose ?"], "prompt": "The {} has a pinkish nose."}, {"index": 877, "image_id": 2349421, "entity": "dog", "caption": "The dog is sitting on the chair ", "question": ["is there the dog ?", "is there the chair ?"], "prompt": "The {} is sitting on the chair "}, {"index": 878, "image_id": 2349268, "entity": "dog", "caption": "the dog has long nails", "question": ["is there the dog ?", "are there long nails ?"], "prompt": "the {} has long nails"}, {"index": 879, "image_id": 2349268, "entity": "dog", "caption": "the dog lays with toy", "question": ["is there the dog ?", "is there toy ?"], "prompt": "the {} lays with toy"}, {"index": 880, "image_id": 2348690, "entity": "dog", "caption": "the dog is chewing up a stuffed animal", "question": ["is there the dog ?", "is there a stuffed animal ?"], "prompt": "the {} is chewing up a stuffed animal"}, {"index": 881, "image_id": 2348554, "entity": "dog", "caption": "dog with hind legs stretched out", "question": ["is there dog ?", "are there hind legs ?"], "prompt": "{} with hind legs stretched out"}, {"index": 882, "image_id": 2348554, "entity": "dog", "caption": "A dog is laying on the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "A {} is laying on the bed"}, {"index": 883, "image_id": 2348554, "entity": "dog", "caption": "The dog has white on her paws", "question": ["is there the dog ?", "are there her paws ?"], "prompt": "The {} has white on her paws"}, {"index": 884, "image_id": 2348407, "entity": "dog", "caption": "tan dog's face as he holds the frisbee", "question": ["is there tan dog's face ?", "is there the frisbee ?"], "prompt": "tan {}'s face as he holds the frisbee"}, {"index": 885, "image_id": 2348407, "entity": "dog", "caption": "dog's eye looking up past the frisbee", "question": ["is there dog's eye ?", "is there the frisbee ?"], "prompt": "{}'s eye looking up past the frisbee"}, {"index": 886, "image_id": 2348407, "entity": "dog", "caption": "dog's ear hanging down as he chews the frisbee", "question": ["is there dog's ear ?", "is there the frisbee ?"], "prompt": "{}'s ear hanging down as he chews the frisbee"}, {"index": 887, "image_id": 2347998, "entity": "dog", "caption": "dog is on the newspaper", "question": ["is there dog ?", "is there the newspaper ?"], "prompt": "{} is on the newspaper"}, {"index": 888, "image_id": 2347801, "entity": "dog", "caption": "a dog tag shaped like a bone ", "question": ["is there a dog tag ?", "is there a bone ?"], "prompt": "a {} tag shaped like a bone "}, {"index": 889, "image_id": 2347801, "entity": "dog", "caption": "The dog is inside a room", "question": ["is there the dog ?", "is there a room ?"], "prompt": "The {} is inside a room"}, {"index": 890, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a television", "question": ["is there the dog ?", "is there a television ?"], "prompt": "The {} is next to a television"}, {"index": 891, "image_id": 2347801, "entity": "dog", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The {} is next to a laptop computer"}, {"index": 892, "image_id": 2347801, "entity": "dog", "caption": "The dog is on a table", "question": ["is there the dog ?", "is there a table ?"], "prompt": "The {} is on a table"}, {"index": 893, "image_id": 2347591, "entity": "dog", "caption": "A woman who is sitting with a dog", "question": ["is there a woman ?", "is there a dog ?"], "prompt": "A woman who is sitting with a {}"}, {"index": 894, "image_id": 2347591, "entity": "dog", "caption": "Woman is holding the dog", "question": ["is there woman ?", "is there the dog ?"], "prompt": "Woman is holding the {}"}, {"index": 895, "image_id": 2347481, "entity": "dog", "caption": "a dog with a disc on it's face", "question": ["is there a dog ?", "is there a disc ?"], "prompt": "a {} with a disc on it's face"}, {"index": 896, "image_id": 2347481, "entity": "dog", "caption": "dog has black and white tail", "question": ["is there dog ?", "is there black and white tail ?"], "prompt": "{} has black and white tail"}, {"index": 897, "image_id": 2347481, "entity": "dog", "caption": "dog has white neck", "question": ["is there dog ?", "is there white neck ?"], "prompt": "{} has white neck"}, {"index": 898, "image_id": 2347481, "entity": "dog", "caption": "The dogs tail", "question": ["are there the dogs ?"], "prompt": "The {}s tail"}, {"index": 899, "image_id": 2347481, "entity": "dog", "caption": "The ears that belong to the dog", "question": ["are there the ears ?", "is there the dog ?"], "prompt": "The ears that belong to the {}"}, {"index": 900, "image_id": 2347481, "entity": "dog", "caption": "A dog that is standing in the dirt", "question": ["is there a dog ?", "is there the dirt ?"], "prompt": "A {} that is standing in the dirt"}, {"index": 901, "image_id": 2347473, "entity": "dog", "caption": "the brown patches on the dogs face", "question": ["are there the brown patches ?", "are there the dogs ?"], "prompt": "the brown patches on the {}s face"}, {"index": 902, "image_id": 2347340, "entity": "dog", "caption": "dog's dark eyes are open", "question": ["are there dog's dark eyes ?"], "prompt": "{}'s dark eyes are open"}, {"index": 903, "image_id": 2347340, "entity": "dog", "caption": "the dog is on a chair", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "the {} is on a chair"}, {"index": 904, "image_id": 2347027, "entity": "dog", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car"}, {"index": 905, "image_id": 2347027, "entity": "dog", "caption": "dog has tongue hanging out ", "question": ["is there dog ?", "is there tongue ?"], "prompt": "{} has tongue hanging out "}, {"index": 906, "image_id": 2347027, "entity": "dog", "caption": "The dog have waggy ear.", "question": ["is there the dog ?"], "prompt": "The {} have waggy ear."}, {"index": 907, "image_id": 2346970, "entity": "dog", "caption": "The dog is resting his head on the couch.", "question": ["is there the dog ?", "is there his head ?", "is there the couch ?"], "prompt": "The {} is resting his head on the couch."}, {"index": 908, "image_id": 2346970, "entity": "dog", "caption": "The dog is wearing a blue collar.", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} is wearing a blue collar."}, {"index": 909, "image_id": 2346970, "entity": "dog", "caption": "The dog's eye is open.", "question": ["is there the dog's eye ?"], "prompt": "The {}'s eye is open."}, {"index": 910, "image_id": 2346970, "entity": "dog", "caption": "The dog's fur is very short.", "question": ["is there the dog's fur ?"], "prompt": "The {}'s fur is very short."}, {"index": 911, "image_id": 2346970, "entity": "dog", "caption": "The dog is sitting on top of white sheet.", "question": ["is there the dog ?", "is there top ?", "is there white sheet ?"], "prompt": "The {} is sitting on top of white sheet."}, {"index": 912, "image_id": 2346970, "entity": "dog", "caption": "the dogs neck is long ", "question": ["are there the dogs neck ?"], "prompt": "the {}s neck is long "}, {"index": 913, "image_id": 2346869, "entity": "dog", "caption": "dog is catching frisbee", "question": ["is there dog ?", "is there frisbee ?"], "prompt": "{} is catching frisbee"}, {"index": 914, "image_id": 2346869, "entity": "dog", "caption": "dog has white frisbee in mouth", "question": ["is there dog ?", "is there white frisbee ?", "is there mouth ?"], "prompt": "{} has white frisbee in mouth"}, {"index": 915, "image_id": 2346869, "entity": "dog", "caption": "tree is next to dog", "question": ["is there tree ?", "is there dog ?"], "prompt": "tree is next to {}"}, {"index": 916, "image_id": 2346869, "entity": "dog", "caption": "man in cap leaning forward behind dog", "question": ["is there man ?", "is there cap ?", "is there dog ?"], "prompt": "man in cap leaning forward behind {}"}, {"index": 917, "image_id": 2346765, "entity": "dog", "caption": "neck of dog is white", "question": ["is there neck ?", "is there dog ?"], "prompt": "neck of {} is white"}, {"index": 918, "image_id": 2346434, "entity": "dog", "caption": "the dog's eyes are black", "question": ["are there the dog's eyes ?"], "prompt": "the {}'s eyes are black"}, {"index": 919, "image_id": 2346434, "entity": "dog", "caption": "black pads and nails are on the dog's paws", "question": ["are there black pads ?", "are there nails ?", "are there the dog's paws ?"], "prompt": "black pads and nails are on the {}'s paws"}, {"index": 920, "image_id": 2346247, "entity": "dog", "caption": "Brown ear on the dog.", "question": ["is there brown ear ?", "is there the dog ?"], "prompt": "Brown ear on the {}."}, {"index": 921, "image_id": 2346086, "entity": "dog", "caption": "the black dog has a sad face", "question": ["is there the black dog ?", "is there a sad face ?"], "prompt": "the black {} has a sad face"}, {"index": 922, "image_id": 2346086, "entity": "dog", "caption": "A dog is near a bag.", "question": ["is there a dog ?", "is there a bag ?"], "prompt": "A {} is near a bag."}, {"index": 923, "image_id": 2346086, "entity": "dog", "caption": "The dog's mouth is closed.", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is closed."}, {"index": 924, "image_id": 2346086, "entity": "dog", "caption": "The dog is wearing a crocheted hat.", "question": ["is there the dog ?", "is there a crocheted hat ?"], "prompt": "The {} is wearing a crocheted hat."}, {"index": 925, "image_id": 2346086, "entity": "dog", "caption": "The dog has an ear.", "question": ["is there the dog ?", "is there an ear ?"], "prompt": "The {} has an ear."}, {"index": 926, "image_id": 2346086, "entity": "dog", "caption": "The dog has an eye.", "question": ["is there the dog ?", "is there an eye ?"], "prompt": "The {} has an eye."}, {"index": 927, "image_id": 2345642, "entity": "dog", "caption": "head of dog bowed down ", "question": ["is there head ?", "is there dog ?"], "prompt": "head of {} bowed down "}, {"index": 928, "image_id": 2345642, "entity": "dog", "caption": "green blanket the dog is laying on", "question": ["is there green blanket ?", "is there the dog ?"], "prompt": "green blanket the {} is laying on"}, {"index": 929, "image_id": 2345272, "entity": "dog", "caption": "the dogs tail ", "question": ["are there the dogs ?"], "prompt": "the {}s tail "}, {"index": 930, "image_id": 2345272, "entity": "dog", "caption": "a black dog looks onward with his tongue hanging out", "question": ["is there a black dog ?", "is there his tongue ?"], "prompt": "a black {} looks onward with his tongue hanging out"}, {"index": 931, "image_id": 2345272, "entity": "dog", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the boat holding a {} with a leash"}, {"index": 932, "image_id": 2345231, "entity": "dog", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the {}s paws on on the computer"}, {"index": 933, "image_id": 2345068, "entity": "dog", "caption": "Extra pillow for the dog to be comfortable", "question": ["is there extra pillow ?", "is there the dog ?"], "prompt": "Extra pillow for the {} to be comfortable"}, {"index": 934, "image_id": 2345068, "entity": "dog", "caption": "Teddy bear for the dog", "question": ["is there the dog ?"], "prompt": "Teddy bear for the {}"}, {"index": 935, "image_id": 2345068, "entity": "dog", "caption": "a dog curled up on its bed ", "question": ["is there a dog ?", "is there its bed ?"], "prompt": "a {} curled up on its bed "}, {"index": 936, "image_id": 2344922, "entity": "dog", "caption": "This dog has a very red collar", "question": ["is there this dog ?", "is there a very red collar ?"], "prompt": "This {} has a very red collar"}, {"index": 937, "image_id": 2344729, "entity": "dog", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the {} is in the car"}, {"index": 938, "image_id": 2344729, "entity": "dog", "caption": "this is the dogs leash", "question": ["are there the dogs ?"], "prompt": "this is the {}s leash"}, {"index": 939, "image_id": 2344635, "entity": "dog", "caption": "The dog is wearing a tag.", "question": ["is there the dog ?", "is there a tag ?"], "prompt": "The {} is wearing a tag."}, {"index": 940, "image_id": 2344635, "entity": "dog", "caption": "dog is wearing a tag", "question": ["is there dog ?", "is there a tag ?"], "prompt": "{} is wearing a tag"}, {"index": 941, "image_id": 2344635, "entity": "dog", "caption": "dogs eye looks white ", "question": ["are there dogs ?"], "prompt": "{}s eye looks white "}, {"index": 942, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is black.", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is black."}, {"index": 943, "image_id": 2344526, "entity": "dog", "caption": "The dogs nose is small", "question": ["are there the dogs nose ?"], "prompt": "The {}s nose is small"}, {"index": 944, "image_id": 2344526, "entity": "dog", "caption": "The dogs fur is white.", "question": ["are there the dogs ?", "is there fur ?"], "prompt": "The {}s fur is white."}, {"index": 945, "image_id": 2344358, "entity": "dog", "caption": "this dog is under a white blanket", "question": ["is there this dog ?", "is there a white blanket ?"], "prompt": "this {} is under a white blanket"}, {"index": 946, "image_id": 2344283, "entity": "dog", "caption": "the dog is at the beach", "question": ["is there the dog ?", "is there the beach ?"], "prompt": "the {} is at the beach"}, {"index": 947, "image_id": 2344283, "entity": "dog", "caption": "the dog is sitting on a towel", "question": ["is there the dog ?", "is there a towel ?"], "prompt": "the {} is sitting on a towel"}, {"index": 948, "image_id": 2344283, "entity": "dog", "caption": "a bag is by the dog", "question": ["is there a bag ?", "is there the dog ?"], "prompt": "a bag is by the {}"}, {"index": 949, "image_id": 2344283, "entity": "dog", "caption": "Brown dog is on a towel", "question": ["is there brown dog ?", "is there a towel ?"], "prompt": "Brown {} is on a towel"}, {"index": 950, "image_id": 2344228, "entity": "dog", "caption": "the dog has a brown part", "question": ["is there the dog ?", "is there a brown part ?"], "prompt": "the {} has a brown part"}, {"index": 951, "image_id": 2344228, "entity": "dog", "caption": "the dog has a black spot", "question": ["is there the dog ?", "is there a black spot ?"], "prompt": "the {} has a black spot"}, {"index": 952, "image_id": 2343539, "entity": "dog", "caption": "dog's tongue is hanging out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is hanging out"}, {"index": 953, "image_id": 2343539, "entity": "dog", "caption": "dog's ears are back ", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are back "}, {"index": 954, "image_id": 2343194, "entity": "dog", "caption": "the dog has three balls", "question": ["is there the dog ?", "are there three balls ?"], "prompt": "the {} has three balls"}, {"index": 955, "image_id": 2343194, "entity": "dog", "caption": "the dog has balls in his mouth", "question": ["is there the dog ?", "are there balls ?", "is there his mouth ?"], "prompt": "the {} has balls in his mouth"}, {"index": 956, "image_id": 2343194, "entity": "dog", "caption": "the dog has a spotted nose", "question": ["is there the dog ?", "is there a spotted nose ?"], "prompt": "the {} has a spotted nose"}, {"index": 957, "image_id": 2343149, "entity": "dog", "caption": "The dog is splashing water", "question": ["is there the dog ?", "is there water ?"], "prompt": "The {} is splashing water"}, {"index": 958, "image_id": 2343149, "entity": "dog", "caption": "The dog's teeth are visible", "question": ["are there the dog's teeth ?"], "prompt": "The {}'s teeth are visible"}, {"index": 959, "image_id": 2343038, "entity": "dog", "caption": "dog with eyes closed", "question": ["is there dog ?", "are there eyes ?"], "prompt": "{} with eyes closed"}, {"index": 960, "image_id": 2342562, "entity": "dog", "caption": "dog mout to grab frisbees and eat food and drink water ", "question": ["is there dog mout ?", "are there frisbees ?", "is there food ?", "is there water ?"], "prompt": "{} mout to grab frisbees and eat food and drink water "}, {"index": 961, "image_id": 2342562, "entity": "dog", "caption": "The dog has a black ear.", "question": ["is there the dog ?", "is there a black ear ?"], "prompt": "The {} has a black ear."}, {"index": 962, "image_id": 2341045, "entity": "dog", "caption": "this dog and teddy bear are posing", "question": ["is there this dog ?", "is there bear ?"], "prompt": "this {} and teddy bear are posing"}, {"index": 963, "image_id": 2341045, "entity": "dog", "caption": "The dog is resting on white shaggy carpet.", "question": ["is there the dog ?", "is there white shaggy carpet ?"], "prompt": "The {} is resting on white shaggy carpet."}, {"index": 964, "image_id": 2340940, "entity": "dog", "caption": "The banana is inside the dog's mouth.", "question": ["is there the banana ?", "is there the dog's mouth ?"], "prompt": "The banana is inside the {}'s mouth."}, {"index": 965, "image_id": 2340940, "entity": "dog", "caption": "The little dog is sitting on top of the white blanket.", "question": ["is there the little dog ?", "is there top ?", "is there the white blanket ?"], "prompt": "The little {} is sitting on top of the white blanket."}, {"index": 966, "image_id": 2340940, "entity": "dog", "caption": "The dog has a pink collar.", "question": ["is there the dog ?", "is there a pink collar ?"], "prompt": "The {} has a pink collar."}, {"index": 967, "image_id": 2340940, "entity": "dog", "caption": "The dog is wearing a white collar.", "question": ["is there the dog ?", "is there a white collar ?"], "prompt": "The {} is wearing a white collar."}, {"index": 968, "image_id": 2340686, "entity": "dog", "caption": "The dog face is partially white.", "question": ["is there the dog face ?"], "prompt": "The {} face is partially white."}, {"index": 969, "image_id": 2339641, "entity": "dog", "caption": "dog has white spot on chest", "question": ["is there dog ?", "is there white spot ?", "is there chest ?"], "prompt": "{} has white spot on chest"}, {"index": 970, "image_id": 2339641, "entity": "dog", "caption": "dog is on a motorcycle", "question": ["is there dog ?", "is there a motorcycle ?"], "prompt": "{} is on a motorcycle"}, {"index": 971, "image_id": 2339617, "entity": "dog", "caption": "The dog sits on a chair. ", "question": ["is there the dog ?", "is there a chair ?"], "prompt": "The {} sits on a chair. "}, {"index": 972, "image_id": 2339617, "entity": "dog", "caption": "A blanket that the dog sits on.", "question": ["is there a blanket ?", "is there the dog ?"], "prompt": "A blanket that the {} sits on."}, {"index": 973, "image_id": 2339617, "entity": "dog", "caption": "dog has black back", "question": ["is there dog ?"], "prompt": "{} has black back"}, {"index": 974, "image_id": 2339511, "entity": "dog", "caption": "The cat is next to the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The cat is next to the {}."}, {"index": 975, "image_id": 2339511, "entity": "dog", "caption": "The paw on the dog is white.", "question": ["is there the paw ?", "is there the dog ?"], "prompt": "The paw on the {} is white."}, {"index": 976, "image_id": 2339511, "entity": "dog", "caption": "brown striped cat lays next to dog", "question": ["is there brown striped cat ?", "is there dog ?"], "prompt": "brown striped cat lays next to {}"}, {"index": 977, "image_id": 2339511, "entity": "dog", "caption": "white front left paw on dog", "question": ["is there white front ?", "is there paw ?", "is there dog ?"], "prompt": "white front left paw on {}"}, {"index": 978, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around nose", "question": ["is there dog ?", "is there white fur ?", "is there nose ?"], "prompt": "{} has white fur around nose"}, {"index": 979, "image_id": 2339511, "entity": "dog", "caption": "dog has white fur around paws", "question": ["is there dog ?", "is there white fur ?", "are there paws ?"], "prompt": "{} has white fur around paws"}, {"index": 980, "image_id": 2339238, "entity": "dog", "caption": "dog has black ear", "question": ["is there dog ?", "is there black ear ?"], "prompt": "{} has black ear"}, {"index": 981, "image_id": 2339238, "entity": "dog", "caption": "dog has black eye", "question": ["is there dog ?", "is there black eye ?"], "prompt": "{} has black eye"}, {"index": 982, "image_id": 2339238, "entity": "dog", "caption": "dog has a white tooth", "question": ["is there dog ?", "is there a white tooth ?"], "prompt": "{} has a white tooth"}, {"index": 983, "image_id": 2337950, "entity": "dog", "caption": "couch man and dog are sitting on", "question": ["is there couch man ?", "is there dog ?"], "prompt": "couch man and {} are sitting on"}, {"index": 984, "image_id": 2337205, "entity": "dog", "caption": "the dog's eye is open ", "question": ["is there the dog's eye ?"], "prompt": "the {}'s eye is open "}, {"index": 985, "image_id": 2336811, "entity": "dog", "caption": "Front left paw of the dog", "question": ["is there front left paw ?", "is there the dog ?"], "prompt": "Front left paw of the {}"}, {"index": 986, "image_id": 2336773, "entity": "dog", "caption": "Small dogs right eye", "question": ["are there small dogs ?"], "prompt": "Small {}s right eye"}, {"index": 987, "image_id": 2336773, "entity": "dog", "caption": "Small dogs left eye", "question": ["are there small dogs ?", "is there eye ?"], "prompt": "Small {}s left eye"}, {"index": 988, "image_id": 2336693, "entity": "dog", "caption": "the dog is carrying a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is carrying a frisbee"}, {"index": 989, "image_id": 2336693, "entity": "dog", "caption": "the dog's front legs are white", "question": ["are there the dog's front legs ?"], "prompt": "the {}'s front legs are white"}, {"index": 990, "image_id": 2336693, "entity": "dog", "caption": "the dog's back legs are black", "question": ["are there the dog's back legs ?"], "prompt": "the {}'s back legs are black"}, {"index": 991, "image_id": 2336693, "entity": "dog", "caption": "the dog's shadow is in the grass", "question": ["is there the dog's shadow ?", "is there the grass ?"], "prompt": "the {}'s shadow is in the grass"}, {"index": 992, "image_id": 2336402, "entity": "dog", "caption": "dog with it's head in a box", "question": ["is there dog ?", "is there head ?", "is there a box ?"], "prompt": "{} with it's head in a box"}, {"index": 993, "image_id": 2336402, "entity": "dog", "caption": "A black streak down dogs back", "question": ["is there a black streak ?"], "prompt": "A black streak down {}s back"}, {"index": 994, "image_id": 2336402, "entity": "dog", "caption": "the dogs head is in the box", "question": ["are there the dogs ?", "is there the box ?"], "prompt": "the {}s head is in the box"}, {"index": 995, "image_id": 2336257, "entity": "dog", "caption": "the dog is in water", "question": ["is there the dog ?", "is there water ?"], "prompt": "the {} is in water"}, {"index": 996, "image_id": 2336147, "entity": "dog", "caption": "Black and white dog standing on a sandy ground.", "question": ["is there black and white dog ?", "is there a sandy ground ?"], "prompt": "Black and white {} standing on a sandy ground."}, {"index": 997, "image_id": 2336147, "entity": "dog", "caption": "The dog's pink tongue sticking out.", "question": ["is there the dog's pink tongue ?"], "prompt": "The {}'s pink tongue sticking out."}, {"index": 998, "image_id": 2336147, "entity": "dog", "caption": "dog's face is black and white", "question": ["is there dog's face ?"], "prompt": "{}'s face is black and white"}, {"index": 999, "image_id": 2336147, "entity": "dog", "caption": "dog's tongue is sticking out", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is sticking out"}, {"index": 1000, "image_id": 2336147, "entity": "dog", "caption": "dog's paw is white", "question": ["is there dog's paw ?"], "prompt": "{}'s paw is white"}, {"index": 1001, "image_id": 2336045, "entity": "dog", "caption": "fake dog sits on bench", "question": ["is there fake dog ?", "is there bench ?"], "prompt": "fake {} sits on bench"}, {"index": 1002, "image_id": 2336045, "entity": "dog", "caption": "fake dog wears red collar", "question": ["is there fake dog ?", "is there red collar ?"], "prompt": "fake {} wears red collar"}, {"index": 1003, "image_id": 2335892, "entity": "dog", "caption": "Toy occupies leashed dog.", "question": ["is there toy ?", "is there leashed dog ?"], "prompt": "Toy occupies leashed {}."}, {"index": 1004, "image_id": 2335707, "entity": "dog", "caption": "dog has dark claws", "question": ["is there dog ?", "are there dark claws ?"], "prompt": "{} has dark claws"}, {"index": 1005, "image_id": 2335655, "entity": "dog", "caption": "Tan dog is holding toy in mouth.", "question": ["is there tan dog ?", "is there toy ?", "is there mouth ?"], "prompt": "Tan {} is holding toy in mouth."}, {"index": 1006, "image_id": 2335655, "entity": "dog", "caption": "This dog seems to have a white face", "question": ["is there this dog ?", "is there a white face ?"], "prompt": "This {} seems to have a white face"}, {"index": 1007, "image_id": 2335655, "entity": "dog", "caption": "This dog has quite a paw visible here", "question": ["is there this dog ?", "is there quite a paw ?"], "prompt": "This {} has quite a paw visible here"}, {"index": 1008, "image_id": 2335550, "entity": "dog", "caption": "dog is laying on the couch", "question": ["is there dog ?", "is there the couch ?"], "prompt": "{} is laying on the couch"}, {"index": 1009, "image_id": 2335550, "entity": "dog", "caption": "dog has fluffy dark fur", "question": ["is there dog ?", "is there fluffy dark fur ?"], "prompt": "{} has fluffy dark fur"}, {"index": 1010, "image_id": 2335487, "entity": "dog", "caption": "an ear is up on the dog", "question": ["is there an ear ?", "is there the dog ?"], "prompt": "an ear is up on the {}"}, {"index": 1011, "image_id": 2335487, "entity": "dog", "caption": "the dog is wearing a yellow coat", "question": ["is there the dog ?", "is there a yellow coat ?"], "prompt": "the {} is wearing a yellow coat"}, {"index": 1012, "image_id": 2335487, "entity": "dog", "caption": "dog's cloth is green", "question": ["is there dog's cloth ?"], "prompt": "{}'s cloth is green"}, {"index": 1013, "image_id": 2334964, "entity": "dog", "caption": "Chain connected to dog's collar.", "question": ["is there chain ?", "is there dog's collar ?"], "prompt": "Chain connected to {}'s collar."}, {"index": 1014, "image_id": 2334964, "entity": "dog", "caption": "the dog has a collar ", "question": ["is there the dog ?", "is there a collar ?"], "prompt": "the {} has a collar "}, {"index": 1015, "image_id": 2334964, "entity": "dog", "caption": "the collar is around the dog's neck", "question": ["is there the collar ?", "is there the dog's neck ?"], "prompt": "the collar is around the {}'s neck"}, {"index": 1016, "image_id": 2334936, "entity": "dog", "caption": "dog has an eye", "question": ["is there dog ?", "is there an eye ?"], "prompt": "{} has an eye"}, {"index": 1017, "image_id": 2334611, "entity": "dog", "caption": "front left foot on dog", "question": ["is there front left foot ?", "is there dog ?"], "prompt": "front left foot on {}"}, {"index": 1018, "image_id": 2334526, "entity": "dog", "caption": "The dog nose is black.", "question": ["is there the dog nose ?"], "prompt": "The {} nose is black."}, {"index": 1019, "image_id": 2334526, "entity": "dog", "caption": "The dog eyes on his face.", "question": ["is there the dog ?", "is there his face ?"], "prompt": "The {} eyes on his face."}, {"index": 1020, "image_id": 2334482, "entity": "dog", "caption": "This is a dog", "question": ["is there a dog ?"], "prompt": "This is a {}"}, {"index": 1021, "image_id": 2334482, "entity": "dog", "caption": "The dog is on a bench", "question": ["is there the dog ?", "is there a bench ?"], "prompt": "The {} is on a bench"}, {"index": 1022, "image_id": 2334375, "entity": "dog", "caption": "dog nose is black", "question": ["is there dog nose ?"], "prompt": "{} nose is black"}, {"index": 1023, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is black.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is black."}, {"index": 1024, "image_id": 2334355, "entity": "dog", "caption": "The dogs left eye is round.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s left eye is round."}, {"index": 1025, "image_id": 2334355, "entity": "dog", "caption": "The dogs left ear is black.", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "The {}s left ear is black."}, {"index": 1026, "image_id": 2334355, "entity": "dog", "caption": "The dogs right eye is black.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is black."}, {"index": 1027, "image_id": 2333902, "entity": "dog", "caption": "The dog is laying on the back of the couch", "question": ["is there the dog ?", "is there the back ?", "is there the couch ?"], "prompt": "The {} is laying on the back of the couch"}, {"index": 1028, "image_id": 2333902, "entity": "dog", "caption": "The dogs tongue is sticking out of his mouth", "question": ["are there the dogs tongue ?", "is there his mouth ?"], "prompt": "The {}s tongue is sticking out of his mouth"}, {"index": 1029, "image_id": 2333902, "entity": "dog", "caption": "dog has a nose", "question": ["is there dog ?", "is there a nose ?"], "prompt": "{} has a nose"}, {"index": 1030, "image_id": 2333902, "entity": "dog", "caption": "dog has an ear", "question": ["is there dog ?", "is there an ear ?"], "prompt": "{} has an ear"}, {"index": 1031, "image_id": 2333902, "entity": "dog", "caption": "dog has a tounge", "question": ["is there dog ?", "is there a tounge ?"], "prompt": "{} has a tounge"}, {"index": 1032, "image_id": 2333902, "entity": "dog", "caption": "dog has an arm", "question": ["is there dog ?", "is there an arm ?"], "prompt": "{} has an arm"}, {"index": 1033, "image_id": 2333590, "entity": "dog", "caption": "the dog is smelling her hand", "question": ["is there the dog ?", "is there her hand ?"], "prompt": "the {} is smelling her hand"}, {"index": 1034, "image_id": 2333443, "entity": "dog", "caption": "wet dog taking a bath in a tub", "question": ["is there wet dog ?", "is there a bath ?", "is there a tub ?"], "prompt": "wet {} taking a bath in a tub"}, {"index": 1035, "image_id": 2333438, "entity": "dog", "caption": "The dog has a brown eye.", "question": ["is there the dog ?", "is there a brown eye ?"], "prompt": "The {} has a brown eye."}, {"index": 1036, "image_id": 2333438, "entity": "dog", "caption": "The dogs eye is open.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is open."}, {"index": 1037, "image_id": 2333438, "entity": "dog", "caption": "The dog has teeth.", "question": ["is there the dog ?", "are there teeth ?"], "prompt": "The {} has teeth."}, {"index": 1038, "image_id": 2333438, "entity": "dog", "caption": "The dog has a tongue.", "question": ["is there the dog ?", "is there a tongue ?"], "prompt": "The {} has a tongue."}, {"index": 1039, "image_id": 2333438, "entity": "dog", "caption": "The dog has a red collar", "question": ["is there the dog ?", "is there a red collar ?"], "prompt": "The {} has a red collar"}, {"index": 1040, "image_id": 2333438, "entity": "dog", "caption": "dog with its ears bag", "question": ["is there dog ?", "are there its ears ?"], "prompt": "{} with its ears bag"}, {"index": 1041, "image_id": 2333438, "entity": "dog", "caption": "dog mouth open", "question": [], "prompt": "{} mouth open"}, {"index": 1042, "image_id": 2333438, "entity": "dog", "caption": "dog has black and white paws", "question": ["is there dog ?", "are there black and white paws ?"], "prompt": "{} has black and white paws"}, {"index": 1043, "image_id": 2333438, "entity": "dog", "caption": "dog's mouth is open with tounge out", "question": ["is there dog's mouth ?", "is there tounge ?"], "prompt": "{}'s mouth is open with tounge out"}, {"index": 1044, "image_id": 2333301, "entity": "dog", "caption": "the dog has its mouth open.", "question": ["is there the dog ?", "is there its mouth ?"], "prompt": "the {} has its mouth open."}, {"index": 1045, "image_id": 2333301, "entity": "dog", "caption": "the dog's ear is standing straight up.", "question": ["is there the dog's ear ?"], "prompt": "the {}'s ear is standing straight up."}, {"index": 1046, "image_id": 2333301, "entity": "dog", "caption": "the dog's left back leg.", "question": ["is there the dog ?", "is there leg ?"], "prompt": "the {}'s left back leg."}, {"index": 1047, "image_id": 2333301, "entity": "dog", "caption": "dog mouth wide open ", "question": [], "prompt": "{} mouth wide open "}, {"index": 1048, "image_id": 2333301, "entity": "dog", "caption": "dog's tongue is pink.", "question": ["is there dog's tongue ?"], "prompt": "{}'s tongue is pink."}, {"index": 1049, "image_id": 2332835, "entity": "dog", "caption": "The dogs tongue is pink.", "question": ["are there the dogs tongue ?"], "prompt": "The {}s tongue is pink."}, {"index": 1050, "image_id": 2332835, "entity": "dog", "caption": "The dogs right eye is round.", "question": ["are there the dogs ?", "is there right eye ?"], "prompt": "The {}s right eye is round."}, {"index": 1051, "image_id": 2332607, "entity": "dog", "caption": "dog's eyes looking at camera", "question": ["are there dog's eyes ?", "is there camera ?"], "prompt": "{}'s eyes looking at camera"}, {"index": 1052, "image_id": 2332583, "entity": "dog", "caption": "dog has brown tail", "question": ["is there dog ?", "is there brown tail ?"], "prompt": "{} has brown tail"}, {"index": 1053, "image_id": 2332583, "entity": "dog", "caption": "dog has brown back", "question": ["is there dog ?"], "prompt": "{} has brown back"}, {"index": 1054, "image_id": 2332513, "entity": "dog", "caption": "two dogs are lying ", "question": ["are there two dogs ?"], "prompt": "two {}s are lying "}, {"index": 1055, "image_id": 2332513, "entity": "dog", "caption": "this dog's head is up ", "question": ["is there this dog's head ?"], "prompt": "this {}'s head is up "}, {"index": 1056, "image_id": 2332418, "entity": "dog", "caption": "dog has white ears", "question": ["is there dog ?", "are there white ears ?"], "prompt": "{} has white ears"}, {"index": 1057, "image_id": 2331647, "entity": "dog", "caption": "The hat the dog is wearing.", "question": ["is there the hat ?", "is there the dog ?"], "prompt": "The hat the {} is wearing."}, {"index": 1058, "image_id": 2331519, "entity": "dog", "caption": "The dog tongue is pink.", "question": ["is there the dog tongue ?"], "prompt": "The {} tongue is pink."}, {"index": 1059, "image_id": 2331519, "entity": "dog", "caption": "The dog is licking his tongue out.", "question": ["is there the dog ?", "is there his tongue ?"], "prompt": "The {} is licking his tongue out."}, {"index": 1060, "image_id": 2331519, "entity": "dog", "caption": "The frisbee is near the dog leg.", "question": ["is there the dog leg ?"], "prompt": "The frisbee is near the {} leg."}, {"index": 1061, "image_id": 2331519, "entity": "dog", "caption": "The dog is playing with the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "The {} is playing with the frisbee"}, {"index": 1062, "image_id": 2331519, "entity": "dog", "caption": "The Frisbee is in front of the dog. ", "question": ["is there the frisbee ?", "is there front ?", "is there the dog ?"], "prompt": "The Frisbee is in front of the {}. "}, {"index": 1063, "image_id": 2331395, "entity": "dog", "caption": "The front left paw of the dog.", "question": ["is there the front left paw ?", "is there the dog ?"], "prompt": "The front left paw of the {}."}, {"index": 1064, "image_id": 2330828, "entity": "dog", "caption": "dog has long nose", "question": ["is there dog ?", "is there long nose ?"], "prompt": "{} has long nose"}, {"index": 1065, "image_id": 2330828, "entity": "dog", "caption": "dog has nice coat", "question": ["is there dog ?", "is there nice coat ?"], "prompt": "{} has nice coat"}, {"index": 1066, "image_id": 2330828, "entity": "dog", "caption": "dog has big ear", "question": ["is there dog ?", "is there big ear ?"], "prompt": "{} has big ear"}, {"index": 1067, "image_id": 2329335, "entity": "dog", "caption": "dog has brown paws", "question": ["is there dog ?", "are there brown paws ?"], "prompt": "{} has brown paws"}, {"index": 1068, "image_id": 2329309, "entity": "dog", "caption": "brown white and black dog catching yellow Frisbee", "question": ["is there brown white and black dog ?", "is there yellow frisbee ?"], "prompt": "brown white and black {} catching yellow Frisbee"}, {"index": 1069, "image_id": 2329309, "entity": "dog", "caption": "Frisbee caught by black and brown dog", "question": ["is there black and brown dog ?"], "prompt": "Frisbee caught by black and brown {}"}, {"index": 1070, "image_id": 2329275, "entity": "dog", "caption": "the dog is lying on the couch", "question": ["is there the dog ?", "is there the couch ?"], "prompt": "the {} is lying on the couch"}, {"index": 1071, "image_id": 2329129, "entity": "dog", "caption": "the dog is eating a cake", "question": ["is there the dog ?", "is there a cake ?"], "prompt": "the {} is eating a cake"}, {"index": 1072, "image_id": 2328916, "entity": "dog", "caption": "The dog is sniffing the donut", "question": ["is there the dog ?", "is there the donut ?"], "prompt": "The {} is sniffing the donut"}, {"index": 1073, "image_id": 2328916, "entity": "dog", "caption": "bulldog sniffing a doughnut ", "question": ["is there a doughnut ?"], "prompt": "bull{} sniffing a doughnut "}, {"index": 1074, "image_id": 2328869, "entity": "dog", "caption": "black hat dog is wearing", "question": ["is there black hat dog ?"], "prompt": "black hat {} is wearing"}, {"index": 1075, "image_id": 2328633, "entity": "dog", "caption": "a dog with black spots on it's ear", "question": ["is there a dog ?", "are there black spots ?", "is there ear ?"], "prompt": "a {} with black spots on it's ear"}, {"index": 1076, "image_id": 2327968, "entity": "dog", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the {} is in a car "}, {"index": 1077, "image_id": 2327968, "entity": "dog", "caption": "the dog is sticking its head out ", "question": ["is there the dog ?", "is there its head ?"], "prompt": "the {} is sticking its head out "}, {"index": 1078, "image_id": 2327968, "entity": "dog", "caption": "the dog has its head out the window ", "question": ["is there the dog ?", "is there its head ?", "is there the window ?"], "prompt": "the {} has its head out the window "}, {"index": 1079, "image_id": 2327286, "entity": "dog", "caption": "the dogs eyes are closed", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are closed"}, {"index": 1080, "image_id": 2326860, "entity": "dog", "caption": "The dog has a frisbee inside his mouth.", "question": ["is there the dog ?", "is there a frisbee ?", "is there his mouth ?"], "prompt": "The {} has a frisbee inside his mouth."}, {"index": 1081, "image_id": 2326801, "entity": "dog", "caption": "A blue duffel bag a dog is on.", "question": ["is there a blue duffel bag ?", "is there a dog ?"], "prompt": "A blue duffel bag a {} is on."}, {"index": 1082, "image_id": 2325767, "entity": "dog", "caption": "A person is holding the dog", "question": ["is there a person ?", "is there the dog ?"], "prompt": "A person is holding the {}"}, {"index": 1083, "image_id": 2325561, "entity": "dog", "caption": "The dog's mouth is open", "question": ["is there the dog's mouth ?"], "prompt": "The {}'s mouth is open"}, {"index": 1084, "image_id": 2325561, "entity": "dog", "caption": "The dog's nose is black", "question": ["is there the dog's nose ?"], "prompt": "The {}'s nose is black"}, {"index": 1085, "image_id": 2325561, "entity": "dog", "caption": "The dog's eyes are open", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 1086, "image_id": 2325561, "entity": "dog", "caption": "dog has a black nose ", "question": ["is there dog ?", "is there a black nose ?"], "prompt": "{} has a black nose "}, {"index": 1087, "image_id": 2325561, "entity": "dog", "caption": "the dog has brown eye", "question": ["is there the dog ?", "is there brown eye ?"], "prompt": "the {} has brown eye"}, {"index": 1088, "image_id": 2325561, "entity": "dog", "caption": "the dogs left eye ", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye "}, {"index": 1089, "image_id": 2325561, "entity": "dog", "caption": "the dogs left ear ", "question": ["are there the dogs ?", "is there ear ?"], "prompt": "the {}s left ear "}, {"index": 1090, "image_id": 2325561, "entity": "dog", "caption": "dog has orange eyes", "question": ["is there dog ?", "are there orange eyes ?"], "prompt": "{} has orange eyes"}, {"index": 1091, "image_id": 2325561, "entity": "dog", "caption": "brown dog has golden eyes", "question": ["is there brown dog ?", "are there golden eyes ?"], "prompt": "brown {} has golden eyes"}, {"index": 1092, "image_id": 2325561, "entity": "dog", "caption": "black dog has brown eyes", "question": ["is there black dog ?", "are there brown eyes ?"], "prompt": "black {} has brown eyes"}, {"index": 1093, "image_id": 2325561, "entity": "dog", "caption": "black dog has a black nose", "question": ["is there black dog ?", "is there a black nose ?"], "prompt": "black {} has a black nose"}, {"index": 1094, "image_id": 2325561, "entity": "dog", "caption": "black dog has some white hair in its ruff", "question": ["is there black dog ?", "is there some white hair ?", "is there its ruff ?"], "prompt": "black {} has some white hair in its ruff"}, {"index": 1095, "image_id": 2325500, "entity": "dog", "caption": "eyes of dog open wide", "question": ["are there eyes ?", "is there dog ?"], "prompt": "eyes of {} open wide"}, {"index": 1096, "image_id": 2325500, "entity": "dog", "caption": "the dog has a safety vest", "question": ["is there the dog ?", "is there a safety vest ?"], "prompt": "the {} has a safety vest"}, {"index": 1097, "image_id": 2325442, "entity": "dog", "caption": "dog's ears are pink", "question": ["are there dog's ears ?"], "prompt": "{}'s ears are pink"}, {"index": 1098, "image_id": 2325387, "entity": "dog", "caption": "Woman laying on the floor next to dog.", "question": ["is there woman ?", "is there the floor ?", "is there dog ?"], "prompt": "Woman laying on the floor next to {}."}, {"index": 1099, "image_id": 2324981, "entity": "dog", "caption": "The dog has black patch over eye.", "question": ["is there the dog ?", "is there black patch ?", "is there eye ?"], "prompt": "The {} has black patch over eye."}, {"index": 1100, "image_id": 2324981, "entity": "dog", "caption": "The dog is carrying a blue frisbee.", "question": ["is there the dog ?", "is there a blue frisbee ?"], "prompt": "The {} is carrying a blue frisbee."}, {"index": 1101, "image_id": 2324981, "entity": "dog", "caption": "The dog has a nose.", "question": ["is there the dog ?", "is there a nose ?"], "prompt": "The {} has a nose."}, {"index": 1102, "image_id": 2323880, "entity": "dog", "caption": "dog is in picture", "question": ["is there dog ?", "is there picture ?"], "prompt": "{} is in picture"}, {"index": 1103, "image_id": 2323470, "entity": "dog", "caption": "the dog is laying in a green towel", "question": ["is there the dog ?", "is there a green towel ?"], "prompt": "the {} is laying in a green towel"}, {"index": 1104, "image_id": 2322848, "entity": "dog", "caption": "the cat and the dog are good friends", "question": ["is there the cat ?", "is there the dog ?", "are there good friends ?"], "prompt": "the cat and the {} are good friends"}, {"index": 1105, "image_id": 2322848, "entity": "dog", "caption": "this cat and this dog are obviously best friends", "question": ["is there this cat ?", "is there this dog ?", "are there best friends ?"], "prompt": "this cat and this {} are obviously best friends"}, {"index": 1106, "image_id": 2322792, "entity": "dog", "caption": "extended wet dog ear ", "question": ["is there extended wet dog ear ?"], "prompt": "extended wet {} ear "}, {"index": 1107, "image_id": 2322792, "entity": "dog", "caption": "dog ear flipping up", "question": ["is there dog ear ?"], "prompt": "{} ear flipping up"}, {"index": 1108, "image_id": 2322492, "entity": "dog", "caption": "Pile of clothes a small dog is lying on", "question": ["is there pile ?", "are there clothes ?", "is there a small dog ?"], "prompt": "Pile of clothes a small {} is lying on"}, {"index": 1109, "image_id": 2322220, "entity": "dog", "caption": "a dog is lying in the bed", "question": ["is there a dog ?", "is there the bed ?"], "prompt": "a {} is lying in the bed"}, {"index": 1110, "image_id": 2322220, "entity": "dog", "caption": "the dog is under the sheet", "question": ["is there the dog ?", "is there the sheet ?"], "prompt": "the {} is under the sheet"}, {"index": 1111, "image_id": 2322220, "entity": "dog", "caption": "the dogs ears are brown", "question": ["are there the dogs ears ?"], "prompt": "the {}s ears are brown"}, {"index": 1112, "image_id": 2322220, "entity": "dog", "caption": "the dogs front legs are white", "question": ["are there the dogs ?", "are there front legs ?"], "prompt": "the {}s front legs are white"}, {"index": 1113, "image_id": 2322086, "entity": "dog", "caption": "the dog has white spots", "question": ["is there the dog ?", "are there white spots ?"], "prompt": "the {} has white spots"}, {"index": 1114, "image_id": 2321901, "entity": "dog", "caption": "the dog is laying on a pillow ", "question": ["is there the dog ?", "is there a pillow ?"], "prompt": "the {} is laying on a pillow "}, {"index": 1115, "image_id": 2321544, "entity": "dog", "caption": "A silver chain is around the dog's neck.", "question": ["is there a silver chain ?", "is there the dog's neck ?"], "prompt": "A silver chain is around the {}'s neck."}, {"index": 1116, "image_id": 2321544, "entity": "dog", "caption": "The dog's left ear is black and brown. ", "question": ["is there the dog's left ear ?"], "prompt": "The {}'s left ear is black and brown. "}, {"index": 1117, "image_id": 2321544, "entity": "dog", "caption": "The dog's right ear is black and brown. ", "question": ["is there the dog's right ear ?"], "prompt": "The {}'s right ear is black and brown. "}, {"index": 1118, "image_id": 2321386, "entity": "dog", "caption": "the dog has a chain", "question": ["is there the dog ?", "is there a chain ?"], "prompt": "the {} has a chain"}, {"index": 1119, "image_id": 2320693, "entity": "dog", "caption": "the dog has a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} has a frisbee"}, {"index": 1120, "image_id": 2320693, "entity": "dog", "caption": "the dog has the frisbee", "question": ["is there the dog ?", "is there the frisbee ?"], "prompt": "the {} has the frisbee"}, {"index": 1121, "image_id": 2320693, "entity": "dog", "caption": "teh dog has brown eyes", "question": ["are there brown eyes ?"], "prompt": "teh {} has brown eyes"}, {"index": 1122, "image_id": 2320693, "entity": "dog", "caption": "dog has frisbee in his mouth", "question": ["is there dog ?", "is there frisbee ?", "is there his mouth ?"], "prompt": "{} has frisbee in his mouth"}, {"index": 1123, "image_id": 2320693, "entity": "dog", "caption": "dog in mouth is pink", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} in mouth is pink"}, {"index": 1124, "image_id": 2319884, "entity": "dog", "caption": "dog is eating a vitamin water", "question": ["is there dog ?", "is there a vitamin water ?"], "prompt": "{} is eating a vitamin water"}, {"index": 1125, "image_id": 2319723, "entity": "dog", "caption": "the dog is kissing the cat", "question": ["is there the dog ?", "is there the cat ?"], "prompt": "the {} is kissing the cat"}, {"index": 1126, "image_id": 2319347, "entity": "dog", "caption": "The dog is wearing a shirt", "question": ["is there the dog ?", "is there a shirt ?"], "prompt": "The {} is wearing a shirt"}, {"index": 1127, "image_id": 2319347, "entity": "dog", "caption": "The dog has on a nice shirt", "question": ["is there the dog ?", "is there a nice shirt ?"], "prompt": "The {} has on a nice shirt"}, {"index": 1128, "image_id": 2319347, "entity": "dog", "caption": "The dog has very long hair", "question": ["is there the dog ?", "is there very long hair ?"], "prompt": "The {} has very long hair"}, {"index": 1129, "image_id": 2319347, "entity": "dog", "caption": "The dog is having a great time", "question": ["is there the dog ?", "is there a great time ?"], "prompt": "The {} is having a great time"}, {"index": 1130, "image_id": 2319347, "entity": "dog", "caption": "The dog is out in the daytime", "question": ["is there the dog ?", "is there the daytime ?"], "prompt": "The {} is out in the daytime"}, {"index": 1131, "image_id": 2319347, "entity": "dog", "caption": "The dog is enjoying the day", "question": ["is there the dog ?", "is there the day ?"], "prompt": "The {} is enjoying the day"}, {"index": 1132, "image_id": 2318934, "entity": "dog", "caption": "A dog is wearing a shirt", "question": ["is there a dog ?", "is there a shirt ?"], "prompt": "A {} is wearing a shirt"}, {"index": 1133, "image_id": 2318934, "entity": "dog", "caption": "A dog has on a visor", "question": ["is there a dog ?", "is there a visor ?"], "prompt": "A {} has on a visor"}, {"index": 1134, "image_id": 2318934, "entity": "dog", "caption": "A dog has white curly hair", "question": ["is there a dog ?", "is there white curly hair ?"], "prompt": "A {} has white curly hair"}, {"index": 1135, "image_id": 2318934, "entity": "dog", "caption": "A dog is sticking its tongue out", "question": ["is there a dog ?", "is there its tongue ?"], "prompt": "A {} is sticking its tongue out"}, {"index": 1136, "image_id": 2318934, "entity": "dog", "caption": "A dog is with its master", "question": ["is there a dog ?", "is there its master ?"], "prompt": "A {} is with its master"}, {"index": 1137, "image_id": 2318892, "entity": "dog", "caption": "The dog has black fur", "question": ["is there the dog ?", "is there black fur ?"], "prompt": "The {} has black fur"}, {"index": 1138, "image_id": 2318849, "entity": "dog", "caption": "brown dog curled up with head on blanket", "question": ["is there brown dog ?", "is there head ?", "is there blanket ?"], "prompt": "brown {} curled up with head on blanket"}, {"index": 1139, "image_id": 2318849, "entity": "dog", "caption": "brown dog cuddled with toy with paw on bunny", "question": ["is there brown dog ?", "is there toy ?", "is there paw ?", "is there bunny ?"], "prompt": "brown {} cuddled with toy with paw on bunny"}, {"index": 1140, "image_id": 2318849, "entity": "dog", "caption": "a dog is in bed", "question": ["is there a dog ?", "is there bed ?"], "prompt": "a {} is in bed"}, {"index": 1141, "image_id": 2318849, "entity": "dog", "caption": "the dog is holding a doll", "question": ["is there the dog ?", "is there a doll ?"], "prompt": "the {} is holding a doll"}, {"index": 1142, "image_id": 2318849, "entity": "dog", "caption": "another doll lies close to the dog", "question": ["is there another doll ?", "is there the dog ?"], "prompt": "another doll lies close to the {}"}, {"index": 1143, "image_id": 2318849, "entity": "dog", "caption": "dog eyes are open", "question": ["are there dog eyes ?"], "prompt": "{} eyes are open"}, {"index": 1144, "image_id": 2318849, "entity": "dog", "caption": "the dog's paw is on the toy", "question": ["is there the dog's paw ?", "is there the toy ?"], "prompt": "the {}'s paw is on the toy"}, {"index": 1145, "image_id": 2318849, "entity": "dog", "caption": "dog holding white stuffed bunny", "question": ["is there white stuffed bunny ?"], "prompt": "{} holding white stuffed bunny"}, {"index": 1146, "image_id": 2318152, "entity": "dog", "caption": "Mulch dog is standing on", "question": ["is there mulch dog ?"], "prompt": "Mulch {} is standing on"}, {"index": 1147, "image_id": 2318115, "entity": "dog", "caption": "Brown leash on a dog", "question": ["is there brown leash ?", "is there a dog ?"], "prompt": "Brown leash on a {}"}, {"index": 1148, "image_id": 2318115, "entity": "dog", "caption": "A person on a skateboard walking their dog", "question": ["is there a person ?", "is there a skateboard ?", "is there their dog ?"], "prompt": "A person on a skateboard walking their {}"}, {"index": 1149, "image_id": 2318115, "entity": "dog", "caption": "person walking the dog", "question": ["is there person ?", "is there the dog ?"], "prompt": "person walking the {}"}, {"index": 1150, "image_id": 2317836, "entity": "dog", "caption": "the dog is in costume", "question": ["is there the dog ?", "is there costume ?"], "prompt": "the {} is in costume"}, {"index": 1151, "image_id": 2317283, "entity": "dog", "caption": "dog paws are tan", "question": ["are there dog paws ?", "is there tan ?"], "prompt": "{} paws are tan"}, {"index": 1152, "image_id": 2317283, "entity": "dog", "caption": "dog has mouth open", "question": ["is there dog ?", "is there mouth ?"], "prompt": "{} has mouth open"}, {"index": 1153, "image_id": 2317283, "entity": "dog", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The {} is in a car."}, {"index": 1154, "image_id": 2317283, "entity": "dog", "caption": "The dog's eyes are open.", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are open."}, {"index": 1155, "image_id": 2317002, "entity": "dog", "caption": "black whiskers are on the dog", "question": ["are there black whiskers ?", "is there the dog ?"], "prompt": "black whiskers are on the {}"}, {"index": 1156, "image_id": 2317002, "entity": "dog", "caption": "brown nails are on the dog", "question": ["are there brown nails ?", "is there the dog ?"], "prompt": "brown nails are on the {}"}, {"index": 1157, "image_id": 2316886, "entity": "dog", "caption": "the dog appears to be enjoying his snack", "question": ["is there the dog ?", "is there his snack ?"], "prompt": "the {} appears to be enjoying his snack"}, {"index": 1158, "image_id": 2316480, "entity": "dog", "caption": "nose of dog is black ", "question": ["is there nose ?", "is there dog ?"], "prompt": "nose of {} is black "}, {"index": 1159, "image_id": 2316480, "entity": "dog", "caption": "dog sits on couch", "question": ["is there dog ?", "is there couch ?"], "prompt": "{} sits on couch"}, {"index": 1160, "image_id": 2316480, "entity": "dog", "caption": "dog has pink dress", "question": ["is there dog ?", "is there pink dress ?"], "prompt": "{} has pink dress"}, {"index": 1161, "image_id": 2316349, "entity": "dog", "caption": "dog ear on right", "question": ["is there dog ear ?"], "prompt": "{} ear on right"}, {"index": 1162, "image_id": 2316242, "entity": "dog", "caption": "a dog rests on a person", "question": ["is there a dog ?", "is there a person ?"], "prompt": "a {} rests on a person"}, {"index": 1163, "image_id": 2316242, "entity": "dog", "caption": "The dog is wearing a hat.", "question": ["is there the dog ?", "is there a hat ?"], "prompt": "The {} is wearing a hat."}, {"index": 1164, "image_id": 2316242, "entity": "dog", "caption": "The hat is on the dog's head.", "question": ["is there the hat ?", "is there the dog's head ?"], "prompt": "The hat is on the {}'s head."}, {"index": 1165, "image_id": 2316242, "entity": "dog", "caption": "The dog has whiskers.", "question": ["is there the dog ?", "are there whiskers ?"], "prompt": "The {} has whiskers."}, {"index": 1166, "image_id": 2316170, "entity": "dog", "caption": "small dog with eyes closed", "question": ["is there small dog ?", "are there eyes ?"], "prompt": "small {} with eyes closed"}, {"index": 1167, "image_id": 2315589, "entity": "dog", "caption": "The dogs nose is black in color. ", "question": ["are there the dogs nose ?", "is there color ?"], "prompt": "The {}s nose is black in color. "}, {"index": 1168, "image_id": 2315589, "entity": "dog", "caption": "The dog has a black nose. ", "question": ["is there the dog ?", "is there a black nose ?"], "prompt": "The {} has a black nose. "}, {"index": 1169, "image_id": 2315589, "entity": "dog", "caption": "The dogs eye is brown.", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "The {}s eye is brown."}, {"index": 1170, "image_id": 2315589, "entity": "dog", "caption": "The dogs ear is black. ", "question": ["are there the dogs ?"], "prompt": "The {}s ear is black. "}, {"index": 1171, "image_id": 2315468, "entity": "dog", "caption": "dog has a leg", "question": ["is there dog ?", "is there a leg ?"], "prompt": "{} has a leg"}, {"index": 1172, "image_id": 2315468, "entity": "dog", "caption": "the dog carries a green frisbee", "question": ["is there the dog ?", "is there a green frisbee ?"], "prompt": "the {} carries a green frisbee"}, {"index": 1173, "image_id": 2315468, "entity": "dog", "caption": "the dog's collar is green", "question": ["is there the dog's collar ?"], "prompt": "the {}'s collar is green"}, {"index": 1174, "image_id": 2315447, "entity": "dog", "caption": "A dogs left black eye. ", "question": ["are there a dogs ?", "is there black eye ?"], "prompt": "A {}s left black eye. "}, {"index": 1175, "image_id": 2315441, "entity": "dog", "caption": "The 2 dogs lay on the bed together", "question": ["are there the 2 dogs ?", "is there the bed ?"], "prompt": "The 2 {}s lay on the bed together"}, {"index": 1176, "image_id": 2315441, "entity": "dog", "caption": "The dog is laying on the other dog", "question": ["is there the dog ?", "is there the other dog ?"], "prompt": "The {} is laying on the other {}"}, {"index": 1177, "image_id": 2315441, "entity": "dog", "caption": "The dogs are on the comfortable looking bed", "question": ["are there the dogs ?", "is there the comfortable looking bed ?"], "prompt": "The {}s are on the comfortable looking bed"}, {"index": 1178, "image_id": 2315441, "entity": "dog", "caption": "The dog has a blue collar", "question": ["is there the dog ?", "is there a blue collar ?"], "prompt": "The {} has a blue collar"}, {"index": 1179, "image_id": 2315441, "entity": "dog", "caption": "Brown dogs left eye.", "question": ["are there brown dogs ?", "is there eye ?"], "prompt": "Brown {}s left eye."}, {"index": 1180, "image_id": 2414390, "entity": "dog", "caption": "the dog is playing with a frisbee", "question": ["is there the dog ?", "is there a frisbee ?"], "prompt": "the {} is playing with a frisbee"}, {"index": 1181, "image_id": 2414390, "entity": "dog", "caption": "the dog has brown ears", "question": ["is there the dog ?", "are there brown ears ?"], "prompt": "the {} has brown ears"}, {"index": 1182, "image_id": 2414304, "entity": "dog", "caption": "A dog is in the picture.", "question": ["is there a dog ?", "is there the picture ?"], "prompt": "A {} is in the picture."}, {"index": 1183, "image_id": 2414304, "entity": "dog", "caption": "The dog has on a black collar.", "question": ["is there the dog ?", "is there a black collar ?"], "prompt": "The {} has on a black collar."}, {"index": 1184, "image_id": 2414304, "entity": "dog", "caption": "The dog is standing in the sand.", "question": ["is there the dog ?", "is there the sand ?"], "prompt": "The {} is standing in the sand."}, {"index": 1185, "image_id": 2414304, "entity": "dog", "caption": "The dog is staring at his master.", "question": ["is there the dog ?", "is there his master ?"], "prompt": "The {} is staring at his master."}, {"index": 1186, "image_id": 2412940, "entity": "dog", "caption": "Sun light over the body of dogs", "question": ["is there sun light ?", "is there the body ?", "are there dogs ?"], "prompt": "Sun light over the body of {}s"}, {"index": 1187, "image_id": 2412940, "entity": "dog", "caption": "the dogs eyes are wide apart", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are wide apart"}, {"index": 1188, "image_id": 2412718, "entity": "dog", "caption": "the dog is resting on a blanket", "question": ["is there the dog ?", "is there a blanket ?"], "prompt": "the {} is resting on a blanket"}, {"index": 1189, "image_id": 2412718, "entity": "dog", "caption": "the dog has his ears bent", "question": ["is there the dog ?", "are there his ears ?"], "prompt": "the {} has his ears bent"}, {"index": 1190, "image_id": 2412718, "entity": "dog", "caption": "the dog has pretty blue eyes", "question": ["is there the dog ?", "are there pretty blue eyes ?"], "prompt": "the {} has pretty blue eyes"}, {"index": 1191, "image_id": 2412718, "entity": "dog", "caption": "the dog has brown feet", "question": ["is there the dog ?", "are there brown feet ?"], "prompt": "the {} has brown feet"}, {"index": 1192, "image_id": 2412718, "entity": "dog", "caption": "The dog is sitting on blankets", "question": ["is there the dog ?", "are there blankets ?"], "prompt": "The {} is sitting on blankets"}, {"index": 1193, "image_id": 2412718, "entity": "dog", "caption": "The dog has 2 ears", "question": ["is there the dog ?", "are there 2 ears ?"], "prompt": "The {} has 2 ears"}, {"index": 1194, "image_id": 2412718, "entity": "dog", "caption": "The dog has a tail", "question": ["is there the dog ?", "is there a tail ?"], "prompt": "The {} has a tail"}, {"index": 1195, "image_id": 2412718, "entity": "dog", "caption": "The dog's eyes are blue", "question": ["are there the dog's eyes ?"], "prompt": "The {}'s eyes are blue"}, {"index": 1196, "image_id": 2412718, "entity": "dog", "caption": "The dog has 4 paws", "question": ["is there the dog ?", "are there 4 paws ?"], "prompt": "The {} has 4 paws"}, {"index": 1197, "image_id": 2412430, "entity": "dog", "caption": "A dog is laying down on a couch.", "question": ["is there a dog ?", "is there a couch ?"], "prompt": "A {} is laying down on a couch."}, {"index": 1198, "image_id": 2412430, "entity": "dog", "caption": "The dog's nose is black in color.", "question": ["is there the dog's nose ?", "is there color ?"], "prompt": "The {}'s nose is black in color."}, {"index": 1199, "image_id": 2412382, "entity": "dog", "caption": "the dogs are on the seat", "question": ["are there the dogs ?", "is there the seat ?"], "prompt": "the {}s are on the seat"}, {"index": 1200, "image_id": 2412382, "entity": "dog", "caption": "the dogs eyes are black", "question": ["are there the dogs ?", "are there eyes ?"], "prompt": "the {}s eyes are black"}, {"index": 1201, "image_id": 2412215, "entity": "dog", "caption": "The white sheet the dog's paw and mouth is resting on.", "question": ["is there the dog's paw ?", "is there mouth ?"], "prompt": "The white sheet the {}'s paw and mouth is resting on."}, {"index": 1202, "image_id": 2412215, "entity": "dog", "caption": "The black dog's head resting on the bed.", "question": ["is there the black dog's head ?", "is there the bed ?"], "prompt": "The black {}'s head resting on the bed."}, {"index": 1203, "image_id": 2411734, "entity": "dog", "caption": "A dog with a white nose looks at a birthday cupcake", "question": ["is there a dog ?", "is there a white nose ?", "is there a birthday cupcake ?"], "prompt": "A {} with a white nose looks at a birthday cupcake"}, {"index": 1204, "image_id": 2411533, "entity": "dog", "caption": "White mouse and cat sitting on dog.", "question": ["is there cat ?", "is there dog ?"], "prompt": "White mouse and cat sitting on {}."}, {"index": 1205, "image_id": 2411533, "entity": "dog", "caption": "cat is on a dogs back", "question": ["is there cat ?", "are there a dogs ?"], "prompt": "cat is on a {}s back"}, {"index": 1206, "image_id": 2411533, "entity": "dog", "caption": "dog is walking on sidewalk", "question": ["is there dog ?", "is there sidewalk ?"], "prompt": "{} is walking on sidewalk"}, {"index": 1207, "image_id": 2411533, "entity": "dog", "caption": "dog is wearing a brown vest", "question": ["is there dog ?", "is there a brown vest ?"], "prompt": "{} is wearing a brown vest"}, {"index": 1208, "image_id": 2411533, "entity": "dog", "caption": "a cat is on the dog's back", "question": ["is there a cat ?", "is there the dog ?"], "prompt": "a cat is on the {}'s back"}, {"index": 1209, "image_id": 2411533, "entity": "dog", "caption": "a cat and a mouse are both on a dog", "question": ["is there a cat ?", "is there a mouse ?", "is there a dog ?"], "prompt": "a cat and a mouse are both on a {}"}, {"index": 1210, "image_id": 2411533, "entity": "dog", "caption": "the dog is wearing a vest", "question": ["is there the dog ?", "is there a vest ?"], "prompt": "the {} is wearing a vest"}, {"index": 1211, "image_id": 2415243, "entity": "dog", "caption": "a dog lays on a television remote", "question": ["is there a dog ?", "is there a television remote ?"], "prompt": "a {} lays on a television remote"}, {"index": 1212, "image_id": 2415243, "entity": "dog", "caption": "dog takes a nap on a couch", "question": ["is there dog ?", "is there a nap ?", "is there a couch ?"], "prompt": "{} takes a nap on a couch"}, {"index": 1213, "image_id": 2415532, "entity": "dog", "caption": "Elbow on the far arm washing the dog.", "question": ["is there the far arm ?", "is there the dog ?"], "prompt": "Elbow on the far arm washing the {}."}, {"index": 1214, "image_id": 2416178, "entity": "dog", "caption": "the dogs left eye", "question": ["are there the dogs ?", "is there eye ?"], "prompt": "the {}s left eye"}, {"index": 1215, "image_id": 2416388, "entity": "dog", "caption": "pink bow the dog is wearing", "question": ["is there the dog ?"], "prompt": "pink bow the {} is wearing"}, {"index": 1216, "image_id": 2416388, "entity": "dog", "caption": "dog getting teeth brushed", "question": ["is there dog ?", "are there teeth ?"], "prompt": "{} getting teeth brushed"}, {"index": 1217, "image_id": 2416731, "entity": "dog", "caption": "the dog has black hair", "question": ["is there the dog ?", "is there black hair ?"], "prompt": "the {} has black hair"}, {"index": 1218, "image_id": 2416731, "entity": "dog", "caption": "the dog has pointy teeth", "question": ["is there the dog ?", "are there pointy teeth ?"], "prompt": "the {} has pointy teeth"}, {"index": 1219, "image_id": 2416944, "entity": "dog", "caption": "grassy field dog is playing in", "question": ["is there grassy field dog ?"], "prompt": "grassy field {} is playing in"}, {"index": 1220, "image_id": 2417227, "entity": "dog", "caption": "The sofa the dog is leaning on.", "question": ["is there the sofa ?", "is there the dog ?"], "prompt": "The sofa the {} is leaning on."}, {"index": 1221, "image_id": 2417721, "entity": "dog", "caption": "dog has brown legs", "question": ["is there dog ?", "are there brown legs ?"], "prompt": "{} has brown legs"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02123045.json b/data/imagenet/compositions/prompts/n02123045.json
new file mode 100644
index 0000000000000000000000000000000000000000..dce9277b802b29cbcb4decc229987c10f0dbf5e3
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02123045.json
@@ -0,0 +1,17423 @@
+[
+ {
+ "index": 0,
+ "image_id": 955,
+ "entity": "cat",
+ "caption": "cat is licking herself",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "{} is licking herself"
+ },
+ {
+ "index": 1,
+ "image_id": 955,
+ "entity": "cat",
+ "caption": "red chair white cat is sitting on",
+ "question": [
+ "is there red chair white cat ?"
+ ],
+ "prompt": "red chair white {} is sitting on"
+ },
+ {
+ "index": 2,
+ "image_id": 955,
+ "entity": "cat",
+ "caption": "Wisker on a cats face",
+ "question": [
+ "is there wisker ?",
+ "are there a cats ?"
+ ],
+ "prompt": "Wisker on a {}s face"
+ },
+ {
+ "index": 3,
+ "image_id": 3756,
+ "entity": "cat",
+ "caption": "the yellow cat has green eyes",
+ "question": [
+ "is there the yellow cat ?",
+ "are there green eyes ?"
+ ],
+ "prompt": "the yellow {} has green eyes"
+ },
+ {
+ "index": 4,
+ "image_id": 61581,
+ "entity": "cat",
+ "caption": "cat is looking down the window",
+ "question": [
+ "is there cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "{} is looking down the window"
+ },
+ {
+ "index": 5,
+ "image_id": 61581,
+ "entity": "cat",
+ "caption": "the cat is looking out of the window",
+ "question": [
+ "is there the cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking out of the window"
+ },
+ {
+ "index": 6,
+ "image_id": 498173,
+ "entity": "cat",
+ "caption": "Woman is holding cat in hand.",
+ "question": [
+ "is there woman ?",
+ "is there cat ?",
+ "is there hand ?"
+ ],
+ "prompt": "Woman is holding {} in hand."
+ },
+ {
+ "index": 7,
+ "image_id": 498173,
+ "entity": "cat",
+ "caption": "the woman is holding the cat",
+ "question": [
+ "is there the woman ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the woman is holding the {}"
+ },
+ {
+ "index": 8,
+ "image_id": 498173,
+ "entity": "cat",
+ "caption": "the cat has stripes",
+ "question": [
+ "is there the cat ?",
+ "are there stripes ?"
+ ],
+ "prompt": "the {} has stripes"
+ },
+ {
+ "index": 9,
+ "image_id": 498173,
+ "entity": "cat",
+ "caption": "the cat is biting the hand",
+ "question": [
+ "is there the cat ?",
+ "is there the hand ?"
+ ],
+ "prompt": "the {} is biting the hand"
+ },
+ {
+ "index": 10,
+ "image_id": 498173,
+ "entity": "cat",
+ "caption": "Woman holding a cat",
+ "question": [
+ "is there woman ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Woman holding a {}"
+ },
+ {
+ "index": 11,
+ "image_id": 498173,
+ "entity": "cat",
+ "caption": "Woman is holding a cat",
+ "question": [
+ "is there woman ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Woman is holding a {}"
+ },
+ {
+ "index": 12,
+ "image_id": 498173,
+ "entity": "cat",
+ "caption": "Woman carrying a cat",
+ "question": [
+ "is there woman ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Woman carrying a {}"
+ },
+ {
+ "index": 13,
+ "image_id": 498173,
+ "entity": "cat",
+ "caption": "Woman is carrying a cat",
+ "question": [
+ "is there woman ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Woman is carrying a {}"
+ },
+ {
+ "index": 14,
+ "image_id": 2414784,
+ "entity": "cat",
+ "caption": "The cat has whiskers.",
+ "question": [
+ "is there the cat ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "The {} has whiskers."
+ },
+ {
+ "index": 15,
+ "image_id": 2414535,
+ "entity": "cat",
+ "caption": "a black cats head",
+ "question": [
+ "are there a black cats ?"
+ ],
+ "prompt": "a black {}s head"
+ },
+ {
+ "index": 16,
+ "image_id": 2414535,
+ "entity": "cat",
+ "caption": "a cat peeks through the door",
+ "question": [
+ "is there a cat ?",
+ "is there the door ?"
+ ],
+ "prompt": "a {} peeks through the door"
+ },
+ {
+ "index": 17,
+ "image_id": 2414535,
+ "entity": "cat",
+ "caption": "a blanket the cat is lying on",
+ "question": [
+ "is there a blanket ?",
+ "is there the cat ?"
+ ],
+ "prompt": "a blanket the {} is lying on"
+ },
+ {
+ "index": 18,
+ "image_id": 2414535,
+ "entity": "cat",
+ "caption": "the wood corner of the bed the cat is on",
+ "question": [
+ "is there the wood corner ?",
+ "is there the bed ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the wood corner of the bed the {} is on"
+ },
+ {
+ "index": 19,
+ "image_id": 2414535,
+ "entity": "cat",
+ "caption": "the cat is on the cover",
+ "question": [
+ "is there the cat ?",
+ "is there the cover ?"
+ ],
+ "prompt": "the {} is on the cover"
+ },
+ {
+ "index": 20,
+ "image_id": 2414535,
+ "entity": "cat",
+ "caption": "the cat has whiskers",
+ "question": [
+ "is there the cat ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "the {} has whiskers"
+ },
+ {
+ "index": 21,
+ "image_id": 2414535,
+ "entity": "cat",
+ "caption": "the cat is staring at the picture",
+ "question": [
+ "is there the cat ?",
+ "is there the picture ?"
+ ],
+ "prompt": "the {} is staring at the picture"
+ },
+ {
+ "index": 22,
+ "image_id": 2414535,
+ "entity": "cat",
+ "caption": "the cat is looking out the door",
+ "question": [
+ "is there the cat ?",
+ "is there the door ?"
+ ],
+ "prompt": "the {} is looking out the door"
+ },
+ {
+ "index": 23,
+ "image_id": 2414356,
+ "entity": "cat",
+ "caption": "the cat has black legs",
+ "question": [
+ "is there the cat ?",
+ "are there black legs ?"
+ ],
+ "prompt": "the {} has black legs"
+ },
+ {
+ "index": 24,
+ "image_id": 2414356,
+ "entity": "cat",
+ "caption": "the cat is standing on top of a box",
+ "question": [
+ "is there the cat ?",
+ "is there top ?",
+ "is there a box ?"
+ ],
+ "prompt": "the {} is standing on top of a box"
+ },
+ {
+ "index": 25,
+ "image_id": 2414023,
+ "entity": "cat",
+ "caption": "The cat has a black nose",
+ "question": [
+ "is there the cat ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose"
+ },
+ {
+ "index": 26,
+ "image_id": 2414023,
+ "entity": "cat",
+ "caption": "a hand is on the cat's neck",
+ "question": [
+ "is there a hand ?",
+ "is there the cat's neck ?"
+ ],
+ "prompt": "a hand is on the {}'s neck"
+ },
+ {
+ "index": 27,
+ "image_id": 2414023,
+ "entity": "cat",
+ "caption": "the cat's ears are white",
+ "question": [
+ "are there the cat's ears ?"
+ ],
+ "prompt": "the {}'s ears are white"
+ },
+ {
+ "index": 28,
+ "image_id": 2414023,
+ "entity": "cat",
+ "caption": "A human is touching the cat.",
+ "question": [
+ "is there a human ?",
+ "is there the cat ?"
+ ],
+ "prompt": "A human is touching the {}."
+ },
+ {
+ "index": 29,
+ "image_id": 2414023,
+ "entity": "cat",
+ "caption": "The cat has black and white on its face.",
+ "question": [
+ "is there the cat ?",
+ "is there its face ?"
+ ],
+ "prompt": "The {} has black and white on its face."
+ },
+ {
+ "index": 30,
+ "image_id": 2414023,
+ "entity": "cat",
+ "caption": "The cat has a black nose.",
+ "question": [
+ "is there the cat ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "The {} has a black nose."
+ },
+ {
+ "index": 31,
+ "image_id": 2413062,
+ "entity": "cat",
+ "caption": "tortie cat has pink+tiny brown spotted under-toe",
+ "question": [
+ "is there tortie cat ?",
+ "is there under-toe ?"
+ ],
+ "prompt": "tortie {} has pink+tiny brown spotted under-toe"
+ },
+ {
+ "index": 32,
+ "image_id": 2413062,
+ "entity": "cat",
+ "caption": "tortie cat has long multicolored ear fur",
+ "question": [
+ "is there tortie cat ?",
+ "is there long multicolored ear fur ?"
+ ],
+ "prompt": "tortie {} has long multicolored ear fur"
+ },
+ {
+ "index": 33,
+ "image_id": 2413062,
+ "entity": "cat",
+ "caption": "tortie cat has medium-length eyebrow whiskers",
+ "question": [
+ "is there tortie cat ?",
+ "are there medium-length eyebrow whiskers ?"
+ ],
+ "prompt": "tortie {} has medium-length eyebrow whiskers"
+ },
+ {
+ "index": 34,
+ "image_id": 2413062,
+ "entity": "cat",
+ "caption": "calico cat has black nose with a little smidge of pink",
+ "question": [
+ "is there calico cat ?",
+ "is there black nose ?",
+ "is there a little smidge ?",
+ "is there pink ?"
+ ],
+ "prompt": "calico {} has black nose with a little smidge of pink"
+ },
+ {
+ "index": 35,
+ "image_id": 2413062,
+ "entity": "cat",
+ "caption": "calico cat has very furry forehead, except above one eye",
+ "question": [
+ "is there calico cat ?",
+ "is there very furry forehead ?",
+ "is there one eye ?"
+ ],
+ "prompt": "calico {} has very furry forehead, except above one eye"
+ },
+ {
+ "index": 36,
+ "image_id": 2413062,
+ "entity": "cat",
+ "caption": "calico cat sleeps near the lightly worn edge rounded edge of a wooden table",
+ "question": [
+ "is there calico cat ?",
+ "is there the lightly worn edge rounded edge ?",
+ "is there a wooden table ?"
+ ],
+ "prompt": "calico {} sleeps near the lightly worn edge rounded edge of a wooden table"
+ },
+ {
+ "index": 37,
+ "image_id": 2413062,
+ "entity": "cat",
+ "caption": "the cats eyes are closed",
+ "question": [
+ "are there the cats ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are closed"
+ },
+ {
+ "index": 38,
+ "image_id": 2413005,
+ "entity": "cat",
+ "caption": "Point ears of cat are hairy",
+ "question": [
+ "are there point ears ?",
+ "is there cat ?"
+ ],
+ "prompt": "Point ears of {} are hairy"
+ },
+ {
+ "index": 39,
+ "image_id": 2412841,
+ "entity": "cat",
+ "caption": "cat has two eyes",
+ "question": [
+ "is there cat ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "{} has two eyes"
+ },
+ {
+ "index": 40,
+ "image_id": 2412841,
+ "entity": "cat",
+ "caption": "the brown cat has two pointy ears",
+ "question": [
+ "is there the brown cat ?",
+ "are there two pointy ears ?"
+ ],
+ "prompt": "the brown {} has two pointy ears"
+ },
+ {
+ "index": 41,
+ "image_id": 2412841,
+ "entity": "cat",
+ "caption": "the cat is inside a box",
+ "question": [
+ "is there the cat ?",
+ "is there a box ?"
+ ],
+ "prompt": "the {} is inside a box"
+ },
+ {
+ "index": 42,
+ "image_id": 2412841,
+ "entity": "cat",
+ "caption": "the cat is looking towards the right",
+ "question": [
+ "is there the cat ?",
+ "is there the right ?"
+ ],
+ "prompt": "the {} is looking towards the right"
+ },
+ {
+ "index": 43,
+ "image_id": 2412841,
+ "entity": "cat",
+ "caption": "the cat has his claws bent in",
+ "question": [
+ "is there the cat ?",
+ "are there his claws ?"
+ ],
+ "prompt": "the {} has his claws bent in"
+ },
+ {
+ "index": 44,
+ "image_id": 2412841,
+ "entity": "cat",
+ "caption": "the cat has a white undercoat",
+ "question": [
+ "is there the cat ?",
+ "is there a white undercoat ?"
+ ],
+ "prompt": "the {} has a white undercoat"
+ },
+ {
+ "index": 45,
+ "image_id": 2412386,
+ "entity": "cat",
+ "caption": "large black cat ear ",
+ "question": [
+ "is there large black cat ?"
+ ],
+ "prompt": "large black {} ear "
+ },
+ {
+ "index": 46,
+ "image_id": 2412386,
+ "entity": "cat",
+ "caption": "The cat is on zebra print",
+ "question": [
+ "is there the cat ?",
+ "is there zebra print ?"
+ ],
+ "prompt": "The {} is on zebra print"
+ },
+ {
+ "index": 47,
+ "image_id": 2412386,
+ "entity": "cat",
+ "caption": "The cats whiskers are long",
+ "question": [
+ "are there the cats ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "The {}s whiskers are long"
+ },
+ {
+ "index": 48,
+ "image_id": 2412386,
+ "entity": "cat",
+ "caption": "The cat is on black and white",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} is on black and white"
+ },
+ {
+ "index": 49,
+ "image_id": 2412386,
+ "entity": "cat",
+ "caption": "The cats paws are white",
+ "question": [
+ "are there the cats paws ?"
+ ],
+ "prompt": "The {}s paws are white"
+ },
+ {
+ "index": 50,
+ "image_id": 2412386,
+ "entity": "cat",
+ "caption": "The black and white zebra printed blanket the cat is sitting on.",
+ "question": [
+ "is there the black and white zebra printed blanket ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The black and white zebra printed blanket the {} is sitting on."
+ },
+ {
+ "index": 51,
+ "image_id": 2412335,
+ "entity": "cat",
+ "caption": "A cat is sitting on a bag.",
+ "question": [
+ "is there a cat ?",
+ "is there a bag ?"
+ ],
+ "prompt": "A {} is sitting on a bag."
+ },
+ {
+ "index": 52,
+ "image_id": 2412335,
+ "entity": "cat",
+ "caption": "The white napkin that the cat is laying on",
+ "question": [
+ "is there the white napkin ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The white napkin that the {} is laying on"
+ },
+ {
+ "index": 53,
+ "image_id": 2412335,
+ "entity": "cat",
+ "caption": "The cat has green eyes",
+ "question": [
+ "is there the cat ?",
+ "are there green eyes ?"
+ ],
+ "prompt": "The {} has green eyes"
+ },
+ {
+ "index": 54,
+ "image_id": 2412335,
+ "entity": "cat",
+ "caption": "The cat is sitting on paper",
+ "question": [
+ "is there the cat ?",
+ "is there paper ?"
+ ],
+ "prompt": "The {} is sitting on paper"
+ },
+ {
+ "index": 55,
+ "image_id": 2412335,
+ "entity": "cat",
+ "caption": "The cat has whiskers",
+ "question": [
+ "is there the cat ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "The {} has whiskers"
+ },
+ {
+ "index": 56,
+ "image_id": 2412335,
+ "entity": "cat",
+ "caption": "The cat has two ears",
+ "question": [
+ "is there the cat ?",
+ "are there two ears ?"
+ ],
+ "prompt": "The {} has two ears"
+ },
+ {
+ "index": 57,
+ "image_id": 2412335,
+ "entity": "cat",
+ "caption": "The cat has a pink nose",
+ "question": [
+ "is there the cat ?",
+ "is there a pink nose ?"
+ ],
+ "prompt": "The {} has a pink nose"
+ },
+ {
+ "index": 58,
+ "image_id": 2411640,
+ "entity": "cat",
+ "caption": "cat's hind legs laying down",
+ "question": [
+ "are there cat's hind legs ?"
+ ],
+ "prompt": "{}'s hind legs laying down"
+ },
+ {
+ "index": 59,
+ "image_id": 2411640,
+ "entity": "cat",
+ "caption": "cat's nose is pink",
+ "question": [
+ "is there cat's nose ?"
+ ],
+ "prompt": "{}'s nose is pink"
+ },
+ {
+ "index": 60,
+ "image_id": 2411640,
+ "entity": "cat",
+ "caption": "the cat is wearing a collar",
+ "question": [
+ "is there the cat ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} is wearing a collar"
+ },
+ {
+ "index": 61,
+ "image_id": 2411640,
+ "entity": "cat",
+ "caption": "cat's ears are up",
+ "question": [
+ "are there cat's ears ?"
+ ],
+ "prompt": "{}'s ears are up"
+ },
+ {
+ "index": 62,
+ "image_id": 2411640,
+ "entity": "cat",
+ "caption": "cat is under table",
+ "question": [
+ "is there cat ?",
+ "is there table ?"
+ ],
+ "prompt": "{} is under table"
+ },
+ {
+ "index": 63,
+ "image_id": 2411640,
+ "entity": "cat",
+ "caption": "cat is sitting on wood floor",
+ "question": [
+ "is there cat ?",
+ "is there wood floor ?"
+ ],
+ "prompt": "{} is sitting on wood floor"
+ },
+ {
+ "index": 64,
+ "image_id": 2411640,
+ "entity": "cat",
+ "caption": "cats eyes are green",
+ "question": [
+ "are there cats ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{}s eyes are green"
+ },
+ {
+ "index": 65,
+ "image_id": 2411640,
+ "entity": "cat",
+ "caption": "the cat's whiskers that are long",
+ "question": [
+ "are there the cat's whiskers ?"
+ ],
+ "prompt": "the {}'s whiskers that are long"
+ },
+ {
+ "index": 66,
+ "image_id": 2411233,
+ "entity": "cat",
+ "caption": "the cat is playing with a man's tie",
+ "question": [
+ "is there the cat ?",
+ "is there a man's tie ?"
+ ],
+ "prompt": "the {} is playing with a man's tie"
+ },
+ {
+ "index": 67,
+ "image_id": 2411233,
+ "entity": "cat",
+ "caption": "the nails of the cat are in the tie",
+ "question": [
+ "are there the nails ?",
+ "is there the cat ?",
+ "is there the tie ?"
+ ],
+ "prompt": "the nails of the {} are in the tie"
+ },
+ {
+ "index": 68,
+ "image_id": 2411233,
+ "entity": "cat",
+ "caption": "the ears of the cat are pink inside",
+ "question": [
+ "are there the ears ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the ears of the {} are pink inside"
+ },
+ {
+ "index": 69,
+ "image_id": 2411233,
+ "entity": "cat",
+ "caption": "the cat is playing on a carpet",
+ "question": [
+ "is there the cat ?",
+ "is there a carpet ?"
+ ],
+ "prompt": "the {} is playing on a carpet"
+ },
+ {
+ "index": 70,
+ "image_id": 2411233,
+ "entity": "cat",
+ "caption": "A cat plays with a ribbon",
+ "question": [
+ "is there a cat ?",
+ "is there a ribbon ?"
+ ],
+ "prompt": "A {} plays with a ribbon"
+ },
+ {
+ "index": 71,
+ "image_id": 2411233,
+ "entity": "cat",
+ "caption": "One cat is in carpet.",
+ "question": [
+ "is there one cat ?",
+ "is there carpet ?"
+ ],
+ "prompt": "One {} is in carpet."
+ },
+ {
+ "index": 72,
+ "image_id": 2411233,
+ "entity": "cat",
+ "caption": "cat is biting ribbon",
+ "question": [
+ "is there cat ?",
+ "is there ribbon ?"
+ ],
+ "prompt": "{} is biting ribbon"
+ },
+ {
+ "index": 73,
+ "image_id": 2411233,
+ "entity": "cat",
+ "caption": "cat is grabbing ribbon",
+ "question": [
+ "is there cat ?",
+ "is there ribbon ?"
+ ],
+ "prompt": "{} is grabbing ribbon"
+ },
+ {
+ "index": 74,
+ "image_id": 2411233,
+ "entity": "cat",
+ "caption": "cat is looking at ribbon",
+ "question": [
+ "is there cat ?",
+ "is there ribbon ?"
+ ],
+ "prompt": "{} is looking at ribbon"
+ },
+ {
+ "index": 75,
+ "image_id": 2411233,
+ "entity": "cat",
+ "caption": "fluffy yellow cat is playful",
+ "question": [
+ "is there fluffy yellow cat ?"
+ ],
+ "prompt": "fluffy yellow {} is playful"
+ },
+ {
+ "index": 76,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "cat looks away from blurry pink remote",
+ "question": [
+ "is there cat ?",
+ "is there blurry pink remote ?"
+ ],
+ "prompt": "{} looks away from blurry pink remote"
+ },
+ {
+ "index": 77,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "cat has big furry left paw",
+ "question": [
+ "is there cat ?",
+ "is there big furry left paw ?"
+ ],
+ "prompt": "{} has big furry left paw"
+ },
+ {
+ "index": 78,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "cat has long furry right arm with cute paw at its end",
+ "question": [
+ "is there cat ?",
+ "is there long furry right arm ?",
+ "is there cute paw ?",
+ "is there its end ?"
+ ],
+ "prompt": "{} has long furry right arm with cute paw at its end"
+ },
+ {
+ "index": 79,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "cat has a cream color nose & pinkish fur fluffing from its ear",
+ "question": [
+ "is there cat ?",
+ "is there a cream color nose ?",
+ "is there pinkish fur ?",
+ "is there its ear ?"
+ ],
+ "prompt": "{} has a cream color nose & pinkish fur fluffing from its ear"
+ },
+ {
+ "index": 80,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "the cat is holding a game controller",
+ "question": [
+ "is there the cat ?",
+ "is there a game controller ?"
+ ],
+ "prompt": "the {} is holding a game controller"
+ },
+ {
+ "index": 81,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "the cat is laying on a blue blanket",
+ "question": [
+ "is there the cat ?",
+ "is there a blue blanket ?"
+ ],
+ "prompt": "the {} is laying on a blue blanket"
+ },
+ {
+ "index": 82,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "the cat has wiskers",
+ "question": [
+ "is there the cat ?",
+ "are there wiskers ?"
+ ],
+ "prompt": "the {} has wiskers"
+ },
+ {
+ "index": 83,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "the cat has two ears",
+ "question": [
+ "is there the cat ?",
+ "are there two ears ?"
+ ],
+ "prompt": "the {} has two ears"
+ },
+ {
+ "index": 84,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "the cat has a nose",
+ "question": [
+ "is there the cat ?",
+ "is there a nose ?"
+ ],
+ "prompt": "the {} has a nose"
+ },
+ {
+ "index": 85,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "the cat has paws",
+ "question": [
+ "is there the cat ?",
+ "are there paws ?"
+ ],
+ "prompt": "the {} has paws"
+ },
+ {
+ "index": 86,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "cat laying on denim covers",
+ "question": [
+ "is there cat ?",
+ "are there denim covers ?"
+ ],
+ "prompt": "{} laying on denim covers"
+ },
+ {
+ "index": 87,
+ "image_id": 2411207,
+ "entity": "cat",
+ "caption": "the cat is on the bed",
+ "question": [
+ "is there the cat ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is on the bed"
+ },
+ {
+ "index": 88,
+ "image_id": 2411107,
+ "entity": "cat",
+ "caption": "it is the paw of a cat",
+ "question": [
+ "is there the paw ?",
+ "is there a cat ?"
+ ],
+ "prompt": "it is the paw of a {}"
+ },
+ {
+ "index": 89,
+ "image_id": 2411107,
+ "entity": "cat",
+ "caption": "cat is sleeping on the keyboard",
+ "question": [
+ "is there cat ?",
+ "is there the keyboard ?"
+ ],
+ "prompt": "{} is sleeping on the keyboard"
+ },
+ {
+ "index": 90,
+ "image_id": 2411012,
+ "entity": "cat",
+ "caption": "Black cat drinking from a faucet",
+ "question": [
+ "is there black cat ?",
+ "is there a faucet ?"
+ ],
+ "prompt": "Black {} drinking from a faucet"
+ },
+ {
+ "index": 91,
+ "image_id": 2411012,
+ "entity": "cat",
+ "caption": "the cat is drinking water from the faucet",
+ "question": [
+ "is there the cat ?",
+ "is there water ?",
+ "is there the faucet ?"
+ ],
+ "prompt": "the {} is drinking water from the faucet"
+ },
+ {
+ "index": 92,
+ "image_id": 2410936,
+ "entity": "cat",
+ "caption": "black cat tail ",
+ "question": [
+ "is there black cat tail ?"
+ ],
+ "prompt": "black {} tail "
+ },
+ {
+ "index": 93,
+ "image_id": 2410936,
+ "entity": "cat",
+ "caption": "white whiskers on cat face",
+ "question": [
+ "are there white whiskers ?",
+ "is there cat ?"
+ ],
+ "prompt": "white whiskers on {} face"
+ },
+ {
+ "index": 94,
+ "image_id": 2410936,
+ "entity": "cat",
+ "caption": "black cat ear with hairs inside",
+ "question": [
+ "is there black cat ?",
+ "are there hairs ?"
+ ],
+ "prompt": "black {} ear with hairs inside"
+ },
+ {
+ "index": 95,
+ "image_id": 2410936,
+ "entity": "cat",
+ "caption": "A cats left ear. ",
+ "question": [
+ "are there a cats ?",
+ "is there ear ?"
+ ],
+ "prompt": "A {}s left ear. "
+ },
+ {
+ "index": 96,
+ "image_id": 2410936,
+ "entity": "cat",
+ "caption": "A cat left eyeball. ",
+ "question": [
+ "is there a cat ?",
+ "is there eyeball ?"
+ ],
+ "prompt": "A {} left eyeball. "
+ },
+ {
+ "index": 97,
+ "image_id": 2410936,
+ "entity": "cat",
+ "caption": "black and white cat curled up on a blue mat",
+ "question": [
+ "is there black and white cat ?",
+ "is there a blue mat ?"
+ ],
+ "prompt": "black and white {} curled up on a blue mat"
+ },
+ {
+ "index": 98,
+ "image_id": 2410787,
+ "entity": "cat",
+ "caption": "the cat has white paws",
+ "question": [
+ "is there the cat ?",
+ "are there white paws ?"
+ ],
+ "prompt": "the {} has white paws"
+ },
+ {
+ "index": 99,
+ "image_id": 2410787,
+ "entity": "cat",
+ "caption": "the cat has ears",
+ "question": [
+ "is there the cat ?",
+ "are there ears ?"
+ ],
+ "prompt": "the {} has ears"
+ },
+ {
+ "index": 100,
+ "image_id": 2410787,
+ "entity": "cat",
+ "caption": "the cat's nose is pink",
+ "question": [
+ "is there the cat's nose ?"
+ ],
+ "prompt": "the {}'s nose is pink"
+ },
+ {
+ "index": 101,
+ "image_id": 2410787,
+ "entity": "cat",
+ "caption": "the cat has eyes",
+ "question": [
+ "is there the cat ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {} has eyes"
+ },
+ {
+ "index": 102,
+ "image_id": 2410771,
+ "entity": "cat",
+ "caption": "a cat is sitting on the floor",
+ "question": [
+ "is there a cat ?",
+ "is there the floor ?"
+ ],
+ "prompt": "a {} is sitting on the floor"
+ },
+ {
+ "index": 103,
+ "image_id": 2410771,
+ "entity": "cat",
+ "caption": "The cat is standing by the carrots.",
+ "question": [
+ "is there the cat ?",
+ "are there the carrots ?"
+ ],
+ "prompt": "The {} is standing by the carrots."
+ },
+ {
+ "index": 104,
+ "image_id": 2410771,
+ "entity": "cat",
+ "caption": "The cat is standing by the refrigerator.",
+ "question": [
+ "is there the cat ?",
+ "is there the refrigerator ?"
+ ],
+ "prompt": "The {} is standing by the refrigerator."
+ },
+ {
+ "index": 105,
+ "image_id": 2410771,
+ "entity": "cat",
+ "caption": "the cat has long whiskers.",
+ "question": [
+ "is there the cat ?",
+ "are there long whiskers ?"
+ ],
+ "prompt": "the {} has long whiskers."
+ },
+ {
+ "index": 106,
+ "image_id": 2410771,
+ "entity": "cat",
+ "caption": "the cat is laying on a bag of carrots",
+ "question": [
+ "is there the cat ?",
+ "is there a bag ?",
+ "are there carrots ?"
+ ],
+ "prompt": "the {} is laying on a bag of carrots"
+ },
+ {
+ "index": 107,
+ "image_id": 2410771,
+ "entity": "cat",
+ "caption": "the cat's eyes are closed",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are closed"
+ },
+ {
+ "index": 108,
+ "image_id": 2410771,
+ "entity": "cat",
+ "caption": "the cat is leaning on the carrots",
+ "question": [
+ "is there the cat ?",
+ "are there the carrots ?"
+ ],
+ "prompt": "the {} is leaning on the carrots"
+ },
+ {
+ "index": 109,
+ "image_id": 2410643,
+ "entity": "cat",
+ "caption": "the cat is blACK",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is blACK"
+ },
+ {
+ "index": 110,
+ "image_id": 2410643,
+ "entity": "cat",
+ "caption": "a triangle shaped white patch of fur on the cat's chest",
+ "question": [
+ "is there a triangle shaped white patch ?",
+ "is there fur ?",
+ "is there the cat's chest ?"
+ ],
+ "prompt": "a triangle shaped white patch of fur on the {}'s chest"
+ },
+ {
+ "index": 111,
+ "image_id": 2410593,
+ "entity": "cat",
+ "caption": "cat has two small ears .",
+ "question": [
+ "is there cat ?",
+ "are there two small ears ?"
+ ],
+ "prompt": "{} has two small ears ."
+ },
+ {
+ "index": 112,
+ "image_id": 2410593,
+ "entity": "cat",
+ "caption": "The cat is sitting next to a potted plant.",
+ "question": [
+ "is there the cat ?",
+ "is there a potted plant ?"
+ ],
+ "prompt": "The {} is sitting next to a potted plant."
+ },
+ {
+ "index": 113,
+ "image_id": 2410360,
+ "entity": "cat",
+ "caption": "the cats leg is white in color",
+ "question": [
+ "are there the cats leg ?",
+ "is there color ?"
+ ],
+ "prompt": "the {}s leg is white in color"
+ },
+ {
+ "index": 114,
+ "image_id": 2410360,
+ "entity": "cat",
+ "caption": "these are the cats whiskers",
+ "question": [
+ "are there the cats ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "these are the {}s whiskers"
+ },
+ {
+ "index": 115,
+ "image_id": 2410360,
+ "entity": "cat",
+ "caption": "cat head resting on paw",
+ "question": [
+ "is there cat head ?",
+ "is there paw ?"
+ ],
+ "prompt": "{} head resting on paw"
+ },
+ {
+ "index": 116,
+ "image_id": 2410153,
+ "entity": "cat",
+ "caption": "The cat's fur is tan and light brown in color",
+ "question": [
+ "is there the cat's fur ?",
+ "is there color ?"
+ ],
+ "prompt": "The {}'s fur is tan and light brown in color"
+ },
+ {
+ "index": 117,
+ "image_id": 2410153,
+ "entity": "cat",
+ "caption": "cat with eyes closed",
+ "question": [
+ "is there cat ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} with eyes closed"
+ },
+ {
+ "index": 118,
+ "image_id": 2410153,
+ "entity": "cat",
+ "caption": "long white whiskers on cat face",
+ "question": [
+ "are there long white whiskers ?",
+ "is there cat ?"
+ ],
+ "prompt": "long white whiskers on {} face"
+ },
+ {
+ "index": 119,
+ "image_id": 2409898,
+ "entity": "cat",
+ "caption": "Front paw of cat is white",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "Front paw of {} is white"
+ },
+ {
+ "index": 120,
+ "image_id": 2409898,
+ "entity": "cat",
+ "caption": "Leg of cat is grey",
+ "question": [
+ "is there leg ?",
+ "is there cat ?"
+ ],
+ "prompt": "Leg of {} is grey"
+ },
+ {
+ "index": 121,
+ "image_id": 2409898,
+ "entity": "cat",
+ "caption": "Front leg of cat is grey",
+ "question": [
+ "is there front leg ?",
+ "is there cat ?"
+ ],
+ "prompt": "Front leg of {} is grey"
+ },
+ {
+ "index": 122,
+ "image_id": 2409898,
+ "entity": "cat",
+ "caption": "The cat is licking its paw",
+ "question": [
+ "is there the cat ?",
+ "is there its paw ?"
+ ],
+ "prompt": "The {} is licking its paw"
+ },
+ {
+ "index": 123,
+ "image_id": 2409898,
+ "entity": "cat",
+ "caption": "Front neck of cat is white",
+ "question": [
+ "is there front neck ?",
+ "is there cat ?"
+ ],
+ "prompt": "Front neck of {} is white"
+ },
+ {
+ "index": 124,
+ "image_id": 2409898,
+ "entity": "cat",
+ "caption": "White paw of cat is white",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "White paw of {} is white"
+ },
+ {
+ "index": 125,
+ "image_id": 2409898,
+ "entity": "cat",
+ "caption": "the cat is licking its leg",
+ "question": [
+ "is there the cat ?",
+ "is there its leg ?"
+ ],
+ "prompt": "the {} is licking its leg"
+ },
+ {
+ "index": 126,
+ "image_id": 2409879,
+ "entity": "cat",
+ "caption": "An orange cat lies in the sink.",
+ "question": [
+ "is there an orange cat ?",
+ "is there the sink ?"
+ ],
+ "prompt": "An orange {} lies in the sink."
+ },
+ {
+ "index": 127,
+ "image_id": 2409879,
+ "entity": "cat",
+ "caption": "An orange striped cat lies in the dish rack.",
+ "question": [
+ "is there an orange striped cat ?",
+ "is there the dish rack ?"
+ ],
+ "prompt": "An orange striped {} lies in the dish rack."
+ },
+ {
+ "index": 128,
+ "image_id": 2409867,
+ "entity": "cat",
+ "caption": "cat curled around a bottle",
+ "question": [
+ "is there cat ?",
+ "is there a bottle ?"
+ ],
+ "prompt": "{} curled around a bottle"
+ },
+ {
+ "index": 129,
+ "image_id": 2409867,
+ "entity": "cat",
+ "caption": "one cat is lying down.",
+ "question": [
+ "is there one cat ?"
+ ],
+ "prompt": "one {} is lying down."
+ },
+ {
+ "index": 130,
+ "image_id": 2409867,
+ "entity": "cat",
+ "caption": "cat is holding bottle.",
+ "question": [
+ "is there cat ?",
+ "is there bottle ?"
+ ],
+ "prompt": "{} is holding bottle."
+ },
+ {
+ "index": 131,
+ "image_id": 2409867,
+ "entity": "cat",
+ "caption": "cat is lying in cloth.",
+ "question": [
+ "is there cat ?",
+ "is there cloth ?"
+ ],
+ "prompt": "{} is lying in cloth."
+ },
+ {
+ "index": 132,
+ "image_id": 2409709,
+ "entity": "cat",
+ "caption": "black cat reclined on furniture",
+ "question": [
+ "is there black cat ?",
+ "is there furniture ?"
+ ],
+ "prompt": "black {} reclined on furniture"
+ },
+ {
+ "index": 133,
+ "image_id": 2409463,
+ "entity": "cat",
+ "caption": "The cats left front paw.",
+ "question": [
+ "are there the cats ?",
+ "is there front paw ?"
+ ],
+ "prompt": "The {}s left front paw."
+ },
+ {
+ "index": 134,
+ "image_id": 2409454,
+ "entity": "cat",
+ "caption": "a gray cat has a light colored spot on its head",
+ "question": [
+ "is there a gray cat ?",
+ "is there a light colored spot ?",
+ "is there its head ?"
+ ],
+ "prompt": "a gray {} has a light colored spot on its head"
+ },
+ {
+ "index": 135,
+ "image_id": 2409407,
+ "entity": "cat",
+ "caption": "cat has white paws",
+ "question": [
+ "is there cat ?",
+ "are there white paws ?"
+ ],
+ "prompt": "{} has white paws"
+ },
+ {
+ "index": 136,
+ "image_id": 2409395,
+ "entity": "cat",
+ "caption": "The cat not enjoying the Wii remote",
+ "question": [
+ "is there the cat ?",
+ "is there the wii remote ?"
+ ],
+ "prompt": "The {} not enjoying the Wii remote"
+ },
+ {
+ "index": 137,
+ "image_id": 2409225,
+ "entity": "cat",
+ "caption": "person's lap on which cat is standing",
+ "question": [
+ "is there person's lap ?",
+ "is there cat ?"
+ ],
+ "prompt": "person's lap on which {} is standing"
+ },
+ {
+ "index": 138,
+ "image_id": 2409225,
+ "entity": "cat",
+ "caption": "A bird is on top of a cat",
+ "question": [
+ "is there a bird ?",
+ "is there top ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A bird is on top of a {}"
+ },
+ {
+ "index": 139,
+ "image_id": 2409225,
+ "entity": "cat",
+ "caption": "The cat has white colored feet",
+ "question": [
+ "is there the cat ?",
+ "are there white colored feet ?"
+ ],
+ "prompt": "The {} has white colored feet"
+ },
+ {
+ "index": 140,
+ "image_id": 2409164,
+ "entity": "cat",
+ "caption": "The cat is sitting in the luggage.",
+ "question": [
+ "is there the cat ?",
+ "is there the luggage ?"
+ ],
+ "prompt": "The {} is sitting in the luggage."
+ },
+ {
+ "index": 141,
+ "image_id": 2409164,
+ "entity": "cat",
+ "caption": "The cat is sitting on the clothes.",
+ "question": [
+ "is there the cat ?",
+ "are there the clothes ?"
+ ],
+ "prompt": "The {} is sitting on the clothes."
+ },
+ {
+ "index": 142,
+ "image_id": 2409164,
+ "entity": "cat",
+ "caption": "The cat has short hair.",
+ "question": [
+ "is there the cat ?",
+ "is there short hair ?"
+ ],
+ "prompt": "The {} has short hair."
+ },
+ {
+ "index": 143,
+ "image_id": 2409164,
+ "entity": "cat",
+ "caption": "The cat's eyes are blue.",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are blue."
+ },
+ {
+ "index": 144,
+ "image_id": 2409164,
+ "entity": "cat",
+ "caption": "The cat's nose is pink.",
+ "question": [
+ "is there the cat's nose ?"
+ ],
+ "prompt": "The {}'s nose is pink."
+ },
+ {
+ "index": 145,
+ "image_id": 2409164,
+ "entity": "cat",
+ "caption": "The cat is on the suitcase.",
+ "question": [
+ "is there the cat ?",
+ "is there the suitcase ?"
+ ],
+ "prompt": "The {} is on the suitcase."
+ },
+ {
+ "index": 146,
+ "image_id": 2408732,
+ "entity": "cat",
+ "caption": "Computer is near sleeping cat",
+ "question": [
+ "is there computer ?",
+ "is there cat ?"
+ ],
+ "prompt": "Computer is near sleeping {}"
+ },
+ {
+ "index": 147,
+ "image_id": 2408855,
+ "entity": "cat",
+ "caption": "the cat's right eye is yellow",
+ "question": [
+ "is there the cat's right eye ?"
+ ],
+ "prompt": "the {}'s right eye is yellow"
+ },
+ {
+ "index": 148,
+ "image_id": 2408923,
+ "entity": "cat",
+ "caption": "the cat's nose is black and pink",
+ "question": [
+ "is there the cat's nose ?"
+ ],
+ "prompt": "the {}'s nose is black and pink"
+ },
+ {
+ "index": 149,
+ "image_id": 2408923,
+ "entity": "cat",
+ "caption": "white whiskers are on the cat",
+ "question": [
+ "are there white whiskers ?",
+ "is there the cat ?"
+ ],
+ "prompt": "white whiskers are on the {}"
+ },
+ {
+ "index": 150,
+ "image_id": 2408923,
+ "entity": "cat",
+ "caption": "the cat is lying on a desk",
+ "question": [
+ "is there the cat ?",
+ "is there a desk ?"
+ ],
+ "prompt": "the {} is lying on a desk"
+ },
+ {
+ "index": 151,
+ "image_id": 2408923,
+ "entity": "cat",
+ "caption": "The cat is on top of a newspaper",
+ "question": [
+ "is there the cat ?",
+ "is there top ?",
+ "is there a newspaper ?"
+ ],
+ "prompt": "The {} is on top of a newspaper"
+ },
+ {
+ "index": 152,
+ "image_id": 2408923,
+ "entity": "cat",
+ "caption": "The cats eyes are closed",
+ "question": [
+ "are there the cats ?",
+ "are there eyes ?"
+ ],
+ "prompt": "The {}s eyes are closed"
+ },
+ {
+ "index": 153,
+ "image_id": 2408923,
+ "entity": "cat",
+ "caption": "The cat has a big black stripe running down its head",
+ "question": [
+ "is there the cat ?",
+ "is there a big black stripe ?",
+ "is there its head ?"
+ ],
+ "prompt": "The {} has a big black stripe running down its head"
+ },
+ {
+ "index": 154,
+ "image_id": 2408532,
+ "entity": "cat",
+ "caption": "Ears of cat has white hair inside",
+ "question": [
+ "are there ears ?",
+ "is there cat ?",
+ "is there white hair ?"
+ ],
+ "prompt": "Ears of {} has white hair inside"
+ },
+ {
+ "index": 155,
+ "image_id": 2408532,
+ "entity": "cat",
+ "caption": "Eyes of cat are big",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "Eyes of {} are big"
+ },
+ {
+ "index": 156,
+ "image_id": 2408532,
+ "entity": "cat",
+ "caption": "Nose of cat is pink",
+ "question": [
+ "is there nose ?",
+ "is there cat ?"
+ ],
+ "prompt": "Nose of {} is pink"
+ },
+ {
+ "index": 157,
+ "image_id": 2408532,
+ "entity": "cat",
+ "caption": "Chest of cat is white",
+ "question": [
+ "is there chest ?",
+ "is there cat ?"
+ ],
+ "prompt": "Chest of {} is white"
+ },
+ {
+ "index": 158,
+ "image_id": 2408492,
+ "entity": "cat",
+ "caption": "a cat is asleep on a desk",
+ "question": [
+ "is there a cat ?",
+ "is there a desk ?"
+ ],
+ "prompt": "a {} is asleep on a desk"
+ },
+ {
+ "index": 159,
+ "image_id": 2408492,
+ "entity": "cat",
+ "caption": "a black and white cat is lying on a desk",
+ "question": [
+ "is there a black and white cat ?",
+ "is there a desk ?"
+ ],
+ "prompt": "a black and white {} is lying on a desk"
+ },
+ {
+ "index": 160,
+ "image_id": 2408492,
+ "entity": "cat",
+ "caption": "cat has white whiskers",
+ "question": [
+ "is there cat ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "{} has white whiskers"
+ },
+ {
+ "index": 161,
+ "image_id": 2408473,
+ "entity": "cat",
+ "caption": "Black and white cat standing on two back legs.",
+ "question": [
+ "is there black and white cat ?",
+ "are there two back legs ?"
+ ],
+ "prompt": "Black and white {} standing on two back legs."
+ },
+ {
+ "index": 162,
+ "image_id": 2408194,
+ "entity": "cat",
+ "caption": "a cat sits on a tan carpet",
+ "question": [
+ "is there a cat ?",
+ "is there a tan carpet ?"
+ ],
+ "prompt": "a {} sits on a tan carpet"
+ },
+ {
+ "index": 163,
+ "image_id": 2408194,
+ "entity": "cat",
+ "caption": "cat has orange spots",
+ "question": [
+ "is there cat ?",
+ "are there orange spots ?"
+ ],
+ "prompt": "{} has orange spots"
+ },
+ {
+ "index": 164,
+ "image_id": 2408093,
+ "entity": "cat",
+ "caption": "black cat stretched out on couch",
+ "question": [
+ "is there black cat ?",
+ "is there couch ?"
+ ],
+ "prompt": "black {} stretched out on couch"
+ },
+ {
+ "index": 165,
+ "image_id": 2408093,
+ "entity": "cat",
+ "caption": "the cat is sleeping on the pillow",
+ "question": [
+ "is there the cat ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "the {} is sleeping on the pillow"
+ },
+ {
+ "index": 166,
+ "image_id": 2408093,
+ "entity": "cat",
+ "caption": "the cat has a blue colar",
+ "question": [
+ "is there the cat ?",
+ "is there a blue colar ?"
+ ],
+ "prompt": "the {} has a blue colar"
+ },
+ {
+ "index": 167,
+ "image_id": 2407754,
+ "entity": "cat",
+ "caption": "the cat is in the sink",
+ "question": [
+ "is there the cat ?",
+ "is there the sink ?"
+ ],
+ "prompt": "the {} is in the sink"
+ },
+ {
+ "index": 168,
+ "image_id": 2407673,
+ "entity": "cat",
+ "caption": "A cat close up",
+ "question": [
+ "is there a cat ?"
+ ],
+ "prompt": "A {} close up"
+ },
+ {
+ "index": 169,
+ "image_id": 2407673,
+ "entity": "cat",
+ "caption": "The skin around the cat's eyes is pink. ",
+ "question": [
+ "is there the skin ?",
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "The skin around the {}'s eyes is pink. "
+ },
+ {
+ "index": 170,
+ "image_id": 2407607,
+ "entity": "cat",
+ "caption": "cat is tiger striped",
+ "question": [
+ "is there cat ?",
+ "is there tiger ?"
+ ],
+ "prompt": "{} is tiger striped"
+ },
+ {
+ "index": 171,
+ "image_id": 2407607,
+ "entity": "cat",
+ "caption": "cat has tie with collar on",
+ "question": [
+ "is there cat ?",
+ "is there collar ?"
+ ],
+ "prompt": "{} has tie with collar on"
+ },
+ {
+ "index": 172,
+ "image_id": 2407607,
+ "entity": "cat",
+ "caption": "cat is sitting on floor",
+ "question": [
+ "is there cat ?",
+ "is there floor ?"
+ ],
+ "prompt": "{} is sitting on floor"
+ },
+ {
+ "index": 173,
+ "image_id": 2407287,
+ "entity": "cat",
+ "caption": "Green eyed cat wearing hat",
+ "question": [
+ "is there green eyed cat ?",
+ "is there hat ?"
+ ],
+ "prompt": "Green eyed {} wearing hat"
+ },
+ {
+ "index": 174,
+ "image_id": 2407287,
+ "entity": "cat",
+ "caption": "the cat is on the bed ",
+ "question": [
+ "is there the cat ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is on the bed "
+ },
+ {
+ "index": 175,
+ "image_id": 2407017,
+ "entity": "cat",
+ "caption": "this is foot of a cat",
+ "question": [
+ "is there foot ?",
+ "is there a cat ?"
+ ],
+ "prompt": "this is foot of a {}"
+ },
+ {
+ "index": 176,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "the cat is on the sink",
+ "question": [
+ "is there the cat ?",
+ "is there the sink ?"
+ ],
+ "prompt": "the {} is on the sink"
+ },
+ {
+ "index": 177,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "the cat is looking at the mirror",
+ "question": [
+ "is there the cat ?",
+ "is there the mirror ?"
+ ],
+ "prompt": "the {} is looking at the mirror"
+ },
+ {
+ "index": 178,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "cat on bathroom sink ",
+ "question": [
+ "is there cat ?",
+ "is there bathroom ?"
+ ],
+ "prompt": "{} on bathroom sink "
+ },
+ {
+ "index": 179,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "A cat is in the photo",
+ "question": [
+ "is there a cat ?",
+ "is there the photo ?"
+ ],
+ "prompt": "A {} is in the photo"
+ },
+ {
+ "index": 180,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "A cat is on a white sink",
+ "question": [
+ "is there a cat ?",
+ "is there a white sink ?"
+ ],
+ "prompt": "A {} is on a white sink"
+ },
+ {
+ "index": 181,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "A mirror is above the cat",
+ "question": [
+ "is there a mirror ?",
+ "is there the cat ?"
+ ],
+ "prompt": "A mirror is above the {}"
+ },
+ {
+ "index": 182,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "a cat's paws clinging to the side of a sink",
+ "question": [
+ "are there a cat's paws ?",
+ "is there the side ?",
+ "is there a sink ?"
+ ],
+ "prompt": "a {}'s paws clinging to the side of a sink"
+ },
+ {
+ "index": 183,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "the cat has a white snout",
+ "question": [
+ "is there the cat ?",
+ "is there a white snout ?"
+ ],
+ "prompt": "the {} has a white snout"
+ },
+ {
+ "index": 184,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "a mirror is behind the cat",
+ "question": [
+ "is there a mirror ?",
+ "is there the cat ?"
+ ],
+ "prompt": "a mirror is behind the {}"
+ },
+ {
+ "index": 185,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "the cat has green eyes",
+ "question": [
+ "is there the cat ?",
+ "are there green eyes ?"
+ ],
+ "prompt": "the {} has green eyes"
+ },
+ {
+ "index": 186,
+ "image_id": 2406806,
+ "entity": "cat",
+ "caption": "the cat has a black and white head",
+ "question": [
+ "is there the cat ?",
+ "is there a black and white head ?"
+ ],
+ "prompt": "the {} has a black and white head"
+ },
+ {
+ "index": 187,
+ "image_id": 2406438,
+ "entity": "cat",
+ "caption": "The cat has black and tan stripes. ",
+ "question": [
+ "is there the cat ?",
+ "are there black and tan stripes ?"
+ ],
+ "prompt": "The {} has black and tan stripes. "
+ },
+ {
+ "index": 188,
+ "image_id": 2406438,
+ "entity": "cat",
+ "caption": "the cat has a pink ear",
+ "question": [
+ "is there the cat ?",
+ "is there a pink ear ?"
+ ],
+ "prompt": "the {} has a pink ear"
+ },
+ {
+ "index": 189,
+ "image_id": 2406438,
+ "entity": "cat",
+ "caption": "The cat is reaching for the desk.",
+ "question": [
+ "is there the cat ?",
+ "is there the desk ?"
+ ],
+ "prompt": "The {} is reaching for the desk."
+ },
+ {
+ "index": 190,
+ "image_id": 2406438,
+ "entity": "cat",
+ "caption": "the cat has pink inside his ear",
+ "question": [
+ "is there the cat ?",
+ "is there his ear ?"
+ ],
+ "prompt": "the {} has pink inside his ear"
+ },
+ {
+ "index": 191,
+ "image_id": 2406321,
+ "entity": "cat",
+ "caption": "attractive cat smothering keys of a laptop.",
+ "question": [
+ "is there attractive cat ?",
+ "are there keys ?",
+ "is there a laptop ?"
+ ],
+ "prompt": "attractive {} smothering keys of a laptop."
+ },
+ {
+ "index": 192,
+ "image_id": 2406171,
+ "entity": "cat",
+ "caption": "cat shrouded in darkness illuminated by laptop light",
+ "question": [
+ "is there cat ?",
+ "is there darkness ?",
+ "is there laptop light ?"
+ ],
+ "prompt": "{} shrouded in darkness illuminated by laptop light"
+ },
+ {
+ "index": 193,
+ "image_id": 2406171,
+ "entity": "cat",
+ "caption": "cat climbing on turned on laptop",
+ "question": [
+ "is there cat ?",
+ "is there laptop ?"
+ ],
+ "prompt": "{} climbing on turned on laptop"
+ },
+ {
+ "index": 194,
+ "image_id": 2406171,
+ "entity": "cat",
+ "caption": "cat is using keyboard",
+ "question": [
+ "is there cat ?",
+ "is there keyboard ?"
+ ],
+ "prompt": "{} is using keyboard"
+ },
+ {
+ "index": 195,
+ "image_id": 2406052,
+ "entity": "cat",
+ "caption": "cat has a white paw",
+ "question": [
+ "is there cat ?",
+ "is there a white paw ?"
+ ],
+ "prompt": "{} has a white paw"
+ },
+ {
+ "index": 196,
+ "image_id": 2405988,
+ "entity": "cat",
+ "caption": "this is the cat's paw",
+ "question": [
+ "is there the cat's paw ?"
+ ],
+ "prompt": "this is the {}'s paw"
+ },
+ {
+ "index": 197,
+ "image_id": 2405915,
+ "entity": "cat",
+ "caption": "this is a cat",
+ "question": [
+ "is there a cat ?"
+ ],
+ "prompt": "this is a {}"
+ },
+ {
+ "index": 198,
+ "image_id": 2405862,
+ "entity": "cat",
+ "caption": "the cat has his head raised",
+ "question": [
+ "is there the cat ?",
+ "is there his head ?"
+ ],
+ "prompt": "the {} has his head raised"
+ },
+ {
+ "index": 199,
+ "image_id": 2405862,
+ "entity": "cat",
+ "caption": "a cat that is sniffing some flowers",
+ "question": [
+ "is there a cat ?",
+ "are there some flowers ?"
+ ],
+ "prompt": "a {} that is sniffing some flowers"
+ },
+ {
+ "index": 200,
+ "image_id": 2405862,
+ "entity": "cat",
+ "caption": "a cat sniffs a flower",
+ "question": [
+ "is there a cat ?",
+ "is there a flower ?"
+ ],
+ "prompt": "a {} sniffs a flower"
+ },
+ {
+ "index": 201,
+ "image_id": 2405862,
+ "entity": "cat",
+ "caption": "the cat is wearing a colar",
+ "question": [
+ "is there the cat ?",
+ "is there a colar ?"
+ ],
+ "prompt": "the {} is wearing a colar"
+ },
+ {
+ "index": 202,
+ "image_id": 2405862,
+ "entity": "cat",
+ "caption": "a cat smells a purple flower",
+ "question": [
+ "is there a cat ?",
+ "is there a purple flower ?"
+ ],
+ "prompt": "a {} smells a purple flower"
+ },
+ {
+ "index": 203,
+ "image_id": 2405862,
+ "entity": "cat",
+ "caption": "the cat has a charm on it's collar",
+ "question": [
+ "is there the cat ?",
+ "is there a charm ?",
+ "is there it's collar ?"
+ ],
+ "prompt": "the {} has a charm on it's collar"
+ },
+ {
+ "index": 204,
+ "image_id": 2405805,
+ "entity": "cat",
+ "caption": "whiskers on a cats face",
+ "question": [
+ "are there whiskers ?",
+ "are there a cats ?"
+ ],
+ "prompt": "whiskers on a {}s face"
+ },
+ {
+ "index": 205,
+ "image_id": 2405805,
+ "entity": "cat",
+ "caption": "cat ears pointed slightly outwards",
+ "question": [
+ "are there cat ears ?"
+ ],
+ "prompt": "{} ears pointed slightly outwards"
+ },
+ {
+ "index": 206,
+ "image_id": 2405805,
+ "entity": "cat",
+ "caption": "cat tail curled around front paw",
+ "question": [
+ "is there cat tail ?",
+ "is there front paw ?"
+ ],
+ "prompt": "{} tail curled around front paw"
+ },
+ {
+ "index": 207,
+ "image_id": 2405805,
+ "entity": "cat",
+ "caption": "end of cat's nose is pink",
+ "question": [
+ "is there end ?",
+ "is there cat's nose ?"
+ ],
+ "prompt": "end of {}'s nose is pink"
+ },
+ {
+ "index": 208,
+ "image_id": 2405805,
+ "entity": "cat",
+ "caption": "the eyes of the cat are wide open ",
+ "question": [
+ "are there the eyes ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the eyes of the {} are wide open "
+ },
+ {
+ "index": 209,
+ "image_id": 2405760,
+ "entity": "cat",
+ "caption": "the cat has yellow eyes",
+ "question": [
+ "is there the cat ?",
+ "are there yellow eyes ?"
+ ],
+ "prompt": "the {} has yellow eyes"
+ },
+ {
+ "index": 210,
+ "image_id": 2405760,
+ "entity": "cat",
+ "caption": "a blanket is on the cat's head",
+ "question": [
+ "is there a blanket ?",
+ "is there the cat's head ?"
+ ],
+ "prompt": "a blanket is on the {}'s head"
+ },
+ {
+ "index": 211,
+ "image_id": 2405760,
+ "entity": "cat",
+ "caption": "the cat has a grey and white striped tail",
+ "question": [
+ "is there the cat ?",
+ "is there a grey and white striped tail ?"
+ ],
+ "prompt": "the {} has a grey and white striped tail"
+ },
+ {
+ "index": 212,
+ "image_id": 2405760,
+ "entity": "cat",
+ "caption": "The cat has a pink nose. ",
+ "question": [
+ "is there the cat ?",
+ "is there a pink nose ?"
+ ],
+ "prompt": "The {} has a pink nose. "
+ },
+ {
+ "index": 213,
+ "image_id": 2405760,
+ "entity": "cat",
+ "caption": "The cat has amber eyes. ",
+ "question": [
+ "is there the cat ?",
+ "are there amber eyes ?"
+ ],
+ "prompt": "The {} has amber eyes. "
+ },
+ {
+ "index": 214,
+ "image_id": 2405760,
+ "entity": "cat",
+ "caption": "The cat is lying on a blue shirt. ",
+ "question": [
+ "is there the cat ?",
+ "is there a blue shirt ?"
+ ],
+ "prompt": "The {} is lying on a blue shirt. "
+ },
+ {
+ "index": 215,
+ "image_id": 2405760,
+ "entity": "cat",
+ "caption": "The cat's tail is black and grey.",
+ "question": [
+ "is there the cat's tail ?"
+ ],
+ "prompt": "The {}'s tail is black and grey."
+ },
+ {
+ "index": 216,
+ "image_id": 2405476,
+ "entity": "cat",
+ "caption": "the cat has blue eyes",
+ "question": [
+ "is there the cat ?",
+ "are there blue eyes ?"
+ ],
+ "prompt": "the {} has blue eyes"
+ },
+ {
+ "index": 217,
+ "image_id": 2405476,
+ "entity": "cat",
+ "caption": "the cat has a black nose",
+ "question": [
+ "is there the cat ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "the {} has a black nose"
+ },
+ {
+ "index": 218,
+ "image_id": 2405476,
+ "entity": "cat",
+ "caption": "the cat is on a pad",
+ "question": [
+ "is there the cat ?",
+ "is there a pad ?"
+ ],
+ "prompt": "the {} is on a pad"
+ },
+ {
+ "index": 219,
+ "image_id": 2405476,
+ "entity": "cat",
+ "caption": "the cat has a white and black face",
+ "question": [
+ "is there the cat ?",
+ "is there a white and black face ?"
+ ],
+ "prompt": "the {} has a white and black face"
+ },
+ {
+ "index": 220,
+ "image_id": 2405417,
+ "entity": "cat",
+ "caption": "Head of cat is white",
+ "question": [
+ "is there head ?",
+ "is there cat ?"
+ ],
+ "prompt": "Head of {} is white"
+ },
+ {
+ "index": 221,
+ "image_id": 2405417,
+ "entity": "cat",
+ "caption": "Paws of cat are white",
+ "question": [
+ "are there paws ?",
+ "is there cat ?"
+ ],
+ "prompt": "Paws of {} are white"
+ },
+ {
+ "index": 222,
+ "image_id": 2405417,
+ "entity": "cat",
+ "caption": "Pointy eat of cat",
+ "question": [
+ "is there pointy eat ?",
+ "is there cat ?"
+ ],
+ "prompt": "Pointy eat of {}"
+ },
+ {
+ "index": 223,
+ "image_id": 2405417,
+ "entity": "cat",
+ "caption": "this is a cat ",
+ "question": [
+ "is there a cat ?"
+ ],
+ "prompt": "this is a {} "
+ },
+ {
+ "index": 224,
+ "image_id": 2405417,
+ "entity": "cat",
+ "caption": "this is the image of the cat ",
+ "question": [
+ "is there the image ?",
+ "is there the cat ?"
+ ],
+ "prompt": "this is the image of the {} "
+ },
+ {
+ "index": 225,
+ "image_id": 2405274,
+ "entity": "cat",
+ "caption": "these are the cat's eyes",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "these are the {}'s eyes"
+ },
+ {
+ "index": 226,
+ "image_id": 2405274,
+ "entity": "cat",
+ "caption": "this is the cat's ear",
+ "question": [
+ "is there the cat's ear ?"
+ ],
+ "prompt": "this is the {}'s ear"
+ },
+ {
+ "index": 227,
+ "image_id": 2405274,
+ "entity": "cat",
+ "caption": "the cat is in front of the soap dispenser",
+ "question": [
+ "is there the cat ?",
+ "is there front ?",
+ "is there the soap dispenser ?"
+ ],
+ "prompt": "the {} is in front of the soap dispenser"
+ },
+ {
+ "index": 228,
+ "image_id": 2405137,
+ "entity": "cat",
+ "caption": "cat paw extended over sofa",
+ "question": [
+ "is there sofa ?"
+ ],
+ "prompt": "{} paw extended over sofa"
+ },
+ {
+ "index": 229,
+ "image_id": 2405137,
+ "entity": "cat",
+ "caption": "A cat is sitting on the bed",
+ "question": [
+ "is there a cat ?",
+ "is there the bed ?"
+ ],
+ "prompt": "A {} is sitting on the bed"
+ },
+ {
+ "index": 230,
+ "image_id": 2405137,
+ "entity": "cat",
+ "caption": "The cat is sitting on the floor",
+ "question": [
+ "is there the cat ?",
+ "is there the floor ?"
+ ],
+ "prompt": "The {} is sitting on the floor"
+ },
+ {
+ "index": 231,
+ "image_id": 2405137,
+ "entity": "cat",
+ "caption": "The cat has long legs",
+ "question": [
+ "is there the cat ?",
+ "are there long legs ?"
+ ],
+ "prompt": "The {} has long legs"
+ },
+ {
+ "index": 232,
+ "image_id": 2405137,
+ "entity": "cat",
+ "caption": "The cat is watching the other cat.",
+ "question": [
+ "is there the cat ?",
+ "is there the other cat ?"
+ ],
+ "prompt": "The {} is watching the other {}."
+ },
+ {
+ "index": 233,
+ "image_id": 2405129,
+ "entity": "cat",
+ "caption": "The cat has long whiskers",
+ "question": [
+ "is there the cat ?",
+ "are there long whiskers ?"
+ ],
+ "prompt": "The {} has long whiskers"
+ },
+ {
+ "index": 234,
+ "image_id": 2405013,
+ "entity": "cat",
+ "caption": "The cat has a grouchy face.",
+ "question": [
+ "is there the cat ?",
+ "is there a grouchy face ?"
+ ],
+ "prompt": "The {} has a grouchy face."
+ },
+ {
+ "index": 235,
+ "image_id": 2405013,
+ "entity": "cat",
+ "caption": "The cat has grey and tan fur on it's face.",
+ "question": [
+ "is there the cat ?",
+ "is there fur ?",
+ "is there it's face ?"
+ ],
+ "prompt": "The {} has grey and tan fur on it's face."
+ },
+ {
+ "index": 236,
+ "image_id": 2405013,
+ "entity": "cat",
+ "caption": "cat is sitting next to white apple controller",
+ "question": [
+ "is there cat ?",
+ "is there white apple controller ?"
+ ],
+ "prompt": "{} is sitting next to white apple controller"
+ },
+ {
+ "index": 237,
+ "image_id": 2405013,
+ "entity": "cat",
+ "caption": "cat is sitting on dark wood table",
+ "question": [
+ "is there cat ?",
+ "is there dark wood table ?"
+ ],
+ "prompt": "{} is sitting on dark wood table"
+ },
+ {
+ "index": 238,
+ "image_id": 2404986,
+ "entity": "cat",
+ "caption": "Orange and white adult cat laying on wooden table",
+ "question": [
+ "is there orange and white adult cat ?",
+ "is there wooden table ?"
+ ],
+ "prompt": "Orange and white adult {} laying on wooden table"
+ },
+ {
+ "index": 239,
+ "image_id": 2404986,
+ "entity": "cat",
+ "caption": "Orange and white cat with yellow eyes laying on table",
+ "question": [
+ "is there orange and white cat ?",
+ "are there yellow eyes ?",
+ "is there table ?"
+ ],
+ "prompt": "Orange and white {} with yellow eyes laying on table"
+ },
+ {
+ "index": 240,
+ "image_id": 2404986,
+ "entity": "cat",
+ "caption": "orange cat with white stripes and white feet laying on picnic table",
+ "question": [
+ "are there white stripes ?",
+ "are there white feet ?",
+ "is there picnic table ?"
+ ],
+ "prompt": "orange {} with white stripes and white feet laying on picnic table"
+ },
+ {
+ "index": 241,
+ "image_id": 2404986,
+ "entity": "cat",
+ "caption": "The cat has white feet.",
+ "question": [
+ "is there the cat ?",
+ "are there white feet ?"
+ ],
+ "prompt": "The {} has white feet."
+ },
+ {
+ "index": 242,
+ "image_id": 2404986,
+ "entity": "cat",
+ "caption": "white ans orange stripes on the cat leg",
+ "question": [
+ "are there white ans orange stripes ?",
+ "is there the cat leg ?"
+ ],
+ "prompt": "white ans orange stripes on the {} leg"
+ },
+ {
+ "index": 243,
+ "image_id": 2404986,
+ "entity": "cat",
+ "caption": "cat has white paw",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "{} has white paw"
+ },
+ {
+ "index": 244,
+ "image_id": 2404986,
+ "entity": "cat",
+ "caption": "cat has green eye",
+ "question": [
+ "is there cat ?",
+ "is there green eye ?"
+ ],
+ "prompt": "{} has green eye"
+ },
+ {
+ "index": 245,
+ "image_id": 2404745,
+ "entity": "cat",
+ "caption": "the cat is wearing a tie",
+ "question": [
+ "is there the cat ?",
+ "is there a tie ?"
+ ],
+ "prompt": "the {} is wearing a tie"
+ },
+ {
+ "index": 246,
+ "image_id": 2404745,
+ "entity": "cat",
+ "caption": "the cat has big eyes",
+ "question": [
+ "is there the cat ?",
+ "are there big eyes ?"
+ ],
+ "prompt": "the {} has big eyes"
+ },
+ {
+ "index": 247,
+ "image_id": 2404745,
+ "entity": "cat",
+ "caption": "The black bow tie on the cat's neck.",
+ "question": [
+ "is there the black bow tie ?",
+ "is there the cat's neck ?"
+ ],
+ "prompt": "The black bow tie on the {}'s neck."
+ },
+ {
+ "index": 248,
+ "image_id": 2404658,
+ "entity": "cat",
+ "caption": "A cat leaning against another cat who is lying down",
+ "question": [
+ "is there a cat ?",
+ "is there another cat ?"
+ ],
+ "prompt": "A {} leaning against another {} who is lying down"
+ },
+ {
+ "index": 249,
+ "image_id": 2404658,
+ "entity": "cat",
+ "caption": "Two cats are laying on an office desk",
+ "question": [
+ "are there two cats ?",
+ "is there an office desk ?"
+ ],
+ "prompt": "Two {}s are laying on an office desk"
+ },
+ {
+ "index": 250,
+ "image_id": 2404475,
+ "entity": "cat",
+ "caption": "cat tail tipped on white ",
+ "question": [
+ "is there cat tail ?"
+ ],
+ "prompt": "{} tail tipped on white "
+ },
+ {
+ "index": 251,
+ "image_id": 2404475,
+ "entity": "cat",
+ "caption": "fur of a cat that is in sharp focus",
+ "question": [
+ "is there fur ?",
+ "is there a cat ?",
+ "is there sharp focus ?"
+ ],
+ "prompt": "fur of a {} that is in sharp focus"
+ },
+ {
+ "index": 252,
+ "image_id": 2404430,
+ "entity": "cat",
+ "caption": "The brown left eye of a lovely cat.",
+ "question": [
+ "is there the brown left eye ?",
+ "is there a lovely cat ?"
+ ],
+ "prompt": "The brown left eye of a lovely {}."
+ },
+ {
+ "index": 253,
+ "image_id": 2404430,
+ "entity": "cat",
+ "caption": "the bucket is beside the cat",
+ "question": [
+ "is there the bucket ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the bucket is beside the {}"
+ },
+ {
+ "index": 254,
+ "image_id": 2404430,
+ "entity": "cat",
+ "caption": "the cat has white feet",
+ "question": [
+ "is there the cat ?",
+ "are there white feet ?"
+ ],
+ "prompt": "the {} has white feet"
+ },
+ {
+ "index": 255,
+ "image_id": 2404430,
+ "entity": "cat",
+ "caption": "the cat is furry",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is furry"
+ },
+ {
+ "index": 256,
+ "image_id": 2404430,
+ "entity": "cat",
+ "caption": "the tip of the cat's tail is black",
+ "question": [
+ "is there the tip ?",
+ "is there the cat's tail ?"
+ ],
+ "prompt": "the tip of the {}'s tail is black"
+ },
+ {
+ "index": 257,
+ "image_id": 2404430,
+ "entity": "cat",
+ "caption": "The cat's tail is black and furry",
+ "question": [
+ "is there the cat's tail ?"
+ ],
+ "prompt": "The {}'s tail is black and furry"
+ },
+ {
+ "index": 258,
+ "image_id": 2404430,
+ "entity": "cat",
+ "caption": "A cat is sitting on a window sill",
+ "question": [
+ "is there a cat ?",
+ "is there a window sill ?"
+ ],
+ "prompt": "A {} is sitting on a window sill"
+ },
+ {
+ "index": 259,
+ "image_id": 2404430,
+ "entity": "cat",
+ "caption": "the cat is sitting",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is sitting"
+ },
+ {
+ "index": 260,
+ "image_id": 2404313,
+ "entity": "cat",
+ "caption": "Shirt of man feeding cat",
+ "question": [
+ "is there shirt ?",
+ "is there man feeding cat ?"
+ ],
+ "prompt": "Shirt of man feeding {}"
+ },
+ {
+ "index": 261,
+ "image_id": 2404313,
+ "entity": "cat",
+ "caption": "The cat is sniffing an apple.",
+ "question": [
+ "is there the cat ?",
+ "is there an apple ?"
+ ],
+ "prompt": "The {} is sniffing an apple."
+ },
+ {
+ "index": 262,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "these are the cat's whiskers",
+ "question": [
+ "are there the cat's whiskers ?"
+ ],
+ "prompt": "these are the {}'s whiskers"
+ },
+ {
+ "index": 263,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "this is the cat's nose",
+ "question": [
+ "is there the cat's nose ?"
+ ],
+ "prompt": "this is the {}'s nose"
+ },
+ {
+ "index": 264,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "The cat's paw is on the other cat",
+ "question": [
+ "is there the cat's paw ?",
+ "is there the other cat ?"
+ ],
+ "prompt": "The {}'s paw is on the other {}"
+ },
+ {
+ "index": 265,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "The cats are laying against the wall",
+ "question": [
+ "are there the cats ?",
+ "is there the wall ?"
+ ],
+ "prompt": "The {}s are laying against the wall"
+ },
+ {
+ "index": 266,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "The cat's nose is pink",
+ "question": [
+ "is there the cat's nose ?"
+ ],
+ "prompt": "The {}'s nose is pink"
+ },
+ {
+ "index": 267,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "The cat is closing its eyes",
+ "question": [
+ "is there the cat ?",
+ "are there its eyes ?"
+ ],
+ "prompt": "The {} is closing its eyes"
+ },
+ {
+ "index": 268,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "The cat's shadow is on the wall",
+ "question": [
+ "is there the cat's shadow ?",
+ "is there the wall ?"
+ ],
+ "prompt": "The {}'s shadow is on the wall"
+ },
+ {
+ "index": 269,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "a black cat pokes a brown cat in the belly",
+ "question": [
+ "is there a black cat ?",
+ "is there a brown cat ?",
+ "is there the belly ?"
+ ],
+ "prompt": "a black {} pokes a brown {} in the belly"
+ },
+ {
+ "index": 270,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "Eyes on the front of a brown black and white cats face. ",
+ "question": [
+ "are there eyes ?",
+ "is there the front ?",
+ "are there a brown black and white cats ?"
+ ],
+ "prompt": "Eyes on the front of a brown black and white {}s face. "
+ },
+ {
+ "index": 271,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "Eyes on a black and white cats face. ",
+ "question": [
+ "are there eyes ?",
+ "are there a black and white cats ?"
+ ],
+ "prompt": "Eyes on a black and white {}s face. "
+ },
+ {
+ "index": 272,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "Brown, black and white colored kitty laying to the left of another cat. ",
+ "question": [
+ "is there brown, black and white colored kitty ?",
+ "is there the left ?",
+ "is there another cat ?"
+ ],
+ "prompt": "Brown, black and white colored kitty laying to the left of another {}. "
+ },
+ {
+ "index": 273,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "A three colored cats left side eye. ",
+ "question": [
+ "are there a three colored cats ?",
+ "is there side eye ?"
+ ],
+ "prompt": "A three colored {}s left side eye. "
+ },
+ {
+ "index": 274,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "Grey and black cats are playing",
+ "question": [
+ "are there black cats ?"
+ ],
+ "prompt": "Grey and black {}s are playing"
+ },
+ {
+ "index": 275,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "Black and white cat is playing with gray and white cat.",
+ "question": [
+ "is there black and white cat ?",
+ "is there gray and white cat ?"
+ ],
+ "prompt": "Black and white {} is playing with gray and white {}."
+ },
+ {
+ "index": 276,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "both cats have a white face and pink noses",
+ "question": [
+ "are there both cats ?",
+ "is there a white face ?",
+ "are there pink noses ?"
+ ],
+ "prompt": "both {}s have a white face and pink noses"
+ },
+ {
+ "index": 277,
+ "image_id": 2404073,
+ "entity": "cat",
+ "caption": "Two cats are laying down together ",
+ "question": [
+ "are there two cats ?"
+ ],
+ "prompt": "Two {}s are laying down together "
+ },
+ {
+ "index": 278,
+ "image_id": 2404061,
+ "entity": "cat",
+ "caption": "One cat is on the table.",
+ "question": [
+ "is there one cat ?",
+ "is there the table ?"
+ ],
+ "prompt": "One {} is on the table."
+ },
+ {
+ "index": 279,
+ "image_id": 2404061,
+ "entity": "cat",
+ "caption": "cat's foot resting on a computer speaker",
+ "question": [
+ "is there cat's foot ?",
+ "is there a computer speaker ?"
+ ],
+ "prompt": "{}'s foot resting on a computer speaker"
+ },
+ {
+ "index": 280,
+ "image_id": 2404061,
+ "entity": "cat",
+ "caption": "The cat is laying in the sun",
+ "question": [
+ "is there the cat ?",
+ "is there the sun ?"
+ ],
+ "prompt": "The {} is laying in the sun"
+ },
+ {
+ "index": 281,
+ "image_id": 2404061,
+ "entity": "cat",
+ "caption": "The cat's eyes are closed",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are closed"
+ },
+ {
+ "index": 282,
+ "image_id": 2404015,
+ "entity": "cat",
+ "caption": "One cat is in floor.",
+ "question": [
+ "is there one cat ?",
+ "is there floor ?"
+ ],
+ "prompt": "One {} is in floor."
+ },
+ {
+ "index": 283,
+ "image_id": 2404015,
+ "entity": "cat",
+ "caption": "Leg of cat holds a plush",
+ "question": [
+ "is there leg ?",
+ "is there cat ?",
+ "is there a plush ?"
+ ],
+ "prompt": "Leg of {} holds a plush"
+ },
+ {
+ "index": 284,
+ "image_id": 2403773,
+ "entity": "cat",
+ "caption": "the cat has a pink tag on its collar",
+ "question": [
+ "is there the cat ?",
+ "is there a pink tag ?",
+ "is there its collar ?"
+ ],
+ "prompt": "the {} has a pink tag on its collar"
+ },
+ {
+ "index": 285,
+ "image_id": 2403773,
+ "entity": "cat",
+ "caption": "the tv is on behind the cat",
+ "question": [
+ "is there the tv ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the tv is on behind the {}"
+ },
+ {
+ "index": 286,
+ "image_id": 2403758,
+ "entity": "cat",
+ "caption": "White cat eyebrows pointing upward",
+ "question": [
+ "are there white cat eyebrows ?"
+ ],
+ "prompt": "White {} eyebrows pointing upward"
+ },
+ {
+ "index": 287,
+ "image_id": 2403758,
+ "entity": "cat",
+ "caption": "cat whiskers highlighted by sunlight",
+ "question": [
+ "are there cat whiskers ?",
+ "is there sunlight ?"
+ ],
+ "prompt": "{} whiskers highlighted by sunlight"
+ },
+ {
+ "index": 288,
+ "image_id": 2403479,
+ "entity": "cat",
+ "caption": "Strange position cat finds self",
+ "question": [
+ "is there strange position cat ?",
+ "is there self ?"
+ ],
+ "prompt": "Strange position {} finds self"
+ },
+ {
+ "index": 289,
+ "image_id": 2403082,
+ "entity": "cat",
+ "caption": "the cat is black",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is black"
+ },
+ {
+ "index": 290,
+ "image_id": 2403082,
+ "entity": "cat",
+ "caption": "the cat's eyes are green",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are green"
+ },
+ {
+ "index": 291,
+ "image_id": 2403082,
+ "entity": "cat",
+ "caption": "Black cat resting it's head on a bed.",
+ "question": [
+ "is there black cat ?",
+ "is there head ?",
+ "is there a bed ?"
+ ],
+ "prompt": "Black {} resting it's head on a bed."
+ },
+ {
+ "index": 292,
+ "image_id": 2402840,
+ "entity": "cat",
+ "caption": "The back left leg of a cat. ",
+ "question": [
+ "is there the back left leg ?",
+ "is there a cat ?"
+ ],
+ "prompt": "The back left leg of a {}. "
+ },
+ {
+ "index": 293,
+ "image_id": 2402810,
+ "entity": "cat",
+ "caption": "The cat is lying on a pen",
+ "question": [
+ "is there the cat ?",
+ "is there a pen ?"
+ ],
+ "prompt": "The {} is lying on a pen"
+ },
+ {
+ "index": 294,
+ "image_id": 2402619,
+ "entity": "cat",
+ "caption": "the cat has collar",
+ "question": [
+ "is there the cat ?",
+ "is there collar ?"
+ ],
+ "prompt": "the {} has collar"
+ },
+ {
+ "index": 295,
+ "image_id": 2402592,
+ "entity": "cat",
+ "caption": "both cats have white paws",
+ "question": [
+ "are there both cats ?",
+ "are there white paws ?"
+ ],
+ "prompt": "both {}s have white paws"
+ },
+ {
+ "index": 296,
+ "image_id": 2402592,
+ "entity": "cat",
+ "caption": "the cats are touching",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s are touching"
+ },
+ {
+ "index": 297,
+ "image_id": 2402592,
+ "entity": "cat",
+ "caption": "A sleeping cat curled in a ball with its face in its fur",
+ "question": [
+ "is there a sleeping cat ?",
+ "is there a ball ?",
+ "is there its face ?",
+ "is there its fur ?"
+ ],
+ "prompt": "A sleeping {} curled in a ball with its face in its fur"
+ },
+ {
+ "index": 298,
+ "image_id": 2402592,
+ "entity": "cat",
+ "caption": "the cat's ears are black",
+ "question": [
+ "are there the cat's ears ?"
+ ],
+ "prompt": "the {}'s ears are black"
+ },
+ {
+ "index": 299,
+ "image_id": 2402592,
+ "entity": "cat",
+ "caption": "the cat's forehead is black",
+ "question": [
+ "is there the cat's forehead ?"
+ ],
+ "prompt": "the {}'s forehead is black"
+ },
+ {
+ "index": 300,
+ "image_id": 2402592,
+ "entity": "cat",
+ "caption": "the nose of the cat is black",
+ "question": [
+ "is there the nose ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the nose of the {} is black"
+ },
+ {
+ "index": 301,
+ "image_id": 2402592,
+ "entity": "cat",
+ "caption": "the fur of the cats' tails is black",
+ "question": [
+ "is there the fur ?",
+ "are there the cats' tails ?"
+ ],
+ "prompt": "the fur of the {}s' tails is black"
+ },
+ {
+ "index": 302,
+ "image_id": 2402592,
+ "entity": "cat",
+ "caption": "the paws of the cats are white",
+ "question": [
+ "are there the paws ?",
+ "are there the cats ?"
+ ],
+ "prompt": "the paws of the {}s are white"
+ },
+ {
+ "index": 303,
+ "image_id": 2402592,
+ "entity": "cat",
+ "caption": "the cats are sleeping on a bed",
+ "question": [
+ "are there the cats ?",
+ "is there a bed ?"
+ ],
+ "prompt": "the {}s are sleeping on a bed"
+ },
+ {
+ "index": 304,
+ "image_id": 2402505,
+ "entity": "cat",
+ "caption": "the cat is on the floor",
+ "question": [
+ "is there the cat ?",
+ "is there the floor ?"
+ ],
+ "prompt": "the {} is on the floor"
+ },
+ {
+ "index": 305,
+ "image_id": 2402505,
+ "entity": "cat",
+ "caption": "the cat is wearing a grey tie",
+ "question": [
+ "is there the cat ?",
+ "is there a grey tie ?"
+ ],
+ "prompt": "the {} is wearing a grey tie"
+ },
+ {
+ "index": 306,
+ "image_id": 2402505,
+ "entity": "cat",
+ "caption": "the cat sits in front of a bookshelf",
+ "question": [
+ "is there the cat ?",
+ "is there front ?",
+ "is there a bookshelf ?"
+ ],
+ "prompt": "the {} sits in front of a bookshelf"
+ },
+ {
+ "index": 307,
+ "image_id": 2402505,
+ "entity": "cat",
+ "caption": "a circular metal object is hanging from the cat's neck",
+ "question": [
+ "is there a circular metal object ?",
+ "is there the cat's neck ?"
+ ],
+ "prompt": "a circular metal object is hanging from the {}'s neck"
+ },
+ {
+ "index": 308,
+ "image_id": 2402505,
+ "entity": "cat",
+ "caption": "the cat wears a human's tie",
+ "question": [
+ "is there the cat ?",
+ "is there a human's tie ?"
+ ],
+ "prompt": "the {} wears a human's tie"
+ },
+ {
+ "index": 309,
+ "image_id": 2402493,
+ "entity": "cat",
+ "caption": "The cat is sleeping on the table.",
+ "question": [
+ "is there the cat ?",
+ "is there the table ?"
+ ],
+ "prompt": "The {} is sleeping on the table."
+ },
+ {
+ "index": 310,
+ "image_id": 2402493,
+ "entity": "cat",
+ "caption": "The cat is laying on the cellphone.",
+ "question": [
+ "is there the cat ?",
+ "is there the cellphone ?"
+ ],
+ "prompt": "The {} is laying on the cellphone."
+ },
+ {
+ "index": 311,
+ "image_id": 2402493,
+ "entity": "cat",
+ "caption": "The cat has long whiskers.",
+ "question": [
+ "is there the cat ?",
+ "are there long whiskers ?"
+ ],
+ "prompt": "The {} has long whiskers."
+ },
+ {
+ "index": 312,
+ "image_id": 2402493,
+ "entity": "cat",
+ "caption": "The cat has a small paw",
+ "question": [
+ "is there the cat ?",
+ "is there a small paw ?"
+ ],
+ "prompt": "The {} has a small paw"
+ },
+ {
+ "index": 313,
+ "image_id": 2402325,
+ "entity": "cat",
+ "caption": "cat whiskers pointing downwards",
+ "question": [
+ "are there cat whiskers ?"
+ ],
+ "prompt": "{} whiskers pointing downwards"
+ },
+ {
+ "index": 314,
+ "image_id": 2402325,
+ "entity": "cat",
+ "caption": "ears of cat are dark",
+ "question": [
+ "are there ears ?",
+ "is there cat ?"
+ ],
+ "prompt": "ears of {} are dark"
+ },
+ {
+ "index": 315,
+ "image_id": 2402325,
+ "entity": "cat",
+ "caption": "front leg of cat stretched",
+ "question": [
+ "is there front leg ?",
+ "is there cat ?"
+ ],
+ "prompt": "front leg of {} stretched"
+ },
+ {
+ "index": 316,
+ "image_id": 2401439,
+ "entity": "cat",
+ "caption": "white hair in cats ear",
+ "question": [
+ "is there white hair ?",
+ "are there cats ?"
+ ],
+ "prompt": "white hair in {}s ear"
+ },
+ {
+ "index": 317,
+ "image_id": 2401192,
+ "entity": "cat",
+ "caption": "The nose of the cat stuffed toy.",
+ "question": [
+ "is there the nose ?",
+ "is there the cat ?",
+ "is there stuffed toy ?"
+ ],
+ "prompt": "The nose of the {} stuffed toy."
+ },
+ {
+ "index": 318,
+ "image_id": 2401192,
+ "entity": "cat",
+ "caption": "the black cat has white fangs",
+ "question": [
+ "is there the black cat ?",
+ "are there white fangs ?"
+ ],
+ "prompt": "the black {} has white fangs"
+ },
+ {
+ "index": 319,
+ "image_id": 2401192,
+ "entity": "cat",
+ "caption": "the cat has a black tail",
+ "question": [
+ "is there the cat ?",
+ "is there a black tail ?"
+ ],
+ "prompt": "the {} has a black tail"
+ },
+ {
+ "index": 320,
+ "image_id": 2400983,
+ "entity": "cat",
+ "caption": "Part of the cat is white.",
+ "question": [
+ "is there part ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Part of the {} is white."
+ },
+ {
+ "index": 321,
+ "image_id": 2400983,
+ "entity": "cat",
+ "caption": "Part of the cat is gray with black stripes.",
+ "question": [
+ "is there part ?",
+ "is there the cat ?",
+ "are there black stripes ?"
+ ],
+ "prompt": "Part of the {} is gray with black stripes."
+ },
+ {
+ "index": 322,
+ "image_id": 2400983,
+ "entity": "cat",
+ "caption": "The cat has yellow eyes.",
+ "question": [
+ "is there the cat ?",
+ "are there yellow eyes ?"
+ ],
+ "prompt": "The {} has yellow eyes."
+ },
+ {
+ "index": 323,
+ "image_id": 2400983,
+ "entity": "cat",
+ "caption": "The cat has a pink nose.",
+ "question": [
+ "is there the cat ?",
+ "is there a pink nose ?"
+ ],
+ "prompt": "The {} has a pink nose."
+ },
+ {
+ "index": 324,
+ "image_id": 2400983,
+ "entity": "cat",
+ "caption": "The cat has white whiskers.",
+ "question": [
+ "is there the cat ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "The {} has white whiskers."
+ },
+ {
+ "index": 325,
+ "image_id": 2400983,
+ "entity": "cat",
+ "caption": "multicolored cat laying down",
+ "question": [
+ "is there multicolored cat ?"
+ ],
+ "prompt": "multicolored {} laying down"
+ },
+ {
+ "index": 326,
+ "image_id": 2400934,
+ "entity": "cat",
+ "caption": "The cat is sitting next to the laptop.",
+ "question": [
+ "is there the cat ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "The {} is sitting next to the laptop."
+ },
+ {
+ "index": 327,
+ "image_id": 2400934,
+ "entity": "cat",
+ "caption": "The cat is wearing a collar.",
+ "question": [
+ "is there the cat ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} is wearing a collar."
+ },
+ {
+ "index": 328,
+ "image_id": 2400934,
+ "entity": "cat",
+ "caption": "The cellphone is by the cat's tail",
+ "question": [
+ "is there the cellphone ?",
+ "is there the cat's tail ?"
+ ],
+ "prompt": "The cellphone is by the {}'s tail"
+ },
+ {
+ "index": 329,
+ "image_id": 2400803,
+ "entity": "cat",
+ "caption": "cat curled up in a wire basket",
+ "question": [
+ "is there cat ?",
+ "is there a wire basket ?"
+ ],
+ "prompt": "{} curled up in a wire basket"
+ },
+ {
+ "index": 330,
+ "image_id": 2400803,
+ "entity": "cat",
+ "caption": "cat's tail curled around rear of body",
+ "question": [
+ "is there cat's tail ?",
+ "is there rear ?",
+ "is there body ?"
+ ],
+ "prompt": "{}'s tail curled around rear of body"
+ },
+ {
+ "index": 331,
+ "image_id": 2400803,
+ "entity": "cat",
+ "caption": "The cat has two ears.",
+ "question": [
+ "is there the cat ?",
+ "are there two ears ?"
+ ],
+ "prompt": "The {} has two ears."
+ },
+ {
+ "index": 332,
+ "image_id": 2400803,
+ "entity": "cat",
+ "caption": "The cat has two eyes.",
+ "question": [
+ "is there the cat ?",
+ "are there two eyes ?"
+ ],
+ "prompt": "The {} has two eyes."
+ },
+ {
+ "index": 333,
+ "image_id": 2400803,
+ "entity": "cat",
+ "caption": "The cat has a nose.",
+ "question": [
+ "is there the cat ?",
+ "is there a nose ?"
+ ],
+ "prompt": "The {} has a nose."
+ },
+ {
+ "index": 334,
+ "image_id": 2400803,
+ "entity": "cat",
+ "caption": "The cat has a tail.",
+ "question": [
+ "is there the cat ?",
+ "is there a tail ?"
+ ],
+ "prompt": "The {} has a tail."
+ },
+ {
+ "index": 335,
+ "image_id": 2400549,
+ "entity": "cat",
+ "caption": "the cat is lying on a bed",
+ "question": [
+ "is there the cat ?",
+ "is there a bed ?"
+ ],
+ "prompt": "the {} is lying on a bed"
+ },
+ {
+ "index": 336,
+ "image_id": 2400549,
+ "entity": "cat",
+ "caption": "the cat has two dots on its face",
+ "question": [
+ "is there the cat ?",
+ "are there two dots ?",
+ "is there its face ?"
+ ],
+ "prompt": "the {} has two dots on its face"
+ },
+ {
+ "index": 337,
+ "image_id": 2400549,
+ "entity": "cat",
+ "caption": "the cat has a cloth anti scratch collar on",
+ "question": [
+ "is there the cat ?",
+ "is there a cloth anti scratch collar ?"
+ ],
+ "prompt": "the {} has a cloth anti scratch collar on"
+ },
+ {
+ "index": 338,
+ "image_id": 2400549,
+ "entity": "cat",
+ "caption": "the cat has a scratch problem",
+ "question": [
+ "is there the cat ?",
+ "is there a scratch problem ?"
+ ],
+ "prompt": "the {} has a scratch problem"
+ },
+ {
+ "index": 339,
+ "image_id": 2400549,
+ "entity": "cat",
+ "caption": "the cat's front paws are on a towel",
+ "question": [
+ "are there the cat's front paws ?",
+ "is there a towel ?"
+ ],
+ "prompt": "the {}'s front paws are on a towel"
+ },
+ {
+ "index": 340,
+ "image_id": 2400549,
+ "entity": "cat",
+ "caption": "the cat's face is black and white",
+ "question": [
+ "is there the cat's face ?"
+ ],
+ "prompt": "the {}'s face is black and white"
+ },
+ {
+ "index": 341,
+ "image_id": 2400549,
+ "entity": "cat",
+ "caption": "A cats white right arm. ",
+ "question": [
+ "are there a cats ?",
+ "is there right arm ?"
+ ],
+ "prompt": "A {}s white right arm. "
+ },
+ {
+ "index": 342,
+ "image_id": 2400549,
+ "entity": "cat",
+ "caption": "The cat is laying on a bed.",
+ "question": [
+ "is there the cat ?",
+ "is there a bed ?"
+ ],
+ "prompt": "The {} is laying on a bed."
+ },
+ {
+ "index": 343,
+ "image_id": 2400549,
+ "entity": "cat",
+ "caption": "The cat is wearing a cone.",
+ "question": [
+ "is there the cat ?",
+ "is there a cone ?"
+ ],
+ "prompt": "The {} is wearing a cone."
+ },
+ {
+ "index": 344,
+ "image_id": 2400503,
+ "entity": "cat",
+ "caption": "this cat's ears are laid back on it's head",
+ "question": [
+ "are there this cat's ears ?",
+ "is there it's head ?"
+ ],
+ "prompt": "this {}'s ears are laid back on it's head"
+ },
+ {
+ "index": 345,
+ "image_id": 2400503,
+ "entity": "cat",
+ "caption": "cat on the right's tail is black with large white spot",
+ "question": [
+ "is there cat ?",
+ "is there the right's tail ?",
+ "is there large white spot ?"
+ ],
+ "prompt": "{} on the right's tail is black with large white spot"
+ },
+ {
+ "index": 346,
+ "image_id": 2400376,
+ "entity": "cat",
+ "caption": "the cat has hair in its ear",
+ "question": [
+ "is there the cat ?",
+ "is there hair ?",
+ "is there its ear ?"
+ ],
+ "prompt": "the {} has hair in its ear"
+ },
+ {
+ "index": 347,
+ "image_id": 2400376,
+ "entity": "cat",
+ "caption": "these are cat eyes",
+ "question": [
+ "are there cat eyes ?"
+ ],
+ "prompt": "these are {} eyes"
+ },
+ {
+ "index": 348,
+ "image_id": 2400376,
+ "entity": "cat",
+ "caption": "this is a cat mouth",
+ "question": [
+ "is there a cat mouth ?"
+ ],
+ "prompt": "this is a {} mouth"
+ },
+ {
+ "index": 349,
+ "image_id": 2400251,
+ "entity": "cat",
+ "caption": "this is the cat's front left paw",
+ "question": [
+ "is there the cat's front left paw ?"
+ ],
+ "prompt": "this is the {}'s front left paw"
+ },
+ {
+ "index": 350,
+ "image_id": 2400251,
+ "entity": "cat",
+ "caption": "this is a cat's fur",
+ "question": [
+ "is there a cat's fur ?"
+ ],
+ "prompt": "this is a {}'s fur"
+ },
+ {
+ "index": 351,
+ "image_id": 2400251,
+ "entity": "cat",
+ "caption": "this is the cat's front right paw",
+ "question": [
+ "is there the cat's front right paw ?"
+ ],
+ "prompt": "this is the {}'s front right paw"
+ },
+ {
+ "index": 352,
+ "image_id": 2400251,
+ "entity": "cat",
+ "caption": "this is the cat's head",
+ "question": [
+ "is there the cat's head ?"
+ ],
+ "prompt": "this is the {}'s head"
+ },
+ {
+ "index": 353,
+ "image_id": 2400251,
+ "entity": "cat",
+ "caption": "this is the cat's tail",
+ "question": [
+ "is there the cat's tail ?"
+ ],
+ "prompt": "this is the {}'s tail"
+ },
+ {
+ "index": 354,
+ "image_id": 2400251,
+ "entity": "cat",
+ "caption": "this is the cat's right ear",
+ "question": [
+ "is there the cat's right ear ?"
+ ],
+ "prompt": "this is the {}'s right ear"
+ },
+ {
+ "index": 355,
+ "image_id": 2400251,
+ "entity": "cat",
+ "caption": "this is cats eye",
+ "question": [
+ "are there cats ?"
+ ],
+ "prompt": "this is {}s eye"
+ },
+ {
+ "index": 356,
+ "image_id": 2400210,
+ "entity": "cat",
+ "caption": "The green pants the cat is lying on",
+ "question": [
+ "are there the green pants ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The green pants the {} is lying on"
+ },
+ {
+ "index": 357,
+ "image_id": 2400210,
+ "entity": "cat",
+ "caption": "grey cat not looking at photographer",
+ "question": [
+ "is there grey cat ?",
+ "is there photographer ?"
+ ],
+ "prompt": "grey {} not looking at photographer"
+ },
+ {
+ "index": 358,
+ "image_id": 2400189,
+ "entity": "cat",
+ "caption": "The cat has white whiskers",
+ "question": [
+ "is there the cat ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "The {} has white whiskers"
+ },
+ {
+ "index": 359,
+ "image_id": 2400189,
+ "entity": "cat",
+ "caption": "The cat is wearing a bow tie",
+ "question": [
+ "is there the cat ?",
+ "is there a bow tie ?"
+ ],
+ "prompt": "The {} is wearing a bow tie"
+ },
+ {
+ "index": 360,
+ "image_id": 2400189,
+ "entity": "cat",
+ "caption": "The cat is wearing a polka dot bow tie",
+ "question": [
+ "is there the cat ?",
+ "is there a polka dot bow tie ?"
+ ],
+ "prompt": "The {} is wearing a polka dot bow tie"
+ },
+ {
+ "index": 361,
+ "image_id": 2400189,
+ "entity": "cat",
+ "caption": "The cat has eyes",
+ "question": [
+ "is there the cat ?",
+ "are there eyes ?"
+ ],
+ "prompt": "The {} has eyes"
+ },
+ {
+ "index": 362,
+ "image_id": 2400189,
+ "entity": "cat",
+ "caption": "The cat has ears",
+ "question": [
+ "is there the cat ?",
+ "are there ears ?"
+ ],
+ "prompt": "The {} has ears"
+ },
+ {
+ "index": 363,
+ "image_id": 2400189,
+ "entity": "cat",
+ "caption": "The cat has a nose",
+ "question": [
+ "is there the cat ?",
+ "is there a nose ?"
+ ],
+ "prompt": "The {} has a nose"
+ },
+ {
+ "index": 364,
+ "image_id": 2400189,
+ "entity": "cat",
+ "caption": "A rainbow polka-dotted bow tie the cat is wearing",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "A rainbow polka-dotted bow tie the {} is wearing"
+ },
+ {
+ "index": 365,
+ "image_id": 2400035,
+ "entity": "cat",
+ "caption": "a cat with its paws hanging from the chair",
+ "question": [
+ "is there a cat ?",
+ "are there its paws ?",
+ "is there the chair ?"
+ ],
+ "prompt": "a {} with its paws hanging from the chair"
+ },
+ {
+ "index": 366,
+ "image_id": 2400035,
+ "entity": "cat",
+ "caption": "part of chair cat is on",
+ "question": [
+ "is there part ?",
+ "is there chair cat ?"
+ ],
+ "prompt": "part of chair {} is on"
+ },
+ {
+ "index": 367,
+ "image_id": 2400035,
+ "entity": "cat",
+ "caption": "The wooden table the cat and the chair is under",
+ "question": [
+ "is there the wooden table ?",
+ "is there the cat ?",
+ "is there the chair ?"
+ ],
+ "prompt": "The wooden table the {} and the chair is under"
+ },
+ {
+ "index": 368,
+ "image_id": 2399916,
+ "entity": "cat",
+ "caption": "gallon of milk does not interest cat",
+ "question": [
+ "is there gallon ?",
+ "is there milk ?",
+ "is there cat ?"
+ ],
+ "prompt": "gallon of milk does not interest {}"
+ },
+ {
+ "index": 369,
+ "image_id": 2399916,
+ "entity": "cat",
+ "caption": "an old man's head, made of plastic or porcelain, looks gruffly down above cat",
+ "question": [
+ "is there an old man's head ?",
+ "is there plastic ?",
+ "is there porcelain ?",
+ "is there cat ?"
+ ],
+ "prompt": "an old man's head, made of plastic or porcelain, looks gruffly down above {}"
+ },
+ {
+ "index": 370,
+ "image_id": 2399787,
+ "entity": "cat",
+ "caption": "part of the desk the cats are on",
+ "question": [
+ "is there part ?",
+ "is there the desk ?",
+ "are there the cats ?"
+ ],
+ "prompt": "part of the desk the {}s are on"
+ },
+ {
+ "index": 371,
+ "image_id": 2399676,
+ "entity": "cat",
+ "caption": "The cat's fur is orange",
+ "question": [
+ "is there the cat's fur ?"
+ ],
+ "prompt": "The {}'s fur is orange"
+ },
+ {
+ "index": 372,
+ "image_id": 2399676,
+ "entity": "cat",
+ "caption": "a yellow cats paw",
+ "question": [
+ "are there a yellow cats ?"
+ ],
+ "prompt": "a yellow {}s paw"
+ },
+ {
+ "index": 373,
+ "image_id": 2399563,
+ "entity": "cat",
+ "caption": "adorable cat laying on remote",
+ "question": [
+ "is there adorable cat ?"
+ ],
+ "prompt": "adorable {} laying on remote"
+ },
+ {
+ "index": 374,
+ "image_id": 2399563,
+ "entity": "cat",
+ "caption": "brown and white cat laying on remote",
+ "question": [
+ "is there brown and white cat ?"
+ ],
+ "prompt": "brown and white {} laying on remote"
+ },
+ {
+ "index": 375,
+ "image_id": 2399138,
+ "entity": "cat",
+ "caption": "A small table with something on it is near the cat.",
+ "question": [
+ "is there a small table ?",
+ "is there something ?",
+ "is there the cat ?"
+ ],
+ "prompt": "A small table with something on it is near the {}."
+ },
+ {
+ "index": 376,
+ "image_id": 2399138,
+ "entity": "cat",
+ "caption": "white whiskers coming from the cat's face",
+ "question": [
+ "are there white whiskers ?",
+ "is there the cat's face ?"
+ ],
+ "prompt": "white whiskers coming from the {}'s face"
+ },
+ {
+ "index": 377,
+ "image_id": 2399138,
+ "entity": "cat",
+ "caption": "the cat is looking at the laptop",
+ "question": [
+ "is there the cat ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "the {} is looking at the laptop"
+ },
+ {
+ "index": 378,
+ "image_id": 2398796,
+ "entity": "cat",
+ "caption": "white stripe on cats head",
+ "question": [
+ "is there white stripe ?",
+ "are there cats ?"
+ ],
+ "prompt": "white stripe on {}s head"
+ },
+ {
+ "index": 379,
+ "image_id": 2398796,
+ "entity": "cat",
+ "caption": "cat has black tail",
+ "question": [
+ "is there cat ?",
+ "is there black tail ?"
+ ],
+ "prompt": "{} has black tail"
+ },
+ {
+ "index": 380,
+ "image_id": 2398796,
+ "entity": "cat",
+ "caption": "white whiskers on cats face",
+ "question": [
+ "are there white whiskers ?",
+ "are there cats ?"
+ ],
+ "prompt": "white whiskers on {}s face"
+ },
+ {
+ "index": 381,
+ "image_id": 2398318,
+ "entity": "cat",
+ "caption": "the cat has eye",
+ "question": [
+ "is there the cat ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {} has eye"
+ },
+ {
+ "index": 382,
+ "image_id": 2398204,
+ "entity": "cat",
+ "caption": "The cat is sniffing the food.",
+ "question": [
+ "is there the cat ?",
+ "is there the food ?"
+ ],
+ "prompt": "The {} is sniffing the food."
+ },
+ {
+ "index": 383,
+ "image_id": 2398204,
+ "entity": "cat",
+ "caption": "The cat is sitting on carpet.",
+ "question": [
+ "is there the cat ?",
+ "is there carpet ?"
+ ],
+ "prompt": "The {} is sitting on carpet."
+ },
+ {
+ "index": 384,
+ "image_id": 2398204,
+ "entity": "cat",
+ "caption": "The cat has green eyes.",
+ "question": [
+ "is there the cat ?",
+ "are there green eyes ?"
+ ],
+ "prompt": "The {} has green eyes."
+ },
+ {
+ "index": 385,
+ "image_id": 2398204,
+ "entity": "cat",
+ "caption": "The cat has a grey nose.",
+ "question": [
+ "is there the cat ?",
+ "is there a grey nose ?"
+ ],
+ "prompt": "The {} has a grey nose."
+ },
+ {
+ "index": 386,
+ "image_id": 2398197,
+ "entity": "cat",
+ "caption": "The cat is resting its head on a person's foot.",
+ "question": [
+ "is there the cat ?",
+ "is there its head ?",
+ "is there a person's foot ?"
+ ],
+ "prompt": "The {} is resting its head on a person's foot."
+ },
+ {
+ "index": 387,
+ "image_id": 2398197,
+ "entity": "cat",
+ "caption": "A cat has two ears.",
+ "question": [
+ "is there a cat ?",
+ "are there two ears ?"
+ ],
+ "prompt": "A {} has two ears."
+ },
+ {
+ "index": 388,
+ "image_id": 2397581,
+ "entity": "cat",
+ "caption": "the cat is in the suitcase ",
+ "question": [
+ "is there the cat ?",
+ "is there the suitcase ?"
+ ],
+ "prompt": "the {} is in the suitcase "
+ },
+ {
+ "index": 389,
+ "image_id": 2397581,
+ "entity": "cat",
+ "caption": "this is a cat's tail",
+ "question": [
+ "is there a cat's tail ?"
+ ],
+ "prompt": "this is a {}'s tail"
+ },
+ {
+ "index": 390,
+ "image_id": 2397581,
+ "entity": "cat",
+ "caption": "this is the cats ear",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "this is the {}s ear"
+ },
+ {
+ "index": 391,
+ "image_id": 2397543,
+ "entity": "cat",
+ "caption": "the cat has a black pupil",
+ "question": [
+ "is there the cat ?",
+ "is there a black pupil ?"
+ ],
+ "prompt": "the {} has a black pupil"
+ },
+ {
+ "index": 392,
+ "image_id": 2397543,
+ "entity": "cat",
+ "caption": "the cat has whiskers ",
+ "question": [
+ "is there the cat ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "the {} has whiskers "
+ },
+ {
+ "index": 393,
+ "image_id": 2397239,
+ "entity": "cat",
+ "caption": "cat ear missing tip",
+ "question": [
+ "is there cat ear missing tip ?"
+ ],
+ "prompt": "{} ear missing tip"
+ },
+ {
+ "index": 394,
+ "image_id": 2396782,
+ "entity": "cat",
+ "caption": "cat has two ears",
+ "question": [
+ "is there cat ?",
+ "are there two ears ?"
+ ],
+ "prompt": "{} has two ears"
+ },
+ {
+ "index": 395,
+ "image_id": 2396717,
+ "entity": "cat",
+ "caption": "Two cats side by side",
+ "question": [
+ "are there two cats ?",
+ "is there side ?"
+ ],
+ "prompt": "Two {}s side by side"
+ },
+ {
+ "index": 396,
+ "image_id": 2396717,
+ "entity": "cat",
+ "caption": "The cat has brown ears",
+ "question": [
+ "is there the cat ?",
+ "are there brown ears ?"
+ ],
+ "prompt": "The {} has brown ears"
+ },
+ {
+ "index": 397,
+ "image_id": 2396717,
+ "entity": "cat",
+ "caption": "The cats are lying on a couch",
+ "question": [
+ "are there the cats ?",
+ "is there a couch ?"
+ ],
+ "prompt": "The {}s are lying on a couch"
+ },
+ {
+ "index": 398,
+ "image_id": 2396694,
+ "entity": "cat",
+ "caption": "cat is lying on the blanket",
+ "question": [
+ "is there cat ?",
+ "is there the blanket ?"
+ ],
+ "prompt": "{} is lying on the blanket"
+ },
+ {
+ "index": 399,
+ "image_id": 2396694,
+ "entity": "cat",
+ "caption": "The cat is lying on the blanket",
+ "question": [
+ "is there the cat ?",
+ "is there the blanket ?"
+ ],
+ "prompt": "The {} is lying on the blanket"
+ },
+ {
+ "index": 400,
+ "image_id": 2396479,
+ "entity": "cat",
+ "caption": "the cat is watching tv",
+ "question": [
+ "is there the cat ?",
+ "is there tv ?"
+ ],
+ "prompt": "the {} is watching tv"
+ },
+ {
+ "index": 401,
+ "image_id": 2396216,
+ "entity": "cat",
+ "caption": "white sheet the cat is laying on",
+ "question": [
+ "is there white sheet ?",
+ "is there the cat ?"
+ ],
+ "prompt": "white sheet the {} is laying on"
+ },
+ {
+ "index": 402,
+ "image_id": 2396216,
+ "entity": "cat",
+ "caption": "whiskers coming from the cat's snout",
+ "question": [
+ "are there whiskers ?",
+ "is there the cat's snout ?"
+ ],
+ "prompt": "whiskers coming from the {}'s snout"
+ },
+ {
+ "index": 403,
+ "image_id": 2396029,
+ "entity": "cat",
+ "caption": "whisker follicles on cats cheek",
+ "question": [
+ "are there whisker follicles ?",
+ "are there cats ?"
+ ],
+ "prompt": "whisker follicles on {}s cheek"
+ },
+ {
+ "index": 404,
+ "image_id": 2396029,
+ "entity": "cat",
+ "caption": "The cat's eyes are showing.",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are showing."
+ },
+ {
+ "index": 405,
+ "image_id": 2395877,
+ "entity": "cat",
+ "caption": "the cat is looking through the window",
+ "question": [
+ "is there the cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking through the window"
+ },
+ {
+ "index": 406,
+ "image_id": 2395877,
+ "entity": "cat",
+ "caption": "The cat is by the window.",
+ "question": [
+ "is there the cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is by the window."
+ },
+ {
+ "index": 407,
+ "image_id": 2395877,
+ "entity": "cat",
+ "caption": "The cat is looking out the window.",
+ "question": [
+ "is there the cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is looking out the window."
+ },
+ {
+ "index": 408,
+ "image_id": 2395709,
+ "entity": "cat",
+ "caption": "a cat showing it's claws",
+ "question": [
+ "is there a cat ?",
+ "are there claws ?"
+ ],
+ "prompt": "a {} showing it's claws"
+ },
+ {
+ "index": 409,
+ "image_id": 2395709,
+ "entity": "cat",
+ "caption": "The cat is under a blanket",
+ "question": [
+ "is there the cat ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is under a blanket"
+ },
+ {
+ "index": 410,
+ "image_id": 2395709,
+ "entity": "cat",
+ "caption": "The cat is on the red blanket",
+ "question": [
+ "is there the cat ?",
+ "is there the red blanket ?"
+ ],
+ "prompt": "The {} is on the red blanket"
+ },
+ {
+ "index": 411,
+ "image_id": 2395559,
+ "entity": "cat",
+ "caption": "the cat is beautiful",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is beautiful"
+ },
+ {
+ "index": 412,
+ "image_id": 2395559,
+ "entity": "cat",
+ "caption": "the cat is laying on the computer",
+ "question": [
+ "is there the cat ?",
+ "is there the computer ?"
+ ],
+ "prompt": "the {} is laying on the computer"
+ },
+ {
+ "index": 413,
+ "image_id": 2395433,
+ "entity": "cat",
+ "caption": "A brown cat is sitting on the table.",
+ "question": [
+ "is there a brown cat ?",
+ "is there the table ?"
+ ],
+ "prompt": "A brown {} is sitting on the table."
+ },
+ {
+ "index": 414,
+ "image_id": 2395433,
+ "entity": "cat",
+ "caption": "The cat's eyes are closed.",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are closed."
+ },
+ {
+ "index": 415,
+ "image_id": 2395369,
+ "entity": "cat",
+ "caption": "cat and dog playing with each other ",
+ "question": [
+ "is there cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "{} and dog playing with each other "
+ },
+ {
+ "index": 416,
+ "image_id": 2395174,
+ "entity": "cat",
+ "caption": "one black cat looks right",
+ "question": [
+ "is there one black cat ?"
+ ],
+ "prompt": "one black {} looks right"
+ },
+ {
+ "index": 417,
+ "image_id": 2395174,
+ "entity": "cat",
+ "caption": "this cat has yellow eyes",
+ "question": [
+ "is there this cat ?",
+ "are there yellow eyes ?"
+ ],
+ "prompt": "this {} has yellow eyes"
+ },
+ {
+ "index": 418,
+ "image_id": 2395174,
+ "entity": "cat",
+ "caption": "cats are in front of the window",
+ "question": [
+ "are there cats ?",
+ "is there front ?",
+ "is there the window ?"
+ ],
+ "prompt": "{}s are in front of the window"
+ },
+ {
+ "index": 419,
+ "image_id": 2395174,
+ "entity": "cat",
+ "caption": "the cats are looking at each other",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s are looking at each other"
+ },
+ {
+ "index": 420,
+ "image_id": 2395174,
+ "entity": "cat",
+ "caption": "Two cats are in the picture.",
+ "question": [
+ "are there two cats ?",
+ "is there the picture ?"
+ ],
+ "prompt": "Two {}s are in the picture."
+ },
+ {
+ "index": 421,
+ "image_id": 2395174,
+ "entity": "cat",
+ "caption": "The cats are facing each other.",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "The {}s are facing each other."
+ },
+ {
+ "index": 422,
+ "image_id": 2395030,
+ "entity": "cat",
+ "caption": "cat is calico with black stipes",
+ "question": [
+ "is there cat ?",
+ "is there calico ?",
+ "are there black stipes ?"
+ ],
+ "prompt": "{} is calico with black stipes"
+ },
+ {
+ "index": 423,
+ "image_id": 2395030,
+ "entity": "cat",
+ "caption": "thge cat has a back paw",
+ "question": [
+ "is there a back paw ?"
+ ],
+ "prompt": "thge {} has a back paw"
+ },
+ {
+ "index": 424,
+ "image_id": 2394914,
+ "entity": "cat",
+ "caption": "the cat has a scar",
+ "question": [
+ "is there the cat ?",
+ "is there a scar ?"
+ ],
+ "prompt": "the {} has a scar"
+ },
+ {
+ "index": 425,
+ "image_id": 2394914,
+ "entity": "cat",
+ "caption": "the cat has an ear",
+ "question": [
+ "is there the cat ?",
+ "is there an ear ?"
+ ],
+ "prompt": "the {} has an ear"
+ },
+ {
+ "index": 426,
+ "image_id": 2394914,
+ "entity": "cat",
+ "caption": "the cat has an eye",
+ "question": [
+ "is there the cat ?",
+ "is there an eye ?"
+ ],
+ "prompt": "the {} has an eye"
+ },
+ {
+ "index": 427,
+ "image_id": 2394803,
+ "entity": "cat",
+ "caption": "the cat is in the fridge",
+ "question": [
+ "is there the cat ?",
+ "is there the fridge ?"
+ ],
+ "prompt": "the {} is in the fridge"
+ },
+ {
+ "index": 428,
+ "image_id": 2394803,
+ "entity": "cat",
+ "caption": "the cat stands in the fridge",
+ "question": [
+ "is there the cat ?",
+ "is there the fridge ?"
+ ],
+ "prompt": "the {} stands in the fridge"
+ },
+ {
+ "index": 429,
+ "image_id": 2394803,
+ "entity": "cat",
+ "caption": "cat has pink nose",
+ "question": [
+ "is there cat ?",
+ "is there pink nose ?"
+ ],
+ "prompt": "{} has pink nose"
+ },
+ {
+ "index": 430,
+ "image_id": 2394694,
+ "entity": "cat",
+ "caption": "The cat is holding a camera.",
+ "question": [
+ "is there the cat ?",
+ "is there a camera ?"
+ ],
+ "prompt": "The {} is holding a camera."
+ },
+ {
+ "index": 431,
+ "image_id": 2394694,
+ "entity": "cat",
+ "caption": "The cat has short fur.",
+ "question": [
+ "is there the cat ?",
+ "is there short fur ?"
+ ],
+ "prompt": "The {} has short fur."
+ },
+ {
+ "index": 432,
+ "image_id": 2394694,
+ "entity": "cat",
+ "caption": "The cat's shadow is on the background.",
+ "question": [
+ "is there the cat's shadow ?",
+ "is there the background ?"
+ ],
+ "prompt": "The {}'s shadow is on the background."
+ },
+ {
+ "index": 433,
+ "image_id": 2394694,
+ "entity": "cat",
+ "caption": "The cats is holding a camera in it's paw.",
+ "question": [
+ "are there the cats ?",
+ "is there a camera ?",
+ "is there it's paw ?"
+ ],
+ "prompt": "The {}s is holding a camera in it's paw."
+ },
+ {
+ "index": 434,
+ "image_id": 2394694,
+ "entity": "cat",
+ "caption": "cat is holding a camera",
+ "question": [
+ "is there cat ?",
+ "is there a camera ?"
+ ],
+ "prompt": "{} is holding a camera"
+ },
+ {
+ "index": 435,
+ "image_id": 2394559,
+ "entity": "cat",
+ "caption": "the cats lefts ear",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s lefts ear"
+ },
+ {
+ "index": 436,
+ "image_id": 2394336,
+ "entity": "cat",
+ "caption": "cat stand on a toilet ",
+ "question": [
+ "is there cat ?",
+ "is there a toilet ?"
+ ],
+ "prompt": "{} stand on a toilet "
+ },
+ {
+ "index": 437,
+ "image_id": 2394336,
+ "entity": "cat",
+ "caption": "eye of a cat is yellow",
+ "question": [
+ "is there eye ?",
+ "is there a cat ?"
+ ],
+ "prompt": "eye of a {} is yellow"
+ },
+ {
+ "index": 438,
+ "image_id": 2394211,
+ "entity": "cat",
+ "caption": "A cats nose",
+ "question": [
+ "are there a cats ?"
+ ],
+ "prompt": "A {}s nose"
+ },
+ {
+ "index": 439,
+ "image_id": 2394077,
+ "entity": "cat",
+ "caption": "the cat has a red collar",
+ "question": [
+ "is there the cat ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} has a red collar"
+ },
+ {
+ "index": 440,
+ "image_id": 2394077,
+ "entity": "cat",
+ "caption": "cat toy is on a stick",
+ "question": [
+ "is there cat toy ?",
+ "is there a stick ?"
+ ],
+ "prompt": "{} toy is on a stick"
+ },
+ {
+ "index": 441,
+ "image_id": 2394077,
+ "entity": "cat",
+ "caption": "cat is wearing a red collar",
+ "question": [
+ "is there cat ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "{} is wearing a red collar"
+ },
+ {
+ "index": 442,
+ "image_id": 2394077,
+ "entity": "cat",
+ "caption": "The cat has a collar",
+ "question": [
+ "is there the cat ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} has a collar"
+ },
+ {
+ "index": 443,
+ "image_id": 2394077,
+ "entity": "cat",
+ "caption": "The cat has a tail",
+ "question": [
+ "is there the cat ?",
+ "is there a tail ?"
+ ],
+ "prompt": "The {} has a tail"
+ },
+ {
+ "index": 444,
+ "image_id": 2394077,
+ "entity": "cat",
+ "caption": "The cat has a toy",
+ "question": [
+ "is there the cat ?",
+ "is there a toy ?"
+ ],
+ "prompt": "The {} has a toy"
+ },
+ {
+ "index": 445,
+ "image_id": 2394077,
+ "entity": "cat",
+ "caption": "The cat is laying on a blue and white blanket",
+ "question": [
+ "is there the cat ?",
+ "is there a blue and white blanket ?"
+ ],
+ "prompt": "The {} is laying on a blue and white blanket"
+ },
+ {
+ "index": 446,
+ "image_id": 2394077,
+ "entity": "cat",
+ "caption": "The cat's eyes are slightly open",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are slightly open"
+ },
+ {
+ "index": 447,
+ "image_id": 2394058,
+ "entity": "cat",
+ "caption": "cat has olive green eyes",
+ "question": [
+ "is there cat ?",
+ "are there olive green eyes ?"
+ ],
+ "prompt": "{} has olive green eyes"
+ },
+ {
+ "index": 448,
+ "image_id": 2393954,
+ "entity": "cat",
+ "caption": "Silver remote is next to cat.",
+ "question": [
+ "is there silver remote ?",
+ "is there cat ?"
+ ],
+ "prompt": "Silver remote is next to {}."
+ },
+ {
+ "index": 449,
+ "image_id": 2393954,
+ "entity": "cat",
+ "caption": "cat has green and black eyes",
+ "question": [
+ "is there cat ?",
+ "are there green and black eyes ?"
+ ],
+ "prompt": "{} has green and black eyes"
+ },
+ {
+ "index": 450,
+ "image_id": 2393837,
+ "entity": "cat",
+ "caption": "cats head is against the pillow",
+ "question": [
+ "are there cats ?",
+ "is there the pillow ?"
+ ],
+ "prompt": "{}s head is against the pillow"
+ },
+ {
+ "index": 451,
+ "image_id": 2393745,
+ "entity": "cat",
+ "caption": "a beautiful cat face that is multi colored",
+ "question": [
+ "is there a beautiful cat face ?"
+ ],
+ "prompt": "a beautiful {} face that is multi colored"
+ },
+ {
+ "index": 452,
+ "image_id": 2393745,
+ "entity": "cat",
+ "caption": "cat eye fully opened",
+ "question": [
+ "is there cat eye ?"
+ ],
+ "prompt": "{} eye fully opened"
+ },
+ {
+ "index": 453,
+ "image_id": 2393611,
+ "entity": "cat",
+ "caption": "cat has fluffy tail",
+ "question": [
+ "is there cat ?",
+ "is there fluffy tail ?"
+ ],
+ "prompt": "{} has fluffy tail"
+ },
+ {
+ "index": 454,
+ "image_id": 2393611,
+ "entity": "cat",
+ "caption": "cat is laying down on a bed",
+ "question": [
+ "is there cat ?",
+ "is there a bed ?"
+ ],
+ "prompt": "{} is laying down on a bed"
+ },
+ {
+ "index": 455,
+ "image_id": 2393066,
+ "entity": "cat",
+ "caption": "the cat is in the suit case",
+ "question": [
+ "is there the cat ?",
+ "is there the suit case ?"
+ ],
+ "prompt": "the {} is in the suit case"
+ },
+ {
+ "index": 456,
+ "image_id": 2393038,
+ "entity": "cat",
+ "caption": "Muzzle of cat is short",
+ "question": [
+ "is there muzzle ?",
+ "is there cat ?"
+ ],
+ "prompt": "Muzzle of {} is short"
+ },
+ {
+ "index": 457,
+ "image_id": 2393021,
+ "entity": "cat",
+ "caption": "The cat is laying down",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} is laying down"
+ },
+ {
+ "index": 458,
+ "image_id": 2392829,
+ "entity": "cat",
+ "caption": "the cat has a blue collar",
+ "question": [
+ "is there the cat ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "the {} has a blue collar"
+ },
+ {
+ "index": 459,
+ "image_id": 2392699,
+ "entity": "cat",
+ "caption": "The cat has orange stripes",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} has orange stripes"
+ },
+ {
+ "index": 460,
+ "image_id": 2392699,
+ "entity": "cat",
+ "caption": "The cat is sitting in a bag",
+ "question": [
+ "is there the cat ?",
+ "is there a bag ?"
+ ],
+ "prompt": "The {} is sitting in a bag"
+ },
+ {
+ "index": 461,
+ "image_id": 2392699,
+ "entity": "cat",
+ "caption": "the cat has tags ",
+ "question": [
+ "is there the cat ?",
+ "are there tags ?"
+ ],
+ "prompt": "the {} has tags "
+ },
+ {
+ "index": 462,
+ "image_id": 2392574,
+ "entity": "cat",
+ "caption": "The cat's eyes are open",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are open"
+ },
+ {
+ "index": 463,
+ "image_id": 2392574,
+ "entity": "cat",
+ "caption": "The box is behind the cat",
+ "question": [
+ "is there the box ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The box is behind the {}"
+ },
+ {
+ "index": 464,
+ "image_id": 2392573,
+ "entity": "cat",
+ "caption": "the cat is a calico",
+ "question": [
+ "is there the cat ?",
+ "is there a calico ?"
+ ],
+ "prompt": "the {} is a calico"
+ },
+ {
+ "index": 465,
+ "image_id": 2392573,
+ "entity": "cat",
+ "caption": "The inside of the cats ear is furry",
+ "question": [
+ "is there the inside ?",
+ "are there the cats ?"
+ ],
+ "prompt": "The inside of the {}s ear is furry"
+ },
+ {
+ "index": 466,
+ "image_id": 2392537,
+ "entity": "cat",
+ "caption": "The cat's eyes are yellow",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are yellow"
+ },
+ {
+ "index": 467,
+ "image_id": 2392537,
+ "entity": "cat",
+ "caption": "The cat's paws are white",
+ "question": [
+ "are there the cat's paws ?"
+ ],
+ "prompt": "The {}'s paws are white"
+ },
+ {
+ "index": 468,
+ "image_id": 2392537,
+ "entity": "cat",
+ "caption": "The cat's nose has black on it",
+ "question": [
+ "is there the cat's nose ?"
+ ],
+ "prompt": "The {}'s nose has black on it"
+ },
+ {
+ "index": 469,
+ "image_id": 2392537,
+ "entity": "cat",
+ "caption": "The cat is standing",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} is standing"
+ },
+ {
+ "index": 470,
+ "image_id": 2392537,
+ "entity": "cat",
+ "caption": "a cat wearng a collar",
+ "question": [
+ "is there a cat ?",
+ "is there a collar ?"
+ ],
+ "prompt": "a {} wearng a collar"
+ },
+ {
+ "index": 471,
+ "image_id": 2392445,
+ "entity": "cat",
+ "caption": "Sun is reflecting on the cat",
+ "question": [
+ "is there sun ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Sun is reflecting on the {}"
+ },
+ {
+ "index": 472,
+ "image_id": 2392189,
+ "entity": "cat",
+ "caption": "woman petting a black cat",
+ "question": [
+ "is there woman ?",
+ "is there a black cat ?"
+ ],
+ "prompt": "woman petting a black {}"
+ },
+ {
+ "index": 473,
+ "image_id": 2391855,
+ "entity": "cat",
+ "caption": "The cat has white paws",
+ "question": [
+ "is there the cat ?",
+ "are there white paws ?"
+ ],
+ "prompt": "The {} has white paws"
+ },
+ {
+ "index": 474,
+ "image_id": 2391855,
+ "entity": "cat",
+ "caption": "The cat is laying on the teddy bear's foot",
+ "question": [
+ "is there the cat ?",
+ "is there the teddy bear's foot ?"
+ ],
+ "prompt": "The {} is laying on the teddy bear's foot"
+ },
+ {
+ "index": 475,
+ "image_id": 2391855,
+ "entity": "cat",
+ "caption": "The cat's eyes are green",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are green"
+ },
+ {
+ "index": 476,
+ "image_id": 2391810,
+ "entity": "cat",
+ "caption": "A cat is sitting on the table.",
+ "question": [
+ "is there a cat ?",
+ "is there the table ?"
+ ],
+ "prompt": "A {} is sitting on the table."
+ },
+ {
+ "index": 477,
+ "image_id": 2391810,
+ "entity": "cat",
+ "caption": "The cat has white front paws.",
+ "question": [
+ "is there the cat ?",
+ "are there white front paws ?"
+ ],
+ "prompt": "The {} has white front paws."
+ },
+ {
+ "index": 478,
+ "image_id": 2391810,
+ "entity": "cat",
+ "caption": "The cat's face is in the cup.",
+ "question": [
+ "is there the cat's face ?",
+ "is there the cup ?"
+ ],
+ "prompt": "The {}'s face is in the cup."
+ },
+ {
+ "index": 479,
+ "image_id": 2391810,
+ "entity": "cat",
+ "caption": "The cat is on the table.",
+ "question": [
+ "is there the cat ?",
+ "is there the table ?"
+ ],
+ "prompt": "The {} is on the table."
+ },
+ {
+ "index": 480,
+ "image_id": 2391810,
+ "entity": "cat",
+ "caption": "cat's feet are white",
+ "question": [
+ "are there cat's feet ?"
+ ],
+ "prompt": "{}'s feet are white"
+ },
+ {
+ "index": 481,
+ "image_id": 2391810,
+ "entity": "cat",
+ "caption": "cat is drinking from a cup",
+ "question": [
+ "is there cat ?",
+ "is there a cup ?"
+ ],
+ "prompt": "{} is drinking from a cup"
+ },
+ {
+ "index": 482,
+ "image_id": 2391810,
+ "entity": "cat",
+ "caption": "cat's had in cup",
+ "question": [
+ "is there cat ?",
+ "is there cup ?"
+ ],
+ "prompt": "{}'s had in cup"
+ },
+ {
+ "index": 483,
+ "image_id": 2391709,
+ "entity": "cat",
+ "caption": "The cat is on top of the cushions",
+ "question": [
+ "is there the cat ?",
+ "is there top ?",
+ "are there the cushions ?"
+ ],
+ "prompt": "The {} is on top of the cushions"
+ },
+ {
+ "index": 484,
+ "image_id": 2391709,
+ "entity": "cat",
+ "caption": "The cat is lying next to the person",
+ "question": [
+ "is there the cat ?",
+ "is there the person ?"
+ ],
+ "prompt": "The {} is lying next to the person"
+ },
+ {
+ "index": 485,
+ "image_id": 2391709,
+ "entity": "cat",
+ "caption": "cat has close eyes",
+ "question": [
+ "is there cat ?",
+ "are there close eyes ?"
+ ],
+ "prompt": "{} has close eyes"
+ },
+ {
+ "index": 486,
+ "image_id": 2391709,
+ "entity": "cat",
+ "caption": "cat stands on a couch",
+ "question": [
+ "is there cat ?",
+ "is there a couch ?"
+ ],
+ "prompt": "{} stands on a couch"
+ },
+ {
+ "index": 487,
+ "image_id": 2391709,
+ "entity": "cat",
+ "caption": "cat has brown stripes",
+ "question": [
+ "is there cat ?",
+ "are there brown stripes ?"
+ ],
+ "prompt": "{} has brown stripes"
+ },
+ {
+ "index": 488,
+ "image_id": 2391709,
+ "entity": "cat",
+ "caption": "the cat is beside the person",
+ "question": [
+ "is there the cat ?",
+ "is there the person ?"
+ ],
+ "prompt": "the {} is beside the person"
+ },
+ {
+ "index": 489,
+ "image_id": 2391709,
+ "entity": "cat",
+ "caption": "the cat is on the sofa",
+ "question": [
+ "is there the cat ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "the {} is on the sofa"
+ },
+ {
+ "index": 490,
+ "image_id": 2391523,
+ "entity": "cat",
+ "caption": "The cat has long fur.",
+ "question": [
+ "is there the cat ?",
+ "is there long fur ?"
+ ],
+ "prompt": "The {} has long fur."
+ },
+ {
+ "index": 491,
+ "image_id": 2391523,
+ "entity": "cat",
+ "caption": "The cat is laying on the floor.",
+ "question": [
+ "is there the cat ?",
+ "is there the floor ?"
+ ],
+ "prompt": "The {} is laying on the floor."
+ },
+ {
+ "index": 492,
+ "image_id": 2391141,
+ "entity": "cat",
+ "caption": "face of cat is white and gray",
+ "question": [
+ "is there face ?",
+ "is there cat ?"
+ ],
+ "prompt": "face of {} is white and gray"
+ },
+ {
+ "index": 493,
+ "image_id": 2391141,
+ "entity": "cat",
+ "caption": "cat covers the keyboard of laptop",
+ "question": [
+ "is there cat ?",
+ "is there the keyboard ?",
+ "is there laptop ?"
+ ],
+ "prompt": "{} covers the keyboard of laptop"
+ },
+ {
+ "index": 494,
+ "image_id": 2391112,
+ "entity": "cat",
+ "caption": "The cat paw is white.",
+ "question": [
+ "is there the cat paw ?"
+ ],
+ "prompt": "The {} paw is white."
+ },
+ {
+ "index": 495,
+ "image_id": 2391112,
+ "entity": "cat",
+ "caption": "The cat ear is white.",
+ "question": [
+ "is there the cat ear ?"
+ ],
+ "prompt": "The {} ear is white."
+ },
+ {
+ "index": 496,
+ "image_id": 2391112,
+ "entity": "cat",
+ "caption": "cat eating it's food",
+ "question": [
+ "is there cat ?",
+ "is there food ?"
+ ],
+ "prompt": "{} eating it's food"
+ },
+ {
+ "index": 497,
+ "image_id": 2390944,
+ "entity": "cat",
+ "caption": "The cat is laying on a blanket. ",
+ "question": [
+ "is there the cat ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is laying on a blanket. "
+ },
+ {
+ "index": 498,
+ "image_id": 2390873,
+ "entity": "cat",
+ "caption": "grey cat looking sidways",
+ "question": [
+ "is there grey cat ?"
+ ],
+ "prompt": "grey {} looking sidways"
+ },
+ {
+ "index": 499,
+ "image_id": 2390873,
+ "entity": "cat",
+ "caption": "whiskers on cat face",
+ "question": [
+ "are there whiskers ?",
+ "is there cat ?"
+ ],
+ "prompt": "whiskers on {} face"
+ },
+ {
+ "index": 500,
+ "image_id": 2390798,
+ "entity": "cat",
+ "caption": "the cats chest is white",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s chest is white"
+ },
+ {
+ "index": 501,
+ "image_id": 2390330,
+ "entity": "cat",
+ "caption": "The cats ears are at attention",
+ "question": [
+ "are there the cats ?",
+ "are there ears ?",
+ "is there attention ?"
+ ],
+ "prompt": "The {}s ears are at attention"
+ },
+ {
+ "index": 502,
+ "image_id": 2389755,
+ "entity": "cat",
+ "caption": "the bird is behind the cat",
+ "question": [
+ "is there the bird ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the bird is behind the {}"
+ },
+ {
+ "index": 503,
+ "image_id": 2389755,
+ "entity": "cat",
+ "caption": "the cat has a white face",
+ "question": [
+ "is there the cat ?",
+ "is there a white face ?"
+ ],
+ "prompt": "the {} has a white face"
+ },
+ {
+ "index": 504,
+ "image_id": 2389755,
+ "entity": "cat",
+ "caption": "the cat is in the grass",
+ "question": [
+ "is there the cat ?",
+ "is there the grass ?"
+ ],
+ "prompt": "the {} is in the grass"
+ },
+ {
+ "index": 505,
+ "image_id": 2389607,
+ "entity": "cat",
+ "caption": "The cats tail ",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "The {}s tail "
+ },
+ {
+ "index": 506,
+ "image_id": 2388882,
+ "entity": "cat",
+ "caption": "The cat is laying on a brown shoe",
+ "question": [
+ "is there the cat ?",
+ "is there a brown shoe ?"
+ ],
+ "prompt": "The {} is laying on a brown shoe"
+ },
+ {
+ "index": 507,
+ "image_id": 2388882,
+ "entity": "cat",
+ "caption": "The cats foot ",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "The {}s foot "
+ },
+ {
+ "index": 508,
+ "image_id": 2388882,
+ "entity": "cat",
+ "caption": "The cat has a white nose ",
+ "question": [
+ "is there the cat ?",
+ "is there a white nose ?"
+ ],
+ "prompt": "The {} has a white nose "
+ },
+ {
+ "index": 509,
+ "image_id": 2388882,
+ "entity": "cat",
+ "caption": "the cats belly ",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s belly "
+ },
+ {
+ "index": 510,
+ "image_id": 2388882,
+ "entity": "cat",
+ "caption": "Shoe is under the cat.",
+ "question": [
+ "is there shoe ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Shoe is under the {}."
+ },
+ {
+ "index": 511,
+ "image_id": 2388512,
+ "entity": "cat",
+ "caption": "The remote control is on top of the cat",
+ "question": [
+ "is there the remote control ?",
+ "is there top ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The remote control is on top of the {}"
+ },
+ {
+ "index": 512,
+ "image_id": 2388487,
+ "entity": "cat",
+ "caption": "Clock is above the cat.",
+ "question": [
+ "is there clock ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Clock is above the {}."
+ },
+ {
+ "index": 513,
+ "image_id": 2388487,
+ "entity": "cat",
+ "caption": "a cat is wearing a red black and yellow sweater.",
+ "question": [
+ "is there a cat ?",
+ "is there a red black and yellow sweater ?"
+ ],
+ "prompt": "a {} is wearing a red black and yellow sweater."
+ },
+ {
+ "index": 514,
+ "image_id": 2388487,
+ "entity": "cat",
+ "caption": "the cat has black and grey stripes.",
+ "question": [
+ "is there the cat ?",
+ "are there black and grey stripes ?"
+ ],
+ "prompt": "the {} has black and grey stripes."
+ },
+ {
+ "index": 515,
+ "image_id": 2388487,
+ "entity": "cat",
+ "caption": "a cat is laying on a rug.",
+ "question": [
+ "is there a cat ?",
+ "is there a rug ?"
+ ],
+ "prompt": "a {} is laying on a rug."
+ },
+ {
+ "index": 516,
+ "image_id": 2388487,
+ "entity": "cat",
+ "caption": "cat wears glasses",
+ "question": [
+ "is there cat ?",
+ "are there glasses ?"
+ ],
+ "prompt": "{} wears glasses"
+ },
+ {
+ "index": 517,
+ "image_id": 2388487,
+ "entity": "cat",
+ "caption": "cat wears red sweater",
+ "question": [
+ "is there cat ?",
+ "is there red sweater ?"
+ ],
+ "prompt": "{} wears red sweater"
+ },
+ {
+ "index": 518,
+ "image_id": 2388487,
+ "entity": "cat",
+ "caption": "cat has white and striped paws",
+ "question": [
+ "is there cat ?",
+ "are there white and striped paws ?"
+ ],
+ "prompt": "{} has white and striped paws"
+ },
+ {
+ "index": 519,
+ "image_id": 2388487,
+ "entity": "cat",
+ "caption": "cat is lying under table",
+ "question": [
+ "is there cat ?",
+ "is there table ?"
+ ],
+ "prompt": "{} is lying under table"
+ },
+ {
+ "index": 520,
+ "image_id": 2388487,
+ "entity": "cat",
+ "caption": "cat has black and white tag",
+ "question": [
+ "is there cat ?",
+ "is there black and white tag ?"
+ ],
+ "prompt": "{} has black and white tag"
+ },
+ {
+ "index": 521,
+ "image_id": 2388445,
+ "entity": "cat",
+ "caption": "cat has golden name tag",
+ "question": [
+ "is there cat ?",
+ "is there golden name tag ?"
+ ],
+ "prompt": "{} has golden name tag"
+ },
+ {
+ "index": 522,
+ "image_id": 2388445,
+ "entity": "cat",
+ "caption": "cat wears red+white collar from which hangs golden nametag",
+ "question": [
+ "is there cat ?",
+ "is there red+white collar ?"
+ ],
+ "prompt": "{} wears red+white collar from which hangs golden nametag"
+ },
+ {
+ "index": 523,
+ "image_id": 2388445,
+ "entity": "cat",
+ "caption": "cat has nice shiny fur",
+ "question": [
+ "is there cat ?",
+ "is there nice shiny fur ?"
+ ],
+ "prompt": "{} has nice shiny fur"
+ },
+ {
+ "index": 524,
+ "image_id": 2388445,
+ "entity": "cat",
+ "caption": "cat has little off-black pads @ the ends of all black feet",
+ "question": [
+ "is there cat ?",
+ "are there little off-black pads ?",
+ "are there the ends ?",
+ "are there all black feet ?"
+ ],
+ "prompt": "{} has little off-black pads @ the ends of all black feet"
+ },
+ {
+ "index": 525,
+ "image_id": 2388445,
+ "entity": "cat",
+ "caption": "red velvety jacket inadvertently nudges cat",
+ "question": [
+ "is there red velvety jacket ?",
+ "is there cat ?"
+ ],
+ "prompt": "red velvety jacket inadvertently nudges {}"
+ },
+ {
+ "index": 526,
+ "image_id": 2388445,
+ "entity": "cat",
+ "caption": "The cat has it's eyes closed.",
+ "question": [
+ "is there the cat ?",
+ "are there eyes ?"
+ ],
+ "prompt": "The {} has it's eyes closed."
+ },
+ {
+ "index": 527,
+ "image_id": 2388322,
+ "entity": "cat",
+ "caption": "cat possibly in front of wheel attached to hubcap, it's hard to tell",
+ "question": [
+ "is there front ?",
+ "is there wheel ?",
+ "is there hubcap ?"
+ ],
+ "prompt": "{} possibly in front of wheel attached to hubcap, it's hard to tell"
+ },
+ {
+ "index": 528,
+ "image_id": 2388322,
+ "entity": "cat",
+ "caption": "cat's eyes are golden, cat's nose is pink",
+ "question": [
+ "are there cat's eyes ?",
+ "is there cat's nose ?"
+ ],
+ "prompt": "{}'s eyes are golden, {}'s nose is pink"
+ },
+ {
+ "index": 529,
+ "image_id": 2388322,
+ "entity": "cat",
+ "caption": "cat's inner ears are pink+fairly well furred",
+ "question": [
+ "are there cat's inner ears ?"
+ ],
+ "prompt": "{}'s inner ears are pink+fairly well furred"
+ },
+ {
+ "index": 530,
+ "image_id": 2388322,
+ "entity": "cat",
+ "caption": "The cat has yellow eyes",
+ "question": [
+ "is there the cat ?",
+ "are there yellow eyes ?"
+ ],
+ "prompt": "The {} has yellow eyes"
+ },
+ {
+ "index": 531,
+ "image_id": 2388232,
+ "entity": "cat",
+ "caption": "the cat touches a toy",
+ "question": [
+ "is there the cat ?",
+ "is there a toy ?"
+ ],
+ "prompt": "the {} touches a toy"
+ },
+ {
+ "index": 532,
+ "image_id": 2388232,
+ "entity": "cat",
+ "caption": "the cat's paw has the trunk",
+ "question": [
+ "is there the cat's paw ?",
+ "is there the trunk ?"
+ ],
+ "prompt": "the {}'s paw has the trunk"
+ },
+ {
+ "index": 533,
+ "image_id": 2388232,
+ "entity": "cat",
+ "caption": "The cat is playing with the stuffed animal.",
+ "question": [
+ "is there the cat ?",
+ "is there the stuffed animal ?"
+ ],
+ "prompt": "The {} is playing with the stuffed animal."
+ },
+ {
+ "index": 534,
+ "image_id": 2388232,
+ "entity": "cat",
+ "caption": "The cat is striking the trunk.",
+ "question": [
+ "is there the cat ?",
+ "is there the trunk ?"
+ ],
+ "prompt": "The {} is striking the trunk."
+ },
+ {
+ "index": 535,
+ "image_id": 2387879,
+ "entity": "cat",
+ "caption": "the cat is near in the flower path",
+ "question": [
+ "is there the cat ?",
+ "is there the flower path ?"
+ ],
+ "prompt": "the {} is near in the flower path"
+ },
+ {
+ "index": 536,
+ "image_id": 2387500,
+ "entity": "cat",
+ "caption": "the cat is near with the bag",
+ "question": [
+ "is there the cat ?",
+ "is there the bag ?"
+ ],
+ "prompt": "the {} is near with the bag"
+ },
+ {
+ "index": 537,
+ "image_id": 2387500,
+ "entity": "cat",
+ "caption": "the cat has a tail",
+ "question": [
+ "is there the cat ?",
+ "is there a tail ?"
+ ],
+ "prompt": "the {} has a tail"
+ },
+ {
+ "index": 538,
+ "image_id": 2387497,
+ "entity": "cat",
+ "caption": "Wall is white behind cat.",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "Wall is white behind {}."
+ },
+ {
+ "index": 539,
+ "image_id": 2387497,
+ "entity": "cat",
+ "caption": "The cat has 2 ears",
+ "question": [
+ "is there the cat ?",
+ "are there 2 ears ?"
+ ],
+ "prompt": "The {} has 2 ears"
+ },
+ {
+ "index": 540,
+ "image_id": 2387497,
+ "entity": "cat",
+ "caption": "The cat is on the chair",
+ "question": [
+ "is there the cat ?",
+ "is there the chair ?"
+ ],
+ "prompt": "The {} is on the chair"
+ },
+ {
+ "index": 541,
+ "image_id": 2387394,
+ "entity": "cat",
+ "caption": "cat has green eyes",
+ "question": [
+ "is there cat ?",
+ "are there green eyes ?"
+ ],
+ "prompt": "{} has green eyes"
+ },
+ {
+ "index": 542,
+ "image_id": 2387394,
+ "entity": "cat",
+ "caption": "cat has black ears",
+ "question": [
+ "is there cat ?",
+ "are there black ears ?"
+ ],
+ "prompt": "{} has black ears"
+ },
+ {
+ "index": 543,
+ "image_id": 2387173,
+ "entity": "cat",
+ "caption": "the cat is in the suitcase",
+ "question": [
+ "is there the cat ?",
+ "is there the suitcase ?"
+ ],
+ "prompt": "the {} is in the suitcase"
+ },
+ {
+ "index": 544,
+ "image_id": 2387059,
+ "entity": "cat",
+ "caption": "black cat wearing jean bow",
+ "question": [
+ "is there black cat ?",
+ "is there jean bow ?"
+ ],
+ "prompt": "black {} wearing jean bow"
+ },
+ {
+ "index": 545,
+ "image_id": 2387059,
+ "entity": "cat",
+ "caption": "cats shadow on couch",
+ "question": [
+ "are there cats ?",
+ "is there couch ?"
+ ],
+ "prompt": "{}s shadow on couch"
+ },
+ {
+ "index": 546,
+ "image_id": 2387059,
+ "entity": "cat",
+ "caption": "the cat has a hat",
+ "question": [
+ "is there the cat ?",
+ "is there a hat ?"
+ ],
+ "prompt": "the {} has a hat"
+ },
+ {
+ "index": 547,
+ "image_id": 2387059,
+ "entity": "cat",
+ "caption": "the cat has a bow",
+ "question": [
+ "is there the cat ?",
+ "is there a bow ?"
+ ],
+ "prompt": "the {} has a bow"
+ },
+ {
+ "index": 548,
+ "image_id": 2387059,
+ "entity": "cat",
+ "caption": "the cat is casting a shadow",
+ "question": [
+ "is there the cat ?",
+ "is there a shadow ?"
+ ],
+ "prompt": "the {} is casting a shadow"
+ },
+ {
+ "index": 549,
+ "image_id": 2387059,
+ "entity": "cat",
+ "caption": "this is a cat's ear",
+ "question": [
+ "is there a cat's ear ?"
+ ],
+ "prompt": "this is a {}'s ear"
+ },
+ {
+ "index": 550,
+ "image_id": 2387059,
+ "entity": "cat",
+ "caption": "cat's eyes focus on camera",
+ "question": [
+ "are there cat's eyes ?",
+ "is there camera ?"
+ ],
+ "prompt": "{}'s eyes focus on camera"
+ },
+ {
+ "index": 551,
+ "image_id": 2387059,
+ "entity": "cat",
+ "caption": "ragged edges of cat's hat suggest image manipulation",
+ "question": [
+ "are there ragged edges ?",
+ "is there cat's hat ?",
+ "is there image manipulation ?"
+ ],
+ "prompt": "ragged edges of {}'s hat suggest image manipulation"
+ },
+ {
+ "index": 552,
+ "image_id": 2387059,
+ "entity": "cat",
+ "caption": "cat wears pet collar",
+ "question": [
+ "is there cat ?",
+ "is there pet collar ?"
+ ],
+ "prompt": "{} wears pet collar"
+ },
+ {
+ "index": 553,
+ "image_id": 2386959,
+ "entity": "cat",
+ "caption": "cat has yellow eyes",
+ "question": [
+ "is there cat ?",
+ "are there yellow eyes ?"
+ ],
+ "prompt": "{} has yellow eyes"
+ },
+ {
+ "index": 554,
+ "image_id": 2386959,
+ "entity": "cat",
+ "caption": "cat is casting shadow on grass",
+ "question": [
+ "is there cat ?",
+ "is there shadow ?",
+ "is there grass ?"
+ ],
+ "prompt": "{} is casting shadow on grass"
+ },
+ {
+ "index": 555,
+ "image_id": 2386959,
+ "entity": "cat",
+ "caption": "cats whiskers are white",
+ "question": [
+ "are there whiskers ?"
+ ],
+ "prompt": "{}s whiskers are white"
+ },
+ {
+ "index": 556,
+ "image_id": 2386737,
+ "entity": "cat",
+ "caption": "the cat's paw is white",
+ "question": [
+ "is there the cat's paw ?"
+ ],
+ "prompt": "the {}'s paw is white"
+ },
+ {
+ "index": 557,
+ "image_id": 2386737,
+ "entity": "cat",
+ "caption": "The can is in front of the cat",
+ "question": [
+ "is there the can ?",
+ "is there front ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The can is in front of the {}"
+ },
+ {
+ "index": 558,
+ "image_id": 2386732,
+ "entity": "cat",
+ "caption": "the cat is wearing a hat",
+ "question": [
+ "is there the cat ?",
+ "is there a hat ?"
+ ],
+ "prompt": "the {} is wearing a hat"
+ },
+ {
+ "index": 559,
+ "image_id": 2386624,
+ "entity": "cat",
+ "caption": "cat is sitting with toy elephant",
+ "question": [
+ "is there cat ?",
+ "is there toy elephant ?"
+ ],
+ "prompt": "{} is sitting with toy elephant"
+ },
+ {
+ "index": 560,
+ "image_id": 2386624,
+ "entity": "cat",
+ "caption": "cat's eyes are green",
+ "question": [
+ "are there cat's eyes ?"
+ ],
+ "prompt": "{}'s eyes are green"
+ },
+ {
+ "index": 561,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "cat has light brown ears",
+ "question": [
+ "is there cat ?",
+ "are there light brown ears ?"
+ ],
+ "prompt": "{} has light brown ears"
+ },
+ {
+ "index": 562,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "cat has brown paws on keyboard",
+ "question": [
+ "is there cat ?",
+ "are there brown paws ?",
+ "is there keyboard ?"
+ ],
+ "prompt": "{} has brown paws on keyboard"
+ },
+ {
+ "index": 563,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "cat has olive colored eyes",
+ "question": [
+ "is there cat ?",
+ "are there olive colored eyes ?"
+ ],
+ "prompt": "{} has olive colored eyes"
+ },
+ {
+ "index": 564,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "brown floor is behind cat and table",
+ "question": [
+ "is there brown floor ?",
+ "is there cat ?",
+ "is there table ?"
+ ],
+ "prompt": "brown floor is behind {} and table"
+ },
+ {
+ "index": 565,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "cat has light colored feet",
+ "question": [
+ "is there cat ?",
+ "are there light colored feet ?"
+ ],
+ "prompt": "{} has light colored feet"
+ },
+ {
+ "index": 566,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "cat has paws on keyboard",
+ "question": [
+ "is there cat ?",
+ "are there paws ?",
+ "is there keyboard ?"
+ ],
+ "prompt": "{} has paws on keyboard"
+ },
+ {
+ "index": 567,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "cat has light brown and pointed ears",
+ "question": [
+ "is there cat ?",
+ "are there light brown and pointed ears ?"
+ ],
+ "prompt": "{} has light brown and pointed ears"
+ },
+ {
+ "index": 568,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "cat has round green eyes",
+ "question": [
+ "is there cat ?",
+ "are there green eyes ?"
+ ],
+ "prompt": "{} has round green eyes"
+ },
+ {
+ "index": 569,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "cat's ears are pointing backward",
+ "question": [
+ "are there cat's ears ?"
+ ],
+ "prompt": "{}'s ears are pointing backward"
+ },
+ {
+ "index": 570,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "floor under table and behind cat is brown",
+ "question": [
+ "is there floor ?",
+ "is there table ?",
+ "is there cat ?"
+ ],
+ "prompt": "floor under table and behind {} is brown"
+ },
+ {
+ "index": 571,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "cat has light brown rear paws under body",
+ "question": [
+ "is there cat ?",
+ "are there light brown rear paws ?",
+ "is there body ?"
+ ],
+ "prompt": "{} has light brown rear paws under body"
+ },
+ {
+ "index": 572,
+ "image_id": 2386525,
+ "entity": "cat",
+ "caption": "End of cat's nose is pink.",
+ "question": [
+ "is there end ?",
+ "is there cat's nose ?"
+ ],
+ "prompt": "End of {}'s nose is pink."
+ },
+ {
+ "index": 573,
+ "image_id": 2386386,
+ "entity": "cat",
+ "caption": "Bed is under a cat",
+ "question": [
+ "is there bed ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Bed is under a {}"
+ },
+ {
+ "index": 574,
+ "image_id": 2386386,
+ "entity": "cat",
+ "caption": "cat is laying on a bed",
+ "question": [
+ "is there cat ?",
+ "is there a bed ?"
+ ],
+ "prompt": "{} is laying on a bed"
+ },
+ {
+ "index": 575,
+ "image_id": 2386177,
+ "entity": "cat",
+ "caption": "cats ear ",
+ "question": [
+ "are there cats ?"
+ ],
+ "prompt": "{}s ear "
+ },
+ {
+ "index": 576,
+ "image_id": 2386177,
+ "entity": "cat",
+ "caption": "the cats tail is grey ",
+ "question": [
+ "are there the cats tail ?"
+ ],
+ "prompt": "the {}s tail is grey "
+ },
+ {
+ "index": 577,
+ "image_id": 2386177,
+ "entity": "cat",
+ "caption": "the cats paws are white ",
+ "question": [
+ "are there the cats paws ?"
+ ],
+ "prompt": "the {}s paws are white "
+ },
+ {
+ "index": 578,
+ "image_id": 2386177,
+ "entity": "cat",
+ "caption": "the cat is sniffing the laptop",
+ "question": [
+ "is there the cat ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "the {} is sniffing the laptop"
+ },
+ {
+ "index": 579,
+ "image_id": 2386038,
+ "entity": "cat",
+ "caption": "white cat curled on fluffy fabric",
+ "question": [
+ "is there white cat ?",
+ "is there fluffy fabric ?"
+ ],
+ "prompt": "white {} curled on fluffy fabric"
+ },
+ {
+ "index": 580,
+ "image_id": 2385662,
+ "entity": "cat",
+ "caption": "gray cat is sitting on a pillow cushion",
+ "question": [
+ "is there gray cat ?",
+ "is there a pillow cushion ?"
+ ],
+ "prompt": "gray {} is sitting on a pillow cushion"
+ },
+ {
+ "index": 581,
+ "image_id": 2385662,
+ "entity": "cat",
+ "caption": "The cat has grey paws",
+ "question": [
+ "is there the cat ?",
+ "are there grey paws ?"
+ ],
+ "prompt": "The {} has grey paws"
+ },
+ {
+ "index": 582,
+ "image_id": 2385662,
+ "entity": "cat",
+ "caption": "The cat is on top of the cushion",
+ "question": [
+ "is there the cat ?",
+ "is there top ?",
+ "is there the cushion ?"
+ ],
+ "prompt": "The {} is on top of the cushion"
+ },
+ {
+ "index": 583,
+ "image_id": 2385662,
+ "entity": "cat",
+ "caption": "this cat is in a chair",
+ "question": [
+ "is there this cat ?",
+ "is there a chair ?"
+ ],
+ "prompt": "this {} is in a chair"
+ },
+ {
+ "index": 584,
+ "image_id": 2385611,
+ "entity": "cat",
+ "caption": "The cat is sitting in the window.",
+ "question": [
+ "is there the cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is sitting in the window."
+ },
+ {
+ "index": 585,
+ "image_id": 2385611,
+ "entity": "cat",
+ "caption": "The cat is laying in the window.",
+ "question": [
+ "is there the cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "The {} is laying in the window."
+ },
+ {
+ "index": 586,
+ "image_id": 2385611,
+ "entity": "cat",
+ "caption": "the cat sits in the window",
+ "question": [
+ "is there the cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} sits in the window"
+ },
+ {
+ "index": 587,
+ "image_id": 2385611,
+ "entity": "cat",
+ "caption": "the cat has a pink nose",
+ "question": [
+ "is there the cat ?",
+ "is there a pink nose ?"
+ ],
+ "prompt": "the {} has a pink nose"
+ },
+ {
+ "index": 588,
+ "image_id": 2385489,
+ "entity": "cat",
+ "caption": "the cat;s front left paw",
+ "question": [
+ "is there the cat;s front left paw ?"
+ ],
+ "prompt": "the {};s front left paw"
+ },
+ {
+ "index": 589,
+ "image_id": 2385475,
+ "entity": "cat",
+ "caption": "The cat has a white paw",
+ "question": [
+ "is there the cat ?",
+ "is there a white paw ?"
+ ],
+ "prompt": "The {} has a white paw"
+ },
+ {
+ "index": 590,
+ "image_id": 2385475,
+ "entity": "cat",
+ "caption": "The cat is lying down",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} is lying down"
+ },
+ {
+ "index": 591,
+ "image_id": 2385083,
+ "entity": "cat",
+ "caption": "This is cat's eyes",
+ "question": [
+ "are there cat's eyes ?"
+ ],
+ "prompt": "This is {}'s eyes"
+ },
+ {
+ "index": 592,
+ "image_id": 2385083,
+ "entity": "cat",
+ "caption": "This is cat's eye",
+ "question": [
+ "is there cat's eye ?"
+ ],
+ "prompt": "This is {}'s eye"
+ },
+ {
+ "index": 593,
+ "image_id": 2385083,
+ "entity": "cat",
+ "caption": "This is cat's ear",
+ "question": [
+ "is there cat's ear ?"
+ ],
+ "prompt": "This is {}'s ear"
+ },
+ {
+ "index": 594,
+ "image_id": 2385083,
+ "entity": "cat",
+ "caption": "This is cat's ears",
+ "question": [
+ "are there cat's ears ?"
+ ],
+ "prompt": "This is {}'s ears"
+ },
+ {
+ "index": 595,
+ "image_id": 2385083,
+ "entity": "cat",
+ "caption": "This is cat's mouth",
+ "question": [
+ "is there cat's mouth ?"
+ ],
+ "prompt": "This is {}'s mouth"
+ },
+ {
+ "index": 596,
+ "image_id": 2385083,
+ "entity": "cat",
+ "caption": "This is cat's nose",
+ "question": [
+ "is there cat's nose ?"
+ ],
+ "prompt": "This is {}'s nose"
+ },
+ {
+ "index": 597,
+ "image_id": 2384894,
+ "entity": "cat",
+ "caption": "the cat's head is black",
+ "question": [
+ "is there the cat's head ?"
+ ],
+ "prompt": "the {}'s head is black"
+ },
+ {
+ "index": 598,
+ "image_id": 2384894,
+ "entity": "cat",
+ "caption": "the cat's body is white",
+ "question": [
+ "is there the cat's body ?"
+ ],
+ "prompt": "the {}'s body is white"
+ },
+ {
+ "index": 599,
+ "image_id": 2384894,
+ "entity": "cat",
+ "caption": "cat looks up toward the stairway",
+ "question": [
+ "is there cat ?",
+ "is there the stairway ?"
+ ],
+ "prompt": "{} looks up toward the stairway"
+ },
+ {
+ "index": 600,
+ "image_id": 2384894,
+ "entity": "cat",
+ "caption": "The cat is in a bag.",
+ "question": [
+ "is there the cat ?",
+ "is there a bag ?"
+ ],
+ "prompt": "The {} is in a bag."
+ },
+ {
+ "index": 601,
+ "image_id": 2384739,
+ "entity": "cat",
+ "caption": "cat has two black ears",
+ "question": [
+ "is there cat ?",
+ "are there two black ears ?"
+ ],
+ "prompt": "{} has two black ears"
+ },
+ {
+ "index": 602,
+ "image_id": 2384739,
+ "entity": "cat",
+ "caption": "a black cat is lying on the pavement",
+ "question": [
+ "is there a black cat ?",
+ "is there the pavement ?"
+ ],
+ "prompt": "a black {} is lying on the pavement"
+ },
+ {
+ "index": 603,
+ "image_id": 2384739,
+ "entity": "cat",
+ "caption": "the black cat has green eyes",
+ "question": [
+ "is there the black cat ?",
+ "are there green eyes ?"
+ ],
+ "prompt": "the black {} has green eyes"
+ },
+ {
+ "index": 604,
+ "image_id": 2384739,
+ "entity": "cat",
+ "caption": "the black cat is lying next to the bird",
+ "question": [
+ "is there the black cat ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the black {} is lying next to the bird"
+ },
+ {
+ "index": 605,
+ "image_id": 2384731,
+ "entity": "cat",
+ "caption": "chest of cat is white",
+ "question": [
+ "is there chest ?",
+ "is there cat ?"
+ ],
+ "prompt": "chest of {} is white"
+ },
+ {
+ "index": 606,
+ "image_id": 2384731,
+ "entity": "cat",
+ "caption": "The cat has white on its face",
+ "question": [
+ "is there the cat ?",
+ "is there its face ?"
+ ],
+ "prompt": "The {} has white on its face"
+ },
+ {
+ "index": 607,
+ "image_id": 2384728,
+ "entity": "cat",
+ "caption": "a cat with its eyes half closed",
+ "question": [
+ "is there a cat ?",
+ "are there its eyes ?"
+ ],
+ "prompt": "a {} with its eyes half closed"
+ },
+ {
+ "index": 608,
+ "image_id": 2384583,
+ "entity": "cat",
+ "caption": "cat's tie is a little crooked",
+ "question": [
+ "is there cat's tie ?"
+ ],
+ "prompt": "{}'s tie is a little crooked"
+ },
+ {
+ "index": 609,
+ "image_id": 2384583,
+ "entity": "cat",
+ "caption": "cat is wearing a tie",
+ "question": [
+ "is there cat ?",
+ "is there a tie ?"
+ ],
+ "prompt": "{} is wearing a tie"
+ },
+ {
+ "index": 610,
+ "image_id": 2384565,
+ "entity": "cat",
+ "caption": "cat is watching tv",
+ "question": [
+ "is there cat ?",
+ "is there tv ?"
+ ],
+ "prompt": "{} is watching tv"
+ },
+ {
+ "index": 611,
+ "image_id": 2384565,
+ "entity": "cat",
+ "caption": "the cat has a bow on his neck",
+ "question": [
+ "is there the cat ?",
+ "is there a bow ?",
+ "is there his neck ?"
+ ],
+ "prompt": "the {} has a bow on his neck"
+ },
+ {
+ "index": 612,
+ "image_id": 2384243,
+ "entity": "cat",
+ "caption": "The cat is in the bathroom sink.",
+ "question": [
+ "is there the cat ?",
+ "is there the bathroom ?"
+ ],
+ "prompt": "The {} is in the bathroom sink."
+ },
+ {
+ "index": 613,
+ "image_id": 2383840,
+ "entity": "cat",
+ "caption": "blue collar cat is wearing",
+ "question": [
+ "is there blue collar cat ?"
+ ],
+ "prompt": "blue collar {} is wearing"
+ },
+ {
+ "index": 614,
+ "image_id": 2383840,
+ "entity": "cat",
+ "caption": "the cat's whiskers are black",
+ "question": [
+ "are there the cat's whiskers ?"
+ ],
+ "prompt": "the {}'s whiskers are black"
+ },
+ {
+ "index": 615,
+ "image_id": 2383626,
+ "entity": "cat",
+ "caption": "cat is leaning on laptop",
+ "question": [
+ "is there cat ?",
+ "is there laptop ?"
+ ],
+ "prompt": "{} is leaning on laptop"
+ },
+ {
+ "index": 616,
+ "image_id": 2383626,
+ "entity": "cat",
+ "caption": "cat right eye is closed",
+ "question": [
+ "is there cat right eye ?"
+ ],
+ "prompt": "{} right eye is closed"
+ },
+ {
+ "index": 617,
+ "image_id": 2383626,
+ "entity": "cat",
+ "caption": "red thing cat is laying on",
+ "question": [
+ "is there red thing cat ?"
+ ],
+ "prompt": "red thing {} is laying on"
+ },
+ {
+ "index": 618,
+ "image_id": 2383527,
+ "entity": "cat",
+ "caption": "This is eye of a cat",
+ "question": [
+ "is there eye ?",
+ "is there a cat ?"
+ ],
+ "prompt": "This is eye of a {}"
+ },
+ {
+ "index": 619,
+ "image_id": 2383527,
+ "entity": "cat",
+ "caption": "The cat is on its side",
+ "question": [
+ "is there the cat ?",
+ "is there its side ?"
+ ],
+ "prompt": "The {} is on its side"
+ },
+ {
+ "index": 620,
+ "image_id": 2383527,
+ "entity": "cat",
+ "caption": "The cat is lying over a person's arm",
+ "question": [
+ "is there the cat ?",
+ "is there a person's arm ?"
+ ],
+ "prompt": "The {} is lying over a person's arm"
+ },
+ {
+ "index": 621,
+ "image_id": 2383527,
+ "entity": "cat",
+ "caption": "The cat has white spots on its belly",
+ "question": [
+ "is there the cat ?",
+ "are there white spots ?",
+ "is there its belly ?"
+ ],
+ "prompt": "The {} has white spots on its belly"
+ },
+ {
+ "index": 622,
+ "image_id": 2383527,
+ "entity": "cat",
+ "caption": "The cat's eyes are both open",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "The {}'s eyes are both open"
+ },
+ {
+ "index": 623,
+ "image_id": 2383527,
+ "entity": "cat",
+ "caption": "a cat's front left leg",
+ "question": [
+ "is there a cat's front left leg ?"
+ ],
+ "prompt": "a {}'s front left leg"
+ },
+ {
+ "index": 624,
+ "image_id": 2383512,
+ "entity": "cat",
+ "caption": "cat on top of TV laying down",
+ "question": [
+ "is there cat ?",
+ "is there top ?",
+ "is there tv ?"
+ ],
+ "prompt": "{} on top of TV laying down"
+ },
+ {
+ "index": 625,
+ "image_id": 2383512,
+ "entity": "cat",
+ "caption": "cats head laying down",
+ "question": [
+ "are there cats ?"
+ ],
+ "prompt": "{}s head laying down"
+ },
+ {
+ "index": 626,
+ "image_id": 2383512,
+ "entity": "cat",
+ "caption": "cats ear on top of cats head",
+ "question": [
+ "are there cats ?",
+ "is there top ?",
+ "are there cats ?"
+ ],
+ "prompt": "{}s ear on top of {}s head"
+ },
+ {
+ "index": 627,
+ "image_id": 2383512,
+ "entity": "cat",
+ "caption": "stripes on cats head",
+ "question": [
+ "are there stripes ?",
+ "are there cats ?"
+ ],
+ "prompt": "stripes on {}s head"
+ },
+ {
+ "index": 628,
+ "image_id": 2383512,
+ "entity": "cat",
+ "caption": "TV cat is laying on top of",
+ "question": [
+ "is there tv cat ?",
+ "is there top ?"
+ ],
+ "prompt": "TV {} is laying on top of"
+ },
+ {
+ "index": 629,
+ "image_id": 2383512,
+ "entity": "cat",
+ "caption": "the cats paw ",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s paw "
+ },
+ {
+ "index": 630,
+ "image_id": 2383233,
+ "entity": "cat",
+ "caption": "cat is wearing a collar",
+ "question": [
+ "is there cat ?",
+ "is there a collar ?"
+ ],
+ "prompt": "{} is wearing a collar"
+ },
+ {
+ "index": 631,
+ "image_id": 2382977,
+ "entity": "cat",
+ "caption": "the cats head id a dark color",
+ "question": [
+ "are there the cats ?",
+ "is there a dark color ?"
+ ],
+ "prompt": "the {}s head id a dark color"
+ },
+ {
+ "index": 632,
+ "image_id": 2382977,
+ "entity": "cat",
+ "caption": "the cats tail is like his head",
+ "question": [
+ "are there the cats tail ?",
+ "is there his head ?"
+ ],
+ "prompt": "the {}s tail is like his head"
+ },
+ {
+ "index": 633,
+ "image_id": 2382789,
+ "entity": "cat",
+ "caption": "The cat has reflective light in eyes",
+ "question": [
+ "is there the cat ?",
+ "is there reflective light ?",
+ "are there eyes ?"
+ ],
+ "prompt": "The {} has reflective light in eyes"
+ },
+ {
+ "index": 634,
+ "image_id": 2382560,
+ "entity": "cat",
+ "caption": "end of cats tail",
+ "question": [
+ "is there end ?",
+ "are there cats ?"
+ ],
+ "prompt": "end of {}s tail"
+ },
+ {
+ "index": 635,
+ "image_id": 2382560,
+ "entity": "cat",
+ "caption": "black fur on cats head",
+ "question": [
+ "is there black fur ?",
+ "are there cats ?"
+ ],
+ "prompt": "black fur on {}s head"
+ },
+ {
+ "index": 636,
+ "image_id": 2382560,
+ "entity": "cat",
+ "caption": "yellow fur on cats face",
+ "question": [
+ "is there yellow fur ?",
+ "are there cats ?"
+ ],
+ "prompt": "yellow fur on {}s face"
+ },
+ {
+ "index": 637,
+ "image_id": 2382560,
+ "entity": "cat",
+ "caption": "the cats tail ",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s tail "
+ },
+ {
+ "index": 638,
+ "image_id": 2382560,
+ "entity": "cat",
+ "caption": "The cat is sitting on the bench ",
+ "question": [
+ "is there the cat ?",
+ "is there the bench ?"
+ ],
+ "prompt": "The {} is sitting on the bench "
+ },
+ {
+ "index": 639,
+ "image_id": 2382560,
+ "entity": "cat",
+ "caption": "The cat has a pink nose ",
+ "question": [
+ "is there the cat ?",
+ "is there a pink nose ?"
+ ],
+ "prompt": "The {} has a pink nose "
+ },
+ {
+ "index": 640,
+ "image_id": 2382560,
+ "entity": "cat",
+ "caption": "The cat has a brown spot ",
+ "question": [
+ "is there the cat ?",
+ "is there a brown spot ?"
+ ],
+ "prompt": "The {} has a brown spot "
+ },
+ {
+ "index": 641,
+ "image_id": 2382560,
+ "entity": "cat",
+ "caption": "The cat has a light brown spot ",
+ "question": [
+ "is there the cat ?",
+ "is there a light brown spot ?"
+ ],
+ "prompt": "The {} has a light brown spot "
+ },
+ {
+ "index": 642,
+ "image_id": 2382390,
+ "entity": "cat",
+ "caption": "cats tail ",
+ "question": [
+ "are there cats ?"
+ ],
+ "prompt": "{}s tail "
+ },
+ {
+ "index": 643,
+ "image_id": 2382372,
+ "entity": "cat",
+ "caption": "cat is lying in a orange bowl",
+ "question": [
+ "is there cat ?",
+ "is there a orange bowl ?"
+ ],
+ "prompt": "{} is lying in a orange bowl"
+ },
+ {
+ "index": 644,
+ "image_id": 2382372,
+ "entity": "cat",
+ "caption": "woman is behind cat",
+ "question": [
+ "is there woman ?",
+ "is there cat ?"
+ ],
+ "prompt": "woman is behind {}"
+ },
+ {
+ "index": 645,
+ "image_id": 2382372,
+ "entity": "cat",
+ "caption": "the woman standing behind the cat",
+ "question": [
+ "is there the woman ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the woman standing behind the {}"
+ },
+ {
+ "index": 646,
+ "image_id": 2382119,
+ "entity": "cat",
+ "caption": "The cat is lying on a sofa",
+ "question": [
+ "is there the cat ?",
+ "is there a sofa ?"
+ ],
+ "prompt": "The {} is lying on a sofa"
+ },
+ {
+ "index": 647,
+ "image_id": 2381823,
+ "entity": "cat",
+ "caption": "tabby cats nose and whiskers ",
+ "question": [
+ "are there tabby cats nose ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "tabby {}s nose and whiskers "
+ },
+ {
+ "index": 648,
+ "image_id": 2381823,
+ "entity": "cat",
+ "caption": "cat prepared to hit a key on the keyboard",
+ "question": [
+ "is there cat ?",
+ "is there a key ?",
+ "is there the keyboard ?"
+ ],
+ "prompt": "{} prepared to hit a key on the keyboard"
+ },
+ {
+ "index": 649,
+ "image_id": 2381795,
+ "entity": "cat",
+ "caption": "A cat is behind the laptop.",
+ "question": [
+ "is there a cat ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "A {} is behind the laptop."
+ },
+ {
+ "index": 650,
+ "image_id": 2381669,
+ "entity": "cat",
+ "caption": "a cat toy that a cat is playing with",
+ "question": [
+ "is there a cat toy ?",
+ "is there a cat ?"
+ ],
+ "prompt": "a {} toy that a {} is playing with"
+ },
+ {
+ "index": 651,
+ "image_id": 2381609,
+ "entity": "cat",
+ "caption": "the cat's paw is the color white",
+ "question": [
+ "is there the cat's paw ?"
+ ],
+ "prompt": "the {}'s paw is the color white"
+ },
+ {
+ "index": 652,
+ "image_id": 2381609,
+ "entity": "cat",
+ "caption": "the cat has dark eyes that are open",
+ "question": [
+ "is there the cat ?",
+ "are there dark eyes ?"
+ ],
+ "prompt": "the {} has dark eyes that are open"
+ },
+ {
+ "index": 653,
+ "image_id": 2381609,
+ "entity": "cat",
+ "caption": "the material the cat is laying on has flower images",
+ "question": [
+ "is there the material ?",
+ "is there the cat ?",
+ "are there flower images ?"
+ ],
+ "prompt": "the material the {} is laying on has flower images"
+ },
+ {
+ "index": 654,
+ "image_id": 2381609,
+ "entity": "cat",
+ "caption": "the colors of the cat's back is either brown, black, or gray",
+ "question": [
+ "are there the colors ?",
+ "is there the cat's back ?"
+ ],
+ "prompt": "the colors of the {}'s back is either brown, black, or gray"
+ },
+ {
+ "index": 655,
+ "image_id": 2381609,
+ "entity": "cat",
+ "caption": "the cat has long whiskers",
+ "question": [
+ "is there the cat ?",
+ "are there long whiskers ?"
+ ],
+ "prompt": "the {} has long whiskers"
+ },
+ {
+ "index": 656,
+ "image_id": 2381609,
+ "entity": "cat",
+ "caption": "the inside of the cat's ear is white",
+ "question": [
+ "is there the inside ?",
+ "is there the cat's ear ?"
+ ],
+ "prompt": "the inside of the {}'s ear is white"
+ },
+ {
+ "index": 657,
+ "image_id": 2381609,
+ "entity": "cat",
+ "caption": "the colors on the cat's face are black & white",
+ "question": [
+ "are there the colors ?",
+ "is there the cat's face ?"
+ ],
+ "prompt": "the colors on the {}'s face are black & white"
+ },
+ {
+ "index": 658,
+ "image_id": 2381542,
+ "entity": "cat",
+ "caption": "the cat has green or yellow eyes",
+ "question": [
+ "is there the cat ?",
+ "are there green or yellow eyes ?"
+ ],
+ "prompt": "the {} has green or yellow eyes"
+ },
+ {
+ "index": 659,
+ "image_id": 2381542,
+ "entity": "cat",
+ "caption": "A cat in the bathroom sink",
+ "question": [
+ "is there a cat ?",
+ "is there the bathroom ?"
+ ],
+ "prompt": "A {} in the bathroom sink"
+ },
+ {
+ "index": 660,
+ "image_id": 2381118,
+ "entity": "cat",
+ "caption": "cat is looking out the window ",
+ "question": [
+ "is there cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "{} is looking out the window "
+ },
+ {
+ "index": 661,
+ "image_id": 2381118,
+ "entity": "cat",
+ "caption": "cat is wearing a cat harness",
+ "question": [
+ "is there cat ?",
+ "is there a cat harness ?"
+ ],
+ "prompt": "{} is wearing a {} harness"
+ },
+ {
+ "index": 662,
+ "image_id": 2380771,
+ "entity": "cat",
+ "caption": "cat's eyes are yellow",
+ "question": [
+ "are there cat's eyes ?"
+ ],
+ "prompt": "{}'s eyes are yellow"
+ },
+ {
+ "index": 663,
+ "image_id": 2380771,
+ "entity": "cat",
+ "caption": "cat is holding remote control",
+ "question": [
+ "is there cat ?",
+ "is there remote control ?"
+ ],
+ "prompt": "{} is holding remote control"
+ },
+ {
+ "index": 664,
+ "image_id": 2380771,
+ "entity": "cat",
+ "caption": "green eyes on cat face",
+ "question": [
+ "are there green eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "green eyes on {} face"
+ },
+ {
+ "index": 665,
+ "image_id": 2380771,
+ "entity": "cat",
+ "caption": "the cats eyes are yellow",
+ "question": [
+ "are there the cats ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are yellow"
+ },
+ {
+ "index": 666,
+ "image_id": 2380771,
+ "entity": "cat",
+ "caption": "the cats paw is pink",
+ "question": [
+ "are there the cats paw ?"
+ ],
+ "prompt": "the {}s paw is pink"
+ },
+ {
+ "index": 667,
+ "image_id": 2380771,
+ "entity": "cat",
+ "caption": "A cats head and face.",
+ "question": [
+ "are there a cats ?",
+ "is there face ?"
+ ],
+ "prompt": "A {}s head and face."
+ },
+ {
+ "index": 668,
+ "image_id": 2380646,
+ "entity": "cat",
+ "caption": "red folder sticking out from under cat",
+ "question": [
+ "is there red folder ?",
+ "is there cat ?"
+ ],
+ "prompt": "red folder sticking out from under {}"
+ },
+ {
+ "index": 669,
+ "image_id": 2380324,
+ "entity": "cat",
+ "caption": "The cat is putting his paw in the glass.",
+ "question": [
+ "is there the cat ?",
+ "is there his paw ?",
+ "is there the glass ?"
+ ],
+ "prompt": "The {} is putting his paw in the glass."
+ },
+ {
+ "index": 670,
+ "image_id": 2380324,
+ "entity": "cat",
+ "caption": "The cat has two front legs.",
+ "question": [
+ "is there the cat ?",
+ "are there two front legs ?"
+ ],
+ "prompt": "The {} has two front legs."
+ },
+ {
+ "index": 671,
+ "image_id": 2380324,
+ "entity": "cat",
+ "caption": "The cat has an eye.",
+ "question": [
+ "is there the cat ?",
+ "is there an eye ?"
+ ],
+ "prompt": "The {} has an eye."
+ },
+ {
+ "index": 672,
+ "image_id": 2380324,
+ "entity": "cat",
+ "caption": "The cat has an ear.",
+ "question": [
+ "is there the cat ?",
+ "is there an ear ?"
+ ],
+ "prompt": "The {} has an ear."
+ },
+ {
+ "index": 673,
+ "image_id": 2380324,
+ "entity": "cat",
+ "caption": "the cat's paw is in the glass",
+ "question": [
+ "is there the cat's paw ?",
+ "is there the glass ?"
+ ],
+ "prompt": "the {}'s paw is in the glass"
+ },
+ {
+ "index": 674,
+ "image_id": 2380324,
+ "entity": "cat",
+ "caption": "the cat's ear is pointy",
+ "question": [
+ "is there the cat's ear ?"
+ ],
+ "prompt": "the {}'s ear is pointy"
+ },
+ {
+ "index": 675,
+ "image_id": 2380228,
+ "entity": "cat",
+ "caption": "Knife pointing at cat",
+ "question": [
+ "is there knife pointing ?",
+ "is there cat ?"
+ ],
+ "prompt": "Knife pointing at {}"
+ },
+ {
+ "index": 676,
+ "image_id": 2380228,
+ "entity": "cat",
+ "caption": "The cat's nose is on the knife",
+ "question": [
+ "is there the cat's nose ?",
+ "is there the knife ?"
+ ],
+ "prompt": "The {}'s nose is on the knife"
+ },
+ {
+ "index": 677,
+ "image_id": 2379874,
+ "entity": "cat",
+ "caption": "The cat has ears.",
+ "question": [
+ "is there the cat ?",
+ "are there ears ?"
+ ],
+ "prompt": "The {} has ears."
+ },
+ {
+ "index": 678,
+ "image_id": 2379821,
+ "entity": "cat",
+ "caption": "cat has dark legs",
+ "question": [
+ "is there cat ?",
+ "are there dark legs ?"
+ ],
+ "prompt": "{} has dark legs"
+ },
+ {
+ "index": 679,
+ "image_id": 2379821,
+ "entity": "cat",
+ "caption": "the back of the cats head",
+ "question": [
+ "is there the back ?",
+ "are there the cats ?"
+ ],
+ "prompt": "the back of the {}s head"
+ },
+ {
+ "index": 680,
+ "image_id": 2379821,
+ "entity": "cat",
+ "caption": "The cat is looking at the laptop",
+ "question": [
+ "is there the cat ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "The {} is looking at the laptop"
+ },
+ {
+ "index": 681,
+ "image_id": 2379559,
+ "entity": "cat",
+ "caption": "blanket cat is on",
+ "question": [
+ "is there blanket cat ?"
+ ],
+ "prompt": "blanket {} is on"
+ },
+ {
+ "index": 682,
+ "image_id": 2379559,
+ "entity": "cat",
+ "caption": "the cat is black and white",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is black and white"
+ },
+ {
+ "index": 683,
+ "image_id": 2379491,
+ "entity": "cat",
+ "caption": "cat is playing with a small brown object on desk",
+ "question": [
+ "is there cat ?",
+ "is there a small brown object ?",
+ "is there desk ?"
+ ],
+ "prompt": "{} is playing with a small brown object on desk"
+ },
+ {
+ "index": 684,
+ "image_id": 2379491,
+ "entity": "cat",
+ "caption": "Basket is at the back of cat.",
+ "question": [
+ "is there basket ?",
+ "is there the back ?",
+ "is there cat ?"
+ ],
+ "prompt": "Basket is at the back of {}."
+ },
+ {
+ "index": 685,
+ "image_id": 2379491,
+ "entity": "cat",
+ "caption": "Papers are besides the cat.",
+ "question": [
+ "are there papers ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Papers are besides the {}."
+ },
+ {
+ "index": 686,
+ "image_id": 2379025,
+ "entity": "cat",
+ "caption": "cat with head resting on table",
+ "question": [
+ "is there cat ?",
+ "is there head ?",
+ "is there table ?"
+ ],
+ "prompt": "{} with head resting on table"
+ },
+ {
+ "index": 687,
+ "image_id": 2378853,
+ "entity": "cat",
+ "caption": "The cat has long hair. ",
+ "question": [
+ "is there the cat ?",
+ "is there long hair ?"
+ ],
+ "prompt": "The {} has long hair. "
+ },
+ {
+ "index": 688,
+ "image_id": 2378853,
+ "entity": "cat",
+ "caption": "The cat has long hair.",
+ "question": [
+ "is there the cat ?",
+ "is there long hair ?"
+ ],
+ "prompt": "The {} has long hair."
+ },
+ {
+ "index": 689,
+ "image_id": 2378853,
+ "entity": "cat",
+ "caption": "The cat is on luggage.",
+ "question": [
+ "is there the cat ?",
+ "is there luggage ?"
+ ],
+ "prompt": "The {} is on luggage."
+ },
+ {
+ "index": 690,
+ "image_id": 2378803,
+ "entity": "cat",
+ "caption": "cat has white feet",
+ "question": [
+ "is there cat ?",
+ "are there white feet ?"
+ ],
+ "prompt": "{} has white feet"
+ },
+ {
+ "index": 691,
+ "image_id": 2378777,
+ "entity": "cat",
+ "caption": "the cat is laying on the laptop",
+ "question": [
+ "is there the cat ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "the {} is laying on the laptop"
+ },
+ {
+ "index": 692,
+ "image_id": 2378777,
+ "entity": "cat",
+ "caption": "the cat is on the table",
+ "question": [
+ "is there the cat ?",
+ "is there the table ?"
+ ],
+ "prompt": "the {} is on the table"
+ },
+ {
+ "index": 693,
+ "image_id": 2378777,
+ "entity": "cat",
+ "caption": "Light is reflecting off of the cat",
+ "question": [
+ "is there light ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Light is reflecting off of the {}"
+ },
+ {
+ "index": 694,
+ "image_id": 2378777,
+ "entity": "cat",
+ "caption": "cat is laying on the laptop ",
+ "question": [
+ "is there cat ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "{} is laying on the laptop "
+ },
+ {
+ "index": 695,
+ "image_id": 2378777,
+ "entity": "cat",
+ "caption": "the cat is on the table ",
+ "question": [
+ "is there the cat ?",
+ "is there the table ?"
+ ],
+ "prompt": "the {} is on the table "
+ },
+ {
+ "index": 696,
+ "image_id": 2378777,
+ "entity": "cat",
+ "caption": "cat has a white nose ",
+ "question": [
+ "is there cat ?",
+ "is there a white nose ?"
+ ],
+ "prompt": "{} has a white nose "
+ },
+ {
+ "index": 697,
+ "image_id": 2378767,
+ "entity": "cat",
+ "caption": "long haired white cat in bathroom sink",
+ "question": [
+ "is there haired white cat ?",
+ "is there bathroom ?"
+ ],
+ "prompt": "long haired white {} in bathroom sink"
+ },
+ {
+ "index": 698,
+ "image_id": 2378726,
+ "entity": "cat",
+ "caption": "A cat is sleeping on the couch.",
+ "question": [
+ "is there a cat ?",
+ "is there the couch ?"
+ ],
+ "prompt": "A {} is sleeping on the couch."
+ },
+ {
+ "index": 699,
+ "image_id": 2378597,
+ "entity": "cat",
+ "caption": "cat is on top of the laptop ",
+ "question": [
+ "is there cat ?",
+ "is there top ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "{} is on top of the laptop "
+ },
+ {
+ "index": 700,
+ "image_id": 2378574,
+ "entity": "cat",
+ "caption": "cat has blue eyes",
+ "question": [
+ "is there cat ?",
+ "are there blue eyes ?"
+ ],
+ "prompt": "{} has blue eyes"
+ },
+ {
+ "index": 701,
+ "image_id": 2378574,
+ "entity": "cat",
+ "caption": "the cat has eyebrows",
+ "question": [
+ "is there the cat ?",
+ "are there eyebrows ?"
+ ],
+ "prompt": "the {} has eyebrows"
+ },
+ {
+ "index": 702,
+ "image_id": 2378574,
+ "entity": "cat",
+ "caption": "cats mouth is closed",
+ "question": [
+ "are there cats ?"
+ ],
+ "prompt": "{}s mouth is closed"
+ },
+ {
+ "index": 703,
+ "image_id": 2378477,
+ "entity": "cat",
+ "caption": "tongue of cat is pink",
+ "question": [
+ "is there tongue ?",
+ "is there cat ?"
+ ],
+ "prompt": "tongue of {} is pink"
+ },
+ {
+ "index": 704,
+ "image_id": 2378347,
+ "entity": "cat",
+ "caption": "a cat is licking the toy",
+ "question": [
+ "is there a cat ?",
+ "is there the toy ?"
+ ],
+ "prompt": "a {} is licking the toy"
+ },
+ {
+ "index": 705,
+ "image_id": 2378347,
+ "entity": "cat",
+ "caption": "the cat has pink pads on its paws",
+ "question": [
+ "is there the cat ?",
+ "are there pink pads ?",
+ "are there its paws ?"
+ ],
+ "prompt": "the {} has pink pads on its paws"
+ },
+ {
+ "index": 706,
+ "image_id": 2378347,
+ "entity": "cat",
+ "caption": "The cat licks the cat toy",
+ "question": [
+ "is there the cat ?",
+ "is there the cat toy ?"
+ ],
+ "prompt": "The {} licks the {} toy"
+ },
+ {
+ "index": 707,
+ "image_id": 2378347,
+ "entity": "cat",
+ "caption": "The cat has short hair",
+ "question": [
+ "is there the cat ?",
+ "is there short hair ?"
+ ],
+ "prompt": "The {} has short hair"
+ },
+ {
+ "index": 708,
+ "image_id": 2378347,
+ "entity": "cat",
+ "caption": "cat toy is yellow and has a tag",
+ "question": [
+ "is there cat toy ?",
+ "is there a tag ?"
+ ],
+ "prompt": "{} toy is yellow and has a tag"
+ },
+ {
+ "index": 709,
+ "image_id": 2378347,
+ "entity": "cat",
+ "caption": "cat has white and pink paws",
+ "question": [
+ "is there cat ?",
+ "are there white and pink paws ?"
+ ],
+ "prompt": "{} has white and pink paws"
+ },
+ {
+ "index": 710,
+ "image_id": 2378178,
+ "entity": "cat",
+ "caption": "The cat's mouth is open",
+ "question": [
+ "is there the cat's mouth ?"
+ ],
+ "prompt": "The {}'s mouth is open"
+ },
+ {
+ "index": 711,
+ "image_id": 2378178,
+ "entity": "cat",
+ "caption": "The cat's ear is alert",
+ "question": [
+ "is there the cat's ear ?"
+ ],
+ "prompt": "The {}'s ear is alert"
+ },
+ {
+ "index": 712,
+ "image_id": 2378072,
+ "entity": "cat",
+ "caption": "Pair of cat seated facing a row of windows",
+ "question": [
+ "is there pair ?",
+ "is there cat ?",
+ "is there a row ?",
+ "are there windows ?"
+ ],
+ "prompt": "Pair of {} seated facing a row of windows"
+ },
+ {
+ "index": 713,
+ "image_id": 2377814,
+ "entity": "cat",
+ "caption": "The grass lawn behind the cat",
+ "question": [
+ "is there the grass lawn ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The grass lawn behind the {}"
+ },
+ {
+ "index": 714,
+ "image_id": 2377814,
+ "entity": "cat",
+ "caption": "The computer the cat is standing on",
+ "question": [
+ "is there the computer ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The computer the {} is standing on"
+ },
+ {
+ "index": 715,
+ "image_id": 2377724,
+ "entity": "cat",
+ "caption": "cat's tail falling across part of screen",
+ "question": [
+ "is there cat's tail ?",
+ "is there part ?",
+ "is there screen ?"
+ ],
+ "prompt": "{}'s tail falling across part of screen"
+ },
+ {
+ "index": 716,
+ "image_id": 2377724,
+ "entity": "cat",
+ "caption": "cat has light green eyes",
+ "question": [
+ "is there cat ?",
+ "are there light green eyes ?"
+ ],
+ "prompt": "{} has light green eyes"
+ },
+ {
+ "index": 717,
+ "image_id": 2377724,
+ "entity": "cat",
+ "caption": "the cat is on top of the television",
+ "question": [
+ "is there the cat ?",
+ "is there top ?",
+ "is there the television ?"
+ ],
+ "prompt": "the {} is on top of the television"
+ },
+ {
+ "index": 718,
+ "image_id": 2377697,
+ "entity": "cat",
+ "caption": "cat's eyes reflecting camera flash",
+ "question": [
+ "are there cat's eyes ?",
+ "is there camera flash ?"
+ ],
+ "prompt": "{}'s eyes reflecting camera flash"
+ },
+ {
+ "index": 719,
+ "image_id": 2377574,
+ "entity": "cat",
+ "caption": "the cat is on the laptop",
+ "question": [
+ "is there the cat ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "the {} is on the laptop"
+ },
+ {
+ "index": 720,
+ "image_id": 2377574,
+ "entity": "cat",
+ "caption": "black cat has tongue out",
+ "question": [
+ "is there black cat ?",
+ "is there tongue ?"
+ ],
+ "prompt": "black {} has tongue out"
+ },
+ {
+ "index": 721,
+ "image_id": 2377574,
+ "entity": "cat",
+ "caption": "computer has a cat on it",
+ "question": [
+ "is there computer ?",
+ "is there a cat ?"
+ ],
+ "prompt": "computer has a {} on it"
+ },
+ {
+ "index": 722,
+ "image_id": 2377434,
+ "entity": "cat",
+ "caption": "The cat's eye is green.",
+ "question": [
+ "is there the cat's eye ?"
+ ],
+ "prompt": "The {}'s eye is green."
+ },
+ {
+ "index": 723,
+ "image_id": 2377353,
+ "entity": "cat",
+ "caption": "She is holding the cat.",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "She is holding the {}."
+ },
+ {
+ "index": 724,
+ "image_id": 2376608,
+ "entity": "cat",
+ "caption": "White whiskers coming out of a cat's face. ",
+ "question": [
+ "are there white whiskers ?",
+ "is there a cat's face ?"
+ ],
+ "prompt": "White whiskers coming out of a {}'s face. "
+ },
+ {
+ "index": 725,
+ "image_id": 2376143,
+ "entity": "cat",
+ "caption": "This is a cat's nose",
+ "question": [
+ "is there a cat's nose ?"
+ ],
+ "prompt": "This is a {}'s nose"
+ },
+ {
+ "index": 726,
+ "image_id": 2376143,
+ "entity": "cat",
+ "caption": "Rightt ear of a cat",
+ "question": [
+ "is there rightt ear ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Rightt ear of a {}"
+ },
+ {
+ "index": 727,
+ "image_id": 2376143,
+ "entity": "cat",
+ "caption": "cat is lying on a blanket",
+ "question": [
+ "is there cat ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "{} is lying on a blanket"
+ },
+ {
+ "index": 728,
+ "image_id": 2376143,
+ "entity": "cat",
+ "caption": "cat has paw up in air",
+ "question": [
+ "is there cat ?",
+ "is there air ?"
+ ],
+ "prompt": "{} has paw up in air"
+ },
+ {
+ "index": 729,
+ "image_id": 2376134,
+ "entity": "cat",
+ "caption": "A dog is smelling a cat",
+ "question": [
+ "is there a dog ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A dog is smelling a {}"
+ },
+ {
+ "index": 730,
+ "image_id": 2376134,
+ "entity": "cat",
+ "caption": "An old dog is greeting the new cat",
+ "question": [
+ "is there an old dog ?",
+ "is there the new cat ?"
+ ],
+ "prompt": "An old dog is greeting the new {}"
+ },
+ {
+ "index": 731,
+ "image_id": 2376134,
+ "entity": "cat",
+ "caption": "A cat is friends with a dog",
+ "question": [
+ "is there a cat ?",
+ "are there friends ?",
+ "is there a dog ?"
+ ],
+ "prompt": "A {} is friends with a dog"
+ },
+ {
+ "index": 732,
+ "image_id": 2376134,
+ "entity": "cat",
+ "caption": "a brown and black cats head",
+ "question": [
+ "are there a brown and black cats ?"
+ ],
+ "prompt": "a brown and black {}s head"
+ },
+ {
+ "index": 733,
+ "image_id": 2376134,
+ "entity": "cat",
+ "caption": "Dog is playing with cat.",
+ "question": [
+ "is there dog ?",
+ "is there cat ?"
+ ],
+ "prompt": "Dog is playing with {}."
+ },
+ {
+ "index": 734,
+ "image_id": 2376123,
+ "entity": "cat",
+ "caption": "The cat is looking at the computer screen",
+ "question": [
+ "is there the cat ?",
+ "is there the computer screen ?"
+ ],
+ "prompt": "The {} is looking at the computer screen"
+ },
+ {
+ "index": 735,
+ "image_id": 2376123,
+ "entity": "cat",
+ "caption": "The cat's paw is on the keyboard",
+ "question": [
+ "is there the cat's paw ?",
+ "is there the keyboard ?"
+ ],
+ "prompt": "The {}'s paw is on the keyboard"
+ },
+ {
+ "index": 736,
+ "image_id": 2376123,
+ "entity": "cat",
+ "caption": "This is a leg of a cat",
+ "question": [
+ "is there a leg ?",
+ "is there a cat ?"
+ ],
+ "prompt": "This is a leg of a {}"
+ },
+ {
+ "index": 737,
+ "image_id": 2376123,
+ "entity": "cat",
+ "caption": "This is an ear of a cat",
+ "question": [
+ "is there an ear ?",
+ "is there a cat ?"
+ ],
+ "prompt": "This is an ear of a {}"
+ },
+ {
+ "index": 738,
+ "image_id": 2376007,
+ "entity": "cat",
+ "caption": "sandal that the cat is laying on",
+ "question": [
+ "is there sandal ?",
+ "is there the cat ?"
+ ],
+ "prompt": "sandal that the {} is laying on"
+ },
+ {
+ "index": 739,
+ "image_id": 2376007,
+ "entity": "cat",
+ "caption": "cat is lying on the flip flops",
+ "question": [
+ "is there cat ?",
+ "are there the flip flops ?"
+ ],
+ "prompt": "{} is lying on the flip flops"
+ },
+ {
+ "index": 740,
+ "image_id": 2376007,
+ "entity": "cat",
+ "caption": "right flip flop cat is lying on",
+ "question": [
+ "is there flip flop cat ?"
+ ],
+ "prompt": "right flip flop {} is lying on"
+ },
+ {
+ "index": 741,
+ "image_id": 2375876,
+ "entity": "cat",
+ "caption": "tail of cat is furry ",
+ "question": [
+ "is there tail ?",
+ "is there cat ?"
+ ],
+ "prompt": "tail of {} is furry "
+ },
+ {
+ "index": 742,
+ "image_id": 2375876,
+ "entity": "cat",
+ "caption": "a cat curled up in the sink",
+ "question": [
+ "is there a cat ?",
+ "is there the sink ?"
+ ],
+ "prompt": "a {} curled up in the sink"
+ },
+ {
+ "index": 743,
+ "image_id": 2375860,
+ "entity": "cat",
+ "caption": "A cat is in the picture.",
+ "question": [
+ "is there a cat ?",
+ "is there the picture ?"
+ ],
+ "prompt": "A {} is in the picture."
+ },
+ {
+ "index": 744,
+ "image_id": 2375860,
+ "entity": "cat",
+ "caption": "The cat has a pink and black nose.",
+ "question": [
+ "is there the cat ?",
+ "is there a pink and black nose ?"
+ ],
+ "prompt": "The {} has a pink and black nose."
+ },
+ {
+ "index": 745,
+ "image_id": 2375860,
+ "entity": "cat",
+ "caption": "A calico cats head",
+ "question": [
+ "are there a calico cats ?"
+ ],
+ "prompt": "A calico {}s head"
+ },
+ {
+ "index": 746,
+ "image_id": 2375860,
+ "entity": "cat",
+ "caption": "A cats left eye ",
+ "question": [
+ "are there a cats ?",
+ "is there eye ?"
+ ],
+ "prompt": "A {}s left eye "
+ },
+ {
+ "index": 747,
+ "image_id": 2375860,
+ "entity": "cat",
+ "caption": "cat's whiskers are white",
+ "question": [
+ "are there cat's whiskers ?"
+ ],
+ "prompt": "{}'s whiskers are white"
+ },
+ {
+ "index": 748,
+ "image_id": 2375860,
+ "entity": "cat",
+ "caption": "cat's back is orange",
+ "question": [
+ "is there cat's back ?"
+ ],
+ "prompt": "{}'s back is orange"
+ },
+ {
+ "index": 749,
+ "image_id": 2375860,
+ "entity": "cat",
+ "caption": "cat's ears pointed upwards",
+ "question": [
+ "are there cat's ears ?"
+ ],
+ "prompt": "{}'s ears pointed upwards"
+ },
+ {
+ "index": 750,
+ "image_id": 2375860,
+ "entity": "cat",
+ "caption": "cat's nose is 2 different colors",
+ "question": [
+ "is there cat's nose ?",
+ "are there 2 different colors ?"
+ ],
+ "prompt": "{}'s nose is 2 different colors"
+ },
+ {
+ "index": 751,
+ "image_id": 2375174,
+ "entity": "cat",
+ "caption": "cat has pink ears",
+ "question": [
+ "is there cat ?",
+ "are there pink ears ?"
+ ],
+ "prompt": "{} has pink ears"
+ },
+ {
+ "index": 752,
+ "image_id": 2375174,
+ "entity": "cat",
+ "caption": "cat has small mouth",
+ "question": [
+ "is there cat ?",
+ "is there small mouth ?"
+ ],
+ "prompt": "{} has small mouth"
+ },
+ {
+ "index": 753,
+ "image_id": 2375174,
+ "entity": "cat",
+ "caption": "cat has brown eyes",
+ "question": [
+ "is there cat ?",
+ "are there brown eyes ?"
+ ],
+ "prompt": "{} has brown eyes"
+ },
+ {
+ "index": 754,
+ "image_id": 2375174,
+ "entity": "cat",
+ "caption": "cat has white fur",
+ "question": [
+ "is there cat ?",
+ "is there white fur ?"
+ ],
+ "prompt": "{} has white fur"
+ },
+ {
+ "index": 755,
+ "image_id": 2375174,
+ "entity": "cat",
+ "caption": "floor behind cat is brown",
+ "question": [
+ "is there floor ?",
+ "is there cat ?"
+ ],
+ "prompt": "floor behind {} is brown"
+ },
+ {
+ "index": 756,
+ "image_id": 2375174,
+ "entity": "cat",
+ "caption": "The cat's face has brown spots.",
+ "question": [
+ "is there the cat's face ?",
+ "are there brown spots ?"
+ ],
+ "prompt": "The {}'s face has brown spots."
+ },
+ {
+ "index": 757,
+ "image_id": 2375064,
+ "entity": "cat",
+ "caption": "The cat has black fur",
+ "question": [
+ "is there the cat ?",
+ "is there black fur ?"
+ ],
+ "prompt": "The {} has black fur"
+ },
+ {
+ "index": 758,
+ "image_id": 2374880,
+ "entity": "cat",
+ "caption": "a cats tail",
+ "question": [
+ "are there a cats ?"
+ ],
+ "prompt": "a {}s tail"
+ },
+ {
+ "index": 759,
+ "image_id": 2374880,
+ "entity": "cat",
+ "caption": "the toy the cat is sitting on ",
+ "question": [
+ "is there the toy ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the toy the {} is sitting on "
+ },
+ {
+ "index": 760,
+ "image_id": 2374880,
+ "entity": "cat",
+ "caption": "the window the cat is sitting next to",
+ "question": [
+ "is there the window ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the window the {} is sitting next to"
+ },
+ {
+ "index": 761,
+ "image_id": 2374743,
+ "entity": "cat",
+ "caption": "The cat has a very long tail",
+ "question": [
+ "is there the cat ?",
+ "is there a very long tail ?"
+ ],
+ "prompt": "The {} has a very long tail"
+ },
+ {
+ "index": 762,
+ "image_id": 2374743,
+ "entity": "cat",
+ "caption": "chair cat is sitting on",
+ "question": [
+ "is there chair cat ?"
+ ],
+ "prompt": "chair {} is sitting on"
+ },
+ {
+ "index": 763,
+ "image_id": 2374743,
+ "entity": "cat",
+ "caption": "mirror above chair cat is sitting on",
+ "question": [
+ "is there mirror ?",
+ "is there chair cat ?"
+ ],
+ "prompt": "mirror above chair {} is sitting on"
+ },
+ {
+ "index": 764,
+ "image_id": 2374743,
+ "entity": "cat",
+ "caption": "the cat appears to be in a vehicle of some sort",
+ "question": [
+ "is there the cat ?",
+ "is there a vehicle ?",
+ "is there some sort ?"
+ ],
+ "prompt": "the {} appears to be in a vehicle of some sort"
+ },
+ {
+ "index": 765,
+ "image_id": 2374741,
+ "entity": "cat",
+ "caption": "cat is wearing a hat",
+ "question": [
+ "is there cat ?",
+ "is there a hat ?"
+ ],
+ "prompt": "{} is wearing a hat"
+ },
+ {
+ "index": 766,
+ "image_id": 2374741,
+ "entity": "cat",
+ "caption": "A cat is on a bed",
+ "question": [
+ "is there a cat ?",
+ "is there a bed ?"
+ ],
+ "prompt": "A {} is on a bed"
+ },
+ {
+ "index": 767,
+ "image_id": 2374741,
+ "entity": "cat",
+ "caption": "the cat has medium length fur",
+ "question": [
+ "is there the cat ?",
+ "is there medium length fur ?"
+ ],
+ "prompt": "the {} has medium length fur"
+ },
+ {
+ "index": 768,
+ "image_id": 2374741,
+ "entity": "cat",
+ "caption": "cat is lying on a bed",
+ "question": [
+ "is there cat ?",
+ "is there a bed ?"
+ ],
+ "prompt": "{} is lying on a bed"
+ },
+ {
+ "index": 769,
+ "image_id": 2374729,
+ "entity": "cat",
+ "caption": "a fuzzy cats tail",
+ "question": [
+ "are there a fuzzy cats ?"
+ ],
+ "prompt": "a fuzzy {}s tail"
+ },
+ {
+ "index": 770,
+ "image_id": 2374658,
+ "entity": "cat",
+ "caption": "the cat's eyes are yellow",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "the {}'s eyes are yellow"
+ },
+ {
+ "index": 771,
+ "image_id": 2374658,
+ "entity": "cat",
+ "caption": "the cat's ears are pointing forward",
+ "question": [
+ "are there the cat's ears ?"
+ ],
+ "prompt": "the {}'s ears are pointing forward"
+ },
+ {
+ "index": 772,
+ "image_id": 2374658,
+ "entity": "cat",
+ "caption": "A cats right eye",
+ "question": [
+ "are there a cats ?",
+ "is there eye ?"
+ ],
+ "prompt": "A {}s right eye"
+ },
+ {
+ "index": 773,
+ "image_id": 2374566,
+ "entity": "cat",
+ "caption": "the cat's back left paw",
+ "question": [
+ "is there the cat's back left paw ?"
+ ],
+ "prompt": "the {}'s back left paw"
+ },
+ {
+ "index": 774,
+ "image_id": 2374426,
+ "entity": "cat",
+ "caption": "cat is kissing the human",
+ "question": [
+ "is there cat ?",
+ "is there the human ?"
+ ],
+ "prompt": "{} is kissing the human"
+ },
+ {
+ "index": 775,
+ "image_id": 2374424,
+ "entity": "cat",
+ "caption": "the cat is sleeping on the bench",
+ "question": [
+ "is there the cat ?",
+ "is there the bench ?"
+ ],
+ "prompt": "the {} is sleeping on the bench"
+ },
+ {
+ "index": 776,
+ "image_id": 2374424,
+ "entity": "cat",
+ "caption": "the cat is on a wood bench",
+ "question": [
+ "is there the cat ?",
+ "is there a wood bench ?"
+ ],
+ "prompt": "the {} is on a wood bench"
+ },
+ {
+ "index": 777,
+ "image_id": 2374357,
+ "entity": "cat",
+ "caption": "cat has white stomach",
+ "question": [
+ "is there cat ?",
+ "is there white stomach ?"
+ ],
+ "prompt": "{} has white stomach"
+ },
+ {
+ "index": 778,
+ "image_id": 2374357,
+ "entity": "cat",
+ "caption": "cat is holding yellow toy",
+ "question": [
+ "is there cat ?",
+ "is there yellow toy ?"
+ ],
+ "prompt": "{} is holding yellow toy"
+ },
+ {
+ "index": 779,
+ "image_id": 2374357,
+ "entity": "cat",
+ "caption": "cat has black patches on eyes",
+ "question": [
+ "is there cat ?",
+ "are there black patches ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} has black patches on eyes"
+ },
+ {
+ "index": 780,
+ "image_id": 2374357,
+ "entity": "cat",
+ "caption": "cat lies on tan blanket",
+ "question": [
+ "is there cat ?",
+ "is there tan blanket ?"
+ ],
+ "prompt": "{} lies on tan blanket"
+ },
+ {
+ "index": 781,
+ "image_id": 2374357,
+ "entity": "cat",
+ "caption": "cat has short whiskers",
+ "question": [
+ "is there cat ?",
+ "are there short whiskers ?"
+ ],
+ "prompt": "{} has short whiskers"
+ },
+ {
+ "index": 782,
+ "image_id": 2374357,
+ "entity": "cat",
+ "caption": "the cats belly is white",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s belly is white"
+ },
+ {
+ "index": 783,
+ "image_id": 2374357,
+ "entity": "cat",
+ "caption": "a black cats ear",
+ "question": [
+ "are there a black cats ?"
+ ],
+ "prompt": "a black {}s ear"
+ },
+ {
+ "index": 784,
+ "image_id": 2374314,
+ "entity": "cat",
+ "caption": "The cat's ears are down.",
+ "question": [
+ "are there the cat's ears ?"
+ ],
+ "prompt": "The {}'s ears are down."
+ },
+ {
+ "index": 785,
+ "image_id": 2374156,
+ "entity": "cat",
+ "caption": "the cat is sitting on the desk",
+ "question": [
+ "is there the cat ?",
+ "is there the desk ?"
+ ],
+ "prompt": "the {} is sitting on the desk"
+ },
+ {
+ "index": 786,
+ "image_id": 2374156,
+ "entity": "cat",
+ "caption": "a laptop is behind the cat",
+ "question": [
+ "is there a laptop ?",
+ "is there the cat ?"
+ ],
+ "prompt": "a laptop is behind the {}"
+ },
+ {
+ "index": 787,
+ "image_id": 2374119,
+ "entity": "cat",
+ "caption": "the cat is touching a game remote",
+ "question": [
+ "is there the cat ?",
+ "is there a game ?"
+ ],
+ "prompt": "the {} is touching a game remote"
+ },
+ {
+ "index": 788,
+ "image_id": 2374119,
+ "entity": "cat",
+ "caption": "cat has grey paw",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "{} has grey paw"
+ },
+ {
+ "index": 789,
+ "image_id": 2374119,
+ "entity": "cat",
+ "caption": "cat has white patch on face",
+ "question": [
+ "is there cat ?",
+ "is there white patch ?",
+ "is there face ?"
+ ],
+ "prompt": "{} has white patch on face"
+ },
+ {
+ "index": 790,
+ "image_id": 2374119,
+ "entity": "cat",
+ "caption": "whiskers are on the cat ",
+ "question": [
+ "are there whiskers ?",
+ "is there the cat ?"
+ ],
+ "prompt": "whiskers are on the {} "
+ },
+ {
+ "index": 791,
+ "image_id": 2373968,
+ "entity": "cat",
+ "caption": "black cat drinks milk from a bottle",
+ "question": [
+ "is there black cat ?",
+ "is there milk ?",
+ "is there a bottle ?"
+ ],
+ "prompt": "black {} drinks milk from a bottle"
+ },
+ {
+ "index": 792,
+ "image_id": 2373717,
+ "entity": "cat",
+ "caption": "cat has tiny pink nose",
+ "question": [
+ "is there cat ?",
+ "is there tiny pink nose ?"
+ ],
+ "prompt": "{} has tiny pink nose"
+ },
+ {
+ "index": 793,
+ "image_id": 2373613,
+ "entity": "cat",
+ "caption": "an orange cat laying in a bathroom sink",
+ "question": [
+ "is there an orange cat ?",
+ "is there a bathroom ?"
+ ],
+ "prompt": "an orange {} laying in a bathroom sink"
+ },
+ {
+ "index": 794,
+ "image_id": 2373613,
+ "entity": "cat",
+ "caption": "cat laying in bathroom sink",
+ "question": [
+ "is there cat ?",
+ "is there bathroom ?"
+ ],
+ "prompt": "{} laying in bathroom sink"
+ },
+ {
+ "index": 795,
+ "image_id": 2373613,
+ "entity": "cat",
+ "caption": "an orange cat in a bathroom sink",
+ "question": [
+ "is there an orange cat ?",
+ "is there a bathroom ?"
+ ],
+ "prompt": "an orange {} in a bathroom sink"
+ },
+ {
+ "index": 796,
+ "image_id": 2373613,
+ "entity": "cat",
+ "caption": "White sink cat is lying in",
+ "question": [
+ "is there white sink cat ?"
+ ],
+ "prompt": "White sink {} is lying in"
+ },
+ {
+ "index": 797,
+ "image_id": 2373613,
+ "entity": "cat",
+ "caption": "A cat is sitting in the sink ",
+ "question": [
+ "is there a cat ?",
+ "is there the sink ?"
+ ],
+ "prompt": "A {} is sitting in the sink "
+ },
+ {
+ "index": 798,
+ "image_id": 2373601,
+ "entity": "cat",
+ "caption": "A cat has its eyes closed",
+ "question": [
+ "is there a cat ?",
+ "are there its eyes ?"
+ ],
+ "prompt": "A {} has its eyes closed"
+ },
+ {
+ "index": 799,
+ "image_id": 2373601,
+ "entity": "cat",
+ "caption": "A cat is sleeping next to a computer",
+ "question": [
+ "is there a cat ?",
+ "is there a computer ?"
+ ],
+ "prompt": "A {} is sleeping next to a computer"
+ },
+ {
+ "index": 800,
+ "image_id": 2373601,
+ "entity": "cat",
+ "caption": "A cat is next to a computer mouse",
+ "question": [
+ "is there a cat ?",
+ "is there a computer mouse ?"
+ ],
+ "prompt": "A {} is next to a computer mouse"
+ },
+ {
+ "index": 801,
+ "image_id": 2373601,
+ "entity": "cat",
+ "caption": "A cat is sleeping next to a computer mouse",
+ "question": [
+ "is there a cat ?",
+ "is there a computer mouse ?"
+ ],
+ "prompt": "A {} is sleeping next to a computer mouse"
+ },
+ {
+ "index": 802,
+ "image_id": 2373578,
+ "entity": "cat",
+ "caption": "two cats are near a window sill",
+ "question": [
+ "are there two cats ?",
+ "is there a window sill ?"
+ ],
+ "prompt": "two {}s are near a window sill"
+ },
+ {
+ "index": 803,
+ "image_id": 2373359,
+ "entity": "cat",
+ "caption": "eyes of cat are closed",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "eyes of {} are closed"
+ },
+ {
+ "index": 804,
+ "image_id": 2373359,
+ "entity": "cat",
+ "caption": "cat is on a pink surface",
+ "question": [
+ "is there cat ?",
+ "is there a pink surface ?"
+ ],
+ "prompt": "{} is on a pink surface"
+ },
+ {
+ "index": 805,
+ "image_id": 2373359,
+ "entity": "cat",
+ "caption": "cat's eyes closed",
+ "question": [
+ "are there cat's eyes ?"
+ ],
+ "prompt": "{}'s eyes closed"
+ },
+ {
+ "index": 806,
+ "image_id": 2373010,
+ "entity": "cat",
+ "caption": "grey striped cat on bench",
+ "question": [
+ "is there grey striped cat ?",
+ "is there bench ?"
+ ],
+ "prompt": "grey striped {} on bench"
+ },
+ {
+ "index": 807,
+ "image_id": 2373010,
+ "entity": "cat",
+ "caption": "the wooden bench the cat is laying on",
+ "question": [
+ "is there the wooden bench ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the wooden bench the {} is laying on"
+ },
+ {
+ "index": 808,
+ "image_id": 2373010,
+ "entity": "cat",
+ "caption": "the cat has black stripes",
+ "question": [
+ "is there the cat ?",
+ "are there black stripes ?"
+ ],
+ "prompt": "the {} has black stripes"
+ },
+ {
+ "index": 809,
+ "image_id": 2373001,
+ "entity": "cat",
+ "caption": "black cat drinking from toilet",
+ "question": [
+ "is there black cat ?",
+ "is there toilet ?"
+ ],
+ "prompt": "black {} drinking from toilet"
+ },
+ {
+ "index": 810,
+ "image_id": 2373001,
+ "entity": "cat",
+ "caption": "A cat is looking in the toilet",
+ "question": [
+ "is there a cat ?",
+ "is there the toilet ?"
+ ],
+ "prompt": "A {} is looking in the toilet"
+ },
+ {
+ "index": 811,
+ "image_id": 2372701,
+ "entity": "cat",
+ "caption": "black and white cat laying down",
+ "question": [
+ "is there black and white cat ?"
+ ],
+ "prompt": "black and white {} laying down"
+ },
+ {
+ "index": 812,
+ "image_id": 2372459,
+ "entity": "cat",
+ "caption": "a cat curled up on a desk ",
+ "question": [
+ "is there a cat ?",
+ "is there a desk ?"
+ ],
+ "prompt": "a {} curled up on a desk "
+ },
+ {
+ "index": 813,
+ "image_id": 2372296,
+ "entity": "cat",
+ "caption": "cat is next to sink",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "{} is next to sink"
+ },
+ {
+ "index": 814,
+ "image_id": 2372296,
+ "entity": "cat",
+ "caption": "cat has brown ears",
+ "question": [
+ "is there cat ?",
+ "are there brown ears ?"
+ ],
+ "prompt": "{} has brown ears"
+ },
+ {
+ "index": 815,
+ "image_id": 2372296,
+ "entity": "cat",
+ "caption": "cat has dark brown nose",
+ "question": [
+ "is there cat ?",
+ "is there dark brown nose ?"
+ ],
+ "prompt": "{} has dark brown nose"
+ },
+ {
+ "index": 816,
+ "image_id": 2372296,
+ "entity": "cat",
+ "caption": "cat has dark brown paws",
+ "question": [
+ "is there cat ?",
+ "are there dark brown paws ?"
+ ],
+ "prompt": "{} has dark brown paws"
+ },
+ {
+ "index": 817,
+ "image_id": 2372296,
+ "entity": "cat",
+ "caption": "sink near cat is white",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "sink near {} is white"
+ },
+ {
+ "index": 818,
+ "image_id": 2372296,
+ "entity": "cat",
+ "caption": "The cat has one paw on the sink",
+ "question": [
+ "is there the cat ?",
+ "is there one paw ?",
+ "is there the sink ?"
+ ],
+ "prompt": "The {} has one paw on the sink"
+ },
+ {
+ "index": 819,
+ "image_id": 2372296,
+ "entity": "cat",
+ "caption": "The cat is standing on its hind legs",
+ "question": [
+ "is there the cat ?",
+ "are there its hind legs ?"
+ ],
+ "prompt": "The {} is standing on its hind legs"
+ },
+ {
+ "index": 820,
+ "image_id": 2372277,
+ "entity": "cat",
+ "caption": "cat is on table",
+ "question": [
+ "is there cat ?",
+ "is there table ?"
+ ],
+ "prompt": "{} is on table"
+ },
+ {
+ "index": 821,
+ "image_id": 2372277,
+ "entity": "cat",
+ "caption": "cat sits on watch",
+ "question": [
+ "is there cat ?",
+ "is there watch ?"
+ ],
+ "prompt": "{} sits on watch"
+ },
+ {
+ "index": 822,
+ "image_id": 2372277,
+ "entity": "cat",
+ "caption": "cat has grey ears",
+ "question": [
+ "is there cat ?",
+ "are there grey ears ?"
+ ],
+ "prompt": "{} has grey ears"
+ },
+ {
+ "index": 823,
+ "image_id": 2372277,
+ "entity": "cat",
+ "caption": "cat sits on paper",
+ "question": [
+ "is there cat ?",
+ "is there paper ?"
+ ],
+ "prompt": "{} sits on paper"
+ },
+ {
+ "index": 824,
+ "image_id": 2372277,
+ "entity": "cat",
+ "caption": "A cat is sitting on a watch and a sheet of paper.",
+ "question": [
+ "is there a cat ?",
+ "is there a watch ?",
+ "is there a sheet ?",
+ "is there paper ?"
+ ],
+ "prompt": "A {} is sitting on a watch and a sheet of paper."
+ },
+ {
+ "index": 825,
+ "image_id": 2372277,
+ "entity": "cat",
+ "caption": "cat sits on a desk",
+ "question": [
+ "is there cat ?",
+ "is there a desk ?"
+ ],
+ "prompt": "{} sits on a desk"
+ },
+ {
+ "index": 826,
+ "image_id": 2372277,
+ "entity": "cat",
+ "caption": "the whiskers growing from the cat's face",
+ "question": [
+ "are there the whiskers ?",
+ "is there the cat's face ?"
+ ],
+ "prompt": "the whiskers growing from the {}'s face"
+ },
+ {
+ "index": 827,
+ "image_id": 2372160,
+ "entity": "cat",
+ "caption": "this is an ear of a cat",
+ "question": [
+ "is there an ear ?",
+ "is there a cat ?"
+ ],
+ "prompt": "this is an ear of a {}"
+ },
+ {
+ "index": 828,
+ "image_id": 2372160,
+ "entity": "cat",
+ "caption": "this is an eye of a cat",
+ "question": [
+ "is there an eye ?",
+ "is there a cat ?"
+ ],
+ "prompt": "this is an eye of a {}"
+ },
+ {
+ "index": 829,
+ "image_id": 2371950,
+ "entity": "cat",
+ "caption": "the cat is in a car",
+ "question": [
+ "is there the cat ?",
+ "is there a car ?"
+ ],
+ "prompt": "the {} is in a car"
+ },
+ {
+ "index": 830,
+ "image_id": 2371950,
+ "entity": "cat",
+ "caption": "the cat looks out the window",
+ "question": [
+ "is there the cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} looks out the window"
+ },
+ {
+ "index": 831,
+ "image_id": 2371950,
+ "entity": "cat",
+ "caption": "the cat is in the back seat",
+ "question": [
+ "is there the cat ?",
+ "is there the back seat ?"
+ ],
+ "prompt": "the {} is in the back seat"
+ },
+ {
+ "index": 832,
+ "image_id": 2371538,
+ "entity": "cat",
+ "caption": "silvery sheen on cat's back",
+ "question": [
+ "is there silvery sheen ?",
+ "is there cat's back ?"
+ ],
+ "prompt": "silvery sheen on {}'s back"
+ },
+ {
+ "index": 833,
+ "image_id": 2371517,
+ "entity": "cat",
+ "caption": "blanket the cat is sleeping on",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "blanket the {} is sleeping on"
+ },
+ {
+ "index": 834,
+ "image_id": 2371517,
+ "entity": "cat",
+ "caption": "the cats tail",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s tail"
+ },
+ {
+ "index": 835,
+ "image_id": 2371517,
+ "entity": "cat",
+ "caption": "cat tail curving toward leg",
+ "question": [
+ "is there cat tail ?",
+ "is there leg ?"
+ ],
+ "prompt": "{} tail curving toward leg"
+ },
+ {
+ "index": 836,
+ "image_id": 2371517,
+ "entity": "cat",
+ "caption": "the head of a cat that is asleep",
+ "question": [
+ "is there the head ?",
+ "is there a cat ?"
+ ],
+ "prompt": "the head of a {} that is asleep"
+ },
+ {
+ "index": 837,
+ "image_id": 2371396,
+ "entity": "cat",
+ "caption": "these are the cats eyes",
+ "question": [
+ "are there the cats ?",
+ "are there eyes ?"
+ ],
+ "prompt": "these are the {}s eyes"
+ },
+ {
+ "index": 838,
+ "image_id": 2371396,
+ "entity": "cat",
+ "caption": "the cats eyes are two different colors",
+ "question": [
+ "are there the cats ?",
+ "are there eyes ?",
+ "are there two different colors ?"
+ ],
+ "prompt": "the {}s eyes are two different colors"
+ },
+ {
+ "index": 839,
+ "image_id": 2371396,
+ "entity": "cat",
+ "caption": "this is the cats nose and mouth",
+ "question": [
+ "are there the cats nose ?",
+ "is there mouth ?"
+ ],
+ "prompt": "this is the {}s nose and mouth"
+ },
+ {
+ "index": 840,
+ "image_id": 2371271,
+ "entity": "cat",
+ "caption": "The cat is looking up.",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} is looking up."
+ },
+ {
+ "index": 841,
+ "image_id": 2371271,
+ "entity": "cat",
+ "caption": "the cat is loking up",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is loking up"
+ },
+ {
+ "index": 842,
+ "image_id": 2371240,
+ "entity": "cat",
+ "caption": "the stripes of a cats fur",
+ "question": [
+ "are there the stripes ?",
+ "are there a cats ?"
+ ],
+ "prompt": "the stripes of a {}s fur"
+ },
+ {
+ "index": 843,
+ "image_id": 2371162,
+ "entity": "cat",
+ "caption": "The cat's hanging pink collar pendant",
+ "question": [
+ "is there the cat's hanging pink collar pendant ?"
+ ],
+ "prompt": "The {}'s hanging pink collar pendant"
+ },
+ {
+ "index": 844,
+ "image_id": 2371084,
+ "entity": "cat",
+ "caption": "Someone is holding the cat.",
+ "question": [
+ "is there someone ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Someone is holding the {}."
+ },
+ {
+ "index": 845,
+ "image_id": 2371084,
+ "entity": "cat",
+ "caption": "the cat is looking out the window",
+ "question": [
+ "is there the cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is looking out the window"
+ },
+ {
+ "index": 846,
+ "image_id": 2371082,
+ "entity": "cat",
+ "caption": "\"A cat is laying in the bathroom sink\"",
+ "question": [
+ "is there a cat ?",
+ "is there the bathroom ?"
+ ],
+ "prompt": "\"A {} is laying in the bathroom sink\""
+ },
+ {
+ "index": 847,
+ "image_id": 2371082,
+ "entity": "cat",
+ "caption": "The green left eye of the cat",
+ "question": [
+ "is there the green left eye ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The green left eye of the {}"
+ },
+ {
+ "index": 848,
+ "image_id": 2370793,
+ "entity": "cat",
+ "caption": "cat is wearing red collar",
+ "question": [
+ "is there cat ?",
+ "is there red collar ?"
+ ],
+ "prompt": "{} is wearing red collar"
+ },
+ {
+ "index": 849,
+ "image_id": 2370793,
+ "entity": "cat",
+ "caption": "The yellow cat has a white paw",
+ "question": [
+ "is there the yellow cat ?",
+ "is there a white paw ?"
+ ],
+ "prompt": "The yellow {} has a white paw"
+ },
+ {
+ "index": 850,
+ "image_id": 2370793,
+ "entity": "cat",
+ "caption": "Face of cat submerged into shoe",
+ "question": [
+ "is there face ?",
+ "is there cat ?",
+ "is there shoe ?"
+ ],
+ "prompt": "Face of {} submerged into shoe"
+ },
+ {
+ "index": 851,
+ "image_id": 2370516,
+ "entity": "cat",
+ "caption": "cat is wondering why there is a shoe in its face",
+ "question": [
+ "is there cat ?",
+ "is there a shoe ?",
+ "is there its face ?"
+ ],
+ "prompt": "{} is wondering why there is a shoe in its face"
+ },
+ {
+ "index": 852,
+ "image_id": 2370492,
+ "entity": "cat",
+ "caption": "cat has a white chest",
+ "question": [
+ "is there cat ?",
+ "is there a white chest ?"
+ ],
+ "prompt": "{} has a white chest"
+ },
+ {
+ "index": 853,
+ "image_id": 2370492,
+ "entity": "cat",
+ "caption": "cat is on the desk",
+ "question": [
+ "is there cat ?",
+ "is there the desk ?"
+ ],
+ "prompt": "{} is on the desk"
+ },
+ {
+ "index": 854,
+ "image_id": 2370492,
+ "entity": "cat",
+ "caption": "white hair on cats chest",
+ "question": [
+ "is there white hair ?",
+ "are there cats ?"
+ ],
+ "prompt": "white hair on {}s chest"
+ },
+ {
+ "index": 855,
+ "image_id": 2370479,
+ "entity": "cat",
+ "caption": "cat has light ears",
+ "question": [
+ "is there cat ?",
+ "are there light ears ?"
+ ],
+ "prompt": "{} has light ears"
+ },
+ {
+ "index": 856,
+ "image_id": 2370479,
+ "entity": "cat",
+ "caption": "cat has dark eyes",
+ "question": [
+ "is there cat ?",
+ "are there dark eyes ?"
+ ],
+ "prompt": "{} has dark eyes"
+ },
+ {
+ "index": 857,
+ "image_id": 2370479,
+ "entity": "cat",
+ "caption": "cat has dark nose",
+ "question": [
+ "is there cat ?",
+ "is there dark nose ?"
+ ],
+ "prompt": "{} has dark nose"
+ },
+ {
+ "index": 858,
+ "image_id": 2370479,
+ "entity": "cat",
+ "caption": "cat has light paws",
+ "question": [
+ "is there cat ?",
+ "are there light paws ?"
+ ],
+ "prompt": "{} has light paws"
+ },
+ {
+ "index": 859,
+ "image_id": 2370479,
+ "entity": "cat",
+ "caption": "the cat is on a suitcase",
+ "question": [
+ "is there the cat ?",
+ "is there a suitcase ?"
+ ],
+ "prompt": "the {} is on a suitcase"
+ },
+ {
+ "index": 860,
+ "image_id": 2370459,
+ "entity": "cat",
+ "caption": "right cat ear ",
+ "question": [
+ "is there right cat ?"
+ ],
+ "prompt": "right {} ear "
+ },
+ {
+ "index": 861,
+ "image_id": 2370459,
+ "entity": "cat",
+ "caption": "cat has stripes",
+ "question": [
+ "is there cat ?",
+ "are there stripes ?"
+ ],
+ "prompt": "{} has stripes"
+ },
+ {
+ "index": 862,
+ "image_id": 2370459,
+ "entity": "cat",
+ "caption": "cat has hair in it's ear",
+ "question": [
+ "is there cat ?",
+ "is there hair ?"
+ ],
+ "prompt": "{} has hair in it's ear"
+ },
+ {
+ "index": 863,
+ "image_id": 2370459,
+ "entity": "cat",
+ "caption": "dark grey streaks near cat's eyes",
+ "question": [
+ "are there dark grey streaks ?",
+ "are there cat's eyes ?"
+ ],
+ "prompt": "dark grey streaks near {}'s eyes"
+ },
+ {
+ "index": 864,
+ "image_id": 2370246,
+ "entity": "cat",
+ "caption": "the cat is lying on the car",
+ "question": [
+ "is there the cat ?",
+ "is there the car ?"
+ ],
+ "prompt": "the {} is lying on the car"
+ },
+ {
+ "index": 865,
+ "image_id": 2370187,
+ "entity": "cat",
+ "caption": "cat has orange ears",
+ "question": [
+ "is there cat ?",
+ "are there orange ears ?"
+ ],
+ "prompt": "{} has orange ears"
+ },
+ {
+ "index": 866,
+ "image_id": 2370187,
+ "entity": "cat",
+ "caption": "cat has orange tail",
+ "question": [
+ "is there cat ?",
+ "is there orange tail ?"
+ ],
+ "prompt": "{} has orange tail"
+ },
+ {
+ "index": 867,
+ "image_id": 2370187,
+ "entity": "cat",
+ "caption": "Right ear of cat is also orange ",
+ "question": [
+ "is there ear ?",
+ "is there cat ?"
+ ],
+ "prompt": "Right ear of {} is also orange "
+ },
+ {
+ "index": 868,
+ "image_id": 2369867,
+ "entity": "cat",
+ "caption": "The cat has gray fur",
+ "question": [
+ "is there the cat ?",
+ "is there gray fur ?"
+ ],
+ "prompt": "The {} has gray fur"
+ },
+ {
+ "index": 869,
+ "image_id": 2369759,
+ "entity": "cat",
+ "caption": "the cats paw is up against the mirror",
+ "question": [
+ "are there the cats paw ?",
+ "is there the mirror ?"
+ ],
+ "prompt": "the {}s paw is up against the mirror"
+ },
+ {
+ "index": 870,
+ "image_id": 2369759,
+ "entity": "cat",
+ "caption": "a toy cat is on top of a container",
+ "question": [
+ "is there a toy cat ?",
+ "is there top ?",
+ "is there a container ?"
+ ],
+ "prompt": "a toy {} is on top of a container"
+ },
+ {
+ "index": 871,
+ "image_id": 2369466,
+ "entity": "cat",
+ "caption": "orange striped cat",
+ "question": [
+ "is there orange striped cat ?"
+ ],
+ "prompt": "orange striped {}"
+ },
+ {
+ "index": 872,
+ "image_id": 2369466,
+ "entity": "cat",
+ "caption": "orange and white cat laying down",
+ "question": [
+ "is there orange and white cat ?"
+ ],
+ "prompt": "orange and white {} laying down"
+ },
+ {
+ "index": 873,
+ "image_id": 2369280,
+ "entity": "cat",
+ "caption": "The cat has his head down",
+ "question": [
+ "is there the cat ?",
+ "is there his head ?"
+ ],
+ "prompt": "The {} has his head down"
+ },
+ {
+ "index": 874,
+ "image_id": 2369145,
+ "entity": "cat",
+ "caption": "The cat is next to a person wearing Puma shoes.",
+ "question": [
+ "is there the cat ?",
+ "is there a person ?",
+ "are there puma shoes ?"
+ ],
+ "prompt": "The {} is next to a person wearing Puma shoes."
+ },
+ {
+ "index": 875,
+ "image_id": 2369145,
+ "entity": "cat",
+ "caption": "The cat is next to the person wearing jeans.",
+ "question": [
+ "is there the cat ?",
+ "is there the person ?",
+ "are there jeans ?"
+ ],
+ "prompt": "The {} is next to the person wearing jeans."
+ },
+ {
+ "index": 876,
+ "image_id": 2369098,
+ "entity": "cat",
+ "caption": "The cat is playing with the shoe on the floor ",
+ "question": [
+ "is there the cat ?",
+ "is there the shoe ?",
+ "is there the floor ?"
+ ],
+ "prompt": "The {} is playing with the shoe on the floor "
+ },
+ {
+ "index": 877,
+ "image_id": 2368746,
+ "entity": "cat",
+ "caption": "The cat is black.",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} is black."
+ },
+ {
+ "index": 878,
+ "image_id": 2368746,
+ "entity": "cat",
+ "caption": "Black cat sleeping",
+ "question": [
+ "is there black cat ?"
+ ],
+ "prompt": "Black {} sleeping"
+ },
+ {
+ "index": 879,
+ "image_id": 2368302,
+ "entity": "cat",
+ "caption": "cat has gold eyes",
+ "question": [
+ "is there cat ?",
+ "are there gold eyes ?"
+ ],
+ "prompt": "{} has gold eyes"
+ },
+ {
+ "index": 880,
+ "image_id": 2368302,
+ "entity": "cat",
+ "caption": "cat has white neck",
+ "question": [
+ "is there cat ?",
+ "is there white neck ?"
+ ],
+ "prompt": "{} has white neck"
+ },
+ {
+ "index": 881,
+ "image_id": 2368302,
+ "entity": "cat",
+ "caption": "The cat is laying beside a stuffed animal",
+ "question": [
+ "is there the cat ?",
+ "is there a stuffed animal ?"
+ ],
+ "prompt": "The {} is laying beside a stuffed animal"
+ },
+ {
+ "index": 882,
+ "image_id": 2368302,
+ "entity": "cat",
+ "caption": "The cats eyes look yellow and green",
+ "question": [
+ "are there the cats ?",
+ "are there eyes ?"
+ ],
+ "prompt": "The {}s eyes look yellow and green"
+ },
+ {
+ "index": 883,
+ "image_id": 2368302,
+ "entity": "cat",
+ "caption": "The cats ears are black",
+ "question": [
+ "are there the cats ears ?"
+ ],
+ "prompt": "The {}s ears are black"
+ },
+ {
+ "index": 884,
+ "image_id": 2368302,
+ "entity": "cat",
+ "caption": "The cats nose is pink with white fur",
+ "question": [
+ "are there the cats nose ?",
+ "is there white fur ?"
+ ],
+ "prompt": "The {}s nose is pink with white fur"
+ },
+ {
+ "index": 885,
+ "image_id": 2368302,
+ "entity": "cat",
+ "caption": "cat has green pupils",
+ "question": [
+ "is there cat ?",
+ "are there green pupils ?"
+ ],
+ "prompt": "{} has green pupils"
+ },
+ {
+ "index": 886,
+ "image_id": 2368302,
+ "entity": "cat",
+ "caption": "eyes of cat are green and yellow",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "eyes of {} are green and yellow"
+ },
+ {
+ "index": 887,
+ "image_id": 2368164,
+ "entity": "cat",
+ "caption": "the cat is sniffing a shoe",
+ "question": [
+ "is there the cat ?",
+ "is there a shoe ?"
+ ],
+ "prompt": "the {} is sniffing a shoe"
+ },
+ {
+ "index": 888,
+ "image_id": 2368164,
+ "entity": "cat",
+ "caption": "the cat is playing with the sneaker",
+ "question": [
+ "is there the cat ?",
+ "is there the sneaker ?"
+ ],
+ "prompt": "the {} is playing with the sneaker"
+ },
+ {
+ "index": 889,
+ "image_id": 2367693,
+ "entity": "cat",
+ "caption": "cat's head is upside down",
+ "question": [
+ "is there cat's head ?"
+ ],
+ "prompt": "{}'s head is upside down"
+ },
+ {
+ "index": 890,
+ "image_id": 2367693,
+ "entity": "cat",
+ "caption": "the cats nose",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s nose"
+ },
+ {
+ "index": 891,
+ "image_id": 2367693,
+ "entity": "cat",
+ "caption": "the cats fangs on the banana",
+ "question": [
+ "are there the cats ?",
+ "is there the banana ?"
+ ],
+ "prompt": "the {}s fangs on the banana"
+ },
+ {
+ "index": 892,
+ "image_id": 2367693,
+ "entity": "cat",
+ "caption": "the cats right arm over the banana",
+ "question": [
+ "are there the cats ?",
+ "is there right arm ?",
+ "is there the banana ?"
+ ],
+ "prompt": "the {}s right arm over the banana"
+ },
+ {
+ "index": 893,
+ "image_id": 2367693,
+ "entity": "cat",
+ "caption": "the cats head tilted upside down",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s head tilted upside down"
+ },
+ {
+ "index": 894,
+ "image_id": 2367588,
+ "entity": "cat",
+ "caption": "cat is laying on the bench",
+ "question": [
+ "is there cat ?",
+ "is there the bench ?"
+ ],
+ "prompt": "{} is laying on the bench"
+ },
+ {
+ "index": 895,
+ "image_id": 2367588,
+ "entity": "cat",
+ "caption": "cat is resting on the bench",
+ "question": [
+ "is there cat ?",
+ "is there the bench ?"
+ ],
+ "prompt": "{} is resting on the bench"
+ },
+ {
+ "index": 896,
+ "image_id": 2367588,
+ "entity": "cat",
+ "caption": "A cat is sitting on a bench",
+ "question": [
+ "is there a cat ?",
+ "is there a bench ?"
+ ],
+ "prompt": "A {} is sitting on a bench"
+ },
+ {
+ "index": 897,
+ "image_id": 2367588,
+ "entity": "cat",
+ "caption": "The cat is sitting outside",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} is sitting outside"
+ },
+ {
+ "index": 898,
+ "image_id": 2367295,
+ "entity": "cat",
+ "caption": "The cat is drinking some milk",
+ "question": [
+ "is there the cat ?",
+ "is there some milk ?"
+ ],
+ "prompt": "The {} is drinking some milk"
+ },
+ {
+ "index": 899,
+ "image_id": 2367295,
+ "entity": "cat",
+ "caption": "The cat is close to a candle",
+ "question": [
+ "is there the cat ?",
+ "is there a candle ?"
+ ],
+ "prompt": "The {} is close to a candle"
+ },
+ {
+ "index": 900,
+ "image_id": 2367085,
+ "entity": "cat",
+ "caption": "this is the cat's eyes",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "this is the {}'s eyes"
+ },
+ {
+ "index": 901,
+ "image_id": 2367085,
+ "entity": "cat",
+ "caption": "the cat's nose is black",
+ "question": [
+ "is there the cat's nose ?"
+ ],
+ "prompt": "the {}'s nose is black"
+ },
+ {
+ "index": 902,
+ "image_id": 2367085,
+ "entity": "cat",
+ "caption": "the cat's ears are pointy",
+ "question": [
+ "are there the cat's ears ?"
+ ],
+ "prompt": "the {}'s ears are pointy"
+ },
+ {
+ "index": 903,
+ "image_id": 2367085,
+ "entity": "cat",
+ "caption": "the cat's hair is fuzzy",
+ "question": [
+ "is there the cat's hair ?"
+ ],
+ "prompt": "the {}'s hair is fuzzy"
+ },
+ {
+ "index": 904,
+ "image_id": 2367085,
+ "entity": "cat",
+ "caption": "this is the cat's mouth",
+ "question": [
+ "is there the cat's mouth ?"
+ ],
+ "prompt": "this is the {}'s mouth"
+ },
+ {
+ "index": 905,
+ "image_id": 2366580,
+ "entity": "cat",
+ "caption": "a person is touching the cat",
+ "question": [
+ "is there a person ?",
+ "is there the cat ?"
+ ],
+ "prompt": "a person is touching the {}"
+ },
+ {
+ "index": 906,
+ "image_id": 2366580,
+ "entity": "cat",
+ "caption": "a person's hand touching a cat",
+ "question": [
+ "is there a person's hand ?",
+ "is there a cat ?"
+ ],
+ "prompt": "a person's hand touching a {}"
+ },
+ {
+ "index": 907,
+ "image_id": 2366580,
+ "entity": "cat",
+ "caption": "The cat has orange fur",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} has orange fur"
+ },
+ {
+ "index": 908,
+ "image_id": 2366429,
+ "entity": "cat",
+ "caption": "A cat hides between two curtains",
+ "question": [
+ "is there a cat ?",
+ "are there two curtains ?"
+ ],
+ "prompt": "A {} hides between two curtains"
+ },
+ {
+ "index": 909,
+ "image_id": 2366429,
+ "entity": "cat",
+ "caption": "The iris of cat's eye is orange",
+ "question": [
+ "is there the iris ?",
+ "is there cat's eye ?"
+ ],
+ "prompt": "The iris of {}'s eye is orange"
+ },
+ {
+ "index": 910,
+ "image_id": 2366139,
+ "entity": "cat",
+ "caption": "light reflection is on the cat ",
+ "question": [
+ "is there light reflection ?",
+ "is there the cat ?"
+ ],
+ "prompt": "light reflection is on the {} "
+ },
+ {
+ "index": 911,
+ "image_id": 2366139,
+ "entity": "cat",
+ "caption": "a cat is sleeping on a chair",
+ "question": [
+ "is there a cat ?",
+ "is there a chair ?"
+ ],
+ "prompt": "a {} is sleeping on a chair"
+ },
+ {
+ "index": 912,
+ "image_id": 2366139,
+ "entity": "cat",
+ "caption": "the cat has his eyes closed",
+ "question": [
+ "is there the cat ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "the {} has his eyes closed"
+ },
+ {
+ "index": 913,
+ "image_id": 2366139,
+ "entity": "cat",
+ "caption": "the cat is on a cushion",
+ "question": [
+ "is there the cat ?",
+ "is there a cushion ?"
+ ],
+ "prompt": "the {} is on a cushion"
+ },
+ {
+ "index": 914,
+ "image_id": 2366139,
+ "entity": "cat",
+ "caption": "the cushion is below the cat",
+ "question": [
+ "is there the cushion ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the cushion is below the {}"
+ },
+ {
+ "index": 915,
+ "image_id": 2366139,
+ "entity": "cat",
+ "caption": "the cat has brown and black patches",
+ "question": [
+ "is there the cat ?",
+ "are there brown and black patches ?"
+ ],
+ "prompt": "the {} has brown and black patches"
+ },
+ {
+ "index": 916,
+ "image_id": 2366139,
+ "entity": "cat",
+ "caption": "the cat is on a chair",
+ "question": [
+ "is there the cat ?",
+ "is there a chair ?"
+ ],
+ "prompt": "the {} is on a chair"
+ },
+ {
+ "index": 917,
+ "image_id": 2366139,
+ "entity": "cat",
+ "caption": "the cat's tail is hanging from the side",
+ "question": [
+ "is there the cat's tail ?",
+ "is there the side ?"
+ ],
+ "prompt": "the {}'s tail is hanging from the side"
+ },
+ {
+ "index": 918,
+ "image_id": 2365930,
+ "entity": "cat",
+ "caption": "A cat is next to a computer",
+ "question": [
+ "is there a cat ?",
+ "is there a computer ?"
+ ],
+ "prompt": "A {} is next to a computer"
+ },
+ {
+ "index": 919,
+ "image_id": 2365930,
+ "entity": "cat",
+ "caption": "A cat is on the table",
+ "question": [
+ "is there a cat ?",
+ "is there the table ?"
+ ],
+ "prompt": "A {} is on the table"
+ },
+ {
+ "index": 920,
+ "image_id": 2365930,
+ "entity": "cat",
+ "caption": "The cat is drinking from the cup",
+ "question": [
+ "is there the cat ?",
+ "is there the cup ?"
+ ],
+ "prompt": "The {} is drinking from the cup"
+ },
+ {
+ "index": 921,
+ "image_id": 2365930,
+ "entity": "cat",
+ "caption": "The cat is enjoying the day",
+ "question": [
+ "is there the cat ?",
+ "is there the day ?"
+ ],
+ "prompt": "The {} is enjoying the day"
+ },
+ {
+ "index": 922,
+ "image_id": 2365930,
+ "entity": "cat",
+ "caption": "The cat likes to drink coffee",
+ "question": [
+ "is there the cat ?",
+ "is there coffee ?"
+ ],
+ "prompt": "The {} likes to drink coffee"
+ },
+ {
+ "index": 923,
+ "image_id": 2365926,
+ "entity": "cat",
+ "caption": "the pupils of the cat is black",
+ "question": [
+ "are there the pupils ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the pupils of the {} is black"
+ },
+ {
+ "index": 924,
+ "image_id": 2365700,
+ "entity": "cat",
+ "caption": "The cat's face is black and white.",
+ "question": [
+ "is there the cat's face ?"
+ ],
+ "prompt": "The {}'s face is black and white."
+ },
+ {
+ "index": 925,
+ "image_id": 2365700,
+ "entity": "cat",
+ "caption": "The cat's eye's are green.",
+ "question": [
+ "is there the cat's eye ?"
+ ],
+ "prompt": "The {}'s eye's are green."
+ },
+ {
+ "index": 926,
+ "image_id": 2365700,
+ "entity": "cat",
+ "caption": "The cat's nose is black and white.",
+ "question": [
+ "is there the cat's nose ?"
+ ],
+ "prompt": "The {}'s nose is black and white."
+ },
+ {
+ "index": 927,
+ "image_id": 2365550,
+ "entity": "cat",
+ "caption": "mouth of the cat is closed",
+ "question": [
+ "is there mouth ?",
+ "is there the cat ?"
+ ],
+ "prompt": "mouth of the {} is closed"
+ },
+ {
+ "index": 928,
+ "image_id": 2365550,
+ "entity": "cat",
+ "caption": "eyes of cat are green",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "eyes of {} are green"
+ },
+ {
+ "index": 929,
+ "image_id": 2365550,
+ "entity": "cat",
+ "caption": "eyes of cat are open",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "eyes of {} are open"
+ },
+ {
+ "index": 930,
+ "image_id": 2365550,
+ "entity": "cat",
+ "caption": "nose of cat is dark gray",
+ "question": [
+ "is there nose ?",
+ "is there cat ?"
+ ],
+ "prompt": "nose of {} is dark gray"
+ },
+ {
+ "index": 931,
+ "image_id": 2365276,
+ "entity": "cat",
+ "caption": "The cat is on the floor",
+ "question": [
+ "is there the cat ?",
+ "is there the floor ?"
+ ],
+ "prompt": "The {} is on the floor"
+ },
+ {
+ "index": 932,
+ "image_id": 2365276,
+ "entity": "cat",
+ "caption": "the cats mouth is open",
+ "question": [
+ "are there the cats mouth ?"
+ ],
+ "prompt": "the {}s mouth is open"
+ },
+ {
+ "index": 933,
+ "image_id": 2365276,
+ "entity": "cat",
+ "caption": "the cat has backpaws",
+ "question": [
+ "is there the cat ?",
+ "are there backpaws ?"
+ ],
+ "prompt": "the {} has backpaws"
+ },
+ {
+ "index": 934,
+ "image_id": 2365107,
+ "entity": "cat",
+ "caption": "The cat put his paw in the cup.",
+ "question": [
+ "is there the cat ?",
+ "is there his paw ?",
+ "is there the cup ?"
+ ],
+ "prompt": "The {} put his paw in the cup."
+ },
+ {
+ "index": 935,
+ "image_id": 2365107,
+ "entity": "cat",
+ "caption": "The table has a cat above.",
+ "question": [
+ "is there the table ?",
+ "is there a cat ?"
+ ],
+ "prompt": "The table has a {} above."
+ },
+ {
+ "index": 936,
+ "image_id": 2365107,
+ "entity": "cat",
+ "caption": "The sofa is behind the cat.",
+ "question": [
+ "is there the sofa ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The sofa is behind the {}."
+ },
+ {
+ "index": 937,
+ "image_id": 2364975,
+ "entity": "cat",
+ "caption": "End of cat's nose is black.",
+ "question": [
+ "is there end ?",
+ "is there cat's nose ?"
+ ],
+ "prompt": "End of {}'s nose is black."
+ },
+ {
+ "index": 938,
+ "image_id": 2364975,
+ "entity": "cat",
+ "caption": "grey striped ear on cat",
+ "question": [
+ "is there grey striped ear ?",
+ "is there cat ?"
+ ],
+ "prompt": "grey striped ear on {}"
+ },
+ {
+ "index": 939,
+ "image_id": 2364975,
+ "entity": "cat",
+ "caption": "whiskers on a grey striped cat",
+ "question": [
+ "are there whiskers ?",
+ "is there a grey striped cat ?"
+ ],
+ "prompt": "whiskers on a grey striped {}"
+ },
+ {
+ "index": 940,
+ "image_id": 2364885,
+ "entity": "cat",
+ "caption": "cat has stripes on his paws",
+ "question": [
+ "is there cat ?",
+ "are there stripes ?",
+ "are there his paws ?"
+ ],
+ "prompt": "{} has stripes on his paws"
+ },
+ {
+ "index": 941,
+ "image_id": 2364074,
+ "entity": "cat",
+ "caption": "fuzzy striped cat on bed",
+ "question": [
+ "is there fuzzy striped cat ?",
+ "is there bed ?"
+ ],
+ "prompt": "fuzzy striped {} on bed"
+ },
+ {
+ "index": 942,
+ "image_id": 2363821,
+ "entity": "cat",
+ "caption": "the cat has a big white furry ruff",
+ "question": [
+ "is there the cat ?",
+ "is there a big white furry ruff ?"
+ ],
+ "prompt": "the {} has a big white furry ruff"
+ },
+ {
+ "index": 943,
+ "image_id": 2363774,
+ "entity": "cat",
+ "caption": "cat tail curled in front of the cat ",
+ "question": [
+ "is there cat tail ?",
+ "is there front ?",
+ "is there the cat ?"
+ ],
+ "prompt": "{} tail curled in front of the {} "
+ },
+ {
+ "index": 944,
+ "image_id": 2363774,
+ "entity": "cat",
+ "caption": "Left ear on the cat",
+ "question": [
+ "is there ear ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Left ear on the {}"
+ },
+ {
+ "index": 945,
+ "image_id": 2363410,
+ "entity": "cat",
+ "caption": "cat is sleeping in the bag",
+ "question": [
+ "is there cat ?",
+ "is there the bag ?"
+ ],
+ "prompt": "{} is sleeping in the bag"
+ },
+ {
+ "index": 946,
+ "image_id": 2363410,
+ "entity": "cat",
+ "caption": "a cat is sleeping",
+ "question": [
+ "is there a cat ?"
+ ],
+ "prompt": "a {} is sleeping"
+ },
+ {
+ "index": 947,
+ "image_id": 2362958,
+ "entity": "cat",
+ "caption": "cat has pointy ears",
+ "question": [
+ "is there cat ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "{} has pointy ears"
+ },
+ {
+ "index": 948,
+ "image_id": 2362958,
+ "entity": "cat",
+ "caption": "cat is on the towel ",
+ "question": [
+ "is there cat ?",
+ "is there the towel ?"
+ ],
+ "prompt": "{} is on the towel "
+ },
+ {
+ "index": 949,
+ "image_id": 2362549,
+ "entity": "cat",
+ "caption": "Teddy bear beside the cat",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "Teddy bear beside the {}"
+ },
+ {
+ "index": 950,
+ "image_id": 2362385,
+ "entity": "cat",
+ "caption": "the cats are wearing hats",
+ "question": [
+ "are there the cats ?",
+ "are there hats ?"
+ ],
+ "prompt": "the {}s are wearing hats"
+ },
+ {
+ "index": 951,
+ "image_id": 2362385,
+ "entity": "cat",
+ "caption": "the cats hace stripes",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s hace stripes"
+ },
+ {
+ "index": 952,
+ "image_id": 2362306,
+ "entity": "cat",
+ "caption": "cat has dark face",
+ "question": [
+ "is there cat ?",
+ "is there dark face ?"
+ ],
+ "prompt": "{} has dark face"
+ },
+ {
+ "index": 953,
+ "image_id": 2362306,
+ "entity": "cat",
+ "caption": "back legs of cat are white",
+ "question": [
+ "are there legs ?",
+ "is there cat ?"
+ ],
+ "prompt": "back legs of {} are white"
+ },
+ {
+ "index": 954,
+ "image_id": 2362306,
+ "entity": "cat",
+ "caption": "tail of cat is black",
+ "question": [
+ "is there tail ?",
+ "is there cat ?"
+ ],
+ "prompt": "tail of {} is black"
+ },
+ {
+ "index": 955,
+ "image_id": 2362306,
+ "entity": "cat",
+ "caption": "cat is sleeping next to a window",
+ "question": [
+ "is there cat ?",
+ "is there a window ?"
+ ],
+ "prompt": "{} is sleeping next to a window"
+ },
+ {
+ "index": 956,
+ "image_id": 2362274,
+ "entity": "cat",
+ "caption": "the cat is on bed",
+ "question": [
+ "is there the cat ?",
+ "is there bed ?"
+ ],
+ "prompt": "the {} is on bed"
+ },
+ {
+ "index": 957,
+ "image_id": 2362213,
+ "entity": "cat",
+ "caption": "the cat has a long ear",
+ "question": [
+ "is there the cat ?",
+ "is there a long ear ?"
+ ],
+ "prompt": "the {} has a long ear"
+ },
+ {
+ "index": 958,
+ "image_id": 2362117,
+ "entity": "cat",
+ "caption": "orange cat's half opened eyes",
+ "question": [
+ "are there orange cat's half opened eyes ?"
+ ],
+ "prompt": "orange {}'s half opened eyes"
+ },
+ {
+ "index": 959,
+ "image_id": 2362117,
+ "entity": "cat",
+ "caption": "the cat has pink pads on his feet",
+ "question": [
+ "is there the cat ?",
+ "are there pink pads ?",
+ "are there his feet ?"
+ ],
+ "prompt": "the {} has pink pads on his feet"
+ },
+ {
+ "index": 960,
+ "image_id": 2362113,
+ "entity": "cat",
+ "caption": "the cat has a collar on",
+ "question": [
+ "is there the cat ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar on"
+ },
+ {
+ "index": 961,
+ "image_id": 2362113,
+ "entity": "cat",
+ "caption": "the cat appears to have rather long hair",
+ "question": [
+ "is there the cat ?",
+ "is there rather long hair ?"
+ ],
+ "prompt": "the {} appears to have rather long hair"
+ },
+ {
+ "index": 962,
+ "image_id": 2361706,
+ "entity": "cat",
+ "caption": "the cat is wearing a neck tie",
+ "question": [
+ "is there the cat ?",
+ "is there a neck tie ?"
+ ],
+ "prompt": "the {} is wearing a neck tie"
+ },
+ {
+ "index": 963,
+ "image_id": 2361706,
+ "entity": "cat",
+ "caption": "the cat has white stripes on its face",
+ "question": [
+ "is there the cat ?",
+ "are there white stripes ?",
+ "is there its face ?"
+ ],
+ "prompt": "the {} has white stripes on its face"
+ },
+ {
+ "index": 964,
+ "image_id": 2361706,
+ "entity": "cat",
+ "caption": "Person's hand holding the cat",
+ "question": [
+ "is there person's hand ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Person's hand holding the {}"
+ },
+ {
+ "index": 965,
+ "image_id": 2361706,
+ "entity": "cat",
+ "caption": "Person's Hand holding the cat for the picture",
+ "question": [
+ "is there person's hand ?",
+ "is there the cat ?",
+ "is there the picture ?"
+ ],
+ "prompt": "Person's Hand holding the {} for the picture"
+ },
+ {
+ "index": 966,
+ "image_id": 2361396,
+ "entity": "cat",
+ "caption": "cat face with intently looking eyes",
+ "question": [
+ "is there cat ?",
+ "are there intently looking eyes ?"
+ ],
+ "prompt": "{} face with intently looking eyes"
+ },
+ {
+ "index": 967,
+ "image_id": 2361211,
+ "entity": "cat",
+ "caption": "The cat looks in the mirror",
+ "question": [
+ "is there the cat ?",
+ "is there the mirror ?"
+ ],
+ "prompt": "The {} looks in the mirror"
+ },
+ {
+ "index": 968,
+ "image_id": 2361211,
+ "entity": "cat",
+ "caption": "The cat has black eyes",
+ "question": [
+ "is there the cat ?",
+ "are there black eyes ?"
+ ],
+ "prompt": "The {} has black eyes"
+ },
+ {
+ "index": 969,
+ "image_id": 2361211,
+ "entity": "cat",
+ "caption": "the cat looks into mirror",
+ "question": [
+ "is there the cat ?",
+ "is there mirror ?"
+ ],
+ "prompt": "the {} looks into mirror"
+ },
+ {
+ "index": 970,
+ "image_id": 2361211,
+ "entity": "cat",
+ "caption": "the cat sees reflection",
+ "question": [
+ "is there the cat ?",
+ "is there reflection ?"
+ ],
+ "prompt": "the {} sees reflection"
+ },
+ {
+ "index": 971,
+ "image_id": 2361135,
+ "entity": "cat",
+ "caption": "the cat has stripes on its face",
+ "question": [
+ "is there the cat ?",
+ "are there stripes ?",
+ "is there its face ?"
+ ],
+ "prompt": "the {} has stripes on its face"
+ },
+ {
+ "index": 972,
+ "image_id": 2361135,
+ "entity": "cat",
+ "caption": "the item behind the cat appears to be a bag",
+ "question": [
+ "is there the item ?",
+ "is there the cat ?",
+ "is there a bag ?"
+ ],
+ "prompt": "the item behind the {} appears to be a bag"
+ },
+ {
+ "index": 973,
+ "image_id": 2360934,
+ "entity": "cat",
+ "caption": "cat's tail is dark gray",
+ "question": [
+ "is there cat's tail ?"
+ ],
+ "prompt": "{}'s tail is dark gray"
+ },
+ {
+ "index": 974,
+ "image_id": 2360922,
+ "entity": "cat",
+ "caption": "The cat is sitting on the table.",
+ "question": [
+ "is there the cat ?",
+ "is there the table ?"
+ ],
+ "prompt": "The {} is sitting on the table."
+ },
+ {
+ "index": 975,
+ "image_id": 2360922,
+ "entity": "cat",
+ "caption": "The cat is sitting on the desk ",
+ "question": [
+ "is there the cat ?",
+ "is there the desk ?"
+ ],
+ "prompt": "The {} is sitting on the desk "
+ },
+ {
+ "index": 976,
+ "image_id": 2360922,
+ "entity": "cat",
+ "caption": "brown desk cat is on top of",
+ "question": [
+ "is there brown desk cat ?",
+ "is there top ?"
+ ],
+ "prompt": "brown desk {} is on top of"
+ },
+ {
+ "index": 977,
+ "image_id": 2360629,
+ "entity": "cat",
+ "caption": "two black cats cuddling",
+ "question": [
+ "are there two black cats ?"
+ ],
+ "prompt": "two black {}s cuddling"
+ },
+ {
+ "index": 978,
+ "image_id": 2360629,
+ "entity": "cat",
+ "caption": "blanket two cats are laying on",
+ "question": [
+ "are there two cats ?"
+ ],
+ "prompt": "blanket two {}s are laying on"
+ },
+ {
+ "index": 979,
+ "image_id": 2360629,
+ "entity": "cat",
+ "caption": "cat's eye is blue",
+ "question": [
+ "is there cat's eye ?"
+ ],
+ "prompt": "{}'s eye is blue"
+ },
+ {
+ "index": 980,
+ "image_id": 2360629,
+ "entity": "cat",
+ "caption": "cat's tail curled around other cat",
+ "question": [
+ "is there cat's tail ?",
+ "is there other cat ?"
+ ],
+ "prompt": "{}'s tail curled around other {}"
+ },
+ {
+ "index": 981,
+ "image_id": 2360629,
+ "entity": "cat",
+ "caption": "the surface cats are laying on is brown",
+ "question": [
+ "are there the surface cats ?"
+ ],
+ "prompt": "the surface {}s are laying on is brown"
+ },
+ {
+ "index": 982,
+ "image_id": 2360629,
+ "entity": "cat",
+ "caption": "A cats left ear",
+ "question": [
+ "are there a cats ?",
+ "is there ear ?"
+ ],
+ "prompt": "A {}s left ear"
+ },
+ {
+ "index": 983,
+ "image_id": 2360629,
+ "entity": "cat",
+ "caption": "A cats cute face",
+ "question": [
+ "are there a cats cute face ?"
+ ],
+ "prompt": "A {}s cute face"
+ },
+ {
+ "index": 984,
+ "image_id": 2360629,
+ "entity": "cat",
+ "caption": "A cats black back",
+ "question": [
+ "are there a cats ?"
+ ],
+ "prompt": "A {}s black back"
+ },
+ {
+ "index": 985,
+ "image_id": 2360603,
+ "entity": "cat",
+ "caption": "cat is asleep on top of TV",
+ "question": [
+ "is there cat ?",
+ "is there top ?",
+ "is there tv ?"
+ ],
+ "prompt": "{} is asleep on top of TV"
+ },
+ {
+ "index": 986,
+ "image_id": 2360603,
+ "entity": "cat",
+ "caption": "cat has a long tail",
+ "question": [
+ "is there cat ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "{} has a long tail"
+ },
+ {
+ "index": 987,
+ "image_id": 2360552,
+ "entity": "cat",
+ "caption": "cat is on a laptop",
+ "question": [
+ "is there cat ?",
+ "is there a laptop ?"
+ ],
+ "prompt": "{} is on a laptop"
+ },
+ {
+ "index": 988,
+ "image_id": 2360513,
+ "entity": "cat",
+ "caption": "Several whiskers coming from the cat.",
+ "question": [
+ "are there several whiskers ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Several whiskers coming from the {}."
+ },
+ {
+ "index": 989,
+ "image_id": 2360513,
+ "entity": "cat",
+ "caption": "cat has bird in mouth",
+ "question": [
+ "is there cat ?",
+ "is there bird ?",
+ "is there mouth ?"
+ ],
+ "prompt": "{} has bird in mouth"
+ },
+ {
+ "index": 990,
+ "image_id": 2360513,
+ "entity": "cat",
+ "caption": "cat has orange legs",
+ "question": [
+ "is there cat ?",
+ "are there orange legs ?"
+ ],
+ "prompt": "{} has orange legs"
+ },
+ {
+ "index": 991,
+ "image_id": 2360513,
+ "entity": "cat",
+ "caption": "cat has orange neck",
+ "question": [
+ "is there cat ?",
+ "is there orange neck ?"
+ ],
+ "prompt": "{} has orange neck"
+ },
+ {
+ "index": 992,
+ "image_id": 2360513,
+ "entity": "cat",
+ "caption": "bird the yellow cat is eating",
+ "question": [
+ "is there bird ?",
+ "is there the yellow cat ?"
+ ],
+ "prompt": "bird the yellow {} is eating"
+ },
+ {
+ "index": 993,
+ "image_id": 2360378,
+ "entity": "cat",
+ "caption": "the cat's left ear standing",
+ "question": [
+ "is there the cat's left ear ?"
+ ],
+ "prompt": "the {}'s left ear standing"
+ },
+ {
+ "index": 994,
+ "image_id": 2360378,
+ "entity": "cat",
+ "caption": "nose of cat is brown",
+ "question": [
+ "is there nose ?",
+ "is there cat ?"
+ ],
+ "prompt": "nose of {} is brown"
+ },
+ {
+ "index": 995,
+ "image_id": 2360309,
+ "entity": "cat",
+ "caption": "cat has white ears",
+ "question": [
+ "is there cat ?",
+ "are there white ears ?"
+ ],
+ "prompt": "{} has white ears"
+ },
+ {
+ "index": 996,
+ "image_id": 2360309,
+ "entity": "cat",
+ "caption": "cat has white and gray fur",
+ "question": [
+ "is there cat ?",
+ "is there white and gray fur ?"
+ ],
+ "prompt": "{} has white and gray fur"
+ },
+ {
+ "index": 997,
+ "image_id": 2360309,
+ "entity": "cat",
+ "caption": "cat is in the toilet",
+ "question": [
+ "is there cat ?",
+ "is there the toilet ?"
+ ],
+ "prompt": "{} is in the toilet"
+ },
+ {
+ "index": 998,
+ "image_id": 2360243,
+ "entity": "cat",
+ "caption": "cat has brown nose",
+ "question": [
+ "is there cat ?",
+ "is there brown nose ?"
+ ],
+ "prompt": "{} has brown nose"
+ },
+ {
+ "index": 999,
+ "image_id": 2360243,
+ "entity": "cat",
+ "caption": "cat has long whiskers",
+ "question": [
+ "is there cat ?",
+ "are there long whiskers ?"
+ ],
+ "prompt": "{} has long whiskers"
+ },
+ {
+ "index": 1000,
+ "image_id": 2360243,
+ "entity": "cat",
+ "caption": "cat has striped tail",
+ "question": [
+ "is there cat ?",
+ "is there striped tail ?"
+ ],
+ "prompt": "{} has striped tail"
+ },
+ {
+ "index": 1001,
+ "image_id": 2360243,
+ "entity": "cat",
+ "caption": "fence behind cat is wooden",
+ "question": [
+ "is there fence ?",
+ "is there cat ?"
+ ],
+ "prompt": "fence behind {} is wooden"
+ },
+ {
+ "index": 1002,
+ "image_id": 2360243,
+ "entity": "cat",
+ "caption": "the cat has a right ear",
+ "question": [
+ "is there the cat ?",
+ "is there a right ear ?"
+ ],
+ "prompt": "the {} has a right ear"
+ },
+ {
+ "index": 1003,
+ "image_id": 2360243,
+ "entity": "cat",
+ "caption": "the cat has a left ear",
+ "question": [
+ "is there the cat ?",
+ "is there a left ear ?"
+ ],
+ "prompt": "the {} has a left ear"
+ },
+ {
+ "index": 1004,
+ "image_id": 2360243,
+ "entity": "cat",
+ "caption": "a cats left rear leg",
+ "question": [
+ "are there a cats ?",
+ "is there rear leg ?"
+ ],
+ "prompt": "a {}s left rear leg"
+ },
+ {
+ "index": 1005,
+ "image_id": 2360103,
+ "entity": "cat",
+ "caption": "The cat is next to stuffed animals",
+ "question": [
+ "is there the cat ?",
+ "are there stuffed animals ?"
+ ],
+ "prompt": "The {} is next to stuffed animals"
+ },
+ {
+ "index": 1006,
+ "image_id": 2359820,
+ "entity": "cat",
+ "caption": "cat in planter yawning",
+ "question": [
+ "is there cat ?",
+ "is there planter yawning ?"
+ ],
+ "prompt": "{} in planter yawning"
+ },
+ {
+ "index": 1007,
+ "image_id": 2359820,
+ "entity": "cat",
+ "caption": "cat has white nose",
+ "question": [
+ "is there cat ?",
+ "is there white nose ?"
+ ],
+ "prompt": "{} has white nose"
+ },
+ {
+ "index": 1008,
+ "image_id": 2359820,
+ "entity": "cat",
+ "caption": "cat has pink tongue",
+ "question": [
+ "is there cat ?",
+ "is there pink tongue ?"
+ ],
+ "prompt": "{} has pink tongue"
+ },
+ {
+ "index": 1009,
+ "image_id": 2359803,
+ "entity": "cat",
+ "caption": "the mouth of the cat is on the bottle",
+ "question": [
+ "is there the mouth ?",
+ "is there the cat ?",
+ "is there the bottle ?"
+ ],
+ "prompt": "the mouth of the {} is on the bottle"
+ },
+ {
+ "index": 1010,
+ "image_id": 2359799,
+ "entity": "cat",
+ "caption": "white cat has pink nose",
+ "question": [
+ "is there white cat ?",
+ "is there pink nose ?"
+ ],
+ "prompt": "white {} has pink nose"
+ },
+ {
+ "index": 1011,
+ "image_id": 2359799,
+ "entity": "cat",
+ "caption": "the cat has pointy ears",
+ "question": [
+ "is there the cat ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "the {} has pointy ears"
+ },
+ {
+ "index": 1012,
+ "image_id": 2359799,
+ "entity": "cat",
+ "caption": "the cat's legs are white",
+ "question": [
+ "are there the cat's legs ?"
+ ],
+ "prompt": "the {}'s legs are white"
+ },
+ {
+ "index": 1013,
+ "image_id": 2359799,
+ "entity": "cat",
+ "caption": "the cat has fluffy white fur",
+ "question": [
+ "is there the cat ?",
+ "is there fluffy white fur ?"
+ ],
+ "prompt": "the {} has fluffy white fur"
+ },
+ {
+ "index": 1014,
+ "image_id": 2359799,
+ "entity": "cat",
+ "caption": "the cat is lying on tile",
+ "question": [
+ "is there the cat ?",
+ "is there tile ?"
+ ],
+ "prompt": "the {} is lying on tile"
+ },
+ {
+ "index": 1015,
+ "image_id": 2359799,
+ "entity": "cat",
+ "caption": "eyes of cat are big",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "eyes of {} are big"
+ },
+ {
+ "index": 1016,
+ "image_id": 2359799,
+ "entity": "cat",
+ "caption": "eyes of cat are brown",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "eyes of {} are brown"
+ },
+ {
+ "index": 1017,
+ "image_id": 2359799,
+ "entity": "cat",
+ "caption": "nose of cat is pink",
+ "question": [
+ "is there nose ?",
+ "is there cat ?"
+ ],
+ "prompt": "nose of {} is pink"
+ },
+ {
+ "index": 1018,
+ "image_id": 2359726,
+ "entity": "cat",
+ "caption": "cat has black nose",
+ "question": [
+ "is there cat ?",
+ "is there black nose ?"
+ ],
+ "prompt": "{} has black nose"
+ },
+ {
+ "index": 1019,
+ "image_id": 2359725,
+ "entity": "cat",
+ "caption": "the mouse is next to the cat",
+ "question": [
+ "is there the mouse ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the mouse is next to the {}"
+ },
+ {
+ "index": 1020,
+ "image_id": 2359725,
+ "entity": "cat",
+ "caption": "A lamp is behind a cat ear.",
+ "question": [
+ "is there a lamp ?",
+ "is there a cat ear ?"
+ ],
+ "prompt": "A lamp is behind a {} ear."
+ },
+ {
+ "index": 1021,
+ "image_id": 2359617,
+ "entity": "cat",
+ "caption": "cat's head is brown and white",
+ "question": [
+ "is there cat's head ?"
+ ],
+ "prompt": "{}'s head is brown and white"
+ },
+ {
+ "index": 1022,
+ "image_id": 2359505,
+ "entity": "cat",
+ "caption": "The laptop the cat is laying on.",
+ "question": [
+ "is there the laptop ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The laptop the {} is laying on."
+ },
+ {
+ "index": 1023,
+ "image_id": 2359485,
+ "entity": "cat",
+ "caption": "A piece of a food a cat is eating. ",
+ "question": [
+ "is there a piece ?",
+ "is there a food ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A piece of a food a {} is eating. "
+ },
+ {
+ "index": 1024,
+ "image_id": 2359485,
+ "entity": "cat",
+ "caption": "Small black lines where the cats eye is. ",
+ "question": [
+ "are there small black lines ?",
+ "are there the cats ?"
+ ],
+ "prompt": "Small black lines where the {}s eye is. "
+ },
+ {
+ "index": 1025,
+ "image_id": 2359485,
+ "entity": "cat",
+ "caption": "the cat has grey, black, and white fur",
+ "question": [
+ "is there the cat ?",
+ "is there fur ?"
+ ],
+ "prompt": "the {} has grey, black, and white fur"
+ },
+ {
+ "index": 1026,
+ "image_id": 2359455,
+ "entity": "cat",
+ "caption": "cat holds remote",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "{} holds remote"
+ },
+ {
+ "index": 1027,
+ "image_id": 2359455,
+ "entity": "cat",
+ "caption": "remote is on top of cat",
+ "question": [
+ "is there top ?",
+ "is there cat ?"
+ ],
+ "prompt": "remote is on top of {}"
+ },
+ {
+ "index": 1028,
+ "image_id": 2359455,
+ "entity": "cat",
+ "caption": "pillow is under cat",
+ "question": [
+ "is there pillow ?",
+ "is there cat ?"
+ ],
+ "prompt": "pillow is under {}"
+ },
+ {
+ "index": 1029,
+ "image_id": 2359455,
+ "entity": "cat",
+ "caption": "cat is on top of pillow",
+ "question": [
+ "is there cat ?",
+ "is there top ?",
+ "is there pillow ?"
+ ],
+ "prompt": "{} is on top of pillow"
+ },
+ {
+ "index": 1030,
+ "image_id": 2359455,
+ "entity": "cat",
+ "caption": "cat is holding the remote control",
+ "question": [
+ "is there cat ?",
+ "is there the remote control ?"
+ ],
+ "prompt": "{} is holding the remote control"
+ },
+ {
+ "index": 1031,
+ "image_id": 2359222,
+ "entity": "cat",
+ "caption": "cat is sitting on the table",
+ "question": [
+ "is there cat ?",
+ "is there the table ?"
+ ],
+ "prompt": "{} is sitting on the table"
+ },
+ {
+ "index": 1032,
+ "image_id": 2359165,
+ "entity": "cat",
+ "caption": "Grey cat is playing on chair.",
+ "question": [
+ "is there grey cat ?",
+ "is there chair ?"
+ ],
+ "prompt": "Grey {} is playing on chair."
+ },
+ {
+ "index": 1033,
+ "image_id": 2359073,
+ "entity": "cat",
+ "caption": "The cat is on the dog.",
+ "question": [
+ "is there the cat ?",
+ "is there the dog ?"
+ ],
+ "prompt": "The {} is on the dog."
+ },
+ {
+ "index": 1034,
+ "image_id": 2359073,
+ "entity": "cat",
+ "caption": "mouse is on top of cat",
+ "question": [
+ "is there top ?",
+ "is there cat ?"
+ ],
+ "prompt": "mouse is on top of {}"
+ },
+ {
+ "index": 1035,
+ "image_id": 2359053,
+ "entity": "cat",
+ "caption": "whiskers of cat are white",
+ "question": [
+ "are there whiskers ?",
+ "is there cat ?"
+ ],
+ "prompt": "whiskers of {} are white"
+ },
+ {
+ "index": 1036,
+ "image_id": 2359053,
+ "entity": "cat",
+ "caption": "Person petting cat's head.",
+ "question": [
+ "is there person ?",
+ "is there cat's head ?"
+ ],
+ "prompt": "Person petting {}'s head."
+ },
+ {
+ "index": 1037,
+ "image_id": 2359053,
+ "entity": "cat",
+ "caption": "Hand is petting cats head.",
+ "question": [
+ "is there hand ?",
+ "are there cats ?"
+ ],
+ "prompt": "Hand is petting {}s head."
+ },
+ {
+ "index": 1038,
+ "image_id": 2358909,
+ "entity": "cat",
+ "caption": "the cat is besides books",
+ "question": [
+ "is there the cat ?",
+ "are there books ?"
+ ],
+ "prompt": "the {} is besides books"
+ },
+ {
+ "index": 1039,
+ "image_id": 2358909,
+ "entity": "cat",
+ "caption": "The cat is lying down.",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} is lying down."
+ },
+ {
+ "index": 1040,
+ "image_id": 2358832,
+ "entity": "cat",
+ "caption": "the cat is by the window",
+ "question": [
+ "is there the cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "the {} is by the window"
+ },
+ {
+ "index": 1041,
+ "image_id": 2358391,
+ "entity": "cat",
+ "caption": "eyes of cat are close",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "eyes of {} are close"
+ },
+ {
+ "index": 1042,
+ "image_id": 2358391,
+ "entity": "cat",
+ "caption": "front legs of cat are white",
+ "question": [
+ "are there front legs ?",
+ "is there cat ?"
+ ],
+ "prompt": "front legs of {} are white"
+ },
+ {
+ "index": 1043,
+ "image_id": 2358273,
+ "entity": "cat",
+ "caption": "Two cats cuddled together",
+ "question": [
+ "are there two cats ?"
+ ],
+ "prompt": "Two {}s cuddled together"
+ },
+ {
+ "index": 1044,
+ "image_id": 2358273,
+ "entity": "cat",
+ "caption": "Cat sleeping and holding another cat's head",
+ "question": [
+ "is there cat ?",
+ "is there another cat's head ?"
+ ],
+ "prompt": "Cat sleeping and holding another {}'s head"
+ },
+ {
+ "index": 1045,
+ "image_id": 2358273,
+ "entity": "cat",
+ "caption": "cat's pupil is green",
+ "question": [
+ "is there cat's pupil ?"
+ ],
+ "prompt": "{}'s pupil is green"
+ },
+ {
+ "index": 1046,
+ "image_id": 2358144,
+ "entity": "cat",
+ "caption": "the cat is drinking from the faucet",
+ "question": [
+ "is there the cat ?",
+ "is there the faucet ?"
+ ],
+ "prompt": "the {} is drinking from the faucet"
+ },
+ {
+ "index": 1047,
+ "image_id": 2358131,
+ "entity": "cat",
+ "caption": "cat with his ears perked up",
+ "question": [
+ "is there cat ?",
+ "are there his ears ?"
+ ],
+ "prompt": "{} with his ears perked up"
+ },
+ {
+ "index": 1048,
+ "image_id": 2357990,
+ "entity": "cat",
+ "caption": "cat with it's head in the toilet bowl",
+ "question": [
+ "is there cat ?",
+ "is there head ?",
+ "is there the toilet bowl ?"
+ ],
+ "prompt": "{} with it's head in the toilet bowl"
+ },
+ {
+ "index": 1049,
+ "image_id": 2357990,
+ "entity": "cat",
+ "caption": "Orange and white cat climbing in toilet",
+ "question": [
+ "is there orange and white cat ?",
+ "is there toilet ?"
+ ],
+ "prompt": "Orange and white {} climbing in toilet"
+ },
+ {
+ "index": 1050,
+ "image_id": 2357853,
+ "entity": "cat",
+ "caption": "cat's nose is black",
+ "question": [
+ "is there cat's nose ?"
+ ],
+ "prompt": "{}'s nose is black"
+ },
+ {
+ "index": 1051,
+ "image_id": 2357853,
+ "entity": "cat",
+ "caption": "mat is under cat",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "mat is under {}"
+ },
+ {
+ "index": 1052,
+ "image_id": 2357733,
+ "entity": "cat",
+ "caption": "White tipped paw of cat",
+ "question": [
+ "is there paw ?",
+ "is there cat ?"
+ ],
+ "prompt": "White tipped paw of {}"
+ },
+ {
+ "index": 1053,
+ "image_id": 2357733,
+ "entity": "cat",
+ "caption": "blanket partially covering cat",
+ "question": [
+ "is there blanket ?",
+ "is there cat ?"
+ ],
+ "prompt": "blanket partially covering {}"
+ },
+ {
+ "index": 1054,
+ "image_id": 2357733,
+ "entity": "cat",
+ "caption": "The cat is on pink sheets",
+ "question": [
+ "is there the cat ?",
+ "are there pink sheets ?"
+ ],
+ "prompt": "The {} is on pink sheets"
+ },
+ {
+ "index": 1055,
+ "image_id": 2357733,
+ "entity": "cat",
+ "caption": "The cat has a white patched",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} has a white patched"
+ },
+ {
+ "index": 1056,
+ "image_id": 2357733,
+ "entity": "cat",
+ "caption": "The cat is in the blanket",
+ "question": [
+ "is there the cat ?",
+ "is there the blanket ?"
+ ],
+ "prompt": "The {} is in the blanket"
+ },
+ {
+ "index": 1057,
+ "image_id": 2357565,
+ "entity": "cat",
+ "caption": "the cat's whiskers sticking out to the side",
+ "question": [
+ "are there the cat's whiskers ?",
+ "is there the side ?"
+ ],
+ "prompt": "the {}'s whiskers sticking out to the side"
+ },
+ {
+ "index": 1058,
+ "image_id": 2357554,
+ "entity": "cat",
+ "caption": "Tan left paw of a cat. ",
+ "question": [
+ "is there paw ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Tan left paw of a {}. "
+ },
+ {
+ "index": 1059,
+ "image_id": 2357554,
+ "entity": "cat",
+ "caption": "A cats orange left ear. ",
+ "question": [
+ "are there a cats orange left ear ?"
+ ],
+ "prompt": "A {}s orange left ear. "
+ },
+ {
+ "index": 1060,
+ "image_id": 2357554,
+ "entity": "cat",
+ "caption": "A cats left eye. ",
+ "question": [
+ "are there a cats ?",
+ "is there eye ?"
+ ],
+ "prompt": "A {}s left eye. "
+ },
+ {
+ "index": 1061,
+ "image_id": 2357484,
+ "entity": "cat",
+ "caption": "the cats tail is grey at the end",
+ "question": [
+ "are there the cats tail ?",
+ "is there the end ?"
+ ],
+ "prompt": "the {}s tail is grey at the end"
+ },
+ {
+ "index": 1062,
+ "image_id": 2357484,
+ "entity": "cat",
+ "caption": "The cat is on top of the laptop",
+ "question": [
+ "is there the cat ?",
+ "is there top ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "The {} is on top of the laptop"
+ },
+ {
+ "index": 1063,
+ "image_id": 2357312,
+ "entity": "cat",
+ "caption": "cat has his mouth open",
+ "question": [
+ "is there cat ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "{} has his mouth open"
+ },
+ {
+ "index": 1064,
+ "image_id": 2357312,
+ "entity": "cat",
+ "caption": "tail of cat is brown ",
+ "question": [
+ "is there tail ?",
+ "is there cat ?"
+ ],
+ "prompt": "tail of {} is brown "
+ },
+ {
+ "index": 1065,
+ "image_id": 2357312,
+ "entity": "cat",
+ "caption": "tail of cat has black stripes",
+ "question": [
+ "is there tail ?",
+ "is there cat ?",
+ "are there black stripes ?"
+ ],
+ "prompt": "tail of {} has black stripes"
+ },
+ {
+ "index": 1066,
+ "image_id": 2357312,
+ "entity": "cat",
+ "caption": "head of cat is white and black",
+ "question": [
+ "is there head ?",
+ "is there cat ?"
+ ],
+ "prompt": "head of {} is white and black"
+ },
+ {
+ "index": 1067,
+ "image_id": 2357312,
+ "entity": "cat",
+ "caption": "the cat's mouth is open",
+ "question": [
+ "is there the cat's mouth ?"
+ ],
+ "prompt": "the {}'s mouth is open"
+ },
+ {
+ "index": 1068,
+ "image_id": 2357312,
+ "entity": "cat",
+ "caption": "ears of cat are brown",
+ "question": [
+ "are there ears ?",
+ "is there cat ?"
+ ],
+ "prompt": "ears of {} are brown"
+ },
+ {
+ "index": 1069,
+ "image_id": 2357312,
+ "entity": "cat",
+ "caption": "body of cat is white",
+ "question": [
+ "is there body ?",
+ "is there cat ?"
+ ],
+ "prompt": "body of {} is white"
+ },
+ {
+ "index": 1070,
+ "image_id": 2357260,
+ "entity": "cat",
+ "caption": "cat is eating in the jar",
+ "question": [
+ "is there cat ?",
+ "is there the jar ?"
+ ],
+ "prompt": "{} is eating in the jar"
+ },
+ {
+ "index": 1071,
+ "image_id": 2357260,
+ "entity": "cat",
+ "caption": "a right cat ear ",
+ "question": [
+ "is there a right cat ?"
+ ],
+ "prompt": "a right {} ear "
+ },
+ {
+ "index": 1072,
+ "image_id": 2356723,
+ "entity": "cat",
+ "caption": "the cat looks in the mirror",
+ "question": [
+ "is there the cat ?",
+ "is there the mirror ?"
+ ],
+ "prompt": "the {} looks in the mirror"
+ },
+ {
+ "index": 1073,
+ "image_id": 2356723,
+ "entity": "cat",
+ "caption": "the mirror reflects the cat",
+ "question": [
+ "is there the mirror ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the mirror reflects the {}"
+ },
+ {
+ "index": 1074,
+ "image_id": 2356723,
+ "entity": "cat",
+ "caption": "A small cats ear",
+ "question": [
+ "are there a small cats ?"
+ ],
+ "prompt": "A small {}s ear"
+ },
+ {
+ "index": 1075,
+ "image_id": 2356276,
+ "entity": "cat",
+ "caption": "nose of cat is white",
+ "question": [
+ "is there nose ?",
+ "is there cat ?"
+ ],
+ "prompt": "nose of {} is white"
+ },
+ {
+ "index": 1076,
+ "image_id": 2356241,
+ "entity": "cat",
+ "caption": "This is a cat",
+ "question": [
+ "is there a cat ?"
+ ],
+ "prompt": "This is a {}"
+ },
+ {
+ "index": 1077,
+ "image_id": 2356185,
+ "entity": "cat",
+ "caption": "A cat is laying on the floor",
+ "question": [
+ "is there a cat ?",
+ "is there the floor ?"
+ ],
+ "prompt": "A {} is laying on the floor"
+ },
+ {
+ "index": 1078,
+ "image_id": 2356185,
+ "entity": "cat",
+ "caption": "A cat is playing with shoes",
+ "question": [
+ "is there a cat ?",
+ "are there shoes ?"
+ ],
+ "prompt": "A {} is playing with shoes"
+ },
+ {
+ "index": 1079,
+ "image_id": 2356185,
+ "entity": "cat",
+ "caption": "The cat is trying to find mice",
+ "question": [
+ "is there the cat ?",
+ "are there mice ?"
+ ],
+ "prompt": "The {} is trying to find mice"
+ },
+ {
+ "index": 1080,
+ "image_id": 2356007,
+ "entity": "cat",
+ "caption": "This cat has very dark black claws",
+ "question": [
+ "is there this cat ?",
+ "are there very dark black claws ?"
+ ],
+ "prompt": "This {} has very dark black claws"
+ },
+ {
+ "index": 1081,
+ "image_id": 2356007,
+ "entity": "cat",
+ "caption": "The cat has white claws",
+ "question": [
+ "is there the cat ?",
+ "are there white claws ?"
+ ],
+ "prompt": "The {} has white claws"
+ },
+ {
+ "index": 1082,
+ "image_id": 2356007,
+ "entity": "cat",
+ "caption": "The cat is on top of a car",
+ "question": [
+ "is there the cat ?",
+ "is there top ?",
+ "is there a car ?"
+ ],
+ "prompt": "The {} is on top of a car"
+ },
+ {
+ "index": 1083,
+ "image_id": 2355955,
+ "entity": "cat",
+ "caption": "cat has pink ear",
+ "question": [
+ "is there cat ?",
+ "is there pink ear ?"
+ ],
+ "prompt": "{} has pink ear"
+ },
+ {
+ "index": 1084,
+ "image_id": 2355955,
+ "entity": "cat",
+ "caption": "the hand is petting the cat",
+ "question": [
+ "is there the hand ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the hand is petting the {}"
+ },
+ {
+ "index": 1085,
+ "image_id": 2355845,
+ "entity": "cat",
+ "caption": "the cat is laying on the floor",
+ "question": [
+ "is there the cat ?",
+ "is there the floor ?"
+ ],
+ "prompt": "the {} is laying on the floor"
+ },
+ {
+ "index": 1086,
+ "image_id": 2355845,
+ "entity": "cat",
+ "caption": "the cat has wiskers growing out",
+ "question": [
+ "is there the cat ?",
+ "are there wiskers ?"
+ ],
+ "prompt": "the {} has wiskers growing out"
+ },
+ {
+ "index": 1087,
+ "image_id": 2355845,
+ "entity": "cat",
+ "caption": "Black striped cat with white fur",
+ "question": [
+ "is there black striped cat ?"
+ ],
+ "prompt": "Black striped {} with white fur"
+ },
+ {
+ "index": 1088,
+ "image_id": 2355845,
+ "entity": "cat",
+ "caption": "Striped cat have two ears",
+ "question": [
+ "is there striped cat ?",
+ "are there two ears ?"
+ ],
+ "prompt": "Striped {} have two ears"
+ },
+ {
+ "index": 1089,
+ "image_id": 2355662,
+ "entity": "cat",
+ "caption": "The cat is sleeping inside the suitcase",
+ "question": [
+ "is there the cat ?",
+ "is there the suitcase ?"
+ ],
+ "prompt": "The {} is sleeping inside the suitcase"
+ },
+ {
+ "index": 1090,
+ "image_id": 2355662,
+ "entity": "cat",
+ "caption": "The cat has its eyes closed",
+ "question": [
+ "is there the cat ?",
+ "are there its eyes ?"
+ ],
+ "prompt": "The {} has its eyes closed"
+ },
+ {
+ "index": 1091,
+ "image_id": 2355662,
+ "entity": "cat",
+ "caption": "The cat has black stripes.",
+ "question": [
+ "is there the cat ?",
+ "are there black stripes ?"
+ ],
+ "prompt": "The {} has black stripes."
+ },
+ {
+ "index": 1092,
+ "image_id": 2355662,
+ "entity": "cat",
+ "caption": "The clothes are on top of the cat",
+ "question": [
+ "are there the clothes ?",
+ "is there top ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The clothes are on top of the {}"
+ },
+ {
+ "index": 1093,
+ "image_id": 2355258,
+ "entity": "cat",
+ "caption": "A pink table a cat is lying on. ",
+ "question": [
+ "is there a pink table ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A pink table a {} is lying on. "
+ },
+ {
+ "index": 1094,
+ "image_id": 2355258,
+ "entity": "cat",
+ "caption": "cat with his eyes perked up",
+ "question": [
+ "is there cat ?",
+ "are there his eyes ?"
+ ],
+ "prompt": "{} with his eyes perked up"
+ },
+ {
+ "index": 1095,
+ "image_id": 2355123,
+ "entity": "cat",
+ "caption": "the cat's paws are white",
+ "question": [
+ "are there the cat's paws ?"
+ ],
+ "prompt": "the {}'s paws are white"
+ },
+ {
+ "index": 1096,
+ "image_id": 2355123,
+ "entity": "cat",
+ "caption": "the cat is holding a pole",
+ "question": [
+ "is there the cat ?",
+ "is there a pole ?"
+ ],
+ "prompt": "the {} is holding a pole"
+ },
+ {
+ "index": 1097,
+ "image_id": 2354849,
+ "entity": "cat",
+ "caption": "Black and white cat laying in sink.",
+ "question": [
+ "is there black and white cat ?",
+ "is there sink ?"
+ ],
+ "prompt": "Black and white {} laying in sink."
+ },
+ {
+ "index": 1098,
+ "image_id": 2354644,
+ "entity": "cat",
+ "caption": "the cat is lying down",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is lying down"
+ },
+ {
+ "index": 1099,
+ "image_id": 2354544,
+ "entity": "cat",
+ "caption": "There is a nose that is on this cat",
+ "question": [
+ "is there a nose ?",
+ "is there this cat ?"
+ ],
+ "prompt": "There is a nose that is on this {}"
+ },
+ {
+ "index": 1100,
+ "image_id": 2354535,
+ "entity": "cat",
+ "caption": "the cat ears are two",
+ "question": [
+ "are there the cat ears ?"
+ ],
+ "prompt": "the {} ears are two"
+ },
+ {
+ "index": 1101,
+ "image_id": 2354535,
+ "entity": "cat",
+ "caption": "The cats nails are long.",
+ "question": [
+ "are there the cats ?",
+ "are there nails ?"
+ ],
+ "prompt": "The {}s nails are long."
+ },
+ {
+ "index": 1102,
+ "image_id": 2354384,
+ "entity": "cat",
+ "caption": "the cat is looking at the camera",
+ "question": [
+ "is there the cat ?",
+ "is there the camera ?"
+ ],
+ "prompt": "the {} is looking at the camera"
+ },
+ {
+ "index": 1103,
+ "image_id": 2353453,
+ "entity": "cat",
+ "caption": "brown and black cat curled on ground",
+ "question": [
+ "is there brown and black cat ?",
+ "is there ground ?"
+ ],
+ "prompt": "brown and black {} curled on ground"
+ },
+ {
+ "index": 1104,
+ "image_id": 2353340,
+ "entity": "cat",
+ "caption": "Fishing hat on cats head",
+ "question": [
+ "is there fishing hat ?",
+ "are there cats ?"
+ ],
+ "prompt": "Fishing hat on {}s head"
+ },
+ {
+ "index": 1105,
+ "image_id": 2353340,
+ "entity": "cat",
+ "caption": "cat has his hed under the hat",
+ "question": [
+ "is there cat ?",
+ "is there his hed ?",
+ "is there the hat ?"
+ ],
+ "prompt": "{} has his hed under the hat"
+ },
+ {
+ "index": 1106,
+ "image_id": 2353280,
+ "entity": "cat",
+ "caption": "cat has black whiskers",
+ "question": [
+ "is there cat ?",
+ "are there black whiskers ?"
+ ],
+ "prompt": "{} has black whiskers"
+ },
+ {
+ "index": 1107,
+ "image_id": 2353280,
+ "entity": "cat",
+ "caption": "cat is laying on something black ",
+ "question": [
+ "is there cat ?",
+ "is there something ?"
+ ],
+ "prompt": "{} is laying on something black "
+ },
+ {
+ "index": 1108,
+ "image_id": 2353280,
+ "entity": "cat",
+ "caption": "the cat is laying on side ",
+ "question": [
+ "is there the cat ?",
+ "is there side ?"
+ ],
+ "prompt": "the {} is laying on side "
+ },
+ {
+ "index": 1109,
+ "image_id": 2352997,
+ "entity": "cat",
+ "caption": "cat has long whiskers on face",
+ "question": [
+ "is there cat ?",
+ "are there long whiskers ?",
+ "is there face ?"
+ ],
+ "prompt": "{} has long whiskers on face"
+ },
+ {
+ "index": 1110,
+ "image_id": 2352997,
+ "entity": "cat",
+ "caption": "The cat is swiping at trickling water.",
+ "question": [
+ "is there the cat ?",
+ "is there trickling water ?"
+ ],
+ "prompt": "The {} is swiping at trickling water."
+ },
+ {
+ "index": 1111,
+ "image_id": 2352790,
+ "entity": "cat",
+ "caption": "the cat has a collar",
+ "question": [
+ "is there the cat ?",
+ "is there a collar ?"
+ ],
+ "prompt": "the {} has a collar"
+ },
+ {
+ "index": 1112,
+ "image_id": 2352731,
+ "entity": "cat",
+ "caption": "A cats left eye.",
+ "question": [
+ "are there a cats ?",
+ "is there eye ?"
+ ],
+ "prompt": "A {}s left eye."
+ },
+ {
+ "index": 1113,
+ "image_id": 2352702,
+ "entity": "cat",
+ "caption": "the cat has striped fur",
+ "question": [
+ "is there the cat ?",
+ "is there striped fur ?"
+ ],
+ "prompt": "the {} has striped fur"
+ },
+ {
+ "index": 1114,
+ "image_id": 2352702,
+ "entity": "cat",
+ "caption": "the cat has a white nose",
+ "question": [
+ "is there the cat ?",
+ "is there a white nose ?"
+ ],
+ "prompt": "the {} has a white nose"
+ },
+ {
+ "index": 1115,
+ "image_id": 2352506,
+ "entity": "cat",
+ "caption": "the cat's chin is on the paper",
+ "question": [
+ "is there the cat's chin ?",
+ "is there the paper ?"
+ ],
+ "prompt": "the {}'s chin is on the paper"
+ },
+ {
+ "index": 1116,
+ "image_id": 2352506,
+ "entity": "cat",
+ "caption": "the cat has a left eye",
+ "question": [
+ "is there the cat ?",
+ "is there a left eye ?"
+ ],
+ "prompt": "the {} has a left eye"
+ },
+ {
+ "index": 1117,
+ "image_id": 2352385,
+ "entity": "cat",
+ "caption": "the cat is on a shelf",
+ "question": [
+ "is there the cat ?",
+ "is there a shelf ?"
+ ],
+ "prompt": "the {} is on a shelf"
+ },
+ {
+ "index": 1118,
+ "image_id": 2352385,
+ "entity": "cat",
+ "caption": "The cat wears a red collar.",
+ "question": [
+ "is there the cat ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "The {} wears a red collar."
+ },
+ {
+ "index": 1119,
+ "image_id": 2352385,
+ "entity": "cat",
+ "caption": "The cat is lying on a wood table",
+ "question": [
+ "is there the cat ?",
+ "is there a wood table ?"
+ ],
+ "prompt": "The {} is lying on a wood table"
+ },
+ {
+ "index": 1120,
+ "image_id": 2352385,
+ "entity": "cat",
+ "caption": "The cat's whispers are long.",
+ "question": [
+ "are there the cat's whispers ?"
+ ],
+ "prompt": "The {}'s whispers are long."
+ },
+ {
+ "index": 1121,
+ "image_id": 2352385,
+ "entity": "cat",
+ "caption": "The cat's paws are soft",
+ "question": [
+ "are there the cat's paws ?"
+ ],
+ "prompt": "The {}'s paws are soft"
+ },
+ {
+ "index": 1122,
+ "image_id": 2352385,
+ "entity": "cat",
+ "caption": "A cat has slit-pupil eyes.",
+ "question": [
+ "is there a cat ?",
+ "are there slit-pupil eyes ?"
+ ],
+ "prompt": "A {} has slit-pupil eyes."
+ },
+ {
+ "index": 1123,
+ "image_id": 2352333,
+ "entity": "cat",
+ "caption": "cat's paw hanging off the bench",
+ "question": [
+ "is there cat's paw ?",
+ "is there the bench ?"
+ ],
+ "prompt": "{}'s paw hanging off the bench"
+ },
+ {
+ "index": 1124,
+ "image_id": 2352210,
+ "entity": "cat",
+ "caption": "The cat has pointy ears",
+ "question": [
+ "is there the cat ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "The {} has pointy ears"
+ },
+ {
+ "index": 1125,
+ "image_id": 2352210,
+ "entity": "cat",
+ "caption": "The cat has white fur",
+ "question": [
+ "is there the cat ?",
+ "is there white fur ?"
+ ],
+ "prompt": "The {} has white fur"
+ },
+ {
+ "index": 1126,
+ "image_id": 2351984,
+ "entity": "cat",
+ "caption": "Part of boys lips on cat",
+ "question": [
+ "is there part ?",
+ "are there boys ?",
+ "is there cat ?"
+ ],
+ "prompt": "Part of boys lips on {}"
+ },
+ {
+ "index": 1127,
+ "image_id": 2351659,
+ "entity": "cat",
+ "caption": "cat has white on front",
+ "question": [
+ "is there cat ?",
+ "is there front ?"
+ ],
+ "prompt": "{} has white on front"
+ },
+ {
+ "index": 1128,
+ "image_id": 2351659,
+ "entity": "cat",
+ "caption": "cat has white under chin",
+ "question": [
+ "is there cat ?",
+ "is there chin ?"
+ ],
+ "prompt": "{} has white under chin"
+ },
+ {
+ "index": 1129,
+ "image_id": 2351659,
+ "entity": "cat",
+ "caption": "cat is facing the door",
+ "question": [
+ "is there cat ?",
+ "is there the door ?"
+ ],
+ "prompt": "{} is facing the door"
+ },
+ {
+ "index": 1130,
+ "image_id": 2351659,
+ "entity": "cat",
+ "caption": "cats body is against the window",
+ "question": [
+ "are there cats body ?",
+ "is there the window ?"
+ ],
+ "prompt": "{}s body is against the window"
+ },
+ {
+ "index": 1131,
+ "image_id": 2351586,
+ "entity": "cat",
+ "caption": "the cat is biting a piece of food",
+ "question": [
+ "is there the cat ?",
+ "is there a piece ?",
+ "is there food ?"
+ ],
+ "prompt": "the {} is biting a piece of food"
+ },
+ {
+ "index": 1132,
+ "image_id": 2351586,
+ "entity": "cat",
+ "caption": "the cat has a light pink nose",
+ "question": [
+ "is there the cat ?",
+ "is there a light pink nose ?"
+ ],
+ "prompt": "the {} has a light pink nose"
+ },
+ {
+ "index": 1133,
+ "image_id": 2351586,
+ "entity": "cat",
+ "caption": "a cheese crisp that the cat is biting",
+ "question": [
+ "is there a cheese ?",
+ "is there the cat ?"
+ ],
+ "prompt": "a cheese crisp that the {} is biting"
+ },
+ {
+ "index": 1134,
+ "image_id": 2351586,
+ "entity": "cat",
+ "caption": "the cat is smelling a piece of people food",
+ "question": [
+ "is there the cat ?",
+ "is there a piece ?",
+ "are there people ?"
+ ],
+ "prompt": "the {} is smelling a piece of people food"
+ },
+ {
+ "index": 1135,
+ "image_id": 2351387,
+ "entity": "cat",
+ "caption": "cat has a black nose",
+ "question": [
+ "is there cat ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "{} has a black nose"
+ },
+ {
+ "index": 1136,
+ "image_id": 2351387,
+ "entity": "cat",
+ "caption": "cat has a pointy ear",
+ "question": [
+ "is there cat ?",
+ "is there a pointy ear ?"
+ ],
+ "prompt": "{} has a pointy ear"
+ },
+ {
+ "index": 1137,
+ "image_id": 2351387,
+ "entity": "cat",
+ "caption": "front left leg of cat",
+ "question": [
+ "is there front left leg ?",
+ "is there cat ?"
+ ],
+ "prompt": "front left leg of {}"
+ },
+ {
+ "index": 1138,
+ "image_id": 2351387,
+ "entity": "cat",
+ "caption": "cat has black fur on back",
+ "question": [
+ "is there cat ?",
+ "is there black fur ?"
+ ],
+ "prompt": "{} has black fur on back"
+ },
+ {
+ "index": 1139,
+ "image_id": 2351387,
+ "entity": "cat",
+ "caption": "cat has black and white fur on ear",
+ "question": [
+ "is there cat ?",
+ "is there black and white fur ?",
+ "is there ear ?"
+ ],
+ "prompt": "{} has black and white fur on ear"
+ },
+ {
+ "index": 1140,
+ "image_id": 2351196,
+ "entity": "cat",
+ "caption": "the cat is looking at the mouse",
+ "question": [
+ "is there the cat ?",
+ "is there the mouse ?"
+ ],
+ "prompt": "the {} is looking at the mouse"
+ },
+ {
+ "index": 1141,
+ "image_id": 2351196,
+ "entity": "cat",
+ "caption": "cat is laying on the chair",
+ "question": [
+ "is there cat ?",
+ "is there the chair ?"
+ ],
+ "prompt": "{} is laying on the chair"
+ },
+ {
+ "index": 1142,
+ "image_id": 2351067,
+ "entity": "cat",
+ "caption": "the chair the cat is sitting on",
+ "question": [
+ "is there the chair ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the chair the {} is sitting on"
+ },
+ {
+ "index": 1143,
+ "image_id": 2350590,
+ "entity": "cat",
+ "caption": "a cat's ear laying down under a hat",
+ "question": [
+ "is there a cat's ear ?",
+ "is there a hat ?"
+ ],
+ "prompt": "a {}'s ear laying down under a hat"
+ },
+ {
+ "index": 1144,
+ "image_id": 2350580,
+ "entity": "cat",
+ "caption": "cat is on bed",
+ "question": [
+ "is there cat ?",
+ "is there bed ?"
+ ],
+ "prompt": "{} is on bed"
+ },
+ {
+ "index": 1145,
+ "image_id": 2350580,
+ "entity": "cat",
+ "caption": "cat has brown tail",
+ "question": [
+ "is there cat ?",
+ "is there brown tail ?"
+ ],
+ "prompt": "{} has brown tail"
+ },
+ {
+ "index": 1146,
+ "image_id": 2350580,
+ "entity": "cat",
+ "caption": "cat has striped paws",
+ "question": [
+ "is there cat ?",
+ "are there striped paws ?"
+ ],
+ "prompt": "{} has striped paws"
+ },
+ {
+ "index": 1147,
+ "image_id": 2350449,
+ "entity": "cat",
+ "caption": "cat is sitting next to card",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "{} is sitting next to card"
+ },
+ {
+ "index": 1148,
+ "image_id": 2350113,
+ "entity": "cat",
+ "caption": "ears of cat are big",
+ "question": [
+ "are there ears ?",
+ "is there cat ?"
+ ],
+ "prompt": "ears of {} are big"
+ },
+ {
+ "index": 1149,
+ "image_id": 2349994,
+ "entity": "cat",
+ "caption": "the cat is drinking from a faucet",
+ "question": [
+ "is there the cat ?",
+ "is there a faucet ?"
+ ],
+ "prompt": "the {} is drinking from a faucet"
+ },
+ {
+ "index": 1150,
+ "image_id": 2349994,
+ "entity": "cat",
+ "caption": "the tile behind the cat is black",
+ "question": [
+ "is there the tile ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the tile behind the {} is black"
+ },
+ {
+ "index": 1151,
+ "image_id": 2349994,
+ "entity": "cat",
+ "caption": "the cat is standing on the sink",
+ "question": [
+ "is there the cat ?",
+ "is there the sink ?"
+ ],
+ "prompt": "the {} is standing on the sink"
+ },
+ {
+ "index": 1152,
+ "image_id": 2349994,
+ "entity": "cat",
+ "caption": "This cat is drinking the water here",
+ "question": [
+ "is there this cat ?",
+ "is there the water ?"
+ ],
+ "prompt": "This {} is drinking the water here"
+ },
+ {
+ "index": 1153,
+ "image_id": 2349994,
+ "entity": "cat",
+ "caption": "The cat has white feet that are visible",
+ "question": [
+ "is there the cat ?",
+ "are there white feet ?"
+ ],
+ "prompt": "The {} has white feet that are visible"
+ },
+ {
+ "index": 1154,
+ "image_id": 2349994,
+ "entity": "cat",
+ "caption": "A calico cat is drinking water.",
+ "question": [
+ "is there a calico cat ?",
+ "is there water ?"
+ ],
+ "prompt": "A calico {} is drinking water."
+ },
+ {
+ "index": 1155,
+ "image_id": 2349648,
+ "entity": "cat",
+ "caption": "the cat is sleeping on the ground",
+ "question": [
+ "is there the cat ?",
+ "is there the ground ?"
+ ],
+ "prompt": "the {} is sleeping on the ground"
+ },
+ {
+ "index": 1156,
+ "image_id": 2349648,
+ "entity": "cat",
+ "caption": "the cat is sleeping by the tire",
+ "question": [
+ "is there the cat ?",
+ "is there the tire ?"
+ ],
+ "prompt": "the {} is sleeping by the tire"
+ },
+ {
+ "index": 1157,
+ "image_id": 2349648,
+ "entity": "cat",
+ "caption": "the cat is in an oil spot",
+ "question": [
+ "is there the cat ?",
+ "is there an oil spot ?"
+ ],
+ "prompt": "the {} is in an oil spot"
+ },
+ {
+ "index": 1158,
+ "image_id": 2349648,
+ "entity": "cat",
+ "caption": "cat is lying on a road",
+ "question": [
+ "is there cat ?",
+ "is there a road ?"
+ ],
+ "prompt": "{} is lying on a road"
+ },
+ {
+ "index": 1159,
+ "image_id": 2349648,
+ "entity": "cat",
+ "caption": "the cat is under a tire",
+ "question": [
+ "is there the cat ?",
+ "is there a tire ?"
+ ],
+ "prompt": "the {} is under a tire"
+ },
+ {
+ "index": 1160,
+ "image_id": 2349648,
+ "entity": "cat",
+ "caption": "the cat is near the tire",
+ "question": [
+ "is there the cat ?",
+ "is there the tire ?"
+ ],
+ "prompt": "the {} is near the tire"
+ },
+ {
+ "index": 1161,
+ "image_id": 2349648,
+ "entity": "cat",
+ "caption": "the cat is brown with black stripes",
+ "question": [
+ "is there the cat ?",
+ "are there black stripes ?"
+ ],
+ "prompt": "the {} is brown with black stripes"
+ },
+ {
+ "index": 1162,
+ "image_id": 2349648,
+ "entity": "cat",
+ "caption": "the cat is lying on the concrete",
+ "question": [
+ "is there the cat ?",
+ "is there the concrete ?"
+ ],
+ "prompt": "the {} is lying on the concrete"
+ },
+ {
+ "index": 1163,
+ "image_id": 2349445,
+ "entity": "cat",
+ "caption": "The cat is laying on a bench",
+ "question": [
+ "is there the cat ?",
+ "is there a bench ?"
+ ],
+ "prompt": "The {} is laying on a bench"
+ },
+ {
+ "index": 1164,
+ "image_id": 2349445,
+ "entity": "cat",
+ "caption": "Cat's tail is underneath cat's body",
+ "question": [
+ "is there cat's tail ?",
+ "is there cat's body ?"
+ ],
+ "prompt": "Cat's tail is underneath {}'s body"
+ },
+ {
+ "index": 1165,
+ "image_id": 2349347,
+ "entity": "cat",
+ "caption": "The cat has a collar on",
+ "question": [
+ "is there the cat ?",
+ "is there a collar ?"
+ ],
+ "prompt": "The {} has a collar on"
+ },
+ {
+ "index": 1166,
+ "image_id": 2349149,
+ "entity": "cat",
+ "caption": "the cat is laying on the bed",
+ "question": [
+ "is there the cat ?",
+ "is there the bed ?"
+ ],
+ "prompt": "the {} is laying on the bed"
+ },
+ {
+ "index": 1167,
+ "image_id": 2349149,
+ "entity": "cat",
+ "caption": "a cat's paw is black",
+ "question": [
+ "is there a cat's paw ?"
+ ],
+ "prompt": "a {}'s paw is black"
+ },
+ {
+ "index": 1168,
+ "image_id": 2348783,
+ "entity": "cat",
+ "caption": "Eye of cat is green",
+ "question": [
+ "is there eye ?",
+ "is there cat ?"
+ ],
+ "prompt": "Eye of {} is green"
+ },
+ {
+ "index": 1169,
+ "image_id": 2348719,
+ "entity": "cat",
+ "caption": "A cat claims a laptop.",
+ "question": [
+ "is there a cat ?",
+ "is there a laptop ?"
+ ],
+ "prompt": "A {} claims a laptop."
+ },
+ {
+ "index": 1170,
+ "image_id": 2348719,
+ "entity": "cat",
+ "caption": "A black cat is laying across the laptop.",
+ "question": [
+ "is there a black cat ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "A black {} is laying across the laptop."
+ },
+ {
+ "index": 1171,
+ "image_id": 2348719,
+ "entity": "cat",
+ "caption": "A cat is looking at the floor.",
+ "question": [
+ "is there a cat ?",
+ "is there the floor ?"
+ ],
+ "prompt": "A {} is looking at the floor."
+ },
+ {
+ "index": 1172,
+ "image_id": 2348719,
+ "entity": "cat",
+ "caption": "A cat is looking at the carpet.",
+ "question": [
+ "is there a cat ?",
+ "is there the carpet ?"
+ ],
+ "prompt": "A {} is looking at the carpet."
+ },
+ {
+ "index": 1173,
+ "image_id": 2348429,
+ "entity": "cat",
+ "caption": "cat has black stripe on tail",
+ "question": [
+ "is there cat ?",
+ "is there black stripe ?",
+ "is there tail ?"
+ ],
+ "prompt": "{} has black stripe on tail"
+ },
+ {
+ "index": 1174,
+ "image_id": 2348222,
+ "entity": "cat",
+ "caption": "cat has a white chin",
+ "question": [
+ "is there cat ?",
+ "is there a white chin ?"
+ ],
+ "prompt": "{} has a white chin"
+ },
+ {
+ "index": 1175,
+ "image_id": 2348222,
+ "entity": "cat",
+ "caption": "cats ear has long hairs on top",
+ "question": [
+ "are there cats ?",
+ "are there long hairs ?",
+ "is there top ?"
+ ],
+ "prompt": "{}s ear has long hairs on top"
+ },
+ {
+ "index": 1176,
+ "image_id": 2348112,
+ "entity": "cat",
+ "caption": "cat's eyes are nearly closed",
+ "question": [
+ "are there cat's eyes ?"
+ ],
+ "prompt": "{}'s eyes are nearly closed"
+ },
+ {
+ "index": 1177,
+ "image_id": 2347346,
+ "entity": "cat",
+ "caption": "cat has black body",
+ "question": [
+ "is there cat ?",
+ "is there black body ?"
+ ],
+ "prompt": "{} has black body"
+ },
+ {
+ "index": 1178,
+ "image_id": 2347287,
+ "entity": "cat",
+ "caption": "cat has black paws",
+ "question": [
+ "is there cat ?",
+ "are there black paws ?"
+ ],
+ "prompt": "{} has black paws"
+ },
+ {
+ "index": 1179,
+ "image_id": 2347287,
+ "entity": "cat",
+ "caption": "cat has short fur",
+ "question": [
+ "is there cat ?",
+ "is there short fur ?"
+ ],
+ "prompt": "{} has short fur"
+ },
+ {
+ "index": 1180,
+ "image_id": 2346829,
+ "entity": "cat",
+ "caption": "black and white cat with head turned to side",
+ "question": [
+ "is there black and white cat ?",
+ "is there head ?"
+ ],
+ "prompt": "black and white {} with head turned to side"
+ },
+ {
+ "index": 1181,
+ "image_id": 2346534,
+ "entity": "cat",
+ "caption": "bricked floor where cat is",
+ "question": [
+ "is there bricked floor ?",
+ "is there cat ?"
+ ],
+ "prompt": "bricked floor where {} is"
+ },
+ {
+ "index": 1182,
+ "image_id": 2346534,
+ "entity": "cat",
+ "caption": "eyes of cat are round",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "eyes of {} are round"
+ },
+ {
+ "index": 1183,
+ "image_id": 2346534,
+ "entity": "cat",
+ "caption": "eyes of cat are color green",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "eyes of {} are color green"
+ },
+ {
+ "index": 1184,
+ "image_id": 2346534,
+ "entity": "cat",
+ "caption": "nose of cat is color pink",
+ "question": [
+ "is there nose ?",
+ "is there cat ?"
+ ],
+ "prompt": "nose of {} is color pink"
+ },
+ {
+ "index": 1185,
+ "image_id": 2346372,
+ "entity": "cat",
+ "caption": "cat eyes half opened",
+ "question": [
+ "are there cat eyes ?"
+ ],
+ "prompt": "{} eyes half opened"
+ },
+ {
+ "index": 1186,
+ "image_id": 2346372,
+ "entity": "cat",
+ "caption": "Black fur on cats face ",
+ "question": [
+ "is there black fur ?",
+ "are there cats ?"
+ ],
+ "prompt": "Black fur on {}s face "
+ },
+ {
+ "index": 1187,
+ "image_id": 2346216,
+ "entity": "cat",
+ "caption": "Black cats right eye",
+ "question": [
+ "are there black cats ?"
+ ],
+ "prompt": "Black {}s right eye"
+ },
+ {
+ "index": 1188,
+ "image_id": 2346216,
+ "entity": "cat",
+ "caption": "Black cats left eye",
+ "question": [
+ "are there black cats ?",
+ "is there eye ?"
+ ],
+ "prompt": "Black {}s left eye"
+ },
+ {
+ "index": 1189,
+ "image_id": 2346216,
+ "entity": "cat",
+ "caption": "The cats left ear",
+ "question": [
+ "are there the cats ?",
+ "is there ear ?"
+ ],
+ "prompt": "The {}s left ear"
+ },
+ {
+ "index": 1190,
+ "image_id": 2345806,
+ "entity": "cat",
+ "caption": "White and black cat is in a bowl",
+ "question": [
+ "is there white and black cat ?",
+ "is there a bowl ?"
+ ],
+ "prompt": "White and black {} is in a bowl"
+ },
+ {
+ "index": 1191,
+ "image_id": 2345806,
+ "entity": "cat",
+ "caption": "White and black cat is standing in a bowl",
+ "question": [
+ "is there white and black cat ?",
+ "is there a bowl ?"
+ ],
+ "prompt": "White and black {} is standing in a bowl"
+ },
+ {
+ "index": 1192,
+ "image_id": 2345670,
+ "entity": "cat",
+ "caption": "The cat's ear is a dark black color",
+ "question": [
+ "is there the cat's ear ?",
+ "is there a dark black color ?"
+ ],
+ "prompt": "The {}'s ear is a dark black color"
+ },
+ {
+ "index": 1193,
+ "image_id": 2345663,
+ "entity": "cat",
+ "caption": "Chair near cat is green.",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "Chair near {} is green."
+ },
+ {
+ "index": 1194,
+ "image_id": 2345663,
+ "entity": "cat",
+ "caption": "the cat has front paws",
+ "question": [
+ "is there the cat ?",
+ "are there front paws ?"
+ ],
+ "prompt": "the {} has front paws"
+ },
+ {
+ "index": 1195,
+ "image_id": 2345663,
+ "entity": "cat",
+ "caption": "the cat has back legs",
+ "question": [
+ "is there the cat ?",
+ "are there back legs ?"
+ ],
+ "prompt": "the {} has back legs"
+ },
+ {
+ "index": 1196,
+ "image_id": 2345637,
+ "entity": "cat",
+ "caption": "this is an ear of cat",
+ "question": [
+ "is there an ear ?",
+ "is there cat ?"
+ ],
+ "prompt": "this is an ear of {}"
+ },
+ {
+ "index": 1197,
+ "image_id": 2345637,
+ "entity": "cat",
+ "caption": "a cat that is inside",
+ "question": [
+ "is there a cat ?"
+ ],
+ "prompt": "a {} that is inside"
+ },
+ {
+ "index": 1198,
+ "image_id": 2345637,
+ "entity": "cat",
+ "caption": "a cat and owner nuzzling ",
+ "question": [
+ "is there a cat ?",
+ "is there owner ?"
+ ],
+ "prompt": "a {} and owner nuzzling "
+ },
+ {
+ "index": 1199,
+ "image_id": 2345635,
+ "entity": "cat",
+ "caption": "cat is looking at dog",
+ "question": [
+ "is there cat ?",
+ "is there dog ?"
+ ],
+ "prompt": "{} is looking at dog"
+ },
+ {
+ "index": 1200,
+ "image_id": 2345375,
+ "entity": "cat",
+ "caption": "cat has many long white whiskers",
+ "question": [
+ "is there cat ?",
+ "are there many long white whiskers ?"
+ ],
+ "prompt": "{} has many long white whiskers"
+ },
+ {
+ "index": 1201,
+ "image_id": 2345375,
+ "entity": "cat",
+ "caption": "the cats ear ",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s ear "
+ },
+ {
+ "index": 1202,
+ "image_id": 2345375,
+ "entity": "cat",
+ "caption": "white, brown and black cat with head to side",
+ "question": [
+ "is there white, brown and black cat ?",
+ "is there head ?",
+ "is there side ?"
+ ],
+ "prompt": "white, brown and black {} with head to side"
+ },
+ {
+ "index": 1203,
+ "image_id": 2345178,
+ "entity": "cat",
+ "caption": "A cat that has green eyes",
+ "question": [
+ "is there a cat ?",
+ "are there green eyes ?"
+ ],
+ "prompt": "A {} that has green eyes"
+ },
+ {
+ "index": 1204,
+ "image_id": 2345178,
+ "entity": "cat",
+ "caption": "Black and white cats tail",
+ "question": [
+ "are there black and white cats ?"
+ ],
+ "prompt": "Black and white {}s tail"
+ },
+ {
+ "index": 1205,
+ "image_id": 2345178,
+ "entity": "cat",
+ "caption": "a cat sits atop the back seat of a car",
+ "question": [
+ "is there a cat ?",
+ "is there the back seat ?",
+ "is there a car ?"
+ ],
+ "prompt": "a {} sits atop the back seat of a car"
+ },
+ {
+ "index": 1206,
+ "image_id": 2345178,
+ "entity": "cat",
+ "caption": "the cat has a blanket to sit on",
+ "question": [
+ "is there the cat ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} has a blanket to sit on"
+ },
+ {
+ "index": 1207,
+ "image_id": 2345178,
+ "entity": "cat",
+ "caption": "the cat's blanket is a red and blue plaid",
+ "question": [
+ "is there the cat's blanket ?",
+ "is there a red and blue plaid ?"
+ ],
+ "prompt": "the {}'s blanket is a red and blue plaid"
+ },
+ {
+ "index": 1208,
+ "image_id": 2345178,
+ "entity": "cat",
+ "caption": "the cat has pale green eyes",
+ "question": [
+ "is there the cat ?",
+ "are there pale green eyes ?"
+ ],
+ "prompt": "the {} has pale green eyes"
+ },
+ {
+ "index": 1209,
+ "image_id": 2345178,
+ "entity": "cat",
+ "caption": "the cat has a white patch on its face",
+ "question": [
+ "is there the cat ?",
+ "is there a white patch ?",
+ "is there its face ?"
+ ],
+ "prompt": "the {} has a white patch on its face"
+ },
+ {
+ "index": 1210,
+ "image_id": 2345145,
+ "entity": "cat",
+ "caption": "The cat has a gray nose.",
+ "question": [
+ "is there the cat ?",
+ "is there a gray nose ?"
+ ],
+ "prompt": "The {} has a gray nose."
+ },
+ {
+ "index": 1211,
+ "image_id": 2345145,
+ "entity": "cat",
+ "caption": "The cat has a white ear.",
+ "question": [
+ "is there the cat ?",
+ "is there a white ear ?"
+ ],
+ "prompt": "The {} has a white ear."
+ },
+ {
+ "index": 1212,
+ "image_id": 2345145,
+ "entity": "cat",
+ "caption": "a cat lies next to a bicycle wheel",
+ "question": [
+ "is there a cat ?",
+ "is there a bicycle wheel ?"
+ ],
+ "prompt": "a {} lies next to a bicycle wheel"
+ },
+ {
+ "index": 1213,
+ "image_id": 2345145,
+ "entity": "cat",
+ "caption": "the cat has a triangular gray patch above its nose",
+ "question": [
+ "is there the cat ?",
+ "is there a triangular gray patch ?",
+ "is there its nose ?"
+ ],
+ "prompt": "the {} has a triangular gray patch above its nose"
+ },
+ {
+ "index": 1214,
+ "image_id": 2345145,
+ "entity": "cat",
+ "caption": "the cat has gentle eyes",
+ "question": [
+ "is there the cat ?",
+ "are there gentle eyes ?"
+ ],
+ "prompt": "the {} has gentle eyes"
+ },
+ {
+ "index": 1215,
+ "image_id": 2345145,
+ "entity": "cat",
+ "caption": "the cat has one white ear and one gray ear",
+ "question": [
+ "is there the cat ?",
+ "is there one white ear ?",
+ "is there one gray ear ?"
+ ],
+ "prompt": "the {} has one white ear and one gray ear"
+ },
+ {
+ "index": 1216,
+ "image_id": 2345057,
+ "entity": "cat",
+ "caption": "this is a cat legs",
+ "question": [
+ "are there a cat legs ?"
+ ],
+ "prompt": "this is a {} legs"
+ },
+ {
+ "index": 1217,
+ "image_id": 2345057,
+ "entity": "cat",
+ "caption": "Person feeding the cat",
+ "question": [
+ "is there person ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Person feeding the {}"
+ },
+ {
+ "index": 1218,
+ "image_id": 2344930,
+ "entity": "cat",
+ "caption": "eyes of cat are semi closed ",
+ "question": [
+ "are there eyes ?",
+ "is there cat ?"
+ ],
+ "prompt": "eyes of {} are semi closed "
+ },
+ {
+ "index": 1219,
+ "image_id": 2344817,
+ "entity": "cat",
+ "caption": "she is with the cat on the bed",
+ "question": [
+ "is there the cat ?",
+ "is there the bed ?"
+ ],
+ "prompt": "she is with the {} on the bed"
+ },
+ {
+ "index": 1220,
+ "image_id": 2344270,
+ "entity": "cat",
+ "caption": "cat is eating pizza",
+ "question": [
+ "is there cat ?",
+ "is there pizza ?"
+ ],
+ "prompt": "{} is eating pizza"
+ },
+ {
+ "index": 1221,
+ "image_id": 2344230,
+ "entity": "cat",
+ "caption": "the cat is in the bathtub",
+ "question": [
+ "is there the cat ?",
+ "is there the bathtub ?"
+ ],
+ "prompt": "the {} is in the bathtub"
+ },
+ {
+ "index": 1222,
+ "image_id": 2344230,
+ "entity": "cat",
+ "caption": "the cat is looking at his reflection",
+ "question": [
+ "is there the cat ?",
+ "is there his reflection ?"
+ ],
+ "prompt": "the {} is looking at his reflection"
+ },
+ {
+ "index": 1223,
+ "image_id": 2344118,
+ "entity": "cat",
+ "caption": "the cat is on the laptop ",
+ "question": [
+ "is there the cat ?",
+ "is there the laptop ?"
+ ],
+ "prompt": "the {} is on the laptop "
+ },
+ {
+ "index": 1224,
+ "image_id": 2344097,
+ "entity": "cat",
+ "caption": "the cat is looking in the mirror",
+ "question": [
+ "is there the cat ?",
+ "is there the mirror ?"
+ ],
+ "prompt": "the {} is looking in the mirror"
+ },
+ {
+ "index": 1225,
+ "image_id": 2344097,
+ "entity": "cat",
+ "caption": "the mirror is reflecting the cat",
+ "question": [
+ "is there the mirror ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the mirror is reflecting the {}"
+ },
+ {
+ "index": 1226,
+ "image_id": 2344097,
+ "entity": "cat",
+ "caption": "the cat has one paw showing",
+ "question": [
+ "is there the cat ?",
+ "is there one paw showing ?"
+ ],
+ "prompt": "the {} has one paw showing"
+ },
+ {
+ "index": 1227,
+ "image_id": 2343843,
+ "entity": "cat",
+ "caption": "the cat is on the sofa ",
+ "question": [
+ "is there the cat ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "the {} is on the sofa "
+ },
+ {
+ "index": 1228,
+ "image_id": 2343474,
+ "entity": "cat",
+ "caption": "cat printed on shoe tp",
+ "question": [
+ "is there cat ?",
+ "is there shoe tp ?"
+ ],
+ "prompt": "{} printed on shoe tp"
+ },
+ {
+ "index": 1229,
+ "image_id": 2343208,
+ "entity": "cat",
+ "caption": "cat's tail hanging in air",
+ "question": [
+ "is there cat's tail ?",
+ "is there air ?"
+ ],
+ "prompt": "{}'s tail hanging in air"
+ },
+ {
+ "index": 1230,
+ "image_id": 2343156,
+ "entity": "cat",
+ "caption": "the cat is looking at the screen ",
+ "question": [
+ "is there the cat ?",
+ "is there the screen ?"
+ ],
+ "prompt": "the {} is looking at the screen "
+ },
+ {
+ "index": 1231,
+ "image_id": 2343075,
+ "entity": "cat",
+ "caption": "cat is laying on laptop",
+ "question": [
+ "is there cat ?",
+ "is there laptop ?"
+ ],
+ "prompt": "{} is laying on laptop"
+ },
+ {
+ "index": 1232,
+ "image_id": 2343011,
+ "entity": "cat",
+ "caption": "cat painted on bowl",
+ "question": [
+ "is there cat ?",
+ "is there bowl ?"
+ ],
+ "prompt": "{} painted on bowl"
+ },
+ {
+ "index": 1233,
+ "image_id": 2342859,
+ "entity": "cat",
+ "caption": "that is the eye a cat",
+ "question": [
+ "is there the eye ?",
+ "is there a cat ?"
+ ],
+ "prompt": "that is the eye a {}"
+ },
+ {
+ "index": 1234,
+ "image_id": 2342859,
+ "entity": "cat",
+ "caption": "Cream colored cat on arm of sofa",
+ "question": [
+ "is there cream colored cat ?",
+ "is there arm ?",
+ "is there sofa ?"
+ ],
+ "prompt": "Cream colored {} on arm of sofa"
+ },
+ {
+ "index": 1235,
+ "image_id": 2342803,
+ "entity": "cat",
+ "caption": "cat has orange paws",
+ "question": [
+ "is there cat ?",
+ "are there orange paws ?"
+ ],
+ "prompt": "{} has orange paws"
+ },
+ {
+ "index": 1236,
+ "image_id": 2342803,
+ "entity": "cat",
+ "caption": "Computer mouse laying on a cat.",
+ "question": [
+ "is there computer mouse ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Computer mouse laying on a {}."
+ },
+ {
+ "index": 1237,
+ "image_id": 2342803,
+ "entity": "cat",
+ "caption": "a computer mouse sitting on top of a sleeping cat ",
+ "question": [
+ "is there a computer mouse ?",
+ "is there top ?",
+ "is there a sleeping cat ?"
+ ],
+ "prompt": "a computer mouse sitting on top of a sleeping {} "
+ },
+ {
+ "index": 1238,
+ "image_id": 2342788,
+ "entity": "cat",
+ "caption": "cat has orange body",
+ "question": [
+ "is there cat ?",
+ "is there orange body ?"
+ ],
+ "prompt": "{} has orange body"
+ },
+ {
+ "index": 1239,
+ "image_id": 2342788,
+ "entity": "cat",
+ "caption": "The cat is on a blanket",
+ "question": [
+ "is there the cat ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "The {} is on a blanket"
+ },
+ {
+ "index": 1240,
+ "image_id": 2342788,
+ "entity": "cat",
+ "caption": "The cat is next to a book",
+ "question": [
+ "is there the cat ?",
+ "is there a book ?"
+ ],
+ "prompt": "The {} is next to a book"
+ },
+ {
+ "index": 1241,
+ "image_id": 2342788,
+ "entity": "cat",
+ "caption": "The cat and book are on a bed",
+ "question": [
+ "is there the cat ?",
+ "is there book ?",
+ "is there a bed ?"
+ ],
+ "prompt": "The {} and book are on a bed"
+ },
+ {
+ "index": 1242,
+ "image_id": 2342767,
+ "entity": "cat",
+ "caption": "the cat is on the tree",
+ "question": [
+ "is there the cat ?",
+ "is there the tree ?"
+ ],
+ "prompt": "the {} is on the tree"
+ },
+ {
+ "index": 1243,
+ "image_id": 2342767,
+ "entity": "cat",
+ "caption": "the cat has a shadow",
+ "question": [
+ "is there the cat ?",
+ "is there a shadow ?"
+ ],
+ "prompt": "the {} has a shadow"
+ },
+ {
+ "index": 1244,
+ "image_id": 2342767,
+ "entity": "cat",
+ "caption": "the cat scratches the tree",
+ "question": [
+ "is there the cat ?",
+ "is there the tree ?"
+ ],
+ "prompt": "the {} scratches the tree"
+ },
+ {
+ "index": 1245,
+ "image_id": 2342767,
+ "entity": "cat",
+ "caption": "the cat is chasing the bird",
+ "question": [
+ "is there the cat ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the {} is chasing the bird"
+ },
+ {
+ "index": 1246,
+ "image_id": 2342767,
+ "entity": "cat",
+ "caption": "the cat claws the bird",
+ "question": [
+ "is there the cat ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the {} claws the bird"
+ },
+ {
+ "index": 1247,
+ "image_id": 2342767,
+ "entity": "cat",
+ "caption": "the cat hisses at the bird",
+ "question": [
+ "is there the cat ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the {} hisses at the bird"
+ },
+ {
+ "index": 1248,
+ "image_id": 2342767,
+ "entity": "cat",
+ "caption": "a door is behind the cat",
+ "question": [
+ "is there a door ?",
+ "is there the cat ?"
+ ],
+ "prompt": "a door is behind the {}"
+ },
+ {
+ "index": 1249,
+ "image_id": 2342767,
+ "entity": "cat",
+ "caption": "the cat clawed the tree",
+ "question": [
+ "is there the cat ?",
+ "is there the tree ?"
+ ],
+ "prompt": "the {} clawed the tree"
+ },
+ {
+ "index": 1250,
+ "image_id": 2342421,
+ "entity": "cat",
+ "caption": "a cats left eye ",
+ "question": [
+ "are there a cats ?",
+ "is there eye ?"
+ ],
+ "prompt": "a {}s left eye "
+ },
+ {
+ "index": 1251,
+ "image_id": 2342421,
+ "entity": "cat",
+ "caption": "a cats left ear ",
+ "question": [
+ "are there a cats ?",
+ "is there ear ?"
+ ],
+ "prompt": "a {}s left ear "
+ },
+ {
+ "index": 1252,
+ "image_id": 2342421,
+ "entity": "cat",
+ "caption": "The cat is sitting next to a bicycle tire.",
+ "question": [
+ "is there the cat ?",
+ "is there a bicycle tire ?"
+ ],
+ "prompt": "The {} is sitting next to a bicycle tire."
+ },
+ {
+ "index": 1253,
+ "image_id": 2342421,
+ "entity": "cat",
+ "caption": "The cat has a paw.",
+ "question": [
+ "is there the cat ?",
+ "is there a paw ?"
+ ],
+ "prompt": "The {} has a paw."
+ },
+ {
+ "index": 1254,
+ "image_id": 2342421,
+ "entity": "cat",
+ "caption": "The cat has a mouth.",
+ "question": [
+ "is there the cat ?",
+ "is there a mouth ?"
+ ],
+ "prompt": "The {} has a mouth."
+ },
+ {
+ "index": 1255,
+ "image_id": 2342362,
+ "entity": "cat",
+ "caption": "A cat with its paws crossed.",
+ "question": [
+ "is there a cat ?",
+ "are there its paws ?"
+ ],
+ "prompt": "A {} with its paws crossed."
+ },
+ {
+ "index": 1256,
+ "image_id": 2342361,
+ "entity": "cat",
+ "caption": "A chicken is on the back of a cat.",
+ "question": [
+ "is there a chicken ?",
+ "is there the back ?",
+ "is there a cat ?"
+ ],
+ "prompt": "A chicken is on the back of a {}."
+ },
+ {
+ "index": 1257,
+ "image_id": 2342361,
+ "entity": "cat",
+ "caption": "A cat is sitting on a brown folded surface.",
+ "question": [
+ "is there a cat ?",
+ "is there a brown folded surface ?"
+ ],
+ "prompt": "A {} is sitting on a brown folded surface."
+ },
+ {
+ "index": 1258,
+ "image_id": 2342361,
+ "entity": "cat",
+ "caption": "The cat is carrying the duck",
+ "question": [
+ "is there the cat ?",
+ "is there the duck ?"
+ ],
+ "prompt": "The {} is carrying the duck"
+ },
+ {
+ "index": 1259,
+ "image_id": 2342361,
+ "entity": "cat",
+ "caption": "duck is laying on top of the cat",
+ "question": [
+ "is there duck ?",
+ "is there top ?",
+ "is there the cat ?"
+ ],
+ "prompt": "duck is laying on top of the {}"
+ },
+ {
+ "index": 1260,
+ "image_id": 2342361,
+ "entity": "cat",
+ "caption": "cat has a white nose",
+ "question": [
+ "is there cat ?",
+ "is there a white nose ?"
+ ],
+ "prompt": "{} has a white nose"
+ },
+ {
+ "index": 1261,
+ "image_id": 2341831,
+ "entity": "cat",
+ "caption": "a cat sitting on a rainbow rug",
+ "question": [
+ "is there a cat ?",
+ "is there a rainbow rug ?"
+ ],
+ "prompt": "a {} sitting on a rainbow rug"
+ },
+ {
+ "index": 1262,
+ "image_id": 2341641,
+ "entity": "cat",
+ "caption": "cat is on blanket",
+ "question": [
+ "is there cat ?",
+ "is there blanket ?"
+ ],
+ "prompt": "{} is on blanket"
+ },
+ {
+ "index": 1263,
+ "image_id": 2341366,
+ "entity": "cat",
+ "caption": "ears of cat are black",
+ "question": [
+ "are there ears ?",
+ "is there cat ?"
+ ],
+ "prompt": "ears of {} are black"
+ },
+ {
+ "index": 1264,
+ "image_id": 2341366,
+ "entity": "cat",
+ "caption": "the nose of cat is black",
+ "question": [
+ "is there the nose ?",
+ "is there cat ?"
+ ],
+ "prompt": "the nose of {} is black"
+ },
+ {
+ "index": 1265,
+ "image_id": 2341366,
+ "entity": "cat",
+ "caption": "cat ignores cat",
+ "question": [
+ "is there cat ?",
+ "is there cat ?"
+ ],
+ "prompt": "{} ignores {}"
+ },
+ {
+ "index": 1266,
+ "image_id": 2341366,
+ "entity": "cat",
+ "caption": "indoor cat has green, likely heart-shape tag",
+ "question": [
+ "is there indoor cat ?",
+ "is there green, likely heart-shape tag ?"
+ ],
+ "prompt": "indoor {} has green, likely heart-shape tag"
+ },
+ {
+ "index": 1267,
+ "image_id": 2341366,
+ "entity": "cat",
+ "caption": "outdoor cat has lavender, unknown shape tag",
+ "question": [
+ "is there outdoor cat ?",
+ "is there lavender ?",
+ "is there unknown shape tag ?"
+ ],
+ "prompt": "outdoor {} has lavender, unknown shape tag"
+ },
+ {
+ "index": 1268,
+ "image_id": 2341366,
+ "entity": "cat",
+ "caption": "outdoor cat has black nose, white cheek area",
+ "question": [
+ "is there outdoor cat ?",
+ "is there black nose ?",
+ "is there white cheek area ?"
+ ],
+ "prompt": "outdoor {} has black nose, white cheek area"
+ },
+ {
+ "index": 1269,
+ "image_id": 2341366,
+ "entity": "cat",
+ "caption": "indoor cat has white nose, black cheek area",
+ "question": [
+ "is there indoor cat ?",
+ "is there white nose ?",
+ "is there black cheek area ?"
+ ],
+ "prompt": "indoor {} has white nose, black cheek area"
+ },
+ {
+ "index": 1270,
+ "image_id": 2341366,
+ "entity": "cat",
+ "caption": "white sliding door separates well-acquainted cats for the time being",
+ "question": [
+ "is there white sliding door ?",
+ "are there well-acquainted cats ?",
+ "is there the time ?"
+ ],
+ "prompt": "white sliding door separates well-acquainted {}s for the time being"
+ },
+ {
+ "index": 1271,
+ "image_id": 2341366,
+ "entity": "cat",
+ "caption": "outdoor cat has a largely black body with a small red tinge here & there, & a clever face",
+ "question": [
+ "is there outdoor cat ?",
+ "is there a largely black body ?",
+ "is there a small red tinge ?",
+ "is there a clever face ?"
+ ],
+ "prompt": "outdoor {} has a largely black body with a small red tinge here & there, & a clever face"
+ },
+ {
+ "index": 1272,
+ "image_id": 2341286,
+ "entity": "cat",
+ "caption": "A cats front left white paw.",
+ "question": [
+ "are there a cats ?"
+ ],
+ "prompt": "A {}s front left white paw."
+ },
+ {
+ "index": 1273,
+ "image_id": 2341251,
+ "entity": "cat",
+ "caption": "the cat lays on a blanket",
+ "question": [
+ "is there the cat ?",
+ "is there a blanket ?"
+ ],
+ "prompt": "the {} lays on a blanket"
+ },
+ {
+ "index": 1274,
+ "image_id": 2341145,
+ "entity": "cat",
+ "caption": "Dark left eye of a cat.",
+ "question": [
+ "is there eye ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Dark left eye of a {}."
+ },
+ {
+ "index": 1275,
+ "image_id": 2340804,
+ "entity": "cat",
+ "caption": "tufts of long fur between the toes is consistent with a longhair cat",
+ "question": [
+ "are there tufts ?",
+ "is there long fur ?",
+ "are there the toes ?",
+ "is there a longhair cat ?"
+ ],
+ "prompt": "tufts of long fur between the toes is consistent with a longhair {}"
+ },
+ {
+ "index": 1276,
+ "image_id": 2340468,
+ "entity": "cat",
+ "caption": "cat is laying on a rug",
+ "question": [
+ "is there cat ?",
+ "is there a rug ?"
+ ],
+ "prompt": "{} is laying on a rug"
+ },
+ {
+ "index": 1277,
+ "image_id": 2340468,
+ "entity": "cat",
+ "caption": "cat has white whiskers ",
+ "question": [
+ "is there cat ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "{} has white whiskers "
+ },
+ {
+ "index": 1278,
+ "image_id": 2340468,
+ "entity": "cat",
+ "caption": "cat has stripes on tail ",
+ "question": [
+ "is there cat ?",
+ "are there stripes ?",
+ "is there tail ?"
+ ],
+ "prompt": "{} has stripes on tail "
+ },
+ {
+ "index": 1279,
+ "image_id": 2339439,
+ "entity": "cat",
+ "caption": "the cats left paw",
+ "question": [
+ "are there the cats ?",
+ "is there paw ?"
+ ],
+ "prompt": "the {}s left paw"
+ },
+ {
+ "index": 1280,
+ "image_id": 2339439,
+ "entity": "cat",
+ "caption": "the cats right eye",
+ "question": [
+ "are there the cats ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {}s right eye"
+ },
+ {
+ "index": 1281,
+ "image_id": 2339439,
+ "entity": "cat",
+ "caption": "the cats left eye",
+ "question": [
+ "are there the cats ?",
+ "is there eye ?"
+ ],
+ "prompt": "the {}s left eye"
+ },
+ {
+ "index": 1282,
+ "image_id": 2339439,
+ "entity": "cat",
+ "caption": "the stripes on the cats head",
+ "question": [
+ "are there the stripes ?",
+ "are there the cats ?"
+ ],
+ "prompt": "the stripes on the {}s head"
+ },
+ {
+ "index": 1283,
+ "image_id": 2339439,
+ "entity": "cat",
+ "caption": "the cat has intense golden eyes",
+ "question": [
+ "is there the cat ?",
+ "are there intense golden eyes ?"
+ ],
+ "prompt": "the {} has intense golden eyes"
+ },
+ {
+ "index": 1284,
+ "image_id": 2339439,
+ "entity": "cat",
+ "caption": "the cat also has tabby points on her head",
+ "question": [
+ "is there the cat ?",
+ "are there tabby points ?",
+ "is there her head ?"
+ ],
+ "prompt": "the {} also has tabby points on her head"
+ },
+ {
+ "index": 1285,
+ "image_id": 2339439,
+ "entity": "cat",
+ "caption": "the meat keeper is behind the cat's head",
+ "question": [
+ "is there the meat keeper ?",
+ "is there the cat's head ?"
+ ],
+ "prompt": "the meat keeper is behind the {}'s head"
+ },
+ {
+ "index": 1286,
+ "image_id": 2339439,
+ "entity": "cat",
+ "caption": "the cat's nose is pink and gray",
+ "question": [
+ "is there the cat's nose ?"
+ ],
+ "prompt": "the {}'s nose is pink and gray"
+ },
+ {
+ "index": 1287,
+ "image_id": 2339439,
+ "entity": "cat",
+ "caption": "the cat is standing in the vegetable keeper",
+ "question": [
+ "is there the cat ?",
+ "is there the vegetable keeper ?"
+ ],
+ "prompt": "the {} is standing in the vegetable keeper"
+ },
+ {
+ "index": 1288,
+ "image_id": 2338581,
+ "entity": "cat",
+ "caption": "cat has long white whiskers",
+ "question": [
+ "is there cat ?",
+ "are there long white whiskers ?"
+ ],
+ "prompt": "{} has long white whiskers"
+ },
+ {
+ "index": 1289,
+ "image_id": 2338416,
+ "entity": "cat",
+ "caption": "Bathroom sink faucet behind the cat",
+ "question": [
+ "is there bathroom ?",
+ "is there faucet ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Bathroom sink faucet behind the {}"
+ },
+ {
+ "index": 1290,
+ "image_id": 2338416,
+ "entity": "cat",
+ "caption": "whiskers ont he cat",
+ "question": [
+ "are there whiskers ?"
+ ],
+ "prompt": "whiskers ont he {}"
+ },
+ {
+ "index": 1291,
+ "image_id": 2338363,
+ "entity": "cat",
+ "caption": "cat is wearinga cape",
+ "question": [
+ "is there cat ?",
+ "is there wearinga cape ?"
+ ],
+ "prompt": "{} is wearinga cape"
+ },
+ {
+ "index": 1292,
+ "image_id": 2338363,
+ "entity": "cat",
+ "caption": "cat has orange nose",
+ "question": [
+ "is there cat ?",
+ "is there orange nose ?"
+ ],
+ "prompt": "{} has orange nose"
+ },
+ {
+ "index": 1293,
+ "image_id": 2338363,
+ "entity": "cat",
+ "caption": "cat has thick orange fur",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "{} has thick orange fur"
+ },
+ {
+ "index": 1294,
+ "image_id": 2338363,
+ "entity": "cat",
+ "caption": "cat is on grey table",
+ "question": [
+ "is there cat ?",
+ "is there grey table ?"
+ ],
+ "prompt": "{} is on grey table"
+ },
+ {
+ "index": 1295,
+ "image_id": 2338063,
+ "entity": "cat",
+ "caption": "an ear ont he cat",
+ "question": [
+ "is there an ear ont ?",
+ "is there he cat ?"
+ ],
+ "prompt": "an ear ont he {}"
+ },
+ {
+ "index": 1296,
+ "image_id": 2338019,
+ "entity": "cat",
+ "caption": "cat is sleeping on the bed",
+ "question": [
+ "is there cat ?",
+ "is there the bed ?"
+ ],
+ "prompt": "{} is sleeping on the bed"
+ },
+ {
+ "index": 1297,
+ "image_id": 2337686,
+ "entity": "cat",
+ "caption": "the cat is drinking water ",
+ "question": [
+ "is there the cat ?",
+ "is there water ?"
+ ],
+ "prompt": "the {} is drinking water "
+ },
+ {
+ "index": 1298,
+ "image_id": 2337686,
+ "entity": "cat",
+ "caption": "the cat is in the sink ",
+ "question": [
+ "is there the cat ?",
+ "is there the sink ?"
+ ],
+ "prompt": "the {} is in the sink "
+ },
+ {
+ "index": 1299,
+ "image_id": 2337686,
+ "entity": "cat",
+ "caption": "the cat is in the sink basin ",
+ "question": [
+ "is there the cat ?",
+ "is there the sink basin ?"
+ ],
+ "prompt": "the {} is in the sink basin "
+ },
+ {
+ "index": 1300,
+ "image_id": 2337375,
+ "entity": "cat",
+ "caption": "the cat is wearing a bow ",
+ "question": [
+ "is there the cat ?",
+ "is there a bow ?"
+ ],
+ "prompt": "the {} is wearing a bow "
+ },
+ {
+ "index": 1301,
+ "image_id": 2337375,
+ "entity": "cat",
+ "caption": "the cat has a black nose ",
+ "question": [
+ "is there the cat ?",
+ "is there a black nose ?"
+ ],
+ "prompt": "the {} has a black nose "
+ },
+ {
+ "index": 1302,
+ "image_id": 2337364,
+ "entity": "cat",
+ "caption": "blue case the cat is on",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "blue case the {} is on"
+ },
+ {
+ "index": 1303,
+ "image_id": 2337170,
+ "entity": "cat",
+ "caption": "blanket cat is laying on",
+ "question": [
+ "is there blanket cat ?"
+ ],
+ "prompt": "blanket {} is laying on"
+ },
+ {
+ "index": 1304,
+ "image_id": 2336520,
+ "entity": "cat",
+ "caption": "the cat is on the carpet",
+ "question": [
+ "is there the cat ?",
+ "is there the carpet ?"
+ ],
+ "prompt": "the {} is on the carpet"
+ },
+ {
+ "index": 1305,
+ "image_id": 2336520,
+ "entity": "cat",
+ "caption": "a cat is on top of another cat",
+ "question": [
+ "is there a cat ?",
+ "is there top ?",
+ "is there another cat ?"
+ ],
+ "prompt": "a {} is on top of another {}"
+ },
+ {
+ "index": 1306,
+ "image_id": 2336520,
+ "entity": "cat",
+ "caption": "the cat is sleeping in the carpet",
+ "question": [
+ "is there the cat ?",
+ "is there the carpet ?"
+ ],
+ "prompt": "the {} is sleeping in the carpet"
+ },
+ {
+ "index": 1307,
+ "image_id": 2336520,
+ "entity": "cat",
+ "caption": "the cat's head is under the top cat",
+ "question": [
+ "is there the cat's head ?",
+ "is there the top cat ?"
+ ],
+ "prompt": "the {}'s head is under the top {}"
+ },
+ {
+ "index": 1308,
+ "image_id": 2336492,
+ "entity": "cat",
+ "caption": "cat has orange eyes",
+ "question": [
+ "is there cat ?",
+ "are there orange eyes ?"
+ ],
+ "prompt": "{} has orange eyes"
+ },
+ {
+ "index": 1309,
+ "image_id": 2336492,
+ "entity": "cat",
+ "caption": "cat has orange fur",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "{} has orange fur"
+ },
+ {
+ "index": 1310,
+ "image_id": 2335967,
+ "entity": "cat",
+ "caption": "cat is sitting on the cd case",
+ "question": [
+ "is there cat ?",
+ "is there the cd case ?"
+ ],
+ "prompt": "{} is sitting on the cd case"
+ },
+ {
+ "index": 1311,
+ "image_id": 2335754,
+ "entity": "cat",
+ "caption": "furry cat's tail hanging off windowsill",
+ "question": [
+ "is there furry cat's tail ?"
+ ],
+ "prompt": "furry {}'s tail hanging off windowsill"
+ },
+ {
+ "index": 1312,
+ "image_id": 2335686,
+ "entity": "cat",
+ "caption": "the cat is smelling the bird ",
+ "question": [
+ "is there the cat ?",
+ "is there the bird ?"
+ ],
+ "prompt": "the {} is smelling the bird "
+ },
+ {
+ "index": 1313,
+ "image_id": 2335686,
+ "entity": "cat",
+ "caption": "cat has perky ears ",
+ "question": [
+ "is there cat ?",
+ "are there perky ears ?"
+ ],
+ "prompt": "{} has perky ears "
+ },
+ {
+ "index": 1314,
+ "image_id": 2335682,
+ "entity": "cat",
+ "caption": "Black cat is wearing a collar",
+ "question": [
+ "is there black cat ?",
+ "is there a collar ?"
+ ],
+ "prompt": "Black {} is wearing a collar"
+ },
+ {
+ "index": 1315,
+ "image_id": 2335682,
+ "entity": "cat",
+ "caption": "black cat has a green eye",
+ "question": [
+ "is there black cat ?",
+ "is there a green eye ?"
+ ],
+ "prompt": "black {} has a green eye"
+ },
+ {
+ "index": 1316,
+ "image_id": 2335682,
+ "entity": "cat",
+ "caption": "silver buckle on the cats collar",
+ "question": [
+ "is there silver buckle ?",
+ "are there the cats ?"
+ ],
+ "prompt": "silver buckle on the {}s collar"
+ },
+ {
+ "index": 1317,
+ "image_id": 2335133,
+ "entity": "cat",
+ "caption": "cat pupils are oval",
+ "question": [
+ "are there cat pupils ?"
+ ],
+ "prompt": "{} pupils are oval"
+ },
+ {
+ "index": 1318,
+ "image_id": 2335133,
+ "entity": "cat",
+ "caption": "material under cat is plaid",
+ "question": [
+ "is there material ?",
+ "is there cat ?"
+ ],
+ "prompt": "material under {} is plaid"
+ },
+ {
+ "index": 1319,
+ "image_id": 2335097,
+ "entity": "cat",
+ "caption": "nose of cat is blackand white",
+ "question": [
+ "is there nose ?",
+ "is there cat ?"
+ ],
+ "prompt": "nose of {} is blackand white"
+ },
+ {
+ "index": 1320,
+ "image_id": 2334972,
+ "entity": "cat",
+ "caption": "The cat sits very close to the mouse. ",
+ "question": [
+ "is there the cat ?",
+ "is there the mouse ?"
+ ],
+ "prompt": "The {} sits very close to the mouse. "
+ },
+ {
+ "index": 1321,
+ "image_id": 2334778,
+ "entity": "cat",
+ "caption": "The cat is at the desk.",
+ "question": [
+ "is there the cat ?",
+ "is there the desk ?"
+ ],
+ "prompt": "The {} is at the desk."
+ },
+ {
+ "index": 1322,
+ "image_id": 2334778,
+ "entity": "cat",
+ "caption": "The cat has paws on the desk.",
+ "question": [
+ "is there the cat ?",
+ "are there paws ?",
+ "is there the desk ?"
+ ],
+ "prompt": "The {} has paws on the desk."
+ },
+ {
+ "index": 1323,
+ "image_id": 2334778,
+ "entity": "cat",
+ "caption": "The cat is sitting on the desk.",
+ "question": [
+ "is there the cat ?",
+ "is there the desk ?"
+ ],
+ "prompt": "The {} is sitting on the desk."
+ },
+ {
+ "index": 1324,
+ "image_id": 2334778,
+ "entity": "cat",
+ "caption": "The cat has tags.",
+ "question": [
+ "is there the cat ?",
+ "are there tags ?"
+ ],
+ "prompt": "The {} has tags."
+ },
+ {
+ "index": 1325,
+ "image_id": 2334600,
+ "entity": "cat",
+ "caption": "tail of cat is black",
+ "question": [
+ "is there tail ?",
+ "is there cat ?"
+ ],
+ "prompt": "tail of {} is black"
+ },
+ {
+ "index": 1326,
+ "image_id": 2334169,
+ "entity": "cat",
+ "caption": "The cat is in front of a keyboard",
+ "question": [
+ "is there the cat ?",
+ "is there front ?",
+ "is there a keyboard ?"
+ ],
+ "prompt": "The {} is in front of a keyboard"
+ },
+ {
+ "index": 1327,
+ "image_id": 2332843,
+ "entity": "cat",
+ "caption": "Book standing up next to a cat",
+ "question": [
+ "is there book ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Book standing up next to a {}"
+ },
+ {
+ "index": 1328,
+ "image_id": 2332737,
+ "entity": "cat",
+ "caption": "cat's eyes are black",
+ "question": [
+ "are there cat's eyes ?"
+ ],
+ "prompt": "{}'s eyes are black"
+ },
+ {
+ "index": 1329,
+ "image_id": 2332729,
+ "entity": "cat",
+ "caption": "The cat is sitting on the bench",
+ "question": [
+ "is there the cat ?",
+ "is there the bench ?"
+ ],
+ "prompt": "The {} is sitting on the bench"
+ },
+ {
+ "index": 1330,
+ "image_id": 2332729,
+ "entity": "cat",
+ "caption": "a cat sits on a bench",
+ "question": [
+ "is there a cat ?",
+ "is there a bench ?"
+ ],
+ "prompt": "a {} sits on a bench"
+ },
+ {
+ "index": 1331,
+ "image_id": 2332729,
+ "entity": "cat",
+ "caption": "the cat casts a shadow behind it",
+ "question": [
+ "is there the cat ?",
+ "is there a shadow ?"
+ ],
+ "prompt": "the {} casts a shadow behind it"
+ },
+ {
+ "index": 1332,
+ "image_id": 2332729,
+ "entity": "cat",
+ "caption": "the cat has a long tail",
+ "question": [
+ "is there the cat ?",
+ "is there a long tail ?"
+ ],
+ "prompt": "the {} has a long tail"
+ },
+ {
+ "index": 1333,
+ "image_id": 2332729,
+ "entity": "cat",
+ "caption": "the cat has some mats in it's fur",
+ "question": [
+ "is there the cat ?",
+ "are there some mats ?"
+ ],
+ "prompt": "the {} has some mats in it's fur"
+ },
+ {
+ "index": 1334,
+ "image_id": 2332102,
+ "entity": "cat",
+ "caption": "the cats eyes are wide open",
+ "question": [
+ "are there the cats ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {}s eyes are wide open"
+ },
+ {
+ "index": 1335,
+ "image_id": 2332102,
+ "entity": "cat",
+ "caption": "the inside of the cats ears are pink",
+ "question": [
+ "is there the inside ?",
+ "are there the cats ears ?"
+ ],
+ "prompt": "the inside of the {}s ears are pink"
+ },
+ {
+ "index": 1336,
+ "image_id": 2331858,
+ "entity": "cat",
+ "caption": "the cats face ",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s face "
+ },
+ {
+ "index": 1337,
+ "image_id": 2331806,
+ "entity": "cat",
+ "caption": "a cat is sitting in a chair",
+ "question": [
+ "is there a cat ?",
+ "is there a chair ?"
+ ],
+ "prompt": "a {} is sitting in a chair"
+ },
+ {
+ "index": 1338,
+ "image_id": 2331806,
+ "entity": "cat",
+ "caption": "cat has a pink nose",
+ "question": [
+ "is there cat ?",
+ "is there a pink nose ?"
+ ],
+ "prompt": "{} has a pink nose"
+ },
+ {
+ "index": 1339,
+ "image_id": 2331806,
+ "entity": "cat",
+ "caption": "A cats tail hanging by a perforated wall",
+ "question": [
+ "are there a cats tail ?",
+ "is there a perforated wall ?"
+ ],
+ "prompt": "A {}s tail hanging by a perforated wall"
+ },
+ {
+ "index": 1340,
+ "image_id": 2331506,
+ "entity": "cat",
+ "caption": "The cat's eye is greenish yellow.",
+ "question": [
+ "is there the cat's eye ?"
+ ],
+ "prompt": "The {}'s eye is greenish yellow."
+ },
+ {
+ "index": 1341,
+ "image_id": 2331506,
+ "entity": "cat",
+ "caption": "The cat is sitting on top of the purse strap.",
+ "question": [
+ "is there the cat ?",
+ "is there top ?",
+ "is there the purse strap ?"
+ ],
+ "prompt": "The {} is sitting on top of the purse strap."
+ },
+ {
+ "index": 1342,
+ "image_id": 2331387,
+ "entity": "cat",
+ "caption": "this is a cat's head",
+ "question": [
+ "is there a cat's head ?"
+ ],
+ "prompt": "this is a {}'s head"
+ },
+ {
+ "index": 1343,
+ "image_id": 2331387,
+ "entity": "cat",
+ "caption": "cat's eyes are gold",
+ "question": [
+ "are there cat's eyes ?"
+ ],
+ "prompt": "{}'s eyes are gold"
+ },
+ {
+ "index": 1344,
+ "image_id": 2331387,
+ "entity": "cat",
+ "caption": "laptop screen fuzzily visible behind the cat",
+ "question": [
+ "is there laptop screen ?",
+ "is there the cat ?"
+ ],
+ "prompt": "laptop screen fuzzily visible behind the {}"
+ },
+ {
+ "index": 1345,
+ "image_id": 2331387,
+ "entity": "cat",
+ "caption": "black cat has white whiskers",
+ "question": [
+ "is there black cat ?",
+ "are there white whiskers ?"
+ ],
+ "prompt": "black {} has white whiskers"
+ },
+ {
+ "index": 1346,
+ "image_id": 2331383,
+ "entity": "cat",
+ "caption": "cat is laying on the chair ",
+ "question": [
+ "is there cat ?",
+ "is there the chair ?"
+ ],
+ "prompt": "{} is laying on the chair "
+ },
+ {
+ "index": 1347,
+ "image_id": 2331383,
+ "entity": "cat",
+ "caption": "cat has yellow eyes ",
+ "question": [
+ "is there cat ?",
+ "are there yellow eyes ?"
+ ],
+ "prompt": "{} has yellow eyes "
+ },
+ {
+ "index": 1348,
+ "image_id": 2331252,
+ "entity": "cat",
+ "caption": "this is a cat's eye",
+ "question": [
+ "is there a cat's eye ?"
+ ],
+ "prompt": "this is a {}'s eye"
+ },
+ {
+ "index": 1349,
+ "image_id": 2331252,
+ "entity": "cat",
+ "caption": "this is a cat's claw",
+ "question": [
+ "is there a cat's claw ?"
+ ],
+ "prompt": "this is a {}'s claw"
+ },
+ {
+ "index": 1350,
+ "image_id": 2331130,
+ "entity": "cat",
+ "caption": "The paw belongs to a cat. ",
+ "question": [
+ "is there the paw ?",
+ "is there a cat ?"
+ ],
+ "prompt": "The paw belongs to a {}. "
+ },
+ {
+ "index": 1351,
+ "image_id": 2331130,
+ "entity": "cat",
+ "caption": "The cat has whiskers. ",
+ "question": [
+ "is there the cat ?",
+ "are there whiskers ?"
+ ],
+ "prompt": "The {} has whiskers. "
+ },
+ {
+ "index": 1352,
+ "image_id": 2331130,
+ "entity": "cat",
+ "caption": "cat has light paw",
+ "question": [
+ "is there cat ?",
+ "is there light paw ?"
+ ],
+ "prompt": "{} has light paw"
+ },
+ {
+ "index": 1353,
+ "image_id": 2331130,
+ "entity": "cat",
+ "caption": "cat has paw resting on mouse",
+ "question": [
+ "is there cat ?",
+ "is there paw ?",
+ "is there mouse ?"
+ ],
+ "prompt": "{} has paw resting on mouse"
+ },
+ {
+ "index": 1354,
+ "image_id": 2331130,
+ "entity": "cat",
+ "caption": "mouse is near cat",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "mouse is near {}"
+ },
+ {
+ "index": 1355,
+ "image_id": 2330905,
+ "entity": "cat",
+ "caption": "orange cat sniffing laptop",
+ "question": [
+ "is there orange cat ?",
+ "is there laptop ?"
+ ],
+ "prompt": "orange {} sniffing laptop"
+ },
+ {
+ "index": 1356,
+ "image_id": 2330751,
+ "entity": "cat",
+ "caption": "the cat has on a necklace",
+ "question": [
+ "is there the cat ?",
+ "is there a necklace ?"
+ ],
+ "prompt": "the {} has on a necklace"
+ },
+ {
+ "index": 1357,
+ "image_id": 2330751,
+ "entity": "cat",
+ "caption": "loop cat's tags are on ",
+ "question": [
+ "are there loop cat's tags ?"
+ ],
+ "prompt": "loop {}'s tags are on "
+ },
+ {
+ "index": 1358,
+ "image_id": 2330751,
+ "entity": "cat",
+ "caption": "collar cat is wearing",
+ "question": [
+ "is there collar cat ?"
+ ],
+ "prompt": "collar {} is wearing"
+ },
+ {
+ "index": 1359,
+ "image_id": 2330493,
+ "entity": "cat",
+ "caption": "the cat has a blue eye and a yellow eye",
+ "question": [
+ "is there the cat ?",
+ "is there a blue eye ?",
+ "is there a yellow eye ?"
+ ],
+ "prompt": "the {} has a blue eye and a yellow eye"
+ },
+ {
+ "index": 1360,
+ "image_id": 2330493,
+ "entity": "cat",
+ "caption": "the cat's whiskers are white",
+ "question": [
+ "are there the cat's whiskers ?"
+ ],
+ "prompt": "the {}'s whiskers are white"
+ },
+ {
+ "index": 1361,
+ "image_id": 2330077,
+ "entity": "cat",
+ "caption": "cat has mouth whiskers",
+ "question": [
+ "is there cat ?",
+ "are there mouth whiskers ?"
+ ],
+ "prompt": "{} has mouth whiskers"
+ },
+ {
+ "index": 1362,
+ "image_id": 2329884,
+ "entity": "cat",
+ "caption": "The cat is wearing a tie.",
+ "question": [
+ "is there the cat ?",
+ "is there a tie ?"
+ ],
+ "prompt": "The {} is wearing a tie."
+ },
+ {
+ "index": 1363,
+ "image_id": 2329884,
+ "entity": "cat",
+ "caption": "cat has eye on head",
+ "question": [
+ "is there cat ?",
+ "is there eye ?",
+ "is there head ?"
+ ],
+ "prompt": "{} has eye on head"
+ },
+ {
+ "index": 1364,
+ "image_id": 2329884,
+ "entity": "cat",
+ "caption": "cat has ear on head",
+ "question": [
+ "is there cat ?",
+ "is there ear ?",
+ "is there head ?"
+ ],
+ "prompt": "{} has ear on head"
+ },
+ {
+ "index": 1365,
+ "image_id": 2329884,
+ "entity": "cat",
+ "caption": "collar on cat is white",
+ "question": [
+ "is there collar ?",
+ "is there cat ?"
+ ],
+ "prompt": "collar on {} is white"
+ },
+ {
+ "index": 1366,
+ "image_id": 2329525,
+ "entity": "cat",
+ "caption": "A cat lies on the couch with the toys ",
+ "question": [
+ "is there a cat ?",
+ "is there the couch ?",
+ "are there the toys ?"
+ ],
+ "prompt": "A {} lies on the couch with the toys "
+ },
+ {
+ "index": 1367,
+ "image_id": 2329154,
+ "entity": "cat",
+ "caption": "The face of the cat is blurry",
+ "question": [
+ "is there the face ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The face of the {} is blurry"
+ },
+ {
+ "index": 1368,
+ "image_id": 2329048,
+ "entity": "cat",
+ "caption": "Yellow eyes on a cats face",
+ "question": [
+ "are there yellow eyes ?",
+ "are there a cats ?"
+ ],
+ "prompt": "Yellow eyes on a {}s face"
+ },
+ {
+ "index": 1369,
+ "image_id": 2328978,
+ "entity": "cat",
+ "caption": "The eyes of the cat are green",
+ "question": [
+ "are there the eyes ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The eyes of the {} are green"
+ },
+ {
+ "index": 1370,
+ "image_id": 2328762,
+ "entity": "cat",
+ "caption": "cat paw is white",
+ "question": [],
+ "prompt": "{} paw is white"
+ },
+ {
+ "index": 1371,
+ "image_id": 2328762,
+ "entity": "cat",
+ "caption": "cat has black and white fur",
+ "question": [
+ "is there cat ?",
+ "is there black and white fur ?"
+ ],
+ "prompt": "{} has black and white fur"
+ },
+ {
+ "index": 1372,
+ "image_id": 2328762,
+ "entity": "cat",
+ "caption": "cat's mouth is closed",
+ "question": [
+ "is there cat's mouth ?"
+ ],
+ "prompt": "{}'s mouth is closed"
+ },
+ {
+ "index": 1373,
+ "image_id": 2328762,
+ "entity": "cat",
+ "caption": "Black and white cat is looking out the window",
+ "question": [
+ "is there black and white cat ?",
+ "is there the window ?"
+ ],
+ "prompt": "Black and white {} is looking out the window"
+ },
+ {
+ "index": 1374,
+ "image_id": 2328762,
+ "entity": "cat",
+ "caption": "cat has green eyes ",
+ "question": [
+ "is there cat ?",
+ "are there green eyes ?"
+ ],
+ "prompt": "{} has green eyes "
+ },
+ {
+ "index": 1375,
+ "image_id": 2328620,
+ "entity": "cat",
+ "caption": "Bell hanging from cat's collar.",
+ "question": [
+ "is there bell ?",
+ "is there cat's collar ?"
+ ],
+ "prompt": "Bell hanging from {}'s collar."
+ },
+ {
+ "index": 1376,
+ "image_id": 2328324,
+ "entity": "cat",
+ "caption": "the cat is on a car",
+ "question": [
+ "is there the cat ?",
+ "is there a car ?"
+ ],
+ "prompt": "the {} is on a car"
+ },
+ {
+ "index": 1377,
+ "image_id": 2328108,
+ "entity": "cat",
+ "caption": "cat is laying in the chair",
+ "question": [
+ "is there cat ?",
+ "is there the chair ?"
+ ],
+ "prompt": "{} is laying in the chair"
+ },
+ {
+ "index": 1378,
+ "image_id": 2327987,
+ "entity": "cat",
+ "caption": "the paw of the cat by it's mouth",
+ "question": [
+ "is there the paw ?",
+ "is there the cat ?",
+ "is there mouth ?"
+ ],
+ "prompt": "the paw of the {} by it's mouth"
+ },
+ {
+ "index": 1379,
+ "image_id": 2327481,
+ "entity": "cat",
+ "caption": "a cat curled up on a shoe",
+ "question": [
+ "is there a cat ?",
+ "is there a shoe ?"
+ ],
+ "prompt": "a {} curled up on a shoe"
+ },
+ {
+ "index": 1380,
+ "image_id": 2326868,
+ "entity": "cat",
+ "caption": "The cat is in the suitcase.",
+ "question": [
+ "is there the cat ?",
+ "is there the suitcase ?"
+ ],
+ "prompt": "The {} is in the suitcase."
+ },
+ {
+ "index": 1381,
+ "image_id": 2326868,
+ "entity": "cat",
+ "caption": "The cat is lying in the luggage.",
+ "question": [
+ "is there the cat ?",
+ "is there the luggage ?"
+ ],
+ "prompt": "The {} is lying in the luggage."
+ },
+ {
+ "index": 1382,
+ "image_id": 2326460,
+ "entity": "cat",
+ "caption": "a cat with long whiskers opening its mouth to yawn",
+ "question": [
+ "is there a cat ?",
+ "are there long whiskers ?",
+ "is there its mouth ?",
+ "is there yawn ?"
+ ],
+ "prompt": "a {} with long whiskers opening its mouth to yawn"
+ },
+ {
+ "index": 1383,
+ "image_id": 2325083,
+ "entity": "cat",
+ "caption": "Gray and white cat is laying down on a keyboard",
+ "question": [
+ "is there gray and white cat ?",
+ "is there a keyboard ?"
+ ],
+ "prompt": "Gray and white {} is laying down on a keyboard"
+ },
+ {
+ "index": 1384,
+ "image_id": 2324630,
+ "entity": "cat",
+ "caption": "the cat is sitting on top of the person",
+ "question": [
+ "is there the cat ?",
+ "is there top ?",
+ "is there the person ?"
+ ],
+ "prompt": "the {} is sitting on top of the person"
+ },
+ {
+ "index": 1385,
+ "image_id": 2324630,
+ "entity": "cat",
+ "caption": "she is playing with the cat",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "she is playing with the {}"
+ },
+ {
+ "index": 1386,
+ "image_id": 2324465,
+ "entity": "cat",
+ "caption": "cat has light brown nose",
+ "question": [
+ "is there cat ?",
+ "is there light brown nose ?"
+ ],
+ "prompt": "{} has light brown nose"
+ },
+ {
+ "index": 1387,
+ "image_id": 2324465,
+ "entity": "cat",
+ "caption": "cat has tan tail",
+ "question": [
+ "is there cat ?",
+ "is there tan tail ?"
+ ],
+ "prompt": "{} has tan tail"
+ },
+ {
+ "index": 1388,
+ "image_id": 2324465,
+ "entity": "cat",
+ "caption": "The cats' eye has black line under",
+ "question": [
+ "are there the cats' eye ?",
+ "is there black line ?"
+ ],
+ "prompt": "The {}s' eye has black line under"
+ },
+ {
+ "index": 1389,
+ "image_id": 2323910,
+ "entity": "cat",
+ "caption": "cat has red collar",
+ "question": [
+ "is there cat ?",
+ "is there red collar ?"
+ ],
+ "prompt": "{} has red collar"
+ },
+ {
+ "index": 1390,
+ "image_id": 2323769,
+ "entity": "cat",
+ "caption": "the cat is leying on a mat",
+ "question": [
+ "is there the cat ?",
+ "is there a mat ?"
+ ],
+ "prompt": "the {} is leying on a mat"
+ },
+ {
+ "index": 1391,
+ "image_id": 2323769,
+ "entity": "cat",
+ "caption": "the cat is holding a remote",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "the {} is holding a remote"
+ },
+ {
+ "index": 1392,
+ "image_id": 2323768,
+ "entity": "cat",
+ "caption": "grey ear on cat",
+ "question": [
+ "is there grey ear ?",
+ "is there cat ?"
+ ],
+ "prompt": "grey ear on {}"
+ },
+ {
+ "index": 1393,
+ "image_id": 2323459,
+ "entity": "cat",
+ "caption": "a cat with eyes open",
+ "question": [
+ "is there a cat ?",
+ "are there eyes ?"
+ ],
+ "prompt": "a {} with eyes open"
+ },
+ {
+ "index": 1394,
+ "image_id": 2323389,
+ "entity": "cat",
+ "caption": "white fur in cats ear",
+ "question": [
+ "is there white fur ?",
+ "are there cats ?"
+ ],
+ "prompt": "white fur in {}s ear"
+ },
+ {
+ "index": 1395,
+ "image_id": 2323389,
+ "entity": "cat",
+ "caption": "a cat with its eye closed",
+ "question": [
+ "is there a cat ?",
+ "is there its eye ?"
+ ],
+ "prompt": "a {} with its eye closed"
+ },
+ {
+ "index": 1396,
+ "image_id": 2323369,
+ "entity": "cat",
+ "caption": "the cat's eyes is blue",
+ "question": [
+ "are there the cat's eyes ?"
+ ],
+ "prompt": "the {}'s eyes is blue"
+ },
+ {
+ "index": 1397,
+ "image_id": 2323369,
+ "entity": "cat",
+ "caption": "the cat's paws are on the table",
+ "question": [
+ "are there the cat's paws ?",
+ "is there the table ?"
+ ],
+ "prompt": "the {}'s paws are on the table"
+ },
+ {
+ "index": 1398,
+ "image_id": 2323369,
+ "entity": "cat",
+ "caption": "this cat has black stripes",
+ "question": [
+ "is there this cat ?",
+ "are there black stripes ?"
+ ],
+ "prompt": "this {} has black stripes"
+ },
+ {
+ "index": 1399,
+ "image_id": 2323369,
+ "entity": "cat",
+ "caption": "this cat has brown and black fur",
+ "question": [
+ "is there this cat ?",
+ "is there brown and black fur ?"
+ ],
+ "prompt": "this {} has brown and black fur"
+ },
+ {
+ "index": 1400,
+ "image_id": 2323171,
+ "entity": "cat",
+ "caption": "the window behind the cat is closed",
+ "question": [
+ "is there the window ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the window behind the {} is closed"
+ },
+ {
+ "index": 1401,
+ "image_id": 2323105,
+ "entity": "cat",
+ "caption": "cat has brown paws",
+ "question": [
+ "is there cat ?",
+ "are there brown paws ?"
+ ],
+ "prompt": "{} has brown paws"
+ },
+ {
+ "index": 1402,
+ "image_id": 2323105,
+ "entity": "cat",
+ "caption": "cat has eyes closed",
+ "question": [
+ "is there cat ?",
+ "are there eyes ?"
+ ],
+ "prompt": "{} has eyes closed"
+ },
+ {
+ "index": 1403,
+ "image_id": 2322726,
+ "entity": "cat",
+ "caption": "whiskers on cat left",
+ "question": [
+ "are there whiskers ?",
+ "is there cat ?"
+ ],
+ "prompt": "whiskers on {} left"
+ },
+ {
+ "index": 1404,
+ "image_id": 2322726,
+ "entity": "cat",
+ "caption": "cats nose is red",
+ "question": [
+ "are there cats nose ?"
+ ],
+ "prompt": "{}s nose is red"
+ },
+ {
+ "index": 1405,
+ "image_id": 2322560,
+ "entity": "cat",
+ "caption": "The cat is wearing a hat.",
+ "question": [
+ "is there the cat ?",
+ "is there a hat ?"
+ ],
+ "prompt": "The {} is wearing a hat."
+ },
+ {
+ "index": 1406,
+ "image_id": 2322560,
+ "entity": "cat",
+ "caption": "The cat is wearing a purple hat.",
+ "question": [
+ "is there the cat ?",
+ "is there a purple hat ?"
+ ],
+ "prompt": "The {} is wearing a purple hat."
+ },
+ {
+ "index": 1407,
+ "image_id": 2322560,
+ "entity": "cat",
+ "caption": "The hat is on the cat.",
+ "question": [
+ "is there the hat ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The hat is on the {}."
+ },
+ {
+ "index": 1408,
+ "image_id": 2322560,
+ "entity": "cat",
+ "caption": "A pink hat is on the cat.",
+ "question": [
+ "is there a pink hat ?",
+ "is there the cat ?"
+ ],
+ "prompt": "A pink hat is on the {}."
+ },
+ {
+ "index": 1409,
+ "image_id": 2322560,
+ "entity": "cat",
+ "caption": "cat has pink hat",
+ "question": [
+ "is there cat ?",
+ "is there pink hat ?"
+ ],
+ "prompt": "{} has pink hat"
+ },
+ {
+ "index": 1410,
+ "image_id": 2322560,
+ "entity": "cat",
+ "caption": "cat has black back",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "{} has black back"
+ },
+ {
+ "index": 1411,
+ "image_id": 2322560,
+ "entity": "cat",
+ "caption": "cat has pink skin around the mouth",
+ "question": [
+ "is there cat ?",
+ "is there pink skin ?",
+ "is there the mouth ?"
+ ],
+ "prompt": "{} has pink skin around the mouth"
+ },
+ {
+ "index": 1412,
+ "image_id": 2322102,
+ "entity": "cat",
+ "caption": "cat has a small pink nose",
+ "question": [
+ "is there cat ?",
+ "is there a small pink nose ?"
+ ],
+ "prompt": "{} has a small pink nose"
+ },
+ {
+ "index": 1413,
+ "image_id": 2322003,
+ "entity": "cat",
+ "caption": "cat is in a bathroom sink",
+ "question": [
+ "is there cat ?",
+ "is there a bathroom ?"
+ ],
+ "prompt": "{} is in a bathroom sink"
+ },
+ {
+ "index": 1414,
+ "image_id": 2322003,
+ "entity": "cat",
+ "caption": "A cat is in the sink",
+ "question": [
+ "is there a cat ?",
+ "is there the sink ?"
+ ],
+ "prompt": "A {} is in the sink"
+ },
+ {
+ "index": 1415,
+ "image_id": 2322003,
+ "entity": "cat",
+ "caption": "The basin of the sink the cat is laying inside of.",
+ "question": [
+ "is there the basin ?",
+ "is there the sink ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The basin of the sink the {} is laying inside of."
+ },
+ {
+ "index": 1416,
+ "image_id": 2321677,
+ "entity": "cat",
+ "caption": "cat is laying in sink",
+ "question": [
+ "is there cat ?",
+ "is there sink ?"
+ ],
+ "prompt": "{} is laying in sink"
+ },
+ {
+ "index": 1417,
+ "image_id": 2321421,
+ "entity": "cat",
+ "caption": "cat sits on the floor",
+ "question": [
+ "is there cat ?",
+ "is there the floor ?"
+ ],
+ "prompt": "{} sits on the floor"
+ },
+ {
+ "index": 1418,
+ "image_id": 2321421,
+ "entity": "cat",
+ "caption": "cat has a blue collar",
+ "question": [
+ "is there cat ?",
+ "is there a blue collar ?"
+ ],
+ "prompt": "{} has a blue collar"
+ },
+ {
+ "index": 1419,
+ "image_id": 2321421,
+ "entity": "cat",
+ "caption": "orange cat has pointy ears",
+ "question": [
+ "is there orange cat ?",
+ "are there pointy ears ?"
+ ],
+ "prompt": "orange {} has pointy ears"
+ },
+ {
+ "index": 1420,
+ "image_id": 2321421,
+ "entity": "cat",
+ "caption": "a orange cat with its leg raised",
+ "question": [
+ "is there a orange cat ?",
+ "is there its leg ?"
+ ],
+ "prompt": "a orange {} with its leg raised"
+ },
+ {
+ "index": 1421,
+ "image_id": 2321244,
+ "entity": "cat",
+ "caption": "cat is playing with sandals",
+ "question": [
+ "is there cat ?",
+ "are there sandals ?"
+ ],
+ "prompt": "{} is playing with sandals"
+ },
+ {
+ "index": 1422,
+ "image_id": 2320723,
+ "entity": "cat",
+ "caption": "the cat is laying on a keyboard",
+ "question": [
+ "is there the cat ?",
+ "is there a keyboard ?"
+ ],
+ "prompt": "the {} is laying on a keyboard"
+ },
+ {
+ "index": 1423,
+ "image_id": 2320723,
+ "entity": "cat",
+ "caption": "the laptop the cat is on",
+ "question": [
+ "is there the laptop ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the laptop the {} is on"
+ },
+ {
+ "index": 1424,
+ "image_id": 2320715,
+ "entity": "cat",
+ "caption": "a cat cuddles a mouse",
+ "question": [
+ "is there a cat ?",
+ "is there a mouse ?"
+ ],
+ "prompt": "a {} cuddles a mouse"
+ },
+ {
+ "index": 1425,
+ "image_id": 2320715,
+ "entity": "cat",
+ "caption": "a baby cat wrapped around a mouse",
+ "question": [
+ "is there a baby cat ?",
+ "is there a mouse ?"
+ ],
+ "prompt": "a baby {} wrapped around a mouse"
+ },
+ {
+ "index": 1426,
+ "image_id": 2320576,
+ "entity": "cat",
+ "caption": "chair the cat is sitting on",
+ "question": [
+ "is there chair ?",
+ "is there the cat ?"
+ ],
+ "prompt": "chair the {} is sitting on"
+ },
+ {
+ "index": 1427,
+ "image_id": 2320565,
+ "entity": "cat",
+ "caption": "The cat has a paw",
+ "question": [
+ "is there the cat ?",
+ "is there a paw ?"
+ ],
+ "prompt": "The {} has a paw"
+ },
+ {
+ "index": 1428,
+ "image_id": 2320521,
+ "entity": "cat",
+ "caption": "The cat is laying on the closed suitcase lid.",
+ "question": [
+ "is there the cat ?",
+ "is there the closed suitcase lid ?"
+ ],
+ "prompt": "The {} is laying on the closed suitcase lid."
+ },
+ {
+ "index": 1429,
+ "image_id": 2320439,
+ "entity": "cat",
+ "caption": "Wooden bookshelf that the cat is standing on",
+ "question": [
+ "is there wooden bookshelf ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Wooden bookshelf that the {} is standing on"
+ },
+ {
+ "index": 1430,
+ "image_id": 2320345,
+ "entity": "cat",
+ "caption": "The cat is looking at another cat.",
+ "question": [
+ "is there the cat ?",
+ "is there another cat ?"
+ ],
+ "prompt": "The {} is looking at another {}."
+ },
+ {
+ "index": 1431,
+ "image_id": 2320345,
+ "entity": "cat",
+ "caption": "The cat has a black stripe on his head.",
+ "question": [
+ "is there the cat ?",
+ "is there a black stripe ?",
+ "is there his head ?"
+ ],
+ "prompt": "The {} has a black stripe on his head."
+ },
+ {
+ "index": 1432,
+ "image_id": 2320345,
+ "entity": "cat",
+ "caption": "The cat's right ear is pointy.",
+ "question": [
+ "is there the cat's right ear ?"
+ ],
+ "prompt": "The {}'s right ear is pointy."
+ },
+ {
+ "index": 1433,
+ "image_id": 2320345,
+ "entity": "cat",
+ "caption": "The cat is looking at the second cat.",
+ "question": [
+ "is there the cat ?",
+ "is there the second cat ?"
+ ],
+ "prompt": "The {} is looking at the second {}."
+ },
+ {
+ "index": 1434,
+ "image_id": 2320345,
+ "entity": "cat",
+ "caption": "The cat has a dark pattern on his head.",
+ "question": [
+ "is there the cat ?",
+ "is there a dark pattern ?",
+ "is there his head ?"
+ ],
+ "prompt": "The {} has a dark pattern on his head."
+ },
+ {
+ "index": 1435,
+ "image_id": 2320229,
+ "entity": "cat",
+ "caption": "cat is eating cake",
+ "question": [
+ "is there cat ?",
+ "is there cake ?"
+ ],
+ "prompt": "{} is eating cake"
+ },
+ {
+ "index": 1436,
+ "image_id": 2320061,
+ "entity": "cat",
+ "caption": "The cat has many wiskers",
+ "question": [
+ "is there the cat ?",
+ "are there many wiskers ?"
+ ],
+ "prompt": "The {} has many wiskers"
+ },
+ {
+ "index": 1437,
+ "image_id": 2319924,
+ "entity": "cat",
+ "caption": "the cat is on a desk ",
+ "question": [
+ "is there the cat ?",
+ "is there a desk ?"
+ ],
+ "prompt": "the {} is on a desk "
+ },
+ {
+ "index": 1438,
+ "image_id": 2319886,
+ "entity": "cat",
+ "caption": "eyes of the cat closed",
+ "question": [
+ "are there eyes ?",
+ "is there the cat ?"
+ ],
+ "prompt": "eyes of the {} closed"
+ },
+ {
+ "index": 1439,
+ "image_id": 2319886,
+ "entity": "cat",
+ "caption": "cat nose is pink",
+ "question": [
+ "is there cat nose ?"
+ ],
+ "prompt": "{} nose is pink"
+ },
+ {
+ "index": 1440,
+ "image_id": 2319865,
+ "entity": "cat",
+ "caption": "cat is inside a moving vehicle",
+ "question": [
+ "is there cat ?",
+ "is there a moving vehicle ?"
+ ],
+ "prompt": "{} is inside a moving vehicle"
+ },
+ {
+ "index": 1441,
+ "image_id": 2319865,
+ "entity": "cat",
+ "caption": "cat eyes are light green",
+ "question": [
+ "are there cat eyes ?"
+ ],
+ "prompt": "{} eyes are light green"
+ },
+ {
+ "index": 1442,
+ "image_id": 2319865,
+ "entity": "cat",
+ "caption": "window of vehicle that cat is in",
+ "question": [
+ "is there window ?",
+ "is there vehicle ?",
+ "is there cat ?"
+ ],
+ "prompt": "window of vehicle that {} is in"
+ },
+ {
+ "index": 1443,
+ "image_id": 2319796,
+ "entity": "cat",
+ "caption": "The cat eyes are green.",
+ "question": [
+ "are there the cat eyes ?"
+ ],
+ "prompt": "The {} eyes are green."
+ },
+ {
+ "index": 1444,
+ "image_id": 2319796,
+ "entity": "cat",
+ "caption": "The cat has a hairy tail.",
+ "question": [
+ "is there the cat ?",
+ "is there a hairy tail ?"
+ ],
+ "prompt": "The {} has a hairy tail."
+ },
+ {
+ "index": 1445,
+ "image_id": 2319796,
+ "entity": "cat",
+ "caption": "The cat has a white nose.",
+ "question": [
+ "is there the cat ?",
+ "is there a white nose ?"
+ ],
+ "prompt": "The {} has a white nose."
+ },
+ {
+ "index": 1446,
+ "image_id": 2319723,
+ "entity": "cat",
+ "caption": "Dog sniffing a cat",
+ "question": [
+ "is there dog ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Dog sniffing a {}"
+ },
+ {
+ "index": 1447,
+ "image_id": 2319723,
+ "entity": "cat",
+ "caption": "cat has a pink nose ",
+ "question": [
+ "is there cat ?",
+ "is there a pink nose ?"
+ ],
+ "prompt": "{} has a pink nose "
+ },
+ {
+ "index": 1448,
+ "image_id": 2319723,
+ "entity": "cat",
+ "caption": "the dog is kissing the cat",
+ "question": [
+ "is there the dog ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the dog is kissing the {}"
+ },
+ {
+ "index": 1449,
+ "image_id": 2319723,
+ "entity": "cat",
+ "caption": "the man is touching the cat",
+ "question": [
+ "is there the man ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the man is touching the {}"
+ },
+ {
+ "index": 1450,
+ "image_id": 2319723,
+ "entity": "cat",
+ "caption": "the cat has diamond shaped eyes",
+ "question": [
+ "is there the cat ?",
+ "are there diamond shaped eyes ?"
+ ],
+ "prompt": "the {} has diamond shaped eyes"
+ },
+ {
+ "index": 1451,
+ "image_id": 2319606,
+ "entity": "cat",
+ "caption": "cats paw is on the mousepad ",
+ "question": [
+ "are there cats ?",
+ "is there paw ?",
+ "is there the mousepad ?"
+ ],
+ "prompt": "{}s paw is on the mousepad "
+ },
+ {
+ "index": 1452,
+ "image_id": 2319606,
+ "entity": "cat",
+ "caption": "woman laying down next to cat ",
+ "question": [
+ "is there woman ?",
+ "is there cat ?"
+ ],
+ "prompt": "woman laying down next to {} "
+ },
+ {
+ "index": 1453,
+ "image_id": 2319606,
+ "entity": "cat",
+ "caption": "woman has nose against cat's leg",
+ "question": [
+ "is there woman ?",
+ "is there nose ?",
+ "is there cat's leg ?"
+ ],
+ "prompt": "woman has nose against {}'s leg"
+ },
+ {
+ "index": 1454,
+ "image_id": 2319460,
+ "entity": "cat",
+ "caption": "cat sits on a bed",
+ "question": [
+ "is there cat ?",
+ "is there a bed ?"
+ ],
+ "prompt": "{} sits on a bed"
+ },
+ {
+ "index": 1455,
+ "image_id": 2319460,
+ "entity": "cat",
+ "caption": "cat is white and black ",
+ "question": [
+ "is there cat ?"
+ ],
+ "prompt": "{} is white and black "
+ },
+ {
+ "index": 1456,
+ "image_id": 2319460,
+ "entity": "cat",
+ "caption": "the cat has white legs",
+ "question": [
+ "is there the cat ?",
+ "are there white legs ?"
+ ],
+ "prompt": "the {} has white legs"
+ },
+ {
+ "index": 1457,
+ "image_id": 2319460,
+ "entity": "cat",
+ "caption": "the cat has a heart tag",
+ "question": [
+ "is there the cat ?",
+ "is there a heart tag ?"
+ ],
+ "prompt": "the {} has a heart tag"
+ },
+ {
+ "index": 1458,
+ "image_id": 2319460,
+ "entity": "cat",
+ "caption": "the glass is behind the cat",
+ "question": [
+ "is there the glass ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the glass is behind the {}"
+ },
+ {
+ "index": 1459,
+ "image_id": 2319460,
+ "entity": "cat",
+ "caption": "a dresser is behind the cat",
+ "question": [
+ "is there a dresser ?",
+ "is there the cat ?"
+ ],
+ "prompt": "a dresser is behind the {}"
+ },
+ {
+ "index": 1460,
+ "image_id": 2319460,
+ "entity": "cat",
+ "caption": "a cat wearing a heart shaped tag",
+ "question": [
+ "is there a cat ?",
+ "is there a heart shaped tag ?"
+ ],
+ "prompt": "a {} wearing a heart shaped tag"
+ },
+ {
+ "index": 1461,
+ "image_id": 2319460,
+ "entity": "cat",
+ "caption": "a black and white cat with its eyes closed",
+ "question": [
+ "is there a black and white cat ?",
+ "are there its eyes ?"
+ ],
+ "prompt": "a black and white {} with its eyes closed"
+ },
+ {
+ "index": 1462,
+ "image_id": 2319077,
+ "entity": "cat",
+ "caption": "Man's fingers that are holding a bottle and a cat.",
+ "question": [
+ "are there man's fingers ?",
+ "is there a bottle ?",
+ "is there a cat ?"
+ ],
+ "prompt": "Man's fingers that are holding a bottle and a {}."
+ },
+ {
+ "index": 1463,
+ "image_id": 2318834,
+ "entity": "cat",
+ "caption": "Three cans of cat food stacked. ",
+ "question": [
+ "are there three cans ?",
+ "is there cat food ?"
+ ],
+ "prompt": "Three cans of {} food stacked. "
+ },
+ {
+ "index": 1464,
+ "image_id": 2318716,
+ "entity": "cat",
+ "caption": "cat looks over bag's edge",
+ "question": [
+ "is there cat ?",
+ "is there bag's edge ?"
+ ],
+ "prompt": "{} looks over bag's edge"
+ },
+ {
+ "index": 1465,
+ "image_id": 2318670,
+ "entity": "cat",
+ "caption": "a cat spread on a bed ",
+ "question": [
+ "is there a cat ?",
+ "is there a bed ?"
+ ],
+ "prompt": "a {} spread on a bed "
+ },
+ {
+ "index": 1466,
+ "image_id": 2318355,
+ "entity": "cat",
+ "caption": "The cat is in a suitcase.",
+ "question": [
+ "is there the cat ?",
+ "is there a suitcase ?"
+ ],
+ "prompt": "The {} is in a suitcase."
+ },
+ {
+ "index": 1467,
+ "image_id": 2318181,
+ "entity": "cat",
+ "caption": "A cat on a blue table stand",
+ "question": [
+ "is there a cat ?",
+ "is there a blue table ?"
+ ],
+ "prompt": "A {} on a blue table stand"
+ },
+ {
+ "index": 1468,
+ "image_id": 2318038,
+ "entity": "cat",
+ "caption": "he cat has a right ear",
+ "question": [
+ "is there cat ?",
+ "is there a right ear ?"
+ ],
+ "prompt": "he {} has a right ear"
+ },
+ {
+ "index": 1469,
+ "image_id": 2318038,
+ "entity": "cat",
+ "caption": "the cat has a mouth",
+ "question": [
+ "is there the cat ?",
+ "is there a mouth ?"
+ ],
+ "prompt": "the {} has a mouth"
+ },
+ {
+ "index": 1470,
+ "image_id": 2317774,
+ "entity": "cat",
+ "caption": "cat curled up on floor",
+ "question": [
+ "is there cat ?",
+ "is there floor ?"
+ ],
+ "prompt": "{} curled up on floor"
+ },
+ {
+ "index": 1471,
+ "image_id": 2317774,
+ "entity": "cat",
+ "caption": "cat is white with light brown and dark brown spots",
+ "question": [
+ "is there cat ?",
+ "are there light brown and dark brown spots ?"
+ ],
+ "prompt": "{} is white with light brown and dark brown spots"
+ },
+ {
+ "index": 1472,
+ "image_id": 2317774,
+ "entity": "cat",
+ "caption": "cat is touching the mirrored surface",
+ "question": [
+ "is there cat ?",
+ "is there the mirrored surface ?"
+ ],
+ "prompt": "{} is touching the mirrored surface"
+ },
+ {
+ "index": 1473,
+ "image_id": 2317774,
+ "entity": "cat",
+ "caption": "part of the cats fur",
+ "question": [
+ "is there part ?",
+ "are there the cats ?"
+ ],
+ "prompt": "part of the {}s fur"
+ },
+ {
+ "index": 1474,
+ "image_id": 2317764,
+ "entity": "cat",
+ "caption": "a cat laying in a bathroom sink",
+ "question": [
+ "is there a cat ?",
+ "is there a bathroom ?"
+ ],
+ "prompt": "a {} laying in a bathroom sink"
+ },
+ {
+ "index": 1475,
+ "image_id": 2317714,
+ "entity": "cat",
+ "caption": "cat is laying on black fabric bag",
+ "question": [
+ "is there cat ?",
+ "is there black fabric bag ?"
+ ],
+ "prompt": "{} is laying on black fabric bag"
+ },
+ {
+ "index": 1476,
+ "image_id": 2317714,
+ "entity": "cat",
+ "caption": "face of cat is white and brown ",
+ "question": [
+ "is there face ?",
+ "is there cat ?"
+ ],
+ "prompt": "face of {} is white and brown "
+ },
+ {
+ "index": 1477,
+ "image_id": 2317714,
+ "entity": "cat",
+ "caption": "cat is inside a suitcase",
+ "question": [
+ "is there cat ?",
+ "is there a suitcase ?"
+ ],
+ "prompt": "{} is inside a suitcase"
+ },
+ {
+ "index": 1478,
+ "image_id": 2317614,
+ "entity": "cat",
+ "caption": "the cat has long eyebrows",
+ "question": [
+ "is there the cat ?",
+ "are there long eyebrows ?"
+ ],
+ "prompt": "the {} has long eyebrows"
+ },
+ {
+ "index": 1479,
+ "image_id": 2317570,
+ "entity": "cat",
+ "caption": "a left cat ear ",
+ "question": [
+ "is there a left cat ?"
+ ],
+ "prompt": "a left {} ear "
+ },
+ {
+ "index": 1480,
+ "image_id": 2317570,
+ "entity": "cat",
+ "caption": "Two cats are on a brown desk",
+ "question": [
+ "are there two cats ?",
+ "is there a brown desk ?"
+ ],
+ "prompt": "Two {}s are on a brown desk"
+ },
+ {
+ "index": 1481,
+ "image_id": 2317478,
+ "entity": "cat",
+ "caption": "tail of cat is long",
+ "question": [
+ "is there tail ?",
+ "is there cat ?"
+ ],
+ "prompt": "tail of {} is long"
+ },
+ {
+ "index": 1482,
+ "image_id": 2317428,
+ "entity": "cat",
+ "caption": "the cat is on a laptop",
+ "question": [
+ "is there the cat ?",
+ "is there a laptop ?"
+ ],
+ "prompt": "the {} is on a laptop"
+ },
+ {
+ "index": 1483,
+ "image_id": 2317428,
+ "entity": "cat",
+ "caption": "orange cat standing on laptop",
+ "question": [
+ "is there laptop ?"
+ ],
+ "prompt": "orange {} standing on laptop"
+ },
+ {
+ "index": 1484,
+ "image_id": 2317288,
+ "entity": "cat",
+ "caption": "The cat is holding a bottle of water.",
+ "question": [
+ "is there the cat ?",
+ "is there a bottle ?",
+ "is there water ?"
+ ],
+ "prompt": "The {} is holding a bottle of water."
+ },
+ {
+ "index": 1485,
+ "image_id": 2317288,
+ "entity": "cat",
+ "caption": "The cat is lying on a bed.",
+ "question": [
+ "is there the cat ?",
+ "is there a bed ?"
+ ],
+ "prompt": "The {} is lying on a bed."
+ },
+ {
+ "index": 1486,
+ "image_id": 2317288,
+ "entity": "cat",
+ "caption": "The cat is alert.",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} is alert."
+ },
+ {
+ "index": 1487,
+ "image_id": 2317288,
+ "entity": "cat",
+ "caption": "The cat is awake.",
+ "question": [
+ "is there the cat ?"
+ ],
+ "prompt": "The {} is awake."
+ },
+ {
+ "index": 1488,
+ "image_id": 2317138,
+ "entity": "cat",
+ "caption": "the front left paw of a house cat",
+ "question": [
+ "is there the front left paw ?",
+ "is there a house cat ?"
+ ],
+ "prompt": "the front left paw of a house {}"
+ },
+ {
+ "index": 1489,
+ "image_id": 2317138,
+ "entity": "cat",
+ "caption": "This cat has some white whiskers",
+ "question": [
+ "is there this cat ?",
+ "are there some white whiskers ?"
+ ],
+ "prompt": "This {} has some white whiskers"
+ },
+ {
+ "index": 1490,
+ "image_id": 2316884,
+ "entity": "cat",
+ "caption": "two cats cuddled together on top of a bed",
+ "question": [
+ "are there two cats ?",
+ "is there top ?",
+ "is there a bed ?"
+ ],
+ "prompt": "two {}s cuddled together on top of a bed"
+ },
+ {
+ "index": 1491,
+ "image_id": 2316884,
+ "entity": "cat",
+ "caption": "this cat is laying on the other",
+ "question": [
+ "is there this cat ?"
+ ],
+ "prompt": "this {} is laying on the other"
+ },
+ {
+ "index": 1492,
+ "image_id": 2316261,
+ "entity": "cat",
+ "caption": "The cats nose",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "The {}s nose"
+ },
+ {
+ "index": 1493,
+ "image_id": 2316261,
+ "entity": "cat",
+ "caption": "The cats closed eyes",
+ "question": [
+ "are there the cats ?",
+ "are there eyes ?"
+ ],
+ "prompt": "The {}s closed eyes"
+ },
+ {
+ "index": 1494,
+ "image_id": 2316261,
+ "entity": "cat",
+ "caption": "The paw the cat is sleeping on",
+ "question": [
+ "is there the paw ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The paw the {} is sleeping on"
+ },
+ {
+ "index": 1495,
+ "image_id": 2316261,
+ "entity": "cat",
+ "caption": "The bed spread the cat is sleeping on",
+ "question": [
+ "is there the bed ?",
+ "is there the cat ?"
+ ],
+ "prompt": "The bed spread the {} is sleeping on"
+ },
+ {
+ "index": 1496,
+ "image_id": 2316261,
+ "entity": "cat",
+ "caption": "Black cat is laying on bed.",
+ "question": [
+ "is there black cat ?",
+ "is there bed ?"
+ ],
+ "prompt": "Black {} is laying on bed."
+ },
+ {
+ "index": 1497,
+ "image_id": 2315873,
+ "entity": "cat",
+ "caption": "Two cat eyes are closed",
+ "question": [
+ "are there two cat eyes ?"
+ ],
+ "prompt": "Two {} eyes are closed"
+ },
+ {
+ "index": 1498,
+ "image_id": 2315714,
+ "entity": "cat",
+ "caption": "the cat is wearing a red hat",
+ "question": [
+ "is there the cat ?",
+ "is there a red hat ?"
+ ],
+ "prompt": "the {} is wearing a red hat"
+ },
+ {
+ "index": 1499,
+ "image_id": 2315714,
+ "entity": "cat",
+ "caption": "The cat nose is pink.",
+ "question": [
+ "is there the cat nose ?"
+ ],
+ "prompt": "The {} nose is pink."
+ },
+ {
+ "index": 1500,
+ "image_id": 2315482,
+ "entity": "cat",
+ "caption": "Grey and white cat lying on the bed. ",
+ "question": [
+ "is there white cat ?",
+ "is there the bed ?"
+ ],
+ "prompt": "Grey and white {} lying on the bed. "
+ },
+ {
+ "index": 1501,
+ "image_id": 2414951,
+ "entity": "cat",
+ "caption": "The black cat has white eyes",
+ "question": [
+ "is there the black cat ?",
+ "are there white eyes ?"
+ ],
+ "prompt": "The black {} has white eyes"
+ },
+ {
+ "index": 1502,
+ "image_id": 2414951,
+ "entity": "cat",
+ "caption": "The cat is laying on something white",
+ "question": [
+ "is there the cat ?",
+ "is there something ?"
+ ],
+ "prompt": "The {} is laying on something white"
+ },
+ {
+ "index": 1503,
+ "image_id": 2414951,
+ "entity": "cat",
+ "caption": "profile of cat face",
+ "question": [
+ "is there profile ?",
+ "is there cat ?"
+ ],
+ "prompt": "profile of {} face"
+ },
+ {
+ "index": 1504,
+ "image_id": 2414946,
+ "entity": "cat",
+ "caption": "The cat has his mouth open",
+ "question": [
+ "is there the cat ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} has his mouth open"
+ },
+ {
+ "index": 1505,
+ "image_id": 2414946,
+ "entity": "cat",
+ "caption": "person's long hair is near cat",
+ "question": [
+ "is there person's long hair ?",
+ "is there cat ?"
+ ],
+ "prompt": "person's long hair is near {}"
+ },
+ {
+ "index": 1506,
+ "image_id": 2414946,
+ "entity": "cat",
+ "caption": "cat's mouth is open",
+ "question": [
+ "is there cat's mouth ?"
+ ],
+ "prompt": "{}'s mouth is open"
+ },
+ {
+ "index": 1507,
+ "image_id": 2414309,
+ "entity": "cat",
+ "caption": "The cat's hind legs are white.",
+ "question": [
+ "are there the cat's hind legs ?"
+ ],
+ "prompt": "The {}'s hind legs are white."
+ },
+ {
+ "index": 1508,
+ "image_id": 2414309,
+ "entity": "cat",
+ "caption": "The cat's paw is in a cup.",
+ "question": [
+ "is there the cat's paw ?",
+ "is there a cup ?"
+ ],
+ "prompt": "The {}'s paw is in a cup."
+ },
+ {
+ "index": 1509,
+ "image_id": 2414309,
+ "entity": "cat",
+ "caption": "The cat is on the bed.",
+ "question": [
+ "is there the cat ?",
+ "is there the bed ?"
+ ],
+ "prompt": "The {} is on the bed."
+ },
+ {
+ "index": 1510,
+ "image_id": 2414309,
+ "entity": "cat",
+ "caption": "The cat's left paw is inside the glass.",
+ "question": [
+ "is there the cat's left paw ?",
+ "is there the glass ?"
+ ],
+ "prompt": "The {}'s left paw is inside the glass."
+ },
+ {
+ "index": 1511,
+ "image_id": 2414309,
+ "entity": "cat",
+ "caption": "the cat has its paw in the cup",
+ "question": [
+ "is there the cat ?",
+ "is there its paw ?",
+ "is there the cup ?"
+ ],
+ "prompt": "the {} has its paw in the cup"
+ },
+ {
+ "index": 1512,
+ "image_id": 2413812,
+ "entity": "cat",
+ "caption": "The cat is sitting in a box",
+ "question": [
+ "is there the cat ?",
+ "is there a box ?"
+ ],
+ "prompt": "The {} is sitting in a box"
+ },
+ {
+ "index": 1513,
+ "image_id": 2413812,
+ "entity": "cat",
+ "caption": "The cat is sitting on the tissue paper.",
+ "question": [
+ "is there the cat ?",
+ "is there the tissue paper ?"
+ ],
+ "prompt": "The {} is sitting on the tissue paper."
+ },
+ {
+ "index": 1514,
+ "image_id": 2413812,
+ "entity": "cat",
+ "caption": "cat is on the box",
+ "question": [
+ "is there cat ?",
+ "is there the box ?"
+ ],
+ "prompt": "{} is on the box"
+ },
+ {
+ "index": 1515,
+ "image_id": 2413812,
+ "entity": "cat",
+ "caption": "cat is on paper tissue",
+ "question": [
+ "is there cat ?",
+ "is there paper tissue ?"
+ ],
+ "prompt": "{} is on paper tissue"
+ },
+ {
+ "index": 1516,
+ "image_id": 2413812,
+ "entity": "cat",
+ "caption": "The cat is sitting in a box.",
+ "question": [
+ "is there the cat ?",
+ "is there a box ?"
+ ],
+ "prompt": "The {} is sitting in a box."
+ },
+ {
+ "index": 1517,
+ "image_id": 2413812,
+ "entity": "cat",
+ "caption": "The cat has a toy banana.",
+ "question": [
+ "is there the cat ?",
+ "is there a toy banana ?"
+ ],
+ "prompt": "The {} has a toy banana."
+ },
+ {
+ "index": 1518,
+ "image_id": 2413812,
+ "entity": "cat",
+ "caption": "The cat is sitting on tissue paper.",
+ "question": [
+ "is there the cat ?",
+ "is there tissue paper ?"
+ ],
+ "prompt": "The {} is sitting on tissue paper."
+ },
+ {
+ "index": 1519,
+ "image_id": 2413648,
+ "entity": "cat",
+ "caption": "The cats eyes",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "The {}s eyes"
+ },
+ {
+ "index": 1520,
+ "image_id": 2413626,
+ "entity": "cat",
+ "caption": "the cat has a white mark above his nose",
+ "question": [
+ "is there the cat ?",
+ "is there a white mark ?",
+ "is there his nose ?"
+ ],
+ "prompt": "the {} has a white mark above his nose"
+ },
+ {
+ "index": 1521,
+ "image_id": 2413626,
+ "entity": "cat",
+ "caption": "the cat sits on a brown rug",
+ "question": [
+ "is there the cat ?",
+ "is there a brown rug ?"
+ ],
+ "prompt": "the {} sits on a brown rug"
+ },
+ {
+ "index": 1522,
+ "image_id": 2413626,
+ "entity": "cat",
+ "caption": "hairs inside cats ear",
+ "question": [
+ "are there hairs ?",
+ "are there cats ?"
+ ],
+ "prompt": "hairs inside {}s ear"
+ },
+ {
+ "index": 1523,
+ "image_id": 2413626,
+ "entity": "cat",
+ "caption": "dark stripe on the top of cats head",
+ "question": [
+ "is there dark stripe ?",
+ "is there the top ?",
+ "are there cats ?"
+ ],
+ "prompt": "dark stripe on the top of {}s head"
+ },
+ {
+ "index": 1524,
+ "image_id": 2413626,
+ "entity": "cat",
+ "caption": "the cat is stripes",
+ "question": [
+ "is there the cat ?",
+ "are there stripes ?"
+ ],
+ "prompt": "the {} is stripes"
+ },
+ {
+ "index": 1525,
+ "image_id": 2413626,
+ "entity": "cat",
+ "caption": "room wherein cat sniffs in, & snoozes upon, shoe, is tiled",
+ "question": [
+ "is there room ?",
+ "is there cat ?",
+ "is there shoe ?"
+ ],
+ "prompt": "room wherein {} sniffs in, & snoozes upon, shoe, is tiled"
+ },
+ {
+ "index": 1526,
+ "image_id": 2413626,
+ "entity": "cat",
+ "caption": "top of another shoes is behind sniffing cat",
+ "question": [
+ "is there top ?",
+ "are there another shoes ?",
+ "is there cat ?"
+ ],
+ "prompt": "top of another shoes is behind sniffing {}"
+ },
+ {
+ "index": 1527,
+ "image_id": 2413626,
+ "entity": "cat",
+ "caption": "cat's eye whisker points upward & to cat's left",
+ "question": [
+ "is there cat's eye whisker ?"
+ ],
+ "prompt": "{}'s eye whisker points upward & to {}'s left"
+ },
+ {
+ "index": 1528,
+ "image_id": 2413576,
+ "entity": "cat",
+ "caption": "Two cats are laying next to each other. ",
+ "question": [
+ "are there two cats ?"
+ ],
+ "prompt": "Two {}s are laying next to each other. "
+ },
+ {
+ "index": 1529,
+ "image_id": 2413576,
+ "entity": "cat",
+ "caption": "One cat has a white paw. ",
+ "question": [
+ "is there one cat ?"
+ ],
+ "prompt": "One {} has a white paw. "
+ },
+ {
+ "index": 1530,
+ "image_id": 2413576,
+ "entity": "cat",
+ "caption": "A large TV is behind the cats. ",
+ "question": [
+ "is there a large tv ?",
+ "are there the cats ?"
+ ],
+ "prompt": "A large TV is behind the {}s. "
+ },
+ {
+ "index": 1531,
+ "image_id": 2413576,
+ "entity": "cat",
+ "caption": "The cat eyes are slightly closed.",
+ "question": [
+ "are there the cat eyes ?"
+ ],
+ "prompt": "The {} eyes are slightly closed."
+ },
+ {
+ "index": 1532,
+ "image_id": 2413428,
+ "entity": "cat",
+ "caption": "the cat looks in the toilet",
+ "question": [
+ "is there the cat ?",
+ "is there the toilet ?"
+ ],
+ "prompt": "the {} looks in the toilet"
+ },
+ {
+ "index": 1533,
+ "image_id": 2413428,
+ "entity": "cat",
+ "caption": "the cat is wearing a red collar",
+ "question": [
+ "is there the cat ?",
+ "is there a red collar ?"
+ ],
+ "prompt": "the {} is wearing a red collar"
+ },
+ {
+ "index": 1534,
+ "image_id": 2413428,
+ "entity": "cat",
+ "caption": "the cats collar has a red bell on it",
+ "question": [
+ "are there the cats collar ?",
+ "is there a red bell ?"
+ ],
+ "prompt": "the {}s collar has a red bell on it"
+ },
+ {
+ "index": 1535,
+ "image_id": 2413428,
+ "entity": "cat",
+ "caption": "the cat has a long furry striped tail",
+ "question": [
+ "is there the cat ?",
+ "is there a long furry striped tail ?"
+ ],
+ "prompt": "the {} has a long furry striped tail"
+ },
+ {
+ "index": 1536,
+ "image_id": 2413166,
+ "entity": "cat",
+ "caption": "Paws of cat that is sleeping in sink.",
+ "question": [
+ "are there paws ?",
+ "is there cat ?",
+ "is there sink ?"
+ ],
+ "prompt": "Paws of {} that is sleeping in sink."
+ },
+ {
+ "index": 1537,
+ "image_id": 2413166,
+ "entity": "cat",
+ "caption": "a cat is asleep in the sink\n",
+ "question": [
+ "is there a cat ?",
+ "is there the sink ?"
+ ],
+ "prompt": "a {} is asleep in the sink\n"
+ },
+ {
+ "index": 1538,
+ "image_id": 2413166,
+ "entity": "cat",
+ "caption": "the cat has it's eyes closed",
+ "question": [
+ "is there the cat ?",
+ "are there eyes ?"
+ ],
+ "prompt": "the {} has it's eyes closed"
+ },
+ {
+ "index": 1539,
+ "image_id": 2413166,
+ "entity": "cat",
+ "caption": "the cat has pink ears",
+ "question": [
+ "is there the cat ?",
+ "are there pink ears ?"
+ ],
+ "prompt": "the {} has pink ears"
+ },
+ {
+ "index": 1540,
+ "image_id": 2413136,
+ "entity": "cat",
+ "caption": "cat is playing with sticks.",
+ "question": [
+ "is there cat ?",
+ "are there sticks ?"
+ ],
+ "prompt": "{} is playing with sticks."
+ },
+ {
+ "index": 1541,
+ "image_id": 2412724,
+ "entity": "cat",
+ "caption": "Strap attached to black bag underneath the cat.",
+ "question": [
+ "is there strap ?",
+ "is there black bag ?",
+ "is there the cat ?"
+ ],
+ "prompt": "Strap attached to black bag underneath the {}."
+ },
+ {
+ "index": 1542,
+ "image_id": 2412724,
+ "entity": "cat",
+ "caption": "a cat has his paws extended",
+ "question": [
+ "is there a cat ?",
+ "are there his paws ?"
+ ],
+ "prompt": "a {} has his paws extended"
+ },
+ {
+ "index": 1543,
+ "image_id": 2412724,
+ "entity": "cat",
+ "caption": "the cat is on top of a carrying case",
+ "question": [
+ "is there the cat ?",
+ "is there top ?",
+ "is there a carrying case ?"
+ ],
+ "prompt": "the {} is on top of a carrying case"
+ },
+ {
+ "index": 1544,
+ "image_id": 2412724,
+ "entity": "cat",
+ "caption": "an orange curtain is behind the cat",
+ "question": [
+ "is there an orange curtain ?",
+ "is there the cat ?"
+ ],
+ "prompt": "an orange curtain is behind the {}"
+ },
+ {
+ "index": 1545,
+ "image_id": 2412724,
+ "entity": "cat",
+ "caption": "a small table is besides the cat",
+ "question": [
+ "is there a small table ?",
+ "is there the cat ?"
+ ],
+ "prompt": "a small table is besides the {}"
+ },
+ {
+ "index": 1546,
+ "image_id": 2412724,
+ "entity": "cat",
+ "caption": "a ruler is laying in front of the cat",
+ "question": [
+ "is there a ruler ?",
+ "is there front ?",
+ "is there the cat ?"
+ ],
+ "prompt": "a ruler is laying in front of the {}"
+ },
+ {
+ "index": 1547,
+ "image_id": 2412724,
+ "entity": "cat",
+ "caption": " Handbag is under a cat",
+ "question": [
+ "is there handbag ?",
+ "is there a cat ?"
+ ],
+ "prompt": " Handbag is under a {}"
+ },
+ {
+ "index": 1548,
+ "image_id": 2412724,
+ "entity": "cat",
+ "caption": "The cat's front left leg.",
+ "question": [
+ "is there the cat's front left leg ?"
+ ],
+ "prompt": "The {}'s front left leg."
+ },
+ {
+ "index": 1549,
+ "image_id": 2412463,
+ "entity": "cat",
+ "caption": "cat is looking at road",
+ "question": [
+ "is there cat ?",
+ "is there road ?"
+ ],
+ "prompt": "{} is looking at road"
+ },
+ {
+ "index": 1550,
+ "image_id": 2412091,
+ "entity": "cat",
+ "caption": "The cat has a show under his paw.",
+ "question": [
+ "is there the cat ?",
+ "is there a show ?",
+ "is there his paw ?"
+ ],
+ "prompt": "The {} has a show under his paw."
+ },
+ {
+ "index": 1551,
+ "image_id": 2412091,
+ "entity": "cat",
+ "caption": "The cat has a shoe next to his mouth.",
+ "question": [
+ "is there the cat ?",
+ "is there a shoe ?",
+ "is there his mouth ?"
+ ],
+ "prompt": "The {} has a shoe next to his mouth."
+ },
+ {
+ "index": 1552,
+ "image_id": 2412091,
+ "entity": "cat",
+ "caption": "The catting is sitting on the tile floor.",
+ "question": [
+ "is there the catting ?",
+ "is there the tile floor ?"
+ ],
+ "prompt": "The {}ting is sitting on the tile floor."
+ },
+ {
+ "index": 1553,
+ "image_id": 2412091,
+ "entity": "cat",
+ "caption": "the cat has the shoes",
+ "question": [
+ "is there the cat ?",
+ "are there the shoes ?"
+ ],
+ "prompt": "the {} has the shoes"
+ },
+ {
+ "index": 1554,
+ "image_id": 2412091,
+ "entity": "cat",
+ "caption": "the cat has large pink ears",
+ "question": [
+ "is there the cat ?",
+ "are there large pink ears ?"
+ ],
+ "prompt": "the {} has large pink ears"
+ },
+ {
+ "index": 1555,
+ "image_id": 2412091,
+ "entity": "cat",
+ "caption": "Paw of cat is over a shoe",
+ "question": [
+ "is there cat ?",
+ "is there a shoe ?"
+ ],
+ "prompt": "Paw of {} is over a shoe"
+ },
+ {
+ "index": 1556,
+ "image_id": 2411940,
+ "entity": "cat",
+ "caption": "door behind cat is open",
+ "question": [
+ "is there door ?",
+ "is there cat ?"
+ ],
+ "prompt": "door behind {} is open"
+ },
+ {
+ "index": 1557,
+ "image_id": 2411940,
+ "entity": "cat",
+ "caption": "the sky behind the cat is clear",
+ "question": [
+ "is there the sky ?",
+ "is there the cat ?"
+ ],
+ "prompt": "the sky behind the {} is clear"
+ },
+ {
+ "index": 1558,
+ "image_id": 2411940,
+ "entity": "cat",
+ "caption": "tufts of hair grow out of the cats pink ears",
+ "question": [
+ "are there tufts ?",
+ "is there hair ?",
+ "are there the cats ?"
+ ],
+ "prompt": "tufts of hair grow out of the {}s pink ears"
+ },
+ {
+ "index": 1559,
+ "image_id": 2411940,
+ "entity": "cat",
+ "caption": "The cat is sitting on the grass",
+ "question": [
+ "is there the cat ?",
+ "is there the grass ?"
+ ],
+ "prompt": "The {} is sitting on the grass"
+ },
+ {
+ "index": 1560,
+ "image_id": 2411940,
+ "entity": "cat",
+ "caption": "a brick building is behind the cat",
+ "question": [
+ "is there a brick building ?",
+ "is there the cat ?"
+ ],
+ "prompt": "a brick building is behind the {}"
+ },
+ {
+ "index": 1561,
+ "image_id": 2411940,
+ "entity": "cat",
+ "caption": "white cat is outside",
+ "question": [
+ "is there white cat ?"
+ ],
+ "prompt": "white {} is outside"
+ },
+ {
+ "index": 1562,
+ "image_id": 2411669,
+ "entity": "cat",
+ "caption": "a cats ear",
+ "question": [
+ "are there a cats ?"
+ ],
+ "prompt": "a {}s ear"
+ },
+ {
+ "index": 1563,
+ "image_id": 2411669,
+ "entity": "cat",
+ "caption": "a cats left ear",
+ "question": [
+ "are there a cats ?",
+ "is there ear ?"
+ ],
+ "prompt": "a {}s left ear"
+ },
+ {
+ "index": 1564,
+ "image_id": 2411669,
+ "entity": "cat",
+ "caption": "a cats front right paw",
+ "question": [
+ "are there a cats ?",
+ "is there right paw ?"
+ ],
+ "prompt": "a {}s front right paw"
+ },
+ {
+ "index": 1565,
+ "image_id": 2411669,
+ "entity": "cat",
+ "caption": "grey and white cat is laying on bed",
+ "question": [
+ "is there white cat ?",
+ "is there bed ?"
+ ],
+ "prompt": "grey and white {} is laying on bed"
+ },
+ {
+ "index": 1566,
+ "image_id": 2411669,
+ "entity": "cat",
+ "caption": "light green pillow is behind cat",
+ "question": [
+ "is there light green pillow ?",
+ "is there cat ?"
+ ],
+ "prompt": "light green pillow is behind {}"
+ },
+ {
+ "index": 1567,
+ "image_id": 2411669,
+ "entity": "cat",
+ "caption": "cat has black spot on one foot",
+ "question": [
+ "is there cat ?",
+ "is there black spot ?",
+ "is there one foot ?"
+ ],
+ "prompt": "{} has black spot on one foot"
+ },
+ {
+ "index": 1568,
+ "image_id": 2411630,
+ "entity": "cat",
+ "caption": "the cat has a very short tail",
+ "question": [
+ "is there the cat ?",
+ "is there a very short tail ?"
+ ],
+ "prompt": "the {} has a very short tail"
+ },
+ {
+ "index": 1569,
+ "image_id": 2411630,
+ "entity": "cat",
+ "caption": "the cat is wearing a bowtie",
+ "question": [
+ "is there the cat ?",
+ "is there a bowtie ?"
+ ],
+ "prompt": "the {} is wearing a bowtie"
+ },
+ {
+ "index": 1570,
+ "image_id": 2415209,
+ "entity": "cat",
+ "caption": "green branch passing in front of cat",
+ "question": [
+ "is there green branch ?",
+ "is there front ?",
+ "is there cat ?"
+ ],
+ "prompt": "green branch passing in front of {}"
+ },
+ {
+ "index": 1571,
+ "image_id": 2415246,
+ "entity": "cat",
+ "caption": "The cats gray tail",
+ "question": [
+ "are there the cats ?",
+ "is there tail ?"
+ ],
+ "prompt": "The {}s gray tail"
+ },
+ {
+ "index": 1572,
+ "image_id": 2415363,
+ "entity": "cat",
+ "caption": "the cat is licking the plate",
+ "question": [
+ "is there the cat ?",
+ "is there the plate ?"
+ ],
+ "prompt": "the {} is licking the plate"
+ },
+ {
+ "index": 1573,
+ "image_id": 2415551,
+ "entity": "cat",
+ "caption": "cat is drinking water out of a bowl",
+ "question": [
+ "is there cat ?",
+ "is there water ?",
+ "is there a bowl ?"
+ ],
+ "prompt": "{} is drinking water out of a bowl"
+ },
+ {
+ "index": 1574,
+ "image_id": 2415551,
+ "entity": "cat",
+ "caption": "cat has a pink tounge",
+ "question": [
+ "is there cat ?",
+ "is there a pink tounge ?"
+ ],
+ "prompt": "{} has a pink tounge"
+ },
+ {
+ "index": 1575,
+ "image_id": 2415551,
+ "entity": "cat",
+ "caption": "cat has closed gray eyes",
+ "question": [
+ "is there cat ?",
+ "are there gray eyes ?"
+ ],
+ "prompt": "{} has closed gray eyes"
+ },
+ {
+ "index": 1576,
+ "image_id": 2415551,
+ "entity": "cat",
+ "caption": "cat has a closed gray eye",
+ "question": [
+ "is there cat ?",
+ "is there a closed gray eye ?"
+ ],
+ "prompt": "{} has a closed gray eye"
+ },
+ {
+ "index": 1577,
+ "image_id": 2415551,
+ "entity": "cat",
+ "caption": "cat has a pointy gray ear",
+ "question": [
+ "is there cat ?",
+ "is there a pointy gray ear ?"
+ ],
+ "prompt": "{} has a pointy gray ear"
+ },
+ {
+ "index": 1578,
+ "image_id": 2415590,
+ "entity": "cat",
+ "caption": "a cats paw in he background",
+ "question": [
+ "are there a cats ?"
+ ],
+ "prompt": "a {}s paw in he background"
+ },
+ {
+ "index": 1579,
+ "image_id": 2415980,
+ "entity": "cat",
+ "caption": "cat is standing by bottle",
+ "question": [
+ "is there cat ?",
+ "is there bottle ?"
+ ],
+ "prompt": "{} is standing by bottle"
+ },
+ {
+ "index": 1580,
+ "image_id": 2415980,
+ "entity": "cat",
+ "caption": "cat has a gray and brown paw",
+ "question": [
+ "is there cat ?",
+ "is there a gray and brown paw ?"
+ ],
+ "prompt": "{} has a gray and brown paw"
+ },
+ {
+ "index": 1581,
+ "image_id": 2415980,
+ "entity": "cat",
+ "caption": "A cat is sniffing a bottle",
+ "question": [
+ "is there a cat ?",
+ "is there a bottle ?"
+ ],
+ "prompt": "A {} is sniffing a bottle"
+ },
+ {
+ "index": 1582,
+ "image_id": 2415980,
+ "entity": "cat",
+ "caption": "the cat is sniffing the bottle cap",
+ "question": [
+ "is there the cat ?",
+ "is there the bottle cap ?"
+ ],
+ "prompt": "the {} is sniffing the bottle cap"
+ },
+ {
+ "index": 1583,
+ "image_id": 2415980,
+ "entity": "cat",
+ "caption": "grey and brown cat sniffing bottle",
+ "question": [
+ "is there grey and brown cat ?",
+ "is there bottle ?"
+ ],
+ "prompt": "grey and brown {} sniffing bottle"
+ },
+ {
+ "index": 1584,
+ "image_id": 2416021,
+ "entity": "cat",
+ "caption": "the cats eye is green ",
+ "question": [
+ "are there the cats ?"
+ ],
+ "prompt": "the {}s eye is green "
+ },
+ {
+ "index": 1585,
+ "image_id": 2416334,
+ "entity": "cat",
+ "caption": "cat with its eyes closed ",
+ "question": [
+ "is there cat ?",
+ "are there its eyes ?"
+ ],
+ "prompt": "{} with its eyes closed "
+ },
+ {
+ "index": 1586,
+ "image_id": 2416426,
+ "entity": "cat",
+ "caption": "a pink nose on the cats face",
+ "question": [
+ "is there a pink nose ?",
+ "are there the cats ?"
+ ],
+ "prompt": "a pink nose on the {}s face"
+ },
+ {
+ "index": 1587,
+ "image_id": 2416426,
+ "entity": "cat",
+ "caption": "the cat is lying on a bag",
+ "question": [
+ "is there the cat ?",
+ "is there a bag ?"
+ ],
+ "prompt": "the {} is lying on a bag"
+ },
+ {
+ "index": 1588,
+ "image_id": 2416814,
+ "entity": "cat",
+ "caption": "one cat with eyes half closed",
+ "question": [
+ "is there one cat ?",
+ "are there eyes ?"
+ ],
+ "prompt": "one {} with eyes half closed"
+ },
+ {
+ "index": 1589,
+ "image_id": 2416814,
+ "entity": "cat",
+ "caption": "the cat is laying on papers",
+ "question": [
+ "is there the cat ?",
+ "are there papers ?"
+ ],
+ "prompt": "the {} is laying on papers"
+ },
+ {
+ "index": 1590,
+ "image_id": 2416955,
+ "entity": "cat",
+ "caption": "The cat is sitting on wooden boards.",
+ "question": [
+ "is there the cat ?",
+ "are there wooden boards ?"
+ ],
+ "prompt": "The {} is sitting on wooden boards."
+ },
+ {
+ "index": 1591,
+ "image_id": 2417872,
+ "entity": "cat",
+ "caption": "Person and cat are laying on the sofa ",
+ "question": [
+ "is there person ?",
+ "is there cat ?",
+ "is there the sofa ?"
+ ],
+ "prompt": "Person and {} are laying on the sofa "
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02123159.json b/data/imagenet/compositions/prompts/n02123159.json
new file mode 100644
index 0000000000000000000000000000000000000000..4af5ceb85cd815473c04debb91e09dcc9138f1c5
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02123159.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 955, "entity": "cat", "caption": "cat is licking herself", "question": ["is there cat ?"], "prompt": "{} is licking herself"}, {"index": 1, "image_id": 955, "entity": "cat", "caption": "red chair white cat is sitting on", "question": ["is there red chair white cat ?"], "prompt": "red chair white {} is sitting on"}, {"index": 2, "image_id": 955, "entity": "cat", "caption": "Wisker on a cats face", "question": ["is there wisker ?", "are there a cats ?"], "prompt": "Wisker on a {}s face"}, {"index": 3, "image_id": 3756, "entity": "cat", "caption": "the yellow cat has green eyes", "question": ["is there the yellow cat ?", "are there green eyes ?"], "prompt": "the yellow {} has green eyes"}, {"index": 4, "image_id": 61581, "entity": "cat", "caption": "cat is looking down the window", "question": ["is there cat ?", "is there the window ?"], "prompt": "{} is looking down the window"}, {"index": 5, "image_id": 61581, "entity": "cat", "caption": "the cat is looking out of the window", "question": ["is there the cat ?", "is there the window ?"], "prompt": "the {} is looking out of the window"}, {"index": 6, "image_id": 498173, "entity": "cat", "caption": "Woman is holding cat in hand.", "question": ["is there woman ?", "is there cat ?", "is there hand ?"], "prompt": "Woman is holding {} in hand."}, {"index": 7, "image_id": 498173, "entity": "cat", "caption": "the woman is holding the cat", "question": ["is there the woman ?", "is there the cat ?"], "prompt": "the woman is holding the {}"}, {"index": 8, "image_id": 498173, "entity": "cat", "caption": "the cat has stripes", "question": ["is there the cat ?", "are there stripes ?"], "prompt": "the {} has stripes"}, {"index": 9, "image_id": 498173, "entity": "cat", "caption": "the cat is biting the hand", "question": ["is there the cat ?", "is there the hand ?"], "prompt": "the {} is biting the hand"}, {"index": 10, "image_id": 498173, "entity": "cat", "caption": "Woman holding a cat", "question": ["is there woman ?", "is there a cat ?"], "prompt": "Woman holding a {}"}, {"index": 11, "image_id": 498173, "entity": "cat", "caption": "Woman is holding a cat", "question": ["is there woman ?", "is there a cat ?"], "prompt": "Woman is holding a {}"}, {"index": 12, "image_id": 498173, "entity": "cat", "caption": "Woman carrying a cat", "question": ["is there woman ?", "is there a cat ?"], "prompt": "Woman carrying a {}"}, {"index": 13, "image_id": 498173, "entity": "cat", "caption": "Woman is carrying a cat", "question": ["is there woman ?", "is there a cat ?"], "prompt": "Woman is carrying a {}"}, {"index": 14, "image_id": 2414784, "entity": "cat", "caption": "The cat has whiskers.", "question": ["is there the cat ?", "are there whiskers ?"], "prompt": "The {} has whiskers."}, {"index": 15, "image_id": 2414535, "entity": "cat", "caption": "a black cats head", "question": ["are there a black cats ?"], "prompt": "a black {}s head"}, {"index": 16, "image_id": 2414535, "entity": "cat", "caption": "a cat peeks through the door", "question": ["is there a cat ?", "is there the door ?"], "prompt": "a {} peeks through the door"}, {"index": 17, "image_id": 2414535, "entity": "cat", "caption": "a blanket the cat is lying on", "question": ["is there a blanket ?", "is there the cat ?"], "prompt": "a blanket the {} is lying on"}, {"index": 18, "image_id": 2414535, "entity": "cat", "caption": "the wood corner of the bed the cat is on", "question": ["is there the wood corner ?", "is there the bed ?", "is there the cat ?"], "prompt": "the wood corner of the bed the {} is on"}, {"index": 19, "image_id": 2414535, "entity": "cat", "caption": "the cat is on the cover", "question": ["is there the cat ?", "is there the cover ?"], "prompt": "the {} is on the cover"}, {"index": 20, "image_id": 2414535, "entity": "cat", "caption": "the cat has whiskers", "question": ["is there the cat ?", "are there whiskers ?"], "prompt": "the {} has whiskers"}, {"index": 21, "image_id": 2414535, "entity": "cat", "caption": "the cat is staring at the picture", "question": ["is there the cat ?", "is there the picture ?"], "prompt": "the {} is staring at the picture"}, {"index": 22, "image_id": 2414535, "entity": "cat", "caption": "the cat is looking out the door", "question": ["is there the cat ?", "is there the door ?"], "prompt": "the {} is looking out the door"}, {"index": 23, "image_id": 2414356, "entity": "cat", "caption": "the cat has black legs", "question": ["is there the cat ?", "are there black legs ?"], "prompt": "the {} has black legs"}, {"index": 24, "image_id": 2414356, "entity": "cat", "caption": "the cat is standing on top of a box", "question": ["is there the cat ?", "is there top ?", "is there a box ?"], "prompt": "the {} is standing on top of a box"}, {"index": 25, "image_id": 2414023, "entity": "cat", "caption": "The cat has a black nose", "question": ["is there the cat ?", "is there a black nose ?"], "prompt": "The {} has a black nose"}, {"index": 26, "image_id": 2414023, "entity": "cat", "caption": "a hand is on the cat's neck", "question": ["is there a hand ?", "is there the cat's neck ?"], "prompt": "a hand is on the {}'s neck"}, {"index": 27, "image_id": 2414023, "entity": "cat", "caption": "the cat's ears are white", "question": ["are there the cat's ears ?"], "prompt": "the {}'s ears are white"}, {"index": 28, "image_id": 2414023, "entity": "cat", "caption": "A human is touching the cat.", "question": ["is there a human ?", "is there the cat ?"], "prompt": "A human is touching the {}."}, {"index": 29, "image_id": 2414023, "entity": "cat", "caption": "The cat has black and white on its face.", "question": ["is there the cat ?", "is there its face ?"], "prompt": "The {} has black and white on its face."}, {"index": 30, "image_id": 2414023, "entity": "cat", "caption": "The cat has a black nose.", "question": ["is there the cat ?", "is there a black nose ?"], "prompt": "The {} has a black nose."}, {"index": 31, "image_id": 2413062, "entity": "cat", "caption": "tortie cat has pink+tiny brown spotted under-toe", "question": ["is there tortie cat ?", "is there under-toe ?"], "prompt": "tortie {} has pink+tiny brown spotted under-toe"}, {"index": 32, "image_id": 2413062, "entity": "cat", "caption": "tortie cat has long multicolored ear fur", "question": ["is there tortie cat ?", "is there long multicolored ear fur ?"], "prompt": "tortie {} has long multicolored ear fur"}, {"index": 33, "image_id": 2413062, "entity": "cat", "caption": "tortie cat has medium-length eyebrow whiskers", "question": ["is there tortie cat ?", "are there medium-length eyebrow whiskers ?"], "prompt": "tortie {} has medium-length eyebrow whiskers"}, {"index": 34, "image_id": 2413062, "entity": "cat", "caption": "calico cat has black nose with a little smidge of pink", "question": ["is there calico cat ?", "is there black nose ?", "is there a little smidge ?", "is there pink ?"], "prompt": "calico {} has black nose with a little smidge of pink"}, {"index": 35, "image_id": 2413062, "entity": "cat", "caption": "calico cat has very furry forehead, except above one eye", "question": ["is there calico cat ?", "is there very furry forehead ?", "is there one eye ?"], "prompt": "calico {} has very furry forehead, except above one eye"}, {"index": 36, "image_id": 2413062, "entity": "cat", "caption": "calico cat sleeps near the lightly worn edge rounded edge of a wooden table", "question": ["is there calico cat ?", "is there the lightly worn edge rounded edge ?", "is there a wooden table ?"], "prompt": "calico {} sleeps near the lightly worn edge rounded edge of a wooden table"}, {"index": 37, "image_id": 2413062, "entity": "cat", "caption": "the cats eyes are closed", "question": ["are there the cats ?", "are there eyes ?"], "prompt": "the {}s eyes are closed"}, {"index": 38, "image_id": 2413005, "entity": "cat", "caption": "Point ears of cat are hairy", "question": ["are there point ears ?", "is there cat ?"], "prompt": "Point ears of {} are hairy"}, {"index": 39, "image_id": 2412841, "entity": "cat", "caption": "cat has two eyes", "question": ["is there cat ?", "are there two eyes ?"], "prompt": "{} has two eyes"}, {"index": 40, "image_id": 2412841, "entity": "cat", "caption": "the brown cat has two pointy ears", "question": ["is there the brown cat ?", "are there two pointy ears ?"], "prompt": "the brown {} has two pointy ears"}, {"index": 41, "image_id": 2412841, "entity": "cat", "caption": "the cat is inside a box", "question": ["is there the cat ?", "is there a box ?"], "prompt": "the {} is inside a box"}, {"index": 42, "image_id": 2412841, "entity": "cat", "caption": "the cat is looking towards the right", "question": ["is there the cat ?", "is there the right ?"], "prompt": "the {} is looking towards the right"}, {"index": 43, "image_id": 2412841, "entity": "cat", "caption": "the cat has his claws bent in", "question": ["is there the cat ?", "are there his claws ?"], "prompt": "the {} has his claws bent in"}, {"index": 44, "image_id": 2412841, "entity": "cat", "caption": "the cat has a white undercoat", "question": ["is there the cat ?", "is there a white undercoat ?"], "prompt": "the {} has a white undercoat"}, {"index": 45, "image_id": 2412386, "entity": "cat", "caption": "large black cat ear ", "question": ["is there large black cat ?"], "prompt": "large black {} ear "}, {"index": 46, "image_id": 2412386, "entity": "cat", "caption": "The cat is on zebra print", "question": ["is there the cat ?", "is there zebra print ?"], "prompt": "The {} is on zebra print"}, {"index": 47, "image_id": 2412386, "entity": "cat", "caption": "The cats whiskers are long", "question": ["are there the cats ?", "are there whiskers ?"], "prompt": "The {}s whiskers are long"}, {"index": 48, "image_id": 2412386, "entity": "cat", "caption": "The cat is on black and white", "question": ["is there the cat ?"], "prompt": "The {} is on black and white"}, {"index": 49, "image_id": 2412386, "entity": "cat", "caption": "The cats paws are white", "question": ["are there the cats paws ?"], "prompt": "The {}s paws are white"}, {"index": 50, "image_id": 2412386, "entity": "cat", "caption": "The black and white zebra printed blanket the cat is sitting on.", "question": ["is there the black and white zebra printed blanket ?", "is there the cat ?"], "prompt": "The black and white zebra printed blanket the {} is sitting on."}, {"index": 51, "image_id": 2412335, "entity": "cat", "caption": "A cat is sitting on a bag.", "question": ["is there a cat ?", "is there a bag ?"], "prompt": "A {} is sitting on a bag."}, {"index": 52, "image_id": 2412335, "entity": "cat", "caption": "The white napkin that the cat is laying on", "question": ["is there the white napkin ?", "is there the cat ?"], "prompt": "The white napkin that the {} is laying on"}, {"index": 53, "image_id": 2412335, "entity": "cat", "caption": "The cat has green eyes", "question": ["is there the cat ?", "are there green eyes ?"], "prompt": "The {} has green eyes"}, {"index": 54, "image_id": 2412335, "entity": "cat", "caption": "The cat is sitting on paper", "question": ["is there the cat ?", "is there paper ?"], "prompt": "The {} is sitting on paper"}, {"index": 55, "image_id": 2412335, "entity": "cat", "caption": "The cat has whiskers", "question": ["is there the cat ?", "are there whiskers ?"], "prompt": "The {} has whiskers"}, {"index": 56, "image_id": 2412335, "entity": "cat", "caption": "The cat has two ears", "question": ["is there the cat ?", "are there two ears ?"], "prompt": "The {} has two ears"}, {"index": 57, "image_id": 2412335, "entity": "cat", "caption": "The cat has a pink nose", "question": ["is there the cat ?", "is there a pink nose ?"], "prompt": "The {} has a pink nose"}, {"index": 58, "image_id": 2411640, "entity": "cat", "caption": "cat's hind legs laying down", "question": ["are there cat's hind legs ?"], "prompt": "{}'s hind legs laying down"}, {"index": 59, "image_id": 2411640, "entity": "cat", "caption": "cat's nose is pink", "question": ["is there cat's nose ?"], "prompt": "{}'s nose is pink"}, {"index": 60, "image_id": 2411640, "entity": "cat", "caption": "the cat is wearing a collar", "question": ["is there the cat ?", "is there a collar ?"], "prompt": "the {} is wearing a collar"}, {"index": 61, "image_id": 2411640, "entity": "cat", "caption": "cat's ears are up", "question": ["are there cat's ears ?"], "prompt": "{}'s ears are up"}, {"index": 62, "image_id": 2411640, "entity": "cat", "caption": "cat is under table", "question": ["is there cat ?", "is there table ?"], "prompt": "{} is under table"}, {"index": 63, "image_id": 2411640, "entity": "cat", "caption": "cat is sitting on wood floor", "question": ["is there cat ?", "is there wood floor ?"], "prompt": "{} is sitting on wood floor"}, {"index": 64, "image_id": 2411640, "entity": "cat", "caption": "cats eyes are green", "question": ["are there cats ?", "are there eyes ?"], "prompt": "{}s eyes are green"}, {"index": 65, "image_id": 2411640, "entity": "cat", "caption": "the cat's whiskers that are long", "question": ["are there the cat's whiskers ?"], "prompt": "the {}'s whiskers that are long"}, {"index": 66, "image_id": 2411233, "entity": "cat", "caption": "the cat is playing with a man's tie", "question": ["is there the cat ?", "is there a man's tie ?"], "prompt": "the {} is playing with a man's tie"}, {"index": 67, "image_id": 2411233, "entity": "cat", "caption": "the nails of the cat are in the tie", "question": ["are there the nails ?", "is there the cat ?", "is there the tie ?"], "prompt": "the nails of the {} are in the tie"}, {"index": 68, "image_id": 2411233, "entity": "cat", "caption": "the ears of the cat are pink inside", "question": ["are there the ears ?", "is there the cat ?"], "prompt": "the ears of the {} are pink inside"}, {"index": 69, "image_id": 2411233, "entity": "cat", "caption": "the cat is playing on a carpet", "question": ["is there the cat ?", "is there a carpet ?"], "prompt": "the {} is playing on a carpet"}, {"index": 70, "image_id": 2411233, "entity": "cat", "caption": "A cat plays with a ribbon", "question": ["is there a cat ?", "is there a ribbon ?"], "prompt": "A {} plays with a ribbon"}, {"index": 71, "image_id": 2411233, "entity": "cat", "caption": "One cat is in carpet.", "question": ["is there one cat ?", "is there carpet ?"], "prompt": "One {} is in carpet."}, {"index": 72, "image_id": 2411233, "entity": "cat", "caption": "cat is biting ribbon", "question": ["is there cat ?", "is there ribbon ?"], "prompt": "{} is biting ribbon"}, {"index": 73, "image_id": 2411233, "entity": "cat", "caption": "cat is grabbing ribbon", "question": ["is there cat ?", "is there ribbon ?"], "prompt": "{} is grabbing ribbon"}, {"index": 74, "image_id": 2411233, "entity": "cat", "caption": "cat is looking at ribbon", "question": ["is there cat ?", "is there ribbon ?"], "prompt": "{} is looking at ribbon"}, {"index": 75, "image_id": 2411233, "entity": "cat", "caption": "fluffy yellow cat is playful", "question": ["is there fluffy yellow cat ?"], "prompt": "fluffy yellow {} is playful"}, {"index": 76, "image_id": 2411207, "entity": "cat", "caption": "cat looks away from blurry pink remote", "question": ["is there cat ?", "is there blurry pink remote ?"], "prompt": "{} looks away from blurry pink remote"}, {"index": 77, "image_id": 2411207, "entity": "cat", "caption": "cat has big furry left paw", "question": ["is there cat ?", "is there big furry left paw ?"], "prompt": "{} has big furry left paw"}, {"index": 78, "image_id": 2411207, "entity": "cat", "caption": "cat has long furry right arm with cute paw at its end", "question": ["is there cat ?", "is there long furry right arm ?", "is there cute paw ?", "is there its end ?"], "prompt": "{} has long furry right arm with cute paw at its end"}, {"index": 79, "image_id": 2411207, "entity": "cat", "caption": "cat has a cream color nose & pinkish fur fluffing from its ear", "question": ["is there cat ?", "is there a cream color nose ?", "is there pinkish fur ?", "is there its ear ?"], "prompt": "{} has a cream color nose & pinkish fur fluffing from its ear"}, {"index": 80, "image_id": 2411207, "entity": "cat", "caption": "the cat is holding a game controller", "question": ["is there the cat ?", "is there a game controller ?"], "prompt": "the {} is holding a game controller"}, {"index": 81, "image_id": 2411207, "entity": "cat", "caption": "the cat is laying on a blue blanket", "question": ["is there the cat ?", "is there a blue blanket ?"], "prompt": "the {} is laying on a blue blanket"}, {"index": 82, "image_id": 2411207, "entity": "cat", "caption": "the cat has wiskers", "question": ["is there the cat ?", "are there wiskers ?"], "prompt": "the {} has wiskers"}, {"index": 83, "image_id": 2411207, "entity": "cat", "caption": "the cat has two ears", "question": ["is there the cat ?", "are there two ears ?"], "prompt": "the {} has two ears"}, {"index": 84, "image_id": 2411207, "entity": "cat", "caption": "the cat has a nose", "question": ["is there the cat ?", "is there a nose ?"], "prompt": "the {} has a nose"}, {"index": 85, "image_id": 2411207, "entity": "cat", "caption": "the cat has paws", "question": ["is there the cat ?", "are there paws ?"], "prompt": "the {} has paws"}, {"index": 86, "image_id": 2411207, "entity": "cat", "caption": "cat laying on denim covers", "question": ["is there cat ?", "are there denim covers ?"], "prompt": "{} laying on denim covers"}, {"index": 87, "image_id": 2411207, "entity": "cat", "caption": "the cat is on the bed", "question": ["is there the cat ?", "is there the bed ?"], "prompt": "the {} is on the bed"}, {"index": 88, "image_id": 2411107, "entity": "cat", "caption": "it is the paw of a cat", "question": ["is there the paw ?", "is there a cat ?"], "prompt": "it is the paw of a {}"}, {"index": 89, "image_id": 2411107, "entity": "cat", "caption": "cat is sleeping on the keyboard", "question": ["is there cat ?", "is there the keyboard ?"], "prompt": "{} is sleeping on the keyboard"}, {"index": 90, "image_id": 2411012, "entity": "cat", "caption": "Black cat drinking from a faucet", "question": ["is there black cat ?", "is there a faucet ?"], "prompt": "Black {} drinking from a faucet"}, {"index": 91, "image_id": 2411012, "entity": "cat", "caption": "the cat is drinking water from the faucet", "question": ["is there the cat ?", "is there water ?", "is there the faucet ?"], "prompt": "the {} is drinking water from the faucet"}, {"index": 92, "image_id": 2410936, "entity": "cat", "caption": "black cat tail ", "question": ["is there black cat tail ?"], "prompt": "black {} tail "}, {"index": 93, "image_id": 2410936, "entity": "cat", "caption": "white whiskers on cat face", "question": ["are there white whiskers ?", "is there cat ?"], "prompt": "white whiskers on {} face"}, {"index": 94, "image_id": 2410936, "entity": "cat", "caption": "black cat ear with hairs inside", "question": ["is there black cat ?", "are there hairs ?"], "prompt": "black {} ear with hairs inside"}, {"index": 95, "image_id": 2410936, "entity": "cat", "caption": "A cats left ear. ", "question": ["are there a cats ?", "is there ear ?"], "prompt": "A {}s left ear. "}, {"index": 96, "image_id": 2410936, "entity": "cat", "caption": "A cat left eyeball. ", "question": ["is there a cat ?", "is there eyeball ?"], "prompt": "A {} left eyeball. "}, {"index": 97, "image_id": 2410936, "entity": "cat", "caption": "black and white cat curled up on a blue mat", "question": ["is there black and white cat ?", "is there a blue mat ?"], "prompt": "black and white {} curled up on a blue mat"}, {"index": 98, "image_id": 2410787, "entity": "cat", "caption": "the cat has white paws", "question": ["is there the cat ?", "are there white paws ?"], "prompt": "the {} has white paws"}, {"index": 99, "image_id": 2410787, "entity": "cat", "caption": "the cat has ears", "question": ["is there the cat ?", "are there ears ?"], "prompt": "the {} has ears"}, {"index": 100, "image_id": 2410787, "entity": "cat", "caption": "the cat's nose is pink", "question": ["is there the cat's nose ?"], "prompt": "the {}'s nose is pink"}, {"index": 101, "image_id": 2410787, "entity": "cat", "caption": "the cat has eyes", "question": ["is there the cat ?", "are there eyes ?"], "prompt": "the {} has eyes"}, {"index": 102, "image_id": 2410771, "entity": "cat", "caption": "a cat is sitting on the floor", "question": ["is there a cat ?", "is there the floor ?"], "prompt": "a {} is sitting on the floor"}, {"index": 103, "image_id": 2410771, "entity": "cat", "caption": "The cat is standing by the carrots.", "question": ["is there the cat ?", "are there the carrots ?"], "prompt": "The {} is standing by the carrots."}, {"index": 104, "image_id": 2410771, "entity": "cat", "caption": "The cat is standing by the refrigerator.", "question": ["is there the cat ?", "is there the refrigerator ?"], "prompt": "The {} is standing by the refrigerator."}, {"index": 105, "image_id": 2410771, "entity": "cat", "caption": "the cat has long whiskers.", "question": ["is there the cat ?", "are there long whiskers ?"], "prompt": "the {} has long whiskers."}, {"index": 106, "image_id": 2410771, "entity": "cat", "caption": "the cat is laying on a bag of carrots", "question": ["is there the cat ?", "is there a bag ?", "are there carrots ?"], "prompt": "the {} is laying on a bag of carrots"}, {"index": 107, "image_id": 2410771, "entity": "cat", "caption": "the cat's eyes are closed", "question": ["are there the cat's eyes ?"], "prompt": "the {}'s eyes are closed"}, {"index": 108, "image_id": 2410771, "entity": "cat", "caption": "the cat is leaning on the carrots", "question": ["is there the cat ?", "are there the carrots ?"], "prompt": "the {} is leaning on the carrots"}, {"index": 109, "image_id": 2410643, "entity": "cat", "caption": "the cat is blACK", "question": ["is there the cat ?"], "prompt": "the {} is blACK"}, {"index": 110, "image_id": 2410643, "entity": "cat", "caption": "a triangle shaped white patch of fur on the cat's chest", "question": ["is there a triangle shaped white patch ?", "is there fur ?", "is there the cat's chest ?"], "prompt": "a triangle shaped white patch of fur on the {}'s chest"}, {"index": 111, "image_id": 2410593, "entity": "cat", "caption": "cat has two small ears .", "question": ["is there cat ?", "are there two small ears ?"], "prompt": "{} has two small ears ."}, {"index": 112, "image_id": 2410593, "entity": "cat", "caption": "The cat is sitting next to a potted plant.", "question": ["is there the cat ?", "is there a potted plant ?"], "prompt": "The {} is sitting next to a potted plant."}, {"index": 113, "image_id": 2410360, "entity": "cat", "caption": "the cats leg is white in color", "question": ["are there the cats leg ?", "is there color ?"], "prompt": "the {}s leg is white in color"}, {"index": 114, "image_id": 2410360, "entity": "cat", "caption": "these are the cats whiskers", "question": ["are there the cats ?", "are there whiskers ?"], "prompt": "these are the {}s whiskers"}, {"index": 115, "image_id": 2410360, "entity": "cat", "caption": "cat head resting on paw", "question": ["is there cat head ?", "is there paw ?"], "prompt": "{} head resting on paw"}, {"index": 116, "image_id": 2410153, "entity": "cat", "caption": "The cat's fur is tan and light brown in color", "question": ["is there the cat's fur ?", "is there color ?"], "prompt": "The {}'s fur is tan and light brown in color"}, {"index": 117, "image_id": 2410153, "entity": "cat", "caption": "cat with eyes closed", "question": ["is there cat ?", "are there eyes ?"], "prompt": "{} with eyes closed"}, {"index": 118, "image_id": 2410153, "entity": "cat", "caption": "long white whiskers on cat face", "question": ["are there long white whiskers ?", "is there cat ?"], "prompt": "long white whiskers on {} face"}, {"index": 119, "image_id": 2409898, "entity": "cat", "caption": "Front paw of cat is white", "question": ["is there cat ?"], "prompt": "Front paw of {} is white"}, {"index": 120, "image_id": 2409898, "entity": "cat", "caption": "Leg of cat is grey", "question": ["is there leg ?", "is there cat ?"], "prompt": "Leg of {} is grey"}, {"index": 121, "image_id": 2409898, "entity": "cat", "caption": "Front leg of cat is grey", "question": ["is there front leg ?", "is there cat ?"], "prompt": "Front leg of {} is grey"}, {"index": 122, "image_id": 2409898, "entity": "cat", "caption": "The cat is licking its paw", "question": ["is there the cat ?", "is there its paw ?"], "prompt": "The {} is licking its paw"}, {"index": 123, "image_id": 2409898, "entity": "cat", "caption": "Front neck of cat is white", "question": ["is there front neck ?", "is there cat ?"], "prompt": "Front neck of {} is white"}, {"index": 124, "image_id": 2409898, "entity": "cat", "caption": "White paw of cat is white", "question": ["is there cat ?"], "prompt": "White paw of {} is white"}, {"index": 125, "image_id": 2409898, "entity": "cat", "caption": "the cat is licking its leg", "question": ["is there the cat ?", "is there its leg ?"], "prompt": "the {} is licking its leg"}, {"index": 126, "image_id": 2409879, "entity": "cat", "caption": "An orange cat lies in the sink.", "question": ["is there an orange cat ?", "is there the sink ?"], "prompt": "An orange {} lies in the sink."}, {"index": 127, "image_id": 2409879, "entity": "cat", "caption": "An orange striped cat lies in the dish rack.", "question": ["is there an orange striped cat ?", "is there the dish rack ?"], "prompt": "An orange striped {} lies in the dish rack."}, {"index": 128, "image_id": 2409867, "entity": "cat", "caption": "cat curled around a bottle", "question": ["is there cat ?", "is there a bottle ?"], "prompt": "{} curled around a bottle"}, {"index": 129, "image_id": 2409867, "entity": "cat", "caption": "one cat is lying down.", "question": ["is there one cat ?"], "prompt": "one {} is lying down."}, {"index": 130, "image_id": 2409867, "entity": "cat", "caption": "cat is holding bottle.", "question": ["is there cat ?", "is there bottle ?"], "prompt": "{} is holding bottle."}, {"index": 131, "image_id": 2409867, "entity": "cat", "caption": "cat is lying in cloth.", "question": ["is there cat ?", "is there cloth ?"], "prompt": "{} is lying in cloth."}, {"index": 132, "image_id": 2409709, "entity": "cat", "caption": "black cat reclined on furniture", "question": ["is there black cat ?", "is there furniture ?"], "prompt": "black {} reclined on furniture"}, {"index": 133, "image_id": 2409463, "entity": "cat", "caption": "The cats left front paw.", "question": ["are there the cats ?", "is there front paw ?"], "prompt": "The {}s left front paw."}, {"index": 134, "image_id": 2409454, "entity": "cat", "caption": "a gray cat has a light colored spot on its head", "question": ["is there a gray cat ?", "is there a light colored spot ?", "is there its head ?"], "prompt": "a gray {} has a light colored spot on its head"}, {"index": 135, "image_id": 2409407, "entity": "cat", "caption": "cat has white paws", "question": ["is there cat ?", "are there white paws ?"], "prompt": "{} has white paws"}, {"index": 136, "image_id": 2409395, "entity": "cat", "caption": "The cat not enjoying the Wii remote", "question": ["is there the cat ?", "is there the wii remote ?"], "prompt": "The {} not enjoying the Wii remote"}, {"index": 137, "image_id": 2409225, "entity": "cat", "caption": "person's lap on which cat is standing", "question": ["is there person's lap ?", "is there cat ?"], "prompt": "person's lap on which {} is standing"}, {"index": 138, "image_id": 2409225, "entity": "cat", "caption": "A bird is on top of a cat", "question": ["is there a bird ?", "is there top ?", "is there a cat ?"], "prompt": "A bird is on top of a {}"}, {"index": 139, "image_id": 2409225, "entity": "cat", "caption": "The cat has white colored feet", "question": ["is there the cat ?", "are there white colored feet ?"], "prompt": "The {} has white colored feet"}, {"index": 140, "image_id": 2409164, "entity": "cat", "caption": "The cat is sitting in the luggage.", "question": ["is there the cat ?", "is there the luggage ?"], "prompt": "The {} is sitting in the luggage."}, {"index": 141, "image_id": 2409164, "entity": "cat", "caption": "The cat is sitting on the clothes.", "question": ["is there the cat ?", "are there the clothes ?"], "prompt": "The {} is sitting on the clothes."}, {"index": 142, "image_id": 2409164, "entity": "cat", "caption": "The cat has short hair.", "question": ["is there the cat ?", "is there short hair ?"], "prompt": "The {} has short hair."}, {"index": 143, "image_id": 2409164, "entity": "cat", "caption": "The cat's eyes are blue.", "question": ["are there the cat's eyes ?"], "prompt": "The {}'s eyes are blue."}, {"index": 144, "image_id": 2409164, "entity": "cat", "caption": "The cat's nose is pink.", "question": ["is there the cat's nose ?"], "prompt": "The {}'s nose is pink."}, {"index": 145, "image_id": 2409164, "entity": "cat", "caption": "The cat is on the suitcase.", "question": ["is there the cat ?", "is there the suitcase ?"], "prompt": "The {} is on the suitcase."}, {"index": 146, "image_id": 2408732, "entity": "cat", "caption": "Computer is near sleeping cat", "question": ["is there computer ?", "is there cat ?"], "prompt": "Computer is near sleeping {}"}, {"index": 147, "image_id": 2408855, "entity": "cat", "caption": "the cat's right eye is yellow", "question": ["is there the cat's right eye ?"], "prompt": "the {}'s right eye is yellow"}, {"index": 148, "image_id": 2408923, "entity": "cat", "caption": "the cat's nose is black and pink", "question": ["is there the cat's nose ?"], "prompt": "the {}'s nose is black and pink"}, {"index": 149, "image_id": 2408923, "entity": "cat", "caption": "white whiskers are on the cat", "question": ["are there white whiskers ?", "is there the cat ?"], "prompt": "white whiskers are on the {}"}, {"index": 150, "image_id": 2408923, "entity": "cat", "caption": "the cat is lying on a desk", "question": ["is there the cat ?", "is there a desk ?"], "prompt": "the {} is lying on a desk"}, {"index": 151, "image_id": 2408923, "entity": "cat", "caption": "The cat is on top of a newspaper", "question": ["is there the cat ?", "is there top ?", "is there a newspaper ?"], "prompt": "The {} is on top of a newspaper"}, {"index": 152, "image_id": 2408923, "entity": "cat", "caption": "The cats eyes are closed", "question": ["are there the cats ?", "are there eyes ?"], "prompt": "The {}s eyes are closed"}, {"index": 153, "image_id": 2408923, "entity": "cat", "caption": "The cat has a big black stripe running down its head", "question": ["is there the cat ?", "is there a big black stripe ?", "is there its head ?"], "prompt": "The {} has a big black stripe running down its head"}, {"index": 154, "image_id": 2408532, "entity": "cat", "caption": "Ears of cat has white hair inside", "question": ["are there ears ?", "is there cat ?", "is there white hair ?"], "prompt": "Ears of {} has white hair inside"}, {"index": 155, "image_id": 2408532, "entity": "cat", "caption": "Eyes of cat are big", "question": ["are there eyes ?", "is there cat ?"], "prompt": "Eyes of {} are big"}, {"index": 156, "image_id": 2408532, "entity": "cat", "caption": "Nose of cat is pink", "question": ["is there nose ?", "is there cat ?"], "prompt": "Nose of {} is pink"}, {"index": 157, "image_id": 2408532, "entity": "cat", "caption": "Chest of cat is white", "question": ["is there chest ?", "is there cat ?"], "prompt": "Chest of {} is white"}, {"index": 158, "image_id": 2408492, "entity": "cat", "caption": "a cat is asleep on a desk", "question": ["is there a cat ?", "is there a desk ?"], "prompt": "a {} is asleep on a desk"}, {"index": 159, "image_id": 2408492, "entity": "cat", "caption": "a black and white cat is lying on a desk", "question": ["is there a black and white cat ?", "is there a desk ?"], "prompt": "a black and white {} is lying on a desk"}, {"index": 160, "image_id": 2408492, "entity": "cat", "caption": "cat has white whiskers", "question": ["is there cat ?", "are there white whiskers ?"], "prompt": "{} has white whiskers"}, {"index": 161, "image_id": 2408473, "entity": "cat", "caption": "Black and white cat standing on two back legs.", "question": ["is there black and white cat ?", "are there two back legs ?"], "prompt": "Black and white {} standing on two back legs."}, {"index": 162, "image_id": 2408194, "entity": "cat", "caption": "a cat sits on a tan carpet", "question": ["is there a cat ?", "is there a tan carpet ?"], "prompt": "a {} sits on a tan carpet"}, {"index": 163, "image_id": 2408194, "entity": "cat", "caption": "cat has orange spots", "question": ["is there cat ?", "are there orange spots ?"], "prompt": "{} has orange spots"}, {"index": 164, "image_id": 2408093, "entity": "cat", "caption": "black cat stretched out on couch", "question": ["is there black cat ?", "is there couch ?"], "prompt": "black {} stretched out on couch"}, {"index": 165, "image_id": 2408093, "entity": "cat", "caption": "the cat is sleeping on the pillow", "question": ["is there the cat ?", "is there the pillow ?"], "prompt": "the {} is sleeping on the pillow"}, {"index": 166, "image_id": 2408093, "entity": "cat", "caption": "the cat has a blue colar", "question": ["is there the cat ?", "is there a blue colar ?"], "prompt": "the {} has a blue colar"}, {"index": 167, "image_id": 2407754, "entity": "cat", "caption": "the cat is in the sink", "question": ["is there the cat ?", "is there the sink ?"], "prompt": "the {} is in the sink"}, {"index": 168, "image_id": 2407673, "entity": "cat", "caption": "A cat close up", "question": ["is there a cat ?"], "prompt": "A {} close up"}, {"index": 169, "image_id": 2407673, "entity": "cat", "caption": "The skin around the cat's eyes is pink. ", "question": ["is there the skin ?", "are there the cat's eyes ?"], "prompt": "The skin around the {}'s eyes is pink. "}, {"index": 170, "image_id": 2407607, "entity": "cat", "caption": "cat is tiger striped", "question": ["is there cat ?", "is there tiger ?"], "prompt": "{} is tiger striped"}, {"index": 171, "image_id": 2407607, "entity": "cat", "caption": "cat has tie with collar on", "question": ["is there cat ?", "is there collar ?"], "prompt": "{} has tie with collar on"}, {"index": 172, "image_id": 2407607, "entity": "cat", "caption": "cat is sitting on floor", "question": ["is there cat ?", "is there floor ?"], "prompt": "{} is sitting on floor"}, {"index": 173, "image_id": 2407287, "entity": "cat", "caption": "Green eyed cat wearing hat", "question": ["is there green eyed cat ?", "is there hat ?"], "prompt": "Green eyed {} wearing hat"}, {"index": 174, "image_id": 2407287, "entity": "cat", "caption": "the cat is on the bed ", "question": ["is there the cat ?", "is there the bed ?"], "prompt": "the {} is on the bed "}, {"index": 175, "image_id": 2407017, "entity": "cat", "caption": "this is foot of a cat", "question": ["is there foot ?", "is there a cat ?"], "prompt": "this is foot of a {}"}, {"index": 176, "image_id": 2406806, "entity": "cat", "caption": "the cat is on the sink", "question": ["is there the cat ?", "is there the sink ?"], "prompt": "the {} is on the sink"}, {"index": 177, "image_id": 2406806, "entity": "cat", "caption": "the cat is looking at the mirror", "question": ["is there the cat ?", "is there the mirror ?"], "prompt": "the {} is looking at the mirror"}, {"index": 178, "image_id": 2406806, "entity": "cat", "caption": "cat on bathroom sink ", "question": ["is there cat ?", "is there bathroom ?"], "prompt": "{} on bathroom sink "}, {"index": 179, "image_id": 2406806, "entity": "cat", "caption": "A cat is in the photo", "question": ["is there a cat ?", "is there the photo ?"], "prompt": "A {} is in the photo"}, {"index": 180, "image_id": 2406806, "entity": "cat", "caption": "A cat is on a white sink", "question": ["is there a cat ?", "is there a white sink ?"], "prompt": "A {} is on a white sink"}, {"index": 181, "image_id": 2406806, "entity": "cat", "caption": "A mirror is above the cat", "question": ["is there a mirror ?", "is there the cat ?"], "prompt": "A mirror is above the {}"}, {"index": 182, "image_id": 2406806, "entity": "cat", "caption": "a cat's paws clinging to the side of a sink", "question": ["are there a cat's paws ?", "is there the side ?", "is there a sink ?"], "prompt": "a {}'s paws clinging to the side of a sink"}, {"index": 183, "image_id": 2406806, "entity": "cat", "caption": "the cat has a white snout", "question": ["is there the cat ?", "is there a white snout ?"], "prompt": "the {} has a white snout"}, {"index": 184, "image_id": 2406806, "entity": "cat", "caption": "a mirror is behind the cat", "question": ["is there a mirror ?", "is there the cat ?"], "prompt": "a mirror is behind the {}"}, {"index": 185, "image_id": 2406806, "entity": "cat", "caption": "the cat has green eyes", "question": ["is there the cat ?", "are there green eyes ?"], "prompt": "the {} has green eyes"}, {"index": 186, "image_id": 2406806, "entity": "cat", "caption": "the cat has a black and white head", "question": ["is there the cat ?", "is there a black and white head ?"], "prompt": "the {} has a black and white head"}, {"index": 187, "image_id": 2406438, "entity": "cat", "caption": "The cat has black and tan stripes. ", "question": ["is there the cat ?", "are there black and tan stripes ?"], "prompt": "The {} has black and tan stripes. "}, {"index": 188, "image_id": 2406438, "entity": "cat", "caption": "the cat has a pink ear", "question": ["is there the cat ?", "is there a pink ear ?"], "prompt": "the {} has a pink ear"}, {"index": 189, "image_id": 2406438, "entity": "cat", "caption": "The cat is reaching for the desk.", "question": ["is there the cat ?", "is there the desk ?"], "prompt": "The {} is reaching for the desk."}, {"index": 190, "image_id": 2406438, "entity": "cat", "caption": "the cat has pink inside his ear", "question": ["is there the cat ?", "is there his ear ?"], "prompt": "the {} has pink inside his ear"}, {"index": 191, "image_id": 2406321, "entity": "cat", "caption": "attractive cat smothering keys of a laptop.", "question": ["is there attractive cat ?", "are there keys ?", "is there a laptop ?"], "prompt": "attractive {} smothering keys of a laptop."}, {"index": 192, "image_id": 2406171, "entity": "cat", "caption": "cat shrouded in darkness illuminated by laptop light", "question": ["is there cat ?", "is there darkness ?", "is there laptop light ?"], "prompt": "{} shrouded in darkness illuminated by laptop light"}, {"index": 193, "image_id": 2406171, "entity": "cat", "caption": "cat climbing on turned on laptop", "question": ["is there cat ?", "is there laptop ?"], "prompt": "{} climbing on turned on laptop"}, {"index": 194, "image_id": 2406171, "entity": "cat", "caption": "cat is using keyboard", "question": ["is there cat ?", "is there keyboard ?"], "prompt": "{} is using keyboard"}, {"index": 195, "image_id": 2406052, "entity": "cat", "caption": "cat has a white paw", "question": ["is there cat ?", "is there a white paw ?"], "prompt": "{} has a white paw"}, {"index": 196, "image_id": 2405988, "entity": "cat", "caption": "this is the cat's paw", "question": ["is there the cat's paw ?"], "prompt": "this is the {}'s paw"}, {"index": 197, "image_id": 2405915, "entity": "cat", "caption": "this is a cat", "question": ["is there a cat ?"], "prompt": "this is a {}"}, {"index": 198, "image_id": 2405862, "entity": "cat", "caption": "the cat has his head raised", "question": ["is there the cat ?", "is there his head ?"], "prompt": "the {} has his head raised"}, {"index": 199, "image_id": 2405862, "entity": "cat", "caption": "a cat that is sniffing some flowers", "question": ["is there a cat ?", "are there some flowers ?"], "prompt": "a {} that is sniffing some flowers"}, {"index": 200, "image_id": 2405862, "entity": "cat", "caption": "a cat sniffs a flower", "question": ["is there a cat ?", "is there a flower ?"], "prompt": "a {} sniffs a flower"}, {"index": 201, "image_id": 2405862, "entity": "cat", "caption": "the cat is wearing a colar", "question": ["is there the cat ?", "is there a colar ?"], "prompt": "the {} is wearing a colar"}, {"index": 202, "image_id": 2405862, "entity": "cat", "caption": "a cat smells a purple flower", "question": ["is there a cat ?", "is there a purple flower ?"], "prompt": "a {} smells a purple flower"}, {"index": 203, "image_id": 2405862, "entity": "cat", "caption": "the cat has a charm on it's collar", "question": ["is there the cat ?", "is there a charm ?", "is there it's collar ?"], "prompt": "the {} has a charm on it's collar"}, {"index": 204, "image_id": 2405805, "entity": "cat", "caption": "whiskers on a cats face", "question": ["are there whiskers ?", "are there a cats ?"], "prompt": "whiskers on a {}s face"}, {"index": 205, "image_id": 2405805, "entity": "cat", "caption": "cat ears pointed slightly outwards", "question": ["are there cat ears ?"], "prompt": "{} ears pointed slightly outwards"}, {"index": 206, "image_id": 2405805, "entity": "cat", "caption": "cat tail curled around front paw", "question": ["is there cat tail ?", "is there front paw ?"], "prompt": "{} tail curled around front paw"}, {"index": 207, "image_id": 2405805, "entity": "cat", "caption": "end of cat's nose is pink", "question": ["is there end ?", "is there cat's nose ?"], "prompt": "end of {}'s nose is pink"}, {"index": 208, "image_id": 2405805, "entity": "cat", "caption": "the eyes of the cat are wide open ", "question": ["are there the eyes ?", "is there the cat ?"], "prompt": "the eyes of the {} are wide open "}, {"index": 209, "image_id": 2405760, "entity": "cat", "caption": "the cat has yellow eyes", "question": ["is there the cat ?", "are there yellow eyes ?"], "prompt": "the {} has yellow eyes"}, {"index": 210, "image_id": 2405760, "entity": "cat", "caption": "a blanket is on the cat's head", "question": ["is there a blanket ?", "is there the cat's head ?"], "prompt": "a blanket is on the {}'s head"}, {"index": 211, "image_id": 2405760, "entity": "cat", "caption": "the cat has a grey and white striped tail", "question": ["is there the cat ?", "is there a grey and white striped tail ?"], "prompt": "the {} has a grey and white striped tail"}, {"index": 212, "image_id": 2405760, "entity": "cat", "caption": "The cat has a pink nose. ", "question": ["is there the cat ?", "is there a pink nose ?"], "prompt": "The {} has a pink nose. "}, {"index": 213, "image_id": 2405760, "entity": "cat", "caption": "The cat has amber eyes. ", "question": ["is there the cat ?", "are there amber eyes ?"], "prompt": "The {} has amber eyes. "}, {"index": 214, "image_id": 2405760, "entity": "cat", "caption": "The cat is lying on a blue shirt. ", "question": ["is there the cat ?", "is there a blue shirt ?"], "prompt": "The {} is lying on a blue shirt. "}, {"index": 215, "image_id": 2405760, "entity": "cat", "caption": "The cat's tail is black and grey.", "question": ["is there the cat's tail ?"], "prompt": "The {}'s tail is black and grey."}, {"index": 216, "image_id": 2405476, "entity": "cat", "caption": "the cat has blue eyes", "question": ["is there the cat ?", "are there blue eyes ?"], "prompt": "the {} has blue eyes"}, {"index": 217, "image_id": 2405476, "entity": "cat", "caption": "the cat has a black nose", "question": ["is there the cat ?", "is there a black nose ?"], "prompt": "the {} has a black nose"}, {"index": 218, "image_id": 2405476, "entity": "cat", "caption": "the cat is on a pad", "question": ["is there the cat ?", "is there a pad ?"], "prompt": "the {} is on a pad"}, {"index": 219, "image_id": 2405476, "entity": "cat", "caption": "the cat has a white and black face", "question": ["is there the cat ?", "is there a white and black face ?"], "prompt": "the {} has a white and black face"}, {"index": 220, "image_id": 2405417, "entity": "cat", "caption": "Head of cat is white", "question": ["is there head ?", "is there cat ?"], "prompt": "Head of {} is white"}, {"index": 221, "image_id": 2405417, "entity": "cat", "caption": "Paws of cat are white", "question": ["are there paws ?", "is there cat ?"], "prompt": "Paws of {} are white"}, {"index": 222, "image_id": 2405417, "entity": "cat", "caption": "Pointy eat of cat", "question": ["is there pointy eat ?", "is there cat ?"], "prompt": "Pointy eat of {}"}, {"index": 223, "image_id": 2405417, "entity": "cat", "caption": "this is a cat ", "question": ["is there a cat ?"], "prompt": "this is a {} "}, {"index": 224, "image_id": 2405417, "entity": "cat", "caption": "this is the image of the cat ", "question": ["is there the image ?", "is there the cat ?"], "prompt": "this is the image of the {} "}, {"index": 225, "image_id": 2405274, "entity": "cat", "caption": "these are the cat's eyes", "question": ["are there the cat's eyes ?"], "prompt": "these are the {}'s eyes"}, {"index": 226, "image_id": 2405274, "entity": "cat", "caption": "this is the cat's ear", "question": ["is there the cat's ear ?"], "prompt": "this is the {}'s ear"}, {"index": 227, "image_id": 2405274, "entity": "cat", "caption": "the cat is in front of the soap dispenser", "question": ["is there the cat ?", "is there front ?", "is there the soap dispenser ?"], "prompt": "the {} is in front of the soap dispenser"}, {"index": 228, "image_id": 2405137, "entity": "cat", "caption": "cat paw extended over sofa", "question": ["is there sofa ?"], "prompt": "{} paw extended over sofa"}, {"index": 229, "image_id": 2405137, "entity": "cat", "caption": "A cat is sitting on the bed", "question": ["is there a cat ?", "is there the bed ?"], "prompt": "A {} is sitting on the bed"}, {"index": 230, "image_id": 2405137, "entity": "cat", "caption": "The cat is sitting on the floor", "question": ["is there the cat ?", "is there the floor ?"], "prompt": "The {} is sitting on the floor"}, {"index": 231, "image_id": 2405137, "entity": "cat", "caption": "The cat has long legs", "question": ["is there the cat ?", "are there long legs ?"], "prompt": "The {} has long legs"}, {"index": 232, "image_id": 2405137, "entity": "cat", "caption": "The cat is watching the other cat.", "question": ["is there the cat ?", "is there the other cat ?"], "prompt": "The {} is watching the other {}."}, {"index": 233, "image_id": 2405129, "entity": "cat", "caption": "The cat has long whiskers", "question": ["is there the cat ?", "are there long whiskers ?"], "prompt": "The {} has long whiskers"}, {"index": 234, "image_id": 2405013, "entity": "cat", "caption": "The cat has a grouchy face.", "question": ["is there the cat ?", "is there a grouchy face ?"], "prompt": "The {} has a grouchy face."}, {"index": 235, "image_id": 2405013, "entity": "cat", "caption": "The cat has grey and tan fur on it's face.", "question": ["is there the cat ?", "is there fur ?", "is there it's face ?"], "prompt": "The {} has grey and tan fur on it's face."}, {"index": 236, "image_id": 2405013, "entity": "cat", "caption": "cat is sitting next to white apple controller", "question": ["is there cat ?", "is there white apple controller ?"], "prompt": "{} is sitting next to white apple controller"}, {"index": 237, "image_id": 2405013, "entity": "cat", "caption": "cat is sitting on dark wood table", "question": ["is there cat ?", "is there dark wood table ?"], "prompt": "{} is sitting on dark wood table"}, {"index": 238, "image_id": 2404986, "entity": "cat", "caption": "Orange and white adult cat laying on wooden table", "question": ["is there orange and white adult cat ?", "is there wooden table ?"], "prompt": "Orange and white adult {} laying on wooden table"}, {"index": 239, "image_id": 2404986, "entity": "cat", "caption": "Orange and white cat with yellow eyes laying on table", "question": ["is there orange and white cat ?", "are there yellow eyes ?", "is there table ?"], "prompt": "Orange and white {} with yellow eyes laying on table"}, {"index": 240, "image_id": 2404986, "entity": "cat", "caption": "orange cat with white stripes and white feet laying on picnic table", "question": ["are there white stripes ?", "are there white feet ?", "is there picnic table ?"], "prompt": "orange {} with white stripes and white feet laying on picnic table"}, {"index": 241, "image_id": 2404986, "entity": "cat", "caption": "The cat has white feet.", "question": ["is there the cat ?", "are there white feet ?"], "prompt": "The {} has white feet."}, {"index": 242, "image_id": 2404986, "entity": "cat", "caption": "white ans orange stripes on the cat leg", "question": ["are there white ans orange stripes ?", "is there the cat leg ?"], "prompt": "white ans orange stripes on the {} leg"}, {"index": 243, "image_id": 2404986, "entity": "cat", "caption": "cat has white paw", "question": ["is there cat ?"], "prompt": "{} has white paw"}, {"index": 244, "image_id": 2404986, "entity": "cat", "caption": "cat has green eye", "question": ["is there cat ?", "is there green eye ?"], "prompt": "{} has green eye"}, {"index": 245, "image_id": 2404745, "entity": "cat", "caption": "the cat is wearing a tie", "question": ["is there the cat ?", "is there a tie ?"], "prompt": "the {} is wearing a tie"}, {"index": 246, "image_id": 2404745, "entity": "cat", "caption": "the cat has big eyes", "question": ["is there the cat ?", "are there big eyes ?"], "prompt": "the {} has big eyes"}, {"index": 247, "image_id": 2404745, "entity": "cat", "caption": "The black bow tie on the cat's neck.", "question": ["is there the black bow tie ?", "is there the cat's neck ?"], "prompt": "The black bow tie on the {}'s neck."}, {"index": 248, "image_id": 2404658, "entity": "cat", "caption": "A cat leaning against another cat who is lying down", "question": ["is there a cat ?", "is there another cat ?"], "prompt": "A {} leaning against another {} who is lying down"}, {"index": 249, "image_id": 2404658, "entity": "cat", "caption": "Two cats are laying on an office desk", "question": ["are there two cats ?", "is there an office desk ?"], "prompt": "Two {}s are laying on an office desk"}, {"index": 250, "image_id": 2404475, "entity": "cat", "caption": "cat tail tipped on white ", "question": ["is there cat tail ?"], "prompt": "{} tail tipped on white "}, {"index": 251, "image_id": 2404475, "entity": "cat", "caption": "fur of a cat that is in sharp focus", "question": ["is there fur ?", "is there a cat ?", "is there sharp focus ?"], "prompt": "fur of a {} that is in sharp focus"}, {"index": 252, "image_id": 2404430, "entity": "cat", "caption": "The brown left eye of a lovely cat.", "question": ["is there the brown left eye ?", "is there a lovely cat ?"], "prompt": "The brown left eye of a lovely {}."}, {"index": 253, "image_id": 2404430, "entity": "cat", "caption": "the bucket is beside the cat", "question": ["is there the bucket ?", "is there the cat ?"], "prompt": "the bucket is beside the {}"}, {"index": 254, "image_id": 2404430, "entity": "cat", "caption": "the cat has white feet", "question": ["is there the cat ?", "are there white feet ?"], "prompt": "the {} has white feet"}, {"index": 255, "image_id": 2404430, "entity": "cat", "caption": "the cat is furry", "question": ["is there the cat ?"], "prompt": "the {} is furry"}, {"index": 256, "image_id": 2404430, "entity": "cat", "caption": "the tip of the cat's tail is black", "question": ["is there the tip ?", "is there the cat's tail ?"], "prompt": "the tip of the {}'s tail is black"}, {"index": 257, "image_id": 2404430, "entity": "cat", "caption": "The cat's tail is black and furry", "question": ["is there the cat's tail ?"], "prompt": "The {}'s tail is black and furry"}, {"index": 258, "image_id": 2404430, "entity": "cat", "caption": "A cat is sitting on a window sill", "question": ["is there a cat ?", "is there a window sill ?"], "prompt": "A {} is sitting on a window sill"}, {"index": 259, "image_id": 2404430, "entity": "cat", "caption": "the cat is sitting", "question": ["is there the cat ?"], "prompt": "the {} is sitting"}, {"index": 260, "image_id": 2404313, "entity": "cat", "caption": "Shirt of man feeding cat", "question": ["is there shirt ?", "is there man feeding cat ?"], "prompt": "Shirt of man feeding {}"}, {"index": 261, "image_id": 2404313, "entity": "cat", "caption": "The cat is sniffing an apple.", "question": ["is there the cat ?", "is there an apple ?"], "prompt": "The {} is sniffing an apple."}, {"index": 262, "image_id": 2404073, "entity": "cat", "caption": "these are the cat's whiskers", "question": ["are there the cat's whiskers ?"], "prompt": "these are the {}'s whiskers"}, {"index": 263, "image_id": 2404073, "entity": "cat", "caption": "this is the cat's nose", "question": ["is there the cat's nose ?"], "prompt": "this is the {}'s nose"}, {"index": 264, "image_id": 2404073, "entity": "cat", "caption": "The cat's paw is on the other cat", "question": ["is there the cat's paw ?", "is there the other cat ?"], "prompt": "The {}'s paw is on the other {}"}, {"index": 265, "image_id": 2404073, "entity": "cat", "caption": "The cats are laying against the wall", "question": ["are there the cats ?", "is there the wall ?"], "prompt": "The {}s are laying against the wall"}, {"index": 266, "image_id": 2404073, "entity": "cat", "caption": "The cat's nose is pink", "question": ["is there the cat's nose ?"], "prompt": "The {}'s nose is pink"}, {"index": 267, "image_id": 2404073, "entity": "cat", "caption": "The cat is closing its eyes", "question": ["is there the cat ?", "are there its eyes ?"], "prompt": "The {} is closing its eyes"}, {"index": 268, "image_id": 2404073, "entity": "cat", "caption": "The cat's shadow is on the wall", "question": ["is there the cat's shadow ?", "is there the wall ?"], "prompt": "The {}'s shadow is on the wall"}, {"index": 269, "image_id": 2404073, "entity": "cat", "caption": "a black cat pokes a brown cat in the belly", "question": ["is there a black cat ?", "is there a brown cat ?", "is there the belly ?"], "prompt": "a black {} pokes a brown {} in the belly"}, {"index": 270, "image_id": 2404073, "entity": "cat", "caption": "Eyes on the front of a brown black and white cats face. ", "question": ["are there eyes ?", "is there the front ?", "are there a brown black and white cats ?"], "prompt": "Eyes on the front of a brown black and white {}s face. "}, {"index": 271, "image_id": 2404073, "entity": "cat", "caption": "Eyes on a black and white cats face. ", "question": ["are there eyes ?", "are there a black and white cats ?"], "prompt": "Eyes on a black and white {}s face. "}, {"index": 272, "image_id": 2404073, "entity": "cat", "caption": "Brown, black and white colored kitty laying to the left of another cat. ", "question": ["is there brown, black and white colored kitty ?", "is there the left ?", "is there another cat ?"], "prompt": "Brown, black and white colored kitty laying to the left of another {}. "}, {"index": 273, "image_id": 2404073, "entity": "cat", "caption": "A three colored cats left side eye. ", "question": ["are there a three colored cats ?", "is there side eye ?"], "prompt": "A three colored {}s left side eye. "}, {"index": 274, "image_id": 2404073, "entity": "cat", "caption": "Grey and black cats are playing", "question": ["are there black cats ?"], "prompt": "Grey and black {}s are playing"}, {"index": 275, "image_id": 2404073, "entity": "cat", "caption": "Black and white cat is playing with gray and white cat.", "question": ["is there black and white cat ?", "is there gray and white cat ?"], "prompt": "Black and white {} is playing with gray and white {}."}, {"index": 276, "image_id": 2404073, "entity": "cat", "caption": "both cats have a white face and pink noses", "question": ["are there both cats ?", "is there a white face ?", "are there pink noses ?"], "prompt": "both {}s have a white face and pink noses"}, {"index": 277, "image_id": 2404073, "entity": "cat", "caption": "Two cats are laying down together ", "question": ["are there two cats ?"], "prompt": "Two {}s are laying down together "}, {"index": 278, "image_id": 2404061, "entity": "cat", "caption": "One cat is on the table.", "question": ["is there one cat ?", "is there the table ?"], "prompt": "One {} is on the table."}, {"index": 279, "image_id": 2404061, "entity": "cat", "caption": "cat's foot resting on a computer speaker", "question": ["is there cat's foot ?", "is there a computer speaker ?"], "prompt": "{}'s foot resting on a computer speaker"}, {"index": 280, "image_id": 2404061, "entity": "cat", "caption": "The cat is laying in the sun", "question": ["is there the cat ?", "is there the sun ?"], "prompt": "The {} is laying in the sun"}, {"index": 281, "image_id": 2404061, "entity": "cat", "caption": "The cat's eyes are closed", "question": ["are there the cat's eyes ?"], "prompt": "The {}'s eyes are closed"}, {"index": 282, "image_id": 2404015, "entity": "cat", "caption": "One cat is in floor.", "question": ["is there one cat ?", "is there floor ?"], "prompt": "One {} is in floor."}, {"index": 283, "image_id": 2404015, "entity": "cat", "caption": "Leg of cat holds a plush", "question": ["is there leg ?", "is there cat ?", "is there a plush ?"], "prompt": "Leg of {} holds a plush"}, {"index": 284, "image_id": 2403773, "entity": "cat", "caption": "the cat has a pink tag on its collar", "question": ["is there the cat ?", "is there a pink tag ?", "is there its collar ?"], "prompt": "the {} has a pink tag on its collar"}, {"index": 285, "image_id": 2403773, "entity": "cat", "caption": "the tv is on behind the cat", "question": ["is there the tv ?", "is there the cat ?"], "prompt": "the tv is on behind the {}"}, {"index": 286, "image_id": 2403758, "entity": "cat", "caption": "White cat eyebrows pointing upward", "question": ["are there white cat eyebrows ?"], "prompt": "White {} eyebrows pointing upward"}, {"index": 287, "image_id": 2403758, "entity": "cat", "caption": "cat whiskers highlighted by sunlight", "question": ["are there cat whiskers ?", "is there sunlight ?"], "prompt": "{} whiskers highlighted by sunlight"}, {"index": 288, "image_id": 2403479, "entity": "cat", "caption": "Strange position cat finds self", "question": ["is there strange position cat ?", "is there self ?"], "prompt": "Strange position {} finds self"}, {"index": 289, "image_id": 2403082, "entity": "cat", "caption": "the cat is black", "question": ["is there the cat ?"], "prompt": "the {} is black"}, {"index": 290, "image_id": 2403082, "entity": "cat", "caption": "the cat's eyes are green", "question": ["are there the cat's eyes ?"], "prompt": "the {}'s eyes are green"}, {"index": 291, "image_id": 2403082, "entity": "cat", "caption": "Black cat resting it's head on a bed.", "question": ["is there black cat ?", "is there head ?", "is there a bed ?"], "prompt": "Black {} resting it's head on a bed."}, {"index": 292, "image_id": 2402840, "entity": "cat", "caption": "The back left leg of a cat. ", "question": ["is there the back left leg ?", "is there a cat ?"], "prompt": "The back left leg of a {}. "}, {"index": 293, "image_id": 2402810, "entity": "cat", "caption": "The cat is lying on a pen", "question": ["is there the cat ?", "is there a pen ?"], "prompt": "The {} is lying on a pen"}, {"index": 294, "image_id": 2402619, "entity": "cat", "caption": "the cat has collar", "question": ["is there the cat ?", "is there collar ?"], "prompt": "the {} has collar"}, {"index": 295, "image_id": 2402592, "entity": "cat", "caption": "both cats have white paws", "question": ["are there both cats ?", "are there white paws ?"], "prompt": "both {}s have white paws"}, {"index": 296, "image_id": 2402592, "entity": "cat", "caption": "the cats are touching", "question": ["are there the cats ?"], "prompt": "the {}s are touching"}, {"index": 297, "image_id": 2402592, "entity": "cat", "caption": "A sleeping cat curled in a ball with its face in its fur", "question": ["is there a sleeping cat ?", "is there a ball ?", "is there its face ?", "is there its fur ?"], "prompt": "A sleeping {} curled in a ball with its face in its fur"}, {"index": 298, "image_id": 2402592, "entity": "cat", "caption": "the cat's ears are black", "question": ["are there the cat's ears ?"], "prompt": "the {}'s ears are black"}, {"index": 299, "image_id": 2402592, "entity": "cat", "caption": "the cat's forehead is black", "question": ["is there the cat's forehead ?"], "prompt": "the {}'s forehead is black"}, {"index": 300, "image_id": 2402592, "entity": "cat", "caption": "the nose of the cat is black", "question": ["is there the nose ?", "is there the cat ?"], "prompt": "the nose of the {} is black"}, {"index": 301, "image_id": 2402592, "entity": "cat", "caption": "the fur of the cats' tails is black", "question": ["is there the fur ?", "are there the cats' tails ?"], "prompt": "the fur of the {}s' tails is black"}, {"index": 302, "image_id": 2402592, "entity": "cat", "caption": "the paws of the cats are white", "question": ["are there the paws ?", "are there the cats ?"], "prompt": "the paws of the {}s are white"}, {"index": 303, "image_id": 2402592, "entity": "cat", "caption": "the cats are sleeping on a bed", "question": ["are there the cats ?", "is there a bed ?"], "prompt": "the {}s are sleeping on a bed"}, {"index": 304, "image_id": 2402505, "entity": "cat", "caption": "the cat is on the floor", "question": ["is there the cat ?", "is there the floor ?"], "prompt": "the {} is on the floor"}, {"index": 305, "image_id": 2402505, "entity": "cat", "caption": "the cat is wearing a grey tie", "question": ["is there the cat ?", "is there a grey tie ?"], "prompt": "the {} is wearing a grey tie"}, {"index": 306, "image_id": 2402505, "entity": "cat", "caption": "the cat sits in front of a bookshelf", "question": ["is there the cat ?", "is there front ?", "is there a bookshelf ?"], "prompt": "the {} sits in front of a bookshelf"}, {"index": 307, "image_id": 2402505, "entity": "cat", "caption": "a circular metal object is hanging from the cat's neck", "question": ["is there a circular metal object ?", "is there the cat's neck ?"], "prompt": "a circular metal object is hanging from the {}'s neck"}, {"index": 308, "image_id": 2402505, "entity": "cat", "caption": "the cat wears a human's tie", "question": ["is there the cat ?", "is there a human's tie ?"], "prompt": "the {} wears a human's tie"}, {"index": 309, "image_id": 2402493, "entity": "cat", "caption": "The cat is sleeping on the table.", "question": ["is there the cat ?", "is there the table ?"], "prompt": "The {} is sleeping on the table."}, {"index": 310, "image_id": 2402493, "entity": "cat", "caption": "The cat is laying on the cellphone.", "question": ["is there the cat ?", "is there the cellphone ?"], "prompt": "The {} is laying on the cellphone."}, {"index": 311, "image_id": 2402493, "entity": "cat", "caption": "The cat has long whiskers.", "question": ["is there the cat ?", "are there long whiskers ?"], "prompt": "The {} has long whiskers."}, {"index": 312, "image_id": 2402493, "entity": "cat", "caption": "The cat has a small paw", "question": ["is there the cat ?", "is there a small paw ?"], "prompt": "The {} has a small paw"}, {"index": 313, "image_id": 2402325, "entity": "cat", "caption": "cat whiskers pointing downwards", "question": ["are there cat whiskers ?"], "prompt": "{} whiskers pointing downwards"}, {"index": 314, "image_id": 2402325, "entity": "cat", "caption": "ears of cat are dark", "question": ["are there ears ?", "is there cat ?"], "prompt": "ears of {} are dark"}, {"index": 315, "image_id": 2402325, "entity": "cat", "caption": "front leg of cat stretched", "question": ["is there front leg ?", "is there cat ?"], "prompt": "front leg of {} stretched"}, {"index": 316, "image_id": 2401439, "entity": "cat", "caption": "white hair in cats ear", "question": ["is there white hair ?", "are there cats ?"], "prompt": "white hair in {}s ear"}, {"index": 317, "image_id": 2401192, "entity": "cat", "caption": "The nose of the cat stuffed toy.", "question": ["is there the nose ?", "is there the cat ?", "is there stuffed toy ?"], "prompt": "The nose of the {} stuffed toy."}, {"index": 318, "image_id": 2401192, "entity": "cat", "caption": "the black cat has white fangs", "question": ["is there the black cat ?", "are there white fangs ?"], "prompt": "the black {} has white fangs"}, {"index": 319, "image_id": 2401192, "entity": "cat", "caption": "the cat has a black tail", "question": ["is there the cat ?", "is there a black tail ?"], "prompt": "the {} has a black tail"}, {"index": 320, "image_id": 2400983, "entity": "cat", "caption": "Part of the cat is white.", "question": ["is there part ?", "is there the cat ?"], "prompt": "Part of the {} is white."}, {"index": 321, "image_id": 2400983, "entity": "cat", "caption": "Part of the cat is gray with black stripes.", "question": ["is there part ?", "is there the cat ?", "are there black stripes ?"], "prompt": "Part of the {} is gray with black stripes."}, {"index": 322, "image_id": 2400983, "entity": "cat", "caption": "The cat has yellow eyes.", "question": ["is there the cat ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes."}, {"index": 323, "image_id": 2400983, "entity": "cat", "caption": "The cat has a pink nose.", "question": ["is there the cat ?", "is there a pink nose ?"], "prompt": "The {} has a pink nose."}, {"index": 324, "image_id": 2400983, "entity": "cat", "caption": "The cat has white whiskers.", "question": ["is there the cat ?", "are there white whiskers ?"], "prompt": "The {} has white whiskers."}, {"index": 325, "image_id": 2400983, "entity": "cat", "caption": "multicolored cat laying down", "question": ["is there multicolored cat ?"], "prompt": "multicolored {} laying down"}, {"index": 326, "image_id": 2400934, "entity": "cat", "caption": "The cat is sitting next to the laptop.", "question": ["is there the cat ?", "is there the laptop ?"], "prompt": "The {} is sitting next to the laptop."}, {"index": 327, "image_id": 2400934, "entity": "cat", "caption": "The cat is wearing a collar.", "question": ["is there the cat ?", "is there a collar ?"], "prompt": "The {} is wearing a collar."}, {"index": 328, "image_id": 2400934, "entity": "cat", "caption": "The cellphone is by the cat's tail", "question": ["is there the cellphone ?", "is there the cat's tail ?"], "prompt": "The cellphone is by the {}'s tail"}, {"index": 329, "image_id": 2400803, "entity": "cat", "caption": "cat curled up in a wire basket", "question": ["is there cat ?", "is there a wire basket ?"], "prompt": "{} curled up in a wire basket"}, {"index": 330, "image_id": 2400803, "entity": "cat", "caption": "cat's tail curled around rear of body", "question": ["is there cat's tail ?", "is there rear ?", "is there body ?"], "prompt": "{}'s tail curled around rear of body"}, {"index": 331, "image_id": 2400803, "entity": "cat", "caption": "The cat has two ears.", "question": ["is there the cat ?", "are there two ears ?"], "prompt": "The {} has two ears."}, {"index": 332, "image_id": 2400803, "entity": "cat", "caption": "The cat has two eyes.", "question": ["is there the cat ?", "are there two eyes ?"], "prompt": "The {} has two eyes."}, {"index": 333, "image_id": 2400803, "entity": "cat", "caption": "The cat has a nose.", "question": ["is there the cat ?", "is there a nose ?"], "prompt": "The {} has a nose."}, {"index": 334, "image_id": 2400803, "entity": "cat", "caption": "The cat has a tail.", "question": ["is there the cat ?", "is there a tail ?"], "prompt": "The {} has a tail."}, {"index": 335, "image_id": 2400549, "entity": "cat", "caption": "the cat is lying on a bed", "question": ["is there the cat ?", "is there a bed ?"], "prompt": "the {} is lying on a bed"}, {"index": 336, "image_id": 2400549, "entity": "cat", "caption": "the cat has two dots on its face", "question": ["is there the cat ?", "are there two dots ?", "is there its face ?"], "prompt": "the {} has two dots on its face"}, {"index": 337, "image_id": 2400549, "entity": "cat", "caption": "the cat has a cloth anti scratch collar on", "question": ["is there the cat ?", "is there a cloth anti scratch collar ?"], "prompt": "the {} has a cloth anti scratch collar on"}, {"index": 338, "image_id": 2400549, "entity": "cat", "caption": "the cat has a scratch problem", "question": ["is there the cat ?", "is there a scratch problem ?"], "prompt": "the {} has a scratch problem"}, {"index": 339, "image_id": 2400549, "entity": "cat", "caption": "the cat's front paws are on a towel", "question": ["are there the cat's front paws ?", "is there a towel ?"], "prompt": "the {}'s front paws are on a towel"}, {"index": 340, "image_id": 2400549, "entity": "cat", "caption": "the cat's face is black and white", "question": ["is there the cat's face ?"], "prompt": "the {}'s face is black and white"}, {"index": 341, "image_id": 2400549, "entity": "cat", "caption": "A cats white right arm. ", "question": ["are there a cats ?", "is there right arm ?"], "prompt": "A {}s white right arm. "}, {"index": 342, "image_id": 2400549, "entity": "cat", "caption": "The cat is laying on a bed.", "question": ["is there the cat ?", "is there a bed ?"], "prompt": "The {} is laying on a bed."}, {"index": 343, "image_id": 2400549, "entity": "cat", "caption": "The cat is wearing a cone.", "question": ["is there the cat ?", "is there a cone ?"], "prompt": "The {} is wearing a cone."}, {"index": 344, "image_id": 2400503, "entity": "cat", "caption": "this cat's ears are laid back on it's head", "question": ["are there this cat's ears ?", "is there it's head ?"], "prompt": "this {}'s ears are laid back on it's head"}, {"index": 345, "image_id": 2400503, "entity": "cat", "caption": "cat on the right's tail is black with large white spot", "question": ["is there cat ?", "is there the right's tail ?", "is there large white spot ?"], "prompt": "{} on the right's tail is black with large white spot"}, {"index": 346, "image_id": 2400376, "entity": "cat", "caption": "the cat has hair in its ear", "question": ["is there the cat ?", "is there hair ?", "is there its ear ?"], "prompt": "the {} has hair in its ear"}, {"index": 347, "image_id": 2400376, "entity": "cat", "caption": "these are cat eyes", "question": ["are there cat eyes ?"], "prompt": "these are {} eyes"}, {"index": 348, "image_id": 2400376, "entity": "cat", "caption": "this is a cat mouth", "question": ["is there a cat mouth ?"], "prompt": "this is a {} mouth"}, {"index": 349, "image_id": 2400251, "entity": "cat", "caption": "this is the cat's front left paw", "question": ["is there the cat's front left paw ?"], "prompt": "this is the {}'s front left paw"}, {"index": 350, "image_id": 2400251, "entity": "cat", "caption": "this is a cat's fur", "question": ["is there a cat's fur ?"], "prompt": "this is a {}'s fur"}, {"index": 351, "image_id": 2400251, "entity": "cat", "caption": "this is the cat's front right paw", "question": ["is there the cat's front right paw ?"], "prompt": "this is the {}'s front right paw"}, {"index": 352, "image_id": 2400251, "entity": "cat", "caption": "this is the cat's head", "question": ["is there the cat's head ?"], "prompt": "this is the {}'s head"}, {"index": 353, "image_id": 2400251, "entity": "cat", "caption": "this is the cat's tail", "question": ["is there the cat's tail ?"], "prompt": "this is the {}'s tail"}, {"index": 354, "image_id": 2400251, "entity": "cat", "caption": "this is the cat's right ear", "question": ["is there the cat's right ear ?"], "prompt": "this is the {}'s right ear"}, {"index": 355, "image_id": 2400251, "entity": "cat", "caption": "this is cats eye", "question": ["are there cats ?"], "prompt": "this is {}s eye"}, {"index": 356, "image_id": 2400210, "entity": "cat", "caption": "The green pants the cat is lying on", "question": ["are there the green pants ?", "is there the cat ?"], "prompt": "The green pants the {} is lying on"}, {"index": 357, "image_id": 2400210, "entity": "cat", "caption": "grey cat not looking at photographer", "question": ["is there grey cat ?", "is there photographer ?"], "prompt": "grey {} not looking at photographer"}, {"index": 358, "image_id": 2400189, "entity": "cat", "caption": "The cat has white whiskers", "question": ["is there the cat ?", "are there white whiskers ?"], "prompt": "The {} has white whiskers"}, {"index": 359, "image_id": 2400189, "entity": "cat", "caption": "The cat is wearing a bow tie", "question": ["is there the cat ?", "is there a bow tie ?"], "prompt": "The {} is wearing a bow tie"}, {"index": 360, "image_id": 2400189, "entity": "cat", "caption": "The cat is wearing a polka dot bow tie", "question": ["is there the cat ?", "is there a polka dot bow tie ?"], "prompt": "The {} is wearing a polka dot bow tie"}, {"index": 361, "image_id": 2400189, "entity": "cat", "caption": "The cat has eyes", "question": ["is there the cat ?", "are there eyes ?"], "prompt": "The {} has eyes"}, {"index": 362, "image_id": 2400189, "entity": "cat", "caption": "The cat has ears", "question": ["is there the cat ?", "are there ears ?"], "prompt": "The {} has ears"}, {"index": 363, "image_id": 2400189, "entity": "cat", "caption": "The cat has a nose", "question": ["is there the cat ?", "is there a nose ?"], "prompt": "The {} has a nose"}, {"index": 364, "image_id": 2400189, "entity": "cat", "caption": "A rainbow polka-dotted bow tie the cat is wearing", "question": ["is there the cat ?"], "prompt": "A rainbow polka-dotted bow tie the {} is wearing"}, {"index": 365, "image_id": 2400035, "entity": "cat", "caption": "a cat with its paws hanging from the chair", "question": ["is there a cat ?", "are there its paws ?", "is there the chair ?"], "prompt": "a {} with its paws hanging from the chair"}, {"index": 366, "image_id": 2400035, "entity": "cat", "caption": "part of chair cat is on", "question": ["is there part ?", "is there chair cat ?"], "prompt": "part of chair {} is on"}, {"index": 367, "image_id": 2400035, "entity": "cat", "caption": "The wooden table the cat and the chair is under", "question": ["is there the wooden table ?", "is there the cat ?", "is there the chair ?"], "prompt": "The wooden table the {} and the chair is under"}, {"index": 368, "image_id": 2399916, "entity": "cat", "caption": "gallon of milk does not interest cat", "question": ["is there gallon ?", "is there milk ?", "is there cat ?"], "prompt": "gallon of milk does not interest {}"}, {"index": 369, "image_id": 2399916, "entity": "cat", "caption": "an old man's head, made of plastic or porcelain, looks gruffly down above cat", "question": ["is there an old man's head ?", "is there plastic ?", "is there porcelain ?", "is there cat ?"], "prompt": "an old man's head, made of plastic or porcelain, looks gruffly down above {}"}, {"index": 370, "image_id": 2399787, "entity": "cat", "caption": "part of the desk the cats are on", "question": ["is there part ?", "is there the desk ?", "are there the cats ?"], "prompt": "part of the desk the {}s are on"}, {"index": 371, "image_id": 2399676, "entity": "cat", "caption": "The cat's fur is orange", "question": ["is there the cat's fur ?"], "prompt": "The {}'s fur is orange"}, {"index": 372, "image_id": 2399676, "entity": "cat", "caption": "a yellow cats paw", "question": ["are there a yellow cats ?"], "prompt": "a yellow {}s paw"}, {"index": 373, "image_id": 2399563, "entity": "cat", "caption": "adorable cat laying on remote", "question": ["is there adorable cat ?"], "prompt": "adorable {} laying on remote"}, {"index": 374, "image_id": 2399563, "entity": "cat", "caption": "brown and white cat laying on remote", "question": ["is there brown and white cat ?"], "prompt": "brown and white {} laying on remote"}, {"index": 375, "image_id": 2399138, "entity": "cat", "caption": "A small table with something on it is near the cat.", "question": ["is there a small table ?", "is there something ?", "is there the cat ?"], "prompt": "A small table with something on it is near the {}."}, {"index": 376, "image_id": 2399138, "entity": "cat", "caption": "white whiskers coming from the cat's face", "question": ["are there white whiskers ?", "is there the cat's face ?"], "prompt": "white whiskers coming from the {}'s face"}, {"index": 377, "image_id": 2399138, "entity": "cat", "caption": "the cat is looking at the laptop", "question": ["is there the cat ?", "is there the laptop ?"], "prompt": "the {} is looking at the laptop"}, {"index": 378, "image_id": 2398796, "entity": "cat", "caption": "white stripe on cats head", "question": ["is there white stripe ?", "are there cats ?"], "prompt": "white stripe on {}s head"}, {"index": 379, "image_id": 2398796, "entity": "cat", "caption": "cat has black tail", "question": ["is there cat ?", "is there black tail ?"], "prompt": "{} has black tail"}, {"index": 380, "image_id": 2398796, "entity": "cat", "caption": "white whiskers on cats face", "question": ["are there white whiskers ?", "are there cats ?"], "prompt": "white whiskers on {}s face"}, {"index": 381, "image_id": 2398318, "entity": "cat", "caption": "the cat has eye", "question": ["is there the cat ?", "is there eye ?"], "prompt": "the {} has eye"}, {"index": 382, "image_id": 2398204, "entity": "cat", "caption": "The cat is sniffing the food.", "question": ["is there the cat ?", "is there the food ?"], "prompt": "The {} is sniffing the food."}, {"index": 383, "image_id": 2398204, "entity": "cat", "caption": "The cat is sitting on carpet.", "question": ["is there the cat ?", "is there carpet ?"], "prompt": "The {} is sitting on carpet."}, {"index": 384, "image_id": 2398204, "entity": "cat", "caption": "The cat has green eyes.", "question": ["is there the cat ?", "are there green eyes ?"], "prompt": "The {} has green eyes."}, {"index": 385, "image_id": 2398204, "entity": "cat", "caption": "The cat has a grey nose.", "question": ["is there the cat ?", "is there a grey nose ?"], "prompt": "The {} has a grey nose."}, {"index": 386, "image_id": 2398197, "entity": "cat", "caption": "The cat is resting its head on a person's foot.", "question": ["is there the cat ?", "is there its head ?", "is there a person's foot ?"], "prompt": "The {} is resting its head on a person's foot."}, {"index": 387, "image_id": 2398197, "entity": "cat", "caption": "A cat has two ears.", "question": ["is there a cat ?", "are there two ears ?"], "prompt": "A {} has two ears."}, {"index": 388, "image_id": 2397581, "entity": "cat", "caption": "the cat is in the suitcase ", "question": ["is there the cat ?", "is there the suitcase ?"], "prompt": "the {} is in the suitcase "}, {"index": 389, "image_id": 2397581, "entity": "cat", "caption": "this is a cat's tail", "question": ["is there a cat's tail ?"], "prompt": "this is a {}'s tail"}, {"index": 390, "image_id": 2397581, "entity": "cat", "caption": "this is the cats ear", "question": ["are there the cats ?"], "prompt": "this is the {}s ear"}, {"index": 391, "image_id": 2397543, "entity": "cat", "caption": "the cat has a black pupil", "question": ["is there the cat ?", "is there a black pupil ?"], "prompt": "the {} has a black pupil"}, {"index": 392, "image_id": 2397543, "entity": "cat", "caption": "the cat has whiskers ", "question": ["is there the cat ?", "are there whiskers ?"], "prompt": "the {} has whiskers "}, {"index": 393, "image_id": 2397239, "entity": "cat", "caption": "cat ear missing tip", "question": ["is there cat ear missing tip ?"], "prompt": "{} ear missing tip"}, {"index": 394, "image_id": 2396782, "entity": "cat", "caption": "cat has two ears", "question": ["is there cat ?", "are there two ears ?"], "prompt": "{} has two ears"}, {"index": 395, "image_id": 2396717, "entity": "cat", "caption": "Two cats side by side", "question": ["are there two cats ?", "is there side ?"], "prompt": "Two {}s side by side"}, {"index": 396, "image_id": 2396717, "entity": "cat", "caption": "The cat has brown ears", "question": ["is there the cat ?", "are there brown ears ?"], "prompt": "The {} has brown ears"}, {"index": 397, "image_id": 2396717, "entity": "cat", "caption": "The cats are lying on a couch", "question": ["are there the cats ?", "is there a couch ?"], "prompt": "The {}s are lying on a couch"}, {"index": 398, "image_id": 2396694, "entity": "cat", "caption": "cat is lying on the blanket", "question": ["is there cat ?", "is there the blanket ?"], "prompt": "{} is lying on the blanket"}, {"index": 399, "image_id": 2396694, "entity": "cat", "caption": "The cat is lying on the blanket", "question": ["is there the cat ?", "is there the blanket ?"], "prompt": "The {} is lying on the blanket"}, {"index": 400, "image_id": 2396479, "entity": "cat", "caption": "the cat is watching tv", "question": ["is there the cat ?", "is there tv ?"], "prompt": "the {} is watching tv"}, {"index": 401, "image_id": 2396216, "entity": "cat", "caption": "white sheet the cat is laying on", "question": ["is there white sheet ?", "is there the cat ?"], "prompt": "white sheet the {} is laying on"}, {"index": 402, "image_id": 2396216, "entity": "cat", "caption": "whiskers coming from the cat's snout", "question": ["are there whiskers ?", "is there the cat's snout ?"], "prompt": "whiskers coming from the {}'s snout"}, {"index": 403, "image_id": 2396029, "entity": "cat", "caption": "whisker follicles on cats cheek", "question": ["are there whisker follicles ?", "are there cats ?"], "prompt": "whisker follicles on {}s cheek"}, {"index": 404, "image_id": 2396029, "entity": "cat", "caption": "The cat's eyes are showing.", "question": ["are there the cat's eyes ?"], "prompt": "The {}'s eyes are showing."}, {"index": 405, "image_id": 2395877, "entity": "cat", "caption": "the cat is looking through the window", "question": ["is there the cat ?", "is there the window ?"], "prompt": "the {} is looking through the window"}, {"index": 406, "image_id": 2395877, "entity": "cat", "caption": "The cat is by the window.", "question": ["is there the cat ?", "is there the window ?"], "prompt": "The {} is by the window."}, {"index": 407, "image_id": 2395877, "entity": "cat", "caption": "The cat is looking out the window.", "question": ["is there the cat ?", "is there the window ?"], "prompt": "The {} is looking out the window."}, {"index": 408, "image_id": 2395709, "entity": "cat", "caption": "a cat showing it's claws", "question": ["is there a cat ?", "are there claws ?"], "prompt": "a {} showing it's claws"}, {"index": 409, "image_id": 2395709, "entity": "cat", "caption": "The cat is under a blanket", "question": ["is there the cat ?", "is there a blanket ?"], "prompt": "The {} is under a blanket"}, {"index": 410, "image_id": 2395709, "entity": "cat", "caption": "The cat is on the red blanket", "question": ["is there the cat ?", "is there the red blanket ?"], "prompt": "The {} is on the red blanket"}, {"index": 411, "image_id": 2395559, "entity": "cat", "caption": "the cat is beautiful", "question": ["is there the cat ?"], "prompt": "the {} is beautiful"}, {"index": 412, "image_id": 2395559, "entity": "cat", "caption": "the cat is laying on the computer", "question": ["is there the cat ?", "is there the computer ?"], "prompt": "the {} is laying on the computer"}, {"index": 413, "image_id": 2395433, "entity": "cat", "caption": "A brown cat is sitting on the table.", "question": ["is there a brown cat ?", "is there the table ?"], "prompt": "A brown {} is sitting on the table."}, {"index": 414, "image_id": 2395433, "entity": "cat", "caption": "The cat's eyes are closed.", "question": ["are there the cat's eyes ?"], "prompt": "The {}'s eyes are closed."}, {"index": 415, "image_id": 2395369, "entity": "cat", "caption": "cat and dog playing with each other ", "question": ["is there cat ?", "is there dog ?"], "prompt": "{} and dog playing with each other "}, {"index": 416, "image_id": 2395174, "entity": "cat", "caption": "one black cat looks right", "question": ["is there one black cat ?"], "prompt": "one black {} looks right"}, {"index": 417, "image_id": 2395174, "entity": "cat", "caption": "this cat has yellow eyes", "question": ["is there this cat ?", "are there yellow eyes ?"], "prompt": "this {} has yellow eyes"}, {"index": 418, "image_id": 2395174, "entity": "cat", "caption": "cats are in front of the window", "question": ["are there cats ?", "is there front ?", "is there the window ?"], "prompt": "{}s are in front of the window"}, {"index": 419, "image_id": 2395174, "entity": "cat", "caption": "the cats are looking at each other", "question": ["are there the cats ?"], "prompt": "the {}s are looking at each other"}, {"index": 420, "image_id": 2395174, "entity": "cat", "caption": "Two cats are in the picture.", "question": ["are there two cats ?", "is there the picture ?"], "prompt": "Two {}s are in the picture."}, {"index": 421, "image_id": 2395174, "entity": "cat", "caption": "The cats are facing each other.", "question": ["are there the cats ?"], "prompt": "The {}s are facing each other."}, {"index": 422, "image_id": 2395030, "entity": "cat", "caption": "cat is calico with black stipes", "question": ["is there cat ?", "is there calico ?", "are there black stipes ?"], "prompt": "{} is calico with black stipes"}, {"index": 423, "image_id": 2395030, "entity": "cat", "caption": "thge cat has a back paw", "question": ["is there a back paw ?"], "prompt": "thge {} has a back paw"}, {"index": 424, "image_id": 2394914, "entity": "cat", "caption": "the cat has a scar", "question": ["is there the cat ?", "is there a scar ?"], "prompt": "the {} has a scar"}, {"index": 425, "image_id": 2394914, "entity": "cat", "caption": "the cat has an ear", "question": ["is there the cat ?", "is there an ear ?"], "prompt": "the {} has an ear"}, {"index": 426, "image_id": 2394914, "entity": "cat", "caption": "the cat has an eye", "question": ["is there the cat ?", "is there an eye ?"], "prompt": "the {} has an eye"}, {"index": 427, "image_id": 2394803, "entity": "cat", "caption": "the cat is in the fridge", "question": ["is there the cat ?", "is there the fridge ?"], "prompt": "the {} is in the fridge"}, {"index": 428, "image_id": 2394803, "entity": "cat", "caption": "the cat stands in the fridge", "question": ["is there the cat ?", "is there the fridge ?"], "prompt": "the {} stands in the fridge"}, {"index": 429, "image_id": 2394803, "entity": "cat", "caption": "cat has pink nose", "question": ["is there cat ?", "is there pink nose ?"], "prompt": "{} has pink nose"}, {"index": 430, "image_id": 2394694, "entity": "cat", "caption": "The cat is holding a camera.", "question": ["is there the cat ?", "is there a camera ?"], "prompt": "The {} is holding a camera."}, {"index": 431, "image_id": 2394694, "entity": "cat", "caption": "The cat has short fur.", "question": ["is there the cat ?", "is there short fur ?"], "prompt": "The {} has short fur."}, {"index": 432, "image_id": 2394694, "entity": "cat", "caption": "The cat's shadow is on the background.", "question": ["is there the cat's shadow ?", "is there the background ?"], "prompt": "The {}'s shadow is on the background."}, {"index": 433, "image_id": 2394694, "entity": "cat", "caption": "The cats is holding a camera in it's paw.", "question": ["are there the cats ?", "is there a camera ?", "is there it's paw ?"], "prompt": "The {}s is holding a camera in it's paw."}, {"index": 434, "image_id": 2394694, "entity": "cat", "caption": "cat is holding a camera", "question": ["is there cat ?", "is there a camera ?"], "prompt": "{} is holding a camera"}, {"index": 435, "image_id": 2394559, "entity": "cat", "caption": "the cats lefts ear", "question": ["are there the cats ?"], "prompt": "the {}s lefts ear"}, {"index": 436, "image_id": 2394336, "entity": "cat", "caption": "cat stand on a toilet ", "question": ["is there cat ?", "is there a toilet ?"], "prompt": "{} stand on a toilet "}, {"index": 437, "image_id": 2394336, "entity": "cat", "caption": "eye of a cat is yellow", "question": ["is there eye ?", "is there a cat ?"], "prompt": "eye of a {} is yellow"}, {"index": 438, "image_id": 2394211, "entity": "cat", "caption": "A cats nose", "question": ["are there a cats ?"], "prompt": "A {}s nose"}, {"index": 439, "image_id": 2394077, "entity": "cat", "caption": "the cat has a red collar", "question": ["is there the cat ?", "is there a red collar ?"], "prompt": "the {} has a red collar"}, {"index": 440, "image_id": 2394077, "entity": "cat", "caption": "cat toy is on a stick", "question": ["is there cat toy ?", "is there a stick ?"], "prompt": "{} toy is on a stick"}, {"index": 441, "image_id": 2394077, "entity": "cat", "caption": "cat is wearing a red collar", "question": ["is there cat ?", "is there a red collar ?"], "prompt": "{} is wearing a red collar"}, {"index": 442, "image_id": 2394077, "entity": "cat", "caption": "The cat has a collar", "question": ["is there the cat ?", "is there a collar ?"], "prompt": "The {} has a collar"}, {"index": 443, "image_id": 2394077, "entity": "cat", "caption": "The cat has a tail", "question": ["is there the cat ?", "is there a tail ?"], "prompt": "The {} has a tail"}, {"index": 444, "image_id": 2394077, "entity": "cat", "caption": "The cat has a toy", "question": ["is there the cat ?", "is there a toy ?"], "prompt": "The {} has a toy"}, {"index": 445, "image_id": 2394077, "entity": "cat", "caption": "The cat is laying on a blue and white blanket", "question": ["is there the cat ?", "is there a blue and white blanket ?"], "prompt": "The {} is laying on a blue and white blanket"}, {"index": 446, "image_id": 2394077, "entity": "cat", "caption": "The cat's eyes are slightly open", "question": ["are there the cat's eyes ?"], "prompt": "The {}'s eyes are slightly open"}, {"index": 447, "image_id": 2394058, "entity": "cat", "caption": "cat has olive green eyes", "question": ["is there cat ?", "are there olive green eyes ?"], "prompt": "{} has olive green eyes"}, {"index": 448, "image_id": 2393954, "entity": "cat", "caption": "Silver remote is next to cat.", "question": ["is there silver remote ?", "is there cat ?"], "prompt": "Silver remote is next to {}."}, {"index": 449, "image_id": 2393954, "entity": "cat", "caption": "cat has green and black eyes", "question": ["is there cat ?", "are there green and black eyes ?"], "prompt": "{} has green and black eyes"}, {"index": 450, "image_id": 2393837, "entity": "cat", "caption": "cats head is against the pillow", "question": ["are there cats ?", "is there the pillow ?"], "prompt": "{}s head is against the pillow"}, {"index": 451, "image_id": 2393745, "entity": "cat", "caption": "a beautiful cat face that is multi colored", "question": ["is there a beautiful cat face ?"], "prompt": "a beautiful {} face that is multi colored"}, {"index": 452, "image_id": 2393745, "entity": "cat", "caption": "cat eye fully opened", "question": ["is there cat eye ?"], "prompt": "{} eye fully opened"}, {"index": 453, "image_id": 2393611, "entity": "cat", "caption": "cat has fluffy tail", "question": ["is there cat ?", "is there fluffy tail ?"], "prompt": "{} has fluffy tail"}, {"index": 454, "image_id": 2393611, "entity": "cat", "caption": "cat is laying down on a bed", "question": ["is there cat ?", "is there a bed ?"], "prompt": "{} is laying down on a bed"}, {"index": 455, "image_id": 2393066, "entity": "cat", "caption": "the cat is in the suit case", "question": ["is there the cat ?", "is there the suit case ?"], "prompt": "the {} is in the suit case"}, {"index": 456, "image_id": 2393038, "entity": "cat", "caption": "Muzzle of cat is short", "question": ["is there muzzle ?", "is there cat ?"], "prompt": "Muzzle of {} is short"}, {"index": 457, "image_id": 2393021, "entity": "cat", "caption": "The cat is laying down", "question": ["is there the cat ?"], "prompt": "The {} is laying down"}, {"index": 458, "image_id": 2392829, "entity": "cat", "caption": "the cat has a blue collar", "question": ["is there the cat ?", "is there a blue collar ?"], "prompt": "the {} has a blue collar"}, {"index": 459, "image_id": 2392699, "entity": "cat", "caption": "The cat has orange stripes", "question": ["is there the cat ?"], "prompt": "The {} has orange stripes"}, {"index": 460, "image_id": 2392699, "entity": "cat", "caption": "The cat is sitting in a bag", "question": ["is there the cat ?", "is there a bag ?"], "prompt": "The {} is sitting in a bag"}, {"index": 461, "image_id": 2392699, "entity": "cat", "caption": "the cat has tags ", "question": ["is there the cat ?", "are there tags ?"], "prompt": "the {} has tags "}, {"index": 462, "image_id": 2392574, "entity": "cat", "caption": "The cat's eyes are open", "question": ["are there the cat's eyes ?"], "prompt": "The {}'s eyes are open"}, {"index": 463, "image_id": 2392574, "entity": "cat", "caption": "The box is behind the cat", "question": ["is there the box ?", "is there the cat ?"], "prompt": "The box is behind the {}"}, {"index": 464, "image_id": 2392573, "entity": "cat", "caption": "the cat is a calico", "question": ["is there the cat ?", "is there a calico ?"], "prompt": "the {} is a calico"}, {"index": 465, "image_id": 2392573, "entity": "cat", "caption": "The inside of the cats ear is furry", "question": ["is there the inside ?", "are there the cats ?"], "prompt": "The inside of the {}s ear is furry"}, {"index": 466, "image_id": 2392537, "entity": "cat", "caption": "The cat's eyes are yellow", "question": ["are there the cat's eyes ?"], "prompt": "The {}'s eyes are yellow"}, {"index": 467, "image_id": 2392537, "entity": "cat", "caption": "The cat's paws are white", "question": ["are there the cat's paws ?"], "prompt": "The {}'s paws are white"}, {"index": 468, "image_id": 2392537, "entity": "cat", "caption": "The cat's nose has black on it", "question": ["is there the cat's nose ?"], "prompt": "The {}'s nose has black on it"}, {"index": 469, "image_id": 2392537, "entity": "cat", "caption": "The cat is standing", "question": ["is there the cat ?"], "prompt": "The {} is standing"}, {"index": 470, "image_id": 2392537, "entity": "cat", "caption": "a cat wearng a collar", "question": ["is there a cat ?", "is there a collar ?"], "prompt": "a {} wearng a collar"}, {"index": 471, "image_id": 2392445, "entity": "cat", "caption": "Sun is reflecting on the cat", "question": ["is there sun ?", "is there the cat ?"], "prompt": "Sun is reflecting on the {}"}, {"index": 472, "image_id": 2392189, "entity": "cat", "caption": "woman petting a black cat", "question": ["is there woman ?", "is there a black cat ?"], "prompt": "woman petting a black {}"}, {"index": 473, "image_id": 2391855, "entity": "cat", "caption": "The cat has white paws", "question": ["is there the cat ?", "are there white paws ?"], "prompt": "The {} has white paws"}, {"index": 474, "image_id": 2391855, "entity": "cat", "caption": "The cat is laying on the teddy bear's foot", "question": ["is there the cat ?", "is there the teddy bear's foot ?"], "prompt": "The {} is laying on the teddy bear's foot"}, {"index": 475, "image_id": 2391855, "entity": "cat", "caption": "The cat's eyes are green", "question": ["are there the cat's eyes ?"], "prompt": "The {}'s eyes are green"}, {"index": 476, "image_id": 2391810, "entity": "cat", "caption": "A cat is sitting on the table.", "question": ["is there a cat ?", "is there the table ?"], "prompt": "A {} is sitting on the table."}, {"index": 477, "image_id": 2391810, "entity": "cat", "caption": "The cat has white front paws.", "question": ["is there the cat ?", "are there white front paws ?"], "prompt": "The {} has white front paws."}, {"index": 478, "image_id": 2391810, "entity": "cat", "caption": "The cat's face is in the cup.", "question": ["is there the cat's face ?", "is there the cup ?"], "prompt": "The {}'s face is in the cup."}, {"index": 479, "image_id": 2391810, "entity": "cat", "caption": "The cat is on the table.", "question": ["is there the cat ?", "is there the table ?"], "prompt": "The {} is on the table."}, {"index": 480, "image_id": 2391810, "entity": "cat", "caption": "cat's feet are white", "question": ["are there cat's feet ?"], "prompt": "{}'s feet are white"}, {"index": 481, "image_id": 2391810, "entity": "cat", "caption": "cat is drinking from a cup", "question": ["is there cat ?", "is there a cup ?"], "prompt": "{} is drinking from a cup"}, {"index": 482, "image_id": 2391810, "entity": "cat", "caption": "cat's had in cup", "question": ["is there cat ?", "is there cup ?"], "prompt": "{}'s had in cup"}, {"index": 483, "image_id": 2391709, "entity": "cat", "caption": "The cat is on top of the cushions", "question": ["is there the cat ?", "is there top ?", "are there the cushions ?"], "prompt": "The {} is on top of the cushions"}, {"index": 484, "image_id": 2391709, "entity": "cat", "caption": "The cat is lying next to the person", "question": ["is there the cat ?", "is there the person ?"], "prompt": "The {} is lying next to the person"}, {"index": 485, "image_id": 2391709, "entity": "cat", "caption": "cat has close eyes", "question": ["is there cat ?", "are there close eyes ?"], "prompt": "{} has close eyes"}, {"index": 486, "image_id": 2391709, "entity": "cat", "caption": "cat stands on a couch", "question": ["is there cat ?", "is there a couch ?"], "prompt": "{} stands on a couch"}, {"index": 487, "image_id": 2391709, "entity": "cat", "caption": "cat has brown stripes", "question": ["is there cat ?", "are there brown stripes ?"], "prompt": "{} has brown stripes"}, {"index": 488, "image_id": 2391709, "entity": "cat", "caption": "the cat is beside the person", "question": ["is there the cat ?", "is there the person ?"], "prompt": "the {} is beside the person"}, {"index": 489, "image_id": 2391709, "entity": "cat", "caption": "the cat is on the sofa", "question": ["is there the cat ?", "is there the sofa ?"], "prompt": "the {} is on the sofa"}, {"index": 490, "image_id": 2391523, "entity": "cat", "caption": "The cat has long fur.", "question": ["is there the cat ?", "is there long fur ?"], "prompt": "The {} has long fur."}, {"index": 491, "image_id": 2391523, "entity": "cat", "caption": "The cat is laying on the floor.", "question": ["is there the cat ?", "is there the floor ?"], "prompt": "The {} is laying on the floor."}, {"index": 492, "image_id": 2391141, "entity": "cat", "caption": "face of cat is white and gray", "question": ["is there face ?", "is there cat ?"], "prompt": "face of {} is white and gray"}, {"index": 493, "image_id": 2391141, "entity": "cat", "caption": "cat covers the keyboard of laptop", "question": ["is there cat ?", "is there the keyboard ?", "is there laptop ?"], "prompt": "{} covers the keyboard of laptop"}, {"index": 494, "image_id": 2391112, "entity": "cat", "caption": "The cat paw is white.", "question": ["is there the cat paw ?"], "prompt": "The {} paw is white."}, {"index": 495, "image_id": 2391112, "entity": "cat", "caption": "The cat ear is white.", "question": ["is there the cat ear ?"], "prompt": "The {} ear is white."}, {"index": 496, "image_id": 2391112, "entity": "cat", "caption": "cat eating it's food", "question": ["is there cat ?", "is there food ?"], "prompt": "{} eating it's food"}, {"index": 497, "image_id": 2390944, "entity": "cat", "caption": "The cat is laying on a blanket. ", "question": ["is there the cat ?", "is there a blanket ?"], "prompt": "The {} is laying on a blanket. "}, {"index": 498, "image_id": 2390873, "entity": "cat", "caption": "grey cat looking sidways", "question": ["is there grey cat ?"], "prompt": "grey {} looking sidways"}, {"index": 499, "image_id": 2390873, "entity": "cat", "caption": "whiskers on cat face", "question": ["are there whiskers ?", "is there cat ?"], "prompt": "whiskers on {} face"}, {"index": 500, "image_id": 2390798, "entity": "cat", "caption": "the cats chest is white", "question": ["are there the cats ?"], "prompt": "the {}s chest is white"}, {"index": 501, "image_id": 2390330, "entity": "cat", "caption": "The cats ears are at attention", "question": ["are there the cats ?", "are there ears ?", "is there attention ?"], "prompt": "The {}s ears are at attention"}, {"index": 502, "image_id": 2389755, "entity": "cat", "caption": "the bird is behind the cat", "question": ["is there the bird ?", "is there the cat ?"], "prompt": "the bird is behind the {}"}, {"index": 503, "image_id": 2389755, "entity": "cat", "caption": "the cat has a white face", "question": ["is there the cat ?", "is there a white face ?"], "prompt": "the {} has a white face"}, {"index": 504, "image_id": 2389755, "entity": "cat", "caption": "the cat is in the grass", "question": ["is there the cat ?", "is there the grass ?"], "prompt": "the {} is in the grass"}, {"index": 505, "image_id": 2389607, "entity": "cat", "caption": "The cats tail ", "question": ["are there the cats ?"], "prompt": "The {}s tail "}, {"index": 506, "image_id": 2388882, "entity": "cat", "caption": "The cat is laying on a brown shoe", "question": ["is there the cat ?", "is there a brown shoe ?"], "prompt": "The {} is laying on a brown shoe"}, {"index": 507, "image_id": 2388882, "entity": "cat", "caption": "The cats foot ", "question": ["are there the cats ?"], "prompt": "The {}s foot "}, {"index": 508, "image_id": 2388882, "entity": "cat", "caption": "The cat has a white nose ", "question": ["is there the cat ?", "is there a white nose ?"], "prompt": "The {} has a white nose "}, {"index": 509, "image_id": 2388882, "entity": "cat", "caption": "the cats belly ", "question": ["are there the cats ?"], "prompt": "the {}s belly "}, {"index": 510, "image_id": 2388882, "entity": "cat", "caption": "Shoe is under the cat.", "question": ["is there shoe ?", "is there the cat ?"], "prompt": "Shoe is under the {}."}, {"index": 511, "image_id": 2388512, "entity": "cat", "caption": "The remote control is on top of the cat", "question": ["is there the remote control ?", "is there top ?", "is there the cat ?"], "prompt": "The remote control is on top of the {}"}, {"index": 512, "image_id": 2388487, "entity": "cat", "caption": "Clock is above the cat.", "question": ["is there clock ?", "is there the cat ?"], "prompt": "Clock is above the {}."}, {"index": 513, "image_id": 2388487, "entity": "cat", "caption": "a cat is wearing a red black and yellow sweater.", "question": ["is there a cat ?", "is there a red black and yellow sweater ?"], "prompt": "a {} is wearing a red black and yellow sweater."}, {"index": 514, "image_id": 2388487, "entity": "cat", "caption": "the cat has black and grey stripes.", "question": ["is there the cat ?", "are there black and grey stripes ?"], "prompt": "the {} has black and grey stripes."}, {"index": 515, "image_id": 2388487, "entity": "cat", "caption": "a cat is laying on a rug.", "question": ["is there a cat ?", "is there a rug ?"], "prompt": "a {} is laying on a rug."}, {"index": 516, "image_id": 2388487, "entity": "cat", "caption": "cat wears glasses", "question": ["is there cat ?", "are there glasses ?"], "prompt": "{} wears glasses"}, {"index": 517, "image_id": 2388487, "entity": "cat", "caption": "cat wears red sweater", "question": ["is there cat ?", "is there red sweater ?"], "prompt": "{} wears red sweater"}, {"index": 518, "image_id": 2388487, "entity": "cat", "caption": "cat has white and striped paws", "question": ["is there cat ?", "are there white and striped paws ?"], "prompt": "{} has white and striped paws"}, {"index": 519, "image_id": 2388487, "entity": "cat", "caption": "cat is lying under table", "question": ["is there cat ?", "is there table ?"], "prompt": "{} is lying under table"}, {"index": 520, "image_id": 2388487, "entity": "cat", "caption": "cat has black and white tag", "question": ["is there cat ?", "is there black and white tag ?"], "prompt": "{} has black and white tag"}, {"index": 521, "image_id": 2388445, "entity": "cat", "caption": "cat has golden name tag", "question": ["is there cat ?", "is there golden name tag ?"], "prompt": "{} has golden name tag"}, {"index": 522, "image_id": 2388445, "entity": "cat", "caption": "cat wears red+white collar from which hangs golden nametag", "question": ["is there cat ?", "is there red+white collar ?"], "prompt": "{} wears red+white collar from which hangs golden nametag"}, {"index": 523, "image_id": 2388445, "entity": "cat", "caption": "cat has nice shiny fur", "question": ["is there cat ?", "is there nice shiny fur ?"], "prompt": "{} has nice shiny fur"}, {"index": 524, "image_id": 2388445, "entity": "cat", "caption": "cat has little off-black pads @ the ends of all black feet", "question": ["is there cat ?", "are there little off-black pads ?", "are there the ends ?", "are there all black feet ?"], "prompt": "{} has little off-black pads @ the ends of all black feet"}, {"index": 525, "image_id": 2388445, "entity": "cat", "caption": "red velvety jacket inadvertently nudges cat", "question": ["is there red velvety jacket ?", "is there cat ?"], "prompt": "red velvety jacket inadvertently nudges {}"}, {"index": 526, "image_id": 2388445, "entity": "cat", "caption": "The cat has it's eyes closed.", "question": ["is there the cat ?", "are there eyes ?"], "prompt": "The {} has it's eyes closed."}, {"index": 527, "image_id": 2388322, "entity": "cat", "caption": "cat possibly in front of wheel attached to hubcap, it's hard to tell", "question": ["is there front ?", "is there wheel ?", "is there hubcap ?"], "prompt": "{} possibly in front of wheel attached to hubcap, it's hard to tell"}, {"index": 528, "image_id": 2388322, "entity": "cat", "caption": "cat's eyes are golden, cat's nose is pink", "question": ["are there cat's eyes ?", "is there cat's nose ?"], "prompt": "{}'s eyes are golden, {}'s nose is pink"}, {"index": 529, "image_id": 2388322, "entity": "cat", "caption": "cat's inner ears are pink+fairly well furred", "question": ["are there cat's inner ears ?"], "prompt": "{}'s inner ears are pink+fairly well furred"}, {"index": 530, "image_id": 2388322, "entity": "cat", "caption": "The cat has yellow eyes", "question": ["is there the cat ?", "are there yellow eyes ?"], "prompt": "The {} has yellow eyes"}, {"index": 531, "image_id": 2388232, "entity": "cat", "caption": "the cat touches a toy", "question": ["is there the cat ?", "is there a toy ?"], "prompt": "the {} touches a toy"}, {"index": 532, "image_id": 2388232, "entity": "cat", "caption": "the cat's paw has the trunk", "question": ["is there the cat's paw ?", "is there the trunk ?"], "prompt": "the {}'s paw has the trunk"}, {"index": 533, "image_id": 2388232, "entity": "cat", "caption": "The cat is playing with the stuffed animal.", "question": ["is there the cat ?", "is there the stuffed animal ?"], "prompt": "The {} is playing with the stuffed animal."}, {"index": 534, "image_id": 2388232, "entity": "cat", "caption": "The cat is striking the trunk.", "question": ["is there the cat ?", "is there the trunk ?"], "prompt": "The {} is striking the trunk."}, {"index": 535, "image_id": 2387879, "entity": "cat", "caption": "the cat is near in the flower path", "question": ["is there the cat ?", "is there the flower path ?"], "prompt": "the {} is near in the flower path"}, {"index": 536, "image_id": 2387500, "entity": "cat", "caption": "the cat is near with the bag", "question": ["is there the cat ?", "is there the bag ?"], "prompt": "the {} is near with the bag"}, {"index": 537, "image_id": 2387500, "entity": "cat", "caption": "the cat has a tail", "question": ["is there the cat ?", "is there a tail ?"], "prompt": "the {} has a tail"}, {"index": 538, "image_id": 2387497, "entity": "cat", "caption": "Wall is white behind cat.", "question": ["is there cat ?"], "prompt": "Wall is white behind {}."}, {"index": 539, "image_id": 2387497, "entity": "cat", "caption": "The cat has 2 ears", "question": ["is there the cat ?", "are there 2 ears ?"], "prompt": "The {} has 2 ears"}, {"index": 540, "image_id": 2387497, "entity": "cat", "caption": "The cat is on the chair", "question": ["is there the cat ?", "is there the chair ?"], "prompt": "The {} is on the chair"}, {"index": 541, "image_id": 2387394, "entity": "cat", "caption": "cat has green eyes", "question": ["is there cat ?", "are there green eyes ?"], "prompt": "{} has green eyes"}, {"index": 542, "image_id": 2387394, "entity": "cat", "caption": "cat has black ears", "question": ["is there cat ?", "are there black ears ?"], "prompt": "{} has black ears"}, {"index": 543, "image_id": 2387173, "entity": "cat", "caption": "the cat is in the suitcase", "question": ["is there the cat ?", "is there the suitcase ?"], "prompt": "the {} is in the suitcase"}, {"index": 544, "image_id": 2387059, "entity": "cat", "caption": "black cat wearing jean bow", "question": ["is there black cat ?", "is there jean bow ?"], "prompt": "black {} wearing jean bow"}, {"index": 545, "image_id": 2387059, "entity": "cat", "caption": "cats shadow on couch", "question": ["are there cats ?", "is there couch ?"], "prompt": "{}s shadow on couch"}, {"index": 546, "image_id": 2387059, "entity": "cat", "caption": "the cat has a hat", "question": ["is there the cat ?", "is there a hat ?"], "prompt": "the {} has a hat"}, {"index": 547, "image_id": 2387059, "entity": "cat", "caption": "the cat has a bow", "question": ["is there the cat ?", "is there a bow ?"], "prompt": "the {} has a bow"}, {"index": 548, "image_id": 2387059, "entity": "cat", "caption": "the cat is casting a shadow", "question": ["is there the cat ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow"}, {"index": 549, "image_id": 2387059, "entity": "cat", "caption": "this is a cat's ear", "question": ["is there a cat's ear ?"], "prompt": "this is a {}'s ear"}, {"index": 550, "image_id": 2387059, "entity": "cat", "caption": "cat's eyes focus on camera", "question": ["are there cat's eyes ?", "is there camera ?"], "prompt": "{}'s eyes focus on camera"}, {"index": 551, "image_id": 2387059, "entity": "cat", "caption": "ragged edges of cat's hat suggest image manipulation", "question": ["are there ragged edges ?", "is there cat's hat ?", "is there image manipulation ?"], "prompt": "ragged edges of {}'s hat suggest image manipulation"}, {"index": 552, "image_id": 2387059, "entity": "cat", "caption": "cat wears pet collar", "question": ["is there cat ?", "is there pet collar ?"], "prompt": "{} wears pet collar"}, {"index": 553, "image_id": 2386959, "entity": "cat", "caption": "cat has yellow eyes", "question": ["is there cat ?", "are there yellow eyes ?"], "prompt": "{} has yellow eyes"}, {"index": 554, "image_id": 2386959, "entity": "cat", "caption": "cat is casting shadow on grass", "question": ["is there cat ?", "is there shadow ?", "is there grass ?"], "prompt": "{} is casting shadow on grass"}, {"index": 555, "image_id": 2386959, "entity": "cat", "caption": "cats whiskers are white", "question": ["are there whiskers ?"], "prompt": "{}s whiskers are white"}, {"index": 556, "image_id": 2386737, "entity": "cat", "caption": "the cat's paw is white", "question": ["is there the cat's paw ?"], "prompt": "the {}'s paw is white"}, {"index": 557, "image_id": 2386737, "entity": "cat", "caption": "The can is in front of the cat", "question": ["is there the can ?", "is there front ?", "is there the cat ?"], "prompt": "The can is in front of the {}"}, {"index": 558, "image_id": 2386732, "entity": "cat", "caption": "the cat is wearing a hat", "question": ["is there the cat ?", "is there a hat ?"], "prompt": "the {} is wearing a hat"}, {"index": 559, "image_id": 2386624, "entity": "cat", "caption": "cat is sitting with toy elephant", "question": ["is there cat ?", "is there toy elephant ?"], "prompt": "{} is sitting with toy elephant"}, {"index": 560, "image_id": 2386624, "entity": "cat", "caption": "cat's eyes are green", "question": ["are there cat's eyes ?"], "prompt": "{}'s eyes are green"}, {"index": 561, "image_id": 2386525, "entity": "cat", "caption": "cat has light brown ears", "question": ["is there cat ?", "are there light brown ears ?"], "prompt": "{} has light brown ears"}, {"index": 562, "image_id": 2386525, "entity": "cat", "caption": "cat has brown paws on keyboard", "question": ["is there cat ?", "are there brown paws ?", "is there keyboard ?"], "prompt": "{} has brown paws on keyboard"}, {"index": 563, "image_id": 2386525, "entity": "cat", "caption": "cat has olive colored eyes", "question": ["is there cat ?", "are there olive colored eyes ?"], "prompt": "{} has olive colored eyes"}, {"index": 564, "image_id": 2386525, "entity": "cat", "caption": "brown floor is behind cat and table", "question": ["is there brown floor ?", "is there cat ?", "is there table ?"], "prompt": "brown floor is behind {} and table"}, {"index": 565, "image_id": 2386525, "entity": "cat", "caption": "cat has light colored feet", "question": ["is there cat ?", "are there light colored feet ?"], "prompt": "{} has light colored feet"}, {"index": 566, "image_id": 2386525, "entity": "cat", "caption": "cat has paws on keyboard", "question": ["is there cat ?", "are there paws ?", "is there keyboard ?"], "prompt": "{} has paws on keyboard"}, {"index": 567, "image_id": 2386525, "entity": "cat", "caption": "cat has light brown and pointed ears", "question": ["is there cat ?", "are there light brown and pointed ears ?"], "prompt": "{} has light brown and pointed ears"}, {"index": 568, "image_id": 2386525, "entity": "cat", "caption": "cat has round green eyes", "question": ["is there cat ?", "are there green eyes ?"], "prompt": "{} has round green eyes"}, {"index": 569, "image_id": 2386525, "entity": "cat", "caption": "cat's ears are pointing backward", "question": ["are there cat's ears ?"], "prompt": "{}'s ears are pointing backward"}, {"index": 570, "image_id": 2386525, "entity": "cat", "caption": "floor under table and behind cat is brown", "question": ["is there floor ?", "is there table ?", "is there cat ?"], "prompt": "floor under table and behind {} is brown"}, {"index": 571, "image_id": 2386525, "entity": "cat", "caption": "cat has light brown rear paws under body", "question": ["is there cat ?", "are there light brown rear paws ?", "is there body ?"], "prompt": "{} has light brown rear paws under body"}, {"index": 572, "image_id": 2386525, "entity": "cat", "caption": "End of cat's nose is pink.", "question": ["is there end ?", "is there cat's nose ?"], "prompt": "End of {}'s nose is pink."}, {"index": 573, "image_id": 2386386, "entity": "cat", "caption": "Bed is under a cat", "question": ["is there bed ?", "is there a cat ?"], "prompt": "Bed is under a {}"}, {"index": 574, "image_id": 2386386, "entity": "cat", "caption": "cat is laying on a bed", "question": ["is there cat ?", "is there a bed ?"], "prompt": "{} is laying on a bed"}, {"index": 575, "image_id": 2386177, "entity": "cat", "caption": "cats ear ", "question": ["are there cats ?"], "prompt": "{}s ear "}, {"index": 576, "image_id": 2386177, "entity": "cat", "caption": "the cats tail is grey ", "question": ["are there the cats tail ?"], "prompt": "the {}s tail is grey "}, {"index": 577, "image_id": 2386177, "entity": "cat", "caption": "the cats paws are white ", "question": ["are there the cats paws ?"], "prompt": "the {}s paws are white "}, {"index": 578, "image_id": 2386177, "entity": "cat", "caption": "the cat is sniffing the laptop", "question": ["is there the cat ?", "is there the laptop ?"], "prompt": "the {} is sniffing the laptop"}, {"index": 579, "image_id": 2386038, "entity": "cat", "caption": "white cat curled on fluffy fabric", "question": ["is there white cat ?", "is there fluffy fabric ?"], "prompt": "white {} curled on fluffy fabric"}, {"index": 580, "image_id": 2385662, "entity": "cat", "caption": "gray cat is sitting on a pillow cushion", "question": ["is there gray cat ?", "is there a pillow cushion ?"], "prompt": "gray {} is sitting on a pillow cushion"}, {"index": 581, "image_id": 2385662, "entity": "cat", "caption": "The cat has grey paws", "question": ["is there the cat ?", "are there grey paws ?"], "prompt": "The {} has grey paws"}, {"index": 582, "image_id": 2385662, "entity": "cat", "caption": "The cat is on top of the cushion", "question": ["is there the cat ?", "is there top ?", "is there the cushion ?"], "prompt": "The {} is on top of the cushion"}, {"index": 583, "image_id": 2385662, "entity": "cat", "caption": "this cat is in a chair", "question": ["is there this cat ?", "is there a chair ?"], "prompt": "this {} is in a chair"}, {"index": 584, "image_id": 2385611, "entity": "cat", "caption": "The cat is sitting in the window.", "question": ["is there the cat ?", "is there the window ?"], "prompt": "The {} is sitting in the window."}, {"index": 585, "image_id": 2385611, "entity": "cat", "caption": "The cat is laying in the window.", "question": ["is there the cat ?", "is there the window ?"], "prompt": "The {} is laying in the window."}, {"index": 586, "image_id": 2385611, "entity": "cat", "caption": "the cat sits in the window", "question": ["is there the cat ?", "is there the window ?"], "prompt": "the {} sits in the window"}, {"index": 587, "image_id": 2385611, "entity": "cat", "caption": "the cat has a pink nose", "question": ["is there the cat ?", "is there a pink nose ?"], "prompt": "the {} has a pink nose"}, {"index": 588, "image_id": 2385489, "entity": "cat", "caption": "the cat;s front left paw", "question": ["is there the cat;s front left paw ?"], "prompt": "the {};s front left paw"}, {"index": 589, "image_id": 2385475, "entity": "cat", "caption": "The cat has a white paw", "question": ["is there the cat ?", "is there a white paw ?"], "prompt": "The {} has a white paw"}, {"index": 590, "image_id": 2385475, "entity": "cat", "caption": "The cat is lying down", "question": ["is there the cat ?"], "prompt": "The {} is lying down"}, {"index": 591, "image_id": 2385083, "entity": "cat", "caption": "This is cat's eyes", "question": ["are there cat's eyes ?"], "prompt": "This is {}'s eyes"}, {"index": 592, "image_id": 2385083, "entity": "cat", "caption": "This is cat's eye", "question": ["is there cat's eye ?"], "prompt": "This is {}'s eye"}, {"index": 593, "image_id": 2385083, "entity": "cat", "caption": "This is cat's ear", "question": ["is there cat's ear ?"], "prompt": "This is {}'s ear"}, {"index": 594, "image_id": 2385083, "entity": "cat", "caption": "This is cat's ears", "question": ["are there cat's ears ?"], "prompt": "This is {}'s ears"}, {"index": 595, "image_id": 2385083, "entity": "cat", "caption": "This is cat's mouth", "question": ["is there cat's mouth ?"], "prompt": "This is {}'s mouth"}, {"index": 596, "image_id": 2385083, "entity": "cat", "caption": "This is cat's nose", "question": ["is there cat's nose ?"], "prompt": "This is {}'s nose"}, {"index": 597, "image_id": 2384894, "entity": "cat", "caption": "the cat's head is black", "question": ["is there the cat's head ?"], "prompt": "the {}'s head is black"}, {"index": 598, "image_id": 2384894, "entity": "cat", "caption": "the cat's body is white", "question": ["is there the cat's body ?"], "prompt": "the {}'s body is white"}, {"index": 599, "image_id": 2384894, "entity": "cat", "caption": "cat looks up toward the stairway", "question": ["is there cat ?", "is there the stairway ?"], "prompt": "{} looks up toward the stairway"}, {"index": 600, "image_id": 2384894, "entity": "cat", "caption": "The cat is in a bag.", "question": ["is there the cat ?", "is there a bag ?"], "prompt": "The {} is in a bag."}, {"index": 601, "image_id": 2384739, "entity": "cat", "caption": "cat has two black ears", "question": ["is there cat ?", "are there two black ears ?"], "prompt": "{} has two black ears"}, {"index": 602, "image_id": 2384739, "entity": "cat", "caption": "a black cat is lying on the pavement", "question": ["is there a black cat ?", "is there the pavement ?"], "prompt": "a black {} is lying on the pavement"}, {"index": 603, "image_id": 2384739, "entity": "cat", "caption": "the black cat has green eyes", "question": ["is there the black cat ?", "are there green eyes ?"], "prompt": "the black {} has green eyes"}, {"index": 604, "image_id": 2384739, "entity": "cat", "caption": "the black cat is lying next to the bird", "question": ["is there the black cat ?", "is there the bird ?"], "prompt": "the black {} is lying next to the bird"}, {"index": 605, "image_id": 2384731, "entity": "cat", "caption": "chest of cat is white", "question": ["is there chest ?", "is there cat ?"], "prompt": "chest of {} is white"}, {"index": 606, "image_id": 2384731, "entity": "cat", "caption": "The cat has white on its face", "question": ["is there the cat ?", "is there its face ?"], "prompt": "The {} has white on its face"}, {"index": 607, "image_id": 2384728, "entity": "cat", "caption": "a cat with its eyes half closed", "question": ["is there a cat ?", "are there its eyes ?"], "prompt": "a {} with its eyes half closed"}, {"index": 608, "image_id": 2384583, "entity": "cat", "caption": "cat's tie is a little crooked", "question": ["is there cat's tie ?"], "prompt": "{}'s tie is a little crooked"}, {"index": 609, "image_id": 2384583, "entity": "cat", "caption": "cat is wearing a tie", "question": ["is there cat ?", "is there a tie ?"], "prompt": "{} is wearing a tie"}, {"index": 610, "image_id": 2384565, "entity": "cat", "caption": "cat is watching tv", "question": ["is there cat ?", "is there tv ?"], "prompt": "{} is watching tv"}, {"index": 611, "image_id": 2384565, "entity": "cat", "caption": "the cat has a bow on his neck", "question": ["is there the cat ?", "is there a bow ?", "is there his neck ?"], "prompt": "the {} has a bow on his neck"}, {"index": 612, "image_id": 2384243, "entity": "cat", "caption": "The cat is in the bathroom sink.", "question": ["is there the cat ?", "is there the bathroom ?"], "prompt": "The {} is in the bathroom sink."}, {"index": 613, "image_id": 2383840, "entity": "cat", "caption": "blue collar cat is wearing", "question": ["is there blue collar cat ?"], "prompt": "blue collar {} is wearing"}, {"index": 614, "image_id": 2383840, "entity": "cat", "caption": "the cat's whiskers are black", "question": ["are there the cat's whiskers ?"], "prompt": "the {}'s whiskers are black"}, {"index": 615, "image_id": 2383626, "entity": "cat", "caption": "cat is leaning on laptop", "question": ["is there cat ?", "is there laptop ?"], "prompt": "{} is leaning on laptop"}, {"index": 616, "image_id": 2383626, "entity": "cat", "caption": "cat right eye is closed", "question": ["is there cat right eye ?"], "prompt": "{} right eye is closed"}, {"index": 617, "image_id": 2383626, "entity": "cat", "caption": "red thing cat is laying on", "question": ["is there red thing cat ?"], "prompt": "red thing {} is laying on"}, {"index": 618, "image_id": 2383527, "entity": "cat", "caption": "This is eye of a cat", "question": ["is there eye ?", "is there a cat ?"], "prompt": "This is eye of a {}"}, {"index": 619, "image_id": 2383527, "entity": "cat", "caption": "The cat is on its side", "question": ["is there the cat ?", "is there its side ?"], "prompt": "The {} is on its side"}, {"index": 620, "image_id": 2383527, "entity": "cat", "caption": "The cat is lying over a person's arm", "question": ["is there the cat ?", "is there a person's arm ?"], "prompt": "The {} is lying over a person's arm"}, {"index": 621, "image_id": 2383527, "entity": "cat", "caption": "The cat has white spots on its belly", "question": ["is there the cat ?", "are there white spots ?", "is there its belly ?"], "prompt": "The {} has white spots on its belly"}, {"index": 622, "image_id": 2383527, "entity": "cat", "caption": "The cat's eyes are both open", "question": ["are there the cat's eyes ?"], "prompt": "The {}'s eyes are both open"}, {"index": 623, "image_id": 2383527, "entity": "cat", "caption": "a cat's front left leg", "question": ["is there a cat's front left leg ?"], "prompt": "a {}'s front left leg"}, {"index": 624, "image_id": 2383512, "entity": "cat", "caption": "cat on top of TV laying down", "question": ["is there cat ?", "is there top ?", "is there tv ?"], "prompt": "{} on top of TV laying down"}, {"index": 625, "image_id": 2383512, "entity": "cat", "caption": "cats head laying down", "question": ["are there cats ?"], "prompt": "{}s head laying down"}, {"index": 626, "image_id": 2383512, "entity": "cat", "caption": "cats ear on top of cats head", "question": ["are there cats ?", "is there top ?", "are there cats ?"], "prompt": "{}s ear on top of {}s head"}, {"index": 627, "image_id": 2383512, "entity": "cat", "caption": "stripes on cats head", "question": ["are there stripes ?", "are there cats ?"], "prompt": "stripes on {}s head"}, {"index": 628, "image_id": 2383512, "entity": "cat", "caption": "TV cat is laying on top of", "question": ["is there tv cat ?", "is there top ?"], "prompt": "TV {} is laying on top of"}, {"index": 629, "image_id": 2383512, "entity": "cat", "caption": "the cats paw ", "question": ["are there the cats ?"], "prompt": "the {}s paw "}, {"index": 630, "image_id": 2383233, "entity": "cat", "caption": "cat is wearing a collar", "question": ["is there cat ?", "is there a collar ?"], "prompt": "{} is wearing a collar"}, {"index": 631, "image_id": 2382977, "entity": "cat", "caption": "the cats head id a dark color", "question": ["are there the cats ?", "is there a dark color ?"], "prompt": "the {}s head id a dark color"}, {"index": 632, "image_id": 2382977, "entity": "cat", "caption": "the cats tail is like his head", "question": ["are there the cats tail ?", "is there his head ?"], "prompt": "the {}s tail is like his head"}, {"index": 633, "image_id": 2382789, "entity": "cat", "caption": "The cat has reflective light in eyes", "question": ["is there the cat ?", "is there reflective light ?", "are there eyes ?"], "prompt": "The {} has reflective light in eyes"}, {"index": 634, "image_id": 2382560, "entity": "cat", "caption": "end of cats tail", "question": ["is there end ?", "are there cats ?"], "prompt": "end of {}s tail"}, {"index": 635, "image_id": 2382560, "entity": "cat", "caption": "black fur on cats head", "question": ["is there black fur ?", "are there cats ?"], "prompt": "black fur on {}s head"}, {"index": 636, "image_id": 2382560, "entity": "cat", "caption": "yellow fur on cats face", "question": ["is there yellow fur ?", "are there cats ?"], "prompt": "yellow fur on {}s face"}, {"index": 637, "image_id": 2382560, "entity": "cat", "caption": "the cats tail ", "question": ["are there the cats ?"], "prompt": "the {}s tail "}, {"index": 638, "image_id": 2382560, "entity": "cat", "caption": "The cat is sitting on the bench ", "question": ["is there the cat ?", "is there the bench ?"], "prompt": "The {} is sitting on the bench "}, {"index": 639, "image_id": 2382560, "entity": "cat", "caption": "The cat has a pink nose ", "question": ["is there the cat ?", "is there a pink nose ?"], "prompt": "The {} has a pink nose "}, {"index": 640, "image_id": 2382560, "entity": "cat", "caption": "The cat has a brown spot ", "question": ["is there the cat ?", "is there a brown spot ?"], "prompt": "The {} has a brown spot "}, {"index": 641, "image_id": 2382560, "entity": "cat", "caption": "The cat has a light brown spot ", "question": ["is there the cat ?", "is there a light brown spot ?"], "prompt": "The {} has a light brown spot "}, {"index": 642, "image_id": 2382390, "entity": "cat", "caption": "cats tail ", "question": ["are there cats ?"], "prompt": "{}s tail "}, {"index": 643, "image_id": 2382372, "entity": "cat", "caption": "cat is lying in a orange bowl", "question": ["is there cat ?", "is there a orange bowl ?"], "prompt": "{} is lying in a orange bowl"}, {"index": 644, "image_id": 2382372, "entity": "cat", "caption": "woman is behind cat", "question": ["is there woman ?", "is there cat ?"], "prompt": "woman is behind {}"}, {"index": 645, "image_id": 2382372, "entity": "cat", "caption": "the woman standing behind the cat", "question": ["is there the woman ?", "is there the cat ?"], "prompt": "the woman standing behind the {}"}, {"index": 646, "image_id": 2382119, "entity": "cat", "caption": "The cat is lying on a sofa", "question": ["is there the cat ?", "is there a sofa ?"], "prompt": "The {} is lying on a sofa"}, {"index": 647, "image_id": 2381823, "entity": "cat", "caption": "tabby cats nose and whiskers ", "question": ["are there tabby cats nose ?", "are there whiskers ?"], "prompt": "tabby {}s nose and whiskers "}, {"index": 648, "image_id": 2381823, "entity": "cat", "caption": "cat prepared to hit a key on the keyboard", "question": ["is there cat ?", "is there a key ?", "is there the keyboard ?"], "prompt": "{} prepared to hit a key on the keyboard"}, {"index": 649, "image_id": 2381795, "entity": "cat", "caption": "A cat is behind the laptop.", "question": ["is there a cat ?", "is there the laptop ?"], "prompt": "A {} is behind the laptop."}, {"index": 650, "image_id": 2381669, "entity": "cat", "caption": "a cat toy that a cat is playing with", "question": ["is there a cat toy ?", "is there a cat ?"], "prompt": "a {} toy that a {} is playing with"}, {"index": 651, "image_id": 2381609, "entity": "cat", "caption": "the cat's paw is the color white", "question": ["is there the cat's paw ?"], "prompt": "the {}'s paw is the color white"}, {"index": 652, "image_id": 2381609, "entity": "cat", "caption": "the cat has dark eyes that are open", "question": ["is there the cat ?", "are there dark eyes ?"], "prompt": "the {} has dark eyes that are open"}, {"index": 653, "image_id": 2381609, "entity": "cat", "caption": "the material the cat is laying on has flower images", "question": ["is there the material ?", "is there the cat ?", "are there flower images ?"], "prompt": "the material the {} is laying on has flower images"}, {"index": 654, "image_id": 2381609, "entity": "cat", "caption": "the colors of the cat's back is either brown, black, or gray", "question": ["are there the colors ?", "is there the cat's back ?"], "prompt": "the colors of the {}'s back is either brown, black, or gray"}, {"index": 655, "image_id": 2381609, "entity": "cat", "caption": "the cat has long whiskers", "question": ["is there the cat ?", "are there long whiskers ?"], "prompt": "the {} has long whiskers"}, {"index": 656, "image_id": 2381609, "entity": "cat", "caption": "the inside of the cat's ear is white", "question": ["is there the inside ?", "is there the cat's ear ?"], "prompt": "the inside of the {}'s ear is white"}, {"index": 657, "image_id": 2381609, "entity": "cat", "caption": "the colors on the cat's face are black & white", "question": ["are there the colors ?", "is there the cat's face ?"], "prompt": "the colors on the {}'s face are black & white"}, {"index": 658, "image_id": 2381542, "entity": "cat", "caption": "the cat has green or yellow eyes", "question": ["is there the cat ?", "are there green or yellow eyes ?"], "prompt": "the {} has green or yellow eyes"}, {"index": 659, "image_id": 2381542, "entity": "cat", "caption": "A cat in the bathroom sink", "question": ["is there a cat ?", "is there the bathroom ?"], "prompt": "A {} in the bathroom sink"}, {"index": 660, "image_id": 2381118, "entity": "cat", "caption": "cat is looking out the window ", "question": ["is there cat ?", "is there the window ?"], "prompt": "{} is looking out the window "}, {"index": 661, "image_id": 2381118, "entity": "cat", "caption": "cat is wearing a cat harness", "question": ["is there cat ?", "is there a cat harness ?"], "prompt": "{} is wearing a {} harness"}, {"index": 662, "image_id": 2380771, "entity": "cat", "caption": "cat's eyes are yellow", "question": ["are there cat's eyes ?"], "prompt": "{}'s eyes are yellow"}, {"index": 663, "image_id": 2380771, "entity": "cat", "caption": "cat is holding remote control", "question": ["is there cat ?", "is there remote control ?"], "prompt": "{} is holding remote control"}, {"index": 664, "image_id": 2380771, "entity": "cat", "caption": "green eyes on cat face", "question": ["are there green eyes ?", "is there cat ?"], "prompt": "green eyes on {} face"}, {"index": 665, "image_id": 2380771, "entity": "cat", "caption": "the cats eyes are yellow", "question": ["are there the cats ?", "are there eyes ?"], "prompt": "the {}s eyes are yellow"}, {"index": 666, "image_id": 2380771, "entity": "cat", "caption": "the cats paw is pink", "question": ["are there the cats paw ?"], "prompt": "the {}s paw is pink"}, {"index": 667, "image_id": 2380771, "entity": "cat", "caption": "A cats head and face.", "question": ["are there a cats ?", "is there face ?"], "prompt": "A {}s head and face."}, {"index": 668, "image_id": 2380646, "entity": "cat", "caption": "red folder sticking out from under cat", "question": ["is there red folder ?", "is there cat ?"], "prompt": "red folder sticking out from under {}"}, {"index": 669, "image_id": 2380324, "entity": "cat", "caption": "The cat is putting his paw in the glass.", "question": ["is there the cat ?", "is there his paw ?", "is there the glass ?"], "prompt": "The {} is putting his paw in the glass."}, {"index": 670, "image_id": 2380324, "entity": "cat", "caption": "The cat has two front legs.", "question": ["is there the cat ?", "are there two front legs ?"], "prompt": "The {} has two front legs."}, {"index": 671, "image_id": 2380324, "entity": "cat", "caption": "The cat has an eye.", "question": ["is there the cat ?", "is there an eye ?"], "prompt": "The {} has an eye."}, {"index": 672, "image_id": 2380324, "entity": "cat", "caption": "The cat has an ear.", "question": ["is there the cat ?", "is there an ear ?"], "prompt": "The {} has an ear."}, {"index": 673, "image_id": 2380324, "entity": "cat", "caption": "the cat's paw is in the glass", "question": ["is there the cat's paw ?", "is there the glass ?"], "prompt": "the {}'s paw is in the glass"}, {"index": 674, "image_id": 2380324, "entity": "cat", "caption": "the cat's ear is pointy", "question": ["is there the cat's ear ?"], "prompt": "the {}'s ear is pointy"}, {"index": 675, "image_id": 2380228, "entity": "cat", "caption": "Knife pointing at cat", "question": ["is there knife pointing ?", "is there cat ?"], "prompt": "Knife pointing at {}"}, {"index": 676, "image_id": 2380228, "entity": "cat", "caption": "The cat's nose is on the knife", "question": ["is there the cat's nose ?", "is there the knife ?"], "prompt": "The {}'s nose is on the knife"}, {"index": 677, "image_id": 2379874, "entity": "cat", "caption": "The cat has ears.", "question": ["is there the cat ?", "are there ears ?"], "prompt": "The {} has ears."}, {"index": 678, "image_id": 2379821, "entity": "cat", "caption": "cat has dark legs", "question": ["is there cat ?", "are there dark legs ?"], "prompt": "{} has dark legs"}, {"index": 679, "image_id": 2379821, "entity": "cat", "caption": "the back of the cats head", "question": ["is there the back ?", "are there the cats ?"], "prompt": "the back of the {}s head"}, {"index": 680, "image_id": 2379821, "entity": "cat", "caption": "The cat is looking at the laptop", "question": ["is there the cat ?", "is there the laptop ?"], "prompt": "The {} is looking at the laptop"}, {"index": 681, "image_id": 2379559, "entity": "cat", "caption": "blanket cat is on", "question": ["is there blanket cat ?"], "prompt": "blanket {} is on"}, {"index": 682, "image_id": 2379559, "entity": "cat", "caption": "the cat is black and white", "question": ["is there the cat ?"], "prompt": "the {} is black and white"}, {"index": 683, "image_id": 2379491, "entity": "cat", "caption": "cat is playing with a small brown object on desk", "question": ["is there cat ?", "is there a small brown object ?", "is there desk ?"], "prompt": "{} is playing with a small brown object on desk"}, {"index": 684, "image_id": 2379491, "entity": "cat", "caption": "Basket is at the back of cat.", "question": ["is there basket ?", "is there the back ?", "is there cat ?"], "prompt": "Basket is at the back of {}."}, {"index": 685, "image_id": 2379491, "entity": "cat", "caption": "Papers are besides the cat.", "question": ["are there papers ?", "is there the cat ?"], "prompt": "Papers are besides the {}."}, {"index": 686, "image_id": 2379025, "entity": "cat", "caption": "cat with head resting on table", "question": ["is there cat ?", "is there head ?", "is there table ?"], "prompt": "{} with head resting on table"}, {"index": 687, "image_id": 2378853, "entity": "cat", "caption": "The cat has long hair. ", "question": ["is there the cat ?", "is there long hair ?"], "prompt": "The {} has long hair. "}, {"index": 688, "image_id": 2378853, "entity": "cat", "caption": "The cat has long hair.", "question": ["is there the cat ?", "is there long hair ?"], "prompt": "The {} has long hair."}, {"index": 689, "image_id": 2378853, "entity": "cat", "caption": "The cat is on luggage.", "question": ["is there the cat ?", "is there luggage ?"], "prompt": "The {} is on luggage."}, {"index": 690, "image_id": 2378803, "entity": "cat", "caption": "cat has white feet", "question": ["is there cat ?", "are there white feet ?"], "prompt": "{} has white feet"}, {"index": 691, "image_id": 2378777, "entity": "cat", "caption": "the cat is laying on the laptop", "question": ["is there the cat ?", "is there the laptop ?"], "prompt": "the {} is laying on the laptop"}, {"index": 692, "image_id": 2378777, "entity": "cat", "caption": "the cat is on the table", "question": ["is there the cat ?", "is there the table ?"], "prompt": "the {} is on the table"}, {"index": 693, "image_id": 2378777, "entity": "cat", "caption": "Light is reflecting off of the cat", "question": ["is there light ?", "is there the cat ?"], "prompt": "Light is reflecting off of the {}"}, {"index": 694, "image_id": 2378777, "entity": "cat", "caption": "cat is laying on the laptop ", "question": ["is there cat ?", "is there the laptop ?"], "prompt": "{} is laying on the laptop "}, {"index": 695, "image_id": 2378777, "entity": "cat", "caption": "the cat is on the table ", "question": ["is there the cat ?", "is there the table ?"], "prompt": "the {} is on the table "}, {"index": 696, "image_id": 2378777, "entity": "cat", "caption": "cat has a white nose ", "question": ["is there cat ?", "is there a white nose ?"], "prompt": "{} has a white nose "}, {"index": 697, "image_id": 2378767, "entity": "cat", "caption": "long haired white cat in bathroom sink", "question": ["is there haired white cat ?", "is there bathroom ?"], "prompt": "long haired white {} in bathroom sink"}, {"index": 698, "image_id": 2378726, "entity": "cat", "caption": "A cat is sleeping on the couch.", "question": ["is there a cat ?", "is there the couch ?"], "prompt": "A {} is sleeping on the couch."}, {"index": 699, "image_id": 2378597, "entity": "cat", "caption": "cat is on top of the laptop ", "question": ["is there cat ?", "is there top ?", "is there the laptop ?"], "prompt": "{} is on top of the laptop "}, {"index": 700, "image_id": 2378574, "entity": "cat", "caption": "cat has blue eyes", "question": ["is there cat ?", "are there blue eyes ?"], "prompt": "{} has blue eyes"}, {"index": 701, "image_id": 2378574, "entity": "cat", "caption": "the cat has eyebrows", "question": ["is there the cat ?", "are there eyebrows ?"], "prompt": "the {} has eyebrows"}, {"index": 702, "image_id": 2378574, "entity": "cat", "caption": "cats mouth is closed", "question": ["are there cats ?"], "prompt": "{}s mouth is closed"}, {"index": 703, "image_id": 2378477, "entity": "cat", "caption": "tongue of cat is pink", "question": ["is there tongue ?", "is there cat ?"], "prompt": "tongue of {} is pink"}, {"index": 704, "image_id": 2378347, "entity": "cat", "caption": "a cat is licking the toy", "question": ["is there a cat ?", "is there the toy ?"], "prompt": "a {} is licking the toy"}, {"index": 705, "image_id": 2378347, "entity": "cat", "caption": "the cat has pink pads on its paws", "question": ["is there the cat ?", "are there pink pads ?", "are there its paws ?"], "prompt": "the {} has pink pads on its paws"}, {"index": 706, "image_id": 2378347, "entity": "cat", "caption": "The cat licks the cat toy", "question": ["is there the cat ?", "is there the cat toy ?"], "prompt": "The {} licks the {} toy"}, {"index": 707, "image_id": 2378347, "entity": "cat", "caption": "The cat has short hair", "question": ["is there the cat ?", "is there short hair ?"], "prompt": "The {} has short hair"}, {"index": 708, "image_id": 2378347, "entity": "cat", "caption": "cat toy is yellow and has a tag", "question": ["is there cat toy ?", "is there a tag ?"], "prompt": "{} toy is yellow and has a tag"}, {"index": 709, "image_id": 2378347, "entity": "cat", "caption": "cat has white and pink paws", "question": ["is there cat ?", "are there white and pink paws ?"], "prompt": "{} has white and pink paws"}, {"index": 710, "image_id": 2378178, "entity": "cat", "caption": "The cat's mouth is open", "question": ["is there the cat's mouth ?"], "prompt": "The {}'s mouth is open"}, {"index": 711, "image_id": 2378178, "entity": "cat", "caption": "The cat's ear is alert", "question": ["is there the cat's ear ?"], "prompt": "The {}'s ear is alert"}, {"index": 712, "image_id": 2378072, "entity": "cat", "caption": "Pair of cat seated facing a row of windows", "question": ["is there pair ?", "is there cat ?", "is there a row ?", "are there windows ?"], "prompt": "Pair of {} seated facing a row of windows"}, {"index": 713, "image_id": 2377814, "entity": "cat", "caption": "The grass lawn behind the cat", "question": ["is there the grass lawn ?", "is there the cat ?"], "prompt": "The grass lawn behind the {}"}, {"index": 714, "image_id": 2377814, "entity": "cat", "caption": "The computer the cat is standing on", "question": ["is there the computer ?", "is there the cat ?"], "prompt": "The computer the {} is standing on"}, {"index": 715, "image_id": 2377724, "entity": "cat", "caption": "cat's tail falling across part of screen", "question": ["is there cat's tail ?", "is there part ?", "is there screen ?"], "prompt": "{}'s tail falling across part of screen"}, {"index": 716, "image_id": 2377724, "entity": "cat", "caption": "cat has light green eyes", "question": ["is there cat ?", "are there light green eyes ?"], "prompt": "{} has light green eyes"}, {"index": 717, "image_id": 2377724, "entity": "cat", "caption": "the cat is on top of the television", "question": ["is there the cat ?", "is there top ?", "is there the television ?"], "prompt": "the {} is on top of the television"}, {"index": 718, "image_id": 2377697, "entity": "cat", "caption": "cat's eyes reflecting camera flash", "question": ["are there cat's eyes ?", "is there camera flash ?"], "prompt": "{}'s eyes reflecting camera flash"}, {"index": 719, "image_id": 2377574, "entity": "cat", "caption": "the cat is on the laptop", "question": ["is there the cat ?", "is there the laptop ?"], "prompt": "the {} is on the laptop"}, {"index": 720, "image_id": 2377574, "entity": "cat", "caption": "black cat has tongue out", "question": ["is there black cat ?", "is there tongue ?"], "prompt": "black {} has tongue out"}, {"index": 721, "image_id": 2377574, "entity": "cat", "caption": "computer has a cat on it", "question": ["is there computer ?", "is there a cat ?"], "prompt": "computer has a {} on it"}, {"index": 722, "image_id": 2377434, "entity": "cat", "caption": "The cat's eye is green.", "question": ["is there the cat's eye ?"], "prompt": "The {}'s eye is green."}, {"index": 723, "image_id": 2377353, "entity": "cat", "caption": "She is holding the cat.", "question": ["is there the cat ?"], "prompt": "She is holding the {}."}, {"index": 724, "image_id": 2376608, "entity": "cat", "caption": "White whiskers coming out of a cat's face. ", "question": ["are there white whiskers ?", "is there a cat's face ?"], "prompt": "White whiskers coming out of a {}'s face. "}, {"index": 725, "image_id": 2376143, "entity": "cat", "caption": "This is a cat's nose", "question": ["is there a cat's nose ?"], "prompt": "This is a {}'s nose"}, {"index": 726, "image_id": 2376143, "entity": "cat", "caption": "Rightt ear of a cat", "question": ["is there rightt ear ?", "is there a cat ?"], "prompt": "Rightt ear of a {}"}, {"index": 727, "image_id": 2376143, "entity": "cat", "caption": "cat is lying on a blanket", "question": ["is there cat ?", "is there a blanket ?"], "prompt": "{} is lying on a blanket"}, {"index": 728, "image_id": 2376143, "entity": "cat", "caption": "cat has paw up in air", "question": ["is there cat ?", "is there air ?"], "prompt": "{} has paw up in air"}, {"index": 729, "image_id": 2376134, "entity": "cat", "caption": "A dog is smelling a cat", "question": ["is there a dog ?", "is there a cat ?"], "prompt": "A dog is smelling a {}"}, {"index": 730, "image_id": 2376134, "entity": "cat", "caption": "An old dog is greeting the new cat", "question": ["is there an old dog ?", "is there the new cat ?"], "prompt": "An old dog is greeting the new {}"}, {"index": 731, "image_id": 2376134, "entity": "cat", "caption": "A cat is friends with a dog", "question": ["is there a cat ?", "are there friends ?", "is there a dog ?"], "prompt": "A {} is friends with a dog"}, {"index": 732, "image_id": 2376134, "entity": "cat", "caption": "a brown and black cats head", "question": ["are there a brown and black cats ?"], "prompt": "a brown and black {}s head"}, {"index": 733, "image_id": 2376134, "entity": "cat", "caption": "Dog is playing with cat.", "question": ["is there dog ?", "is there cat ?"], "prompt": "Dog is playing with {}."}, {"index": 734, "image_id": 2376123, "entity": "cat", "caption": "The cat is looking at the computer screen", "question": ["is there the cat ?", "is there the computer screen ?"], "prompt": "The {} is looking at the computer screen"}, {"index": 735, "image_id": 2376123, "entity": "cat", "caption": "The cat's paw is on the keyboard", "question": ["is there the cat's paw ?", "is there the keyboard ?"], "prompt": "The {}'s paw is on the keyboard"}, {"index": 736, "image_id": 2376123, "entity": "cat", "caption": "This is a leg of a cat", "question": ["is there a leg ?", "is there a cat ?"], "prompt": "This is a leg of a {}"}, {"index": 737, "image_id": 2376123, "entity": "cat", "caption": "This is an ear of a cat", "question": ["is there an ear ?", "is there a cat ?"], "prompt": "This is an ear of a {}"}, {"index": 738, "image_id": 2376007, "entity": "cat", "caption": "sandal that the cat is laying on", "question": ["is there sandal ?", "is there the cat ?"], "prompt": "sandal that the {} is laying on"}, {"index": 739, "image_id": 2376007, "entity": "cat", "caption": "cat is lying on the flip flops", "question": ["is there cat ?", "are there the flip flops ?"], "prompt": "{} is lying on the flip flops"}, {"index": 740, "image_id": 2376007, "entity": "cat", "caption": "right flip flop cat is lying on", "question": ["is there flip flop cat ?"], "prompt": "right flip flop {} is lying on"}, {"index": 741, "image_id": 2375876, "entity": "cat", "caption": "tail of cat is furry ", "question": ["is there tail ?", "is there cat ?"], "prompt": "tail of {} is furry "}, {"index": 742, "image_id": 2375876, "entity": "cat", "caption": "a cat curled up in the sink", "question": ["is there a cat ?", "is there the sink ?"], "prompt": "a {} curled up in the sink"}, {"index": 743, "image_id": 2375860, "entity": "cat", "caption": "A cat is in the picture.", "question": ["is there a cat ?", "is there the picture ?"], "prompt": "A {} is in the picture."}, {"index": 744, "image_id": 2375860, "entity": "cat", "caption": "The cat has a pink and black nose.", "question": ["is there the cat ?", "is there a pink and black nose ?"], "prompt": "The {} has a pink and black nose."}, {"index": 745, "image_id": 2375860, "entity": "cat", "caption": "A calico cats head", "question": ["are there a calico cats ?"], "prompt": "A calico {}s head"}, {"index": 746, "image_id": 2375860, "entity": "cat", "caption": "A cats left eye ", "question": ["are there a cats ?", "is there eye ?"], "prompt": "A {}s left eye "}, {"index": 747, "image_id": 2375860, "entity": "cat", "caption": "cat's whiskers are white", "question": ["are there cat's whiskers ?"], "prompt": "{}'s whiskers are white"}, {"index": 748, "image_id": 2375860, "entity": "cat", "caption": "cat's back is orange", "question": ["is there cat's back ?"], "prompt": "{}'s back is orange"}, {"index": 749, "image_id": 2375860, "entity": "cat", "caption": "cat's ears pointed upwards", "question": ["are there cat's ears ?"], "prompt": "{}'s ears pointed upwards"}, {"index": 750, "image_id": 2375860, "entity": "cat", "caption": "cat's nose is 2 different colors", "question": ["is there cat's nose ?", "are there 2 different colors ?"], "prompt": "{}'s nose is 2 different colors"}, {"index": 751, "image_id": 2375174, "entity": "cat", "caption": "cat has pink ears", "question": ["is there cat ?", "are there pink ears ?"], "prompt": "{} has pink ears"}, {"index": 752, "image_id": 2375174, "entity": "cat", "caption": "cat has small mouth", "question": ["is there cat ?", "is there small mouth ?"], "prompt": "{} has small mouth"}, {"index": 753, "image_id": 2375174, "entity": "cat", "caption": "cat has brown eyes", "question": ["is there cat ?", "are there brown eyes ?"], "prompt": "{} has brown eyes"}, {"index": 754, "image_id": 2375174, "entity": "cat", "caption": "cat has white fur", "question": ["is there cat ?", "is there white fur ?"], "prompt": "{} has white fur"}, {"index": 755, "image_id": 2375174, "entity": "cat", "caption": "floor behind cat is brown", "question": ["is there floor ?", "is there cat ?"], "prompt": "floor behind {} is brown"}, {"index": 756, "image_id": 2375174, "entity": "cat", "caption": "The cat's face has brown spots.", "question": ["is there the cat's face ?", "are there brown spots ?"], "prompt": "The {}'s face has brown spots."}, {"index": 757, "image_id": 2375064, "entity": "cat", "caption": "The cat has black fur", "question": ["is there the cat ?", "is there black fur ?"], "prompt": "The {} has black fur"}, {"index": 758, "image_id": 2374880, "entity": "cat", "caption": "a cats tail", "question": ["are there a cats ?"], "prompt": "a {}s tail"}, {"index": 759, "image_id": 2374880, "entity": "cat", "caption": "the toy the cat is sitting on ", "question": ["is there the toy ?", "is there the cat ?"], "prompt": "the toy the {} is sitting on "}, {"index": 760, "image_id": 2374880, "entity": "cat", "caption": "the window the cat is sitting next to", "question": ["is there the window ?", "is there the cat ?"], "prompt": "the window the {} is sitting next to"}, {"index": 761, "image_id": 2374743, "entity": "cat", "caption": "The cat has a very long tail", "question": ["is there the cat ?", "is there a very long tail ?"], "prompt": "The {} has a very long tail"}, {"index": 762, "image_id": 2374743, "entity": "cat", "caption": "chair cat is sitting on", "question": ["is there chair cat ?"], "prompt": "chair {} is sitting on"}, {"index": 763, "image_id": 2374743, "entity": "cat", "caption": "mirror above chair cat is sitting on", "question": ["is there mirror ?", "is there chair cat ?"], "prompt": "mirror above chair {} is sitting on"}, {"index": 764, "image_id": 2374743, "entity": "cat", "caption": "the cat appears to be in a vehicle of some sort", "question": ["is there the cat ?", "is there a vehicle ?", "is there some sort ?"], "prompt": "the {} appears to be in a vehicle of some sort"}, {"index": 765, "image_id": 2374741, "entity": "cat", "caption": "cat is wearing a hat", "question": ["is there cat ?", "is there a hat ?"], "prompt": "{} is wearing a hat"}, {"index": 766, "image_id": 2374741, "entity": "cat", "caption": "A cat is on a bed", "question": ["is there a cat ?", "is there a bed ?"], "prompt": "A {} is on a bed"}, {"index": 767, "image_id": 2374741, "entity": "cat", "caption": "the cat has medium length fur", "question": ["is there the cat ?", "is there medium length fur ?"], "prompt": "the {} has medium length fur"}, {"index": 768, "image_id": 2374741, "entity": "cat", "caption": "cat is lying on a bed", "question": ["is there cat ?", "is there a bed ?"], "prompt": "{} is lying on a bed"}, {"index": 769, "image_id": 2374729, "entity": "cat", "caption": "a fuzzy cats tail", "question": ["are there a fuzzy cats ?"], "prompt": "a fuzzy {}s tail"}, {"index": 770, "image_id": 2374658, "entity": "cat", "caption": "the cat's eyes are yellow", "question": ["are there the cat's eyes ?"], "prompt": "the {}'s eyes are yellow"}, {"index": 771, "image_id": 2374658, "entity": "cat", "caption": "the cat's ears are pointing forward", "question": ["are there the cat's ears ?"], "prompt": "the {}'s ears are pointing forward"}, {"index": 772, "image_id": 2374658, "entity": "cat", "caption": "A cats right eye", "question": ["are there a cats ?", "is there eye ?"], "prompt": "A {}s right eye"}, {"index": 773, "image_id": 2374566, "entity": "cat", "caption": "the cat's back left paw", "question": ["is there the cat's back left paw ?"], "prompt": "the {}'s back left paw"}, {"index": 774, "image_id": 2374426, "entity": "cat", "caption": "cat is kissing the human", "question": ["is there cat ?", "is there the human ?"], "prompt": "{} is kissing the human"}, {"index": 775, "image_id": 2374424, "entity": "cat", "caption": "the cat is sleeping on the bench", "question": ["is there the cat ?", "is there the bench ?"], "prompt": "the {} is sleeping on the bench"}, {"index": 776, "image_id": 2374424, "entity": "cat", "caption": "the cat is on a wood bench", "question": ["is there the cat ?", "is there a wood bench ?"], "prompt": "the {} is on a wood bench"}, {"index": 777, "image_id": 2374357, "entity": "cat", "caption": "cat has white stomach", "question": ["is there cat ?", "is there white stomach ?"], "prompt": "{} has white stomach"}, {"index": 778, "image_id": 2374357, "entity": "cat", "caption": "cat is holding yellow toy", "question": ["is there cat ?", "is there yellow toy ?"], "prompt": "{} is holding yellow toy"}, {"index": 779, "image_id": 2374357, "entity": "cat", "caption": "cat has black patches on eyes", "question": ["is there cat ?", "are there black patches ?", "are there eyes ?"], "prompt": "{} has black patches on eyes"}, {"index": 780, "image_id": 2374357, "entity": "cat", "caption": "cat lies on tan blanket", "question": ["is there cat ?", "is there tan blanket ?"], "prompt": "{} lies on tan blanket"}, {"index": 781, "image_id": 2374357, "entity": "cat", "caption": "cat has short whiskers", "question": ["is there cat ?", "are there short whiskers ?"], "prompt": "{} has short whiskers"}, {"index": 782, "image_id": 2374357, "entity": "cat", "caption": "the cats belly is white", "question": ["are there the cats ?"], "prompt": "the {}s belly is white"}, {"index": 783, "image_id": 2374357, "entity": "cat", "caption": "a black cats ear", "question": ["are there a black cats ?"], "prompt": "a black {}s ear"}, {"index": 784, "image_id": 2374314, "entity": "cat", "caption": "The cat's ears are down.", "question": ["are there the cat's ears ?"], "prompt": "The {}'s ears are down."}, {"index": 785, "image_id": 2374156, "entity": "cat", "caption": "the cat is sitting on the desk", "question": ["is there the cat ?", "is there the desk ?"], "prompt": "the {} is sitting on the desk"}, {"index": 786, "image_id": 2374156, "entity": "cat", "caption": "a laptop is behind the cat", "question": ["is there a laptop ?", "is there the cat ?"], "prompt": "a laptop is behind the {}"}, {"index": 787, "image_id": 2374119, "entity": "cat", "caption": "the cat is touching a game remote", "question": ["is there the cat ?", "is there a game ?"], "prompt": "the {} is touching a game remote"}, {"index": 788, "image_id": 2374119, "entity": "cat", "caption": "cat has grey paw", "question": ["is there cat ?"], "prompt": "{} has grey paw"}, {"index": 789, "image_id": 2374119, "entity": "cat", "caption": "cat has white patch on face", "question": ["is there cat ?", "is there white patch ?", "is there face ?"], "prompt": "{} has white patch on face"}, {"index": 790, "image_id": 2374119, "entity": "cat", "caption": "whiskers are on the cat ", "question": ["are there whiskers ?", "is there the cat ?"], "prompt": "whiskers are on the {} "}, {"index": 791, "image_id": 2373968, "entity": "cat", "caption": "black cat drinks milk from a bottle", "question": ["is there black cat ?", "is there milk ?", "is there a bottle ?"], "prompt": "black {} drinks milk from a bottle"}, {"index": 792, "image_id": 2373717, "entity": "cat", "caption": "cat has tiny pink nose", "question": ["is there cat ?", "is there tiny pink nose ?"], "prompt": "{} has tiny pink nose"}, {"index": 793, "image_id": 2373613, "entity": "cat", "caption": "an orange cat laying in a bathroom sink", "question": ["is there an orange cat ?", "is there a bathroom ?"], "prompt": "an orange {} laying in a bathroom sink"}, {"index": 794, "image_id": 2373613, "entity": "cat", "caption": "cat laying in bathroom sink", "question": ["is there cat ?", "is there bathroom ?"], "prompt": "{} laying in bathroom sink"}, {"index": 795, "image_id": 2373613, "entity": "cat", "caption": "an orange cat in a bathroom sink", "question": ["is there an orange cat ?", "is there a bathroom ?"], "prompt": "an orange {} in a bathroom sink"}, {"index": 796, "image_id": 2373613, "entity": "cat", "caption": "White sink cat is lying in", "question": ["is there white sink cat ?"], "prompt": "White sink {} is lying in"}, {"index": 797, "image_id": 2373613, "entity": "cat", "caption": "A cat is sitting in the sink ", "question": ["is there a cat ?", "is there the sink ?"], "prompt": "A {} is sitting in the sink "}, {"index": 798, "image_id": 2373601, "entity": "cat", "caption": "A cat has its eyes closed", "question": ["is there a cat ?", "are there its eyes ?"], "prompt": "A {} has its eyes closed"}, {"index": 799, "image_id": 2373601, "entity": "cat", "caption": "A cat is sleeping next to a computer", "question": ["is there a cat ?", "is there a computer ?"], "prompt": "A {} is sleeping next to a computer"}, {"index": 800, "image_id": 2373601, "entity": "cat", "caption": "A cat is next to a computer mouse", "question": ["is there a cat ?", "is there a computer mouse ?"], "prompt": "A {} is next to a computer mouse"}, {"index": 801, "image_id": 2373601, "entity": "cat", "caption": "A cat is sleeping next to a computer mouse", "question": ["is there a cat ?", "is there a computer mouse ?"], "prompt": "A {} is sleeping next to a computer mouse"}, {"index": 802, "image_id": 2373578, "entity": "cat", "caption": "two cats are near a window sill", "question": ["are there two cats ?", "is there a window sill ?"], "prompt": "two {}s are near a window sill"}, {"index": 803, "image_id": 2373359, "entity": "cat", "caption": "eyes of cat are closed", "question": ["are there eyes ?", "is there cat ?"], "prompt": "eyes of {} are closed"}, {"index": 804, "image_id": 2373359, "entity": "cat", "caption": "cat is on a pink surface", "question": ["is there cat ?", "is there a pink surface ?"], "prompt": "{} is on a pink surface"}, {"index": 805, "image_id": 2373359, "entity": "cat", "caption": "cat's eyes closed", "question": ["are there cat's eyes ?"], "prompt": "{}'s eyes closed"}, {"index": 806, "image_id": 2373010, "entity": "cat", "caption": "grey striped cat on bench", "question": ["is there grey striped cat ?", "is there bench ?"], "prompt": "grey striped {} on bench"}, {"index": 807, "image_id": 2373010, "entity": "cat", "caption": "the wooden bench the cat is laying on", "question": ["is there the wooden bench ?", "is there the cat ?"], "prompt": "the wooden bench the {} is laying on"}, {"index": 808, "image_id": 2373010, "entity": "cat", "caption": "the cat has black stripes", "question": ["is there the cat ?", "are there black stripes ?"], "prompt": "the {} has black stripes"}, {"index": 809, "image_id": 2373001, "entity": "cat", "caption": "black cat drinking from toilet", "question": ["is there black cat ?", "is there toilet ?"], "prompt": "black {} drinking from toilet"}, {"index": 810, "image_id": 2373001, "entity": "cat", "caption": "A cat is looking in the toilet", "question": ["is there a cat ?", "is there the toilet ?"], "prompt": "A {} is looking in the toilet"}, {"index": 811, "image_id": 2372701, "entity": "cat", "caption": "black and white cat laying down", "question": ["is there black and white cat ?"], "prompt": "black and white {} laying down"}, {"index": 812, "image_id": 2372459, "entity": "cat", "caption": "a cat curled up on a desk ", "question": ["is there a cat ?", "is there a desk ?"], "prompt": "a {} curled up on a desk "}, {"index": 813, "image_id": 2372296, "entity": "cat", "caption": "cat is next to sink", "question": ["is there cat ?"], "prompt": "{} is next to sink"}, {"index": 814, "image_id": 2372296, "entity": "cat", "caption": "cat has brown ears", "question": ["is there cat ?", "are there brown ears ?"], "prompt": "{} has brown ears"}, {"index": 815, "image_id": 2372296, "entity": "cat", "caption": "cat has dark brown nose", "question": ["is there cat ?", "is there dark brown nose ?"], "prompt": "{} has dark brown nose"}, {"index": 816, "image_id": 2372296, "entity": "cat", "caption": "cat has dark brown paws", "question": ["is there cat ?", "are there dark brown paws ?"], "prompt": "{} has dark brown paws"}, {"index": 817, "image_id": 2372296, "entity": "cat", "caption": "sink near cat is white", "question": ["is there cat ?"], "prompt": "sink near {} is white"}, {"index": 818, "image_id": 2372296, "entity": "cat", "caption": "The cat has one paw on the sink", "question": ["is there the cat ?", "is there one paw ?", "is there the sink ?"], "prompt": "The {} has one paw on the sink"}, {"index": 819, "image_id": 2372296, "entity": "cat", "caption": "The cat is standing on its hind legs", "question": ["is there the cat ?", "are there its hind legs ?"], "prompt": "The {} is standing on its hind legs"}, {"index": 820, "image_id": 2372277, "entity": "cat", "caption": "cat is on table", "question": ["is there cat ?", "is there table ?"], "prompt": "{} is on table"}, {"index": 821, "image_id": 2372277, "entity": "cat", "caption": "cat sits on watch", "question": ["is there cat ?", "is there watch ?"], "prompt": "{} sits on watch"}, {"index": 822, "image_id": 2372277, "entity": "cat", "caption": "cat has grey ears", "question": ["is there cat ?", "are there grey ears ?"], "prompt": "{} has grey ears"}, {"index": 823, "image_id": 2372277, "entity": "cat", "caption": "cat sits on paper", "question": ["is there cat ?", "is there paper ?"], "prompt": "{} sits on paper"}, {"index": 824, "image_id": 2372277, "entity": "cat", "caption": "A cat is sitting on a watch and a sheet of paper.", "question": ["is there a cat ?", "is there a watch ?", "is there a sheet ?", "is there paper ?"], "prompt": "A {} is sitting on a watch and a sheet of paper."}, {"index": 825, "image_id": 2372277, "entity": "cat", "caption": "cat sits on a desk", "question": ["is there cat ?", "is there a desk ?"], "prompt": "{} sits on a desk"}, {"index": 826, "image_id": 2372277, "entity": "cat", "caption": "the whiskers growing from the cat's face", "question": ["are there the whiskers ?", "is there the cat's face ?"], "prompt": "the whiskers growing from the {}'s face"}, {"index": 827, "image_id": 2372160, "entity": "cat", "caption": "this is an ear of a cat", "question": ["is there an ear ?", "is there a cat ?"], "prompt": "this is an ear of a {}"}, {"index": 828, "image_id": 2372160, "entity": "cat", "caption": "this is an eye of a cat", "question": ["is there an eye ?", "is there a cat ?"], "prompt": "this is an eye of a {}"}, {"index": 829, "image_id": 2371950, "entity": "cat", "caption": "the cat is in a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the {} is in a car"}, {"index": 830, "image_id": 2371950, "entity": "cat", "caption": "the cat looks out the window", "question": ["is there the cat ?", "is there the window ?"], "prompt": "the {} looks out the window"}, {"index": 831, "image_id": 2371950, "entity": "cat", "caption": "the cat is in the back seat", "question": ["is there the cat ?", "is there the back seat ?"], "prompt": "the {} is in the back seat"}, {"index": 832, "image_id": 2371538, "entity": "cat", "caption": "silvery sheen on cat's back", "question": ["is there silvery sheen ?", "is there cat's back ?"], "prompt": "silvery sheen on {}'s back"}, {"index": 833, "image_id": 2371517, "entity": "cat", "caption": "blanket the cat is sleeping on", "question": ["is there the cat ?"], "prompt": "blanket the {} is sleeping on"}, {"index": 834, "image_id": 2371517, "entity": "cat", "caption": "the cats tail", "question": ["are there the cats ?"], "prompt": "the {}s tail"}, {"index": 835, "image_id": 2371517, "entity": "cat", "caption": "cat tail curving toward leg", "question": ["is there cat tail ?", "is there leg ?"], "prompt": "{} tail curving toward leg"}, {"index": 836, "image_id": 2371517, "entity": "cat", "caption": "the head of a cat that is asleep", "question": ["is there the head ?", "is there a cat ?"], "prompt": "the head of a {} that is asleep"}, {"index": 837, "image_id": 2371396, "entity": "cat", "caption": "these are the cats eyes", "question": ["are there the cats ?", "are there eyes ?"], "prompt": "these are the {}s eyes"}, {"index": 838, "image_id": 2371396, "entity": "cat", "caption": "the cats eyes are two different colors", "question": ["are there the cats ?", "are there eyes ?", "are there two different colors ?"], "prompt": "the {}s eyes are two different colors"}, {"index": 839, "image_id": 2371396, "entity": "cat", "caption": "this is the cats nose and mouth", "question": ["are there the cats nose ?", "is there mouth ?"], "prompt": "this is the {}s nose and mouth"}, {"index": 840, "image_id": 2371271, "entity": "cat", "caption": "The cat is looking up.", "question": ["is there the cat ?"], "prompt": "The {} is looking up."}, {"index": 841, "image_id": 2371271, "entity": "cat", "caption": "the cat is loking up", "question": ["is there the cat ?"], "prompt": "the {} is loking up"}, {"index": 842, "image_id": 2371240, "entity": "cat", "caption": "the stripes of a cats fur", "question": ["are there the stripes ?", "are there a cats ?"], "prompt": "the stripes of a {}s fur"}, {"index": 843, "image_id": 2371162, "entity": "cat", "caption": "The cat's hanging pink collar pendant", "question": ["is there the cat's hanging pink collar pendant ?"], "prompt": "The {}'s hanging pink collar pendant"}, {"index": 844, "image_id": 2371084, "entity": "cat", "caption": "Someone is holding the cat.", "question": ["is there someone ?", "is there the cat ?"], "prompt": "Someone is holding the {}."}, {"index": 845, "image_id": 2371084, "entity": "cat", "caption": "the cat is looking out the window", "question": ["is there the cat ?", "is there the window ?"], "prompt": "the {} is looking out the window"}, {"index": 846, "image_id": 2371082, "entity": "cat", "caption": "\"A cat is laying in the bathroom sink\"", "question": ["is there a cat ?", "is there the bathroom ?"], "prompt": "\"A {} is laying in the bathroom sink\""}, {"index": 847, "image_id": 2371082, "entity": "cat", "caption": "The green left eye of the cat", "question": ["is there the green left eye ?", "is there the cat ?"], "prompt": "The green left eye of the {}"}, {"index": 848, "image_id": 2370793, "entity": "cat", "caption": "cat is wearing red collar", "question": ["is there cat ?", "is there red collar ?"], "prompt": "{} is wearing red collar"}, {"index": 849, "image_id": 2370793, "entity": "cat", "caption": "The yellow cat has a white paw", "question": ["is there the yellow cat ?", "is there a white paw ?"], "prompt": "The yellow {} has a white paw"}, {"index": 850, "image_id": 2370793, "entity": "cat", "caption": "Face of cat submerged into shoe", "question": ["is there face ?", "is there cat ?", "is there shoe ?"], "prompt": "Face of {} submerged into shoe"}, {"index": 851, "image_id": 2370516, "entity": "cat", "caption": "cat is wondering why there is a shoe in its face", "question": ["is there cat ?", "is there a shoe ?", "is there its face ?"], "prompt": "{} is wondering why there is a shoe in its face"}, {"index": 852, "image_id": 2370492, "entity": "cat", "caption": "cat has a white chest", "question": ["is there cat ?", "is there a white chest ?"], "prompt": "{} has a white chest"}, {"index": 853, "image_id": 2370492, "entity": "cat", "caption": "cat is on the desk", "question": ["is there cat ?", "is there the desk ?"], "prompt": "{} is on the desk"}, {"index": 854, "image_id": 2370492, "entity": "cat", "caption": "white hair on cats chest", "question": ["is there white hair ?", "are there cats ?"], "prompt": "white hair on {}s chest"}, {"index": 855, "image_id": 2370479, "entity": "cat", "caption": "cat has light ears", "question": ["is there cat ?", "are there light ears ?"], "prompt": "{} has light ears"}, {"index": 856, "image_id": 2370479, "entity": "cat", "caption": "cat has dark eyes", "question": ["is there cat ?", "are there dark eyes ?"], "prompt": "{} has dark eyes"}, {"index": 857, "image_id": 2370479, "entity": "cat", "caption": "cat has dark nose", "question": ["is there cat ?", "is there dark nose ?"], "prompt": "{} has dark nose"}, {"index": 858, "image_id": 2370479, "entity": "cat", "caption": "cat has light paws", "question": ["is there cat ?", "are there light paws ?"], "prompt": "{} has light paws"}, {"index": 859, "image_id": 2370479, "entity": "cat", "caption": "the cat is on a suitcase", "question": ["is there the cat ?", "is there a suitcase ?"], "prompt": "the {} is on a suitcase"}, {"index": 860, "image_id": 2370459, "entity": "cat", "caption": "right cat ear ", "question": ["is there right cat ?"], "prompt": "right {} ear "}, {"index": 861, "image_id": 2370459, "entity": "cat", "caption": "cat has stripes", "question": ["is there cat ?", "are there stripes ?"], "prompt": "{} has stripes"}, {"index": 862, "image_id": 2370459, "entity": "cat", "caption": "cat has hair in it's ear", "question": ["is there cat ?", "is there hair ?"], "prompt": "{} has hair in it's ear"}, {"index": 863, "image_id": 2370459, "entity": "cat", "caption": "dark grey streaks near cat's eyes", "question": ["are there dark grey streaks ?", "are there cat's eyes ?"], "prompt": "dark grey streaks near {}'s eyes"}, {"index": 864, "image_id": 2370246, "entity": "cat", "caption": "the cat is lying on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the {} is lying on the car"}, {"index": 865, "image_id": 2370187, "entity": "cat", "caption": "cat has orange ears", "question": ["is there cat ?", "are there orange ears ?"], "prompt": "{} has orange ears"}, {"index": 866, "image_id": 2370187, "entity": "cat", "caption": "cat has orange tail", "question": ["is there cat ?", "is there orange tail ?"], "prompt": "{} has orange tail"}, {"index": 867, "image_id": 2370187, "entity": "cat", "caption": "Right ear of cat is also orange ", "question": ["is there ear ?", "is there cat ?"], "prompt": "Right ear of {} is also orange "}, {"index": 868, "image_id": 2369867, "entity": "cat", "caption": "The cat has gray fur", "question": ["is there the cat ?", "is there gray fur ?"], "prompt": "The {} has gray fur"}, {"index": 869, "image_id": 2369759, "entity": "cat", "caption": "the cats paw is up against the mirror", "question": ["are there the cats paw ?", "is there the mirror ?"], "prompt": "the {}s paw is up against the mirror"}, {"index": 870, "image_id": 2369759, "entity": "cat", "caption": "a toy cat is on top of a container", "question": ["is there a toy cat ?", "is there top ?", "is there a container ?"], "prompt": "a toy {} is on top of a container"}, {"index": 871, "image_id": 2369466, "entity": "cat", "caption": "orange striped cat", "question": ["is there orange striped cat ?"], "prompt": "orange striped {}"}, {"index": 872, "image_id": 2369466, "entity": "cat", "caption": "orange and white cat laying down", "question": ["is there orange and white cat ?"], "prompt": "orange and white {} laying down"}, {"index": 873, "image_id": 2369280, "entity": "cat", "caption": "The cat has his head down", "question": ["is there the cat ?", "is there his head ?"], "prompt": "The {} has his head down"}, {"index": 874, "image_id": 2369145, "entity": "cat", "caption": "The cat is next to a person wearing Puma shoes.", "question": ["is there the cat ?", "is there a person ?", "are there puma shoes ?"], "prompt": "The {} is next to a person wearing Puma shoes."}, {"index": 875, "image_id": 2369145, "entity": "cat", "caption": "The cat is next to the person wearing jeans.", "question": ["is there the cat ?", "is there the person ?", "are there jeans ?"], "prompt": "The {} is next to the person wearing jeans."}, {"index": 876, "image_id": 2369098, "entity": "cat", "caption": "The cat is playing with the shoe on the floor ", "question": ["is there the cat ?", "is there the shoe ?", "is there the floor ?"], "prompt": "The {} is playing with the shoe on the floor "}, {"index": 877, "image_id": 2368746, "entity": "cat", "caption": "The cat is black.", "question": ["is there the cat ?"], "prompt": "The {} is black."}, {"index": 878, "image_id": 2368746, "entity": "cat", "caption": "Black cat sleeping", "question": ["is there black cat ?"], "prompt": "Black {} sleeping"}, {"index": 879, "image_id": 2368302, "entity": "cat", "caption": "cat has gold eyes", "question": ["is there cat ?", "are there gold eyes ?"], "prompt": "{} has gold eyes"}, {"index": 880, "image_id": 2368302, "entity": "cat", "caption": "cat has white neck", "question": ["is there cat ?", "is there white neck ?"], "prompt": "{} has white neck"}, {"index": 881, "image_id": 2368302, "entity": "cat", "caption": "The cat is laying beside a stuffed animal", "question": ["is there the cat ?", "is there a stuffed animal ?"], "prompt": "The {} is laying beside a stuffed animal"}, {"index": 882, "image_id": 2368302, "entity": "cat", "caption": "The cats eyes look yellow and green", "question": ["are there the cats ?", "are there eyes ?"], "prompt": "The {}s eyes look yellow and green"}, {"index": 883, "image_id": 2368302, "entity": "cat", "caption": "The cats ears are black", "question": ["are there the cats ears ?"], "prompt": "The {}s ears are black"}, {"index": 884, "image_id": 2368302, "entity": "cat", "caption": "The cats nose is pink with white fur", "question": ["are there the cats nose ?", "is there white fur ?"], "prompt": "The {}s nose is pink with white fur"}, {"index": 885, "image_id": 2368302, "entity": "cat", "caption": "cat has green pupils", "question": ["is there cat ?", "are there green pupils ?"], "prompt": "{} has green pupils"}, {"index": 886, "image_id": 2368302, "entity": "cat", "caption": "eyes of cat are green and yellow", "question": ["are there eyes ?", "is there cat ?"], "prompt": "eyes of {} are green and yellow"}, {"index": 887, "image_id": 2368164, "entity": "cat", "caption": "the cat is sniffing a shoe", "question": ["is there the cat ?", "is there a shoe ?"], "prompt": "the {} is sniffing a shoe"}, {"index": 888, "image_id": 2368164, "entity": "cat", "caption": "the cat is playing with the sneaker", "question": ["is there the cat ?", "is there the sneaker ?"], "prompt": "the {} is playing with the sneaker"}, {"index": 889, "image_id": 2367693, "entity": "cat", "caption": "cat's head is upside down", "question": ["is there cat's head ?"], "prompt": "{}'s head is upside down"}, {"index": 890, "image_id": 2367693, "entity": "cat", "caption": "the cats nose", "question": ["are there the cats ?"], "prompt": "the {}s nose"}, {"index": 891, "image_id": 2367693, "entity": "cat", "caption": "the cats fangs on the banana", "question": ["are there the cats ?", "is there the banana ?"], "prompt": "the {}s fangs on the banana"}, {"index": 892, "image_id": 2367693, "entity": "cat", "caption": "the cats right arm over the banana", "question": ["are there the cats ?", "is there right arm ?", "is there the banana ?"], "prompt": "the {}s right arm over the banana"}, {"index": 893, "image_id": 2367693, "entity": "cat", "caption": "the cats head tilted upside down", "question": ["are there the cats ?"], "prompt": "the {}s head tilted upside down"}, {"index": 894, "image_id": 2367588, "entity": "cat", "caption": "cat is laying on the bench", "question": ["is there cat ?", "is there the bench ?"], "prompt": "{} is laying on the bench"}, {"index": 895, "image_id": 2367588, "entity": "cat", "caption": "cat is resting on the bench", "question": ["is there cat ?", "is there the bench ?"], "prompt": "{} is resting on the bench"}, {"index": 896, "image_id": 2367588, "entity": "cat", "caption": "A cat is sitting on a bench", "question": ["is there a cat ?", "is there a bench ?"], "prompt": "A {} is sitting on a bench"}, {"index": 897, "image_id": 2367588, "entity": "cat", "caption": "The cat is sitting outside", "question": ["is there the cat ?"], "prompt": "The {} is sitting outside"}, {"index": 898, "image_id": 2367295, "entity": "cat", "caption": "The cat is drinking some milk", "question": ["is there the cat ?", "is there some milk ?"], "prompt": "The {} is drinking some milk"}, {"index": 899, "image_id": 2367295, "entity": "cat", "caption": "The cat is close to a candle", "question": ["is there the cat ?", "is there a candle ?"], "prompt": "The {} is close to a candle"}, {"index": 900, "image_id": 2367085, "entity": "cat", "caption": "this is the cat's eyes", "question": ["are there the cat's eyes ?"], "prompt": "this is the {}'s eyes"}, {"index": 901, "image_id": 2367085, "entity": "cat", "caption": "the cat's nose is black", "question": ["is there the cat's nose ?"], "prompt": "the {}'s nose is black"}, {"index": 902, "image_id": 2367085, "entity": "cat", "caption": "the cat's ears are pointy", "question": ["are there the cat's ears ?"], "prompt": "the {}'s ears are pointy"}, {"index": 903, "image_id": 2367085, "entity": "cat", "caption": "the cat's hair is fuzzy", "question": ["is there the cat's hair ?"], "prompt": "the {}'s hair is fuzzy"}, {"index": 904, "image_id": 2367085, "entity": "cat", "caption": "this is the cat's mouth", "question": ["is there the cat's mouth ?"], "prompt": "this is the {}'s mouth"}, {"index": 905, "image_id": 2366580, "entity": "cat", "caption": "a person is touching the cat", "question": ["is there a person ?", "is there the cat ?"], "prompt": "a person is touching the {}"}, {"index": 906, "image_id": 2366580, "entity": "cat", "caption": "a person's hand touching a cat", "question": ["is there a person's hand ?", "is there a cat ?"], "prompt": "a person's hand touching a {}"}, {"index": 907, "image_id": 2366580, "entity": "cat", "caption": "The cat has orange fur", "question": ["is there the cat ?"], "prompt": "The {} has orange fur"}, {"index": 908, "image_id": 2366429, "entity": "cat", "caption": "A cat hides between two curtains", "question": ["is there a cat ?", "are there two curtains ?"], "prompt": "A {} hides between two curtains"}, {"index": 909, "image_id": 2366429, "entity": "cat", "caption": "The iris of cat's eye is orange", "question": ["is there the iris ?", "is there cat's eye ?"], "prompt": "The iris of {}'s eye is orange"}, {"index": 910, "image_id": 2366139, "entity": "cat", "caption": "light reflection is on the cat ", "question": ["is there light reflection ?", "is there the cat ?"], "prompt": "light reflection is on the {} "}, {"index": 911, "image_id": 2366139, "entity": "cat", "caption": "a cat is sleeping on a chair", "question": ["is there a cat ?", "is there a chair ?"], "prompt": "a {} is sleeping on a chair"}, {"index": 912, "image_id": 2366139, "entity": "cat", "caption": "the cat has his eyes closed", "question": ["is there the cat ?", "are there his eyes ?"], "prompt": "the {} has his eyes closed"}, {"index": 913, "image_id": 2366139, "entity": "cat", "caption": "the cat is on a cushion", "question": ["is there the cat ?", "is there a cushion ?"], "prompt": "the {} is on a cushion"}, {"index": 914, "image_id": 2366139, "entity": "cat", "caption": "the cushion is below the cat", "question": ["is there the cushion ?", "is there the cat ?"], "prompt": "the cushion is below the {}"}, {"index": 915, "image_id": 2366139, "entity": "cat", "caption": "the cat has brown and black patches", "question": ["is there the cat ?", "are there brown and black patches ?"], "prompt": "the {} has brown and black patches"}, {"index": 916, "image_id": 2366139, "entity": "cat", "caption": "the cat is on a chair", "question": ["is there the cat ?", "is there a chair ?"], "prompt": "the {} is on a chair"}, {"index": 917, "image_id": 2366139, "entity": "cat", "caption": "the cat's tail is hanging from the side", "question": ["is there the cat's tail ?", "is there the side ?"], "prompt": "the {}'s tail is hanging from the side"}, {"index": 918, "image_id": 2365930, "entity": "cat", "caption": "A cat is next to a computer", "question": ["is there a cat ?", "is there a computer ?"], "prompt": "A {} is next to a computer"}, {"index": 919, "image_id": 2365930, "entity": "cat", "caption": "A cat is on the table", "question": ["is there a cat ?", "is there the table ?"], "prompt": "A {} is on the table"}, {"index": 920, "image_id": 2365930, "entity": "cat", "caption": "The cat is drinking from the cup", "question": ["is there the cat ?", "is there the cup ?"], "prompt": "The {} is drinking from the cup"}, {"index": 921, "image_id": 2365930, "entity": "cat", "caption": "The cat is enjoying the day", "question": ["is there the cat ?", "is there the day ?"], "prompt": "The {} is enjoying the day"}, {"index": 922, "image_id": 2365930, "entity": "cat", "caption": "The cat likes to drink coffee", "question": ["is there the cat ?", "is there coffee ?"], "prompt": "The {} likes to drink coffee"}, {"index": 923, "image_id": 2365926, "entity": "cat", "caption": "the pupils of the cat is black", "question": ["are there the pupils ?", "is there the cat ?"], "prompt": "the pupils of the {} is black"}, {"index": 924, "image_id": 2365700, "entity": "cat", "caption": "The cat's face is black and white.", "question": ["is there the cat's face ?"], "prompt": "The {}'s face is black and white."}, {"index": 925, "image_id": 2365700, "entity": "cat", "caption": "The cat's eye's are green.", "question": ["is there the cat's eye ?"], "prompt": "The {}'s eye's are green."}, {"index": 926, "image_id": 2365700, "entity": "cat", "caption": "The cat's nose is black and white.", "question": ["is there the cat's nose ?"], "prompt": "The {}'s nose is black and white."}, {"index": 927, "image_id": 2365550, "entity": "cat", "caption": "mouth of the cat is closed", "question": ["is there mouth ?", "is there the cat ?"], "prompt": "mouth of the {} is closed"}, {"index": 928, "image_id": 2365550, "entity": "cat", "caption": "eyes of cat are green", "question": ["are there eyes ?", "is there cat ?"], "prompt": "eyes of {} are green"}, {"index": 929, "image_id": 2365550, "entity": "cat", "caption": "eyes of cat are open", "question": ["are there eyes ?", "is there cat ?"], "prompt": "eyes of {} are open"}, {"index": 930, "image_id": 2365550, "entity": "cat", "caption": "nose of cat is dark gray", "question": ["is there nose ?", "is there cat ?"], "prompt": "nose of {} is dark gray"}, {"index": 931, "image_id": 2365276, "entity": "cat", "caption": "The cat is on the floor", "question": ["is there the cat ?", "is there the floor ?"], "prompt": "The {} is on the floor"}, {"index": 932, "image_id": 2365276, "entity": "cat", "caption": "the cats mouth is open", "question": ["are there the cats mouth ?"], "prompt": "the {}s mouth is open"}, {"index": 933, "image_id": 2365276, "entity": "cat", "caption": "the cat has backpaws", "question": ["is there the cat ?", "are there backpaws ?"], "prompt": "the {} has backpaws"}, {"index": 934, "image_id": 2365107, "entity": "cat", "caption": "The cat put his paw in the cup.", "question": ["is there the cat ?", "is there his paw ?", "is there the cup ?"], "prompt": "The {} put his paw in the cup."}, {"index": 935, "image_id": 2365107, "entity": "cat", "caption": "The table has a cat above.", "question": ["is there the table ?", "is there a cat ?"], "prompt": "The table has a {} above."}, {"index": 936, "image_id": 2365107, "entity": "cat", "caption": "The sofa is behind the cat.", "question": ["is there the sofa ?", "is there the cat ?"], "prompt": "The sofa is behind the {}."}, {"index": 937, "image_id": 2364975, "entity": "cat", "caption": "End of cat's nose is black.", "question": ["is there end ?", "is there cat's nose ?"], "prompt": "End of {}'s nose is black."}, {"index": 938, "image_id": 2364975, "entity": "cat", "caption": "grey striped ear on cat", "question": ["is there grey striped ear ?", "is there cat ?"], "prompt": "grey striped ear on {}"}, {"index": 939, "image_id": 2364975, "entity": "cat", "caption": "whiskers on a grey striped cat", "question": ["are there whiskers ?", "is there a grey striped cat ?"], "prompt": "whiskers on a grey striped {}"}, {"index": 940, "image_id": 2364885, "entity": "cat", "caption": "cat has stripes on his paws", "question": ["is there cat ?", "are there stripes ?", "are there his paws ?"], "prompt": "{} has stripes on his paws"}, {"index": 941, "image_id": 2364074, "entity": "cat", "caption": "fuzzy striped cat on bed", "question": ["is there fuzzy striped cat ?", "is there bed ?"], "prompt": "fuzzy striped {} on bed"}, {"index": 942, "image_id": 2363821, "entity": "cat", "caption": "the cat has a big white furry ruff", "question": ["is there the cat ?", "is there a big white furry ruff ?"], "prompt": "the {} has a big white furry ruff"}, {"index": 943, "image_id": 2363774, "entity": "cat", "caption": "cat tail curled in front of the cat ", "question": ["is there cat tail ?", "is there front ?", "is there the cat ?"], "prompt": "{} tail curled in front of the {} "}, {"index": 944, "image_id": 2363774, "entity": "cat", "caption": "Left ear on the cat", "question": ["is there ear ?", "is there the cat ?"], "prompt": "Left ear on the {}"}, {"index": 945, "image_id": 2363410, "entity": "cat", "caption": "cat is sleeping in the bag", "question": ["is there cat ?", "is there the bag ?"], "prompt": "{} is sleeping in the bag"}, {"index": 946, "image_id": 2363410, "entity": "cat", "caption": "a cat is sleeping", "question": ["is there a cat ?"], "prompt": "a {} is sleeping"}, {"index": 947, "image_id": 2362958, "entity": "cat", "caption": "cat has pointy ears", "question": ["is there cat ?", "are there pointy ears ?"], "prompt": "{} has pointy ears"}, {"index": 948, "image_id": 2362958, "entity": "cat", "caption": "cat is on the towel ", "question": ["is there cat ?", "is there the towel ?"], "prompt": "{} is on the towel "}, {"index": 949, "image_id": 2362549, "entity": "cat", "caption": "Teddy bear beside the cat", "question": ["is there the cat ?"], "prompt": "Teddy bear beside the {}"}, {"index": 950, "image_id": 2362385, "entity": "cat", "caption": "the cats are wearing hats", "question": ["are there the cats ?", "are there hats ?"], "prompt": "the {}s are wearing hats"}, {"index": 951, "image_id": 2362385, "entity": "cat", "caption": "the cats hace stripes", "question": ["are there the cats ?"], "prompt": "the {}s hace stripes"}, {"index": 952, "image_id": 2362306, "entity": "cat", "caption": "cat has dark face", "question": ["is there cat ?", "is there dark face ?"], "prompt": "{} has dark face"}, {"index": 953, "image_id": 2362306, "entity": "cat", "caption": "back legs of cat are white", "question": ["are there legs ?", "is there cat ?"], "prompt": "back legs of {} are white"}, {"index": 954, "image_id": 2362306, "entity": "cat", "caption": "tail of cat is black", "question": ["is there tail ?", "is there cat ?"], "prompt": "tail of {} is black"}, {"index": 955, "image_id": 2362306, "entity": "cat", "caption": "cat is sleeping next to a window", "question": ["is there cat ?", "is there a window ?"], "prompt": "{} is sleeping next to a window"}, {"index": 956, "image_id": 2362274, "entity": "cat", "caption": "the cat is on bed", "question": ["is there the cat ?", "is there bed ?"], "prompt": "the {} is on bed"}, {"index": 957, "image_id": 2362213, "entity": "cat", "caption": "the cat has a long ear", "question": ["is there the cat ?", "is there a long ear ?"], "prompt": "the {} has a long ear"}, {"index": 958, "image_id": 2362117, "entity": "cat", "caption": "orange cat's half opened eyes", "question": ["are there orange cat's half opened eyes ?"], "prompt": "orange {}'s half opened eyes"}, {"index": 959, "image_id": 2362117, "entity": "cat", "caption": "the cat has pink pads on his feet", "question": ["is there the cat ?", "are there pink pads ?", "are there his feet ?"], "prompt": "the {} has pink pads on his feet"}, {"index": 960, "image_id": 2362113, "entity": "cat", "caption": "the cat has a collar on", "question": ["is there the cat ?", "is there a collar ?"], "prompt": "the {} has a collar on"}, {"index": 961, "image_id": 2362113, "entity": "cat", "caption": "the cat appears to have rather long hair", "question": ["is there the cat ?", "is there rather long hair ?"], "prompt": "the {} appears to have rather long hair"}, {"index": 962, "image_id": 2361706, "entity": "cat", "caption": "the cat is wearing a neck tie", "question": ["is there the cat ?", "is there a neck tie ?"], "prompt": "the {} is wearing a neck tie"}, {"index": 963, "image_id": 2361706, "entity": "cat", "caption": "the cat has white stripes on its face", "question": ["is there the cat ?", "are there white stripes ?", "is there its face ?"], "prompt": "the {} has white stripes on its face"}, {"index": 964, "image_id": 2361706, "entity": "cat", "caption": "Person's hand holding the cat", "question": ["is there person's hand ?", "is there the cat ?"], "prompt": "Person's hand holding the {}"}, {"index": 965, "image_id": 2361706, "entity": "cat", "caption": "Person's Hand holding the cat for the picture", "question": ["is there person's hand ?", "is there the cat ?", "is there the picture ?"], "prompt": "Person's Hand holding the {} for the picture"}, {"index": 966, "image_id": 2361396, "entity": "cat", "caption": "cat face with intently looking eyes", "question": ["is there cat ?", "are there intently looking eyes ?"], "prompt": "{} face with intently looking eyes"}, {"index": 967, "image_id": 2361211, "entity": "cat", "caption": "The cat looks in the mirror", "question": ["is there the cat ?", "is there the mirror ?"], "prompt": "The {} looks in the mirror"}, {"index": 968, "image_id": 2361211, "entity": "cat", "caption": "The cat has black eyes", "question": ["is there the cat ?", "are there black eyes ?"], "prompt": "The {} has black eyes"}, {"index": 969, "image_id": 2361211, "entity": "cat", "caption": "the cat looks into mirror", "question": ["is there the cat ?", "is there mirror ?"], "prompt": "the {} looks into mirror"}, {"index": 970, "image_id": 2361211, "entity": "cat", "caption": "the cat sees reflection", "question": ["is there the cat ?", "is there reflection ?"], "prompt": "the {} sees reflection"}, {"index": 971, "image_id": 2361135, "entity": "cat", "caption": "the cat has stripes on its face", "question": ["is there the cat ?", "are there stripes ?", "is there its face ?"], "prompt": "the {} has stripes on its face"}, {"index": 972, "image_id": 2361135, "entity": "cat", "caption": "the item behind the cat appears to be a bag", "question": ["is there the item ?", "is there the cat ?", "is there a bag ?"], "prompt": "the item behind the {} appears to be a bag"}, {"index": 973, "image_id": 2360934, "entity": "cat", "caption": "cat's tail is dark gray", "question": ["is there cat's tail ?"], "prompt": "{}'s tail is dark gray"}, {"index": 974, "image_id": 2360922, "entity": "cat", "caption": "The cat is sitting on the table.", "question": ["is there the cat ?", "is there the table ?"], "prompt": "The {} is sitting on the table."}, {"index": 975, "image_id": 2360922, "entity": "cat", "caption": "The cat is sitting on the desk ", "question": ["is there the cat ?", "is there the desk ?"], "prompt": "The {} is sitting on the desk "}, {"index": 976, "image_id": 2360922, "entity": "cat", "caption": "brown desk cat is on top of", "question": ["is there brown desk cat ?", "is there top ?"], "prompt": "brown desk {} is on top of"}, {"index": 977, "image_id": 2360629, "entity": "cat", "caption": "two black cats cuddling", "question": ["are there two black cats ?"], "prompt": "two black {}s cuddling"}, {"index": 978, "image_id": 2360629, "entity": "cat", "caption": "blanket two cats are laying on", "question": ["are there two cats ?"], "prompt": "blanket two {}s are laying on"}, {"index": 979, "image_id": 2360629, "entity": "cat", "caption": "cat's eye is blue", "question": ["is there cat's eye ?"], "prompt": "{}'s eye is blue"}, {"index": 980, "image_id": 2360629, "entity": "cat", "caption": "cat's tail curled around other cat", "question": ["is there cat's tail ?", "is there other cat ?"], "prompt": "{}'s tail curled around other {}"}, {"index": 981, "image_id": 2360629, "entity": "cat", "caption": "the surface cats are laying on is brown", "question": ["are there the surface cats ?"], "prompt": "the surface {}s are laying on is brown"}, {"index": 982, "image_id": 2360629, "entity": "cat", "caption": "A cats left ear", "question": ["are there a cats ?", "is there ear ?"], "prompt": "A {}s left ear"}, {"index": 983, "image_id": 2360629, "entity": "cat", "caption": "A cats cute face", "question": ["are there a cats cute face ?"], "prompt": "A {}s cute face"}, {"index": 984, "image_id": 2360629, "entity": "cat", "caption": "A cats black back", "question": ["are there a cats ?"], "prompt": "A {}s black back"}, {"index": 985, "image_id": 2360603, "entity": "cat", "caption": "cat is asleep on top of TV", "question": ["is there cat ?", "is there top ?", "is there tv ?"], "prompt": "{} is asleep on top of TV"}, {"index": 986, "image_id": 2360603, "entity": "cat", "caption": "cat has a long tail", "question": ["is there cat ?", "is there a long tail ?"], "prompt": "{} has a long tail"}, {"index": 987, "image_id": 2360552, "entity": "cat", "caption": "cat is on a laptop", "question": ["is there cat ?", "is there a laptop ?"], "prompt": "{} is on a laptop"}, {"index": 988, "image_id": 2360513, "entity": "cat", "caption": "Several whiskers coming from the cat.", "question": ["are there several whiskers ?", "is there the cat ?"], "prompt": "Several whiskers coming from the {}."}, {"index": 989, "image_id": 2360513, "entity": "cat", "caption": "cat has bird in mouth", "question": ["is there cat ?", "is there bird ?", "is there mouth ?"], "prompt": "{} has bird in mouth"}, {"index": 990, "image_id": 2360513, "entity": "cat", "caption": "cat has orange legs", "question": ["is there cat ?", "are there orange legs ?"], "prompt": "{} has orange legs"}, {"index": 991, "image_id": 2360513, "entity": "cat", "caption": "cat has orange neck", "question": ["is there cat ?", "is there orange neck ?"], "prompt": "{} has orange neck"}, {"index": 992, "image_id": 2360513, "entity": "cat", "caption": "bird the yellow cat is eating", "question": ["is there bird ?", "is there the yellow cat ?"], "prompt": "bird the yellow {} is eating"}, {"index": 993, "image_id": 2360378, "entity": "cat", "caption": "the cat's left ear standing", "question": ["is there the cat's left ear ?"], "prompt": "the {}'s left ear standing"}, {"index": 994, "image_id": 2360378, "entity": "cat", "caption": "nose of cat is brown", "question": ["is there nose ?", "is there cat ?"], "prompt": "nose of {} is brown"}, {"index": 995, "image_id": 2360309, "entity": "cat", "caption": "cat has white ears", "question": ["is there cat ?", "are there white ears ?"], "prompt": "{} has white ears"}, {"index": 996, "image_id": 2360309, "entity": "cat", "caption": "cat has white and gray fur", "question": ["is there cat ?", "is there white and gray fur ?"], "prompt": "{} has white and gray fur"}, {"index": 997, "image_id": 2360309, "entity": "cat", "caption": "cat is in the toilet", "question": ["is there cat ?", "is there the toilet ?"], "prompt": "{} is in the toilet"}, {"index": 998, "image_id": 2360243, "entity": "cat", "caption": "cat has brown nose", "question": ["is there cat ?", "is there brown nose ?"], "prompt": "{} has brown nose"}, {"index": 999, "image_id": 2360243, "entity": "cat", "caption": "cat has long whiskers", "question": ["is there cat ?", "are there long whiskers ?"], "prompt": "{} has long whiskers"}, {"index": 1000, "image_id": 2360243, "entity": "cat", "caption": "cat has striped tail", "question": ["is there cat ?", "is there striped tail ?"], "prompt": "{} has striped tail"}, {"index": 1001, "image_id": 2360243, "entity": "cat", "caption": "fence behind cat is wooden", "question": ["is there fence ?", "is there cat ?"], "prompt": "fence behind {} is wooden"}, {"index": 1002, "image_id": 2360243, "entity": "cat", "caption": "the cat has a right ear", "question": ["is there the cat ?", "is there a right ear ?"], "prompt": "the {} has a right ear"}, {"index": 1003, "image_id": 2360243, "entity": "cat", "caption": "the cat has a left ear", "question": ["is there the cat ?", "is there a left ear ?"], "prompt": "the {} has a left ear"}, {"index": 1004, "image_id": 2360243, "entity": "cat", "caption": "a cats left rear leg", "question": ["are there a cats ?", "is there rear leg ?"], "prompt": "a {}s left rear leg"}, {"index": 1005, "image_id": 2360103, "entity": "cat", "caption": "The cat is next to stuffed animals", "question": ["is there the cat ?", "are there stuffed animals ?"], "prompt": "The {} is next to stuffed animals"}, {"index": 1006, "image_id": 2359820, "entity": "cat", "caption": "cat in planter yawning", "question": ["is there cat ?", "is there planter yawning ?"], "prompt": "{} in planter yawning"}, {"index": 1007, "image_id": 2359820, "entity": "cat", "caption": "cat has white nose", "question": ["is there cat ?", "is there white nose ?"], "prompt": "{} has white nose"}, {"index": 1008, "image_id": 2359820, "entity": "cat", "caption": "cat has pink tongue", "question": ["is there cat ?", "is there pink tongue ?"], "prompt": "{} has pink tongue"}, {"index": 1009, "image_id": 2359803, "entity": "cat", "caption": "the mouth of the cat is on the bottle", "question": ["is there the mouth ?", "is there the cat ?", "is there the bottle ?"], "prompt": "the mouth of the {} is on the bottle"}, {"index": 1010, "image_id": 2359799, "entity": "cat", "caption": "white cat has pink nose", "question": ["is there white cat ?", "is there pink nose ?"], "prompt": "white {} has pink nose"}, {"index": 1011, "image_id": 2359799, "entity": "cat", "caption": "the cat has pointy ears", "question": ["is there the cat ?", "are there pointy ears ?"], "prompt": "the {} has pointy ears"}, {"index": 1012, "image_id": 2359799, "entity": "cat", "caption": "the cat's legs are white", "question": ["are there the cat's legs ?"], "prompt": "the {}'s legs are white"}, {"index": 1013, "image_id": 2359799, "entity": "cat", "caption": "the cat has fluffy white fur", "question": ["is there the cat ?", "is there fluffy white fur ?"], "prompt": "the {} has fluffy white fur"}, {"index": 1014, "image_id": 2359799, "entity": "cat", "caption": "the cat is lying on tile", "question": ["is there the cat ?", "is there tile ?"], "prompt": "the {} is lying on tile"}, {"index": 1015, "image_id": 2359799, "entity": "cat", "caption": "eyes of cat are big", "question": ["are there eyes ?", "is there cat ?"], "prompt": "eyes of {} are big"}, {"index": 1016, "image_id": 2359799, "entity": "cat", "caption": "eyes of cat are brown", "question": ["are there eyes ?", "is there cat ?"], "prompt": "eyes of {} are brown"}, {"index": 1017, "image_id": 2359799, "entity": "cat", "caption": "nose of cat is pink", "question": ["is there nose ?", "is there cat ?"], "prompt": "nose of {} is pink"}, {"index": 1018, "image_id": 2359726, "entity": "cat", "caption": "cat has black nose", "question": ["is there cat ?", "is there black nose ?"], "prompt": "{} has black nose"}, {"index": 1019, "image_id": 2359725, "entity": "cat", "caption": "the mouse is next to the cat", "question": ["is there the mouse ?", "is there the cat ?"], "prompt": "the mouse is next to the {}"}, {"index": 1020, "image_id": 2359725, "entity": "cat", "caption": "A lamp is behind a cat ear.", "question": ["is there a lamp ?", "is there a cat ear ?"], "prompt": "A lamp is behind a {} ear."}, {"index": 1021, "image_id": 2359617, "entity": "cat", "caption": "cat's head is brown and white", "question": ["is there cat's head ?"], "prompt": "{}'s head is brown and white"}, {"index": 1022, "image_id": 2359505, "entity": "cat", "caption": "The laptop the cat is laying on.", "question": ["is there the laptop ?", "is there the cat ?"], "prompt": "The laptop the {} is laying on."}, {"index": 1023, "image_id": 2359485, "entity": "cat", "caption": "A piece of a food a cat is eating. ", "question": ["is there a piece ?", "is there a food ?", "is there a cat ?"], "prompt": "A piece of a food a {} is eating. "}, {"index": 1024, "image_id": 2359485, "entity": "cat", "caption": "Small black lines where the cats eye is. ", "question": ["are there small black lines ?", "are there the cats ?"], "prompt": "Small black lines where the {}s eye is. "}, {"index": 1025, "image_id": 2359485, "entity": "cat", "caption": "the cat has grey, black, and white fur", "question": ["is there the cat ?", "is there fur ?"], "prompt": "the {} has grey, black, and white fur"}, {"index": 1026, "image_id": 2359455, "entity": "cat", "caption": "cat holds remote", "question": ["is there cat ?"], "prompt": "{} holds remote"}, {"index": 1027, "image_id": 2359455, "entity": "cat", "caption": "remote is on top of cat", "question": ["is there top ?", "is there cat ?"], "prompt": "remote is on top of {}"}, {"index": 1028, "image_id": 2359455, "entity": "cat", "caption": "pillow is under cat", "question": ["is there pillow ?", "is there cat ?"], "prompt": "pillow is under {}"}, {"index": 1029, "image_id": 2359455, "entity": "cat", "caption": "cat is on top of pillow", "question": ["is there cat ?", "is there top ?", "is there pillow ?"], "prompt": "{} is on top of pillow"}, {"index": 1030, "image_id": 2359455, "entity": "cat", "caption": "cat is holding the remote control", "question": ["is there cat ?", "is there the remote control ?"], "prompt": "{} is holding the remote control"}, {"index": 1031, "image_id": 2359222, "entity": "cat", "caption": "cat is sitting on the table", "question": ["is there cat ?", "is there the table ?"], "prompt": "{} is sitting on the table"}, {"index": 1032, "image_id": 2359165, "entity": "cat", "caption": "Grey cat is playing on chair.", "question": ["is there grey cat ?", "is there chair ?"], "prompt": "Grey {} is playing on chair."}, {"index": 1033, "image_id": 2359073, "entity": "cat", "caption": "The cat is on the dog.", "question": ["is there the cat ?", "is there the dog ?"], "prompt": "The {} is on the dog."}, {"index": 1034, "image_id": 2359073, "entity": "cat", "caption": "mouse is on top of cat", "question": ["is there top ?", "is there cat ?"], "prompt": "mouse is on top of {}"}, {"index": 1035, "image_id": 2359053, "entity": "cat", "caption": "whiskers of cat are white", "question": ["are there whiskers ?", "is there cat ?"], "prompt": "whiskers of {} are white"}, {"index": 1036, "image_id": 2359053, "entity": "cat", "caption": "Person petting cat's head.", "question": ["is there person ?", "is there cat's head ?"], "prompt": "Person petting {}'s head."}, {"index": 1037, "image_id": 2359053, "entity": "cat", "caption": "Hand is petting cats head.", "question": ["is there hand ?", "are there cats ?"], "prompt": "Hand is petting {}s head."}, {"index": 1038, "image_id": 2358909, "entity": "cat", "caption": "the cat is besides books", "question": ["is there the cat ?", "are there books ?"], "prompt": "the {} is besides books"}, {"index": 1039, "image_id": 2358909, "entity": "cat", "caption": "The cat is lying down.", "question": ["is there the cat ?"], "prompt": "The {} is lying down."}, {"index": 1040, "image_id": 2358832, "entity": "cat", "caption": "the cat is by the window", "question": ["is there the cat ?", "is there the window ?"], "prompt": "the {} is by the window"}, {"index": 1041, "image_id": 2358391, "entity": "cat", "caption": "eyes of cat are close", "question": ["are there eyes ?", "is there cat ?"], "prompt": "eyes of {} are close"}, {"index": 1042, "image_id": 2358391, "entity": "cat", "caption": "front legs of cat are white", "question": ["are there front legs ?", "is there cat ?"], "prompt": "front legs of {} are white"}, {"index": 1043, "image_id": 2358273, "entity": "cat", "caption": "Two cats cuddled together", "question": ["are there two cats ?"], "prompt": "Two {}s cuddled together"}, {"index": 1044, "image_id": 2358273, "entity": "cat", "caption": "Cat sleeping and holding another cat's head", "question": ["is there cat ?", "is there another cat's head ?"], "prompt": "Cat sleeping and holding another {}'s head"}, {"index": 1045, "image_id": 2358273, "entity": "cat", "caption": "cat's pupil is green", "question": ["is there cat's pupil ?"], "prompt": "{}'s pupil is green"}, {"index": 1046, "image_id": 2358144, "entity": "cat", "caption": "the cat is drinking from the faucet", "question": ["is there the cat ?", "is there the faucet ?"], "prompt": "the {} is drinking from the faucet"}, {"index": 1047, "image_id": 2358131, "entity": "cat", "caption": "cat with his ears perked up", "question": ["is there cat ?", "are there his ears ?"], "prompt": "{} with his ears perked up"}, {"index": 1048, "image_id": 2357990, "entity": "cat", "caption": "cat with it's head in the toilet bowl", "question": ["is there cat ?", "is there head ?", "is there the toilet bowl ?"], "prompt": "{} with it's head in the toilet bowl"}, {"index": 1049, "image_id": 2357990, "entity": "cat", "caption": "Orange and white cat climbing in toilet", "question": ["is there orange and white cat ?", "is there toilet ?"], "prompt": "Orange and white {} climbing in toilet"}, {"index": 1050, "image_id": 2357853, "entity": "cat", "caption": "cat's nose is black", "question": ["is there cat's nose ?"], "prompt": "{}'s nose is black"}, {"index": 1051, "image_id": 2357853, "entity": "cat", "caption": "mat is under cat", "question": ["is there cat ?"], "prompt": "mat is under {}"}, {"index": 1052, "image_id": 2357733, "entity": "cat", "caption": "White tipped paw of cat", "question": ["is there paw ?", "is there cat ?"], "prompt": "White tipped paw of {}"}, {"index": 1053, "image_id": 2357733, "entity": "cat", "caption": "blanket partially covering cat", "question": ["is there blanket ?", "is there cat ?"], "prompt": "blanket partially covering {}"}, {"index": 1054, "image_id": 2357733, "entity": "cat", "caption": "The cat is on pink sheets", "question": ["is there the cat ?", "are there pink sheets ?"], "prompt": "The {} is on pink sheets"}, {"index": 1055, "image_id": 2357733, "entity": "cat", "caption": "The cat has a white patched", "question": ["is there the cat ?"], "prompt": "The {} has a white patched"}, {"index": 1056, "image_id": 2357733, "entity": "cat", "caption": "The cat is in the blanket", "question": ["is there the cat ?", "is there the blanket ?"], "prompt": "The {} is in the blanket"}, {"index": 1057, "image_id": 2357565, "entity": "cat", "caption": "the cat's whiskers sticking out to the side", "question": ["are there the cat's whiskers ?", "is there the side ?"], "prompt": "the {}'s whiskers sticking out to the side"}, {"index": 1058, "image_id": 2357554, "entity": "cat", "caption": "Tan left paw of a cat. ", "question": ["is there paw ?", "is there a cat ?"], "prompt": "Tan left paw of a {}. "}, {"index": 1059, "image_id": 2357554, "entity": "cat", "caption": "A cats orange left ear. ", "question": ["are there a cats orange left ear ?"], "prompt": "A {}s orange left ear. "}, {"index": 1060, "image_id": 2357554, "entity": "cat", "caption": "A cats left eye. ", "question": ["are there a cats ?", "is there eye ?"], "prompt": "A {}s left eye. "}, {"index": 1061, "image_id": 2357484, "entity": "cat", "caption": "the cats tail is grey at the end", "question": ["are there the cats tail ?", "is there the end ?"], "prompt": "the {}s tail is grey at the end"}, {"index": 1062, "image_id": 2357484, "entity": "cat", "caption": "The cat is on top of the laptop", "question": ["is there the cat ?", "is there top ?", "is there the laptop ?"], "prompt": "The {} is on top of the laptop"}, {"index": 1063, "image_id": 2357312, "entity": "cat", "caption": "cat has his mouth open", "question": ["is there cat ?", "is there his mouth ?"], "prompt": "{} has his mouth open"}, {"index": 1064, "image_id": 2357312, "entity": "cat", "caption": "tail of cat is brown ", "question": ["is there tail ?", "is there cat ?"], "prompt": "tail of {} is brown "}, {"index": 1065, "image_id": 2357312, "entity": "cat", "caption": "tail of cat has black stripes", "question": ["is there tail ?", "is there cat ?", "are there black stripes ?"], "prompt": "tail of {} has black stripes"}, {"index": 1066, "image_id": 2357312, "entity": "cat", "caption": "head of cat is white and black", "question": ["is there head ?", "is there cat ?"], "prompt": "head of {} is white and black"}, {"index": 1067, "image_id": 2357312, "entity": "cat", "caption": "the cat's mouth is open", "question": ["is there the cat's mouth ?"], "prompt": "the {}'s mouth is open"}, {"index": 1068, "image_id": 2357312, "entity": "cat", "caption": "ears of cat are brown", "question": ["are there ears ?", "is there cat ?"], "prompt": "ears of {} are brown"}, {"index": 1069, "image_id": 2357312, "entity": "cat", "caption": "body of cat is white", "question": ["is there body ?", "is there cat ?"], "prompt": "body of {} is white"}, {"index": 1070, "image_id": 2357260, "entity": "cat", "caption": "cat is eating in the jar", "question": ["is there cat ?", "is there the jar ?"], "prompt": "{} is eating in the jar"}, {"index": 1071, "image_id": 2357260, "entity": "cat", "caption": "a right cat ear ", "question": ["is there a right cat ?"], "prompt": "a right {} ear "}, {"index": 1072, "image_id": 2356723, "entity": "cat", "caption": "the cat looks in the mirror", "question": ["is there the cat ?", "is there the mirror ?"], "prompt": "the {} looks in the mirror"}, {"index": 1073, "image_id": 2356723, "entity": "cat", "caption": "the mirror reflects the cat", "question": ["is there the mirror ?", "is there the cat ?"], "prompt": "the mirror reflects the {}"}, {"index": 1074, "image_id": 2356723, "entity": "cat", "caption": "A small cats ear", "question": ["are there a small cats ?"], "prompt": "A small {}s ear"}, {"index": 1075, "image_id": 2356276, "entity": "cat", "caption": "nose of cat is white", "question": ["is there nose ?", "is there cat ?"], "prompt": "nose of {} is white"}, {"index": 1076, "image_id": 2356241, "entity": "cat", "caption": "This is a cat", "question": ["is there a cat ?"], "prompt": "This is a {}"}, {"index": 1077, "image_id": 2356185, "entity": "cat", "caption": "A cat is laying on the floor", "question": ["is there a cat ?", "is there the floor ?"], "prompt": "A {} is laying on the floor"}, {"index": 1078, "image_id": 2356185, "entity": "cat", "caption": "A cat is playing with shoes", "question": ["is there a cat ?", "are there shoes ?"], "prompt": "A {} is playing with shoes"}, {"index": 1079, "image_id": 2356185, "entity": "cat", "caption": "The cat is trying to find mice", "question": ["is there the cat ?", "are there mice ?"], "prompt": "The {} is trying to find mice"}, {"index": 1080, "image_id": 2356007, "entity": "cat", "caption": "This cat has very dark black claws", "question": ["is there this cat ?", "are there very dark black claws ?"], "prompt": "This {} has very dark black claws"}, {"index": 1081, "image_id": 2356007, "entity": "cat", "caption": "The cat has white claws", "question": ["is there the cat ?", "are there white claws ?"], "prompt": "The {} has white claws"}, {"index": 1082, "image_id": 2356007, "entity": "cat", "caption": "The cat is on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "The {} is on top of a car"}, {"index": 1083, "image_id": 2355955, "entity": "cat", "caption": "cat has pink ear", "question": ["is there cat ?", "is there pink ear ?"], "prompt": "{} has pink ear"}, {"index": 1084, "image_id": 2355955, "entity": "cat", "caption": "the hand is petting the cat", "question": ["is there the hand ?", "is there the cat ?"], "prompt": "the hand is petting the {}"}, {"index": 1085, "image_id": 2355845, "entity": "cat", "caption": "the cat is laying on the floor", "question": ["is there the cat ?", "is there the floor ?"], "prompt": "the {} is laying on the floor"}, {"index": 1086, "image_id": 2355845, "entity": "cat", "caption": "the cat has wiskers growing out", "question": ["is there the cat ?", "are there wiskers ?"], "prompt": "the {} has wiskers growing out"}, {"index": 1087, "image_id": 2355845, "entity": "cat", "caption": "Black striped cat with white fur", "question": ["is there black striped cat ?"], "prompt": "Black striped {} with white fur"}, {"index": 1088, "image_id": 2355845, "entity": "cat", "caption": "Striped cat have two ears", "question": ["is there striped cat ?", "are there two ears ?"], "prompt": "Striped {} have two ears"}, {"index": 1089, "image_id": 2355662, "entity": "cat", "caption": "The cat is sleeping inside the suitcase", "question": ["is there the cat ?", "is there the suitcase ?"], "prompt": "The {} is sleeping inside the suitcase"}, {"index": 1090, "image_id": 2355662, "entity": "cat", "caption": "The cat has its eyes closed", "question": ["is there the cat ?", "are there its eyes ?"], "prompt": "The {} has its eyes closed"}, {"index": 1091, "image_id": 2355662, "entity": "cat", "caption": "The cat has black stripes.", "question": ["is there the cat ?", "are there black stripes ?"], "prompt": "The {} has black stripes."}, {"index": 1092, "image_id": 2355662, "entity": "cat", "caption": "The clothes are on top of the cat", "question": ["are there the clothes ?", "is there top ?", "is there the cat ?"], "prompt": "The clothes are on top of the {}"}, {"index": 1093, "image_id": 2355258, "entity": "cat", "caption": "A pink table a cat is lying on. ", "question": ["is there a pink table ?", "is there a cat ?"], "prompt": "A pink table a {} is lying on. "}, {"index": 1094, "image_id": 2355258, "entity": "cat", "caption": "cat with his eyes perked up", "question": ["is there cat ?", "are there his eyes ?"], "prompt": "{} with his eyes perked up"}, {"index": 1095, "image_id": 2355123, "entity": "cat", "caption": "the cat's paws are white", "question": ["are there the cat's paws ?"], "prompt": "the {}'s paws are white"}, {"index": 1096, "image_id": 2355123, "entity": "cat", "caption": "the cat is holding a pole", "question": ["is there the cat ?", "is there a pole ?"], "prompt": "the {} is holding a pole"}, {"index": 1097, "image_id": 2354849, "entity": "cat", "caption": "Black and white cat laying in sink.", "question": ["is there black and white cat ?", "is there sink ?"], "prompt": "Black and white {} laying in sink."}, {"index": 1098, "image_id": 2354644, "entity": "cat", "caption": "the cat is lying down", "question": ["is there the cat ?"], "prompt": "the {} is lying down"}, {"index": 1099, "image_id": 2354544, "entity": "cat", "caption": "There is a nose that is on this cat", "question": ["is there a nose ?", "is there this cat ?"], "prompt": "There is a nose that is on this {}"}, {"index": 1100, "image_id": 2354535, "entity": "cat", "caption": "the cat ears are two", "question": ["are there the cat ears ?"], "prompt": "the {} ears are two"}, {"index": 1101, "image_id": 2354535, "entity": "cat", "caption": "The cats nails are long.", "question": ["are there the cats ?", "are there nails ?"], "prompt": "The {}s nails are long."}, {"index": 1102, "image_id": 2354384, "entity": "cat", "caption": "the cat is looking at the camera", "question": ["is there the cat ?", "is there the camera ?"], "prompt": "the {} is looking at the camera"}, {"index": 1103, "image_id": 2353453, "entity": "cat", "caption": "brown and black cat curled on ground", "question": ["is there brown and black cat ?", "is there ground ?"], "prompt": "brown and black {} curled on ground"}, {"index": 1104, "image_id": 2353340, "entity": "cat", "caption": "Fishing hat on cats head", "question": ["is there fishing hat ?", "are there cats ?"], "prompt": "Fishing hat on {}s head"}, {"index": 1105, "image_id": 2353340, "entity": "cat", "caption": "cat has his hed under the hat", "question": ["is there cat ?", "is there his hed ?", "is there the hat ?"], "prompt": "{} has his hed under the hat"}, {"index": 1106, "image_id": 2353280, "entity": "cat", "caption": "cat has black whiskers", "question": ["is there cat ?", "are there black whiskers ?"], "prompt": "{} has black whiskers"}, {"index": 1107, "image_id": 2353280, "entity": "cat", "caption": "cat is laying on something black ", "question": ["is there cat ?", "is there something ?"], "prompt": "{} is laying on something black "}, {"index": 1108, "image_id": 2353280, "entity": "cat", "caption": "the cat is laying on side ", "question": ["is there the cat ?", "is there side ?"], "prompt": "the {} is laying on side "}, {"index": 1109, "image_id": 2352997, "entity": "cat", "caption": "cat has long whiskers on face", "question": ["is there cat ?", "are there long whiskers ?", "is there face ?"], "prompt": "{} has long whiskers on face"}, {"index": 1110, "image_id": 2352997, "entity": "cat", "caption": "The cat is swiping at trickling water.", "question": ["is there the cat ?", "is there trickling water ?"], "prompt": "The {} is swiping at trickling water."}, {"index": 1111, "image_id": 2352790, "entity": "cat", "caption": "the cat has a collar", "question": ["is there the cat ?", "is there a collar ?"], "prompt": "the {} has a collar"}, {"index": 1112, "image_id": 2352731, "entity": "cat", "caption": "A cats left eye.", "question": ["are there a cats ?", "is there eye ?"], "prompt": "A {}s left eye."}, {"index": 1113, "image_id": 2352702, "entity": "cat", "caption": "the cat has striped fur", "question": ["is there the cat ?", "is there striped fur ?"], "prompt": "the {} has striped fur"}, {"index": 1114, "image_id": 2352702, "entity": "cat", "caption": "the cat has a white nose", "question": ["is there the cat ?", "is there a white nose ?"], "prompt": "the {} has a white nose"}, {"index": 1115, "image_id": 2352506, "entity": "cat", "caption": "the cat's chin is on the paper", "question": ["is there the cat's chin ?", "is there the paper ?"], "prompt": "the {}'s chin is on the paper"}, {"index": 1116, "image_id": 2352506, "entity": "cat", "caption": "the cat has a left eye", "question": ["is there the cat ?", "is there a left eye ?"], "prompt": "the {} has a left eye"}, {"index": 1117, "image_id": 2352385, "entity": "cat", "caption": "the cat is on a shelf", "question": ["is there the cat ?", "is there a shelf ?"], "prompt": "the {} is on a shelf"}, {"index": 1118, "image_id": 2352385, "entity": "cat", "caption": "The cat wears a red collar.", "question": ["is there the cat ?", "is there a red collar ?"], "prompt": "The {} wears a red collar."}, {"index": 1119, "image_id": 2352385, "entity": "cat", "caption": "The cat is lying on a wood table", "question": ["is there the cat ?", "is there a wood table ?"], "prompt": "The {} is lying on a wood table"}, {"index": 1120, "image_id": 2352385, "entity": "cat", "caption": "The cat's whispers are long.", "question": ["are there the cat's whispers ?"], "prompt": "The {}'s whispers are long."}, {"index": 1121, "image_id": 2352385, "entity": "cat", "caption": "The cat's paws are soft", "question": ["are there the cat's paws ?"], "prompt": "The {}'s paws are soft"}, {"index": 1122, "image_id": 2352385, "entity": "cat", "caption": "A cat has slit-pupil eyes.", "question": ["is there a cat ?", "are there slit-pupil eyes ?"], "prompt": "A {} has slit-pupil eyes."}, {"index": 1123, "image_id": 2352333, "entity": "cat", "caption": "cat's paw hanging off the bench", "question": ["is there cat's paw ?", "is there the bench ?"], "prompt": "{}'s paw hanging off the bench"}, {"index": 1124, "image_id": 2352210, "entity": "cat", "caption": "The cat has pointy ears", "question": ["is there the cat ?", "are there pointy ears ?"], "prompt": "The {} has pointy ears"}, {"index": 1125, "image_id": 2352210, "entity": "cat", "caption": "The cat has white fur", "question": ["is there the cat ?", "is there white fur ?"], "prompt": "The {} has white fur"}, {"index": 1126, "image_id": 2351984, "entity": "cat", "caption": "Part of boys lips on cat", "question": ["is there part ?", "are there boys ?", "is there cat ?"], "prompt": "Part of boys lips on {}"}, {"index": 1127, "image_id": 2351659, "entity": "cat", "caption": "cat has white on front", "question": ["is there cat ?", "is there front ?"], "prompt": "{} has white on front"}, {"index": 1128, "image_id": 2351659, "entity": "cat", "caption": "cat has white under chin", "question": ["is there cat ?", "is there chin ?"], "prompt": "{} has white under chin"}, {"index": 1129, "image_id": 2351659, "entity": "cat", "caption": "cat is facing the door", "question": ["is there cat ?", "is there the door ?"], "prompt": "{} is facing the door"}, {"index": 1130, "image_id": 2351659, "entity": "cat", "caption": "cats body is against the window", "question": ["are there cats body ?", "is there the window ?"], "prompt": "{}s body is against the window"}, {"index": 1131, "image_id": 2351586, "entity": "cat", "caption": "the cat is biting a piece of food", "question": ["is there the cat ?", "is there a piece ?", "is there food ?"], "prompt": "the {} is biting a piece of food"}, {"index": 1132, "image_id": 2351586, "entity": "cat", "caption": "the cat has a light pink nose", "question": ["is there the cat ?", "is there a light pink nose ?"], "prompt": "the {} has a light pink nose"}, {"index": 1133, "image_id": 2351586, "entity": "cat", "caption": "a cheese crisp that the cat is biting", "question": ["is there a cheese ?", "is there the cat ?"], "prompt": "a cheese crisp that the {} is biting"}, {"index": 1134, "image_id": 2351586, "entity": "cat", "caption": "the cat is smelling a piece of people food", "question": ["is there the cat ?", "is there a piece ?", "are there people ?"], "prompt": "the {} is smelling a piece of people food"}, {"index": 1135, "image_id": 2351387, "entity": "cat", "caption": "cat has a black nose", "question": ["is there cat ?", "is there a black nose ?"], "prompt": "{} has a black nose"}, {"index": 1136, "image_id": 2351387, "entity": "cat", "caption": "cat has a pointy ear", "question": ["is there cat ?", "is there a pointy ear ?"], "prompt": "{} has a pointy ear"}, {"index": 1137, "image_id": 2351387, "entity": "cat", "caption": "front left leg of cat", "question": ["is there front left leg ?", "is there cat ?"], "prompt": "front left leg of {}"}, {"index": 1138, "image_id": 2351387, "entity": "cat", "caption": "cat has black fur on back", "question": ["is there cat ?", "is there black fur ?"], "prompt": "{} has black fur on back"}, {"index": 1139, "image_id": 2351387, "entity": "cat", "caption": "cat has black and white fur on ear", "question": ["is there cat ?", "is there black and white fur ?", "is there ear ?"], "prompt": "{} has black and white fur on ear"}, {"index": 1140, "image_id": 2351196, "entity": "cat", "caption": "the cat is looking at the mouse", "question": ["is there the cat ?", "is there the mouse ?"], "prompt": "the {} is looking at the mouse"}, {"index": 1141, "image_id": 2351196, "entity": "cat", "caption": "cat is laying on the chair", "question": ["is there cat ?", "is there the chair ?"], "prompt": "{} is laying on the chair"}, {"index": 1142, "image_id": 2351067, "entity": "cat", "caption": "the chair the cat is sitting on", "question": ["is there the chair ?", "is there the cat ?"], "prompt": "the chair the {} is sitting on"}, {"index": 1143, "image_id": 2350590, "entity": "cat", "caption": "a cat's ear laying down under a hat", "question": ["is there a cat's ear ?", "is there a hat ?"], "prompt": "a {}'s ear laying down under a hat"}, {"index": 1144, "image_id": 2350580, "entity": "cat", "caption": "cat is on bed", "question": ["is there cat ?", "is there bed ?"], "prompt": "{} is on bed"}, {"index": 1145, "image_id": 2350580, "entity": "cat", "caption": "cat has brown tail", "question": ["is there cat ?", "is there brown tail ?"], "prompt": "{} has brown tail"}, {"index": 1146, "image_id": 2350580, "entity": "cat", "caption": "cat has striped paws", "question": ["is there cat ?", "are there striped paws ?"], "prompt": "{} has striped paws"}, {"index": 1147, "image_id": 2350449, "entity": "cat", "caption": "cat is sitting next to card", "question": ["is there cat ?"], "prompt": "{} is sitting next to card"}, {"index": 1148, "image_id": 2350113, "entity": "cat", "caption": "ears of cat are big", "question": ["are there ears ?", "is there cat ?"], "prompt": "ears of {} are big"}, {"index": 1149, "image_id": 2349994, "entity": "cat", "caption": "the cat is drinking from a faucet", "question": ["is there the cat ?", "is there a faucet ?"], "prompt": "the {} is drinking from a faucet"}, {"index": 1150, "image_id": 2349994, "entity": "cat", "caption": "the tile behind the cat is black", "question": ["is there the tile ?", "is there the cat ?"], "prompt": "the tile behind the {} is black"}, {"index": 1151, "image_id": 2349994, "entity": "cat", "caption": "the cat is standing on the sink", "question": ["is there the cat ?", "is there the sink ?"], "prompt": "the {} is standing on the sink"}, {"index": 1152, "image_id": 2349994, "entity": "cat", "caption": "This cat is drinking the water here", "question": ["is there this cat ?", "is there the water ?"], "prompt": "This {} is drinking the water here"}, {"index": 1153, "image_id": 2349994, "entity": "cat", "caption": "The cat has white feet that are visible", "question": ["is there the cat ?", "are there white feet ?"], "prompt": "The {} has white feet that are visible"}, {"index": 1154, "image_id": 2349994, "entity": "cat", "caption": "A calico cat is drinking water.", "question": ["is there a calico cat ?", "is there water ?"], "prompt": "A calico {} is drinking water."}, {"index": 1155, "image_id": 2349648, "entity": "cat", "caption": "the cat is sleeping on the ground", "question": ["is there the cat ?", "is there the ground ?"], "prompt": "the {} is sleeping on the ground"}, {"index": 1156, "image_id": 2349648, "entity": "cat", "caption": "the cat is sleeping by the tire", "question": ["is there the cat ?", "is there the tire ?"], "prompt": "the {} is sleeping by the tire"}, {"index": 1157, "image_id": 2349648, "entity": "cat", "caption": "the cat is in an oil spot", "question": ["is there the cat ?", "is there an oil spot ?"], "prompt": "the {} is in an oil spot"}, {"index": 1158, "image_id": 2349648, "entity": "cat", "caption": "cat is lying on a road", "question": ["is there cat ?", "is there a road ?"], "prompt": "{} is lying on a road"}, {"index": 1159, "image_id": 2349648, "entity": "cat", "caption": "the cat is under a tire", "question": ["is there the cat ?", "is there a tire ?"], "prompt": "the {} is under a tire"}, {"index": 1160, "image_id": 2349648, "entity": "cat", "caption": "the cat is near the tire", "question": ["is there the cat ?", "is there the tire ?"], "prompt": "the {} is near the tire"}, {"index": 1161, "image_id": 2349648, "entity": "cat", "caption": "the cat is brown with black stripes", "question": ["is there the cat ?", "are there black stripes ?"], "prompt": "the {} is brown with black stripes"}, {"index": 1162, "image_id": 2349648, "entity": "cat", "caption": "the cat is lying on the concrete", "question": ["is there the cat ?", "is there the concrete ?"], "prompt": "the {} is lying on the concrete"}, {"index": 1163, "image_id": 2349445, "entity": "cat", "caption": "The cat is laying on a bench", "question": ["is there the cat ?", "is there a bench ?"], "prompt": "The {} is laying on a bench"}, {"index": 1164, "image_id": 2349445, "entity": "cat", "caption": "Cat's tail is underneath cat's body", "question": ["is there cat's tail ?", "is there cat's body ?"], "prompt": "Cat's tail is underneath {}'s body"}, {"index": 1165, "image_id": 2349347, "entity": "cat", "caption": "The cat has a collar on", "question": ["is there the cat ?", "is there a collar ?"], "prompt": "The {} has a collar on"}, {"index": 1166, "image_id": 2349149, "entity": "cat", "caption": "the cat is laying on the bed", "question": ["is there the cat ?", "is there the bed ?"], "prompt": "the {} is laying on the bed"}, {"index": 1167, "image_id": 2349149, "entity": "cat", "caption": "a cat's paw is black", "question": ["is there a cat's paw ?"], "prompt": "a {}'s paw is black"}, {"index": 1168, "image_id": 2348783, "entity": "cat", "caption": "Eye of cat is green", "question": ["is there eye ?", "is there cat ?"], "prompt": "Eye of {} is green"}, {"index": 1169, "image_id": 2348719, "entity": "cat", "caption": "A cat claims a laptop.", "question": ["is there a cat ?", "is there a laptop ?"], "prompt": "A {} claims a laptop."}, {"index": 1170, "image_id": 2348719, "entity": "cat", "caption": "A black cat is laying across the laptop.", "question": ["is there a black cat ?", "is there the laptop ?"], "prompt": "A black {} is laying across the laptop."}, {"index": 1171, "image_id": 2348719, "entity": "cat", "caption": "A cat is looking at the floor.", "question": ["is there a cat ?", "is there the floor ?"], "prompt": "A {} is looking at the floor."}, {"index": 1172, "image_id": 2348719, "entity": "cat", "caption": "A cat is looking at the carpet.", "question": ["is there a cat ?", "is there the carpet ?"], "prompt": "A {} is looking at the carpet."}, {"index": 1173, "image_id": 2348429, "entity": "cat", "caption": "cat has black stripe on tail", "question": ["is there cat ?", "is there black stripe ?", "is there tail ?"], "prompt": "{} has black stripe on tail"}, {"index": 1174, "image_id": 2348222, "entity": "cat", "caption": "cat has a white chin", "question": ["is there cat ?", "is there a white chin ?"], "prompt": "{} has a white chin"}, {"index": 1175, "image_id": 2348222, "entity": "cat", "caption": "cats ear has long hairs on top", "question": ["are there cats ?", "are there long hairs ?", "is there top ?"], "prompt": "{}s ear has long hairs on top"}, {"index": 1176, "image_id": 2348112, "entity": "cat", "caption": "cat's eyes are nearly closed", "question": ["are there cat's eyes ?"], "prompt": "{}'s eyes are nearly closed"}, {"index": 1177, "image_id": 2347346, "entity": "cat", "caption": "cat has black body", "question": ["is there cat ?", "is there black body ?"], "prompt": "{} has black body"}, {"index": 1178, "image_id": 2347287, "entity": "cat", "caption": "cat has black paws", "question": ["is there cat ?", "are there black paws ?"], "prompt": "{} has black paws"}, {"index": 1179, "image_id": 2347287, "entity": "cat", "caption": "cat has short fur", "question": ["is there cat ?", "is there short fur ?"], "prompt": "{} has short fur"}, {"index": 1180, "image_id": 2346829, "entity": "cat", "caption": "black and white cat with head turned to side", "question": ["is there black and white cat ?", "is there head ?"], "prompt": "black and white {} with head turned to side"}, {"index": 1181, "image_id": 2346534, "entity": "cat", "caption": "bricked floor where cat is", "question": ["is there bricked floor ?", "is there cat ?"], "prompt": "bricked floor where {} is"}, {"index": 1182, "image_id": 2346534, "entity": "cat", "caption": "eyes of cat are round", "question": ["are there eyes ?", "is there cat ?"], "prompt": "eyes of {} are round"}, {"index": 1183, "image_id": 2346534, "entity": "cat", "caption": "eyes of cat are color green", "question": ["are there eyes ?", "is there cat ?"], "prompt": "eyes of {} are color green"}, {"index": 1184, "image_id": 2346534, "entity": "cat", "caption": "nose of cat is color pink", "question": ["is there nose ?", "is there cat ?"], "prompt": "nose of {} is color pink"}, {"index": 1185, "image_id": 2346372, "entity": "cat", "caption": "cat eyes half opened", "question": ["are there cat eyes ?"], "prompt": "{} eyes half opened"}, {"index": 1186, "image_id": 2346372, "entity": "cat", "caption": "Black fur on cats face ", "question": ["is there black fur ?", "are there cats ?"], "prompt": "Black fur on {}s face "}, {"index": 1187, "image_id": 2346216, "entity": "cat", "caption": "Black cats right eye", "question": ["are there black cats ?"], "prompt": "Black {}s right eye"}, {"index": 1188, "image_id": 2346216, "entity": "cat", "caption": "Black cats left eye", "question": ["are there black cats ?", "is there eye ?"], "prompt": "Black {}s left eye"}, {"index": 1189, "image_id": 2346216, "entity": "cat", "caption": "The cats left ear", "question": ["are there the cats ?", "is there ear ?"], "prompt": "The {}s left ear"}, {"index": 1190, "image_id": 2345806, "entity": "cat", "caption": "White and black cat is in a bowl", "question": ["is there white and black cat ?", "is there a bowl ?"], "prompt": "White and black {} is in a bowl"}, {"index": 1191, "image_id": 2345806, "entity": "cat", "caption": "White and black cat is standing in a bowl", "question": ["is there white and black cat ?", "is there a bowl ?"], "prompt": "White and black {} is standing in a bowl"}, {"index": 1192, "image_id": 2345670, "entity": "cat", "caption": "The cat's ear is a dark black color", "question": ["is there the cat's ear ?", "is there a dark black color ?"], "prompt": "The {}'s ear is a dark black color"}, {"index": 1193, "image_id": 2345663, "entity": "cat", "caption": "Chair near cat is green.", "question": ["is there cat ?"], "prompt": "Chair near {} is green."}, {"index": 1194, "image_id": 2345663, "entity": "cat", "caption": "the cat has front paws", "question": ["is there the cat ?", "are there front paws ?"], "prompt": "the {} has front paws"}, {"index": 1195, "image_id": 2345663, "entity": "cat", "caption": "the cat has back legs", "question": ["is there the cat ?", "are there back legs ?"], "prompt": "the {} has back legs"}, {"index": 1196, "image_id": 2345637, "entity": "cat", "caption": "this is an ear of cat", "question": ["is there an ear ?", "is there cat ?"], "prompt": "this is an ear of {}"}, {"index": 1197, "image_id": 2345637, "entity": "cat", "caption": "a cat that is inside", "question": ["is there a cat ?"], "prompt": "a {} that is inside"}, {"index": 1198, "image_id": 2345637, "entity": "cat", "caption": "a cat and owner nuzzling ", "question": ["is there a cat ?", "is there owner ?"], "prompt": "a {} and owner nuzzling "}, {"index": 1199, "image_id": 2345635, "entity": "cat", "caption": "cat is looking at dog", "question": ["is there cat ?", "is there dog ?"], "prompt": "{} is looking at dog"}, {"index": 1200, "image_id": 2345375, "entity": "cat", "caption": "cat has many long white whiskers", "question": ["is there cat ?", "are there many long white whiskers ?"], "prompt": "{} has many long white whiskers"}, {"index": 1201, "image_id": 2345375, "entity": "cat", "caption": "the cats ear ", "question": ["are there the cats ?"], "prompt": "the {}s ear "}, {"index": 1202, "image_id": 2345375, "entity": "cat", "caption": "white, brown and black cat with head to side", "question": ["is there white, brown and black cat ?", "is there head ?", "is there side ?"], "prompt": "white, brown and black {} with head to side"}, {"index": 1203, "image_id": 2345178, "entity": "cat", "caption": "A cat that has green eyes", "question": ["is there a cat ?", "are there green eyes ?"], "prompt": "A {} that has green eyes"}, {"index": 1204, "image_id": 2345178, "entity": "cat", "caption": "Black and white cats tail", "question": ["are there black and white cats ?"], "prompt": "Black and white {}s tail"}, {"index": 1205, "image_id": 2345178, "entity": "cat", "caption": "a cat sits atop the back seat of a car", "question": ["is there a cat ?", "is there the back seat ?", "is there a car ?"], "prompt": "a {} sits atop the back seat of a car"}, {"index": 1206, "image_id": 2345178, "entity": "cat", "caption": "the cat has a blanket to sit on", "question": ["is there the cat ?", "is there a blanket ?"], "prompt": "the {} has a blanket to sit on"}, {"index": 1207, "image_id": 2345178, "entity": "cat", "caption": "the cat's blanket is a red and blue plaid", "question": ["is there the cat's blanket ?", "is there a red and blue plaid ?"], "prompt": "the {}'s blanket is a red and blue plaid"}, {"index": 1208, "image_id": 2345178, "entity": "cat", "caption": "the cat has pale green eyes", "question": ["is there the cat ?", "are there pale green eyes ?"], "prompt": "the {} has pale green eyes"}, {"index": 1209, "image_id": 2345178, "entity": "cat", "caption": "the cat has a white patch on its face", "question": ["is there the cat ?", "is there a white patch ?", "is there its face ?"], "prompt": "the {} has a white patch on its face"}, {"index": 1210, "image_id": 2345145, "entity": "cat", "caption": "The cat has a gray nose.", "question": ["is there the cat ?", "is there a gray nose ?"], "prompt": "The {} has a gray nose."}, {"index": 1211, "image_id": 2345145, "entity": "cat", "caption": "The cat has a white ear.", "question": ["is there the cat ?", "is there a white ear ?"], "prompt": "The {} has a white ear."}, {"index": 1212, "image_id": 2345145, "entity": "cat", "caption": "a cat lies next to a bicycle wheel", "question": ["is there a cat ?", "is there a bicycle wheel ?"], "prompt": "a {} lies next to a bicycle wheel"}, {"index": 1213, "image_id": 2345145, "entity": "cat", "caption": "the cat has a triangular gray patch above its nose", "question": ["is there the cat ?", "is there a triangular gray patch ?", "is there its nose ?"], "prompt": "the {} has a triangular gray patch above its nose"}, {"index": 1214, "image_id": 2345145, "entity": "cat", "caption": "the cat has gentle eyes", "question": ["is there the cat ?", "are there gentle eyes ?"], "prompt": "the {} has gentle eyes"}, {"index": 1215, "image_id": 2345145, "entity": "cat", "caption": "the cat has one white ear and one gray ear", "question": ["is there the cat ?", "is there one white ear ?", "is there one gray ear ?"], "prompt": "the {} has one white ear and one gray ear"}, {"index": 1216, "image_id": 2345057, "entity": "cat", "caption": "this is a cat legs", "question": ["are there a cat legs ?"], "prompt": "this is a {} legs"}, {"index": 1217, "image_id": 2345057, "entity": "cat", "caption": "Person feeding the cat", "question": ["is there person ?", "is there the cat ?"], "prompt": "Person feeding the {}"}, {"index": 1218, "image_id": 2344930, "entity": "cat", "caption": "eyes of cat are semi closed ", "question": ["are there eyes ?", "is there cat ?"], "prompt": "eyes of {} are semi closed "}, {"index": 1219, "image_id": 2344817, "entity": "cat", "caption": "she is with the cat on the bed", "question": ["is there the cat ?", "is there the bed ?"], "prompt": "she is with the {} on the bed"}, {"index": 1220, "image_id": 2344270, "entity": "cat", "caption": "cat is eating pizza", "question": ["is there cat ?", "is there pizza ?"], "prompt": "{} is eating pizza"}, {"index": 1221, "image_id": 2344230, "entity": "cat", "caption": "the cat is in the bathtub", "question": ["is there the cat ?", "is there the bathtub ?"], "prompt": "the {} is in the bathtub"}, {"index": 1222, "image_id": 2344230, "entity": "cat", "caption": "the cat is looking at his reflection", "question": ["is there the cat ?", "is there his reflection ?"], "prompt": "the {} is looking at his reflection"}, {"index": 1223, "image_id": 2344118, "entity": "cat", "caption": "the cat is on the laptop ", "question": ["is there the cat ?", "is there the laptop ?"], "prompt": "the {} is on the laptop "}, {"index": 1224, "image_id": 2344097, "entity": "cat", "caption": "the cat is looking in the mirror", "question": ["is there the cat ?", "is there the mirror ?"], "prompt": "the {} is looking in the mirror"}, {"index": 1225, "image_id": 2344097, "entity": "cat", "caption": "the mirror is reflecting the cat", "question": ["is there the mirror ?", "is there the cat ?"], "prompt": "the mirror is reflecting the {}"}, {"index": 1226, "image_id": 2344097, "entity": "cat", "caption": "the cat has one paw showing", "question": ["is there the cat ?", "is there one paw showing ?"], "prompt": "the {} has one paw showing"}, {"index": 1227, "image_id": 2343843, "entity": "cat", "caption": "the cat is on the sofa ", "question": ["is there the cat ?", "is there the sofa ?"], "prompt": "the {} is on the sofa "}, {"index": 1228, "image_id": 2343474, "entity": "cat", "caption": "cat printed on shoe tp", "question": ["is there cat ?", "is there shoe tp ?"], "prompt": "{} printed on shoe tp"}, {"index": 1229, "image_id": 2343208, "entity": "cat", "caption": "cat's tail hanging in air", "question": ["is there cat's tail ?", "is there air ?"], "prompt": "{}'s tail hanging in air"}, {"index": 1230, "image_id": 2343156, "entity": "cat", "caption": "the cat is looking at the screen ", "question": ["is there the cat ?", "is there the screen ?"], "prompt": "the {} is looking at the screen "}, {"index": 1231, "image_id": 2343075, "entity": "cat", "caption": "cat is laying on laptop", "question": ["is there cat ?", "is there laptop ?"], "prompt": "{} is laying on laptop"}, {"index": 1232, "image_id": 2343011, "entity": "cat", "caption": "cat painted on bowl", "question": ["is there cat ?", "is there bowl ?"], "prompt": "{} painted on bowl"}, {"index": 1233, "image_id": 2342859, "entity": "cat", "caption": "that is the eye a cat", "question": ["is there the eye ?", "is there a cat ?"], "prompt": "that is the eye a {}"}, {"index": 1234, "image_id": 2342859, "entity": "cat", "caption": "Cream colored cat on arm of sofa", "question": ["is there cream colored cat ?", "is there arm ?", "is there sofa ?"], "prompt": "Cream colored {} on arm of sofa"}, {"index": 1235, "image_id": 2342803, "entity": "cat", "caption": "cat has orange paws", "question": ["is there cat ?", "are there orange paws ?"], "prompt": "{} has orange paws"}, {"index": 1236, "image_id": 2342803, "entity": "cat", "caption": "Computer mouse laying on a cat.", "question": ["is there computer mouse ?", "is there a cat ?"], "prompt": "Computer mouse laying on a {}."}, {"index": 1237, "image_id": 2342803, "entity": "cat", "caption": "a computer mouse sitting on top of a sleeping cat ", "question": ["is there a computer mouse ?", "is there top ?", "is there a sleeping cat ?"], "prompt": "a computer mouse sitting on top of a sleeping {} "}, {"index": 1238, "image_id": 2342788, "entity": "cat", "caption": "cat has orange body", "question": ["is there cat ?", "is there orange body ?"], "prompt": "{} has orange body"}, {"index": 1239, "image_id": 2342788, "entity": "cat", "caption": "The cat is on a blanket", "question": ["is there the cat ?", "is there a blanket ?"], "prompt": "The {} is on a blanket"}, {"index": 1240, "image_id": 2342788, "entity": "cat", "caption": "The cat is next to a book", "question": ["is there the cat ?", "is there a book ?"], "prompt": "The {} is next to a book"}, {"index": 1241, "image_id": 2342788, "entity": "cat", "caption": "The cat and book are on a bed", "question": ["is there the cat ?", "is there book ?", "is there a bed ?"], "prompt": "The {} and book are on a bed"}, {"index": 1242, "image_id": 2342767, "entity": "cat", "caption": "the cat is on the tree", "question": ["is there the cat ?", "is there the tree ?"], "prompt": "the {} is on the tree"}, {"index": 1243, "image_id": 2342767, "entity": "cat", "caption": "the cat has a shadow", "question": ["is there the cat ?", "is there a shadow ?"], "prompt": "the {} has a shadow"}, {"index": 1244, "image_id": 2342767, "entity": "cat", "caption": "the cat scratches the tree", "question": ["is there the cat ?", "is there the tree ?"], "prompt": "the {} scratches the tree"}, {"index": 1245, "image_id": 2342767, "entity": "cat", "caption": "the cat is chasing the bird", "question": ["is there the cat ?", "is there the bird ?"], "prompt": "the {} is chasing the bird"}, {"index": 1246, "image_id": 2342767, "entity": "cat", "caption": "the cat claws the bird", "question": ["is there the cat ?", "is there the bird ?"], "prompt": "the {} claws the bird"}, {"index": 1247, "image_id": 2342767, "entity": "cat", "caption": "the cat hisses at the bird", "question": ["is there the cat ?", "is there the bird ?"], "prompt": "the {} hisses at the bird"}, {"index": 1248, "image_id": 2342767, "entity": "cat", "caption": "a door is behind the cat", "question": ["is there a door ?", "is there the cat ?"], "prompt": "a door is behind the {}"}, {"index": 1249, "image_id": 2342767, "entity": "cat", "caption": "the cat clawed the tree", "question": ["is there the cat ?", "is there the tree ?"], "prompt": "the {} clawed the tree"}, {"index": 1250, "image_id": 2342421, "entity": "cat", "caption": "a cats left eye ", "question": ["are there a cats ?", "is there eye ?"], "prompt": "a {}s left eye "}, {"index": 1251, "image_id": 2342421, "entity": "cat", "caption": "a cats left ear ", "question": ["are there a cats ?", "is there ear ?"], "prompt": "a {}s left ear "}, {"index": 1252, "image_id": 2342421, "entity": "cat", "caption": "The cat is sitting next to a bicycle tire.", "question": ["is there the cat ?", "is there a bicycle tire ?"], "prompt": "The {} is sitting next to a bicycle tire."}, {"index": 1253, "image_id": 2342421, "entity": "cat", "caption": "The cat has a paw.", "question": ["is there the cat ?", "is there a paw ?"], "prompt": "The {} has a paw."}, {"index": 1254, "image_id": 2342421, "entity": "cat", "caption": "The cat has a mouth.", "question": ["is there the cat ?", "is there a mouth ?"], "prompt": "The {} has a mouth."}, {"index": 1255, "image_id": 2342362, "entity": "cat", "caption": "A cat with its paws crossed.", "question": ["is there a cat ?", "are there its paws ?"], "prompt": "A {} with its paws crossed."}, {"index": 1256, "image_id": 2342361, "entity": "cat", "caption": "A chicken is on the back of a cat.", "question": ["is there a chicken ?", "is there the back ?", "is there a cat ?"], "prompt": "A chicken is on the back of a {}."}, {"index": 1257, "image_id": 2342361, "entity": "cat", "caption": "A cat is sitting on a brown folded surface.", "question": ["is there a cat ?", "is there a brown folded surface ?"], "prompt": "A {} is sitting on a brown folded surface."}, {"index": 1258, "image_id": 2342361, "entity": "cat", "caption": "The cat is carrying the duck", "question": ["is there the cat ?", "is there the duck ?"], "prompt": "The {} is carrying the duck"}, {"index": 1259, "image_id": 2342361, "entity": "cat", "caption": "duck is laying on top of the cat", "question": ["is there duck ?", "is there top ?", "is there the cat ?"], "prompt": "duck is laying on top of the {}"}, {"index": 1260, "image_id": 2342361, "entity": "cat", "caption": "cat has a white nose", "question": ["is there cat ?", "is there a white nose ?"], "prompt": "{} has a white nose"}, {"index": 1261, "image_id": 2341831, "entity": "cat", "caption": "a cat sitting on a rainbow rug", "question": ["is there a cat ?", "is there a rainbow rug ?"], "prompt": "a {} sitting on a rainbow rug"}, {"index": 1262, "image_id": 2341641, "entity": "cat", "caption": "cat is on blanket", "question": ["is there cat ?", "is there blanket ?"], "prompt": "{} is on blanket"}, {"index": 1263, "image_id": 2341366, "entity": "cat", "caption": "ears of cat are black", "question": ["are there ears ?", "is there cat ?"], "prompt": "ears of {} are black"}, {"index": 1264, "image_id": 2341366, "entity": "cat", "caption": "the nose of cat is black", "question": ["is there the nose ?", "is there cat ?"], "prompt": "the nose of {} is black"}, {"index": 1265, "image_id": 2341366, "entity": "cat", "caption": "cat ignores cat", "question": ["is there cat ?", "is there cat ?"], "prompt": "{} ignores {}"}, {"index": 1266, "image_id": 2341366, "entity": "cat", "caption": "indoor cat has green, likely heart-shape tag", "question": ["is there indoor cat ?", "is there green, likely heart-shape tag ?"], "prompt": "indoor {} has green, likely heart-shape tag"}, {"index": 1267, "image_id": 2341366, "entity": "cat", "caption": "outdoor cat has lavender, unknown shape tag", "question": ["is there outdoor cat ?", "is there lavender ?", "is there unknown shape tag ?"], "prompt": "outdoor {} has lavender, unknown shape tag"}, {"index": 1268, "image_id": 2341366, "entity": "cat", "caption": "outdoor cat has black nose, white cheek area", "question": ["is there outdoor cat ?", "is there black nose ?", "is there white cheek area ?"], "prompt": "outdoor {} has black nose, white cheek area"}, {"index": 1269, "image_id": 2341366, "entity": "cat", "caption": "indoor cat has white nose, black cheek area", "question": ["is there indoor cat ?", "is there white nose ?", "is there black cheek area ?"], "prompt": "indoor {} has white nose, black cheek area"}, {"index": 1270, "image_id": 2341366, "entity": "cat", "caption": "white sliding door separates well-acquainted cats for the time being", "question": ["is there white sliding door ?", "are there well-acquainted cats ?", "is there the time ?"], "prompt": "white sliding door separates well-acquainted {}s for the time being"}, {"index": 1271, "image_id": 2341366, "entity": "cat", "caption": "outdoor cat has a largely black body with a small red tinge here & there, & a clever face", "question": ["is there outdoor cat ?", "is there a largely black body ?", "is there a small red tinge ?", "is there a clever face ?"], "prompt": "outdoor {} has a largely black body with a small red tinge here & there, & a clever face"}, {"index": 1272, "image_id": 2341286, "entity": "cat", "caption": "A cats front left white paw.", "question": ["are there a cats ?"], "prompt": "A {}s front left white paw."}, {"index": 1273, "image_id": 2341251, "entity": "cat", "caption": "the cat lays on a blanket", "question": ["is there the cat ?", "is there a blanket ?"], "prompt": "the {} lays on a blanket"}, {"index": 1274, "image_id": 2341145, "entity": "cat", "caption": "Dark left eye of a cat.", "question": ["is there eye ?", "is there a cat ?"], "prompt": "Dark left eye of a {}."}, {"index": 1275, "image_id": 2340804, "entity": "cat", "caption": "tufts of long fur between the toes is consistent with a longhair cat", "question": ["are there tufts ?", "is there long fur ?", "are there the toes ?", "is there a longhair cat ?"], "prompt": "tufts of long fur between the toes is consistent with a longhair {}"}, {"index": 1276, "image_id": 2340468, "entity": "cat", "caption": "cat is laying on a rug", "question": ["is there cat ?", "is there a rug ?"], "prompt": "{} is laying on a rug"}, {"index": 1277, "image_id": 2340468, "entity": "cat", "caption": "cat has white whiskers ", "question": ["is there cat ?", "are there white whiskers ?"], "prompt": "{} has white whiskers "}, {"index": 1278, "image_id": 2340468, "entity": "cat", "caption": "cat has stripes on tail ", "question": ["is there cat ?", "are there stripes ?", "is there tail ?"], "prompt": "{} has stripes on tail "}, {"index": 1279, "image_id": 2339439, "entity": "cat", "caption": "the cats left paw", "question": ["are there the cats ?", "is there paw ?"], "prompt": "the {}s left paw"}, {"index": 1280, "image_id": 2339439, "entity": "cat", "caption": "the cats right eye", "question": ["are there the cats ?", "is there eye ?"], "prompt": "the {}s right eye"}, {"index": 1281, "image_id": 2339439, "entity": "cat", "caption": "the cats left eye", "question": ["are there the cats ?", "is there eye ?"], "prompt": "the {}s left eye"}, {"index": 1282, "image_id": 2339439, "entity": "cat", "caption": "the stripes on the cats head", "question": ["are there the stripes ?", "are there the cats ?"], "prompt": "the stripes on the {}s head"}, {"index": 1283, "image_id": 2339439, "entity": "cat", "caption": "the cat has intense golden eyes", "question": ["is there the cat ?", "are there intense golden eyes ?"], "prompt": "the {} has intense golden eyes"}, {"index": 1284, "image_id": 2339439, "entity": "cat", "caption": "the cat also has tabby points on her head", "question": ["is there the cat ?", "are there tabby points ?", "is there her head ?"], "prompt": "the {} also has tabby points on her head"}, {"index": 1285, "image_id": 2339439, "entity": "cat", "caption": "the meat keeper is behind the cat's head", "question": ["is there the meat keeper ?", "is there the cat's head ?"], "prompt": "the meat keeper is behind the {}'s head"}, {"index": 1286, "image_id": 2339439, "entity": "cat", "caption": "the cat's nose is pink and gray", "question": ["is there the cat's nose ?"], "prompt": "the {}'s nose is pink and gray"}, {"index": 1287, "image_id": 2339439, "entity": "cat", "caption": "the cat is standing in the vegetable keeper", "question": ["is there the cat ?", "is there the vegetable keeper ?"], "prompt": "the {} is standing in the vegetable keeper"}, {"index": 1288, "image_id": 2338581, "entity": "cat", "caption": "cat has long white whiskers", "question": ["is there cat ?", "are there long white whiskers ?"], "prompt": "{} has long white whiskers"}, {"index": 1289, "image_id": 2338416, "entity": "cat", "caption": "Bathroom sink faucet behind the cat", "question": ["is there bathroom ?", "is there faucet ?", "is there the cat ?"], "prompt": "Bathroom sink faucet behind the {}"}, {"index": 1290, "image_id": 2338416, "entity": "cat", "caption": "whiskers ont he cat", "question": ["are there whiskers ?"], "prompt": "whiskers ont he {}"}, {"index": 1291, "image_id": 2338363, "entity": "cat", "caption": "cat is wearinga cape", "question": ["is there cat ?", "is there wearinga cape ?"], "prompt": "{} is wearinga cape"}, {"index": 1292, "image_id": 2338363, "entity": "cat", "caption": "cat has orange nose", "question": ["is there cat ?", "is there orange nose ?"], "prompt": "{} has orange nose"}, {"index": 1293, "image_id": 2338363, "entity": "cat", "caption": "cat has thick orange fur", "question": ["is there cat ?"], "prompt": "{} has thick orange fur"}, {"index": 1294, "image_id": 2338363, "entity": "cat", "caption": "cat is on grey table", "question": ["is there cat ?", "is there grey table ?"], "prompt": "{} is on grey table"}, {"index": 1295, "image_id": 2338063, "entity": "cat", "caption": "an ear ont he cat", "question": ["is there an ear ont ?", "is there he cat ?"], "prompt": "an ear ont he {}"}, {"index": 1296, "image_id": 2338019, "entity": "cat", "caption": "cat is sleeping on the bed", "question": ["is there cat ?", "is there the bed ?"], "prompt": "{} is sleeping on the bed"}, {"index": 1297, "image_id": 2337686, "entity": "cat", "caption": "the cat is drinking water ", "question": ["is there the cat ?", "is there water ?"], "prompt": "the {} is drinking water "}, {"index": 1298, "image_id": 2337686, "entity": "cat", "caption": "the cat is in the sink ", "question": ["is there the cat ?", "is there the sink ?"], "prompt": "the {} is in the sink "}, {"index": 1299, "image_id": 2337686, "entity": "cat", "caption": "the cat is in the sink basin ", "question": ["is there the cat ?", "is there the sink basin ?"], "prompt": "the {} is in the sink basin "}, {"index": 1300, "image_id": 2337375, "entity": "cat", "caption": "the cat is wearing a bow ", "question": ["is there the cat ?", "is there a bow ?"], "prompt": "the {} is wearing a bow "}, {"index": 1301, "image_id": 2337375, "entity": "cat", "caption": "the cat has a black nose ", "question": ["is there the cat ?", "is there a black nose ?"], "prompt": "the {} has a black nose "}, {"index": 1302, "image_id": 2337364, "entity": "cat", "caption": "blue case the cat is on", "question": ["is there the cat ?"], "prompt": "blue case the {} is on"}, {"index": 1303, "image_id": 2337170, "entity": "cat", "caption": "blanket cat is laying on", "question": ["is there blanket cat ?"], "prompt": "blanket {} is laying on"}, {"index": 1304, "image_id": 2336520, "entity": "cat", "caption": "the cat is on the carpet", "question": ["is there the cat ?", "is there the carpet ?"], "prompt": "the {} is on the carpet"}, {"index": 1305, "image_id": 2336520, "entity": "cat", "caption": "a cat is on top of another cat", "question": ["is there a cat ?", "is there top ?", "is there another cat ?"], "prompt": "a {} is on top of another {}"}, {"index": 1306, "image_id": 2336520, "entity": "cat", "caption": "the cat is sleeping in the carpet", "question": ["is there the cat ?", "is there the carpet ?"], "prompt": "the {} is sleeping in the carpet"}, {"index": 1307, "image_id": 2336520, "entity": "cat", "caption": "the cat's head is under the top cat", "question": ["is there the cat's head ?", "is there the top cat ?"], "prompt": "the {}'s head is under the top {}"}, {"index": 1308, "image_id": 2336492, "entity": "cat", "caption": "cat has orange eyes", "question": ["is there cat ?", "are there orange eyes ?"], "prompt": "{} has orange eyes"}, {"index": 1309, "image_id": 2336492, "entity": "cat", "caption": "cat has orange fur", "question": ["is there cat ?"], "prompt": "{} has orange fur"}, {"index": 1310, "image_id": 2335967, "entity": "cat", "caption": "cat is sitting on the cd case", "question": ["is there cat ?", "is there the cd case ?"], "prompt": "{} is sitting on the cd case"}, {"index": 1311, "image_id": 2335754, "entity": "cat", "caption": "furry cat's tail hanging off windowsill", "question": ["is there furry cat's tail ?"], "prompt": "furry {}'s tail hanging off windowsill"}, {"index": 1312, "image_id": 2335686, "entity": "cat", "caption": "the cat is smelling the bird ", "question": ["is there the cat ?", "is there the bird ?"], "prompt": "the {} is smelling the bird "}, {"index": 1313, "image_id": 2335686, "entity": "cat", "caption": "cat has perky ears ", "question": ["is there cat ?", "are there perky ears ?"], "prompt": "{} has perky ears "}, {"index": 1314, "image_id": 2335682, "entity": "cat", "caption": "Black cat is wearing a collar", "question": ["is there black cat ?", "is there a collar ?"], "prompt": "Black {} is wearing a collar"}, {"index": 1315, "image_id": 2335682, "entity": "cat", "caption": "black cat has a green eye", "question": ["is there black cat ?", "is there a green eye ?"], "prompt": "black {} has a green eye"}, {"index": 1316, "image_id": 2335682, "entity": "cat", "caption": "silver buckle on the cats collar", "question": ["is there silver buckle ?", "are there the cats ?"], "prompt": "silver buckle on the {}s collar"}, {"index": 1317, "image_id": 2335133, "entity": "cat", "caption": "cat pupils are oval", "question": ["are there cat pupils ?"], "prompt": "{} pupils are oval"}, {"index": 1318, "image_id": 2335133, "entity": "cat", "caption": "material under cat is plaid", "question": ["is there material ?", "is there cat ?"], "prompt": "material under {} is plaid"}, {"index": 1319, "image_id": 2335097, "entity": "cat", "caption": "nose of cat is blackand white", "question": ["is there nose ?", "is there cat ?"], "prompt": "nose of {} is blackand white"}, {"index": 1320, "image_id": 2334972, "entity": "cat", "caption": "The cat sits very close to the mouse. ", "question": ["is there the cat ?", "is there the mouse ?"], "prompt": "The {} sits very close to the mouse. "}, {"index": 1321, "image_id": 2334778, "entity": "cat", "caption": "The cat is at the desk.", "question": ["is there the cat ?", "is there the desk ?"], "prompt": "The {} is at the desk."}, {"index": 1322, "image_id": 2334778, "entity": "cat", "caption": "The cat has paws on the desk.", "question": ["is there the cat ?", "are there paws ?", "is there the desk ?"], "prompt": "The {} has paws on the desk."}, {"index": 1323, "image_id": 2334778, "entity": "cat", "caption": "The cat is sitting on the desk.", "question": ["is there the cat ?", "is there the desk ?"], "prompt": "The {} is sitting on the desk."}, {"index": 1324, "image_id": 2334778, "entity": "cat", "caption": "The cat has tags.", "question": ["is there the cat ?", "are there tags ?"], "prompt": "The {} has tags."}, {"index": 1325, "image_id": 2334600, "entity": "cat", "caption": "tail of cat is black", "question": ["is there tail ?", "is there cat ?"], "prompt": "tail of {} is black"}, {"index": 1326, "image_id": 2334169, "entity": "cat", "caption": "The cat is in front of a keyboard", "question": ["is there the cat ?", "is there front ?", "is there a keyboard ?"], "prompt": "The {} is in front of a keyboard"}, {"index": 1327, "image_id": 2332843, "entity": "cat", "caption": "Book standing up next to a cat", "question": ["is there book ?", "is there a cat ?"], "prompt": "Book standing up next to a {}"}, {"index": 1328, "image_id": 2332737, "entity": "cat", "caption": "cat's eyes are black", "question": ["are there cat's eyes ?"], "prompt": "{}'s eyes are black"}, {"index": 1329, "image_id": 2332729, "entity": "cat", "caption": "The cat is sitting on the bench", "question": ["is there the cat ?", "is there the bench ?"], "prompt": "The {} is sitting on the bench"}, {"index": 1330, "image_id": 2332729, "entity": "cat", "caption": "a cat sits on a bench", "question": ["is there a cat ?", "is there a bench ?"], "prompt": "a {} sits on a bench"}, {"index": 1331, "image_id": 2332729, "entity": "cat", "caption": "the cat casts a shadow behind it", "question": ["is there the cat ?", "is there a shadow ?"], "prompt": "the {} casts a shadow behind it"}, {"index": 1332, "image_id": 2332729, "entity": "cat", "caption": "the cat has a long tail", "question": ["is there the cat ?", "is there a long tail ?"], "prompt": "the {} has a long tail"}, {"index": 1333, "image_id": 2332729, "entity": "cat", "caption": "the cat has some mats in it's fur", "question": ["is there the cat ?", "are there some mats ?"], "prompt": "the {} has some mats in it's fur"}, {"index": 1334, "image_id": 2332102, "entity": "cat", "caption": "the cats eyes are wide open", "question": ["are there the cats ?", "are there eyes ?"], "prompt": "the {}s eyes are wide open"}, {"index": 1335, "image_id": 2332102, "entity": "cat", "caption": "the inside of the cats ears are pink", "question": ["is there the inside ?", "are there the cats ears ?"], "prompt": "the inside of the {}s ears are pink"}, {"index": 1336, "image_id": 2331858, "entity": "cat", "caption": "the cats face ", "question": ["are there the cats ?"], "prompt": "the {}s face "}, {"index": 1337, "image_id": 2331806, "entity": "cat", "caption": "a cat is sitting in a chair", "question": ["is there a cat ?", "is there a chair ?"], "prompt": "a {} is sitting in a chair"}, {"index": 1338, "image_id": 2331806, "entity": "cat", "caption": "cat has a pink nose", "question": ["is there cat ?", "is there a pink nose ?"], "prompt": "{} has a pink nose"}, {"index": 1339, "image_id": 2331806, "entity": "cat", "caption": "A cats tail hanging by a perforated wall", "question": ["are there a cats tail ?", "is there a perforated wall ?"], "prompt": "A {}s tail hanging by a perforated wall"}, {"index": 1340, "image_id": 2331506, "entity": "cat", "caption": "The cat's eye is greenish yellow.", "question": ["is there the cat's eye ?"], "prompt": "The {}'s eye is greenish yellow."}, {"index": 1341, "image_id": 2331506, "entity": "cat", "caption": "The cat is sitting on top of the purse strap.", "question": ["is there the cat ?", "is there top ?", "is there the purse strap ?"], "prompt": "The {} is sitting on top of the purse strap."}, {"index": 1342, "image_id": 2331387, "entity": "cat", "caption": "this is a cat's head", "question": ["is there a cat's head ?"], "prompt": "this is a {}'s head"}, {"index": 1343, "image_id": 2331387, "entity": "cat", "caption": "cat's eyes are gold", "question": ["are there cat's eyes ?"], "prompt": "{}'s eyes are gold"}, {"index": 1344, "image_id": 2331387, "entity": "cat", "caption": "laptop screen fuzzily visible behind the cat", "question": ["is there laptop screen ?", "is there the cat ?"], "prompt": "laptop screen fuzzily visible behind the {}"}, {"index": 1345, "image_id": 2331387, "entity": "cat", "caption": "black cat has white whiskers", "question": ["is there black cat ?", "are there white whiskers ?"], "prompt": "black {} has white whiskers"}, {"index": 1346, "image_id": 2331383, "entity": "cat", "caption": "cat is laying on the chair ", "question": ["is there cat ?", "is there the chair ?"], "prompt": "{} is laying on the chair "}, {"index": 1347, "image_id": 2331383, "entity": "cat", "caption": "cat has yellow eyes ", "question": ["is there cat ?", "are there yellow eyes ?"], "prompt": "{} has yellow eyes "}, {"index": 1348, "image_id": 2331252, "entity": "cat", "caption": "this is a cat's eye", "question": ["is there a cat's eye ?"], "prompt": "this is a {}'s eye"}, {"index": 1349, "image_id": 2331252, "entity": "cat", "caption": "this is a cat's claw", "question": ["is there a cat's claw ?"], "prompt": "this is a {}'s claw"}, {"index": 1350, "image_id": 2331130, "entity": "cat", "caption": "The paw belongs to a cat. ", "question": ["is there the paw ?", "is there a cat ?"], "prompt": "The paw belongs to a {}. "}, {"index": 1351, "image_id": 2331130, "entity": "cat", "caption": "The cat has whiskers. ", "question": ["is there the cat ?", "are there whiskers ?"], "prompt": "The {} has whiskers. "}, {"index": 1352, "image_id": 2331130, "entity": "cat", "caption": "cat has light paw", "question": ["is there cat ?", "is there light paw ?"], "prompt": "{} has light paw"}, {"index": 1353, "image_id": 2331130, "entity": "cat", "caption": "cat has paw resting on mouse", "question": ["is there cat ?", "is there paw ?", "is there mouse ?"], "prompt": "{} has paw resting on mouse"}, {"index": 1354, "image_id": 2331130, "entity": "cat", "caption": "mouse is near cat", "question": ["is there cat ?"], "prompt": "mouse is near {}"}, {"index": 1355, "image_id": 2330905, "entity": "cat", "caption": "orange cat sniffing laptop", "question": ["is there orange cat ?", "is there laptop ?"], "prompt": "orange {} sniffing laptop"}, {"index": 1356, "image_id": 2330751, "entity": "cat", "caption": "the cat has on a necklace", "question": ["is there the cat ?", "is there a necklace ?"], "prompt": "the {} has on a necklace"}, {"index": 1357, "image_id": 2330751, "entity": "cat", "caption": "loop cat's tags are on ", "question": ["are there loop cat's tags ?"], "prompt": "loop {}'s tags are on "}, {"index": 1358, "image_id": 2330751, "entity": "cat", "caption": "collar cat is wearing", "question": ["is there collar cat ?"], "prompt": "collar {} is wearing"}, {"index": 1359, "image_id": 2330493, "entity": "cat", "caption": "the cat has a blue eye and a yellow eye", "question": ["is there the cat ?", "is there a blue eye ?", "is there a yellow eye ?"], "prompt": "the {} has a blue eye and a yellow eye"}, {"index": 1360, "image_id": 2330493, "entity": "cat", "caption": "the cat's whiskers are white", "question": ["are there the cat's whiskers ?"], "prompt": "the {}'s whiskers are white"}, {"index": 1361, "image_id": 2330077, "entity": "cat", "caption": "cat has mouth whiskers", "question": ["is there cat ?", "are there mouth whiskers ?"], "prompt": "{} has mouth whiskers"}, {"index": 1362, "image_id": 2329884, "entity": "cat", "caption": "The cat is wearing a tie.", "question": ["is there the cat ?", "is there a tie ?"], "prompt": "The {} is wearing a tie."}, {"index": 1363, "image_id": 2329884, "entity": "cat", "caption": "cat has eye on head", "question": ["is there cat ?", "is there eye ?", "is there head ?"], "prompt": "{} has eye on head"}, {"index": 1364, "image_id": 2329884, "entity": "cat", "caption": "cat has ear on head", "question": ["is there cat ?", "is there ear ?", "is there head ?"], "prompt": "{} has ear on head"}, {"index": 1365, "image_id": 2329884, "entity": "cat", "caption": "collar on cat is white", "question": ["is there collar ?", "is there cat ?"], "prompt": "collar on {} is white"}, {"index": 1366, "image_id": 2329525, "entity": "cat", "caption": "A cat lies on the couch with the toys ", "question": ["is there a cat ?", "is there the couch ?", "are there the toys ?"], "prompt": "A {} lies on the couch with the toys "}, {"index": 1367, "image_id": 2329154, "entity": "cat", "caption": "The face of the cat is blurry", "question": ["is there the face ?", "is there the cat ?"], "prompt": "The face of the {} is blurry"}, {"index": 1368, "image_id": 2329048, "entity": "cat", "caption": "Yellow eyes on a cats face", "question": ["are there yellow eyes ?", "are there a cats ?"], "prompt": "Yellow eyes on a {}s face"}, {"index": 1369, "image_id": 2328978, "entity": "cat", "caption": "The eyes of the cat are green", "question": ["are there the eyes ?", "is there the cat ?"], "prompt": "The eyes of the {} are green"}, {"index": 1370, "image_id": 2328762, "entity": "cat", "caption": "cat paw is white", "question": [], "prompt": "{} paw is white"}, {"index": 1371, "image_id": 2328762, "entity": "cat", "caption": "cat has black and white fur", "question": ["is there cat ?", "is there black and white fur ?"], "prompt": "{} has black and white fur"}, {"index": 1372, "image_id": 2328762, "entity": "cat", "caption": "cat's mouth is closed", "question": ["is there cat's mouth ?"], "prompt": "{}'s mouth is closed"}, {"index": 1373, "image_id": 2328762, "entity": "cat", "caption": "Black and white cat is looking out the window", "question": ["is there black and white cat ?", "is there the window ?"], "prompt": "Black and white {} is looking out the window"}, {"index": 1374, "image_id": 2328762, "entity": "cat", "caption": "cat has green eyes ", "question": ["is there cat ?", "are there green eyes ?"], "prompt": "{} has green eyes "}, {"index": 1375, "image_id": 2328620, "entity": "cat", "caption": "Bell hanging from cat's collar.", "question": ["is there bell ?", "is there cat's collar ?"], "prompt": "Bell hanging from {}'s collar."}, {"index": 1376, "image_id": 2328324, "entity": "cat", "caption": "the cat is on a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the {} is on a car"}, {"index": 1377, "image_id": 2328108, "entity": "cat", "caption": "cat is laying in the chair", "question": ["is there cat ?", "is there the chair ?"], "prompt": "{} is laying in the chair"}, {"index": 1378, "image_id": 2327987, "entity": "cat", "caption": "the paw of the cat by it's mouth", "question": ["is there the paw ?", "is there the cat ?", "is there mouth ?"], "prompt": "the paw of the {} by it's mouth"}, {"index": 1379, "image_id": 2327481, "entity": "cat", "caption": "a cat curled up on a shoe", "question": ["is there a cat ?", "is there a shoe ?"], "prompt": "a {} curled up on a shoe"}, {"index": 1380, "image_id": 2326868, "entity": "cat", "caption": "The cat is in the suitcase.", "question": ["is there the cat ?", "is there the suitcase ?"], "prompt": "The {} is in the suitcase."}, {"index": 1381, "image_id": 2326868, "entity": "cat", "caption": "The cat is lying in the luggage.", "question": ["is there the cat ?", "is there the luggage ?"], "prompt": "The {} is lying in the luggage."}, {"index": 1382, "image_id": 2326460, "entity": "cat", "caption": "a cat with long whiskers opening its mouth to yawn", "question": ["is there a cat ?", "are there long whiskers ?", "is there its mouth ?", "is there yawn ?"], "prompt": "a {} with long whiskers opening its mouth to yawn"}, {"index": 1383, "image_id": 2325083, "entity": "cat", "caption": "Gray and white cat is laying down on a keyboard", "question": ["is there gray and white cat ?", "is there a keyboard ?"], "prompt": "Gray and white {} is laying down on a keyboard"}, {"index": 1384, "image_id": 2324630, "entity": "cat", "caption": "the cat is sitting on top of the person", "question": ["is there the cat ?", "is there top ?", "is there the person ?"], "prompt": "the {} is sitting on top of the person"}, {"index": 1385, "image_id": 2324630, "entity": "cat", "caption": "she is playing with the cat", "question": ["is there the cat ?"], "prompt": "she is playing with the {}"}, {"index": 1386, "image_id": 2324465, "entity": "cat", "caption": "cat has light brown nose", "question": ["is there cat ?", "is there light brown nose ?"], "prompt": "{} has light brown nose"}, {"index": 1387, "image_id": 2324465, "entity": "cat", "caption": "cat has tan tail", "question": ["is there cat ?", "is there tan tail ?"], "prompt": "{} has tan tail"}, {"index": 1388, "image_id": 2324465, "entity": "cat", "caption": "The cats' eye has black line under", "question": ["are there the cats' eye ?", "is there black line ?"], "prompt": "The {}s' eye has black line under"}, {"index": 1389, "image_id": 2323910, "entity": "cat", "caption": "cat has red collar", "question": ["is there cat ?", "is there red collar ?"], "prompt": "{} has red collar"}, {"index": 1390, "image_id": 2323769, "entity": "cat", "caption": "the cat is leying on a mat", "question": ["is there the cat ?", "is there a mat ?"], "prompt": "the {} is leying on a mat"}, {"index": 1391, "image_id": 2323769, "entity": "cat", "caption": "the cat is holding a remote", "question": ["is there the cat ?"], "prompt": "the {} is holding a remote"}, {"index": 1392, "image_id": 2323768, "entity": "cat", "caption": "grey ear on cat", "question": ["is there grey ear ?", "is there cat ?"], "prompt": "grey ear on {}"}, {"index": 1393, "image_id": 2323459, "entity": "cat", "caption": "a cat with eyes open", "question": ["is there a cat ?", "are there eyes ?"], "prompt": "a {} with eyes open"}, {"index": 1394, "image_id": 2323389, "entity": "cat", "caption": "white fur in cats ear", "question": ["is there white fur ?", "are there cats ?"], "prompt": "white fur in {}s ear"}, {"index": 1395, "image_id": 2323389, "entity": "cat", "caption": "a cat with its eye closed", "question": ["is there a cat ?", "is there its eye ?"], "prompt": "a {} with its eye closed"}, {"index": 1396, "image_id": 2323369, "entity": "cat", "caption": "the cat's eyes is blue", "question": ["are there the cat's eyes ?"], "prompt": "the {}'s eyes is blue"}, {"index": 1397, "image_id": 2323369, "entity": "cat", "caption": "the cat's paws are on the table", "question": ["are there the cat's paws ?", "is there the table ?"], "prompt": "the {}'s paws are on the table"}, {"index": 1398, "image_id": 2323369, "entity": "cat", "caption": "this cat has black stripes", "question": ["is there this cat ?", "are there black stripes ?"], "prompt": "this {} has black stripes"}, {"index": 1399, "image_id": 2323369, "entity": "cat", "caption": "this cat has brown and black fur", "question": ["is there this cat ?", "is there brown and black fur ?"], "prompt": "this {} has brown and black fur"}, {"index": 1400, "image_id": 2323171, "entity": "cat", "caption": "the window behind the cat is closed", "question": ["is there the window ?", "is there the cat ?"], "prompt": "the window behind the {} is closed"}, {"index": 1401, "image_id": 2323105, "entity": "cat", "caption": "cat has brown paws", "question": ["is there cat ?", "are there brown paws ?"], "prompt": "{} has brown paws"}, {"index": 1402, "image_id": 2323105, "entity": "cat", "caption": "cat has eyes closed", "question": ["is there cat ?", "are there eyes ?"], "prompt": "{} has eyes closed"}, {"index": 1403, "image_id": 2322726, "entity": "cat", "caption": "whiskers on cat left", "question": ["are there whiskers ?", "is there cat ?"], "prompt": "whiskers on {} left"}, {"index": 1404, "image_id": 2322726, "entity": "cat", "caption": "cats nose is red", "question": ["are there cats nose ?"], "prompt": "{}s nose is red"}, {"index": 1405, "image_id": 2322560, "entity": "cat", "caption": "The cat is wearing a hat.", "question": ["is there the cat ?", "is there a hat ?"], "prompt": "The {} is wearing a hat."}, {"index": 1406, "image_id": 2322560, "entity": "cat", "caption": "The cat is wearing a purple hat.", "question": ["is there the cat ?", "is there a purple hat ?"], "prompt": "The {} is wearing a purple hat."}, {"index": 1407, "image_id": 2322560, "entity": "cat", "caption": "The hat is on the cat.", "question": ["is there the hat ?", "is there the cat ?"], "prompt": "The hat is on the {}."}, {"index": 1408, "image_id": 2322560, "entity": "cat", "caption": "A pink hat is on the cat.", "question": ["is there a pink hat ?", "is there the cat ?"], "prompt": "A pink hat is on the {}."}, {"index": 1409, "image_id": 2322560, "entity": "cat", "caption": "cat has pink hat", "question": ["is there cat ?", "is there pink hat ?"], "prompt": "{} has pink hat"}, {"index": 1410, "image_id": 2322560, "entity": "cat", "caption": "cat has black back", "question": ["is there cat ?"], "prompt": "{} has black back"}, {"index": 1411, "image_id": 2322560, "entity": "cat", "caption": "cat has pink skin around the mouth", "question": ["is there cat ?", "is there pink skin ?", "is there the mouth ?"], "prompt": "{} has pink skin around the mouth"}, {"index": 1412, "image_id": 2322102, "entity": "cat", "caption": "cat has a small pink nose", "question": ["is there cat ?", "is there a small pink nose ?"], "prompt": "{} has a small pink nose"}, {"index": 1413, "image_id": 2322003, "entity": "cat", "caption": "cat is in a bathroom sink", "question": ["is there cat ?", "is there a bathroom ?"], "prompt": "{} is in a bathroom sink"}, {"index": 1414, "image_id": 2322003, "entity": "cat", "caption": "A cat is in the sink", "question": ["is there a cat ?", "is there the sink ?"], "prompt": "A {} is in the sink"}, {"index": 1415, "image_id": 2322003, "entity": "cat", "caption": "The basin of the sink the cat is laying inside of.", "question": ["is there the basin ?", "is there the sink ?", "is there the cat ?"], "prompt": "The basin of the sink the {} is laying inside of."}, {"index": 1416, "image_id": 2321677, "entity": "cat", "caption": "cat is laying in sink", "question": ["is there cat ?", "is there sink ?"], "prompt": "{} is laying in sink"}, {"index": 1417, "image_id": 2321421, "entity": "cat", "caption": "cat sits on the floor", "question": ["is there cat ?", "is there the floor ?"], "prompt": "{} sits on the floor"}, {"index": 1418, "image_id": 2321421, "entity": "cat", "caption": "cat has a blue collar", "question": ["is there cat ?", "is there a blue collar ?"], "prompt": "{} has a blue collar"}, {"index": 1419, "image_id": 2321421, "entity": "cat", "caption": "orange cat has pointy ears", "question": ["is there orange cat ?", "are there pointy ears ?"], "prompt": "orange {} has pointy ears"}, {"index": 1420, "image_id": 2321421, "entity": "cat", "caption": "a orange cat with its leg raised", "question": ["is there a orange cat ?", "is there its leg ?"], "prompt": "a orange {} with its leg raised"}, {"index": 1421, "image_id": 2321244, "entity": "cat", "caption": "cat is playing with sandals", "question": ["is there cat ?", "are there sandals ?"], "prompt": "{} is playing with sandals"}, {"index": 1422, "image_id": 2320723, "entity": "cat", "caption": "the cat is laying on a keyboard", "question": ["is there the cat ?", "is there a keyboard ?"], "prompt": "the {} is laying on a keyboard"}, {"index": 1423, "image_id": 2320723, "entity": "cat", "caption": "the laptop the cat is on", "question": ["is there the laptop ?", "is there the cat ?"], "prompt": "the laptop the {} is on"}, {"index": 1424, "image_id": 2320715, "entity": "cat", "caption": "a cat cuddles a mouse", "question": ["is there a cat ?", "is there a mouse ?"], "prompt": "a {} cuddles a mouse"}, {"index": 1425, "image_id": 2320715, "entity": "cat", "caption": "a baby cat wrapped around a mouse", "question": ["is there a baby cat ?", "is there a mouse ?"], "prompt": "a baby {} wrapped around a mouse"}, {"index": 1426, "image_id": 2320576, "entity": "cat", "caption": "chair the cat is sitting on", "question": ["is there chair ?", "is there the cat ?"], "prompt": "chair the {} is sitting on"}, {"index": 1427, "image_id": 2320565, "entity": "cat", "caption": "The cat has a paw", "question": ["is there the cat ?", "is there a paw ?"], "prompt": "The {} has a paw"}, {"index": 1428, "image_id": 2320521, "entity": "cat", "caption": "The cat is laying on the closed suitcase lid.", "question": ["is there the cat ?", "is there the closed suitcase lid ?"], "prompt": "The {} is laying on the closed suitcase lid."}, {"index": 1429, "image_id": 2320439, "entity": "cat", "caption": "Wooden bookshelf that the cat is standing on", "question": ["is there wooden bookshelf ?", "is there the cat ?"], "prompt": "Wooden bookshelf that the {} is standing on"}, {"index": 1430, "image_id": 2320345, "entity": "cat", "caption": "The cat is looking at another cat.", "question": ["is there the cat ?", "is there another cat ?"], "prompt": "The {} is looking at another {}."}, {"index": 1431, "image_id": 2320345, "entity": "cat", "caption": "The cat has a black stripe on his head.", "question": ["is there the cat ?", "is there a black stripe ?", "is there his head ?"], "prompt": "The {} has a black stripe on his head."}, {"index": 1432, "image_id": 2320345, "entity": "cat", "caption": "The cat's right ear is pointy.", "question": ["is there the cat's right ear ?"], "prompt": "The {}'s right ear is pointy."}, {"index": 1433, "image_id": 2320345, "entity": "cat", "caption": "The cat is looking at the second cat.", "question": ["is there the cat ?", "is there the second cat ?"], "prompt": "The {} is looking at the second {}."}, {"index": 1434, "image_id": 2320345, "entity": "cat", "caption": "The cat has a dark pattern on his head.", "question": ["is there the cat ?", "is there a dark pattern ?", "is there his head ?"], "prompt": "The {} has a dark pattern on his head."}, {"index": 1435, "image_id": 2320229, "entity": "cat", "caption": "cat is eating cake", "question": ["is there cat ?", "is there cake ?"], "prompt": "{} is eating cake"}, {"index": 1436, "image_id": 2320061, "entity": "cat", "caption": "The cat has many wiskers", "question": ["is there the cat ?", "are there many wiskers ?"], "prompt": "The {} has many wiskers"}, {"index": 1437, "image_id": 2319924, "entity": "cat", "caption": "the cat is on a desk ", "question": ["is there the cat ?", "is there a desk ?"], "prompt": "the {} is on a desk "}, {"index": 1438, "image_id": 2319886, "entity": "cat", "caption": "eyes of the cat closed", "question": ["are there eyes ?", "is there the cat ?"], "prompt": "eyes of the {} closed"}, {"index": 1439, "image_id": 2319886, "entity": "cat", "caption": "cat nose is pink", "question": ["is there cat nose ?"], "prompt": "{} nose is pink"}, {"index": 1440, "image_id": 2319865, "entity": "cat", "caption": "cat is inside a moving vehicle", "question": ["is there cat ?", "is there a moving vehicle ?"], "prompt": "{} is inside a moving vehicle"}, {"index": 1441, "image_id": 2319865, "entity": "cat", "caption": "cat eyes are light green", "question": ["are there cat eyes ?"], "prompt": "{} eyes are light green"}, {"index": 1442, "image_id": 2319865, "entity": "cat", "caption": "window of vehicle that cat is in", "question": ["is there window ?", "is there vehicle ?", "is there cat ?"], "prompt": "window of vehicle that {} is in"}, {"index": 1443, "image_id": 2319796, "entity": "cat", "caption": "The cat eyes are green.", "question": ["are there the cat eyes ?"], "prompt": "The {} eyes are green."}, {"index": 1444, "image_id": 2319796, "entity": "cat", "caption": "The cat has a hairy tail.", "question": ["is there the cat ?", "is there a hairy tail ?"], "prompt": "The {} has a hairy tail."}, {"index": 1445, "image_id": 2319796, "entity": "cat", "caption": "The cat has a white nose.", "question": ["is there the cat ?", "is there a white nose ?"], "prompt": "The {} has a white nose."}, {"index": 1446, "image_id": 2319723, "entity": "cat", "caption": "Dog sniffing a cat", "question": ["is there dog ?", "is there a cat ?"], "prompt": "Dog sniffing a {}"}, {"index": 1447, "image_id": 2319723, "entity": "cat", "caption": "cat has a pink nose ", "question": ["is there cat ?", "is there a pink nose ?"], "prompt": "{} has a pink nose "}, {"index": 1448, "image_id": 2319723, "entity": "cat", "caption": "the dog is kissing the cat", "question": ["is there the dog ?", "is there the cat ?"], "prompt": "the dog is kissing the {}"}, {"index": 1449, "image_id": 2319723, "entity": "cat", "caption": "the man is touching the cat", "question": ["is there the man ?", "is there the cat ?"], "prompt": "the man is touching the {}"}, {"index": 1450, "image_id": 2319723, "entity": "cat", "caption": "the cat has diamond shaped eyes", "question": ["is there the cat ?", "are there diamond shaped eyes ?"], "prompt": "the {} has diamond shaped eyes"}, {"index": 1451, "image_id": 2319606, "entity": "cat", "caption": "cats paw is on the mousepad ", "question": ["are there cats ?", "is there paw ?", "is there the mousepad ?"], "prompt": "{}s paw is on the mousepad "}, {"index": 1452, "image_id": 2319606, "entity": "cat", "caption": "woman laying down next to cat ", "question": ["is there woman ?", "is there cat ?"], "prompt": "woman laying down next to {} "}, {"index": 1453, "image_id": 2319606, "entity": "cat", "caption": "woman has nose against cat's leg", "question": ["is there woman ?", "is there nose ?", "is there cat's leg ?"], "prompt": "woman has nose against {}'s leg"}, {"index": 1454, "image_id": 2319460, "entity": "cat", "caption": "cat sits on a bed", "question": ["is there cat ?", "is there a bed ?"], "prompt": "{} sits on a bed"}, {"index": 1455, "image_id": 2319460, "entity": "cat", "caption": "cat is white and black ", "question": ["is there cat ?"], "prompt": "{} is white and black "}, {"index": 1456, "image_id": 2319460, "entity": "cat", "caption": "the cat has white legs", "question": ["is there the cat ?", "are there white legs ?"], "prompt": "the {} has white legs"}, {"index": 1457, "image_id": 2319460, "entity": "cat", "caption": "the cat has a heart tag", "question": ["is there the cat ?", "is there a heart tag ?"], "prompt": "the {} has a heart tag"}, {"index": 1458, "image_id": 2319460, "entity": "cat", "caption": "the glass is behind the cat", "question": ["is there the glass ?", "is there the cat ?"], "prompt": "the glass is behind the {}"}, {"index": 1459, "image_id": 2319460, "entity": "cat", "caption": "a dresser is behind the cat", "question": ["is there a dresser ?", "is there the cat ?"], "prompt": "a dresser is behind the {}"}, {"index": 1460, "image_id": 2319460, "entity": "cat", "caption": "a cat wearing a heart shaped tag", "question": ["is there a cat ?", "is there a heart shaped tag ?"], "prompt": "a {} wearing a heart shaped tag"}, {"index": 1461, "image_id": 2319460, "entity": "cat", "caption": "a black and white cat with its eyes closed", "question": ["is there a black and white cat ?", "are there its eyes ?"], "prompt": "a black and white {} with its eyes closed"}, {"index": 1462, "image_id": 2319077, "entity": "cat", "caption": "Man's fingers that are holding a bottle and a cat.", "question": ["are there man's fingers ?", "is there a bottle ?", "is there a cat ?"], "prompt": "Man's fingers that are holding a bottle and a {}."}, {"index": 1463, "image_id": 2318834, "entity": "cat", "caption": "Three cans of cat food stacked. ", "question": ["are there three cans ?", "is there cat food ?"], "prompt": "Three cans of {} food stacked. "}, {"index": 1464, "image_id": 2318716, "entity": "cat", "caption": "cat looks over bag's edge", "question": ["is there cat ?", "is there bag's edge ?"], "prompt": "{} looks over bag's edge"}, {"index": 1465, "image_id": 2318670, "entity": "cat", "caption": "a cat spread on a bed ", "question": ["is there a cat ?", "is there a bed ?"], "prompt": "a {} spread on a bed "}, {"index": 1466, "image_id": 2318355, "entity": "cat", "caption": "The cat is in a suitcase.", "question": ["is there the cat ?", "is there a suitcase ?"], "prompt": "The {} is in a suitcase."}, {"index": 1467, "image_id": 2318181, "entity": "cat", "caption": "A cat on a blue table stand", "question": ["is there a cat ?", "is there a blue table ?"], "prompt": "A {} on a blue table stand"}, {"index": 1468, "image_id": 2318038, "entity": "cat", "caption": "he cat has a right ear", "question": ["is there cat ?", "is there a right ear ?"], "prompt": "he {} has a right ear"}, {"index": 1469, "image_id": 2318038, "entity": "cat", "caption": "the cat has a mouth", "question": ["is there the cat ?", "is there a mouth ?"], "prompt": "the {} has a mouth"}, {"index": 1470, "image_id": 2317774, "entity": "cat", "caption": "cat curled up on floor", "question": ["is there cat ?", "is there floor ?"], "prompt": "{} curled up on floor"}, {"index": 1471, "image_id": 2317774, "entity": "cat", "caption": "cat is white with light brown and dark brown spots", "question": ["is there cat ?", "are there light brown and dark brown spots ?"], "prompt": "{} is white with light brown and dark brown spots"}, {"index": 1472, "image_id": 2317774, "entity": "cat", "caption": "cat is touching the mirrored surface", "question": ["is there cat ?", "is there the mirrored surface ?"], "prompt": "{} is touching the mirrored surface"}, {"index": 1473, "image_id": 2317774, "entity": "cat", "caption": "part of the cats fur", "question": ["is there part ?", "are there the cats ?"], "prompt": "part of the {}s fur"}, {"index": 1474, "image_id": 2317764, "entity": "cat", "caption": "a cat laying in a bathroom sink", "question": ["is there a cat ?", "is there a bathroom ?"], "prompt": "a {} laying in a bathroom sink"}, {"index": 1475, "image_id": 2317714, "entity": "cat", "caption": "cat is laying on black fabric bag", "question": ["is there cat ?", "is there black fabric bag ?"], "prompt": "{} is laying on black fabric bag"}, {"index": 1476, "image_id": 2317714, "entity": "cat", "caption": "face of cat is white and brown ", "question": ["is there face ?", "is there cat ?"], "prompt": "face of {} is white and brown "}, {"index": 1477, "image_id": 2317714, "entity": "cat", "caption": "cat is inside a suitcase", "question": ["is there cat ?", "is there a suitcase ?"], "prompt": "{} is inside a suitcase"}, {"index": 1478, "image_id": 2317614, "entity": "cat", "caption": "the cat has long eyebrows", "question": ["is there the cat ?", "are there long eyebrows ?"], "prompt": "the {} has long eyebrows"}, {"index": 1479, "image_id": 2317570, "entity": "cat", "caption": "a left cat ear ", "question": ["is there a left cat ?"], "prompt": "a left {} ear "}, {"index": 1480, "image_id": 2317570, "entity": "cat", "caption": "Two cats are on a brown desk", "question": ["are there two cats ?", "is there a brown desk ?"], "prompt": "Two {}s are on a brown desk"}, {"index": 1481, "image_id": 2317478, "entity": "cat", "caption": "tail of cat is long", "question": ["is there tail ?", "is there cat ?"], "prompt": "tail of {} is long"}, {"index": 1482, "image_id": 2317428, "entity": "cat", "caption": "the cat is on a laptop", "question": ["is there the cat ?", "is there a laptop ?"], "prompt": "the {} is on a laptop"}, {"index": 1483, "image_id": 2317428, "entity": "cat", "caption": "orange cat standing on laptop", "question": ["is there laptop ?"], "prompt": "orange {} standing on laptop"}, {"index": 1484, "image_id": 2317288, "entity": "cat", "caption": "The cat is holding a bottle of water.", "question": ["is there the cat ?", "is there a bottle ?", "is there water ?"], "prompt": "The {} is holding a bottle of water."}, {"index": 1485, "image_id": 2317288, "entity": "cat", "caption": "The cat is lying on a bed.", "question": ["is there the cat ?", "is there a bed ?"], "prompt": "The {} is lying on a bed."}, {"index": 1486, "image_id": 2317288, "entity": "cat", "caption": "The cat is alert.", "question": ["is there the cat ?"], "prompt": "The {} is alert."}, {"index": 1487, "image_id": 2317288, "entity": "cat", "caption": "The cat is awake.", "question": ["is there the cat ?"], "prompt": "The {} is awake."}, {"index": 1488, "image_id": 2317138, "entity": "cat", "caption": "the front left paw of a house cat", "question": ["is there the front left paw ?", "is there a house cat ?"], "prompt": "the front left paw of a house {}"}, {"index": 1489, "image_id": 2317138, "entity": "cat", "caption": "This cat has some white whiskers", "question": ["is there this cat ?", "are there some white whiskers ?"], "prompt": "This {} has some white whiskers"}, {"index": 1490, "image_id": 2316884, "entity": "cat", "caption": "two cats cuddled together on top of a bed", "question": ["are there two cats ?", "is there top ?", "is there a bed ?"], "prompt": "two {}s cuddled together on top of a bed"}, {"index": 1491, "image_id": 2316884, "entity": "cat", "caption": "this cat is laying on the other", "question": ["is there this cat ?"], "prompt": "this {} is laying on the other"}, {"index": 1492, "image_id": 2316261, "entity": "cat", "caption": "The cats nose", "question": ["are there the cats ?"], "prompt": "The {}s nose"}, {"index": 1493, "image_id": 2316261, "entity": "cat", "caption": "The cats closed eyes", "question": ["are there the cats ?", "are there eyes ?"], "prompt": "The {}s closed eyes"}, {"index": 1494, "image_id": 2316261, "entity": "cat", "caption": "The paw the cat is sleeping on", "question": ["is there the paw ?", "is there the cat ?"], "prompt": "The paw the {} is sleeping on"}, {"index": 1495, "image_id": 2316261, "entity": "cat", "caption": "The bed spread the cat is sleeping on", "question": ["is there the bed ?", "is there the cat ?"], "prompt": "The bed spread the {} is sleeping on"}, {"index": 1496, "image_id": 2316261, "entity": "cat", "caption": "Black cat is laying on bed.", "question": ["is there black cat ?", "is there bed ?"], "prompt": "Black {} is laying on bed."}, {"index": 1497, "image_id": 2315873, "entity": "cat", "caption": "Two cat eyes are closed", "question": ["are there two cat eyes ?"], "prompt": "Two {} eyes are closed"}, {"index": 1498, "image_id": 2315714, "entity": "cat", "caption": "the cat is wearing a red hat", "question": ["is there the cat ?", "is there a red hat ?"], "prompt": "the {} is wearing a red hat"}, {"index": 1499, "image_id": 2315714, "entity": "cat", "caption": "The cat nose is pink.", "question": ["is there the cat nose ?"], "prompt": "The {} nose is pink."}, {"index": 1500, "image_id": 2315482, "entity": "cat", "caption": "Grey and white cat lying on the bed. ", "question": ["is there white cat ?", "is there the bed ?"], "prompt": "Grey and white {} lying on the bed. "}, {"index": 1501, "image_id": 2414951, "entity": "cat", "caption": "The black cat has white eyes", "question": ["is there the black cat ?", "are there white eyes ?"], "prompt": "The black {} has white eyes"}, {"index": 1502, "image_id": 2414951, "entity": "cat", "caption": "The cat is laying on something white", "question": ["is there the cat ?", "is there something ?"], "prompt": "The {} is laying on something white"}, {"index": 1503, "image_id": 2414951, "entity": "cat", "caption": "profile of cat face", "question": ["is there profile ?", "is there cat ?"], "prompt": "profile of {} face"}, {"index": 1504, "image_id": 2414946, "entity": "cat", "caption": "The cat has his mouth open", "question": ["is there the cat ?", "is there his mouth ?"], "prompt": "The {} has his mouth open"}, {"index": 1505, "image_id": 2414946, "entity": "cat", "caption": "person's long hair is near cat", "question": ["is there person's long hair ?", "is there cat ?"], "prompt": "person's long hair is near {}"}, {"index": 1506, "image_id": 2414946, "entity": "cat", "caption": "cat's mouth is open", "question": ["is there cat's mouth ?"], "prompt": "{}'s mouth is open"}, {"index": 1507, "image_id": 2414309, "entity": "cat", "caption": "The cat's hind legs are white.", "question": ["are there the cat's hind legs ?"], "prompt": "The {}'s hind legs are white."}, {"index": 1508, "image_id": 2414309, "entity": "cat", "caption": "The cat's paw is in a cup.", "question": ["is there the cat's paw ?", "is there a cup ?"], "prompt": "The {}'s paw is in a cup."}, {"index": 1509, "image_id": 2414309, "entity": "cat", "caption": "The cat is on the bed.", "question": ["is there the cat ?", "is there the bed ?"], "prompt": "The {} is on the bed."}, {"index": 1510, "image_id": 2414309, "entity": "cat", "caption": "The cat's left paw is inside the glass.", "question": ["is there the cat's left paw ?", "is there the glass ?"], "prompt": "The {}'s left paw is inside the glass."}, {"index": 1511, "image_id": 2414309, "entity": "cat", "caption": "the cat has its paw in the cup", "question": ["is there the cat ?", "is there its paw ?", "is there the cup ?"], "prompt": "the {} has its paw in the cup"}, {"index": 1512, "image_id": 2413812, "entity": "cat", "caption": "The cat is sitting in a box", "question": ["is there the cat ?", "is there a box ?"], "prompt": "The {} is sitting in a box"}, {"index": 1513, "image_id": 2413812, "entity": "cat", "caption": "The cat is sitting on the tissue paper.", "question": ["is there the cat ?", "is there the tissue paper ?"], "prompt": "The {} is sitting on the tissue paper."}, {"index": 1514, "image_id": 2413812, "entity": "cat", "caption": "cat is on the box", "question": ["is there cat ?", "is there the box ?"], "prompt": "{} is on the box"}, {"index": 1515, "image_id": 2413812, "entity": "cat", "caption": "cat is on paper tissue", "question": ["is there cat ?", "is there paper tissue ?"], "prompt": "{} is on paper tissue"}, {"index": 1516, "image_id": 2413812, "entity": "cat", "caption": "The cat is sitting in a box.", "question": ["is there the cat ?", "is there a box ?"], "prompt": "The {} is sitting in a box."}, {"index": 1517, "image_id": 2413812, "entity": "cat", "caption": "The cat has a toy banana.", "question": ["is there the cat ?", "is there a toy banana ?"], "prompt": "The {} has a toy banana."}, {"index": 1518, "image_id": 2413812, "entity": "cat", "caption": "The cat is sitting on tissue paper.", "question": ["is there the cat ?", "is there tissue paper ?"], "prompt": "The {} is sitting on tissue paper."}, {"index": 1519, "image_id": 2413648, "entity": "cat", "caption": "The cats eyes", "question": ["are there the cats ?"], "prompt": "The {}s eyes"}, {"index": 1520, "image_id": 2413626, "entity": "cat", "caption": "the cat has a white mark above his nose", "question": ["is there the cat ?", "is there a white mark ?", "is there his nose ?"], "prompt": "the {} has a white mark above his nose"}, {"index": 1521, "image_id": 2413626, "entity": "cat", "caption": "the cat sits on a brown rug", "question": ["is there the cat ?", "is there a brown rug ?"], "prompt": "the {} sits on a brown rug"}, {"index": 1522, "image_id": 2413626, "entity": "cat", "caption": "hairs inside cats ear", "question": ["are there hairs ?", "are there cats ?"], "prompt": "hairs inside {}s ear"}, {"index": 1523, "image_id": 2413626, "entity": "cat", "caption": "dark stripe on the top of cats head", "question": ["is there dark stripe ?", "is there the top ?", "are there cats ?"], "prompt": "dark stripe on the top of {}s head"}, {"index": 1524, "image_id": 2413626, "entity": "cat", "caption": "the cat is stripes", "question": ["is there the cat ?", "are there stripes ?"], "prompt": "the {} is stripes"}, {"index": 1525, "image_id": 2413626, "entity": "cat", "caption": "room wherein cat sniffs in, & snoozes upon, shoe, is tiled", "question": ["is there room ?", "is there cat ?", "is there shoe ?"], "prompt": "room wherein {} sniffs in, & snoozes upon, shoe, is tiled"}, {"index": 1526, "image_id": 2413626, "entity": "cat", "caption": "top of another shoes is behind sniffing cat", "question": ["is there top ?", "are there another shoes ?", "is there cat ?"], "prompt": "top of another shoes is behind sniffing {}"}, {"index": 1527, "image_id": 2413626, "entity": "cat", "caption": "cat's eye whisker points upward & to cat's left", "question": ["is there cat's eye whisker ?"], "prompt": "{}'s eye whisker points upward & to {}'s left"}, {"index": 1528, "image_id": 2413576, "entity": "cat", "caption": "Two cats are laying next to each other. ", "question": ["are there two cats ?"], "prompt": "Two {}s are laying next to each other. "}, {"index": 1529, "image_id": 2413576, "entity": "cat", "caption": "One cat has a white paw. ", "question": ["is there one cat ?"], "prompt": "One {} has a white paw. "}, {"index": 1530, "image_id": 2413576, "entity": "cat", "caption": "A large TV is behind the cats. ", "question": ["is there a large tv ?", "are there the cats ?"], "prompt": "A large TV is behind the {}s. "}, {"index": 1531, "image_id": 2413576, "entity": "cat", "caption": "The cat eyes are slightly closed.", "question": ["are there the cat eyes ?"], "prompt": "The {} eyes are slightly closed."}, {"index": 1532, "image_id": 2413428, "entity": "cat", "caption": "the cat looks in the toilet", "question": ["is there the cat ?", "is there the toilet ?"], "prompt": "the {} looks in the toilet"}, {"index": 1533, "image_id": 2413428, "entity": "cat", "caption": "the cat is wearing a red collar", "question": ["is there the cat ?", "is there a red collar ?"], "prompt": "the {} is wearing a red collar"}, {"index": 1534, "image_id": 2413428, "entity": "cat", "caption": "the cats collar has a red bell on it", "question": ["are there the cats collar ?", "is there a red bell ?"], "prompt": "the {}s collar has a red bell on it"}, {"index": 1535, "image_id": 2413428, "entity": "cat", "caption": "the cat has a long furry striped tail", "question": ["is there the cat ?", "is there a long furry striped tail ?"], "prompt": "the {} has a long furry striped tail"}, {"index": 1536, "image_id": 2413166, "entity": "cat", "caption": "Paws of cat that is sleeping in sink.", "question": ["are there paws ?", "is there cat ?", "is there sink ?"], "prompt": "Paws of {} that is sleeping in sink."}, {"index": 1537, "image_id": 2413166, "entity": "cat", "caption": "a cat is asleep in the sink\n", "question": ["is there a cat ?", "is there the sink ?"], "prompt": "a {} is asleep in the sink\n"}, {"index": 1538, "image_id": 2413166, "entity": "cat", "caption": "the cat has it's eyes closed", "question": ["is there the cat ?", "are there eyes ?"], "prompt": "the {} has it's eyes closed"}, {"index": 1539, "image_id": 2413166, "entity": "cat", "caption": "the cat has pink ears", "question": ["is there the cat ?", "are there pink ears ?"], "prompt": "the {} has pink ears"}, {"index": 1540, "image_id": 2413136, "entity": "cat", "caption": "cat is playing with sticks.", "question": ["is there cat ?", "are there sticks ?"], "prompt": "{} is playing with sticks."}, {"index": 1541, "image_id": 2412724, "entity": "cat", "caption": "Strap attached to black bag underneath the cat.", "question": ["is there strap ?", "is there black bag ?", "is there the cat ?"], "prompt": "Strap attached to black bag underneath the {}."}, {"index": 1542, "image_id": 2412724, "entity": "cat", "caption": "a cat has his paws extended", "question": ["is there a cat ?", "are there his paws ?"], "prompt": "a {} has his paws extended"}, {"index": 1543, "image_id": 2412724, "entity": "cat", "caption": "the cat is on top of a carrying case", "question": ["is there the cat ?", "is there top ?", "is there a carrying case ?"], "prompt": "the {} is on top of a carrying case"}, {"index": 1544, "image_id": 2412724, "entity": "cat", "caption": "an orange curtain is behind the cat", "question": ["is there an orange curtain ?", "is there the cat ?"], "prompt": "an orange curtain is behind the {}"}, {"index": 1545, "image_id": 2412724, "entity": "cat", "caption": "a small table is besides the cat", "question": ["is there a small table ?", "is there the cat ?"], "prompt": "a small table is besides the {}"}, {"index": 1546, "image_id": 2412724, "entity": "cat", "caption": "a ruler is laying in front of the cat", "question": ["is there a ruler ?", "is there front ?", "is there the cat ?"], "prompt": "a ruler is laying in front of the {}"}, {"index": 1547, "image_id": 2412724, "entity": "cat", "caption": " Handbag is under a cat", "question": ["is there handbag ?", "is there a cat ?"], "prompt": " Handbag is under a {}"}, {"index": 1548, "image_id": 2412724, "entity": "cat", "caption": "The cat's front left leg.", "question": ["is there the cat's front left leg ?"], "prompt": "The {}'s front left leg."}, {"index": 1549, "image_id": 2412463, "entity": "cat", "caption": "cat is looking at road", "question": ["is there cat ?", "is there road ?"], "prompt": "{} is looking at road"}, {"index": 1550, "image_id": 2412091, "entity": "cat", "caption": "The cat has a show under his paw.", "question": ["is there the cat ?", "is there a show ?", "is there his paw ?"], "prompt": "The {} has a show under his paw."}, {"index": 1551, "image_id": 2412091, "entity": "cat", "caption": "The cat has a shoe next to his mouth.", "question": ["is there the cat ?", "is there a shoe ?", "is there his mouth ?"], "prompt": "The {} has a shoe next to his mouth."}, {"index": 1552, "image_id": 2412091, "entity": "cat", "caption": "The catting is sitting on the tile floor.", "question": ["is there the catting ?", "is there the tile floor ?"], "prompt": "The {}ting is sitting on the tile floor."}, {"index": 1553, "image_id": 2412091, "entity": "cat", "caption": "the cat has the shoes", "question": ["is there the cat ?", "are there the shoes ?"], "prompt": "the {} has the shoes"}, {"index": 1554, "image_id": 2412091, "entity": "cat", "caption": "the cat has large pink ears", "question": ["is there the cat ?", "are there large pink ears ?"], "prompt": "the {} has large pink ears"}, {"index": 1555, "image_id": 2412091, "entity": "cat", "caption": "Paw of cat is over a shoe", "question": ["is there cat ?", "is there a shoe ?"], "prompt": "Paw of {} is over a shoe"}, {"index": 1556, "image_id": 2411940, "entity": "cat", "caption": "door behind cat is open", "question": ["is there door ?", "is there cat ?"], "prompt": "door behind {} is open"}, {"index": 1557, "image_id": 2411940, "entity": "cat", "caption": "the sky behind the cat is clear", "question": ["is there the sky ?", "is there the cat ?"], "prompt": "the sky behind the {} is clear"}, {"index": 1558, "image_id": 2411940, "entity": "cat", "caption": "tufts of hair grow out of the cats pink ears", "question": ["are there tufts ?", "is there hair ?", "are there the cats ?"], "prompt": "tufts of hair grow out of the {}s pink ears"}, {"index": 1559, "image_id": 2411940, "entity": "cat", "caption": "The cat is sitting on the grass", "question": ["is there the cat ?", "is there the grass ?"], "prompt": "The {} is sitting on the grass"}, {"index": 1560, "image_id": 2411940, "entity": "cat", "caption": "a brick building is behind the cat", "question": ["is there a brick building ?", "is there the cat ?"], "prompt": "a brick building is behind the {}"}, {"index": 1561, "image_id": 2411940, "entity": "cat", "caption": "white cat is outside", "question": ["is there white cat ?"], "prompt": "white {} is outside"}, {"index": 1562, "image_id": 2411669, "entity": "cat", "caption": "a cats ear", "question": ["are there a cats ?"], "prompt": "a {}s ear"}, {"index": 1563, "image_id": 2411669, "entity": "cat", "caption": "a cats left ear", "question": ["are there a cats ?", "is there ear ?"], "prompt": "a {}s left ear"}, {"index": 1564, "image_id": 2411669, "entity": "cat", "caption": "a cats front right paw", "question": ["are there a cats ?", "is there right paw ?"], "prompt": "a {}s front right paw"}, {"index": 1565, "image_id": 2411669, "entity": "cat", "caption": "grey and white cat is laying on bed", "question": ["is there white cat ?", "is there bed ?"], "prompt": "grey and white {} is laying on bed"}, {"index": 1566, "image_id": 2411669, "entity": "cat", "caption": "light green pillow is behind cat", "question": ["is there light green pillow ?", "is there cat ?"], "prompt": "light green pillow is behind {}"}, {"index": 1567, "image_id": 2411669, "entity": "cat", "caption": "cat has black spot on one foot", "question": ["is there cat ?", "is there black spot ?", "is there one foot ?"], "prompt": "{} has black spot on one foot"}, {"index": 1568, "image_id": 2411630, "entity": "cat", "caption": "the cat has a very short tail", "question": ["is there the cat ?", "is there a very short tail ?"], "prompt": "the {} has a very short tail"}, {"index": 1569, "image_id": 2411630, "entity": "cat", "caption": "the cat is wearing a bowtie", "question": ["is there the cat ?", "is there a bowtie ?"], "prompt": "the {} is wearing a bowtie"}, {"index": 1570, "image_id": 2415209, "entity": "cat", "caption": "green branch passing in front of cat", "question": ["is there green branch ?", "is there front ?", "is there cat ?"], "prompt": "green branch passing in front of {}"}, {"index": 1571, "image_id": 2415246, "entity": "cat", "caption": "The cats gray tail", "question": ["are there the cats ?", "is there tail ?"], "prompt": "The {}s gray tail"}, {"index": 1572, "image_id": 2415363, "entity": "cat", "caption": "the cat is licking the plate", "question": ["is there the cat ?", "is there the plate ?"], "prompt": "the {} is licking the plate"}, {"index": 1573, "image_id": 2415551, "entity": "cat", "caption": "cat is drinking water out of a bowl", "question": ["is there cat ?", "is there water ?", "is there a bowl ?"], "prompt": "{} is drinking water out of a bowl"}, {"index": 1574, "image_id": 2415551, "entity": "cat", "caption": "cat has a pink tounge", "question": ["is there cat ?", "is there a pink tounge ?"], "prompt": "{} has a pink tounge"}, {"index": 1575, "image_id": 2415551, "entity": "cat", "caption": "cat has closed gray eyes", "question": ["is there cat ?", "are there gray eyes ?"], "prompt": "{} has closed gray eyes"}, {"index": 1576, "image_id": 2415551, "entity": "cat", "caption": "cat has a closed gray eye", "question": ["is there cat ?", "is there a closed gray eye ?"], "prompt": "{} has a closed gray eye"}, {"index": 1577, "image_id": 2415551, "entity": "cat", "caption": "cat has a pointy gray ear", "question": ["is there cat ?", "is there a pointy gray ear ?"], "prompt": "{} has a pointy gray ear"}, {"index": 1578, "image_id": 2415590, "entity": "cat", "caption": "a cats paw in he background", "question": ["are there a cats ?"], "prompt": "a {}s paw in he background"}, {"index": 1579, "image_id": 2415980, "entity": "cat", "caption": "cat is standing by bottle", "question": ["is there cat ?", "is there bottle ?"], "prompt": "{} is standing by bottle"}, {"index": 1580, "image_id": 2415980, "entity": "cat", "caption": "cat has a gray and brown paw", "question": ["is there cat ?", "is there a gray and brown paw ?"], "prompt": "{} has a gray and brown paw"}, {"index": 1581, "image_id": 2415980, "entity": "cat", "caption": "A cat is sniffing a bottle", "question": ["is there a cat ?", "is there a bottle ?"], "prompt": "A {} is sniffing a bottle"}, {"index": 1582, "image_id": 2415980, "entity": "cat", "caption": "the cat is sniffing the bottle cap", "question": ["is there the cat ?", "is there the bottle cap ?"], "prompt": "the {} is sniffing the bottle cap"}, {"index": 1583, "image_id": 2415980, "entity": "cat", "caption": "grey and brown cat sniffing bottle", "question": ["is there grey and brown cat ?", "is there bottle ?"], "prompt": "grey and brown {} sniffing bottle"}, {"index": 1584, "image_id": 2416021, "entity": "cat", "caption": "the cats eye is green ", "question": ["are there the cats ?"], "prompt": "the {}s eye is green "}, {"index": 1585, "image_id": 2416334, "entity": "cat", "caption": "cat with its eyes closed ", "question": ["is there cat ?", "are there its eyes ?"], "prompt": "{} with its eyes closed "}, {"index": 1586, "image_id": 2416426, "entity": "cat", "caption": "a pink nose on the cats face", "question": ["is there a pink nose ?", "are there the cats ?"], "prompt": "a pink nose on the {}s face"}, {"index": 1587, "image_id": 2416426, "entity": "cat", "caption": "the cat is lying on a bag", "question": ["is there the cat ?", "is there a bag ?"], "prompt": "the {} is lying on a bag"}, {"index": 1588, "image_id": 2416814, "entity": "cat", "caption": "one cat with eyes half closed", "question": ["is there one cat ?", "are there eyes ?"], "prompt": "one {} with eyes half closed"}, {"index": 1589, "image_id": 2416814, "entity": "cat", "caption": "the cat is laying on papers", "question": ["is there the cat ?", "are there papers ?"], "prompt": "the {} is laying on papers"}, {"index": 1590, "image_id": 2416955, "entity": "cat", "caption": "The cat is sitting on wooden boards.", "question": ["is there the cat ?", "are there wooden boards ?"], "prompt": "The {} is sitting on wooden boards."}, {"index": 1591, "image_id": 2417872, "entity": "cat", "caption": "Person and cat are laying on the sofa ", "question": ["is there person ?", "is there cat ?", "is there the sofa ?"], "prompt": "Person and {} are laying on the sofa "}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02480495.json b/data/imagenet/compositions/prompts/n02480495.json
new file mode 100644
index 0000000000000000000000000000000000000000..09f9400ebc27bf7fc797bf61bfc10acd7b8fb5ce
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02480495.json
@@ -0,0 +1,213 @@
+[
+ {
+ "index": 0,
+ "image_id": 696,
+ "entity": "monkey",
+ "caption": "monkey holds young child",
+ "question": [
+ "is there monkey ?",
+ "is there young child ?"
+ ],
+ "prompt": "{} holds young child"
+ },
+ {
+ "index": 1,
+ "image_id": 696,
+ "entity": "monkey",
+ "caption": "young monkey has light brown nose",
+ "question": [
+ "is there young monkey ?",
+ "is there light brown nose ?"
+ ],
+ "prompt": "young {} has light brown nose"
+ },
+ {
+ "index": 2,
+ "image_id": 2400855,
+ "entity": "monkey",
+ "caption": "monkey rides on goat's back",
+ "question": [
+ "is there monkey ?",
+ "is there goat's back ?"
+ ],
+ "prompt": "{} rides on goat's back"
+ },
+ {
+ "index": 3,
+ "image_id": 2400855,
+ "entity": "monkey",
+ "caption": "small monkey wags tail",
+ "question": [
+ "are there small monkey wags tail ?"
+ ],
+ "prompt": "small {} wags tail"
+ },
+ {
+ "index": 4,
+ "image_id": 2394433,
+ "entity": "monkey",
+ "caption": "stuffed monkey holding a rattle ",
+ "question": [
+ "is there stuffed monkey ?",
+ "is there a rattle ?"
+ ],
+ "prompt": "stuffed {} holding a rattle "
+ },
+ {
+ "index": 5,
+ "image_id": 2390424,
+ "entity": "monkey",
+ "caption": "rocky perch where monkey is sitting",
+ "question": [
+ "is there rocky perch ?",
+ "is there monkey ?"
+ ],
+ "prompt": "rocky perch where {} is sitting"
+ },
+ {
+ "index": 6,
+ "image_id": 2376660,
+ "entity": "monkey",
+ "caption": "Stuffed monkey's left arm is over bottle of booze",
+ "question": [
+ "is there stuffed monkey's left arm ?",
+ "is there bottle ?",
+ "is there booze ?"
+ ],
+ "prompt": "Stuffed {}'s left arm is over bottle of booze"
+ },
+ {
+ "index": 7,
+ "image_id": 2376660,
+ "entity": "monkey",
+ "caption": "Stuffed monkey is wearing a white t-shirt",
+ "question": [
+ "is there stuffed monkey ?",
+ "is there a white t-shirt ?"
+ ],
+ "prompt": "Stuffed {} is wearing a white t-shirt"
+ },
+ {
+ "index": 8,
+ "image_id": 2376660,
+ "entity": "monkey",
+ "caption": "Stuffed monkey has dark brown eyes",
+ "question": [
+ "is there stuffed monkey ?",
+ "are there dark brown eyes ?"
+ ],
+ "prompt": "Stuffed {} has dark brown eyes"
+ },
+ {
+ "index": 9,
+ "image_id": 2376660,
+ "entity": "monkey",
+ "caption": "Stuffed monkey's paw is beige",
+ "question": [
+ "is there stuffed monkey's paw ?"
+ ],
+ "prompt": "Stuffed {}'s paw is beige"
+ },
+ {
+ "index": 10,
+ "image_id": 2371474,
+ "entity": "monkey",
+ "caption": "the monkey is holding a banana",
+ "question": [
+ "is there the monkey ?",
+ "is there a banana ?"
+ ],
+ "prompt": "the {} is holding a banana"
+ },
+ {
+ "index": 11,
+ "image_id": 2371474,
+ "entity": "monkey",
+ "caption": "the monkey is biting the banana",
+ "question": [
+ "is there the monkey ?",
+ "is there the banana ?"
+ ],
+ "prompt": "the {} is biting the banana"
+ },
+ {
+ "index": 12,
+ "image_id": 2349075,
+ "entity": "monkey",
+ "caption": "a chain link fence is aqua behind the monkeys",
+ "question": [
+ "is there a chain link fence ?",
+ "is there aqua ?",
+ "are there the monkeys ?"
+ ],
+ "prompt": "a chain link fence is aqua behind the {}s"
+ },
+ {
+ "index": 13,
+ "image_id": 2349075,
+ "entity": "monkey",
+ "caption": "the monkey is looking at the banana",
+ "question": [
+ "is there the monkey ?",
+ "is there the banana ?"
+ ],
+ "prompt": "the {} is looking at the banana"
+ },
+ {
+ "index": 14,
+ "image_id": 2349075,
+ "entity": "monkey",
+ "caption": "the monkey has no hair around her eyes",
+ "question": [
+ "is there the monkey ?",
+ "is there no hair ?",
+ "are there her eyes ?"
+ ],
+ "prompt": "the {} has no hair around her eyes"
+ },
+ {
+ "index": 15,
+ "image_id": 2336223,
+ "entity": "monkey",
+ "caption": "Green leaves on branches behind monkey.",
+ "question": [
+ "are there green leaves ?",
+ "are there branches ?",
+ "is there monkey ?"
+ ],
+ "prompt": "Green leaves on branches behind {}."
+ },
+ {
+ "index": 16,
+ "image_id": 2325413,
+ "entity": "monkey",
+ "caption": "the monkey is holding onto a red bar",
+ "question": [
+ "is there the monkey ?",
+ "is there a red bar ?"
+ ],
+ "prompt": "the {} is holding onto a red bar"
+ },
+ {
+ "index": 17,
+ "image_id": 2325413,
+ "entity": "monkey",
+ "caption": "the boy is imitating the monkey",
+ "question": [
+ "is there the boy ?",
+ "is there the monkey ?"
+ ],
+ "prompt": "the boy is imitating the {}"
+ },
+ {
+ "index": 18,
+ "image_id": 2412599,
+ "entity": "monkey",
+ "caption": "monkey feeding herself a piece if banana",
+ "question": [
+ "is there monkey ?",
+ "is there a piece ?"
+ ],
+ "prompt": "{} feeding herself a piece if banana"
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02480855.json b/data/imagenet/compositions/prompts/n02480855.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02480855.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02481823.json b/data/imagenet/compositions/prompts/n02481823.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02481823.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02483362.json b/data/imagenet/compositions/prompts/n02483362.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02483362.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02483708.json b/data/imagenet/compositions/prompts/n02483708.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02483708.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02484975.json b/data/imagenet/compositions/prompts/n02484975.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02484975.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02486261.json b/data/imagenet/compositions/prompts/n02486261.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02486261.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02486410.json b/data/imagenet/compositions/prompts/n02486410.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02486410.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02487347.json b/data/imagenet/compositions/prompts/n02487347.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02487347.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02488291.json b/data/imagenet/compositions/prompts/n02488291.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02488291.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02488702.json b/data/imagenet/compositions/prompts/n02488702.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02488702.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02489166.json b/data/imagenet/compositions/prompts/n02489166.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02489166.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02490219.json b/data/imagenet/compositions/prompts/n02490219.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02490219.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02492035.json b/data/imagenet/compositions/prompts/n02492035.json
new file mode 100644
index 0000000000000000000000000000000000000000..09f9400ebc27bf7fc797bf61bfc10acd7b8fb5ce
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02492035.json
@@ -0,0 +1,213 @@
+[
+ {
+ "index": 0,
+ "image_id": 696,
+ "entity": "monkey",
+ "caption": "monkey holds young child",
+ "question": [
+ "is there monkey ?",
+ "is there young child ?"
+ ],
+ "prompt": "{} holds young child"
+ },
+ {
+ "index": 1,
+ "image_id": 696,
+ "entity": "monkey",
+ "caption": "young monkey has light brown nose",
+ "question": [
+ "is there young monkey ?",
+ "is there light brown nose ?"
+ ],
+ "prompt": "young {} has light brown nose"
+ },
+ {
+ "index": 2,
+ "image_id": 2400855,
+ "entity": "monkey",
+ "caption": "monkey rides on goat's back",
+ "question": [
+ "is there monkey ?",
+ "is there goat's back ?"
+ ],
+ "prompt": "{} rides on goat's back"
+ },
+ {
+ "index": 3,
+ "image_id": 2400855,
+ "entity": "monkey",
+ "caption": "small monkey wags tail",
+ "question": [
+ "are there small monkey wags tail ?"
+ ],
+ "prompt": "small {} wags tail"
+ },
+ {
+ "index": 4,
+ "image_id": 2394433,
+ "entity": "monkey",
+ "caption": "stuffed monkey holding a rattle ",
+ "question": [
+ "is there stuffed monkey ?",
+ "is there a rattle ?"
+ ],
+ "prompt": "stuffed {} holding a rattle "
+ },
+ {
+ "index": 5,
+ "image_id": 2390424,
+ "entity": "monkey",
+ "caption": "rocky perch where monkey is sitting",
+ "question": [
+ "is there rocky perch ?",
+ "is there monkey ?"
+ ],
+ "prompt": "rocky perch where {} is sitting"
+ },
+ {
+ "index": 6,
+ "image_id": 2376660,
+ "entity": "monkey",
+ "caption": "Stuffed monkey's left arm is over bottle of booze",
+ "question": [
+ "is there stuffed monkey's left arm ?",
+ "is there bottle ?",
+ "is there booze ?"
+ ],
+ "prompt": "Stuffed {}'s left arm is over bottle of booze"
+ },
+ {
+ "index": 7,
+ "image_id": 2376660,
+ "entity": "monkey",
+ "caption": "Stuffed monkey is wearing a white t-shirt",
+ "question": [
+ "is there stuffed monkey ?",
+ "is there a white t-shirt ?"
+ ],
+ "prompt": "Stuffed {} is wearing a white t-shirt"
+ },
+ {
+ "index": 8,
+ "image_id": 2376660,
+ "entity": "monkey",
+ "caption": "Stuffed monkey has dark brown eyes",
+ "question": [
+ "is there stuffed monkey ?",
+ "are there dark brown eyes ?"
+ ],
+ "prompt": "Stuffed {} has dark brown eyes"
+ },
+ {
+ "index": 9,
+ "image_id": 2376660,
+ "entity": "monkey",
+ "caption": "Stuffed monkey's paw is beige",
+ "question": [
+ "is there stuffed monkey's paw ?"
+ ],
+ "prompt": "Stuffed {}'s paw is beige"
+ },
+ {
+ "index": 10,
+ "image_id": 2371474,
+ "entity": "monkey",
+ "caption": "the monkey is holding a banana",
+ "question": [
+ "is there the monkey ?",
+ "is there a banana ?"
+ ],
+ "prompt": "the {} is holding a banana"
+ },
+ {
+ "index": 11,
+ "image_id": 2371474,
+ "entity": "monkey",
+ "caption": "the monkey is biting the banana",
+ "question": [
+ "is there the monkey ?",
+ "is there the banana ?"
+ ],
+ "prompt": "the {} is biting the banana"
+ },
+ {
+ "index": 12,
+ "image_id": 2349075,
+ "entity": "monkey",
+ "caption": "a chain link fence is aqua behind the monkeys",
+ "question": [
+ "is there a chain link fence ?",
+ "is there aqua ?",
+ "are there the monkeys ?"
+ ],
+ "prompt": "a chain link fence is aqua behind the {}s"
+ },
+ {
+ "index": 13,
+ "image_id": 2349075,
+ "entity": "monkey",
+ "caption": "the monkey is looking at the banana",
+ "question": [
+ "is there the monkey ?",
+ "is there the banana ?"
+ ],
+ "prompt": "the {} is looking at the banana"
+ },
+ {
+ "index": 14,
+ "image_id": 2349075,
+ "entity": "monkey",
+ "caption": "the monkey has no hair around her eyes",
+ "question": [
+ "is there the monkey ?",
+ "is there no hair ?",
+ "are there her eyes ?"
+ ],
+ "prompt": "the {} has no hair around her eyes"
+ },
+ {
+ "index": 15,
+ "image_id": 2336223,
+ "entity": "monkey",
+ "caption": "Green leaves on branches behind monkey.",
+ "question": [
+ "are there green leaves ?",
+ "are there branches ?",
+ "is there monkey ?"
+ ],
+ "prompt": "Green leaves on branches behind {}."
+ },
+ {
+ "index": 16,
+ "image_id": 2325413,
+ "entity": "monkey",
+ "caption": "the monkey is holding onto a red bar",
+ "question": [
+ "is there the monkey ?",
+ "is there a red bar ?"
+ ],
+ "prompt": "the {} is holding onto a red bar"
+ },
+ {
+ "index": 17,
+ "image_id": 2325413,
+ "entity": "monkey",
+ "caption": "the boy is imitating the monkey",
+ "question": [
+ "is there the boy ?",
+ "is there the monkey ?"
+ ],
+ "prompt": "the boy is imitating the {}"
+ },
+ {
+ "index": 18,
+ "image_id": 2412599,
+ "entity": "monkey",
+ "caption": "monkey feeding herself a piece if banana",
+ "question": [
+ "is there monkey ?",
+ "is there a piece ?"
+ ],
+ "prompt": "{} feeding herself a piece if banana"
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02492660.json b/data/imagenet/compositions/prompts/n02492660.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02492660.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02493509.json b/data/imagenet/compositions/prompts/n02493509.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02493509.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02493793.json b/data/imagenet/compositions/prompts/n02493793.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02493793.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02494079.json b/data/imagenet/compositions/prompts/n02494079.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02494079.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02497673.json b/data/imagenet/compositions/prompts/n02497673.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02497673.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02500267.json b/data/imagenet/compositions/prompts/n02500267.json
new file mode 100644
index 0000000000000000000000000000000000000000..07792918a8d7b955a2fd417304c4d90a821c5256
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02500267.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 696, "entity": "monkey", "caption": "monkey holds young child", "question": ["is there monkey ?", "is there young child ?"], "prompt": "{} holds young child"}, {"index": 1, "image_id": 696, "entity": "monkey", "caption": "young monkey has light brown nose", "question": ["is there young monkey ?", "is there light brown nose ?"], "prompt": "young {} has light brown nose"}, {"index": 2, "image_id": 2400855, "entity": "monkey", "caption": "monkey rides on goat's back", "question": ["is there monkey ?", "is there goat's back ?"], "prompt": "{} rides on goat's back"}, {"index": 3, "image_id": 2400855, "entity": "monkey", "caption": "small monkey wags tail", "question": ["are there small monkey wags tail ?"], "prompt": "small {} wags tail"}, {"index": 4, "image_id": 2394433, "entity": "monkey", "caption": "stuffed monkey holding a rattle ", "question": ["is there stuffed monkey ?", "is there a rattle ?"], "prompt": "stuffed {} holding a rattle "}, {"index": 5, "image_id": 2390424, "entity": "monkey", "caption": "rocky perch where monkey is sitting", "question": ["is there rocky perch ?", "is there monkey ?"], "prompt": "rocky perch where {} is sitting"}, {"index": 6, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's left arm is over bottle of booze", "question": ["is there stuffed monkey's left arm ?", "is there bottle ?", "is there booze ?"], "prompt": "Stuffed {}'s left arm is over bottle of booze"}, {"index": 7, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey is wearing a white t-shirt", "question": ["is there stuffed monkey ?", "is there a white t-shirt ?"], "prompt": "Stuffed {} is wearing a white t-shirt"}, {"index": 8, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey has dark brown eyes", "question": ["is there stuffed monkey ?", "are there dark brown eyes ?"], "prompt": "Stuffed {} has dark brown eyes"}, {"index": 9, "image_id": 2376660, "entity": "monkey", "caption": "Stuffed monkey's paw is beige", "question": ["is there stuffed monkey's paw ?"], "prompt": "Stuffed {}'s paw is beige"}, {"index": 10, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is holding a banana", "question": ["is there the monkey ?", "is there a banana ?"], "prompt": "the {} is holding a banana"}, {"index": 11, "image_id": 2371474, "entity": "monkey", "caption": "the monkey is biting the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is biting the banana"}, {"index": 12, "image_id": 2349075, "entity": "monkey", "caption": "a chain link fence is aqua behind the monkeys", "question": ["is there a chain link fence ?", "is there aqua ?", "are there the monkeys ?"], "prompt": "a chain link fence is aqua behind the {}s"}, {"index": 13, "image_id": 2349075, "entity": "monkey", "caption": "the monkey is looking at the banana", "question": ["is there the monkey ?", "is there the banana ?"], "prompt": "the {} is looking at the banana"}, {"index": 14, "image_id": 2349075, "entity": "monkey", "caption": "the monkey has no hair around her eyes", "question": ["is there the monkey ?", "is there no hair ?", "are there her eyes ?"], "prompt": "the {} has no hair around her eyes"}, {"index": 15, "image_id": 2336223, "entity": "monkey", "caption": "Green leaves on branches behind monkey.", "question": ["are there green leaves ?", "are there branches ?", "is there monkey ?"], "prompt": "Green leaves on branches behind {}."}, {"index": 16, "image_id": 2325413, "entity": "monkey", "caption": "the monkey is holding onto a red bar", "question": ["is there the monkey ?", "is there a red bar ?"], "prompt": "the {} is holding onto a red bar"}, {"index": 17, "image_id": 2325413, "entity": "monkey", "caption": "the boy is imitating the monkey", "question": ["is there the boy ?", "is there the monkey ?"], "prompt": "the boy is imitating the {}"}, {"index": 18, "image_id": 2412599, "entity": "monkey", "caption": "monkey feeding herself a piece if banana", "question": ["is there monkey ?", "is there a piece ?"], "prompt": "{} feeding herself a piece if banana"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02690373.json b/data/imagenet/compositions/prompts/n02690373.json
new file mode 100644
index 0000000000000000000000000000000000000000..b8128b5234931aab4aebd8dbdb20321fcc3bd689
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02690373.json
@@ -0,0 +1,221 @@
+[
+ {
+ "index": 0,
+ "image_id": 150372,
+ "entity": "aircraft",
+ "caption": "One of the four pieces of the structure that holds the display aircraft.",
+ "question": [
+ "are there the four pieces ?",
+ "is there the structure ?",
+ "is there the display aircraft ?"
+ ],
+ "prompt": "One of the four pieces of the structure that holds the display {}."
+ },
+ {
+ "index": 1,
+ "image_id": 2409629,
+ "entity": "aircraft",
+ "caption": "this is the aircraft's propeller",
+ "question": [
+ "is there the aircraft's propeller ?"
+ ],
+ "prompt": "this is the {}'s propeller"
+ },
+ {
+ "index": 2,
+ "image_id": 2409629,
+ "entity": "aircraft",
+ "caption": "this is the aircraft's windscreen",
+ "question": [
+ "is there the aircraft's windscreen ?"
+ ],
+ "prompt": "this is the {}'s windscreen"
+ },
+ {
+ "index": 3,
+ "image_id": 2408015,
+ "entity": "aircraft",
+ "caption": "the aircraft cockpit ",
+ "question": [
+ "is there the aircraft cockpit ?"
+ ],
+ "prompt": "the {} cockpit "
+ },
+ {
+ "index": 4,
+ "image_id": 2406077,
+ "entity": "aircraft",
+ "caption": "this is the aircraft wing",
+ "question": [
+ "is there the aircraft wing ?"
+ ],
+ "prompt": "this is the {} wing"
+ },
+ {
+ "index": 5,
+ "image_id": 2392220,
+ "entity": "aircraft",
+ "caption": "The aircraft is white and taupe with a red stripe.",
+ "question": [
+ "is there the aircraft ?",
+ "is there a red stripe ?"
+ ],
+ "prompt": "The {} is white and taupe with a red stripe."
+ },
+ {
+ "index": 6,
+ "image_id": 2392220,
+ "entity": "aircraft",
+ "caption": "The aircraft has five small windows.",
+ "question": [
+ "is there the aircraft ?",
+ "are there five small windows ?"
+ ],
+ "prompt": "The {} has five small windows."
+ },
+ {
+ "index": 7,
+ "image_id": 2392220,
+ "entity": "aircraft",
+ "caption": "The aircraft is on the ground.",
+ "question": [
+ "is there the aircraft ?",
+ "is there the ground ?"
+ ],
+ "prompt": "The {} is on the ground."
+ },
+ {
+ "index": 8,
+ "image_id": 2392220,
+ "entity": "aircraft",
+ "caption": "The door of the aircraft is closed.",
+ "question": [
+ "is there the door ?",
+ "is there the aircraft ?"
+ ],
+ "prompt": "The door of the {} is closed."
+ },
+ {
+ "index": 9,
+ "image_id": 2378220,
+ "entity": "aircraft",
+ "caption": "front wheels of aircraft are in the air",
+ "question": [
+ "are there front wheels ?",
+ "are there aircraft ?",
+ "is there the air ?"
+ ],
+ "prompt": "front wheels of {} are in the air"
+ },
+ {
+ "index": 10,
+ "image_id": 2374043,
+ "entity": "aircraft",
+ "caption": "Commercial aircraft is boarding passengers",
+ "question": [
+ "is there commercial aircraft ?",
+ "are there boarding passengers ?"
+ ],
+ "prompt": "Commercial {} is boarding passengers"
+ },
+ {
+ "index": 11,
+ "image_id": 2371442,
+ "entity": "aircraft",
+ "caption": "nose of aircraft is pointy",
+ "question": [
+ "is there nose ?",
+ "is there aircraft ?"
+ ],
+ "prompt": "nose of {} is pointy"
+ },
+ {
+ "index": 12,
+ "image_id": 2369842,
+ "entity": "aircraft",
+ "caption": "Malaysia airlines aircraft at the gate",
+ "question": [
+ "is there malaysia airlines aircraft ?",
+ "is there the gate ?"
+ ],
+ "prompt": "Malaysia airlines {} at the gate"
+ },
+ {
+ "index": 13,
+ "image_id": 2366670,
+ "entity": "aircraft",
+ "caption": "Man flying ultralight aircraft.",
+ "question": [
+ "is there man ?",
+ "is there ultralight aircraft ?"
+ ],
+ "prompt": "Man flying ultralight {}."
+ },
+ {
+ "index": 14,
+ "image_id": 2352196,
+ "entity": "aircraft",
+ "caption": "aircraft mounted on wires",
+ "question": [
+ "is there aircraft ?",
+ "are there wires ?"
+ ],
+ "prompt": "{} mounted on wires"
+ },
+ {
+ "index": 15,
+ "image_id": 2348896,
+ "entity": "aircraft",
+ "caption": "Loading ramps for passengers to enter aircraft",
+ "question": [
+ "are there loading ramps ?",
+ "are there passengers ?",
+ "is there aircraft ?"
+ ],
+ "prompt": "Loading ramps for passengers to enter {}"
+ },
+ {
+ "index": 16,
+ "image_id": 2344832,
+ "entity": "aircraft",
+ "caption": "Propeller blade on an aircraft",
+ "question": [
+ "is there propeller blade ?",
+ "is there an aircraft ?"
+ ],
+ "prompt": "Propeller blade on an {}"
+ },
+ {
+ "index": 17,
+ "image_id": 2344305,
+ "entity": "aircraft",
+ "caption": "A big building is behind the aircraft",
+ "question": [
+ "is there a big building ?",
+ "is there the aircraft ?"
+ ],
+ "prompt": "A big building is behind the {}"
+ },
+ {
+ "index": 18,
+ "image_id": 2335444,
+ "entity": "aircraft",
+ "caption": "Grey, military aircraft, parked side by side. ",
+ "question": [
+ "is there military aircraft ?",
+ "is there side ?"
+ ],
+ "prompt": "Grey, military {}, parked side by side. "
+ },
+ {
+ "index": 19,
+ "image_id": 2332303,
+ "entity": "aircraft",
+ "caption": "SM mentioned on tail wing of the aircraft",
+ "question": [
+ "is there tail wing ?",
+ "is there the aircraft ?"
+ ],
+ "prompt": "SM mentioned on tail wing of the {}"
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02692877.json b/data/imagenet/compositions/prompts/n02692877.json
new file mode 100644
index 0000000000000000000000000000000000000000..e4d9e0755c1916750fcb30d51a75002c7d7c8795
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02692877.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 150372, "entity": "aircraft", "caption": "One of the four pieces of the structure that holds the display aircraft.", "question": ["are there the four pieces ?", "is there the structure ?", "is there the display aircraft ?"], "prompt": "One of the four pieces of the structure that holds the display {}."}, {"index": 1, "image_id": 2409629, "entity": "aircraft", "caption": "this is the aircraft's propeller", "question": ["is there the aircraft's propeller ?"], "prompt": "this is the {}'s propeller"}, {"index": 2, "image_id": 2409629, "entity": "aircraft", "caption": "this is the aircraft's windscreen", "question": ["is there the aircraft's windscreen ?"], "prompt": "this is the {}'s windscreen"}, {"index": 3, "image_id": 2408015, "entity": "aircraft", "caption": "the aircraft cockpit ", "question": ["is there the aircraft cockpit ?"], "prompt": "the {} cockpit "}, {"index": 4, "image_id": 2406077, "entity": "aircraft", "caption": "this is the aircraft wing", "question": ["is there the aircraft wing ?"], "prompt": "this is the {} wing"}, {"index": 5, "image_id": 2392220, "entity": "aircraft", "caption": "The aircraft is white and taupe with a red stripe.", "question": ["is there the aircraft ?", "is there a red stripe ?"], "prompt": "The {} is white and taupe with a red stripe."}, {"index": 6, "image_id": 2392220, "entity": "aircraft", "caption": "The aircraft has five small windows.", "question": ["is there the aircraft ?", "are there five small windows ?"], "prompt": "The {} has five small windows."}, {"index": 7, "image_id": 2392220, "entity": "aircraft", "caption": "The aircraft is on the ground.", "question": ["is there the aircraft ?", "is there the ground ?"], "prompt": "The {} is on the ground."}, {"index": 8, "image_id": 2392220, "entity": "aircraft", "caption": "The door of the aircraft is closed.", "question": ["is there the door ?", "is there the aircraft ?"], "prompt": "The door of the {} is closed."}, {"index": 9, "image_id": 2378220, "entity": "aircraft", "caption": "front wheels of aircraft are in the air", "question": ["are there front wheels ?", "are there aircraft ?", "is there the air ?"], "prompt": "front wheels of {} are in the air"}, {"index": 10, "image_id": 2374043, "entity": "aircraft", "caption": "Commercial aircraft is boarding passengers", "question": ["is there commercial aircraft ?", "are there boarding passengers ?"], "prompt": "Commercial {} is boarding passengers"}, {"index": 11, "image_id": 2371442, "entity": "aircraft", "caption": "nose of aircraft is pointy", "question": ["is there nose ?", "is there aircraft ?"], "prompt": "nose of {} is pointy"}, {"index": 12, "image_id": 2369842, "entity": "aircraft", "caption": "Malaysia airlines aircraft at the gate", "question": ["is there malaysia airlines aircraft ?", "is there the gate ?"], "prompt": "Malaysia airlines {} at the gate"}, {"index": 13, "image_id": 2366670, "entity": "aircraft", "caption": "Man flying ultralight aircraft.", "question": ["is there man ?", "is there ultralight aircraft ?"], "prompt": "Man flying ultralight {}."}, {"index": 14, "image_id": 2352196, "entity": "aircraft", "caption": "aircraft mounted on wires", "question": ["is there aircraft ?", "are there wires ?"], "prompt": "{} mounted on wires"}, {"index": 15, "image_id": 2348896, "entity": "aircraft", "caption": "Loading ramps for passengers to enter aircraft", "question": ["are there loading ramps ?", "are there passengers ?", "is there aircraft ?"], "prompt": "Loading ramps for passengers to enter {}"}, {"index": 16, "image_id": 2344832, "entity": "aircraft", "caption": "Propeller blade on an aircraft", "question": ["is there propeller blade ?", "is there an aircraft ?"], "prompt": "Propeller blade on an {}"}, {"index": 17, "image_id": 2344305, "entity": "aircraft", "caption": "A big building is behind the aircraft", "question": ["is there a big building ?", "is there the aircraft ?"], "prompt": "A big building is behind the {}"}, {"index": 18, "image_id": 2335444, "entity": "aircraft", "caption": "Grey, military aircraft, parked side by side. ", "question": ["is there military aircraft ?", "is there side ?"], "prompt": "Grey, military {}, parked side by side. "}, {"index": 19, "image_id": 2332303, "entity": "aircraft", "caption": "SM mentioned on tail wing of the aircraft", "question": ["is there tail wing ?", "is there the aircraft ?"], "prompt": "SM mentioned on tail wing of the {}"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02701002.json b/data/imagenet/compositions/prompts/n02701002.json
new file mode 100644
index 0000000000000000000000000000000000000000..2381f38921c9ad56862e92e8fc850617008827e1
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02701002.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 65, "entity": "car", "caption": "License plate placed on black car", "question": ["is there license plate ?", "is there black car ?"], "prompt": "License plate placed on black {}"}, {"index": 1, "image_id": 316, "entity": "car", "caption": "the seats are in the car", "question": ["are there the seats ?", "is there the car ?"], "prompt": "the seats are in the {}"}, {"index": 2, "image_id": 692, "entity": "car", "caption": "A man is sitting in a car.", "question": ["is there a man ?", "is there a car ?"], "prompt": "A man is sitting in a {}."}, {"index": 3, "image_id": 692, "entity": "car", "caption": "A rear view mirror is in the car.", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "A rear view mirror is in the {}."}, {"index": 4, "image_id": 1029, "entity": "car", "caption": "man is sitting in tan car", "question": ["is there man ?", "is there tan car ?"], "prompt": "man is sitting in tan {}"}, {"index": 5, "image_id": 1710, "entity": "car", "caption": "silver trim on car", "question": ["is there silver trim ?", "is there car ?"], "prompt": "silver trim on {}"}, {"index": 6, "image_id": 2889, "entity": "car", "caption": "rear left tire of the white car", "question": ["is there rear left tire ?", "is there the white car ?"], "prompt": "rear left tire of the white {}"}, {"index": 7, "image_id": 2889, "entity": "car", "caption": "front left tire of the white car", "question": ["is there front left tire ?", "is there the white car ?"], "prompt": "front left tire of the white {}"}, {"index": 8, "image_id": 3288, "entity": "car", "caption": "the white car has doors", "question": ["is there the white car ?", "are there doors ?"], "prompt": "the white {} has doors"}, {"index": 9, "image_id": 3288, "entity": "car", "caption": "the tail light is red on the back of the car", "question": ["is there the tail light ?", "is there the back ?", "is there the car ?"], "prompt": "the tail light is red on the back of the {}"}, {"index": 10, "image_id": 3378, "entity": "car", "caption": "red car parked streetside", "question": ["is there red car ?"], "prompt": "red {} parked streetside"}, {"index": 11, "image_id": 3378, "entity": "car", "caption": "door handle on black car", "question": ["is there door ?", "is there black car ?"], "prompt": "door handle on black {}"}, {"index": 12, "image_id": 3493, "entity": "car", "caption": "car has a front light", "question": ["is there car ?", "is there a front light ?"], "prompt": "{} has a front light"}, {"index": 13, "image_id": 3493, "entity": "car", "caption": "car has front light", "question": ["is there car ?", "is there front light ?"], "prompt": "{} has front light"}, {"index": 14, "image_id": 3493, "entity": "car", "caption": "car has grey trim", "question": ["is there car ?"], "prompt": "{} has grey trim"}, {"index": 15, "image_id": 3493, "entity": "car", "caption": "red car has blue and white plate", "question": ["is there red car ?", "is there blue and white plate ?"], "prompt": "red {} has blue and white plate"}, {"index": 16, "image_id": 3493, "entity": "car", "caption": "sidewalk is next to car", "question": ["is there sidewalk ?"], "prompt": "sidewalk is next to {}"}, {"index": 17, "image_id": 3493, "entity": "car", "caption": "car has two headlights", "question": ["is there car ?", "are there two headlights ?"], "prompt": "{} has two headlights"}, {"index": 18, "image_id": 3764, "entity": "car", "caption": "mannequins are behind car", "question": ["are there mannequins ?", "is there car ?"], "prompt": "mannequins are behind {}"}, {"index": 19, "image_id": 3997, "entity": "car", "caption": "a red and black seat belt latch in a car", "question": ["is there a red and black seat belt latch ?", "is there a car ?"], "prompt": "a red and black seat belt latch in a {}"}, {"index": 20, "image_id": 3997, "entity": "car", "caption": "a black head rest in a car", "question": ["is there a black head ?", "is there a car ?"], "prompt": "a black head rest in a {}"}, {"index": 21, "image_id": 3997, "entity": "car", "caption": "a silver and red door handle in a car", "question": ["is there a silver and red door handle ?", "is there a car ?"], "prompt": "a silver and red door handle in a {}"}, {"index": 22, "image_id": 4526, "entity": "car", "caption": "a car front headlight", "question": ["is there a car front headlight ?"], "prompt": "a {} front headlight"}, {"index": 23, "image_id": 4526, "entity": "car", "caption": "the right front tire of the purple car is black in color.", "question": ["is there the right front tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the right front tire of the purple {} is black in color."}, {"index": 24, "image_id": 4526, "entity": "car", "caption": "the back right tire of the purple car is black in color.", "question": ["is there the back right tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the back right tire of the purple {} is black in color."}, {"index": 25, "image_id": 4526, "entity": "car", "caption": "the right front light of the purple car is round in shape.", "question": ["is there the right front light ?", "is there the purple car ?", "is there shape ?"], "prompt": "the right front light of the purple {} is round in shape."}, {"index": 26, "image_id": 2415144, "entity": "car", "caption": "police car in front of fire hydrant", "question": ["is there police car ?", "is there front ?", "is there fire hydrant ?"], "prompt": "police {} in front of fire hydrant"}, {"index": 27, "image_id": 497921, "entity": "car", "caption": "Seat belt coming from the side of car.", "question": ["is there seat belt ?", "is there the side ?", "is there car ?"], "prompt": "Seat belt coming from the side of {}."}, {"index": 28, "image_id": 713086, "entity": "car", "caption": "car has an antenna", "question": ["is there car ?", "is there an antenna ?"], "prompt": "{} has an antenna"}, {"index": 29, "image_id": 713093, "entity": "car", "caption": "Person in black coat standing next to vintage green car", "question": ["is there person ?", "is there black coat ?", "is there vintage green car ?"], "prompt": "Person in black coat standing next to vintage green {}"}, {"index": 30, "image_id": 713101, "entity": "car", "caption": "car has a window", "question": ["is there car ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 31, "image_id": 1592605, "entity": "car", "caption": "A grey car passes by", "question": ["is there a grey car ?"], "prompt": "A grey {} passes by"}, {"index": 32, "image_id": 2414932, "entity": "car", "caption": "The cat sits on the car.", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat sits on the {}."}, {"index": 33, "image_id": 2414470, "entity": "car", "caption": "A car's door handle", "question": ["is there a car's door ?"], "prompt": "A {}'s door handle"}, {"index": 34, "image_id": 2414470, "entity": "car", "caption": "Door handle on a car door.", "question": ["is there door ?", "is there a car door ?"], "prompt": "Door handle on a {} door."}, {"index": 35, "image_id": 2414470, "entity": "car", "caption": "The man is sitting in the car's driver seat.", "question": ["is there the man ?", "is there the car's driver seat ?"], "prompt": "The man is sitting in the {}'s driver seat."}, {"index": 36, "image_id": 2412607, "entity": "car", "caption": "Automobile seats inside the car are gray", "question": ["are there automobile seats ?", "is there the car ?"], "prompt": "Automobile seats inside the {} are gray"}, {"index": 37, "image_id": 2412607, "entity": "car", "caption": "silver door handle on car", "question": ["is there silver door ?", "is there car ?"], "prompt": "silver door handle on {}"}, {"index": 38, "image_id": 2412101, "entity": "car", "caption": "Red car parked on right side of street ", "question": ["is there red car ?", "is there right side ?", "is there street ?"], "prompt": "Red {} parked on right side of street "}, {"index": 39, "image_id": 2412101, "entity": "car", "caption": "Front left tire on gray car.", "question": ["is there front ?", "is there tire ?", "is there gray car ?"], "prompt": "Front left tire on gray {}."}, {"index": 40, "image_id": 2411491, "entity": "car", "caption": "car door is unlocked", "question": ["is there car door ?"], "prompt": "{} door is unlocked"}, {"index": 41, "image_id": 2410940, "entity": "car", "caption": "Hood of car is big", "question": ["is there hood ?", "is there car ?"], "prompt": "Hood of {} is big"}, {"index": 42, "image_id": 2410404, "entity": "car", "caption": "Hood popped open on car in background.", "question": ["is there hood ?", "is there car ?", "is there background ?"], "prompt": "Hood popped open on {} in background."}, {"index": 43, "image_id": 2410319, "entity": "car", "caption": "woman is inside of car", "question": ["is there woman ?", "is there car ?"], "prompt": "woman is inside of {}"}, {"index": 44, "image_id": 2410303, "entity": "car", "caption": "dark car the dog is sitting in", "question": ["is there dark car ?", "is there the dog ?"], "prompt": "dark {} the dog is sitting in"}, {"index": 45, "image_id": 2410034, "entity": "car", "caption": "Strap of car sit", "question": ["is there strap ?", "is there car ?"], "prompt": "Strap of {} sit"}, {"index": 46, "image_id": 2409981, "entity": "car", "caption": "Flags are on top of the car", "question": ["are there flags ?", "is there top ?", "is there the car ?"], "prompt": "Flags are on top of the {}"}, {"index": 47, "image_id": 2409288, "entity": "car", "caption": "car is ordering food", "question": ["is there car ?", "is there food ?"], "prompt": "{} is ordering food"}, {"index": 48, "image_id": 2409288, "entity": "car", "caption": "Silver door lock on a car", "question": ["is there silver door ?", "is there a car ?"], "prompt": "Silver door lock on a {}"}, {"index": 49, "image_id": 2408616, "entity": "car", "caption": "road the car is driving on", "question": ["is there road ?", "is there the car ?"], "prompt": "road the {} is driving on"}, {"index": 50, "image_id": 2408935, "entity": "car", "caption": "Cat sitting on a car.", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat sitting on a {}."}, {"index": 51, "image_id": 2408590, "entity": "car", "caption": "Front of car is red", "question": ["is there front ?", "is there car ?"], "prompt": "Front of {} is red"}, {"index": 52, "image_id": 2408413, "entity": "car", "caption": "Bamper of car is black", "question": ["is there car ?"], "prompt": "Bamper of {} is black"}, {"index": 53, "image_id": 2408413, "entity": "car", "caption": "Front headlight on a car. ", "question": ["is there front headlight ?", "is there a car ?"], "prompt": "Front headlight on a {}. "}, {"index": 54, "image_id": 2408413, "entity": "car", "caption": "Front turn signal light on a car. ", "question": ["is there front turn signal light ?", "is there a car ?"], "prompt": "Front turn signal light on a {}. "}, {"index": 55, "image_id": 2408413, "entity": "car", "caption": "the side of the front headlight on the car", "question": ["is there the side ?", "is there the front headlight ?", "is there the car ?"], "prompt": "the side of the front headlight on the {}"}, {"index": 56, "image_id": 2408016, "entity": "car", "caption": "The word Jazz written on back of car", "question": ["is there the word jazz ?", "is there car ?"], "prompt": "The word Jazz written on back of {}"}, {"index": 57, "image_id": 2408012, "entity": "car", "caption": "the car has a black underneth", "question": ["is there the car ?", "is there a black underneth ?"], "prompt": "the {} has a black underneth"}, {"index": 58, "image_id": 2407776, "entity": "car", "caption": "a parking meter is next to the car", "question": ["is there a parking meter ?", "is there the car ?"], "prompt": "a parking meter is next to the {}"}, {"index": 59, "image_id": 2407740, "entity": "car", "caption": "both cars tail lights are on", "question": ["are there both cars tail lights ?"], "prompt": "both {}s tail lights are on"}, {"index": 60, "image_id": 2407740, "entity": "car", "caption": "A red light is on a second car. ", "question": ["is there a red light ?", "is there a second car ?"], "prompt": "A red light is on a second {}. "}, {"index": 61, "image_id": 2407740, "entity": "car", "caption": "rain drops on car windshield", "question": ["is there rain ?", "is there car windshield ?"], "prompt": "rain drops on {} windshield"}, {"index": 62, "image_id": 2407600, "entity": "car", "caption": "white cup placed on roof of car", "question": ["is there roof ?", "is there car ?"], "prompt": "white cup placed on roof of {}"}, {"index": 63, "image_id": 2407600, "entity": "car", "caption": "The back tire of the car where the man is sitting.", "question": ["is there the back tire ?", "is there the car ?", "is there the man ?"], "prompt": "The back tire of the {} where the man is sitting."}, {"index": 64, "image_id": 2407600, "entity": "car", "caption": "The front tire of the car where the man is sitting.", "question": ["is there the front tire ?", "is there the car ?", "is there the man ?"], "prompt": "The front tire of the {} where the man is sitting."}, {"index": 65, "image_id": 2407181, "entity": "car", "caption": "Man sitting on car ", "question": ["is there man ?", "is there car ?"], "prompt": "Man sitting on {} "}, {"index": 66, "image_id": 2407181, "entity": "car", "caption": "The man is sitting inside a car.", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is sitting inside a {}."}, {"index": 67, "image_id": 2406983, "entity": "car", "caption": "The car has a Mercedes emblem", "question": ["is there the car ?", "are there a mercedes emblem ?"], "prompt": "The {} has a Mercedes emblem"}, {"index": 68, "image_id": 2406983, "entity": "car", "caption": "the car has 55000000 on the trunk", "question": ["is there the car ?", "is there the trunk ?"], "prompt": "the {} has 55000000 on the trunk"}, {"index": 69, "image_id": 2406229, "entity": "car", "caption": "door handle on a car", "question": ["is there door ?", "is there a car ?"], "prompt": "door handle on a {}"}, {"index": 70, "image_id": 2405945, "entity": "car", "caption": "the side view mirror is on the car", "question": ["is there the side view mirror ?", "is there the car ?"], "prompt": "the side view mirror is on the {}"}, {"index": 71, "image_id": 2405945, "entity": "car", "caption": "the dog is inside the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is inside the {}"}, {"index": 72, "image_id": 2405945, "entity": "car", "caption": "the windshield is on the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "the windshield is on the {}"}, {"index": 73, "image_id": 2405130, "entity": "car", "caption": "this is a car ", "question": ["is there a car ?"], "prompt": "this is a {} "}, {"index": 74, "image_id": 2405042, "entity": "car", "caption": "this is the car's hindlight", "question": ["is there the car's hindlight ?"], "prompt": "this is the {}'s hindlight"}, {"index": 75, "image_id": 2405042, "entity": "car", "caption": "the car beside the meter is blue", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} beside the meter is blue"}, {"index": 76, "image_id": 2405042, "entity": "car", "caption": "the car behind the meter is white", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} behind the meter is white"}, {"index": 77, "image_id": 2405042, "entity": "car", "caption": "the blue car has a red tail light", "question": ["is there the blue car ?", "is there a red tail light ?"], "prompt": "the blue {} has a red tail light"}, {"index": 78, "image_id": 2404709, "entity": "car", "caption": "door handle on a gray car", "question": ["is there door ?", "is there a gray car ?"], "prompt": "door handle on a gray {}"}, {"index": 79, "image_id": 2404508, "entity": "car", "caption": "a cat is on the car", "question": ["is there a cat ?", "is there the car ?"], "prompt": "a cat is on the {}"}, {"index": 80, "image_id": 2404508, "entity": "car", "caption": "the car is dark inside", "question": ["is there the car ?"], "prompt": "the {} is dark inside"}, {"index": 81, "image_id": 2404508, "entity": "car", "caption": "White car, visible through car window. ", "question": ["is there white car ?", "is there car window ?"], "prompt": "White {}, visible through {} window. "}, {"index": 82, "image_id": 2404508, "entity": "car", "caption": "the cat is in the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is in the {}"}, {"index": 83, "image_id": 2404223, "entity": "car", "caption": "black car behind bush and fire hydrant", "question": ["is there black car ?", "is there fire hydrant ?"], "prompt": "black {} behind bush and fire hydrant"}, {"index": 84, "image_id": 2404223, "entity": "car", "caption": "The car has rims on", "question": ["is there the car ?", "are there rims ?"], "prompt": "The {} has rims on"}, {"index": 85, "image_id": 2403996, "entity": "car", "caption": "The dog is laying in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is laying in the {}."}, {"index": 86, "image_id": 2403996, "entity": "car", "caption": "this is a car air freshner", "question": ["is there a car air freshner ?"], "prompt": "this is a {} air freshner"}, {"index": 87, "image_id": 2403274, "entity": "car", "caption": "antenna attached to car", "question": ["is there antenna ?", "is there car ?"], "prompt": "antenna attached to {}"}, {"index": 88, "image_id": 2402657, "entity": "car", "caption": "side car mirror with sky reflected ", "question": ["is there side car mirror ?", "is there sky ?"], "prompt": "side {} mirror with sky reflected "}, {"index": 89, "image_id": 2402628, "entity": "car", "caption": "a car head light", "question": ["is there a car head ?"], "prompt": "a {} head light"}, {"index": 90, "image_id": 2401935, "entity": "car", "caption": "a car's door handle", "question": ["is there a car's door ?"], "prompt": "a {}'s door handle"}, {"index": 91, "image_id": 2401222, "entity": "car", "caption": "the woman is in a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "the woman is in a {}"}, {"index": 92, "image_id": 2401204, "entity": "car", "caption": "A cat is sitting on top of a car", "question": ["is there a cat ?", "is there top ?", "is there a car ?"], "prompt": "A cat is sitting on top of a {}"}, {"index": 93, "image_id": 2401204, "entity": "car", "caption": "cat is on the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is on the {}"}, {"index": 94, "image_id": 2401017, "entity": "car", "caption": "The car is silver.", "question": ["is there the car ?"], "prompt": "The {} is silver."}, {"index": 95, "image_id": 2401017, "entity": "car", "caption": "reflection shines on the door of the car", "question": ["is there reflection ?", "is there the door ?", "is there the car ?"], "prompt": "reflection shines on the door of the {}"}, {"index": 96, "image_id": 2400948, "entity": "car", "caption": "Surf board on a car", "question": ["is there surf board ?", "is there a car ?"], "prompt": "Surf board on a {}"}, {"index": 97, "image_id": 2400948, "entity": "car", "caption": "surfboards are on top of the car", "question": ["are there surfboards ?", "is there top ?", "is there the car ?"], "prompt": "surfboards are on top of the {}"}, {"index": 98, "image_id": 2400948, "entity": "car", "caption": "a steering wheel statue is on the middle of car", "question": ["is there a steering wheel statue ?", "is there the middle ?", "is there car ?"], "prompt": "a steering wheel statue is on the middle of {}"}, {"index": 99, "image_id": 2400948, "entity": "car", "caption": "people are standing behind car", "question": ["are there people ?", "is there car ?"], "prompt": "people are standing behind {}"}, {"index": 100, "image_id": 2400860, "entity": "car", "caption": "black door handles on white car", "question": ["is there black door ?", "is there white car ?"], "prompt": "black door handles on white {}"}, {"index": 101, "image_id": 2400860, "entity": "car", "caption": "a door handle on a car", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}"}, {"index": 102, "image_id": 2400806, "entity": "car", "caption": "a red suitcase is next to the car", "question": ["is there a red suitcase ?", "is there the car ?"], "prompt": "a red suitcase is next to the {}"}, {"index": 103, "image_id": 2400490, "entity": "car", "caption": "front door handle on car", "question": ["is there front door ?", "is there car ?"], "prompt": "front door handle on {}"}, {"index": 104, "image_id": 2400490, "entity": "car", "caption": "a car door handle", "question": ["is there a car door ?"], "prompt": "a {} door handle"}, {"index": 105, "image_id": 2400490, "entity": "car", "caption": "parked car is dark gray with four doors", "question": ["is there parked car ?", "are there four doors ?"], "prompt": "parked {} is dark gray with four doors"}, {"index": 106, "image_id": 2400490, "entity": "car", "caption": "a door handle on a car.", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}."}, {"index": 107, "image_id": 2400490, "entity": "car", "caption": "front left fender of a car.", "question": ["is there front left fender ?", "is there a car ?"], "prompt": "front left fender of a {}."}, {"index": 108, "image_id": 2400275, "entity": "car", "caption": "A person barely visible in the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "A person barely visible in the {}"}, {"index": 109, "image_id": 2400275, "entity": "car", "caption": "The window of the car the dog is sticking his head out of", "question": ["is there the window ?", "is there the car ?", "is there the dog ?", "is there his head ?"], "prompt": "The window of the {} the dog is sticking his head out of"}, {"index": 110, "image_id": 2400275, "entity": "car", "caption": "Dogs is in a car", "question": ["are there dogs ?", "is there a car ?"], "prompt": "Dogs is in a {}"}, {"index": 111, "image_id": 2399913, "entity": "car", "caption": "handle that helps you getting out of car", "question": ["is there car ?"], "prompt": "handle that helps you getting out of {}"}, {"index": 112, "image_id": 2399740, "entity": "car", "caption": "This mirror belongs to a car.", "question": ["is there this mirror ?", "is there a car ?"], "prompt": "This mirror belongs to a {}."}, {"index": 113, "image_id": 2399146, "entity": "car", "caption": "this is a car", "question": ["is there a car ?"], "prompt": "this is a {}"}, {"index": 114, "image_id": 2398786, "entity": "car", "caption": "Door handle on the driver side of a black car. ", "question": ["is there door ?", "is there the driver side ?", "is there a black car ?"], "prompt": "Door handle on the driver side of a black {}. "}, {"index": 115, "image_id": 2398088, "entity": "car", "caption": "seat buckle part in car", "question": ["is there seat buckle part ?", "is there car ?"], "prompt": "seat buckle part in {}"}, {"index": 116, "image_id": 2398088, "entity": "car", "caption": "A window is in the car.", "question": ["is there a window ?", "is there the car ?"], "prompt": "A window is in the {}."}, {"index": 117, "image_id": 2398030, "entity": "car", "caption": "Trees are behind the cars.", "question": ["are there trees ?", "are there the cars ?"], "prompt": "Trees are behind the {}s."}, {"index": 118, "image_id": 2398030, "entity": "car", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice {}s and trucks lined up"}, {"index": 119, "image_id": 2398030, "entity": "car", "caption": "car with hood that opens backwards ", "question": ["is there car ?", "is there hood ?"], "prompt": "{} with hood that opens backwards "}, {"index": 120, "image_id": 2397686, "entity": "car", "caption": "Person is inside car.", "question": ["is there person ?", "is there inside car ?"], "prompt": "Person is inside {}."}, {"index": 121, "image_id": 2396173, "entity": "car", "caption": "the zebra is near a car", "question": ["is there a car ?"], "prompt": "the zebra is near a {}"}, {"index": 122, "image_id": 2396020, "entity": "car", "caption": "grass next to car is dry ", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is dry "}, {"index": 123, "image_id": 2396020, "entity": "car", "caption": "grass next to car is color brown", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is color brown"}, {"index": 124, "image_id": 2396018, "entity": "car", "caption": "White car is behind meter", "question": ["is there white car ?", "is there meter ?"], "prompt": "White {} is behind meter"}, {"index": 125, "image_id": 2395874, "entity": "car", "caption": "air went inside car", "question": ["is there air ?", "is there car ?"], "prompt": "air went inside {}"}, {"index": 126, "image_id": 2395874, "entity": "car", "caption": "The zebra is in the car.", "question": ["is there the car ?"], "prompt": "The zebra is in the {}."}, {"index": 127, "image_id": 2395874, "entity": "car", "caption": "zebra's head pokes into car window", "question": ["is there zebra's head ?", "is there car window ?"], "prompt": "zebra's head pokes into {} window"}, {"index": 128, "image_id": 2395759, "entity": "car", "caption": "cows surround the car", "question": ["are there cows ?", "is there the car ?"], "prompt": "cows surround the {}"}, {"index": 129, "image_id": 2395759, "entity": "car", "caption": "animal going to bathroom beside car", "question": ["is there animal ?", "is there car ?"], "prompt": "animal going to bathroom beside {}"}, {"index": 130, "image_id": 2395588, "entity": "car", "caption": "two more cows wait in line to taste different parts of car, perhaps c[h]ow down", "question": ["are there two more cows ?", "is there line ?", "are there different parts ?", "is there car ?"], "prompt": "two more cows wait in line to taste different parts of {}, perhaps c[h]ow down"}, {"index": 131, "image_id": 2395338, "entity": "car", "caption": "teddy bear on a red car", "question": ["is there a red car ?"], "prompt": "teddy bear on a red {}"}, {"index": 132, "image_id": 2395338, "entity": "car", "caption": "The teddy bear is sitting on the car.", "question": ["is there the car ?"], "prompt": "The teddy bear is sitting on the {}."}, {"index": 133, "image_id": 2395338, "entity": "car", "caption": "The seats in the car is tan.", "question": ["are there the seats ?", "is there the car ?", "is there tan ?"], "prompt": "The seats in the {} is tan."}, {"index": 134, "image_id": 2395338, "entity": "car", "caption": "The bear is sitting by the side mirror of the car.", "question": ["is there the bear ?", "is there the side mirror ?", "is there the car ?"], "prompt": "The bear is sitting by the side mirror of the {}."}, {"index": 135, "image_id": 2395338, "entity": "car", "caption": "The car has windshield wipers.", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "The {} has windshield wipers."}, {"index": 136, "image_id": 2395338, "entity": "car", "caption": "brown teddy bear sitting on car", "question": ["is there car ?"], "prompt": "brown teddy bear sitting on {}"}, {"index": 137, "image_id": 2395338, "entity": "car", "caption": "little teddy bear sitting on car", "question": ["is there car ?"], "prompt": "little teddy bear sitting on {}"}, {"index": 138, "image_id": 2395208, "entity": "car", "caption": "front left light of a car", "question": ["is there front ?", "is there light ?", "is there a car ?"], "prompt": "front left light of a {}"}, {"index": 139, "image_id": 2394987, "entity": "car", "caption": "the fence is behind the car", "question": ["is there the fence ?", "is there the car ?"], "prompt": "the fence is behind the {}"}, {"index": 140, "image_id": 2394987, "entity": "car", "caption": "the cars says coca-cola", "question": ["are there the cars ?"], "prompt": "the {}s says coca-cola"}, {"index": 141, "image_id": 2393712, "entity": "car", "caption": "The car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "The {} has a mirror"}, {"index": 142, "image_id": 2393712, "entity": "car", "caption": "the car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 143, "image_id": 2391973, "entity": "car", "caption": "the cars control panel", "question": ["are there the cars control panel ?"], "prompt": "the {}s control panel"}, {"index": 144, "image_id": 2390809, "entity": "car", "caption": "this is a car tire", "question": ["is there a car tire ?"], "prompt": "this is a {} tire"}, {"index": 145, "image_id": 2390710, "entity": "car", "caption": "the cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is on the {}"}, {"index": 146, "image_id": 2390710, "entity": "car", "caption": "cat sitting and crouching on hood of car", "question": ["is there cat ?", "is there hood ?", "is there car ?"], "prompt": "cat sitting and crouching on hood of {}"}, {"index": 147, "image_id": 2390672, "entity": "car", "caption": "The dog is in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is in the {}."}, {"index": 148, "image_id": 2390672, "entity": "car", "caption": "a German shepard alone inside a car with the windows rolled up", "question": ["is there a german shepard ?", "is there a car ?", "are there the windows ?"], "prompt": "a German shepard alone inside a {} with the windows rolled up"}, {"index": 149, "image_id": 2390553, "entity": "car", "caption": "the dash in the car is black", "question": ["is there the dash ?", "is there the car ?"], "prompt": "the dash in the {} is black"}, {"index": 150, "image_id": 2390177, "entity": "car", "caption": "shiny roof rack on red car", "question": ["is there shiny roof rack ?", "is there red car ?"], "prompt": "shiny roof rack on red {}"}, {"index": 151, "image_id": 2389910, "entity": "car", "caption": "a slipstream sports car has bikes on it.", "question": ["are there a slipstream sports car ?", "are there bikes ?"], "prompt": "a slipstream sports {} has bikes on it."}, {"index": 152, "image_id": 2389614, "entity": "car", "caption": "Dog hanging out of car. ", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog hanging out of {}. "}, {"index": 153, "image_id": 2389485, "entity": "car", "caption": "Woman watching animals in the car.", "question": ["is there woman ?", "are there animals ?", "is there the car ?"], "prompt": "Woman watching animals in the {}."}, {"index": 154, "image_id": 2389479, "entity": "car", "caption": "a car with several bicycles mounted on top of it", "question": ["is there a car ?", "are there several bicycles ?", "is there top ?"], "prompt": "a {} with several bicycles mounted on top of it"}, {"index": 155, "image_id": 2389474, "entity": "car", "caption": "The dog is looking out the car window.", "question": ["is there the dog ?", "is there the car window ?"], "prompt": "The dog is looking out the {} window."}, {"index": 156, "image_id": 2388774, "entity": "car", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the bird is in the {} "}, {"index": 157, "image_id": 2388733, "entity": "car", "caption": "bicycles mounted on car", "question": ["are there bicycles ?", "is there car ?"], "prompt": "bicycles mounted on {}"}, {"index": 158, "image_id": 2388584, "entity": "car", "caption": "A doll head in a car.", "question": ["is there a doll head ?", "is there a car ?"], "prompt": "A doll head in a {}."}, {"index": 159, "image_id": 2388584, "entity": "car", "caption": "Another doll head inside a car.", "question": ["is there another doll head ?", "is there a car ?"], "prompt": "Another doll head inside a {}."}, {"index": 160, "image_id": 2388584, "entity": "car", "caption": "empty tube of toothpaste taped to top of car", "question": ["is there empty tube ?", "is there toothpaste ?", "is there top ?", "is there car ?"], "prompt": "empty tube of toothpaste taped to top of {}"}, {"index": 161, "image_id": 2388584, "entity": "car", "caption": "two toothbrushes taped to top of car", "question": ["are there two toothbrushes ?", "is there top ?", "is there car ?"], "prompt": "two toothbrushes taped to top of {}"}, {"index": 162, "image_id": 2388052, "entity": "car", "caption": "roof of car is blue and yellow", "question": ["is there roof ?", "is there car ?"], "prompt": "roof of {} is blue and yellow"}, {"index": 163, "image_id": 2388052, "entity": "car", "caption": "door of car is yellow", "question": ["is there door ?", "is there car ?"], "prompt": "door of {} is yellow"}, {"index": 164, "image_id": 2388010, "entity": "car", "caption": "white car pulled off on side of road", "question": ["is there white car ?", "is there side ?", "is there road ?"], "prompt": "white {} pulled off on side of road"}, {"index": 165, "image_id": 2388010, "entity": "car", "caption": "a door handle ona car", "question": ["is there a door ?"], "prompt": "a door handle ona {}"}, {"index": 166, "image_id": 2387950, "entity": "car", "caption": "dog is resting on green car", "question": ["is there dog ?", "is there green car ?"], "prompt": "dog is resting on green {}"}, {"index": 167, "image_id": 2387327, "entity": "car", "caption": "The dogs are in a car.", "question": ["are there the dogs ?", "is there a car ?"], "prompt": "The dogs are in a {}."}, {"index": 168, "image_id": 2386114, "entity": "car", "caption": "white car door handle", "question": ["is there white car door ?"], "prompt": "white {} door handle"}, {"index": 169, "image_id": 2385961, "entity": "car", "caption": "a kitty cat is sleeping under a car", "question": ["is there a kitty cat ?", "is there a car ?"], "prompt": "a kitty cat is sleeping under a {}"}, {"index": 170, "image_id": 2385697, "entity": "car", "caption": "the surfboards are sticking out of the car", "question": ["are there the surfboards ?", "is there the car ?"], "prompt": "the surfboards are sticking out of the {}"}, {"index": 171, "image_id": 2385697, "entity": "car", "caption": "the tag is on the back of the car", "question": ["is there the tag ?", "is there the back ?", "is there the car ?"], "prompt": "the tag is on the back of the {}"}, {"index": 172, "image_id": 2385697, "entity": "car", "caption": "the surfboards are on the roof of the car", "question": ["are there the surfboards ?", "is there the roof ?", "is there the car ?"], "prompt": "the surfboards are on the roof of the {}"}, {"index": 173, "image_id": 2385466, "entity": "car", "caption": "Dog is inside car", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog is inside {}"}, {"index": 174, "image_id": 2385251, "entity": "car", "caption": "fence is in front of car", "question": ["is there fence ?", "is there front ?", "is there car ?"], "prompt": "fence is in front of {}"}, {"index": 175, "image_id": 2384917, "entity": "car", "caption": "Light on the car is on. ", "question": ["is there light ?", "is there the car ?"], "prompt": "Light on the {} is on. "}, {"index": 176, "image_id": 2383569, "entity": "car", "caption": "Three bicycles lined up behind a green car.", "question": ["are there three bicycles ?", "is there a green car ?"], "prompt": "Three bicycles lined up behind a green {}."}, {"index": 177, "image_id": 2383096, "entity": "car", "caption": "the car has wood grain", "question": ["is there the car ?", "is there wood grain ?"], "prompt": "the {} has wood grain"}, {"index": 178, "image_id": 2383016, "entity": "car", "caption": "Front left tire of car", "question": ["is there front left tire ?", "is there car ?"], "prompt": "Front left tire of {}"}, {"index": 179, "image_id": 2382637, "entity": "car", "caption": "rails surround roof of green car", "question": ["are there rails ?", "is there surround roof ?", "is there green car ?"], "prompt": "rails surround roof of green {}"}, {"index": 180, "image_id": 2382494, "entity": "car", "caption": "A woman looks into the white car", "question": ["is there a woman ?", "is there the white car ?"], "prompt": "A woman looks into the white {}"}, {"index": 181, "image_id": 2382257, "entity": "car", "caption": "car front passenger side handle", "question": ["is there car front passenger side handle ?"], "prompt": "{} front passenger side handle"}, {"index": 182, "image_id": 2382257, "entity": "car", "caption": "car rear passenger side handle", "question": ["is there car rear passenger side handle ?"], "prompt": "{} rear passenger side handle"}, {"index": 183, "image_id": 2382257, "entity": "car", "caption": "The car door handles", "question": ["is there the car door ?"], "prompt": "The {} door handles"}, {"index": 184, "image_id": 2381937, "entity": "car", "caption": "the driver of the toy car is piggy", "question": ["is there the driver ?", "is there the toy car ?", "is there piggy ?"], "prompt": "the driver of the toy {} is piggy"}, {"index": 185, "image_id": 2381832, "entity": "car", "caption": "Jeep parked next to car", "question": ["is there jeep ?", "is there car ?"], "prompt": "Jeep parked next to {}"}, {"index": 186, "image_id": 2381810, "entity": "car", "caption": "Person is driving a car.", "question": ["is there person ?", "is there a car ?"], "prompt": "Person is driving a {}."}, {"index": 187, "image_id": 2381447, "entity": "car", "caption": "the tag on the car has letters and numbers on it", "question": ["is there the tag ?", "is there the car ?", "are there letters ?", "are there numbers ?"], "prompt": "the tag on the {} has letters and numbers on it"}, {"index": 188, "image_id": 2381447, "entity": "car", "caption": "the car is a CX-7", "question": ["is there the car ?", "is there a cx-7 ?"], "prompt": "the {} is a CX-7"}, {"index": 189, "image_id": 2381447, "entity": "car", "caption": "Cat standing near a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat standing near a {}"}, {"index": 190, "image_id": 2381315, "entity": "car", "caption": "back end of a woman's car is open", "question": ["is there back end ?", "is there a woman's car ?"], "prompt": "back end of a woman's {} is open"}, {"index": 191, "image_id": 2381315, "entity": "car", "caption": "The woman is standing behind a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "The woman is standing behind a {}"}, {"index": 192, "image_id": 2381118, "entity": "car", "caption": "car has a sticker on the windshield ", "question": ["is there car ?", "is there a sticker ?", "is there the windshield ?"], "prompt": "{} has a sticker on the windshield "}, {"index": 193, "image_id": 2381101, "entity": "car", "caption": "back window of car with sunshine coming through", "question": ["is there back window ?", "is there car ?", "is there sunshine ?"], "prompt": "back window of {} with sunshine coming through"}, {"index": 194, "image_id": 2381051, "entity": "car", "caption": "car top tie down rack", "question": ["is there car top tie ?"], "prompt": "{} top tie down rack"}, {"index": 195, "image_id": 2380669, "entity": "car", "caption": "a car headlight ", "question": ["is there a car headlight ?"], "prompt": "a {} headlight "}, {"index": 196, "image_id": 2380293, "entity": "car", "caption": "speedometer showing the car is going 0 MPH", "question": ["is there speedometer ?", "is there the car ?"], "prompt": "speedometer showing the {} is going 0 MPH"}, {"index": 197, "image_id": 2380171, "entity": "car", "caption": "black door handle on car", "question": ["is there black door ?", "is there car ?"], "prompt": "black door handle on {}"}, {"index": 198, "image_id": 2379398, "entity": "car", "caption": "The lamb is next to the car", "question": ["is there the car ?"], "prompt": "The lamb is next to the {}"}, {"index": 199, "image_id": 2379398, "entity": "car", "caption": "The car is on top of gravel", "question": ["is there the car ?", "is there top ?", "is there gravel ?"], "prompt": "The {} is on top of gravel"}, {"index": 200, "image_id": 2379270, "entity": "car", "caption": "the people are in the car", "question": ["are there the people ?", "is there the car ?"], "prompt": "the people are in the {}"}, {"index": 201, "image_id": 2378437, "entity": "car", "caption": "window of car is semi-open", "question": ["is there window ?", "is there car ?"], "prompt": "window of {} is semi-open"}, {"index": 202, "image_id": 2377492, "entity": "car", "caption": "He is next to the car.", "question": ["is there the car ?"], "prompt": "He is next to the {}."}, {"index": 203, "image_id": 2377281, "entity": "car", "caption": "headlights of car are white", "question": ["are there headlights ?", "is there car ?"], "prompt": "headlights of {} are white"}, {"index": 204, "image_id": 2377134, "entity": "car", "caption": "Leather suitcase is strapped to the trunk of the car", "question": ["is there leather suitcase ?", "is there the trunk ?", "is there the car ?"], "prompt": "Leather suitcase is strapped to the trunk of the {}"}, {"index": 205, "image_id": 2377065, "entity": "car", "caption": "The cat is laying on a car.", "question": ["is there the cat ?", "is there a car ?"], "prompt": "The cat is laying on a {}."}, {"index": 206, "image_id": 2376812, "entity": "car", "caption": "man standing in front of a parked car", "question": ["is there man ?", "is there front ?", "is there a parked car ?"], "prompt": "man standing in front of a parked {}"}, {"index": 207, "image_id": 2376666, "entity": "car", "caption": "Two cars driving down the road.", "question": ["are there two cars ?", "is there the road ?"], "prompt": "Two {}s driving down the road."}, {"index": 208, "image_id": 2376189, "entity": "car", "caption": "The baby is in the car.", "question": ["is there the baby ?", "is there the car ?"], "prompt": "The baby is in the {}."}, {"index": 209, "image_id": 2374963, "entity": "car", "caption": "man standing next to car", "question": ["is there man ?", "is there car ?"], "prompt": "man standing next to {}"}, {"index": 210, "image_id": 2374891, "entity": "car", "caption": "A dog popping outa a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog popping outa a {}"}, {"index": 211, "image_id": 2374500, "entity": "car", "caption": "A cat is laying on a car", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is laying on a {}"}, {"index": 212, "image_id": 2374500, "entity": "car", "caption": "The cat is on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "The cat is on top of a {}"}, {"index": 213, "image_id": 2374500, "entity": "car", "caption": "The cat is on a white car", "question": ["is there the cat ?", "is there a white car ?"], "prompt": "The cat is on a white {}"}, {"index": 214, "image_id": 2374500, "entity": "car", "caption": "the tabby cat is laying on the car", "question": ["is there the tabby cat ?", "is there the car ?"], "prompt": "the tabby cat is laying on the {}"}, {"index": 215, "image_id": 2374203, "entity": "car", "caption": "The blue car has an open window", "question": ["is there the blue car ?", "is there an open window ?"], "prompt": "The blue {} has an open window"}, {"index": 216, "image_id": 2374203, "entity": "car", "caption": "A man is sitting in the blue car", "question": ["is there a man ?", "is there the blue car ?"], "prompt": "A man is sitting in the blue {}"}, {"index": 217, "image_id": 2374203, "entity": "car", "caption": "man driving a blue car", "question": ["is there man ?", "is there a blue car ?"], "prompt": "man driving a blue {}"}, {"index": 218, "image_id": 2374072, "entity": "car", "caption": "Gas pump behind car.", "question": ["is there gas pump ?", "is there car ?"], "prompt": "Gas pump behind {}."}, {"index": 219, "image_id": 2372618, "entity": "car", "caption": "Dog is inside the car.", "question": ["is there dog ?", "is there the car ?"], "prompt": "Dog is inside the {}."}, {"index": 220, "image_id": 2372618, "entity": "car", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog is riding in a {}"}, {"index": 221, "image_id": 2372618, "entity": "car", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A dog is in its master's {}"}, {"index": 222, "image_id": 2372618, "entity": "car", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog likes riding in a {}"}, {"index": 223, "image_id": 2372587, "entity": "car", "caption": "Classic car headlight", "question": ["is there classic car headlight ?"], "prompt": "Classic {} headlight"}, {"index": 224, "image_id": 2372587, "entity": "car", "caption": "Two surfboards attach to classic car roof", "question": ["are there two surfboards ?", "is there classic car roof ?"], "prompt": "Two surfboards attach to classic {} roof"}, {"index": 225, "image_id": 2372550, "entity": "car", "caption": "Mud flaps on a blue car", "question": ["are there mud flaps ?", "is there a blue car ?"], "prompt": "Mud flaps on a blue {}"}, {"index": 226, "image_id": 2372422, "entity": "car", "caption": "A back car door handle", "question": ["is there a back car door ?"], "prompt": "A back {} door handle"}, {"index": 227, "image_id": 2371952, "entity": "car", "caption": "seat belt hanging inside a car", "question": ["is there seat belt ?", "is there a car ?"], "prompt": "seat belt hanging inside a {}"}, {"index": 228, "image_id": 2371950, "entity": "car", "caption": "the cat is in a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is in a {}"}, {"index": 229, "image_id": 2371208, "entity": "car", "caption": "a chrome door handle on a car", "question": ["is there a chrome door ?", "is there a car ?"], "prompt": "a chrome door handle on a {}"}, {"index": 230, "image_id": 2371208, "entity": "car", "caption": "Silver door handle on green car", "question": ["is there silver door ?", "is there green car ?"], "prompt": "Silver door handle on green {}"}, {"index": 231, "image_id": 2370927, "entity": "car", "caption": "the elephant is close to the car ", "question": ["is there the elephant ?", "is there the car ?"], "prompt": "the elephant is close to the {} "}, {"index": 232, "image_id": 2370584, "entity": "car", "caption": "hood of the car is up", "question": ["is there hood ?", "is there the car ?"], "prompt": "hood of the {} is up"}, {"index": 233, "image_id": 2370584, "entity": "car", "caption": "several people standing away from the cars", "question": ["are there several people ?", "are there the cars ?"], "prompt": "several people standing away from the {}s"}, {"index": 234, "image_id": 2370584, "entity": "car", "caption": "trees located behind place where car show is", "question": ["are there trees ?", "is there place ?", "is there car show ?"], "prompt": "trees located behind place where {} show is"}, {"index": 235, "image_id": 2370246, "entity": "car", "caption": "the cat is lying on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is lying on the {}"}, {"index": 236, "image_id": 2369015, "entity": "car", "caption": "Surfboard is on top of car", "question": ["is there surfboard ?", "is there top ?", "is there car ?"], "prompt": "Surfboard is on top of {}"}, {"index": 237, "image_id": 2368457, "entity": "car", "caption": "baby looking out the window of the car", "question": ["is there baby ?", "is there the window ?", "is there the car ?"], "prompt": "baby looking out the window of the {}"}, {"index": 238, "image_id": 2368457, "entity": "car", "caption": "old style car driving down the road", "question": ["is there old style car ?", "is there the road ?"], "prompt": "old style {} driving down the road"}, {"index": 239, "image_id": 2368457, "entity": "car", "caption": "advertisement is on the door of the car", "question": ["is there advertisement ?", "is there the door ?", "is there the car ?"], "prompt": "advertisement is on the door of the {}"}, {"index": 240, "image_id": 2368457, "entity": "car", "caption": "a person is driving the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "a person is driving the {}"}, {"index": 241, "image_id": 2368457, "entity": "car", "caption": "a rack with straps is on the car", "question": ["is there a rack ?", "are there straps ?", "is there the car ?"], "prompt": "a rack with straps is on the {}"}, {"index": 242, "image_id": 2367648, "entity": "car", "caption": "A car is at an auto show", "question": ["is there a car ?", "is there an auto show ?"], "prompt": "A {} is at an auto show"}, {"index": 243, "image_id": 2367406, "entity": "car", "caption": "The curb is next to the cars.", "question": ["is there the curb ?", "are there the cars ?"], "prompt": "The curb is next to the {}s."}, {"index": 244, "image_id": 2367276, "entity": "car", "caption": "the car handle on the passenger door", "question": ["is there the car handle ?", "is there the passenger door ?"], "prompt": "the {} handle on the passenger door"}, {"index": 245, "image_id": 2367258, "entity": "car", "caption": "giraffe peeking in the car", "question": ["is there the car ?"], "prompt": "giraffe peeking in the {}"}, {"index": 246, "image_id": 2367258, "entity": "car", "caption": "the scene is inside the car ", "question": ["is there the scene ?", "is there the car ?"], "prompt": "the scene is inside the {} "}, {"index": 247, "image_id": 2367258, "entity": "car", "caption": "cars sunroof protective seal", "question": ["are there cars ?", "is there protective seal ?"], "prompt": "{}s sunroof protective seal"}, {"index": 248, "image_id": 2367033, "entity": "car", "caption": "the silver car door handle", "question": ["is there the silver car door ?"], "prompt": "the silver {} door handle"}, {"index": 249, "image_id": 2365787, "entity": "car", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th edog is in the {} "}, {"index": 250, "image_id": 2365750, "entity": "car", "caption": "This is a car mirror", "question": ["is there a car mirror ?"], "prompt": "This is a {} mirror"}, {"index": 251, "image_id": 2365750, "entity": "car", "caption": "This is a car window", "question": ["is there a car window ?"], "prompt": "This is a {} window"}, {"index": 252, "image_id": 2365458, "entity": "car", "caption": "one headlight on front of car", "question": ["is there one headlight ?", "is there front ?", "is there car ?"], "prompt": "one headlight on front of {}"}, {"index": 253, "image_id": 2364504, "entity": "car", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One dog is sitting in the {}."}, {"index": 254, "image_id": 2364504, "entity": "car", "caption": "Buildings are outside the car.", "question": ["are there buildings ?", "is there the car ?"], "prompt": "Buildings are outside the {}."}, {"index": 255, "image_id": 2364109, "entity": "car", "caption": "front dashboard of car where a rider took the photo", "question": ["is there front dashboard ?", "is there car ?", "is there a rider ?", "is there the photo ?"], "prompt": "front dashboard of {} where a rider took the photo"}, {"index": 256, "image_id": 2363425, "entity": "car", "caption": "the door handle on a car", "question": ["is there the door ?", "is there a car ?"], "prompt": "the door handle on a {}"}, {"index": 257, "image_id": 2363424, "entity": "car", "caption": "several people standing behind car", "question": ["are there several people ?", "is there car ?"], "prompt": "several people standing behind {}"}, {"index": 258, "image_id": 2363415, "entity": "car", "caption": "black car door handle on a white car", "question": ["is there black car door ?", "is there a white car ?"], "prompt": "black {} door handle on a white {}"}, {"index": 259, "image_id": 2363359, "entity": "car", "caption": "the writing on the car appears to be chinese", "question": ["is there the writing ?", "is there the car ?"], "prompt": "the writing on the {} appears to be chinese"}, {"index": 260, "image_id": 2363195, "entity": "car", "caption": "Ontario plates are on the car", "question": ["are there ontario plates ?", "is there the car ?"], "prompt": "Ontario plates are on the {}"}, {"index": 261, "image_id": 2363195, "entity": "car", "caption": "The cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}"}, {"index": 262, "image_id": 2362213, "entity": "car", "caption": "feline resting in car", "question": ["is there car ?"], "prompt": "feline resting in {}"}, {"index": 263, "image_id": 2362071, "entity": "car", "caption": "it is the windshield of the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "it is the windshield of the {}"}, {"index": 264, "image_id": 2362050, "entity": "car", "caption": "A Mercedes emblem is on the car.", "question": ["are there a mercedes emblem ?", "is there the car ?"], "prompt": "A Mercedes emblem is on the {}."}, {"index": 265, "image_id": 2361191, "entity": "car", "caption": "a red bird is on the car's mirror", "question": ["is there a red bird ?", "is there the car's mirror ?"], "prompt": "a red bird is on the {}'s mirror"}, {"index": 266, "image_id": 2360825, "entity": "car", "caption": "A car door is open.", "question": ["is there a car door ?"], "prompt": "A {} door is open."}, {"index": 267, "image_id": 2360825, "entity": "car", "caption": "A person is sitting in back of a car.", "question": ["is there a person ?", "is there a car ?"], "prompt": "A person is sitting in back of a {}."}, {"index": 268, "image_id": 2360521, "entity": "car", "caption": "this car has it's tail lights on", "question": ["is there this car ?", "are there it's tail lights ?"], "prompt": "this {} has it's tail lights on"}, {"index": 269, "image_id": 2360370, "entity": "car", "caption": "the man is standing by the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "the man is standing by the {}"}, {"index": 270, "image_id": 2360370, "entity": "car", "caption": "the bananas are in the car", "question": ["are there the bananas ?", "is there the car ?"], "prompt": "the bananas are in the {}"}, {"index": 271, "image_id": 2360146, "entity": "car", "caption": "Teddy bears in the car", "question": ["is there the car ?"], "prompt": "Teddy bears in the {}"}, {"index": 272, "image_id": 2359127, "entity": "car", "caption": "numbers on car are 2 and 08", "question": ["are there numbers ?", "is there car ?"], "prompt": "numbers on {} are 2 and 08"}, {"index": 273, "image_id": 2358763, "entity": "car", "caption": "This is a car hood", "question": ["is there a car hood ?"], "prompt": "This is a {} hood"}, {"index": 274, "image_id": 2358763, "entity": "car", "caption": "This is a car door", "question": ["is there a car door ?"], "prompt": "This is a {} door"}, {"index": 275, "image_id": 2358763, "entity": "car", "caption": "Water is on the car", "question": ["is there water ?", "is there the car ?"], "prompt": "Water is on the {}"}, {"index": 276, "image_id": 2358763, "entity": "car", "caption": "The car is next to trees", "question": ["is there the car ?", "are there trees ?"], "prompt": "The {} is next to trees"}, {"index": 277, "image_id": 2358763, "entity": "car", "caption": "The car has a steering wheel", "question": ["is there the car ?", "is there a steering wheel ?"], "prompt": "The {} has a steering wheel"}, {"index": 278, "image_id": 2358763, "entity": "car", "caption": "A car's reflection is in the window", "question": ["is there a car's reflection ?", "is there the window ?"], "prompt": "A {}'s reflection is in the window"}, {"index": 279, "image_id": 2357815, "entity": "car", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white {} is behind the truck"}, {"index": 280, "image_id": 2357637, "entity": "car", "caption": "the cat is sitting on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "the cat is sitting on top of a {}"}, {"index": 281, "image_id": 2357540, "entity": "car", "caption": "car has yellow license plate", "question": ["is there car ?", "is there yellow license plate ?"], "prompt": "{} has yellow license plate"}, {"index": 282, "image_id": 2357435, "entity": "car", "caption": "Suit cases in car packed", "question": ["are there suit cases ?"], "prompt": "Suit cases in {} packed"}, {"index": 283, "image_id": 2357435, "entity": "car", "caption": "user car controls black switch", "question": ["is there user car ?", "is there black switch ?"], "prompt": "user {} controls black switch"}, {"index": 284, "image_id": 2357435, "entity": "car", "caption": "back door of car is open", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is open"}, {"index": 285, "image_id": 2357435, "entity": "car", "caption": "back door of car is up", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is up"}, {"index": 286, "image_id": 2357227, "entity": "car", "caption": "people stand by a car", "question": ["are there people ?", "is there a car ?"], "prompt": "people stand by a {}"}, {"index": 287, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the gray car.", "question": ["is there the left front headlight ?", "is there the gray car ?"], "prompt": "The left front headlight of the gray {}."}, {"index": 288, "image_id": 2356915, "entity": "car", "caption": "The right front headlight on the black car.", "question": ["is there the right front headlight ?", "is there the black car ?"], "prompt": "The right front headlight on the black {}."}, {"index": 289, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the black car.", "question": ["is there the left front headlight ?", "is there the black car ?"], "prompt": "The left front headlight of the black {}."}, {"index": 290, "image_id": 2356554, "entity": "car", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "dog is sitting in side {}"}, {"index": 291, "image_id": 2355930, "entity": "car", "caption": "the cat is on top of the car", "question": ["is there the cat ?", "is there top ?", "is there the car ?"], "prompt": "the cat is on top of the {}"}, {"index": 292, "image_id": 2355930, "entity": "car", "caption": "the car has a license plate", "question": ["is there the car ?", "is there a license plate ?"], "prompt": "the {} has a license plate"}, {"index": 293, "image_id": 2355930, "entity": "car", "caption": "the wood is beside the car", "question": ["is there the wood ?", "is there the car ?"], "prompt": "the wood is beside the {}"}, {"index": 294, "image_id": 2355930, "entity": "car", "caption": "the car has seats", "question": ["is there the car ?", "are there seats ?"], "prompt": "the {} has seats"}, {"index": 295, "image_id": 2355512, "entity": "car", "caption": "the cat is under the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is under the {}"}, {"index": 296, "image_id": 2354802, "entity": "car", "caption": "side of the car is gray", "question": ["is there side ?", "is there the car ?"], "prompt": "side of the {} is gray"}, {"index": 297, "image_id": 2354802, "entity": "car", "caption": "car has advertisements all over paint job", "question": ["is there car ?", "are there advertisements ?", "is there paint job ?"], "prompt": "{} has advertisements all over paint job"}, {"index": 298, "image_id": 2354519, "entity": "car", "caption": "the shoes next to the car", "question": ["are there the shoes ?", "is there the car ?"], "prompt": "the shoes next to the {}"}, {"index": 299, "image_id": 2353437, "entity": "car", "caption": "a cat is on the car hood", "question": ["is there a cat ?", "is there the car hood ?"], "prompt": "a cat is on the {} hood"}, {"index": 300, "image_id": 2353208, "entity": "car", "caption": "the cat is sitting on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is sitting on the {}"}, {"index": 301, "image_id": 2353208, "entity": "car", "caption": "the car has windshield wipers", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "the {} has windshield wipers"}, {"index": 302, "image_id": 2353208, "entity": "car", "caption": "A cat is sitting on a car. ", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is sitting on a {}. "}, {"index": 303, "image_id": 2353208, "entity": "car", "caption": "A car has black windshield wipers. ", "question": ["is there a car ?", "are there black windshield wipers ?"], "prompt": "A {} has black windshield wipers. "}, {"index": 304, "image_id": 2353208, "entity": "car", "caption": "A car is under a cat. ", "question": ["is there a car ?", "is there a cat ?"], "prompt": "A {} is under a cat. "}, {"index": 305, "image_id": 2353125, "entity": "car", "caption": "a bicycle is on the car roof", "question": ["is there a bicycle ?", "is there the car roof ?"], "prompt": "a bicycle is on the {} roof"}, {"index": 306, "image_id": 2353125, "entity": "car", "caption": "the car has a carrier", "question": ["is there the car ?", "is there a carrier ?"], "prompt": "the {} has a {}rier"}, {"index": 307, "image_id": 2353125, "entity": "car", "caption": "Door handle on the car.", "question": ["is there door ?", "is there the car ?"], "prompt": "Door handle on the {}."}, {"index": 308, "image_id": 2352313, "entity": "car", "caption": "car door handle", "question": ["is there car door ?"], "prompt": "{} door handle"}, {"index": 309, "image_id": 2352313, "entity": "car", "caption": "door handle on a black car", "question": ["is there door ?", "is there a black car ?"], "prompt": "door handle on a black {}"}, {"index": 310, "image_id": 2352195, "entity": "car", "caption": "Blue and white bus parked next to the red car.", "question": ["is there blue and white bus ?", "is there the red car ?"], "prompt": "Blue and white bus parked next to the red {}."}, {"index": 311, "image_id": 2351364, "entity": "car", "caption": "She is next to the car.", "question": ["is there the car ?"], "prompt": "She is next to the {}."}, {"index": 312, "image_id": 2350995, "entity": "car", "caption": "A dog and man are riding in a white car.", "question": ["is there a dog ?", "is there man ?", "is there a white car ?"], "prompt": "A dog and man are riding in a white {}."}, {"index": 313, "image_id": 2350974, "entity": "car", "caption": "boy reflected in the car's window", "question": ["is there boy ?", "is there the car's window ?"], "prompt": "boy reflected in the {}'s window"}, {"index": 314, "image_id": 2350933, "entity": "car", "caption": "A car is in the window's reflection", "question": ["is there a car ?", "is there the window's reflection ?"], "prompt": "A {} is in the window's reflection"}, {"index": 315, "image_id": 2350869, "entity": "car", "caption": "line of cars stopped at intersection", "question": ["is there line ?", "are there cars ?", "is there intersection ?"], "prompt": "line of {}s stopped at intersection"}, {"index": 316, "image_id": 2350581, "entity": "car", "caption": "rear left tire on car", "question": ["is there rear left tire ?", "is there car ?"], "prompt": "rear left tire on {}"}, {"index": 317, "image_id": 2350581, "entity": "car", "caption": "front left tire on car", "question": ["is there front ?", "is there tire ?", "is there car ?"], "prompt": "front left tire on {}"}, {"index": 318, "image_id": 2350002, "entity": "car", "caption": "A car is on the road", "question": ["is there a car ?", "is there the road ?"], "prompt": "A {} is on the road"}, {"index": 319, "image_id": 2350002, "entity": "car", "caption": "A dog is sitting inside the car", "question": ["is there a dog ?", "is there the car ?"], "prompt": "A dog is sitting inside the {}"}, {"index": 320, "image_id": 2349972, "entity": "car", "caption": "a car having bags", "question": ["is there a car ?", "are there bags ?"], "prompt": "a {} having bags"}, {"index": 321, "image_id": 2349597, "entity": "car", "caption": "a car is by the dog", "question": ["is there a car ?", "is there the dog ?"], "prompt": "a {} is by the dog"}, {"index": 322, "image_id": 2348921, "entity": "car", "caption": "the child is in a car", "question": ["is there the child ?", "is there a car ?"], "prompt": "the child is in a {}"}, {"index": 323, "image_id": 2348625, "entity": "car", "caption": "this car has its break lights on ", "question": ["is there this car ?", "are there its break lights ?"], "prompt": "this {} has its break lights on "}, {"index": 324, "image_id": 2348416, "entity": "car", "caption": "indicator lights on the rear of a car", "question": ["are there indicator lights ?", "is there the rear ?", "is there a car ?"], "prompt": "indicator lights on the rear of a {}"}, {"index": 325, "image_id": 2348408, "entity": "car", "caption": "the window is down on the car", "question": ["is there the window ?", "is there the car ?"], "prompt": "the window is down on the {}"}, {"index": 326, "image_id": 2347190, "entity": "car", "caption": "the car front is grey in color", "question": ["is there the car front ?", "is there color ?"], "prompt": "the {} front is grey in color"}, {"index": 327, "image_id": 2347190, "entity": "car", "caption": "the car windscreen are black in color", "question": ["is there the car windscreen ?", "is there color ?"], "prompt": "the {} windscreen are black in color"}, {"index": 328, "image_id": 2347179, "entity": "car", "caption": "shadow os the cat is on the car ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "shadow os the cat is on the {} "}, {"index": 329, "image_id": 2347179, "entity": "car", "caption": "cat sits on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat sits on {}"}, {"index": 330, "image_id": 2347027, "entity": "car", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {}"}, {"index": 331, "image_id": 2346677, "entity": "car", "caption": "Man pushing suitcases in car", "question": ["is there man ?", "are there suitcases ?", "is there car ?"], "prompt": "Man pushing suitcases in {}"}, {"index": 332, "image_id": 2346677, "entity": "car", "caption": "Woman sitting in front seat of car", "question": ["is there woman ?", "is there front seat ?", "is there car ?"], "prompt": "Woman sitting in front seat of {}"}, {"index": 333, "image_id": 2345608, "entity": "car", "caption": "motorcycle is next to car", "question": ["is there motorcycle ?"], "prompt": "motorcycle is next to {}"}, {"index": 334, "image_id": 2345314, "entity": "car", "caption": "car window is down", "question": ["is there car window ?"], "prompt": "{} window is down"}, {"index": 335, "image_id": 2345219, "entity": "car", "caption": "car has red tail lights", "question": ["is there car ?", "are there red tail lights ?"], "prompt": "{} has red tail lights"}, {"index": 336, "image_id": 2345219, "entity": "car", "caption": "car trunk is open", "question": ["is there car trunk ?"], "prompt": "{} trunk is open"}, {"index": 337, "image_id": 2344729, "entity": "car", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is in the {}"}, {"index": 338, "image_id": 2344729, "entity": "car", "caption": "this is in a car", "question": ["is there a car ?"], "prompt": "this is in a {}"}, {"index": 339, "image_id": 2344713, "entity": "car", "caption": "black cat shaped car decal ", "question": ["is there black cat shaped car decal ?"], "prompt": "black cat shaped {} decal "}, {"index": 340, "image_id": 2344274, "entity": "car", "caption": "the car has no numberplates ", "question": ["is there the car ?"], "prompt": "the {} has no numberplates "}, {"index": 341, "image_id": 2344274, "entity": "car", "caption": "Silver car stopped at a light", "question": ["is there silver car ?", "is there a light ?"], "prompt": "Silver {} stopped at a light"}, {"index": 342, "image_id": 2343856, "entity": "car", "caption": "the plane is on the car ", "question": ["is there the plane ?", "is there the car ?"], "prompt": "the plane is on the {} "}, {"index": 343, "image_id": 2343756, "entity": "car", "caption": "A car's driver side headlight", "question": ["is there a car's driver side headlight ?"], "prompt": "A {}'s driver side headlight"}, {"index": 344, "image_id": 2343756, "entity": "car", "caption": "car make logo on front of car", "question": ["is there car ?", "is there logo ?", "is there front ?", "is there car ?"], "prompt": "{} make logo on front of {}"}, {"index": 345, "image_id": 2343756, "entity": "car", "caption": "silver care parked with surfboard on roof", "question": ["is there silver care ?", "is there surfboard ?", "is there roof ?"], "prompt": "silver {}e parked with surfboard on roof"}, {"index": 346, "image_id": 2343756, "entity": "car", "caption": "Surfboard attached to car rack", "question": ["is there surfboard ?", "is there car rack ?"], "prompt": "Surfboard attached to {} rack"}, {"index": 347, "image_id": 2343665, "entity": "car", "caption": "Various cars occupy city street", "question": ["are there various cars ?", "is there city street ?"], "prompt": "Various {}s occupy city street"}, {"index": 348, "image_id": 2343324, "entity": "car", "caption": "A lady travels inside the car", "question": ["is there a lady ?", "is there the car ?"], "prompt": "A lady travels inside the {}"}, {"index": 349, "image_id": 2343324, "entity": "car", "caption": "Besides the car vehicles are on the road", "question": ["are there the car vehicles ?", "is there the road ?"], "prompt": "Besides the {} vehicles are on the road"}, {"index": 350, "image_id": 2343324, "entity": "car", "caption": "A lady is riding her car ", "question": ["is there a lady ?", "is there her car ?"], "prompt": "A lady is riding her {} "}, {"index": 351, "image_id": 2343321, "entity": "car", "caption": "the car has tires", "question": ["is there the car ?", "are there tires ?"], "prompt": "the {} has tires"}, {"index": 352, "image_id": 2343098, "entity": "car", "caption": "a sign is on the front of the car", "question": ["is there a sign ?", "is there the front ?", "is there the car ?"], "prompt": "a sign is on the front of the {}"}, {"index": 353, "image_id": 2343098, "entity": "car", "caption": "a tire is on the car", "question": ["is there a tire ?", "is there the car ?"], "prompt": "a tire is on the {}"}, {"index": 354, "image_id": 2343098, "entity": "car", "caption": "the car's taillights are off ", "question": ["are there the car's taillights ?"], "prompt": "the {}'s taillights are off "}, {"index": 355, "image_id": 2342975, "entity": "car", "caption": "A surfboard is on the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}."}, {"index": 356, "image_id": 2342809, "entity": "car", "caption": "the car is reflecting the seat", "question": ["is there the car ?", "is there the seat ?"], "prompt": "the {} is reflecting the seat"}, {"index": 357, "image_id": 2342672, "entity": "car", "caption": "person driving the car", "question": ["is there person ?", "is there the car ?"], "prompt": "person driving the {}"}, {"index": 358, "image_id": 2342493, "entity": "car", "caption": "the cars have lights on", "question": ["are there the cars ?", "are there lights ?"], "prompt": "the {}s have lights on"}, {"index": 359, "image_id": 2341390, "entity": "car", "caption": "a large black dog sits in the back of a car", "question": ["is there a large black dog ?", "is there the back ?", "is there a car ?"], "prompt": "a large black dog sits in the back of a {}"}, {"index": 360, "image_id": 2341390, "entity": "car", "caption": "The dog is sitting in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is sitting in the {}."}, {"index": 361, "image_id": 2341390, "entity": "car", "caption": "The car have scratches", "question": ["is there the car ?", "are there scratches ?"], "prompt": "The {} have scratches"}, {"index": 362, "image_id": 2341390, "entity": "car", "caption": "a _very_ serious black dog sits in a scraped silver car", "question": ["is there a _very_ serious black dog ?", "is there a scraped silver car ?"], "prompt": "a _very_ serious black dog sits in a scraped silver {}"}, {"index": 363, "image_id": 2341390, "entity": "car", "caption": "car looks spraypainted silver, has a minor mess' worth of scrapes & scratches", "question": ["is there car ?", "is there spraypainted silver ?", "is there a minor mess' worth ?", "are there scrapes ?", "are there scratches ?"], "prompt": "{} looks spraypainted silver, has a minor mess' worth of scrapes & scratches"}, {"index": 364, "image_id": 2341302, "entity": "car", "caption": "woman is looking at the car", "question": ["is there woman ?", "is there the car ?"], "prompt": "woman is looking at the {}"}, {"index": 365, "image_id": 2341044, "entity": "car", "caption": "front left window of a black car", "question": ["is there front left window ?", "is there a black car ?"], "prompt": "front left window of a black {}"}, {"index": 366, "image_id": 2340693, "entity": "car", "caption": "cats are under car", "question": ["are there cats ?", "is there car ?"], "prompt": "cats are under {}"}, {"index": 367, "image_id": 2339803, "entity": "car", "caption": "The window is down in the car.", "question": ["is there the window ?", "is there the car ?"], "prompt": "The window is down in the {}."}, {"index": 368, "image_id": 2338847, "entity": "car", "caption": "Roof of car is black.", "question": ["is there roof ?", "is there car ?"], "prompt": "Roof of {} is black."}, {"index": 369, "image_id": 2338847, "entity": "car", "caption": "the car has wooden panels ", "question": ["is there the car ?", "are there wooden panels ?"], "prompt": "the {} has wooden panels "}, {"index": 370, "image_id": 2338254, "entity": "car", "caption": "surfbords are on the car", "question": ["are there surfbords ?", "is there the car ?"], "prompt": "surfbords are on the {}"}, {"index": 371, "image_id": 2338234, "entity": "car", "caption": "the model of car is ford ", "question": ["is there the model ?", "is there car ?"], "prompt": "the model of {} is ford "}, {"index": 372, "image_id": 2337797, "entity": "car", "caption": "the car has a red light", "question": ["is there the car ?", "is there a red light ?"], "prompt": "the {} has a red light"}, {"index": 373, "image_id": 2337385, "entity": "car", "caption": "window is apart of the car", "question": ["is there window ?", "is there the car ?"], "prompt": "window is apart of the {}"}, {"index": 374, "image_id": 2337324, "entity": "car", "caption": "a doggy has his head out the car window", "question": ["is there a doggy ?", "is there his head ?", "is there the car window ?"], "prompt": "a doggy has his head out the {} window"}, {"index": 375, "image_id": 2336747, "entity": "car", "caption": "black door handle on sliver car door", "question": ["is there black door ?", "is there sliver car door ?"], "prompt": "black door handle on sliver {} door"}, {"index": 376, "image_id": 2336235, "entity": "car", "caption": "the car the cat is lying on ", "question": ["is there the car ?", "is there the cat ?"], "prompt": "the {} the cat is lying on "}, {"index": 377, "image_id": 2336067, "entity": "car", "caption": "Cat is inside a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is inside a {}"}, {"index": 378, "image_id": 2336067, "entity": "car", "caption": "Cat is in the car's backseats", "question": ["is there cat ?", "are there the car's backseats ?"], "prompt": "Cat is in the {}'s backseats"}, {"index": 379, "image_id": 2336016, "entity": "car", "caption": "the man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "the man is in a {}"}, {"index": 380, "image_id": 2336016, "entity": "car", "caption": "Black car parked at the curb.", "question": ["is there black car ?", "is there the curb ?"], "prompt": "Black {} parked at the curb."}, {"index": 381, "image_id": 2335764, "entity": "car", "caption": "This car has a clear windshield", "question": ["is there this car ?", "is there a clear windshield ?"], "prompt": "This {} has a clear windshield"}, {"index": 382, "image_id": 2335683, "entity": "car", "caption": "it is car in the street ", "question": ["is there car ?", "is there the street ?"], "prompt": "it is {} in the street "}, {"index": 383, "image_id": 2335683, "entity": "car", "caption": "a white car stopped in street", "question": ["is there a white car ?", "is there street ?"], "prompt": "a white {} stopped in street"}, {"index": 384, "image_id": 2335292, "entity": "car", "caption": "The car is in front of the motorcycle", "question": ["is there the car ?", "is there front ?", "is there the motorcycle ?"], "prompt": "The {} is in front of the motorcycle"}, {"index": 385, "image_id": 2335292, "entity": "car", "caption": "The white car has red tail lights", "question": ["is there the white car ?", "are there red tail lights ?"], "prompt": "The white {} has red tail lights"}, {"index": 386, "image_id": 2335189, "entity": "car", "caption": "A old man standing behind a car.", "question": ["is there a old man ?", "is there a car ?"], "prompt": "A old man standing behind a {}."}, {"index": 387, "image_id": 2334957, "entity": "car", "caption": "right front headlight on car", "question": ["is there right front headlight ?", "is there car ?"], "prompt": "right front headlight on {}"}, {"index": 388, "image_id": 2334957, "entity": "car", "caption": "blue rusted door on car", "question": ["is there blue rusted door ?", "is there car ?"], "prompt": "blue rusted door on {}"}, {"index": 389, "image_id": 2333614, "entity": "car", "caption": "a rear view mirror is on the car", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "a rear view mirror is on the {}"}, {"index": 390, "image_id": 2333614, "entity": "car", "caption": "the car is on the street", "question": ["is there the car ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 391, "image_id": 2333466, "entity": "car", "caption": "license plate is on car", "question": ["is there license plate ?", "is there car ?"], "prompt": "license plate is on {}"}, {"index": 392, "image_id": 2332912, "entity": "car", "caption": "a white teddy bear sitting on a car", "question": ["is there a car ?"], "prompt": "a white teddy bear sitting on a {}"}, {"index": 393, "image_id": 2332110, "entity": "car", "caption": "wheel belongs to car", "question": ["is there wheel ?", "is there car ?"], "prompt": "wheel belongs to {}"}, {"index": 394, "image_id": 2332110, "entity": "car", "caption": "bumper belongs to car", "question": ["is there bumper ?", "is there car ?"], "prompt": "bumper belongs to {}"}, {"index": 395, "image_id": 2332110, "entity": "car", "caption": "headlight belongs to car", "question": ["is there headlight ?", "is there car ?"], "prompt": "headlight belongs to {}"}, {"index": 396, "image_id": 2332110, "entity": "car", "caption": "window belongs to car", "question": ["is there window ?", "is there car ?"], "prompt": "window belongs to {}"}, {"index": 397, "image_id": 2332110, "entity": "car", "caption": "car travels down street", "question": ["is there car ?"], "prompt": "{} travels down street"}, {"index": 398, "image_id": 2331977, "entity": "car", "caption": "he is sitting in a car ", "question": ["is there a car ?"], "prompt": "he is sitting in a {} "}, {"index": 399, "image_id": 2331977, "entity": "car", "caption": "the person is inside the car ", "question": ["is there the person ?", "is there the car ?"], "prompt": "the person is inside the {} "}, {"index": 400, "image_id": 2330180, "entity": "car", "caption": "cat sits on sidewalk looking at car", "question": ["is there cat ?", "is there sidewalk ?", "is there car ?"], "prompt": "cat sits on sidewalk looking at {}"}, {"index": 401, "image_id": 2330066, "entity": "car", "caption": "a red car is beside the blue car", "question": ["is there a red car ?", "is there the blue car ?"], "prompt": "a red {} is beside the blue {}"}, {"index": 402, "image_id": 2330005, "entity": "car", "caption": "Car painted red white and blue with elephant cartoon on hood", "question": ["is there car ?", "is there elephant cartoon ?", "is there hood ?"], "prompt": "Car painted red white and blue with elephant {}toon on hood"}, {"index": 403, "image_id": 2330005, "entity": "car", "caption": "man is driving the car", "question": ["is there man ?", "is there the car ?"], "prompt": "man is driving the {}"}, {"index": 404, "image_id": 2329079, "entity": "car", "caption": "car has a wheel on it", "question": ["is there car ?", "is there a wheel ?"], "prompt": "{} has a wheel on it"}, {"index": 405, "image_id": 2329079, "entity": "car", "caption": "a door handle on the car", "question": ["is there a door ?", "is there the car ?"], "prompt": "a door handle on the {}"}, {"index": 406, "image_id": 2328443, "entity": "car", "caption": "A car that is driving in the street", "question": ["is there a car ?", "is there the street ?"], "prompt": "A {} that is driving in the street"}, {"index": 407, "image_id": 2328324, "entity": "car", "caption": "the cat is on a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is on a {}"}, {"index": 408, "image_id": 2328094, "entity": "car", "caption": "the bear is in the grill of the car ", "question": ["is there the bear ?", "is there the grill ?", "is there the car ?"], "prompt": "the bear is in the grill of the {} "}, {"index": 409, "image_id": 2328094, "entity": "car", "caption": "it appears as if the car is eating the bear ", "question": ["is there the car ?", "is there the bear ?"], "prompt": "it appears as if the {} is eating the bear "}, {"index": 410, "image_id": 2327968, "entity": "car", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {} "}, {"index": 411, "image_id": 2327874, "entity": "car", "caption": "white surfboard leaned against car", "question": ["is there car ?"], "prompt": "white surfboard leaned against {}"}, {"index": 412, "image_id": 2327874, "entity": "car", "caption": "A surfboard is on the car. ", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}. "}, {"index": 413, "image_id": 2327874, "entity": "car", "caption": "Plants are next to the car. ", "question": ["are there plants ?", "is there the car ?"], "prompt": "Plants are next to the {}. "}, {"index": 414, "image_id": 2327874, "entity": "car", "caption": "A white surfboard is behind the car.", "question": ["is there a white surfboard ?", "is there the car ?"], "prompt": "A white surfboard is behind the {}."}, {"index": 415, "image_id": 2327688, "entity": "car", "caption": "door handle on the car", "question": ["is there door ?", "is there the car ?"], "prompt": "door handle on the {}"}, {"index": 416, "image_id": 2327454, "entity": "car", "caption": "Person driving a car", "question": ["is there person ?", "is there a car ?"], "prompt": "Person driving a {}"}, {"index": 417, "image_id": 2326951, "entity": "car", "caption": "poster is in the car", "question": ["is there poster ?", "is there the car ?"], "prompt": "poster is in the {}"}, {"index": 418, "image_id": 2326921, "entity": "car", "caption": "Volvo emblem on a car", "question": ["is there a car ?"], "prompt": "Volvo emblem on a {}"}, {"index": 419, "image_id": 2326884, "entity": "car", "caption": "this is a car windscreen", "question": ["is there a car windscreen ?"], "prompt": "this is a {} windscreen"}, {"index": 420, "image_id": 2326583, "entity": "car", "caption": "letter i on car", "question": ["is there letter ?", "is there car ?"], "prompt": "letter i on {}"}, {"index": 421, "image_id": 2325723, "entity": "car", "caption": "Cat is on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is on a {}"}, {"index": 422, "image_id": 2325460, "entity": "car", "caption": "Front end on a black car", "question": ["is there front end ?", "is there a black car ?"], "prompt": "Front end on a black {}"}, {"index": 423, "image_id": 2324926, "entity": "car", "caption": "the car has a face on it", "question": ["is there the car ?", "is there a face ?"], "prompt": "the {} has a face on it"}, {"index": 424, "image_id": 2323124, "entity": "car", "caption": "Cat is on the hood of car", "question": ["is there cat ?", "is there the hood ?", "is there car ?"], "prompt": "Cat is on the hood of {}"}, {"index": 425, "image_id": 2323124, "entity": "car", "caption": "Cat laying on the hood of the car", "question": ["is there cat ?", "is there the hood ?", "is there the car ?"], "prompt": "Cat laying on the hood of the {}"}, {"index": 426, "image_id": 2323124, "entity": "car", "caption": "Cat is laying on the hood of a car", "question": ["is there cat ?", "is there the hood ?", "is there a car ?"], "prompt": "Cat is laying on the hood of a {}"}, {"index": 427, "image_id": 2323088, "entity": "car", "caption": "The giraffes are walking around the cars", "question": ["are there the giraffes ?", "are there the cars ?"], "prompt": "The giraffes are walking around the {}s"}, {"index": 428, "image_id": 2322886, "entity": "car", "caption": "cars have rail on top of it ", "question": ["are there cars ?", "is there rail ?", "is there top ?"], "prompt": "{}s have rail on top of it "}, {"index": 429, "image_id": 2322886, "entity": "car", "caption": "cars have red light on back ", "question": ["are there cars ?", "is there red light ?"], "prompt": "{}s have red light on back "}, {"index": 430, "image_id": 2321836, "entity": "car", "caption": "Trunk of the car is open. ", "question": ["is there trunk ?", "is there the car ?"], "prompt": "Trunk of the {} is open. "}, {"index": 431, "image_id": 2321807, "entity": "car", "caption": "cat is meowing on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is meowing on {}"}, {"index": 432, "image_id": 2321807, "entity": "car", "caption": "Antenna is attache to the car", "question": ["is there antenna ?", "is there attache ?", "is there the car ?"], "prompt": "Antenna is attache to the {}"}, {"index": 433, "image_id": 2321807, "entity": "car", "caption": "Trees are in front of the car", "question": ["are there trees ?", "is there front ?", "is there the car ?"], "prompt": "Trees are in front of the {}"}, {"index": 434, "image_id": 2321807, "entity": "car", "caption": "Cat is sitting on the trunk of the car", "question": ["is there cat ?", "is there the trunk ?", "is there the car ?"], "prompt": "Cat is sitting on the trunk of the {}"}, {"index": 435, "image_id": 2321807, "entity": "car", "caption": "The cat is on the car. ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}. "}, {"index": 436, "image_id": 2320893, "entity": "car", "caption": "the car has a headlamp", "question": ["is there the car ?", "is there a headlamp ?"], "prompt": "the {} has a headlamp"}, {"index": 437, "image_id": 2320893, "entity": "car", "caption": "The left headlight on the car. ", "question": ["is there the left headlight ?", "is there the car ?"], "prompt": "The left headlight on the {}. "}, {"index": 438, "image_id": 2320741, "entity": "car", "caption": "car has black door", "question": ["is there car ?", "is there black door ?"], "prompt": "{} has black door"}, {"index": 439, "image_id": 2320741, "entity": "car", "caption": "car has black wheels", "question": ["is there car ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 440, "image_id": 2320741, "entity": "car", "caption": "The man is sitting in the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "The man is sitting in the {}"}, {"index": 441, "image_id": 2320741, "entity": "car", "caption": "The car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "The {} has a windshield"}, {"index": 442, "image_id": 2320741, "entity": "car", "caption": "man driving the black car", "question": ["is there man ?", "is there the black car ?"], "prompt": "man driving the black {}"}, {"index": 443, "image_id": 2320710, "entity": "car", "caption": "the car has a black tire", "question": ["is there the car ?", "is there a black tire ?"], "prompt": "the {} has a black tire"}, {"index": 444, "image_id": 2320662, "entity": "car", "caption": "man walking behind a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man walking behind a {}"}, {"index": 445, "image_id": 2320327, "entity": "car", "caption": "a round headlight on the car", "question": ["is there a round headlight ?", "is there the car ?"], "prompt": "a round headlight on the {}"}, {"index": 446, "image_id": 2319795, "entity": "car", "caption": "cat stands on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "cat stands on a {}"}, {"index": 447, "image_id": 2319480, "entity": "car", "caption": "Bird hanging from a rope in a car.", "question": ["is there bird ?", "is there a rope ?", "is there a car ?"], "prompt": "Bird hanging from a rope in a {}."}, {"index": 448, "image_id": 2319480, "entity": "car", "caption": "man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man driving a {}"}, {"index": 449, "image_id": 2319480, "entity": "car", "caption": "Man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "Man driving a {}"}, {"index": 450, "image_id": 2319164, "entity": "car", "caption": "white car rear with red stop lights", "question": ["is there white car rear ?", "are there red stop lights ?"], "prompt": "white {} rear with red stop lights"}, {"index": 451, "image_id": 2318890, "entity": "car", "caption": "the dog is on the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2318848, "entity": "car", "caption": "Black car parked next to the police vehicle", "question": ["is there black car ?", "is there the police vehicle ?"], "prompt": "Black {} parked next to the police vehicle"}, {"index": 453, "image_id": 2318441, "entity": "car", "caption": "the car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 454, "image_id": 2318441, "entity": "car", "caption": "A yellow car a dog is riding in", "question": ["is there a yellow car ?", "is there a dog ?"], "prompt": "A yellow {} a dog is riding in"}, {"index": 455, "image_id": 2318030, "entity": "car", "caption": "There is a red stripe that is on the car", "question": ["is there a red stripe ?", "is there the car ?"], "prompt": "There is a red stripe that is on the {}"}, {"index": 456, "image_id": 2318015, "entity": "car", "caption": "The man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is in a {}"}, {"index": 457, "image_id": 2317640, "entity": "car", "caption": "silver headlight on car", "question": ["is there silver headlight ?", "is there car ?"], "prompt": "silver headlight on {}"}, {"index": 458, "image_id": 2317640, "entity": "car", "caption": "company emblem on front of car", "question": ["is there company ?", "is there front ?", "is there car ?"], "prompt": "company emblem on front of {}"}, {"index": 459, "image_id": 2317566, "entity": "car", "caption": "a hose is on the roof of the car", "question": ["is there a hose ?", "is there the roof ?", "is there the car ?"], "prompt": "a hose is on the roof of the {}"}, {"index": 460, "image_id": 2317283, "entity": "car", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog is in a {}."}, {"index": 461, "image_id": 2317142, "entity": "car", "caption": "The car is on a rack.", "question": ["is there the car ?", "is there a rack ?"], "prompt": "The {} is on a rack."}, {"index": 462, "image_id": 2317029, "entity": "car", "caption": "console controls on a car", "question": ["is there console ?", "is there a car ?"], "prompt": "console controls on a {}"}, {"index": 463, "image_id": 2317029, "entity": "car", "caption": "front of car is blue", "question": ["is there front ?", "is there car ?"], "prompt": "front of {} is blue"}, {"index": 464, "image_id": 2317029, "entity": "car", "caption": "the teddy bear is in the car", "question": ["is there the teddy bear ?", "is there the car ?"], "prompt": "the teddy bear is in the {}"}, {"index": 465, "image_id": 2316404, "entity": "car", "caption": "This is a black car tire", "question": ["is there a black car tire ?"], "prompt": "This is a black {} tire"}, {"index": 466, "image_id": 2316376, "entity": "car", "caption": "yellow light is on the car", "question": ["is there yellow light ?", "is there the car ?"], "prompt": "yellow light is on the {}"}, {"index": 467, "image_id": 2316376, "entity": "car", "caption": "two men digging a car out of the mud", "question": ["are there two men ?", "is there a car ?", "is there the mud ?"], "prompt": "two men digging a {} out of the mud"}, {"index": 468, "image_id": 2316376, "entity": "car", "caption": "roof rack on a car", "question": ["is there roof rack ?", "is there a car ?"], "prompt": "roof rack on a {}"}, {"index": 469, "image_id": 2315981, "entity": "car", "caption": "Cay laying on a car ", "question": ["is there a car ?"], "prompt": "Cay laying on a {} "}, {"index": 470, "image_id": 2315981, "entity": "car", "caption": "Cat laying on car hood ", "question": ["is there cat ?", "is there car hood ?"], "prompt": "Cat laying on {} hood "}, {"index": 471, "image_id": 2315743, "entity": "car", "caption": "blue car behind moped", "question": ["is there blue car ?"], "prompt": "blue {} behind moped"}, {"index": 472, "image_id": 2315500, "entity": "car", "caption": "glass headlight on sports car", "question": ["is there glass headlight ?", "are there sports car ?"], "prompt": "glass headlight on sports {}"}, {"index": 473, "image_id": 2414288, "entity": "car", "caption": "a cat is laying on the hood of a car", "question": ["is there a cat ?", "is there the hood ?", "is there a car ?"], "prompt": "a cat is laying on the hood of a {}"}, {"index": 474, "image_id": 2414288, "entity": "car", "caption": "fuzzy cat is laying on the hood of a car", "question": ["is there fuzzy cat ?", "is there the hood ?", "is there a car ?"], "prompt": "fuzzy cat is laying on the hood of a {}"}, {"index": 475, "image_id": 2414288, "entity": "car", "caption": "cat is laying on a dark grey car", "question": ["is there cat ?", "is there a dark grey car ?"], "prompt": "cat is laying on a dark grey {}"}, {"index": 476, "image_id": 2414288, "entity": "car", "caption": "car has a small roof rack for luggage", "question": ["is there car ?", "is there a small roof rack ?", "is there luggage ?"], "prompt": "{} has a small roof rack for luggage"}, {"index": 477, "image_id": 2414273, "entity": "car", "caption": "cat is in the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is in the {}"}, {"index": 478, "image_id": 2414273, "entity": "car", "caption": "one cat is in the car", "question": ["is there one cat ?", "is there the car ?"], "prompt": "one cat is in the {}"}, {"index": 479, "image_id": 2413841, "entity": "car", "caption": "Diamond shaped light with numbers on the black car.", "question": ["is there light ?", "are there numbers ?", "is there the black car ?"], "prompt": "Diamond shaped light with numbers on the black {}."}, {"index": 480, "image_id": 2413841, "entity": "car", "caption": "Door handle on black car.", "question": ["is there door ?", "is there black car ?"], "prompt": "Door handle on black {}."}, {"index": 481, "image_id": 2413755, "entity": "car", "caption": "Trees growing behind car.", "question": ["are there trees ?", "is there car ?"], "prompt": "Trees growing behind {}."}, {"index": 482, "image_id": 2413755, "entity": "car", "caption": "The car has a red underglow", "question": ["is there the car ?", "is there a red underglow ?"], "prompt": "The {} has a red underglow"}, {"index": 483, "image_id": 2413755, "entity": "car", "caption": "a car is in the photo", "question": ["is there a car ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 484, "image_id": 2413755, "entity": "car", "caption": "a surfboard is on the car", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "a surfboard is on the {}"}, {"index": 485, "image_id": 2413755, "entity": "car", "caption": "the car is on the road", "question": ["is there the car ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 486, "image_id": 2413755, "entity": "car", "caption": "Red highlight lights accentuate the car", "question": ["are there red highlight lights ?", "is there the car ?"], "prompt": "Red highlight lights accentuate the {}"}, {"index": 487, "image_id": 2412424, "entity": "car", "caption": "the car windows are transparent", "question": ["are there the car windows ?"], "prompt": "the {} windows are transparent"}, {"index": 488, "image_id": 2412234, "entity": "car", "caption": "cat is under car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is under {}"}, {"index": 489, "image_id": 2412234, "entity": "car", "caption": "Cat is under the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "Cat is under the {}"}, {"index": 490, "image_id": 2411616, "entity": "car", "caption": "Surfboard tied to car", "question": ["is there surfboard ?", "is there car ?"], "prompt": "Surfboard tied to {}"}, {"index": 491, "image_id": 2411616, "entity": "car", "caption": "live christmas tree tied on car", "question": ["is there live christmas tree ?", "is there car ?"], "prompt": "live christmas tree tied on {}"}, {"index": 492, "image_id": 2411616, "entity": "car", "caption": "orange break light on black car ", "question": ["is there black car ?"], "prompt": "orange break light on black {} "}, {"index": 493, "image_id": 2411616, "entity": "car", "caption": "This car is hauling trees", "question": ["is there this car ?", "are there trees ?"], "prompt": "This {} is hauling trees"}, {"index": 494, "image_id": 2416074, "entity": "car", "caption": "The car has a red door.", "question": ["is there the car ?", "is there a red door ?"], "prompt": "The {} has a red door."}, {"index": 495, "image_id": 2416074, "entity": "car", "caption": "A surfboard is in the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is in the {}."}, {"index": 496, "image_id": 2417544, "entity": "car", "caption": "A car has dark rims.", "question": ["is there a car ?", "are there dark rims ?"], "prompt": "A {} has dark rims."}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02708093.json b/data/imagenet/compositions/prompts/n02708093.json
new file mode 100644
index 0000000000000000000000000000000000000000..7d2dd9f835f8e558a4f1c1c5df4fcf6c6568a4c2
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02708093.json
@@ -0,0 +1,1196 @@
+[
+ {
+ "index": 0,
+ "image_id": 2410316,
+ "entity": "clock",
+ "caption": "a horse toy is beside the clock",
+ "question": [
+ "is there a horse toy ?",
+ "is there the clock ?"
+ ],
+ "prompt": "a horse toy is beside the {}"
+ },
+ {
+ "index": 1,
+ "image_id": 2410316,
+ "entity": "clock",
+ "caption": "the clock indicates ten minutes to five",
+ "question": [
+ "is there the clock ?",
+ "are there ten minutes ?"
+ ],
+ "prompt": "the {} indicates ten minutes to five"
+ },
+ {
+ "index": 2,
+ "image_id": 2410316,
+ "entity": "clock",
+ "caption": "a brown horse toy is behind the clock",
+ "question": [
+ "is there a brown horse toy ?",
+ "is there the clock ?"
+ ],
+ "prompt": "a brown horse toy is behind the {}"
+ },
+ {
+ "index": 3,
+ "image_id": 2410316,
+ "entity": "clock",
+ "caption": "The clock has united in large letters. ",
+ "question": [
+ "is there the clock ?",
+ "are there large letters ?"
+ ],
+ "prompt": "The {} has united in large letters. "
+ },
+ {
+ "index": 4,
+ "image_id": 2409095,
+ "entity": "clock",
+ "caption": "The clock has roman numerals",
+ "question": [
+ "is there the clock ?",
+ "are there roman numerals ?"
+ ],
+ "prompt": "The {} has roman numerals"
+ },
+ {
+ "index": 5,
+ "image_id": 2408776,
+ "entity": "clock",
+ "caption": "The clock is on the wall. ",
+ "question": [
+ "is there the clock ?",
+ "is there the wall ?"
+ ],
+ "prompt": "The {} is on the wall. "
+ },
+ {
+ "index": 6,
+ "image_id": 2408776,
+ "entity": "clock",
+ "caption": "The clocks hangs on the wall by a cord. ",
+ "question": [
+ "are there the clocks ?",
+ "is there the wall ?",
+ "is there a cord ?"
+ ],
+ "prompt": "The {}s hangs on the wall by a cord. "
+ },
+ {
+ "index": 7,
+ "image_id": 2408776,
+ "entity": "clock",
+ "caption": "The clock's numbers are black. ",
+ "question": [
+ "are there the clock's numbers ?"
+ ],
+ "prompt": "The {}'s numbers are black. "
+ },
+ {
+ "index": 8,
+ "image_id": 2408776,
+ "entity": "clock",
+ "caption": "The clocks's hands are black. ",
+ "question": [
+ "are there the clocks's hands ?"
+ ],
+ "prompt": "The {}s's hands are black. "
+ },
+ {
+ "index": 9,
+ "image_id": 2408776,
+ "entity": "clock",
+ "caption": "A flower is on the clock. ",
+ "question": [
+ "is there a flower ?",
+ "is there the clock ?"
+ ],
+ "prompt": "A flower is on the {}. "
+ },
+ {
+ "index": 10,
+ "image_id": 2408776,
+ "entity": "clock",
+ "caption": "The flower is behind a corner of the clock. ",
+ "question": [
+ "is there the flower ?",
+ "is there a corner ?",
+ "is there the clock ?"
+ ],
+ "prompt": "The flower is behind a corner of the {}. "
+ },
+ {
+ "index": 11,
+ "image_id": 2408776,
+ "entity": "clock",
+ "caption": "Wall the clock is hanging on",
+ "question": [
+ "is there the clock ?"
+ ],
+ "prompt": "Wall the {} is hanging on"
+ },
+ {
+ "index": 12,
+ "image_id": 2408776,
+ "entity": "clock",
+ "caption": "Cord the clock is hanging on",
+ "question": [
+ "is there the clock ?"
+ ],
+ "prompt": "Cord the {} is hanging on"
+ },
+ {
+ "index": 13,
+ "image_id": 2406706,
+ "entity": "clock",
+ "caption": "the clock has roman numerals",
+ "question": [
+ "is there the clock ?",
+ "are there roman numerals ?"
+ ],
+ "prompt": "the {} has roman numerals"
+ },
+ {
+ "index": 14,
+ "image_id": 2406706,
+ "entity": "clock",
+ "caption": "the clock has layers",
+ "question": [
+ "is there the clock ?",
+ "are there layers ?"
+ ],
+ "prompt": "the {} has layers"
+ },
+ {
+ "index": 15,
+ "image_id": 2406706,
+ "entity": "clock",
+ "caption": "clock mounted on a building",
+ "question": [
+ "is there clock ?",
+ "is there a building ?"
+ ],
+ "prompt": "{} mounted on a building"
+ },
+ {
+ "index": 16,
+ "image_id": 2401776,
+ "entity": "clock",
+ "caption": "the clock is on the side of the building",
+ "question": [
+ "is there the clock ?",
+ "is there the side ?",
+ "is there the building ?"
+ ],
+ "prompt": "the {} is on the side of the building"
+ },
+ {
+ "index": 17,
+ "image_id": 2401776,
+ "entity": "clock",
+ "caption": "the clock has a minute hand",
+ "question": [
+ "is there the clock ?",
+ "is there a minute hand ?"
+ ],
+ "prompt": "the {} has a minute hand"
+ },
+ {
+ "index": 18,
+ "image_id": 2401775,
+ "entity": "clock",
+ "caption": "a clock saying it is almost 3:30",
+ "question": [
+ "is there a clock ?"
+ ],
+ "prompt": "a {} saying it is almost 3:30"
+ },
+ {
+ "index": 19,
+ "image_id": 2397881,
+ "entity": "clock",
+ "caption": "the clock has stripes",
+ "question": [
+ "is there the clock ?",
+ "are there stripes ?"
+ ],
+ "prompt": "the {} has stripes"
+ },
+ {
+ "index": 20,
+ "image_id": 2394607,
+ "entity": "clock",
+ "caption": "green and white clock stuck on a pole",
+ "question": [
+ "is there green and white clock ?",
+ "is there a pole ?"
+ ],
+ "prompt": "green and white {} stuck on a pole"
+ },
+ {
+ "index": 21,
+ "image_id": 2394286,
+ "entity": "clock",
+ "caption": "The word Quartz written on the face of the clock",
+ "question": [
+ "is there the word ?",
+ "is there quartz ?",
+ "is there the face ?",
+ "is there the clock ?"
+ ],
+ "prompt": "The word Quartz written on the face of the {}"
+ },
+ {
+ "index": 22,
+ "image_id": 2392766,
+ "entity": "clock",
+ "caption": "The clock has black hands.",
+ "question": [
+ "is there the clock ?",
+ "are there black hands ?"
+ ],
+ "prompt": "The {} has black hands."
+ },
+ {
+ "index": 23,
+ "image_id": 2392766,
+ "entity": "clock",
+ "caption": "The clock is on the mechanics.",
+ "question": [
+ "is there the clock ?",
+ "are there the mechanics ?"
+ ],
+ "prompt": "The {} is on the mechanics."
+ },
+ {
+ "index": 24,
+ "image_id": 2391821,
+ "entity": "clock",
+ "caption": "The stone animals are around the clock.",
+ "question": [
+ "are there the stone animals ?",
+ "is there the clock ?"
+ ],
+ "prompt": "The stone animals are around the {}."
+ },
+ {
+ "index": 25,
+ "image_id": 2391067,
+ "entity": "clock",
+ "caption": "Numbers on clock are roman numerals.",
+ "question": [
+ "are there numbers ?",
+ "is there clock ?",
+ "are there roman numerals ?"
+ ],
+ "prompt": "Numbers on {} are roman numerals."
+ },
+ {
+ "index": 26,
+ "image_id": 2389588,
+ "entity": "clock",
+ "caption": "the mirror is behind the clock",
+ "question": [
+ "is there the mirror ?",
+ "is there the clock ?"
+ ],
+ "prompt": "the mirror is behind the {}"
+ },
+ {
+ "index": 27,
+ "image_id": 2389588,
+ "entity": "clock",
+ "caption": "the trophy is on top of the clock",
+ "question": [
+ "is there the trophy ?",
+ "is there top ?",
+ "is there the clock ?"
+ ],
+ "prompt": "the trophy is on top of the {}"
+ },
+ {
+ "index": 28,
+ "image_id": 2389588,
+ "entity": "clock",
+ "caption": "children are sculptures of clock",
+ "question": [
+ "are there children ?",
+ "are there sculptures ?",
+ "is there clock ?"
+ ],
+ "prompt": "children are sculptures of {}"
+ },
+ {
+ "index": 29,
+ "image_id": 2389588,
+ "entity": "clock",
+ "caption": "clock is in museum",
+ "question": [
+ "is there clock ?",
+ "is there museum ?"
+ ],
+ "prompt": "{} is in museum"
+ },
+ {
+ "index": 30,
+ "image_id": 2389588,
+ "entity": "clock",
+ "caption": "clock uses roman numerals",
+ "question": [
+ "is there clock ?",
+ "are there roman numerals ?"
+ ],
+ "prompt": "{} uses roman numerals"
+ },
+ {
+ "index": 31,
+ "image_id": 2389588,
+ "entity": "clock",
+ "caption": "children are statues on clock",
+ "question": [
+ "are there children ?",
+ "are there statues ?",
+ "is there clock ?"
+ ],
+ "prompt": "children are statues on {}"
+ },
+ {
+ "index": 32,
+ "image_id": 2384484,
+ "entity": "clock",
+ "caption": "A double window is above the clock.",
+ "question": [
+ "is there a double window ?",
+ "is there the clock ?"
+ ],
+ "prompt": "A double window is above the {}."
+ },
+ {
+ "index": 33,
+ "image_id": 2384484,
+ "entity": "clock",
+ "caption": "The clock has Roman numerals.",
+ "question": [
+ "is there the clock ?",
+ "are there roman numerals ?"
+ ],
+ "prompt": "The {} has Roman numerals."
+ },
+ {
+ "index": 34,
+ "image_id": 2384484,
+ "entity": "clock",
+ "caption": "A trailer is behind the clock.",
+ "question": [
+ "is there a trailer ?",
+ "is there the clock ?"
+ ],
+ "prompt": "A trailer is behind the {}."
+ },
+ {
+ "index": 35,
+ "image_id": 2383009,
+ "entity": "clock",
+ "caption": "Center of clock has small knob",
+ "question": [
+ "is there center ?",
+ "is there clock ?",
+ "is there small knob ?"
+ ],
+ "prompt": "Center of {} has small knob"
+ },
+ {
+ "index": 36,
+ "image_id": 2381167,
+ "entity": "clock",
+ "caption": "stucco wall clock is on",
+ "question": [
+ "is there stucco wall clock ?"
+ ],
+ "prompt": "stucco wall {} is on"
+ },
+ {
+ "index": 37,
+ "image_id": 2377181,
+ "entity": "clock",
+ "caption": "The clock is hanging from the ceiling",
+ "question": [
+ "is there the clock ?",
+ "is there the ceiling ?"
+ ],
+ "prompt": "The {} is hanging from the ceiling"
+ },
+ {
+ "index": 38,
+ "image_id": 2377181,
+ "entity": "clock",
+ "caption": "The clock has numerical numbers.",
+ "question": [
+ "is there the clock ?",
+ "are there numerical numbers ?"
+ ],
+ "prompt": "The {} has numerical numbers."
+ },
+ {
+ "index": 39,
+ "image_id": 2377181,
+ "entity": "clock",
+ "caption": "The little hand on the clock is red.",
+ "question": [
+ "is there the little hand ?",
+ "is there the clock ?"
+ ],
+ "prompt": "The little hand on the {} is red."
+ },
+ {
+ "index": 40,
+ "image_id": 2377181,
+ "entity": "clock",
+ "caption": "The big hand on the clock is black.",
+ "question": [
+ "is there the big hand ?",
+ "is there the clock ?"
+ ],
+ "prompt": "The big hand on the {} is black."
+ },
+ {
+ "index": 41,
+ "image_id": 2376461,
+ "entity": "clock",
+ "caption": "top of the track the clock is hanging on",
+ "question": [
+ "is there top ?",
+ "is there the track ?",
+ "is there the clock ?"
+ ],
+ "prompt": "top of the track the {} is hanging on"
+ },
+ {
+ "index": 42,
+ "image_id": 2376359,
+ "entity": "clock",
+ "caption": "Oval shaped hole in middle of clock hand",
+ "question": [
+ "is there oval shaped hole ?",
+ "is there middle ?",
+ "is there clock hand ?"
+ ],
+ "prompt": "Oval shaped hole in middle of {} hand"
+ },
+ {
+ "index": 43,
+ "image_id": 2376359,
+ "entity": "clock",
+ "caption": "The clock is on the counter.",
+ "question": [
+ "is there the clock ?",
+ "is there the counter ?"
+ ],
+ "prompt": "The {} is on the counter."
+ },
+ {
+ "index": 44,
+ "image_id": 2376359,
+ "entity": "clock",
+ "caption": "the clock is on the table ",
+ "question": [
+ "is there the clock ?",
+ "is there the table ?"
+ ],
+ "prompt": "the {} is on the table "
+ },
+ {
+ "index": 45,
+ "image_id": 2376119,
+ "entity": "clock",
+ "caption": "The clock is above the windows",
+ "question": [
+ "is there the clock ?",
+ "are there the windows ?"
+ ],
+ "prompt": "The {} is above the windows"
+ },
+ {
+ "index": 46,
+ "image_id": 2375668,
+ "entity": "clock",
+ "caption": "the sun is in the middle of the clock",
+ "question": [
+ "is there the sun ?",
+ "is there the middle ?",
+ "is there the clock ?"
+ ],
+ "prompt": "the sun is in the middle of the {}"
+ },
+ {
+ "index": 47,
+ "image_id": 2375539,
+ "entity": "clock",
+ "caption": "animal carved into the front of the clock",
+ "question": [
+ "is there animal ?",
+ "is there the front ?",
+ "is there the clock ?"
+ ],
+ "prompt": "animal carved into the front of the {}"
+ },
+ {
+ "index": 48,
+ "image_id": 2365737,
+ "entity": "clock",
+ "caption": "the illar has two clocks",
+ "question": [
+ "are there two clocks ?"
+ ],
+ "prompt": "the illar has two {}s"
+ },
+ {
+ "index": 49,
+ "image_id": 2362939,
+ "entity": "clock",
+ "caption": "this is a clock",
+ "question": [
+ "is there a clock ?"
+ ],
+ "prompt": "this is a {}"
+ },
+ {
+ "index": 50,
+ "image_id": 2360759,
+ "entity": "clock",
+ "caption": "woman standing behind a large clock",
+ "question": [
+ "is there woman ?",
+ "is there a large clock ?"
+ ],
+ "prompt": "woman standing behind a large {}"
+ },
+ {
+ "index": 51,
+ "image_id": 2360759,
+ "entity": "clock",
+ "caption": "There are dots on the clock that are visible",
+ "question": [
+ "are there dots ?",
+ "is there the clock ?"
+ ],
+ "prompt": "There are dots on the {} that are visible"
+ },
+ {
+ "index": 52,
+ "image_id": 2358739,
+ "entity": "clock",
+ "caption": "a metal clock extending from building",
+ "question": [
+ "is there a metal clock ?"
+ ],
+ "prompt": "a metal {} extending from building"
+ },
+ {
+ "index": 53,
+ "image_id": 2356053,
+ "entity": "clock",
+ "caption": "an old clock is hanging on the wall",
+ "question": [
+ "is there an old clock ?",
+ "is there the wall ?"
+ ],
+ "prompt": "an old {} is hanging on the wall"
+ },
+ {
+ "index": 54,
+ "image_id": 2356053,
+ "entity": "clock",
+ "caption": "clock is in a wood suppor",
+ "question": [
+ "is there clock ?",
+ "is there a wood suppor ?"
+ ],
+ "prompt": "{} is in a wood suppor"
+ },
+ {
+ "index": 55,
+ "image_id": 2356053,
+ "entity": "clock",
+ "caption": "clock has cardinal numbers",
+ "question": [
+ "is there clock ?",
+ "are there cardinal numbers ?"
+ ],
+ "prompt": "{} has cardinal numbers"
+ },
+ {
+ "index": 56,
+ "image_id": 2353998,
+ "entity": "clock",
+ "caption": "clock that reads 10:35",
+ "question": [
+ "is there clock ?"
+ ],
+ "prompt": "{} that reads 10:35"
+ },
+ {
+ "index": 57,
+ "image_id": 2352061,
+ "entity": "clock",
+ "caption": "the clock shows 9:33",
+ "question": [
+ "is there the clock ?"
+ ],
+ "prompt": "the {} shows 9:33"
+ },
+ {
+ "index": 58,
+ "image_id": 2352061,
+ "entity": "clock",
+ "caption": "clock's hands are black",
+ "question": [
+ "are there clock's hands ?"
+ ],
+ "prompt": "{}'s hands are black"
+ },
+ {
+ "index": 59,
+ "image_id": 2351684,
+ "entity": "clock",
+ "caption": "The hour and minute hand on the clock is gold.",
+ "question": [
+ "is there the hour and minute hand ?",
+ "is there the clock ?",
+ "is there gold ?"
+ ],
+ "prompt": "The hour and minute hand on the {} is gold."
+ },
+ {
+ "index": 60,
+ "image_id": 2351684,
+ "entity": "clock",
+ "caption": "Gold colored hands on the clock.",
+ "question": [
+ "are there gold colored hands ?",
+ "is there the clock ?"
+ ],
+ "prompt": "Gold colored hands on the {}."
+ },
+ {
+ "index": 61,
+ "image_id": 2351684,
+ "entity": "clock",
+ "caption": "A camel's head painted in the background on a clock",
+ "question": [
+ "is there a camel's head ?",
+ "is there the background ?",
+ "is there a clock ?"
+ ],
+ "prompt": "A camel's head painted in the background on a {}"
+ },
+ {
+ "index": 62,
+ "image_id": 2350248,
+ "entity": "clock",
+ "caption": "One large orange clock attached to wall have back writing ",
+ "question": [
+ "is there one large orange clock ?",
+ "is there wall ?"
+ ],
+ "prompt": "One large orange {} attached to wall have back writing "
+ },
+ {
+ "index": 63,
+ "image_id": 2348404,
+ "entity": "clock",
+ "caption": "The clock reads 11:36",
+ "question": [
+ "is there the clock ?"
+ ],
+ "prompt": "The {} reads 11:36"
+ },
+ {
+ "index": 64,
+ "image_id": 2346989,
+ "entity": "clock",
+ "caption": "screw that holds hands of clock together",
+ "question": [
+ "are there hands ?",
+ "is there clock ?"
+ ],
+ "prompt": "screw that holds hands of {} together"
+ },
+ {
+ "index": 65,
+ "image_id": 2346989,
+ "entity": "clock",
+ "caption": "clock has roman numbers",
+ "question": [
+ "is there clock ?",
+ "are there roman numbers ?"
+ ],
+ "prompt": "{} has roman numbers"
+ },
+ {
+ "index": 66,
+ "image_id": 2346989,
+ "entity": "clock",
+ "caption": "numbers on the clock are in black",
+ "question": [
+ "are there numbers ?",
+ "is there the clock ?",
+ "is there black ?"
+ ],
+ "prompt": "numbers on the {} are in black"
+ },
+ {
+ "index": 67,
+ "image_id": 2346989,
+ "entity": "clock",
+ "caption": "gold bolt holding hands to clock face",
+ "question": [
+ "are there hands ?"
+ ],
+ "prompt": "gold bolt holding hands to {} face"
+ },
+ {
+ "index": 68,
+ "image_id": 2345738,
+ "entity": "clock",
+ "caption": "clock has gold face",
+ "question": [
+ "is there clock ?",
+ "is there gold face ?"
+ ],
+ "prompt": "{} has gold face"
+ },
+ {
+ "index": 69,
+ "image_id": 2345738,
+ "entity": "clock",
+ "caption": "clock has roman numerals",
+ "question": [
+ "is there clock ?",
+ "are there roman numerals ?"
+ ],
+ "prompt": "{} has roman numerals"
+ },
+ {
+ "index": 70,
+ "image_id": 2345738,
+ "entity": "clock",
+ "caption": "clock hands are black",
+ "question": [
+ "are there clock hands ?"
+ ],
+ "prompt": "{} hands are black"
+ },
+ {
+ "index": 71,
+ "image_id": 2345738,
+ "entity": "clock",
+ "caption": "clock is casting shadow",
+ "question": [
+ "is there clock ?",
+ "is there shadow ?"
+ ],
+ "prompt": "{} is casting shadow"
+ },
+ {
+ "index": 72,
+ "image_id": 2345738,
+ "entity": "clock",
+ "caption": "the front of the clock has s decorative carving",
+ "question": [
+ "is there the front ?",
+ "is there the clock ?",
+ "is there decorative carving ?"
+ ],
+ "prompt": "the front of the {} has s decorative carving"
+ },
+ {
+ "index": 73,
+ "image_id": 2345738,
+ "entity": "clock",
+ "caption": "the clock is in the corner",
+ "question": [
+ "is there the clock ?",
+ "is there the corner ?"
+ ],
+ "prompt": "the {} is in the corner"
+ },
+ {
+ "index": 74,
+ "image_id": 2342674,
+ "entity": "clock",
+ "caption": "the clock has a number 7",
+ "question": [
+ "is there the clock ?",
+ "is there a number ?"
+ ],
+ "prompt": "the {} has a number 7"
+ },
+ {
+ "index": 75,
+ "image_id": 2342674,
+ "entity": "clock",
+ "caption": "the clock has a number 8",
+ "question": [
+ "is there the clock ?",
+ "is there a number ?"
+ ],
+ "prompt": "the {} has a number 8"
+ },
+ {
+ "index": 76,
+ "image_id": 2342674,
+ "entity": "clock",
+ "caption": "the clock has a number 10",
+ "question": [
+ "is there the clock ?",
+ "is there a number ?"
+ ],
+ "prompt": "the {} has a number 10"
+ },
+ {
+ "index": 77,
+ "image_id": 2342674,
+ "entity": "clock",
+ "caption": "the clock has a number 11",
+ "question": [
+ "is there the clock ?",
+ "is there a number ?"
+ ],
+ "prompt": "the {} has a number 11"
+ },
+ {
+ "index": 78,
+ "image_id": 2342674,
+ "entity": "clock",
+ "caption": "the clock has a number 12",
+ "question": [
+ "is there the clock ?",
+ "is there a number ?"
+ ],
+ "prompt": "the {} has a number 12"
+ },
+ {
+ "index": 79,
+ "image_id": 2342674,
+ "entity": "clock",
+ "caption": "numbers on the clock are black",
+ "question": [
+ "are there numbers ?",
+ "is there the clock ?"
+ ],
+ "prompt": "numbers on the {} are black"
+ },
+ {
+ "index": 80,
+ "image_id": 2338262,
+ "entity": "clock",
+ "caption": "clock has white face",
+ "question": [
+ "is there clock ?",
+ "is there white face ?"
+ ],
+ "prompt": "{} has white face"
+ },
+ {
+ "index": 81,
+ "image_id": 2338262,
+ "entity": "clock",
+ "caption": "clock has black hands",
+ "question": [
+ "is there clock ?",
+ "are there black hands ?"
+ ],
+ "prompt": "{} has black hands"
+ },
+ {
+ "index": 82,
+ "image_id": 2337207,
+ "entity": "clock",
+ "caption": "clock time indicates 2:08",
+ "question": [
+ "is there clock time ?"
+ ],
+ "prompt": "{} time indicates 2:08"
+ },
+ {
+ "index": 83,
+ "image_id": 2336136,
+ "entity": "clock",
+ "caption": "The clock is hanging from the ceiling.",
+ "question": [
+ "is there the clock ?",
+ "is there the ceiling ?"
+ ],
+ "prompt": "The {} is hanging from the ceiling."
+ },
+ {
+ "index": 84,
+ "image_id": 2336136,
+ "entity": "clock",
+ "caption": "A clock that is hanging from the wall",
+ "question": [
+ "is there a clock ?",
+ "is there the wall ?"
+ ],
+ "prompt": "A {} that is hanging from the wall"
+ },
+ {
+ "index": 85,
+ "image_id": 2335316,
+ "entity": "clock",
+ "caption": "clock has a pendulum",
+ "question": [
+ "is there clock ?",
+ "is there a pendulum ?"
+ ],
+ "prompt": "{} has a pendulum"
+ },
+ {
+ "index": 86,
+ "image_id": 2334994,
+ "entity": "clock",
+ "caption": "handles of clock are black ",
+ "question": [
+ "are there handles ?",
+ "is there clock ?"
+ ],
+ "prompt": "handles of {} are black "
+ },
+ {
+ "index": 87,
+ "image_id": 2334994,
+ "entity": "clock",
+ "caption": "1 is on the clock ",
+ "question": [
+ "is there the clock ?"
+ ],
+ "prompt": "1 is on the {} "
+ },
+ {
+ "index": 88,
+ "image_id": 2334994,
+ "entity": "clock",
+ "caption": "3 is on the clock ",
+ "question": [
+ "is there the clock ?"
+ ],
+ "prompt": "3 is on the {} "
+ },
+ {
+ "index": 89,
+ "image_id": 2334994,
+ "entity": "clock",
+ "caption": "4 is on the clock ",
+ "question": [
+ "is there the clock ?"
+ ],
+ "prompt": "4 is on the {} "
+ },
+ {
+ "index": 90,
+ "image_id": 2334994,
+ "entity": "clock",
+ "caption": "5 is on the clock ",
+ "question": [
+ "is there the clock ?"
+ ],
+ "prompt": "5 is on the {} "
+ },
+ {
+ "index": 91,
+ "image_id": 2334994,
+ "entity": "clock",
+ "caption": "7 is on the clock ",
+ "question": [
+ "is there the clock ?"
+ ],
+ "prompt": "7 is on the {} "
+ },
+ {
+ "index": 92,
+ "image_id": 2334738,
+ "entity": "clock",
+ "caption": "it is 4:22 on the clock",
+ "question": [
+ "is there the clock ?"
+ ],
+ "prompt": "it is 4:22 on the {}"
+ },
+ {
+ "index": 93,
+ "image_id": 2333327,
+ "entity": "clock",
+ "caption": "clock has a number",
+ "question": [
+ "is there clock ?",
+ "is there a number ?"
+ ],
+ "prompt": "{} has a number"
+ },
+ {
+ "index": 94,
+ "image_id": 2330856,
+ "entity": "clock",
+ "caption": "Hands of the clock are outside the glass",
+ "question": [
+ "are there hands ?",
+ "is there the clock ?",
+ "is there the glass ?"
+ ],
+ "prompt": "Hands of the {} are outside the glass"
+ },
+ {
+ "index": 95,
+ "image_id": 2324292,
+ "entity": "clock",
+ "caption": "A clock mounted on the wall",
+ "question": [
+ "is there a clock ?",
+ "is there the wall ?"
+ ],
+ "prompt": "A {} mounted on the wall"
+ },
+ {
+ "index": 96,
+ "image_id": 2320915,
+ "entity": "clock",
+ "caption": "the vine is around clock",
+ "question": [
+ "is there the vine ?",
+ "is there clock ?"
+ ],
+ "prompt": "the vine is around {}"
+ },
+ {
+ "index": 97,
+ "image_id": 2319981,
+ "entity": "clock",
+ "caption": "the clock is on a building ",
+ "question": [
+ "is there the clock ?",
+ "is there a building ?"
+ ],
+ "prompt": "the {} is on a building "
+ },
+ {
+ "index": 98,
+ "image_id": 2319981,
+ "entity": "clock",
+ "caption": "the clock has black hour and minute markers ",
+ "question": [
+ "is there the clock ?",
+ "are there black hour and minute markers ?"
+ ],
+ "prompt": "the {} has black hour and minute markers "
+ },
+ {
+ "index": 99,
+ "image_id": 2414999,
+ "entity": "clock",
+ "caption": "wall mounted clock ",
+ "question": [
+ "is there clock ?"
+ ],
+ "prompt": "wall mounted {} "
+ },
+ {
+ "index": 100,
+ "image_id": 2414957,
+ "entity": "clock",
+ "caption": "Buildings are visible through the clock.",
+ "question": [
+ "are there buildings ?",
+ "is there the clock ?"
+ ],
+ "prompt": "Buildings are visible through the {}."
+ },
+ {
+ "index": 101,
+ "image_id": 2414957,
+ "entity": "clock",
+ "caption": "The clock's numbers are roman numerals. ",
+ "question": [
+ "are there the clock's numbers ?",
+ "are there roman numerals ?"
+ ],
+ "prompt": "The {}'s numbers are roman numerals. "
+ },
+ {
+ "index": 102,
+ "image_id": 2414212,
+ "entity": "clock",
+ "caption": "These are clock hands.",
+ "question": [
+ "are there clock hands ?"
+ ],
+ "prompt": "These are {} hands."
+ },
+ {
+ "index": 103,
+ "image_id": 2412479,
+ "entity": "clock",
+ "caption": "The clock has one red hand",
+ "question": [
+ "is there the clock ?",
+ "is there one red hand ?"
+ ],
+ "prompt": "The {} has one red hand"
+ },
+ {
+ "index": 104,
+ "image_id": 2412479,
+ "entity": "clock",
+ "caption": "A wooden stool is standing behind the clock.",
+ "question": [
+ "is there a wooden stool ?",
+ "is there the clock ?"
+ ],
+ "prompt": "A wooden stool is standing behind the {}."
+ },
+ {
+ "index": 105,
+ "image_id": 2412479,
+ "entity": "clock",
+ "caption": "Small woman design on the clock.",
+ "question": [
+ "is there small woman ?",
+ "is there the clock ?"
+ ],
+ "prompt": "Small woman design on the {}."
+ },
+ {
+ "index": 106,
+ "image_id": 2415872,
+ "entity": "clock",
+ "caption": "clock has twelve numbers",
+ "question": [
+ "is there clock ?",
+ "are there twelve numbers ?"
+ ],
+ "prompt": "{} has twelve numbers"
+ },
+ {
+ "index": 107,
+ "image_id": 2415872,
+ "entity": "clock",
+ "caption": "clock has two silver hands",
+ "question": [
+ "is there clock ?",
+ "are there two silver hands ?"
+ ],
+ "prompt": "{} has two silver hands"
+ },
+ {
+ "index": 108,
+ "image_id": 2417056,
+ "entity": "clock",
+ "caption": "The clock's big hand that tells the minutes.",
+ "question": [
+ "is there the clock's big hand ?",
+ "are there the minutes ?"
+ ],
+ "prompt": "The {}'s big hand that tells the minutes."
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02814533.json b/data/imagenet/compositions/prompts/n02814533.json
new file mode 100644
index 0000000000000000000000000000000000000000..2381f38921c9ad56862e92e8fc850617008827e1
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02814533.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 65, "entity": "car", "caption": "License plate placed on black car", "question": ["is there license plate ?", "is there black car ?"], "prompt": "License plate placed on black {}"}, {"index": 1, "image_id": 316, "entity": "car", "caption": "the seats are in the car", "question": ["are there the seats ?", "is there the car ?"], "prompt": "the seats are in the {}"}, {"index": 2, "image_id": 692, "entity": "car", "caption": "A man is sitting in a car.", "question": ["is there a man ?", "is there a car ?"], "prompt": "A man is sitting in a {}."}, {"index": 3, "image_id": 692, "entity": "car", "caption": "A rear view mirror is in the car.", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "A rear view mirror is in the {}."}, {"index": 4, "image_id": 1029, "entity": "car", "caption": "man is sitting in tan car", "question": ["is there man ?", "is there tan car ?"], "prompt": "man is sitting in tan {}"}, {"index": 5, "image_id": 1710, "entity": "car", "caption": "silver trim on car", "question": ["is there silver trim ?", "is there car ?"], "prompt": "silver trim on {}"}, {"index": 6, "image_id": 2889, "entity": "car", "caption": "rear left tire of the white car", "question": ["is there rear left tire ?", "is there the white car ?"], "prompt": "rear left tire of the white {}"}, {"index": 7, "image_id": 2889, "entity": "car", "caption": "front left tire of the white car", "question": ["is there front left tire ?", "is there the white car ?"], "prompt": "front left tire of the white {}"}, {"index": 8, "image_id": 3288, "entity": "car", "caption": "the white car has doors", "question": ["is there the white car ?", "are there doors ?"], "prompt": "the white {} has doors"}, {"index": 9, "image_id": 3288, "entity": "car", "caption": "the tail light is red on the back of the car", "question": ["is there the tail light ?", "is there the back ?", "is there the car ?"], "prompt": "the tail light is red on the back of the {}"}, {"index": 10, "image_id": 3378, "entity": "car", "caption": "red car parked streetside", "question": ["is there red car ?"], "prompt": "red {} parked streetside"}, {"index": 11, "image_id": 3378, "entity": "car", "caption": "door handle on black car", "question": ["is there door ?", "is there black car ?"], "prompt": "door handle on black {}"}, {"index": 12, "image_id": 3493, "entity": "car", "caption": "car has a front light", "question": ["is there car ?", "is there a front light ?"], "prompt": "{} has a front light"}, {"index": 13, "image_id": 3493, "entity": "car", "caption": "car has front light", "question": ["is there car ?", "is there front light ?"], "prompt": "{} has front light"}, {"index": 14, "image_id": 3493, "entity": "car", "caption": "car has grey trim", "question": ["is there car ?"], "prompt": "{} has grey trim"}, {"index": 15, "image_id": 3493, "entity": "car", "caption": "red car has blue and white plate", "question": ["is there red car ?", "is there blue and white plate ?"], "prompt": "red {} has blue and white plate"}, {"index": 16, "image_id": 3493, "entity": "car", "caption": "sidewalk is next to car", "question": ["is there sidewalk ?"], "prompt": "sidewalk is next to {}"}, {"index": 17, "image_id": 3493, "entity": "car", "caption": "car has two headlights", "question": ["is there car ?", "are there two headlights ?"], "prompt": "{} has two headlights"}, {"index": 18, "image_id": 3764, "entity": "car", "caption": "mannequins are behind car", "question": ["are there mannequins ?", "is there car ?"], "prompt": "mannequins are behind {}"}, {"index": 19, "image_id": 3997, "entity": "car", "caption": "a red and black seat belt latch in a car", "question": ["is there a red and black seat belt latch ?", "is there a car ?"], "prompt": "a red and black seat belt latch in a {}"}, {"index": 20, "image_id": 3997, "entity": "car", "caption": "a black head rest in a car", "question": ["is there a black head ?", "is there a car ?"], "prompt": "a black head rest in a {}"}, {"index": 21, "image_id": 3997, "entity": "car", "caption": "a silver and red door handle in a car", "question": ["is there a silver and red door handle ?", "is there a car ?"], "prompt": "a silver and red door handle in a {}"}, {"index": 22, "image_id": 4526, "entity": "car", "caption": "a car front headlight", "question": ["is there a car front headlight ?"], "prompt": "a {} front headlight"}, {"index": 23, "image_id": 4526, "entity": "car", "caption": "the right front tire of the purple car is black in color.", "question": ["is there the right front tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the right front tire of the purple {} is black in color."}, {"index": 24, "image_id": 4526, "entity": "car", "caption": "the back right tire of the purple car is black in color.", "question": ["is there the back right tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the back right tire of the purple {} is black in color."}, {"index": 25, "image_id": 4526, "entity": "car", "caption": "the right front light of the purple car is round in shape.", "question": ["is there the right front light ?", "is there the purple car ?", "is there shape ?"], "prompt": "the right front light of the purple {} is round in shape."}, {"index": 26, "image_id": 2415144, "entity": "car", "caption": "police car in front of fire hydrant", "question": ["is there police car ?", "is there front ?", "is there fire hydrant ?"], "prompt": "police {} in front of fire hydrant"}, {"index": 27, "image_id": 497921, "entity": "car", "caption": "Seat belt coming from the side of car.", "question": ["is there seat belt ?", "is there the side ?", "is there car ?"], "prompt": "Seat belt coming from the side of {}."}, {"index": 28, "image_id": 713086, "entity": "car", "caption": "car has an antenna", "question": ["is there car ?", "is there an antenna ?"], "prompt": "{} has an antenna"}, {"index": 29, "image_id": 713093, "entity": "car", "caption": "Person in black coat standing next to vintage green car", "question": ["is there person ?", "is there black coat ?", "is there vintage green car ?"], "prompt": "Person in black coat standing next to vintage green {}"}, {"index": 30, "image_id": 713101, "entity": "car", "caption": "car has a window", "question": ["is there car ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 31, "image_id": 1592605, "entity": "car", "caption": "A grey car passes by", "question": ["is there a grey car ?"], "prompt": "A grey {} passes by"}, {"index": 32, "image_id": 2414932, "entity": "car", "caption": "The cat sits on the car.", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat sits on the {}."}, {"index": 33, "image_id": 2414470, "entity": "car", "caption": "A car's door handle", "question": ["is there a car's door ?"], "prompt": "A {}'s door handle"}, {"index": 34, "image_id": 2414470, "entity": "car", "caption": "Door handle on a car door.", "question": ["is there door ?", "is there a car door ?"], "prompt": "Door handle on a {} door."}, {"index": 35, "image_id": 2414470, "entity": "car", "caption": "The man is sitting in the car's driver seat.", "question": ["is there the man ?", "is there the car's driver seat ?"], "prompt": "The man is sitting in the {}'s driver seat."}, {"index": 36, "image_id": 2412607, "entity": "car", "caption": "Automobile seats inside the car are gray", "question": ["are there automobile seats ?", "is there the car ?"], "prompt": "Automobile seats inside the {} are gray"}, {"index": 37, "image_id": 2412607, "entity": "car", "caption": "silver door handle on car", "question": ["is there silver door ?", "is there car ?"], "prompt": "silver door handle on {}"}, {"index": 38, "image_id": 2412101, "entity": "car", "caption": "Red car parked on right side of street ", "question": ["is there red car ?", "is there right side ?", "is there street ?"], "prompt": "Red {} parked on right side of street "}, {"index": 39, "image_id": 2412101, "entity": "car", "caption": "Front left tire on gray car.", "question": ["is there front ?", "is there tire ?", "is there gray car ?"], "prompt": "Front left tire on gray {}."}, {"index": 40, "image_id": 2411491, "entity": "car", "caption": "car door is unlocked", "question": ["is there car door ?"], "prompt": "{} door is unlocked"}, {"index": 41, "image_id": 2410940, "entity": "car", "caption": "Hood of car is big", "question": ["is there hood ?", "is there car ?"], "prompt": "Hood of {} is big"}, {"index": 42, "image_id": 2410404, "entity": "car", "caption": "Hood popped open on car in background.", "question": ["is there hood ?", "is there car ?", "is there background ?"], "prompt": "Hood popped open on {} in background."}, {"index": 43, "image_id": 2410319, "entity": "car", "caption": "woman is inside of car", "question": ["is there woman ?", "is there car ?"], "prompt": "woman is inside of {}"}, {"index": 44, "image_id": 2410303, "entity": "car", "caption": "dark car the dog is sitting in", "question": ["is there dark car ?", "is there the dog ?"], "prompt": "dark {} the dog is sitting in"}, {"index": 45, "image_id": 2410034, "entity": "car", "caption": "Strap of car sit", "question": ["is there strap ?", "is there car ?"], "prompt": "Strap of {} sit"}, {"index": 46, "image_id": 2409981, "entity": "car", "caption": "Flags are on top of the car", "question": ["are there flags ?", "is there top ?", "is there the car ?"], "prompt": "Flags are on top of the {}"}, {"index": 47, "image_id": 2409288, "entity": "car", "caption": "car is ordering food", "question": ["is there car ?", "is there food ?"], "prompt": "{} is ordering food"}, {"index": 48, "image_id": 2409288, "entity": "car", "caption": "Silver door lock on a car", "question": ["is there silver door ?", "is there a car ?"], "prompt": "Silver door lock on a {}"}, {"index": 49, "image_id": 2408616, "entity": "car", "caption": "road the car is driving on", "question": ["is there road ?", "is there the car ?"], "prompt": "road the {} is driving on"}, {"index": 50, "image_id": 2408935, "entity": "car", "caption": "Cat sitting on a car.", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat sitting on a {}."}, {"index": 51, "image_id": 2408590, "entity": "car", "caption": "Front of car is red", "question": ["is there front ?", "is there car ?"], "prompt": "Front of {} is red"}, {"index": 52, "image_id": 2408413, "entity": "car", "caption": "Bamper of car is black", "question": ["is there car ?"], "prompt": "Bamper of {} is black"}, {"index": 53, "image_id": 2408413, "entity": "car", "caption": "Front headlight on a car. ", "question": ["is there front headlight ?", "is there a car ?"], "prompt": "Front headlight on a {}. "}, {"index": 54, "image_id": 2408413, "entity": "car", "caption": "Front turn signal light on a car. ", "question": ["is there front turn signal light ?", "is there a car ?"], "prompt": "Front turn signal light on a {}. "}, {"index": 55, "image_id": 2408413, "entity": "car", "caption": "the side of the front headlight on the car", "question": ["is there the side ?", "is there the front headlight ?", "is there the car ?"], "prompt": "the side of the front headlight on the {}"}, {"index": 56, "image_id": 2408016, "entity": "car", "caption": "The word Jazz written on back of car", "question": ["is there the word jazz ?", "is there car ?"], "prompt": "The word Jazz written on back of {}"}, {"index": 57, "image_id": 2408012, "entity": "car", "caption": "the car has a black underneth", "question": ["is there the car ?", "is there a black underneth ?"], "prompt": "the {} has a black underneth"}, {"index": 58, "image_id": 2407776, "entity": "car", "caption": "a parking meter is next to the car", "question": ["is there a parking meter ?", "is there the car ?"], "prompt": "a parking meter is next to the {}"}, {"index": 59, "image_id": 2407740, "entity": "car", "caption": "both cars tail lights are on", "question": ["are there both cars tail lights ?"], "prompt": "both {}s tail lights are on"}, {"index": 60, "image_id": 2407740, "entity": "car", "caption": "A red light is on a second car. ", "question": ["is there a red light ?", "is there a second car ?"], "prompt": "A red light is on a second {}. "}, {"index": 61, "image_id": 2407740, "entity": "car", "caption": "rain drops on car windshield", "question": ["is there rain ?", "is there car windshield ?"], "prompt": "rain drops on {} windshield"}, {"index": 62, "image_id": 2407600, "entity": "car", "caption": "white cup placed on roof of car", "question": ["is there roof ?", "is there car ?"], "prompt": "white cup placed on roof of {}"}, {"index": 63, "image_id": 2407600, "entity": "car", "caption": "The back tire of the car where the man is sitting.", "question": ["is there the back tire ?", "is there the car ?", "is there the man ?"], "prompt": "The back tire of the {} where the man is sitting."}, {"index": 64, "image_id": 2407600, "entity": "car", "caption": "The front tire of the car where the man is sitting.", "question": ["is there the front tire ?", "is there the car ?", "is there the man ?"], "prompt": "The front tire of the {} where the man is sitting."}, {"index": 65, "image_id": 2407181, "entity": "car", "caption": "Man sitting on car ", "question": ["is there man ?", "is there car ?"], "prompt": "Man sitting on {} "}, {"index": 66, "image_id": 2407181, "entity": "car", "caption": "The man is sitting inside a car.", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is sitting inside a {}."}, {"index": 67, "image_id": 2406983, "entity": "car", "caption": "The car has a Mercedes emblem", "question": ["is there the car ?", "are there a mercedes emblem ?"], "prompt": "The {} has a Mercedes emblem"}, {"index": 68, "image_id": 2406983, "entity": "car", "caption": "the car has 55000000 on the trunk", "question": ["is there the car ?", "is there the trunk ?"], "prompt": "the {} has 55000000 on the trunk"}, {"index": 69, "image_id": 2406229, "entity": "car", "caption": "door handle on a car", "question": ["is there door ?", "is there a car ?"], "prompt": "door handle on a {}"}, {"index": 70, "image_id": 2405945, "entity": "car", "caption": "the side view mirror is on the car", "question": ["is there the side view mirror ?", "is there the car ?"], "prompt": "the side view mirror is on the {}"}, {"index": 71, "image_id": 2405945, "entity": "car", "caption": "the dog is inside the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is inside the {}"}, {"index": 72, "image_id": 2405945, "entity": "car", "caption": "the windshield is on the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "the windshield is on the {}"}, {"index": 73, "image_id": 2405130, "entity": "car", "caption": "this is a car ", "question": ["is there a car ?"], "prompt": "this is a {} "}, {"index": 74, "image_id": 2405042, "entity": "car", "caption": "this is the car's hindlight", "question": ["is there the car's hindlight ?"], "prompt": "this is the {}'s hindlight"}, {"index": 75, "image_id": 2405042, "entity": "car", "caption": "the car beside the meter is blue", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} beside the meter is blue"}, {"index": 76, "image_id": 2405042, "entity": "car", "caption": "the car behind the meter is white", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} behind the meter is white"}, {"index": 77, "image_id": 2405042, "entity": "car", "caption": "the blue car has a red tail light", "question": ["is there the blue car ?", "is there a red tail light ?"], "prompt": "the blue {} has a red tail light"}, {"index": 78, "image_id": 2404709, "entity": "car", "caption": "door handle on a gray car", "question": ["is there door ?", "is there a gray car ?"], "prompt": "door handle on a gray {}"}, {"index": 79, "image_id": 2404508, "entity": "car", "caption": "a cat is on the car", "question": ["is there a cat ?", "is there the car ?"], "prompt": "a cat is on the {}"}, {"index": 80, "image_id": 2404508, "entity": "car", "caption": "the car is dark inside", "question": ["is there the car ?"], "prompt": "the {} is dark inside"}, {"index": 81, "image_id": 2404508, "entity": "car", "caption": "White car, visible through car window. ", "question": ["is there white car ?", "is there car window ?"], "prompt": "White {}, visible through {} window. "}, {"index": 82, "image_id": 2404508, "entity": "car", "caption": "the cat is in the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is in the {}"}, {"index": 83, "image_id": 2404223, "entity": "car", "caption": "black car behind bush and fire hydrant", "question": ["is there black car ?", "is there fire hydrant ?"], "prompt": "black {} behind bush and fire hydrant"}, {"index": 84, "image_id": 2404223, "entity": "car", "caption": "The car has rims on", "question": ["is there the car ?", "are there rims ?"], "prompt": "The {} has rims on"}, {"index": 85, "image_id": 2403996, "entity": "car", "caption": "The dog is laying in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is laying in the {}."}, {"index": 86, "image_id": 2403996, "entity": "car", "caption": "this is a car air freshner", "question": ["is there a car air freshner ?"], "prompt": "this is a {} air freshner"}, {"index": 87, "image_id": 2403274, "entity": "car", "caption": "antenna attached to car", "question": ["is there antenna ?", "is there car ?"], "prompt": "antenna attached to {}"}, {"index": 88, "image_id": 2402657, "entity": "car", "caption": "side car mirror with sky reflected ", "question": ["is there side car mirror ?", "is there sky ?"], "prompt": "side {} mirror with sky reflected "}, {"index": 89, "image_id": 2402628, "entity": "car", "caption": "a car head light", "question": ["is there a car head ?"], "prompt": "a {} head light"}, {"index": 90, "image_id": 2401935, "entity": "car", "caption": "a car's door handle", "question": ["is there a car's door ?"], "prompt": "a {}'s door handle"}, {"index": 91, "image_id": 2401222, "entity": "car", "caption": "the woman is in a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "the woman is in a {}"}, {"index": 92, "image_id": 2401204, "entity": "car", "caption": "A cat is sitting on top of a car", "question": ["is there a cat ?", "is there top ?", "is there a car ?"], "prompt": "A cat is sitting on top of a {}"}, {"index": 93, "image_id": 2401204, "entity": "car", "caption": "cat is on the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is on the {}"}, {"index": 94, "image_id": 2401017, "entity": "car", "caption": "The car is silver.", "question": ["is there the car ?"], "prompt": "The {} is silver."}, {"index": 95, "image_id": 2401017, "entity": "car", "caption": "reflection shines on the door of the car", "question": ["is there reflection ?", "is there the door ?", "is there the car ?"], "prompt": "reflection shines on the door of the {}"}, {"index": 96, "image_id": 2400948, "entity": "car", "caption": "Surf board on a car", "question": ["is there surf board ?", "is there a car ?"], "prompt": "Surf board on a {}"}, {"index": 97, "image_id": 2400948, "entity": "car", "caption": "surfboards are on top of the car", "question": ["are there surfboards ?", "is there top ?", "is there the car ?"], "prompt": "surfboards are on top of the {}"}, {"index": 98, "image_id": 2400948, "entity": "car", "caption": "a steering wheel statue is on the middle of car", "question": ["is there a steering wheel statue ?", "is there the middle ?", "is there car ?"], "prompt": "a steering wheel statue is on the middle of {}"}, {"index": 99, "image_id": 2400948, "entity": "car", "caption": "people are standing behind car", "question": ["are there people ?", "is there car ?"], "prompt": "people are standing behind {}"}, {"index": 100, "image_id": 2400860, "entity": "car", "caption": "black door handles on white car", "question": ["is there black door ?", "is there white car ?"], "prompt": "black door handles on white {}"}, {"index": 101, "image_id": 2400860, "entity": "car", "caption": "a door handle on a car", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}"}, {"index": 102, "image_id": 2400806, "entity": "car", "caption": "a red suitcase is next to the car", "question": ["is there a red suitcase ?", "is there the car ?"], "prompt": "a red suitcase is next to the {}"}, {"index": 103, "image_id": 2400490, "entity": "car", "caption": "front door handle on car", "question": ["is there front door ?", "is there car ?"], "prompt": "front door handle on {}"}, {"index": 104, "image_id": 2400490, "entity": "car", "caption": "a car door handle", "question": ["is there a car door ?"], "prompt": "a {} door handle"}, {"index": 105, "image_id": 2400490, "entity": "car", "caption": "parked car is dark gray with four doors", "question": ["is there parked car ?", "are there four doors ?"], "prompt": "parked {} is dark gray with four doors"}, {"index": 106, "image_id": 2400490, "entity": "car", "caption": "a door handle on a car.", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}."}, {"index": 107, "image_id": 2400490, "entity": "car", "caption": "front left fender of a car.", "question": ["is there front left fender ?", "is there a car ?"], "prompt": "front left fender of a {}."}, {"index": 108, "image_id": 2400275, "entity": "car", "caption": "A person barely visible in the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "A person barely visible in the {}"}, {"index": 109, "image_id": 2400275, "entity": "car", "caption": "The window of the car the dog is sticking his head out of", "question": ["is there the window ?", "is there the car ?", "is there the dog ?", "is there his head ?"], "prompt": "The window of the {} the dog is sticking his head out of"}, {"index": 110, "image_id": 2400275, "entity": "car", "caption": "Dogs is in a car", "question": ["are there dogs ?", "is there a car ?"], "prompt": "Dogs is in a {}"}, {"index": 111, "image_id": 2399913, "entity": "car", "caption": "handle that helps you getting out of car", "question": ["is there car ?"], "prompt": "handle that helps you getting out of {}"}, {"index": 112, "image_id": 2399740, "entity": "car", "caption": "This mirror belongs to a car.", "question": ["is there this mirror ?", "is there a car ?"], "prompt": "This mirror belongs to a {}."}, {"index": 113, "image_id": 2399146, "entity": "car", "caption": "this is a car", "question": ["is there a car ?"], "prompt": "this is a {}"}, {"index": 114, "image_id": 2398786, "entity": "car", "caption": "Door handle on the driver side of a black car. ", "question": ["is there door ?", "is there the driver side ?", "is there a black car ?"], "prompt": "Door handle on the driver side of a black {}. "}, {"index": 115, "image_id": 2398088, "entity": "car", "caption": "seat buckle part in car", "question": ["is there seat buckle part ?", "is there car ?"], "prompt": "seat buckle part in {}"}, {"index": 116, "image_id": 2398088, "entity": "car", "caption": "A window is in the car.", "question": ["is there a window ?", "is there the car ?"], "prompt": "A window is in the {}."}, {"index": 117, "image_id": 2398030, "entity": "car", "caption": "Trees are behind the cars.", "question": ["are there trees ?", "are there the cars ?"], "prompt": "Trees are behind the {}s."}, {"index": 118, "image_id": 2398030, "entity": "car", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice {}s and trucks lined up"}, {"index": 119, "image_id": 2398030, "entity": "car", "caption": "car with hood that opens backwards ", "question": ["is there car ?", "is there hood ?"], "prompt": "{} with hood that opens backwards "}, {"index": 120, "image_id": 2397686, "entity": "car", "caption": "Person is inside car.", "question": ["is there person ?", "is there inside car ?"], "prompt": "Person is inside {}."}, {"index": 121, "image_id": 2396173, "entity": "car", "caption": "the zebra is near a car", "question": ["is there a car ?"], "prompt": "the zebra is near a {}"}, {"index": 122, "image_id": 2396020, "entity": "car", "caption": "grass next to car is dry ", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is dry "}, {"index": 123, "image_id": 2396020, "entity": "car", "caption": "grass next to car is color brown", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is color brown"}, {"index": 124, "image_id": 2396018, "entity": "car", "caption": "White car is behind meter", "question": ["is there white car ?", "is there meter ?"], "prompt": "White {} is behind meter"}, {"index": 125, "image_id": 2395874, "entity": "car", "caption": "air went inside car", "question": ["is there air ?", "is there car ?"], "prompt": "air went inside {}"}, {"index": 126, "image_id": 2395874, "entity": "car", "caption": "The zebra is in the car.", "question": ["is there the car ?"], "prompt": "The zebra is in the {}."}, {"index": 127, "image_id": 2395874, "entity": "car", "caption": "zebra's head pokes into car window", "question": ["is there zebra's head ?", "is there car window ?"], "prompt": "zebra's head pokes into {} window"}, {"index": 128, "image_id": 2395759, "entity": "car", "caption": "cows surround the car", "question": ["are there cows ?", "is there the car ?"], "prompt": "cows surround the {}"}, {"index": 129, "image_id": 2395759, "entity": "car", "caption": "animal going to bathroom beside car", "question": ["is there animal ?", "is there car ?"], "prompt": "animal going to bathroom beside {}"}, {"index": 130, "image_id": 2395588, "entity": "car", "caption": "two more cows wait in line to taste different parts of car, perhaps c[h]ow down", "question": ["are there two more cows ?", "is there line ?", "are there different parts ?", "is there car ?"], "prompt": "two more cows wait in line to taste different parts of {}, perhaps c[h]ow down"}, {"index": 131, "image_id": 2395338, "entity": "car", "caption": "teddy bear on a red car", "question": ["is there a red car ?"], "prompt": "teddy bear on a red {}"}, {"index": 132, "image_id": 2395338, "entity": "car", "caption": "The teddy bear is sitting on the car.", "question": ["is there the car ?"], "prompt": "The teddy bear is sitting on the {}."}, {"index": 133, "image_id": 2395338, "entity": "car", "caption": "The seats in the car is tan.", "question": ["are there the seats ?", "is there the car ?", "is there tan ?"], "prompt": "The seats in the {} is tan."}, {"index": 134, "image_id": 2395338, "entity": "car", "caption": "The bear is sitting by the side mirror of the car.", "question": ["is there the bear ?", "is there the side mirror ?", "is there the car ?"], "prompt": "The bear is sitting by the side mirror of the {}."}, {"index": 135, "image_id": 2395338, "entity": "car", "caption": "The car has windshield wipers.", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "The {} has windshield wipers."}, {"index": 136, "image_id": 2395338, "entity": "car", "caption": "brown teddy bear sitting on car", "question": ["is there car ?"], "prompt": "brown teddy bear sitting on {}"}, {"index": 137, "image_id": 2395338, "entity": "car", "caption": "little teddy bear sitting on car", "question": ["is there car ?"], "prompt": "little teddy bear sitting on {}"}, {"index": 138, "image_id": 2395208, "entity": "car", "caption": "front left light of a car", "question": ["is there front ?", "is there light ?", "is there a car ?"], "prompt": "front left light of a {}"}, {"index": 139, "image_id": 2394987, "entity": "car", "caption": "the fence is behind the car", "question": ["is there the fence ?", "is there the car ?"], "prompt": "the fence is behind the {}"}, {"index": 140, "image_id": 2394987, "entity": "car", "caption": "the cars says coca-cola", "question": ["are there the cars ?"], "prompt": "the {}s says coca-cola"}, {"index": 141, "image_id": 2393712, "entity": "car", "caption": "The car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "The {} has a mirror"}, {"index": 142, "image_id": 2393712, "entity": "car", "caption": "the car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 143, "image_id": 2391973, "entity": "car", "caption": "the cars control panel", "question": ["are there the cars control panel ?"], "prompt": "the {}s control panel"}, {"index": 144, "image_id": 2390809, "entity": "car", "caption": "this is a car tire", "question": ["is there a car tire ?"], "prompt": "this is a {} tire"}, {"index": 145, "image_id": 2390710, "entity": "car", "caption": "the cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is on the {}"}, {"index": 146, "image_id": 2390710, "entity": "car", "caption": "cat sitting and crouching on hood of car", "question": ["is there cat ?", "is there hood ?", "is there car ?"], "prompt": "cat sitting and crouching on hood of {}"}, {"index": 147, "image_id": 2390672, "entity": "car", "caption": "The dog is in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is in the {}."}, {"index": 148, "image_id": 2390672, "entity": "car", "caption": "a German shepard alone inside a car with the windows rolled up", "question": ["is there a german shepard ?", "is there a car ?", "are there the windows ?"], "prompt": "a German shepard alone inside a {} with the windows rolled up"}, {"index": 149, "image_id": 2390553, "entity": "car", "caption": "the dash in the car is black", "question": ["is there the dash ?", "is there the car ?"], "prompt": "the dash in the {} is black"}, {"index": 150, "image_id": 2390177, "entity": "car", "caption": "shiny roof rack on red car", "question": ["is there shiny roof rack ?", "is there red car ?"], "prompt": "shiny roof rack on red {}"}, {"index": 151, "image_id": 2389910, "entity": "car", "caption": "a slipstream sports car has bikes on it.", "question": ["are there a slipstream sports car ?", "are there bikes ?"], "prompt": "a slipstream sports {} has bikes on it."}, {"index": 152, "image_id": 2389614, "entity": "car", "caption": "Dog hanging out of car. ", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog hanging out of {}. "}, {"index": 153, "image_id": 2389485, "entity": "car", "caption": "Woman watching animals in the car.", "question": ["is there woman ?", "are there animals ?", "is there the car ?"], "prompt": "Woman watching animals in the {}."}, {"index": 154, "image_id": 2389479, "entity": "car", "caption": "a car with several bicycles mounted on top of it", "question": ["is there a car ?", "are there several bicycles ?", "is there top ?"], "prompt": "a {} with several bicycles mounted on top of it"}, {"index": 155, "image_id": 2389474, "entity": "car", "caption": "The dog is looking out the car window.", "question": ["is there the dog ?", "is there the car window ?"], "prompt": "The dog is looking out the {} window."}, {"index": 156, "image_id": 2388774, "entity": "car", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the bird is in the {} "}, {"index": 157, "image_id": 2388733, "entity": "car", "caption": "bicycles mounted on car", "question": ["are there bicycles ?", "is there car ?"], "prompt": "bicycles mounted on {}"}, {"index": 158, "image_id": 2388584, "entity": "car", "caption": "A doll head in a car.", "question": ["is there a doll head ?", "is there a car ?"], "prompt": "A doll head in a {}."}, {"index": 159, "image_id": 2388584, "entity": "car", "caption": "Another doll head inside a car.", "question": ["is there another doll head ?", "is there a car ?"], "prompt": "Another doll head inside a {}."}, {"index": 160, "image_id": 2388584, "entity": "car", "caption": "empty tube of toothpaste taped to top of car", "question": ["is there empty tube ?", "is there toothpaste ?", "is there top ?", "is there car ?"], "prompt": "empty tube of toothpaste taped to top of {}"}, {"index": 161, "image_id": 2388584, "entity": "car", "caption": "two toothbrushes taped to top of car", "question": ["are there two toothbrushes ?", "is there top ?", "is there car ?"], "prompt": "two toothbrushes taped to top of {}"}, {"index": 162, "image_id": 2388052, "entity": "car", "caption": "roof of car is blue and yellow", "question": ["is there roof ?", "is there car ?"], "prompt": "roof of {} is blue and yellow"}, {"index": 163, "image_id": 2388052, "entity": "car", "caption": "door of car is yellow", "question": ["is there door ?", "is there car ?"], "prompt": "door of {} is yellow"}, {"index": 164, "image_id": 2388010, "entity": "car", "caption": "white car pulled off on side of road", "question": ["is there white car ?", "is there side ?", "is there road ?"], "prompt": "white {} pulled off on side of road"}, {"index": 165, "image_id": 2388010, "entity": "car", "caption": "a door handle ona car", "question": ["is there a door ?"], "prompt": "a door handle ona {}"}, {"index": 166, "image_id": 2387950, "entity": "car", "caption": "dog is resting on green car", "question": ["is there dog ?", "is there green car ?"], "prompt": "dog is resting on green {}"}, {"index": 167, "image_id": 2387327, "entity": "car", "caption": "The dogs are in a car.", "question": ["are there the dogs ?", "is there a car ?"], "prompt": "The dogs are in a {}."}, {"index": 168, "image_id": 2386114, "entity": "car", "caption": "white car door handle", "question": ["is there white car door ?"], "prompt": "white {} door handle"}, {"index": 169, "image_id": 2385961, "entity": "car", "caption": "a kitty cat is sleeping under a car", "question": ["is there a kitty cat ?", "is there a car ?"], "prompt": "a kitty cat is sleeping under a {}"}, {"index": 170, "image_id": 2385697, "entity": "car", "caption": "the surfboards are sticking out of the car", "question": ["are there the surfboards ?", "is there the car ?"], "prompt": "the surfboards are sticking out of the {}"}, {"index": 171, "image_id": 2385697, "entity": "car", "caption": "the tag is on the back of the car", "question": ["is there the tag ?", "is there the back ?", "is there the car ?"], "prompt": "the tag is on the back of the {}"}, {"index": 172, "image_id": 2385697, "entity": "car", "caption": "the surfboards are on the roof of the car", "question": ["are there the surfboards ?", "is there the roof ?", "is there the car ?"], "prompt": "the surfboards are on the roof of the {}"}, {"index": 173, "image_id": 2385466, "entity": "car", "caption": "Dog is inside car", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog is inside {}"}, {"index": 174, "image_id": 2385251, "entity": "car", "caption": "fence is in front of car", "question": ["is there fence ?", "is there front ?", "is there car ?"], "prompt": "fence is in front of {}"}, {"index": 175, "image_id": 2384917, "entity": "car", "caption": "Light on the car is on. ", "question": ["is there light ?", "is there the car ?"], "prompt": "Light on the {} is on. "}, {"index": 176, "image_id": 2383569, "entity": "car", "caption": "Three bicycles lined up behind a green car.", "question": ["are there three bicycles ?", "is there a green car ?"], "prompt": "Three bicycles lined up behind a green {}."}, {"index": 177, "image_id": 2383096, "entity": "car", "caption": "the car has wood grain", "question": ["is there the car ?", "is there wood grain ?"], "prompt": "the {} has wood grain"}, {"index": 178, "image_id": 2383016, "entity": "car", "caption": "Front left tire of car", "question": ["is there front left tire ?", "is there car ?"], "prompt": "Front left tire of {}"}, {"index": 179, "image_id": 2382637, "entity": "car", "caption": "rails surround roof of green car", "question": ["are there rails ?", "is there surround roof ?", "is there green car ?"], "prompt": "rails surround roof of green {}"}, {"index": 180, "image_id": 2382494, "entity": "car", "caption": "A woman looks into the white car", "question": ["is there a woman ?", "is there the white car ?"], "prompt": "A woman looks into the white {}"}, {"index": 181, "image_id": 2382257, "entity": "car", "caption": "car front passenger side handle", "question": ["is there car front passenger side handle ?"], "prompt": "{} front passenger side handle"}, {"index": 182, "image_id": 2382257, "entity": "car", "caption": "car rear passenger side handle", "question": ["is there car rear passenger side handle ?"], "prompt": "{} rear passenger side handle"}, {"index": 183, "image_id": 2382257, "entity": "car", "caption": "The car door handles", "question": ["is there the car door ?"], "prompt": "The {} door handles"}, {"index": 184, "image_id": 2381937, "entity": "car", "caption": "the driver of the toy car is piggy", "question": ["is there the driver ?", "is there the toy car ?", "is there piggy ?"], "prompt": "the driver of the toy {} is piggy"}, {"index": 185, "image_id": 2381832, "entity": "car", "caption": "Jeep parked next to car", "question": ["is there jeep ?", "is there car ?"], "prompt": "Jeep parked next to {}"}, {"index": 186, "image_id": 2381810, "entity": "car", "caption": "Person is driving a car.", "question": ["is there person ?", "is there a car ?"], "prompt": "Person is driving a {}."}, {"index": 187, "image_id": 2381447, "entity": "car", "caption": "the tag on the car has letters and numbers on it", "question": ["is there the tag ?", "is there the car ?", "are there letters ?", "are there numbers ?"], "prompt": "the tag on the {} has letters and numbers on it"}, {"index": 188, "image_id": 2381447, "entity": "car", "caption": "the car is a CX-7", "question": ["is there the car ?", "is there a cx-7 ?"], "prompt": "the {} is a CX-7"}, {"index": 189, "image_id": 2381447, "entity": "car", "caption": "Cat standing near a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat standing near a {}"}, {"index": 190, "image_id": 2381315, "entity": "car", "caption": "back end of a woman's car is open", "question": ["is there back end ?", "is there a woman's car ?"], "prompt": "back end of a woman's {} is open"}, {"index": 191, "image_id": 2381315, "entity": "car", "caption": "The woman is standing behind a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "The woman is standing behind a {}"}, {"index": 192, "image_id": 2381118, "entity": "car", "caption": "car has a sticker on the windshield ", "question": ["is there car ?", "is there a sticker ?", "is there the windshield ?"], "prompt": "{} has a sticker on the windshield "}, {"index": 193, "image_id": 2381101, "entity": "car", "caption": "back window of car with sunshine coming through", "question": ["is there back window ?", "is there car ?", "is there sunshine ?"], "prompt": "back window of {} with sunshine coming through"}, {"index": 194, "image_id": 2381051, "entity": "car", "caption": "car top tie down rack", "question": ["is there car top tie ?"], "prompt": "{} top tie down rack"}, {"index": 195, "image_id": 2380669, "entity": "car", "caption": "a car headlight ", "question": ["is there a car headlight ?"], "prompt": "a {} headlight "}, {"index": 196, "image_id": 2380293, "entity": "car", "caption": "speedometer showing the car is going 0 MPH", "question": ["is there speedometer ?", "is there the car ?"], "prompt": "speedometer showing the {} is going 0 MPH"}, {"index": 197, "image_id": 2380171, "entity": "car", "caption": "black door handle on car", "question": ["is there black door ?", "is there car ?"], "prompt": "black door handle on {}"}, {"index": 198, "image_id": 2379398, "entity": "car", "caption": "The lamb is next to the car", "question": ["is there the car ?"], "prompt": "The lamb is next to the {}"}, {"index": 199, "image_id": 2379398, "entity": "car", "caption": "The car is on top of gravel", "question": ["is there the car ?", "is there top ?", "is there gravel ?"], "prompt": "The {} is on top of gravel"}, {"index": 200, "image_id": 2379270, "entity": "car", "caption": "the people are in the car", "question": ["are there the people ?", "is there the car ?"], "prompt": "the people are in the {}"}, {"index": 201, "image_id": 2378437, "entity": "car", "caption": "window of car is semi-open", "question": ["is there window ?", "is there car ?"], "prompt": "window of {} is semi-open"}, {"index": 202, "image_id": 2377492, "entity": "car", "caption": "He is next to the car.", "question": ["is there the car ?"], "prompt": "He is next to the {}."}, {"index": 203, "image_id": 2377281, "entity": "car", "caption": "headlights of car are white", "question": ["are there headlights ?", "is there car ?"], "prompt": "headlights of {} are white"}, {"index": 204, "image_id": 2377134, "entity": "car", "caption": "Leather suitcase is strapped to the trunk of the car", "question": ["is there leather suitcase ?", "is there the trunk ?", "is there the car ?"], "prompt": "Leather suitcase is strapped to the trunk of the {}"}, {"index": 205, "image_id": 2377065, "entity": "car", "caption": "The cat is laying on a car.", "question": ["is there the cat ?", "is there a car ?"], "prompt": "The cat is laying on a {}."}, {"index": 206, "image_id": 2376812, "entity": "car", "caption": "man standing in front of a parked car", "question": ["is there man ?", "is there front ?", "is there a parked car ?"], "prompt": "man standing in front of a parked {}"}, {"index": 207, "image_id": 2376666, "entity": "car", "caption": "Two cars driving down the road.", "question": ["are there two cars ?", "is there the road ?"], "prompt": "Two {}s driving down the road."}, {"index": 208, "image_id": 2376189, "entity": "car", "caption": "The baby is in the car.", "question": ["is there the baby ?", "is there the car ?"], "prompt": "The baby is in the {}."}, {"index": 209, "image_id": 2374963, "entity": "car", "caption": "man standing next to car", "question": ["is there man ?", "is there car ?"], "prompt": "man standing next to {}"}, {"index": 210, "image_id": 2374891, "entity": "car", "caption": "A dog popping outa a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog popping outa a {}"}, {"index": 211, "image_id": 2374500, "entity": "car", "caption": "A cat is laying on a car", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is laying on a {}"}, {"index": 212, "image_id": 2374500, "entity": "car", "caption": "The cat is on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "The cat is on top of a {}"}, {"index": 213, "image_id": 2374500, "entity": "car", "caption": "The cat is on a white car", "question": ["is there the cat ?", "is there a white car ?"], "prompt": "The cat is on a white {}"}, {"index": 214, "image_id": 2374500, "entity": "car", "caption": "the tabby cat is laying on the car", "question": ["is there the tabby cat ?", "is there the car ?"], "prompt": "the tabby cat is laying on the {}"}, {"index": 215, "image_id": 2374203, "entity": "car", "caption": "The blue car has an open window", "question": ["is there the blue car ?", "is there an open window ?"], "prompt": "The blue {} has an open window"}, {"index": 216, "image_id": 2374203, "entity": "car", "caption": "A man is sitting in the blue car", "question": ["is there a man ?", "is there the blue car ?"], "prompt": "A man is sitting in the blue {}"}, {"index": 217, "image_id": 2374203, "entity": "car", "caption": "man driving a blue car", "question": ["is there man ?", "is there a blue car ?"], "prompt": "man driving a blue {}"}, {"index": 218, "image_id": 2374072, "entity": "car", "caption": "Gas pump behind car.", "question": ["is there gas pump ?", "is there car ?"], "prompt": "Gas pump behind {}."}, {"index": 219, "image_id": 2372618, "entity": "car", "caption": "Dog is inside the car.", "question": ["is there dog ?", "is there the car ?"], "prompt": "Dog is inside the {}."}, {"index": 220, "image_id": 2372618, "entity": "car", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog is riding in a {}"}, {"index": 221, "image_id": 2372618, "entity": "car", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A dog is in its master's {}"}, {"index": 222, "image_id": 2372618, "entity": "car", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog likes riding in a {}"}, {"index": 223, "image_id": 2372587, "entity": "car", "caption": "Classic car headlight", "question": ["is there classic car headlight ?"], "prompt": "Classic {} headlight"}, {"index": 224, "image_id": 2372587, "entity": "car", "caption": "Two surfboards attach to classic car roof", "question": ["are there two surfboards ?", "is there classic car roof ?"], "prompt": "Two surfboards attach to classic {} roof"}, {"index": 225, "image_id": 2372550, "entity": "car", "caption": "Mud flaps on a blue car", "question": ["are there mud flaps ?", "is there a blue car ?"], "prompt": "Mud flaps on a blue {}"}, {"index": 226, "image_id": 2372422, "entity": "car", "caption": "A back car door handle", "question": ["is there a back car door ?"], "prompt": "A back {} door handle"}, {"index": 227, "image_id": 2371952, "entity": "car", "caption": "seat belt hanging inside a car", "question": ["is there seat belt ?", "is there a car ?"], "prompt": "seat belt hanging inside a {}"}, {"index": 228, "image_id": 2371950, "entity": "car", "caption": "the cat is in a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is in a {}"}, {"index": 229, "image_id": 2371208, "entity": "car", "caption": "a chrome door handle on a car", "question": ["is there a chrome door ?", "is there a car ?"], "prompt": "a chrome door handle on a {}"}, {"index": 230, "image_id": 2371208, "entity": "car", "caption": "Silver door handle on green car", "question": ["is there silver door ?", "is there green car ?"], "prompt": "Silver door handle on green {}"}, {"index": 231, "image_id": 2370927, "entity": "car", "caption": "the elephant is close to the car ", "question": ["is there the elephant ?", "is there the car ?"], "prompt": "the elephant is close to the {} "}, {"index": 232, "image_id": 2370584, "entity": "car", "caption": "hood of the car is up", "question": ["is there hood ?", "is there the car ?"], "prompt": "hood of the {} is up"}, {"index": 233, "image_id": 2370584, "entity": "car", "caption": "several people standing away from the cars", "question": ["are there several people ?", "are there the cars ?"], "prompt": "several people standing away from the {}s"}, {"index": 234, "image_id": 2370584, "entity": "car", "caption": "trees located behind place where car show is", "question": ["are there trees ?", "is there place ?", "is there car show ?"], "prompt": "trees located behind place where {} show is"}, {"index": 235, "image_id": 2370246, "entity": "car", "caption": "the cat is lying on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is lying on the {}"}, {"index": 236, "image_id": 2369015, "entity": "car", "caption": "Surfboard is on top of car", "question": ["is there surfboard ?", "is there top ?", "is there car ?"], "prompt": "Surfboard is on top of {}"}, {"index": 237, "image_id": 2368457, "entity": "car", "caption": "baby looking out the window of the car", "question": ["is there baby ?", "is there the window ?", "is there the car ?"], "prompt": "baby looking out the window of the {}"}, {"index": 238, "image_id": 2368457, "entity": "car", "caption": "old style car driving down the road", "question": ["is there old style car ?", "is there the road ?"], "prompt": "old style {} driving down the road"}, {"index": 239, "image_id": 2368457, "entity": "car", "caption": "advertisement is on the door of the car", "question": ["is there advertisement ?", "is there the door ?", "is there the car ?"], "prompt": "advertisement is on the door of the {}"}, {"index": 240, "image_id": 2368457, "entity": "car", "caption": "a person is driving the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "a person is driving the {}"}, {"index": 241, "image_id": 2368457, "entity": "car", "caption": "a rack with straps is on the car", "question": ["is there a rack ?", "are there straps ?", "is there the car ?"], "prompt": "a rack with straps is on the {}"}, {"index": 242, "image_id": 2367648, "entity": "car", "caption": "A car is at an auto show", "question": ["is there a car ?", "is there an auto show ?"], "prompt": "A {} is at an auto show"}, {"index": 243, "image_id": 2367406, "entity": "car", "caption": "The curb is next to the cars.", "question": ["is there the curb ?", "are there the cars ?"], "prompt": "The curb is next to the {}s."}, {"index": 244, "image_id": 2367276, "entity": "car", "caption": "the car handle on the passenger door", "question": ["is there the car handle ?", "is there the passenger door ?"], "prompt": "the {} handle on the passenger door"}, {"index": 245, "image_id": 2367258, "entity": "car", "caption": "giraffe peeking in the car", "question": ["is there the car ?"], "prompt": "giraffe peeking in the {}"}, {"index": 246, "image_id": 2367258, "entity": "car", "caption": "the scene is inside the car ", "question": ["is there the scene ?", "is there the car ?"], "prompt": "the scene is inside the {} "}, {"index": 247, "image_id": 2367258, "entity": "car", "caption": "cars sunroof protective seal", "question": ["are there cars ?", "is there protective seal ?"], "prompt": "{}s sunroof protective seal"}, {"index": 248, "image_id": 2367033, "entity": "car", "caption": "the silver car door handle", "question": ["is there the silver car door ?"], "prompt": "the silver {} door handle"}, {"index": 249, "image_id": 2365787, "entity": "car", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th edog is in the {} "}, {"index": 250, "image_id": 2365750, "entity": "car", "caption": "This is a car mirror", "question": ["is there a car mirror ?"], "prompt": "This is a {} mirror"}, {"index": 251, "image_id": 2365750, "entity": "car", "caption": "This is a car window", "question": ["is there a car window ?"], "prompt": "This is a {} window"}, {"index": 252, "image_id": 2365458, "entity": "car", "caption": "one headlight on front of car", "question": ["is there one headlight ?", "is there front ?", "is there car ?"], "prompt": "one headlight on front of {}"}, {"index": 253, "image_id": 2364504, "entity": "car", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One dog is sitting in the {}."}, {"index": 254, "image_id": 2364504, "entity": "car", "caption": "Buildings are outside the car.", "question": ["are there buildings ?", "is there the car ?"], "prompt": "Buildings are outside the {}."}, {"index": 255, "image_id": 2364109, "entity": "car", "caption": "front dashboard of car where a rider took the photo", "question": ["is there front dashboard ?", "is there car ?", "is there a rider ?", "is there the photo ?"], "prompt": "front dashboard of {} where a rider took the photo"}, {"index": 256, "image_id": 2363425, "entity": "car", "caption": "the door handle on a car", "question": ["is there the door ?", "is there a car ?"], "prompt": "the door handle on a {}"}, {"index": 257, "image_id": 2363424, "entity": "car", "caption": "several people standing behind car", "question": ["are there several people ?", "is there car ?"], "prompt": "several people standing behind {}"}, {"index": 258, "image_id": 2363415, "entity": "car", "caption": "black car door handle on a white car", "question": ["is there black car door ?", "is there a white car ?"], "prompt": "black {} door handle on a white {}"}, {"index": 259, "image_id": 2363359, "entity": "car", "caption": "the writing on the car appears to be chinese", "question": ["is there the writing ?", "is there the car ?"], "prompt": "the writing on the {} appears to be chinese"}, {"index": 260, "image_id": 2363195, "entity": "car", "caption": "Ontario plates are on the car", "question": ["are there ontario plates ?", "is there the car ?"], "prompt": "Ontario plates are on the {}"}, {"index": 261, "image_id": 2363195, "entity": "car", "caption": "The cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}"}, {"index": 262, "image_id": 2362213, "entity": "car", "caption": "feline resting in car", "question": ["is there car ?"], "prompt": "feline resting in {}"}, {"index": 263, "image_id": 2362071, "entity": "car", "caption": "it is the windshield of the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "it is the windshield of the {}"}, {"index": 264, "image_id": 2362050, "entity": "car", "caption": "A Mercedes emblem is on the car.", "question": ["are there a mercedes emblem ?", "is there the car ?"], "prompt": "A Mercedes emblem is on the {}."}, {"index": 265, "image_id": 2361191, "entity": "car", "caption": "a red bird is on the car's mirror", "question": ["is there a red bird ?", "is there the car's mirror ?"], "prompt": "a red bird is on the {}'s mirror"}, {"index": 266, "image_id": 2360825, "entity": "car", "caption": "A car door is open.", "question": ["is there a car door ?"], "prompt": "A {} door is open."}, {"index": 267, "image_id": 2360825, "entity": "car", "caption": "A person is sitting in back of a car.", "question": ["is there a person ?", "is there a car ?"], "prompt": "A person is sitting in back of a {}."}, {"index": 268, "image_id": 2360521, "entity": "car", "caption": "this car has it's tail lights on", "question": ["is there this car ?", "are there it's tail lights ?"], "prompt": "this {} has it's tail lights on"}, {"index": 269, "image_id": 2360370, "entity": "car", "caption": "the man is standing by the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "the man is standing by the {}"}, {"index": 270, "image_id": 2360370, "entity": "car", "caption": "the bananas are in the car", "question": ["are there the bananas ?", "is there the car ?"], "prompt": "the bananas are in the {}"}, {"index": 271, "image_id": 2360146, "entity": "car", "caption": "Teddy bears in the car", "question": ["is there the car ?"], "prompt": "Teddy bears in the {}"}, {"index": 272, "image_id": 2359127, "entity": "car", "caption": "numbers on car are 2 and 08", "question": ["are there numbers ?", "is there car ?"], "prompt": "numbers on {} are 2 and 08"}, {"index": 273, "image_id": 2358763, "entity": "car", "caption": "This is a car hood", "question": ["is there a car hood ?"], "prompt": "This is a {} hood"}, {"index": 274, "image_id": 2358763, "entity": "car", "caption": "This is a car door", "question": ["is there a car door ?"], "prompt": "This is a {} door"}, {"index": 275, "image_id": 2358763, "entity": "car", "caption": "Water is on the car", "question": ["is there water ?", "is there the car ?"], "prompt": "Water is on the {}"}, {"index": 276, "image_id": 2358763, "entity": "car", "caption": "The car is next to trees", "question": ["is there the car ?", "are there trees ?"], "prompt": "The {} is next to trees"}, {"index": 277, "image_id": 2358763, "entity": "car", "caption": "The car has a steering wheel", "question": ["is there the car ?", "is there a steering wheel ?"], "prompt": "The {} has a steering wheel"}, {"index": 278, "image_id": 2358763, "entity": "car", "caption": "A car's reflection is in the window", "question": ["is there a car's reflection ?", "is there the window ?"], "prompt": "A {}'s reflection is in the window"}, {"index": 279, "image_id": 2357815, "entity": "car", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white {} is behind the truck"}, {"index": 280, "image_id": 2357637, "entity": "car", "caption": "the cat is sitting on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "the cat is sitting on top of a {}"}, {"index": 281, "image_id": 2357540, "entity": "car", "caption": "car has yellow license plate", "question": ["is there car ?", "is there yellow license plate ?"], "prompt": "{} has yellow license plate"}, {"index": 282, "image_id": 2357435, "entity": "car", "caption": "Suit cases in car packed", "question": ["are there suit cases ?"], "prompt": "Suit cases in {} packed"}, {"index": 283, "image_id": 2357435, "entity": "car", "caption": "user car controls black switch", "question": ["is there user car ?", "is there black switch ?"], "prompt": "user {} controls black switch"}, {"index": 284, "image_id": 2357435, "entity": "car", "caption": "back door of car is open", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is open"}, {"index": 285, "image_id": 2357435, "entity": "car", "caption": "back door of car is up", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is up"}, {"index": 286, "image_id": 2357227, "entity": "car", "caption": "people stand by a car", "question": ["are there people ?", "is there a car ?"], "prompt": "people stand by a {}"}, {"index": 287, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the gray car.", "question": ["is there the left front headlight ?", "is there the gray car ?"], "prompt": "The left front headlight of the gray {}."}, {"index": 288, "image_id": 2356915, "entity": "car", "caption": "The right front headlight on the black car.", "question": ["is there the right front headlight ?", "is there the black car ?"], "prompt": "The right front headlight on the black {}."}, {"index": 289, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the black car.", "question": ["is there the left front headlight ?", "is there the black car ?"], "prompt": "The left front headlight of the black {}."}, {"index": 290, "image_id": 2356554, "entity": "car", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "dog is sitting in side {}"}, {"index": 291, "image_id": 2355930, "entity": "car", "caption": "the cat is on top of the car", "question": ["is there the cat ?", "is there top ?", "is there the car ?"], "prompt": "the cat is on top of the {}"}, {"index": 292, "image_id": 2355930, "entity": "car", "caption": "the car has a license plate", "question": ["is there the car ?", "is there a license plate ?"], "prompt": "the {} has a license plate"}, {"index": 293, "image_id": 2355930, "entity": "car", "caption": "the wood is beside the car", "question": ["is there the wood ?", "is there the car ?"], "prompt": "the wood is beside the {}"}, {"index": 294, "image_id": 2355930, "entity": "car", "caption": "the car has seats", "question": ["is there the car ?", "are there seats ?"], "prompt": "the {} has seats"}, {"index": 295, "image_id": 2355512, "entity": "car", "caption": "the cat is under the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is under the {}"}, {"index": 296, "image_id": 2354802, "entity": "car", "caption": "side of the car is gray", "question": ["is there side ?", "is there the car ?"], "prompt": "side of the {} is gray"}, {"index": 297, "image_id": 2354802, "entity": "car", "caption": "car has advertisements all over paint job", "question": ["is there car ?", "are there advertisements ?", "is there paint job ?"], "prompt": "{} has advertisements all over paint job"}, {"index": 298, "image_id": 2354519, "entity": "car", "caption": "the shoes next to the car", "question": ["are there the shoes ?", "is there the car ?"], "prompt": "the shoes next to the {}"}, {"index": 299, "image_id": 2353437, "entity": "car", "caption": "a cat is on the car hood", "question": ["is there a cat ?", "is there the car hood ?"], "prompt": "a cat is on the {} hood"}, {"index": 300, "image_id": 2353208, "entity": "car", "caption": "the cat is sitting on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is sitting on the {}"}, {"index": 301, "image_id": 2353208, "entity": "car", "caption": "the car has windshield wipers", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "the {} has windshield wipers"}, {"index": 302, "image_id": 2353208, "entity": "car", "caption": "A cat is sitting on a car. ", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is sitting on a {}. "}, {"index": 303, "image_id": 2353208, "entity": "car", "caption": "A car has black windshield wipers. ", "question": ["is there a car ?", "are there black windshield wipers ?"], "prompt": "A {} has black windshield wipers. "}, {"index": 304, "image_id": 2353208, "entity": "car", "caption": "A car is under a cat. ", "question": ["is there a car ?", "is there a cat ?"], "prompt": "A {} is under a cat. "}, {"index": 305, "image_id": 2353125, "entity": "car", "caption": "a bicycle is on the car roof", "question": ["is there a bicycle ?", "is there the car roof ?"], "prompt": "a bicycle is on the {} roof"}, {"index": 306, "image_id": 2353125, "entity": "car", "caption": "the car has a carrier", "question": ["is there the car ?", "is there a carrier ?"], "prompt": "the {} has a {}rier"}, {"index": 307, "image_id": 2353125, "entity": "car", "caption": "Door handle on the car.", "question": ["is there door ?", "is there the car ?"], "prompt": "Door handle on the {}."}, {"index": 308, "image_id": 2352313, "entity": "car", "caption": "car door handle", "question": ["is there car door ?"], "prompt": "{} door handle"}, {"index": 309, "image_id": 2352313, "entity": "car", "caption": "door handle on a black car", "question": ["is there door ?", "is there a black car ?"], "prompt": "door handle on a black {}"}, {"index": 310, "image_id": 2352195, "entity": "car", "caption": "Blue and white bus parked next to the red car.", "question": ["is there blue and white bus ?", "is there the red car ?"], "prompt": "Blue and white bus parked next to the red {}."}, {"index": 311, "image_id": 2351364, "entity": "car", "caption": "She is next to the car.", "question": ["is there the car ?"], "prompt": "She is next to the {}."}, {"index": 312, "image_id": 2350995, "entity": "car", "caption": "A dog and man are riding in a white car.", "question": ["is there a dog ?", "is there man ?", "is there a white car ?"], "prompt": "A dog and man are riding in a white {}."}, {"index": 313, "image_id": 2350974, "entity": "car", "caption": "boy reflected in the car's window", "question": ["is there boy ?", "is there the car's window ?"], "prompt": "boy reflected in the {}'s window"}, {"index": 314, "image_id": 2350933, "entity": "car", "caption": "A car is in the window's reflection", "question": ["is there a car ?", "is there the window's reflection ?"], "prompt": "A {} is in the window's reflection"}, {"index": 315, "image_id": 2350869, "entity": "car", "caption": "line of cars stopped at intersection", "question": ["is there line ?", "are there cars ?", "is there intersection ?"], "prompt": "line of {}s stopped at intersection"}, {"index": 316, "image_id": 2350581, "entity": "car", "caption": "rear left tire on car", "question": ["is there rear left tire ?", "is there car ?"], "prompt": "rear left tire on {}"}, {"index": 317, "image_id": 2350581, "entity": "car", "caption": "front left tire on car", "question": ["is there front ?", "is there tire ?", "is there car ?"], "prompt": "front left tire on {}"}, {"index": 318, "image_id": 2350002, "entity": "car", "caption": "A car is on the road", "question": ["is there a car ?", "is there the road ?"], "prompt": "A {} is on the road"}, {"index": 319, "image_id": 2350002, "entity": "car", "caption": "A dog is sitting inside the car", "question": ["is there a dog ?", "is there the car ?"], "prompt": "A dog is sitting inside the {}"}, {"index": 320, "image_id": 2349972, "entity": "car", "caption": "a car having bags", "question": ["is there a car ?", "are there bags ?"], "prompt": "a {} having bags"}, {"index": 321, "image_id": 2349597, "entity": "car", "caption": "a car is by the dog", "question": ["is there a car ?", "is there the dog ?"], "prompt": "a {} is by the dog"}, {"index": 322, "image_id": 2348921, "entity": "car", "caption": "the child is in a car", "question": ["is there the child ?", "is there a car ?"], "prompt": "the child is in a {}"}, {"index": 323, "image_id": 2348625, "entity": "car", "caption": "this car has its break lights on ", "question": ["is there this car ?", "are there its break lights ?"], "prompt": "this {} has its break lights on "}, {"index": 324, "image_id": 2348416, "entity": "car", "caption": "indicator lights on the rear of a car", "question": ["are there indicator lights ?", "is there the rear ?", "is there a car ?"], "prompt": "indicator lights on the rear of a {}"}, {"index": 325, "image_id": 2348408, "entity": "car", "caption": "the window is down on the car", "question": ["is there the window ?", "is there the car ?"], "prompt": "the window is down on the {}"}, {"index": 326, "image_id": 2347190, "entity": "car", "caption": "the car front is grey in color", "question": ["is there the car front ?", "is there color ?"], "prompt": "the {} front is grey in color"}, {"index": 327, "image_id": 2347190, "entity": "car", "caption": "the car windscreen are black in color", "question": ["is there the car windscreen ?", "is there color ?"], "prompt": "the {} windscreen are black in color"}, {"index": 328, "image_id": 2347179, "entity": "car", "caption": "shadow os the cat is on the car ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "shadow os the cat is on the {} "}, {"index": 329, "image_id": 2347179, "entity": "car", "caption": "cat sits on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat sits on {}"}, {"index": 330, "image_id": 2347027, "entity": "car", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {}"}, {"index": 331, "image_id": 2346677, "entity": "car", "caption": "Man pushing suitcases in car", "question": ["is there man ?", "are there suitcases ?", "is there car ?"], "prompt": "Man pushing suitcases in {}"}, {"index": 332, "image_id": 2346677, "entity": "car", "caption": "Woman sitting in front seat of car", "question": ["is there woman ?", "is there front seat ?", "is there car ?"], "prompt": "Woman sitting in front seat of {}"}, {"index": 333, "image_id": 2345608, "entity": "car", "caption": "motorcycle is next to car", "question": ["is there motorcycle ?"], "prompt": "motorcycle is next to {}"}, {"index": 334, "image_id": 2345314, "entity": "car", "caption": "car window is down", "question": ["is there car window ?"], "prompt": "{} window is down"}, {"index": 335, "image_id": 2345219, "entity": "car", "caption": "car has red tail lights", "question": ["is there car ?", "are there red tail lights ?"], "prompt": "{} has red tail lights"}, {"index": 336, "image_id": 2345219, "entity": "car", "caption": "car trunk is open", "question": ["is there car trunk ?"], "prompt": "{} trunk is open"}, {"index": 337, "image_id": 2344729, "entity": "car", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is in the {}"}, {"index": 338, "image_id": 2344729, "entity": "car", "caption": "this is in a car", "question": ["is there a car ?"], "prompt": "this is in a {}"}, {"index": 339, "image_id": 2344713, "entity": "car", "caption": "black cat shaped car decal ", "question": ["is there black cat shaped car decal ?"], "prompt": "black cat shaped {} decal "}, {"index": 340, "image_id": 2344274, "entity": "car", "caption": "the car has no numberplates ", "question": ["is there the car ?"], "prompt": "the {} has no numberplates "}, {"index": 341, "image_id": 2344274, "entity": "car", "caption": "Silver car stopped at a light", "question": ["is there silver car ?", "is there a light ?"], "prompt": "Silver {} stopped at a light"}, {"index": 342, "image_id": 2343856, "entity": "car", "caption": "the plane is on the car ", "question": ["is there the plane ?", "is there the car ?"], "prompt": "the plane is on the {} "}, {"index": 343, "image_id": 2343756, "entity": "car", "caption": "A car's driver side headlight", "question": ["is there a car's driver side headlight ?"], "prompt": "A {}'s driver side headlight"}, {"index": 344, "image_id": 2343756, "entity": "car", "caption": "car make logo on front of car", "question": ["is there car ?", "is there logo ?", "is there front ?", "is there car ?"], "prompt": "{} make logo on front of {}"}, {"index": 345, "image_id": 2343756, "entity": "car", "caption": "silver care parked with surfboard on roof", "question": ["is there silver care ?", "is there surfboard ?", "is there roof ?"], "prompt": "silver {}e parked with surfboard on roof"}, {"index": 346, "image_id": 2343756, "entity": "car", "caption": "Surfboard attached to car rack", "question": ["is there surfboard ?", "is there car rack ?"], "prompt": "Surfboard attached to {} rack"}, {"index": 347, "image_id": 2343665, "entity": "car", "caption": "Various cars occupy city street", "question": ["are there various cars ?", "is there city street ?"], "prompt": "Various {}s occupy city street"}, {"index": 348, "image_id": 2343324, "entity": "car", "caption": "A lady travels inside the car", "question": ["is there a lady ?", "is there the car ?"], "prompt": "A lady travels inside the {}"}, {"index": 349, "image_id": 2343324, "entity": "car", "caption": "Besides the car vehicles are on the road", "question": ["are there the car vehicles ?", "is there the road ?"], "prompt": "Besides the {} vehicles are on the road"}, {"index": 350, "image_id": 2343324, "entity": "car", "caption": "A lady is riding her car ", "question": ["is there a lady ?", "is there her car ?"], "prompt": "A lady is riding her {} "}, {"index": 351, "image_id": 2343321, "entity": "car", "caption": "the car has tires", "question": ["is there the car ?", "are there tires ?"], "prompt": "the {} has tires"}, {"index": 352, "image_id": 2343098, "entity": "car", "caption": "a sign is on the front of the car", "question": ["is there a sign ?", "is there the front ?", "is there the car ?"], "prompt": "a sign is on the front of the {}"}, {"index": 353, "image_id": 2343098, "entity": "car", "caption": "a tire is on the car", "question": ["is there a tire ?", "is there the car ?"], "prompt": "a tire is on the {}"}, {"index": 354, "image_id": 2343098, "entity": "car", "caption": "the car's taillights are off ", "question": ["are there the car's taillights ?"], "prompt": "the {}'s taillights are off "}, {"index": 355, "image_id": 2342975, "entity": "car", "caption": "A surfboard is on the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}."}, {"index": 356, "image_id": 2342809, "entity": "car", "caption": "the car is reflecting the seat", "question": ["is there the car ?", "is there the seat ?"], "prompt": "the {} is reflecting the seat"}, {"index": 357, "image_id": 2342672, "entity": "car", "caption": "person driving the car", "question": ["is there person ?", "is there the car ?"], "prompt": "person driving the {}"}, {"index": 358, "image_id": 2342493, "entity": "car", "caption": "the cars have lights on", "question": ["are there the cars ?", "are there lights ?"], "prompt": "the {}s have lights on"}, {"index": 359, "image_id": 2341390, "entity": "car", "caption": "a large black dog sits in the back of a car", "question": ["is there a large black dog ?", "is there the back ?", "is there a car ?"], "prompt": "a large black dog sits in the back of a {}"}, {"index": 360, "image_id": 2341390, "entity": "car", "caption": "The dog is sitting in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is sitting in the {}."}, {"index": 361, "image_id": 2341390, "entity": "car", "caption": "The car have scratches", "question": ["is there the car ?", "are there scratches ?"], "prompt": "The {} have scratches"}, {"index": 362, "image_id": 2341390, "entity": "car", "caption": "a _very_ serious black dog sits in a scraped silver car", "question": ["is there a _very_ serious black dog ?", "is there a scraped silver car ?"], "prompt": "a _very_ serious black dog sits in a scraped silver {}"}, {"index": 363, "image_id": 2341390, "entity": "car", "caption": "car looks spraypainted silver, has a minor mess' worth of scrapes & scratches", "question": ["is there car ?", "is there spraypainted silver ?", "is there a minor mess' worth ?", "are there scrapes ?", "are there scratches ?"], "prompt": "{} looks spraypainted silver, has a minor mess' worth of scrapes & scratches"}, {"index": 364, "image_id": 2341302, "entity": "car", "caption": "woman is looking at the car", "question": ["is there woman ?", "is there the car ?"], "prompt": "woman is looking at the {}"}, {"index": 365, "image_id": 2341044, "entity": "car", "caption": "front left window of a black car", "question": ["is there front left window ?", "is there a black car ?"], "prompt": "front left window of a black {}"}, {"index": 366, "image_id": 2340693, "entity": "car", "caption": "cats are under car", "question": ["are there cats ?", "is there car ?"], "prompt": "cats are under {}"}, {"index": 367, "image_id": 2339803, "entity": "car", "caption": "The window is down in the car.", "question": ["is there the window ?", "is there the car ?"], "prompt": "The window is down in the {}."}, {"index": 368, "image_id": 2338847, "entity": "car", "caption": "Roof of car is black.", "question": ["is there roof ?", "is there car ?"], "prompt": "Roof of {} is black."}, {"index": 369, "image_id": 2338847, "entity": "car", "caption": "the car has wooden panels ", "question": ["is there the car ?", "are there wooden panels ?"], "prompt": "the {} has wooden panels "}, {"index": 370, "image_id": 2338254, "entity": "car", "caption": "surfbords are on the car", "question": ["are there surfbords ?", "is there the car ?"], "prompt": "surfbords are on the {}"}, {"index": 371, "image_id": 2338234, "entity": "car", "caption": "the model of car is ford ", "question": ["is there the model ?", "is there car ?"], "prompt": "the model of {} is ford "}, {"index": 372, "image_id": 2337797, "entity": "car", "caption": "the car has a red light", "question": ["is there the car ?", "is there a red light ?"], "prompt": "the {} has a red light"}, {"index": 373, "image_id": 2337385, "entity": "car", "caption": "window is apart of the car", "question": ["is there window ?", "is there the car ?"], "prompt": "window is apart of the {}"}, {"index": 374, "image_id": 2337324, "entity": "car", "caption": "a doggy has his head out the car window", "question": ["is there a doggy ?", "is there his head ?", "is there the car window ?"], "prompt": "a doggy has his head out the {} window"}, {"index": 375, "image_id": 2336747, "entity": "car", "caption": "black door handle on sliver car door", "question": ["is there black door ?", "is there sliver car door ?"], "prompt": "black door handle on sliver {} door"}, {"index": 376, "image_id": 2336235, "entity": "car", "caption": "the car the cat is lying on ", "question": ["is there the car ?", "is there the cat ?"], "prompt": "the {} the cat is lying on "}, {"index": 377, "image_id": 2336067, "entity": "car", "caption": "Cat is inside a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is inside a {}"}, {"index": 378, "image_id": 2336067, "entity": "car", "caption": "Cat is in the car's backseats", "question": ["is there cat ?", "are there the car's backseats ?"], "prompt": "Cat is in the {}'s backseats"}, {"index": 379, "image_id": 2336016, "entity": "car", "caption": "the man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "the man is in a {}"}, {"index": 380, "image_id": 2336016, "entity": "car", "caption": "Black car parked at the curb.", "question": ["is there black car ?", "is there the curb ?"], "prompt": "Black {} parked at the curb."}, {"index": 381, "image_id": 2335764, "entity": "car", "caption": "This car has a clear windshield", "question": ["is there this car ?", "is there a clear windshield ?"], "prompt": "This {} has a clear windshield"}, {"index": 382, "image_id": 2335683, "entity": "car", "caption": "it is car in the street ", "question": ["is there car ?", "is there the street ?"], "prompt": "it is {} in the street "}, {"index": 383, "image_id": 2335683, "entity": "car", "caption": "a white car stopped in street", "question": ["is there a white car ?", "is there street ?"], "prompt": "a white {} stopped in street"}, {"index": 384, "image_id": 2335292, "entity": "car", "caption": "The car is in front of the motorcycle", "question": ["is there the car ?", "is there front ?", "is there the motorcycle ?"], "prompt": "The {} is in front of the motorcycle"}, {"index": 385, "image_id": 2335292, "entity": "car", "caption": "The white car has red tail lights", "question": ["is there the white car ?", "are there red tail lights ?"], "prompt": "The white {} has red tail lights"}, {"index": 386, "image_id": 2335189, "entity": "car", "caption": "A old man standing behind a car.", "question": ["is there a old man ?", "is there a car ?"], "prompt": "A old man standing behind a {}."}, {"index": 387, "image_id": 2334957, "entity": "car", "caption": "right front headlight on car", "question": ["is there right front headlight ?", "is there car ?"], "prompt": "right front headlight on {}"}, {"index": 388, "image_id": 2334957, "entity": "car", "caption": "blue rusted door on car", "question": ["is there blue rusted door ?", "is there car ?"], "prompt": "blue rusted door on {}"}, {"index": 389, "image_id": 2333614, "entity": "car", "caption": "a rear view mirror is on the car", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "a rear view mirror is on the {}"}, {"index": 390, "image_id": 2333614, "entity": "car", "caption": "the car is on the street", "question": ["is there the car ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 391, "image_id": 2333466, "entity": "car", "caption": "license plate is on car", "question": ["is there license plate ?", "is there car ?"], "prompt": "license plate is on {}"}, {"index": 392, "image_id": 2332912, "entity": "car", "caption": "a white teddy bear sitting on a car", "question": ["is there a car ?"], "prompt": "a white teddy bear sitting on a {}"}, {"index": 393, "image_id": 2332110, "entity": "car", "caption": "wheel belongs to car", "question": ["is there wheel ?", "is there car ?"], "prompt": "wheel belongs to {}"}, {"index": 394, "image_id": 2332110, "entity": "car", "caption": "bumper belongs to car", "question": ["is there bumper ?", "is there car ?"], "prompt": "bumper belongs to {}"}, {"index": 395, "image_id": 2332110, "entity": "car", "caption": "headlight belongs to car", "question": ["is there headlight ?", "is there car ?"], "prompt": "headlight belongs to {}"}, {"index": 396, "image_id": 2332110, "entity": "car", "caption": "window belongs to car", "question": ["is there window ?", "is there car ?"], "prompt": "window belongs to {}"}, {"index": 397, "image_id": 2332110, "entity": "car", "caption": "car travels down street", "question": ["is there car ?"], "prompt": "{} travels down street"}, {"index": 398, "image_id": 2331977, "entity": "car", "caption": "he is sitting in a car ", "question": ["is there a car ?"], "prompt": "he is sitting in a {} "}, {"index": 399, "image_id": 2331977, "entity": "car", "caption": "the person is inside the car ", "question": ["is there the person ?", "is there the car ?"], "prompt": "the person is inside the {} "}, {"index": 400, "image_id": 2330180, "entity": "car", "caption": "cat sits on sidewalk looking at car", "question": ["is there cat ?", "is there sidewalk ?", "is there car ?"], "prompt": "cat sits on sidewalk looking at {}"}, {"index": 401, "image_id": 2330066, "entity": "car", "caption": "a red car is beside the blue car", "question": ["is there a red car ?", "is there the blue car ?"], "prompt": "a red {} is beside the blue {}"}, {"index": 402, "image_id": 2330005, "entity": "car", "caption": "Car painted red white and blue with elephant cartoon on hood", "question": ["is there car ?", "is there elephant cartoon ?", "is there hood ?"], "prompt": "Car painted red white and blue with elephant {}toon on hood"}, {"index": 403, "image_id": 2330005, "entity": "car", "caption": "man is driving the car", "question": ["is there man ?", "is there the car ?"], "prompt": "man is driving the {}"}, {"index": 404, "image_id": 2329079, "entity": "car", "caption": "car has a wheel on it", "question": ["is there car ?", "is there a wheel ?"], "prompt": "{} has a wheel on it"}, {"index": 405, "image_id": 2329079, "entity": "car", "caption": "a door handle on the car", "question": ["is there a door ?", "is there the car ?"], "prompt": "a door handle on the {}"}, {"index": 406, "image_id": 2328443, "entity": "car", "caption": "A car that is driving in the street", "question": ["is there a car ?", "is there the street ?"], "prompt": "A {} that is driving in the street"}, {"index": 407, "image_id": 2328324, "entity": "car", "caption": "the cat is on a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is on a {}"}, {"index": 408, "image_id": 2328094, "entity": "car", "caption": "the bear is in the grill of the car ", "question": ["is there the bear ?", "is there the grill ?", "is there the car ?"], "prompt": "the bear is in the grill of the {} "}, {"index": 409, "image_id": 2328094, "entity": "car", "caption": "it appears as if the car is eating the bear ", "question": ["is there the car ?", "is there the bear ?"], "prompt": "it appears as if the {} is eating the bear "}, {"index": 410, "image_id": 2327968, "entity": "car", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {} "}, {"index": 411, "image_id": 2327874, "entity": "car", "caption": "white surfboard leaned against car", "question": ["is there car ?"], "prompt": "white surfboard leaned against {}"}, {"index": 412, "image_id": 2327874, "entity": "car", "caption": "A surfboard is on the car. ", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}. "}, {"index": 413, "image_id": 2327874, "entity": "car", "caption": "Plants are next to the car. ", "question": ["are there plants ?", "is there the car ?"], "prompt": "Plants are next to the {}. "}, {"index": 414, "image_id": 2327874, "entity": "car", "caption": "A white surfboard is behind the car.", "question": ["is there a white surfboard ?", "is there the car ?"], "prompt": "A white surfboard is behind the {}."}, {"index": 415, "image_id": 2327688, "entity": "car", "caption": "door handle on the car", "question": ["is there door ?", "is there the car ?"], "prompt": "door handle on the {}"}, {"index": 416, "image_id": 2327454, "entity": "car", "caption": "Person driving a car", "question": ["is there person ?", "is there a car ?"], "prompt": "Person driving a {}"}, {"index": 417, "image_id": 2326951, "entity": "car", "caption": "poster is in the car", "question": ["is there poster ?", "is there the car ?"], "prompt": "poster is in the {}"}, {"index": 418, "image_id": 2326921, "entity": "car", "caption": "Volvo emblem on a car", "question": ["is there a car ?"], "prompt": "Volvo emblem on a {}"}, {"index": 419, "image_id": 2326884, "entity": "car", "caption": "this is a car windscreen", "question": ["is there a car windscreen ?"], "prompt": "this is a {} windscreen"}, {"index": 420, "image_id": 2326583, "entity": "car", "caption": "letter i on car", "question": ["is there letter ?", "is there car ?"], "prompt": "letter i on {}"}, {"index": 421, "image_id": 2325723, "entity": "car", "caption": "Cat is on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is on a {}"}, {"index": 422, "image_id": 2325460, "entity": "car", "caption": "Front end on a black car", "question": ["is there front end ?", "is there a black car ?"], "prompt": "Front end on a black {}"}, {"index": 423, "image_id": 2324926, "entity": "car", "caption": "the car has a face on it", "question": ["is there the car ?", "is there a face ?"], "prompt": "the {} has a face on it"}, {"index": 424, "image_id": 2323124, "entity": "car", "caption": "Cat is on the hood of car", "question": ["is there cat ?", "is there the hood ?", "is there car ?"], "prompt": "Cat is on the hood of {}"}, {"index": 425, "image_id": 2323124, "entity": "car", "caption": "Cat laying on the hood of the car", "question": ["is there cat ?", "is there the hood ?", "is there the car ?"], "prompt": "Cat laying on the hood of the {}"}, {"index": 426, "image_id": 2323124, "entity": "car", "caption": "Cat is laying on the hood of a car", "question": ["is there cat ?", "is there the hood ?", "is there a car ?"], "prompt": "Cat is laying on the hood of a {}"}, {"index": 427, "image_id": 2323088, "entity": "car", "caption": "The giraffes are walking around the cars", "question": ["are there the giraffes ?", "are there the cars ?"], "prompt": "The giraffes are walking around the {}s"}, {"index": 428, "image_id": 2322886, "entity": "car", "caption": "cars have rail on top of it ", "question": ["are there cars ?", "is there rail ?", "is there top ?"], "prompt": "{}s have rail on top of it "}, {"index": 429, "image_id": 2322886, "entity": "car", "caption": "cars have red light on back ", "question": ["are there cars ?", "is there red light ?"], "prompt": "{}s have red light on back "}, {"index": 430, "image_id": 2321836, "entity": "car", "caption": "Trunk of the car is open. ", "question": ["is there trunk ?", "is there the car ?"], "prompt": "Trunk of the {} is open. "}, {"index": 431, "image_id": 2321807, "entity": "car", "caption": "cat is meowing on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is meowing on {}"}, {"index": 432, "image_id": 2321807, "entity": "car", "caption": "Antenna is attache to the car", "question": ["is there antenna ?", "is there attache ?", "is there the car ?"], "prompt": "Antenna is attache to the {}"}, {"index": 433, "image_id": 2321807, "entity": "car", "caption": "Trees are in front of the car", "question": ["are there trees ?", "is there front ?", "is there the car ?"], "prompt": "Trees are in front of the {}"}, {"index": 434, "image_id": 2321807, "entity": "car", "caption": "Cat is sitting on the trunk of the car", "question": ["is there cat ?", "is there the trunk ?", "is there the car ?"], "prompt": "Cat is sitting on the trunk of the {}"}, {"index": 435, "image_id": 2321807, "entity": "car", "caption": "The cat is on the car. ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}. "}, {"index": 436, "image_id": 2320893, "entity": "car", "caption": "the car has a headlamp", "question": ["is there the car ?", "is there a headlamp ?"], "prompt": "the {} has a headlamp"}, {"index": 437, "image_id": 2320893, "entity": "car", "caption": "The left headlight on the car. ", "question": ["is there the left headlight ?", "is there the car ?"], "prompt": "The left headlight on the {}. "}, {"index": 438, "image_id": 2320741, "entity": "car", "caption": "car has black door", "question": ["is there car ?", "is there black door ?"], "prompt": "{} has black door"}, {"index": 439, "image_id": 2320741, "entity": "car", "caption": "car has black wheels", "question": ["is there car ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 440, "image_id": 2320741, "entity": "car", "caption": "The man is sitting in the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "The man is sitting in the {}"}, {"index": 441, "image_id": 2320741, "entity": "car", "caption": "The car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "The {} has a windshield"}, {"index": 442, "image_id": 2320741, "entity": "car", "caption": "man driving the black car", "question": ["is there man ?", "is there the black car ?"], "prompt": "man driving the black {}"}, {"index": 443, "image_id": 2320710, "entity": "car", "caption": "the car has a black tire", "question": ["is there the car ?", "is there a black tire ?"], "prompt": "the {} has a black tire"}, {"index": 444, "image_id": 2320662, "entity": "car", "caption": "man walking behind a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man walking behind a {}"}, {"index": 445, "image_id": 2320327, "entity": "car", "caption": "a round headlight on the car", "question": ["is there a round headlight ?", "is there the car ?"], "prompt": "a round headlight on the {}"}, {"index": 446, "image_id": 2319795, "entity": "car", "caption": "cat stands on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "cat stands on a {}"}, {"index": 447, "image_id": 2319480, "entity": "car", "caption": "Bird hanging from a rope in a car.", "question": ["is there bird ?", "is there a rope ?", "is there a car ?"], "prompt": "Bird hanging from a rope in a {}."}, {"index": 448, "image_id": 2319480, "entity": "car", "caption": "man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man driving a {}"}, {"index": 449, "image_id": 2319480, "entity": "car", "caption": "Man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "Man driving a {}"}, {"index": 450, "image_id": 2319164, "entity": "car", "caption": "white car rear with red stop lights", "question": ["is there white car rear ?", "are there red stop lights ?"], "prompt": "white {} rear with red stop lights"}, {"index": 451, "image_id": 2318890, "entity": "car", "caption": "the dog is on the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2318848, "entity": "car", "caption": "Black car parked next to the police vehicle", "question": ["is there black car ?", "is there the police vehicle ?"], "prompt": "Black {} parked next to the police vehicle"}, {"index": 453, "image_id": 2318441, "entity": "car", "caption": "the car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 454, "image_id": 2318441, "entity": "car", "caption": "A yellow car a dog is riding in", "question": ["is there a yellow car ?", "is there a dog ?"], "prompt": "A yellow {} a dog is riding in"}, {"index": 455, "image_id": 2318030, "entity": "car", "caption": "There is a red stripe that is on the car", "question": ["is there a red stripe ?", "is there the car ?"], "prompt": "There is a red stripe that is on the {}"}, {"index": 456, "image_id": 2318015, "entity": "car", "caption": "The man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is in a {}"}, {"index": 457, "image_id": 2317640, "entity": "car", "caption": "silver headlight on car", "question": ["is there silver headlight ?", "is there car ?"], "prompt": "silver headlight on {}"}, {"index": 458, "image_id": 2317640, "entity": "car", "caption": "company emblem on front of car", "question": ["is there company ?", "is there front ?", "is there car ?"], "prompt": "company emblem on front of {}"}, {"index": 459, "image_id": 2317566, "entity": "car", "caption": "a hose is on the roof of the car", "question": ["is there a hose ?", "is there the roof ?", "is there the car ?"], "prompt": "a hose is on the roof of the {}"}, {"index": 460, "image_id": 2317283, "entity": "car", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog is in a {}."}, {"index": 461, "image_id": 2317142, "entity": "car", "caption": "The car is on a rack.", "question": ["is there the car ?", "is there a rack ?"], "prompt": "The {} is on a rack."}, {"index": 462, "image_id": 2317029, "entity": "car", "caption": "console controls on a car", "question": ["is there console ?", "is there a car ?"], "prompt": "console controls on a {}"}, {"index": 463, "image_id": 2317029, "entity": "car", "caption": "front of car is blue", "question": ["is there front ?", "is there car ?"], "prompt": "front of {} is blue"}, {"index": 464, "image_id": 2317029, "entity": "car", "caption": "the teddy bear is in the car", "question": ["is there the teddy bear ?", "is there the car ?"], "prompt": "the teddy bear is in the {}"}, {"index": 465, "image_id": 2316404, "entity": "car", "caption": "This is a black car tire", "question": ["is there a black car tire ?"], "prompt": "This is a black {} tire"}, {"index": 466, "image_id": 2316376, "entity": "car", "caption": "yellow light is on the car", "question": ["is there yellow light ?", "is there the car ?"], "prompt": "yellow light is on the {}"}, {"index": 467, "image_id": 2316376, "entity": "car", "caption": "two men digging a car out of the mud", "question": ["are there two men ?", "is there a car ?", "is there the mud ?"], "prompt": "two men digging a {} out of the mud"}, {"index": 468, "image_id": 2316376, "entity": "car", "caption": "roof rack on a car", "question": ["is there roof rack ?", "is there a car ?"], "prompt": "roof rack on a {}"}, {"index": 469, "image_id": 2315981, "entity": "car", "caption": "Cay laying on a car ", "question": ["is there a car ?"], "prompt": "Cay laying on a {} "}, {"index": 470, "image_id": 2315981, "entity": "car", "caption": "Cat laying on car hood ", "question": ["is there cat ?", "is there car hood ?"], "prompt": "Cat laying on {} hood "}, {"index": 471, "image_id": 2315743, "entity": "car", "caption": "blue car behind moped", "question": ["is there blue car ?"], "prompt": "blue {} behind moped"}, {"index": 472, "image_id": 2315500, "entity": "car", "caption": "glass headlight on sports car", "question": ["is there glass headlight ?", "are there sports car ?"], "prompt": "glass headlight on sports {}"}, {"index": 473, "image_id": 2414288, "entity": "car", "caption": "a cat is laying on the hood of a car", "question": ["is there a cat ?", "is there the hood ?", "is there a car ?"], "prompt": "a cat is laying on the hood of a {}"}, {"index": 474, "image_id": 2414288, "entity": "car", "caption": "fuzzy cat is laying on the hood of a car", "question": ["is there fuzzy cat ?", "is there the hood ?", "is there a car ?"], "prompt": "fuzzy cat is laying on the hood of a {}"}, {"index": 475, "image_id": 2414288, "entity": "car", "caption": "cat is laying on a dark grey car", "question": ["is there cat ?", "is there a dark grey car ?"], "prompt": "cat is laying on a dark grey {}"}, {"index": 476, "image_id": 2414288, "entity": "car", "caption": "car has a small roof rack for luggage", "question": ["is there car ?", "is there a small roof rack ?", "is there luggage ?"], "prompt": "{} has a small roof rack for luggage"}, {"index": 477, "image_id": 2414273, "entity": "car", "caption": "cat is in the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is in the {}"}, {"index": 478, "image_id": 2414273, "entity": "car", "caption": "one cat is in the car", "question": ["is there one cat ?", "is there the car ?"], "prompt": "one cat is in the {}"}, {"index": 479, "image_id": 2413841, "entity": "car", "caption": "Diamond shaped light with numbers on the black car.", "question": ["is there light ?", "are there numbers ?", "is there the black car ?"], "prompt": "Diamond shaped light with numbers on the black {}."}, {"index": 480, "image_id": 2413841, "entity": "car", "caption": "Door handle on black car.", "question": ["is there door ?", "is there black car ?"], "prompt": "Door handle on black {}."}, {"index": 481, "image_id": 2413755, "entity": "car", "caption": "Trees growing behind car.", "question": ["are there trees ?", "is there car ?"], "prompt": "Trees growing behind {}."}, {"index": 482, "image_id": 2413755, "entity": "car", "caption": "The car has a red underglow", "question": ["is there the car ?", "is there a red underglow ?"], "prompt": "The {} has a red underglow"}, {"index": 483, "image_id": 2413755, "entity": "car", "caption": "a car is in the photo", "question": ["is there a car ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 484, "image_id": 2413755, "entity": "car", "caption": "a surfboard is on the car", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "a surfboard is on the {}"}, {"index": 485, "image_id": 2413755, "entity": "car", "caption": "the car is on the road", "question": ["is there the car ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 486, "image_id": 2413755, "entity": "car", "caption": "Red highlight lights accentuate the car", "question": ["are there red highlight lights ?", "is there the car ?"], "prompt": "Red highlight lights accentuate the {}"}, {"index": 487, "image_id": 2412424, "entity": "car", "caption": "the car windows are transparent", "question": ["are there the car windows ?"], "prompt": "the {} windows are transparent"}, {"index": 488, "image_id": 2412234, "entity": "car", "caption": "cat is under car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is under {}"}, {"index": 489, "image_id": 2412234, "entity": "car", "caption": "Cat is under the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "Cat is under the {}"}, {"index": 490, "image_id": 2411616, "entity": "car", "caption": "Surfboard tied to car", "question": ["is there surfboard ?", "is there car ?"], "prompt": "Surfboard tied to {}"}, {"index": 491, "image_id": 2411616, "entity": "car", "caption": "live christmas tree tied on car", "question": ["is there live christmas tree ?", "is there car ?"], "prompt": "live christmas tree tied on {}"}, {"index": 492, "image_id": 2411616, "entity": "car", "caption": "orange break light on black car ", "question": ["is there black car ?"], "prompt": "orange break light on black {} "}, {"index": 493, "image_id": 2411616, "entity": "car", "caption": "This car is hauling trees", "question": ["is there this car ?", "are there trees ?"], "prompt": "This {} is hauling trees"}, {"index": 494, "image_id": 2416074, "entity": "car", "caption": "The car has a red door.", "question": ["is there the car ?", "is there a red door ?"], "prompt": "The {} has a red door."}, {"index": 495, "image_id": 2416074, "entity": "car", "caption": "A surfboard is in the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is in the {}."}, {"index": 496, "image_id": 2417544, "entity": "car", "caption": "A car has dark rims.", "question": ["is there a car ?", "are there dark rims ?"], "prompt": "A {} has dark rims."}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02823428.json b/data/imagenet/compositions/prompts/n02823428.json
new file mode 100644
index 0000000000000000000000000000000000000000..8f1f72e78e1af17225a949ec4ac2e70028a39a36
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02823428.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2409865, "entity": "bottle", "caption": "Wine bottle is green color.", "question": ["is there wine bottle ?", "is there green color ?"], "prompt": "Wine {} is green color."}, {"index": 1, "image_id": 2409865, "entity": "bottle", "caption": "Opener is behind the bottle.", "question": ["is there opener ?", "is there the bottle ?"], "prompt": "Opener is behind the {}."}, {"index": 2, "image_id": 2409865, "entity": "bottle", "caption": "Wine bottle is in table.", "question": ["is there wine bottle ?", "is there table ?"], "prompt": "Wine {} is in table."}, {"index": 3, "image_id": 2409865, "entity": "bottle", "caption": "Name on bottle is Becker vineyards.", "question": ["is there bottle ?", "are there becker vineyards ?"], "prompt": "Name on {} is Becker vineyards."}, {"index": 4, "image_id": 2409865, "entity": "bottle", "caption": "a glass of wine is beside the bottle", "question": ["is there a glass ?", "is there wine ?", "is there the bottle ?"], "prompt": "a glass of wine is beside the {}"}, {"index": 5, "image_id": 2409865, "entity": "bottle", "caption": "a banana is beside the bottle", "question": ["is there a banana ?", "is there the bottle ?"], "prompt": "a banana is beside the {}"}, {"index": 6, "image_id": 2409865, "entity": "bottle", "caption": "The word BECKER written on a wine bottle", "question": ["is there the word ?", "is there a wine bottle ?"], "prompt": "The word BECKER written on a wine {}"}, {"index": 7, "image_id": 2409865, "entity": "bottle", "caption": "CLARET written on a wine bottle", "question": ["is there a wine bottle ?"], "prompt": "CLARET written on a wine {}"}, {"index": 8, "image_id": 2409865, "entity": "bottle", "caption": "the label on the bottle of wine has a tree on it", "question": ["is there the label ?", "is there the bottle ?", "is there wine ?", "is there a tree ?"], "prompt": "the label on the {} of wine has a tree on it"}, {"index": 9, "image_id": 2409865, "entity": "bottle", "caption": "the bottle opener in behind the bottle", "question": ["is there the bottle opener ?", "is there the bottle ?"], "prompt": "the {} opener in behind the {}"}, {"index": 10, "image_id": 2409865, "entity": "bottle", "caption": "a banana is behind the bottle", "question": ["is there a banana ?", "is there the bottle ?"], "prompt": "a banana is behind the {}"}, {"index": 11, "image_id": 2409865, "entity": "bottle", "caption": "a wine glass is next to the bottle", "question": ["is there a wine glass ?", "is there the bottle ?"], "prompt": "a wine glass is next to the {}"}, {"index": 12, "image_id": 2409865, "entity": "bottle", "caption": "items are behind the bottle on the counter", "question": ["are there items ?", "is there the bottle ?", "is there the counter ?"], "prompt": "items are behind the {} on the counter"}, {"index": 13, "image_id": 2407477, "entity": "bottle", "caption": "the bottle top is red", "question": ["is there the bottle top ?"], "prompt": "the {} top is red"}, {"index": 14, "image_id": 2381071, "entity": "bottle", "caption": "a hand holds the wine bottle", "question": ["is there a hand ?", "is there the wine bottle ?"], "prompt": "a hand holds the wine {}"}, {"index": 15, "image_id": 2378403, "entity": "bottle", "caption": "bottle has red top", "question": ["is there bottle ?", "is there red top ?"], "prompt": "{} has red top"}, {"index": 16, "image_id": 2368233, "entity": "bottle", "caption": "cork is in bottle", "question": ["is there cork ?", "is there bottle ?"], "prompt": "cork is in {}"}, {"index": 17, "image_id": 2368233, "entity": "bottle", "caption": "cold bottle of liquor stored in fridge", "question": ["is there cold bottle ?", "is there liquor ?", "is there fridge ?"], "prompt": "cold {} of liquor stored in fridge"}, {"index": 18, "image_id": 2321018, "entity": "bottle", "caption": "label glued to beer bottle", "question": ["is there label ?", "is there beer bottle ?"], "prompt": "label glued to beer {}"}, {"index": 19, "image_id": 2319077, "entity": "bottle", "caption": "Man's fingers that are holding a bottle and a cat.", "question": ["are there man's fingers ?", "is there a bottle ?", "is there a cat ?"], "prompt": "Man's fingers that are holding a {} and a cat."}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02930766.json b/data/imagenet/compositions/prompts/n02930766.json
new file mode 100644
index 0000000000000000000000000000000000000000..2381f38921c9ad56862e92e8fc850617008827e1
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02930766.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 65, "entity": "car", "caption": "License plate placed on black car", "question": ["is there license plate ?", "is there black car ?"], "prompt": "License plate placed on black {}"}, {"index": 1, "image_id": 316, "entity": "car", "caption": "the seats are in the car", "question": ["are there the seats ?", "is there the car ?"], "prompt": "the seats are in the {}"}, {"index": 2, "image_id": 692, "entity": "car", "caption": "A man is sitting in a car.", "question": ["is there a man ?", "is there a car ?"], "prompt": "A man is sitting in a {}."}, {"index": 3, "image_id": 692, "entity": "car", "caption": "A rear view mirror is in the car.", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "A rear view mirror is in the {}."}, {"index": 4, "image_id": 1029, "entity": "car", "caption": "man is sitting in tan car", "question": ["is there man ?", "is there tan car ?"], "prompt": "man is sitting in tan {}"}, {"index": 5, "image_id": 1710, "entity": "car", "caption": "silver trim on car", "question": ["is there silver trim ?", "is there car ?"], "prompt": "silver trim on {}"}, {"index": 6, "image_id": 2889, "entity": "car", "caption": "rear left tire of the white car", "question": ["is there rear left tire ?", "is there the white car ?"], "prompt": "rear left tire of the white {}"}, {"index": 7, "image_id": 2889, "entity": "car", "caption": "front left tire of the white car", "question": ["is there front left tire ?", "is there the white car ?"], "prompt": "front left tire of the white {}"}, {"index": 8, "image_id": 3288, "entity": "car", "caption": "the white car has doors", "question": ["is there the white car ?", "are there doors ?"], "prompt": "the white {} has doors"}, {"index": 9, "image_id": 3288, "entity": "car", "caption": "the tail light is red on the back of the car", "question": ["is there the tail light ?", "is there the back ?", "is there the car ?"], "prompt": "the tail light is red on the back of the {}"}, {"index": 10, "image_id": 3378, "entity": "car", "caption": "red car parked streetside", "question": ["is there red car ?"], "prompt": "red {} parked streetside"}, {"index": 11, "image_id": 3378, "entity": "car", "caption": "door handle on black car", "question": ["is there door ?", "is there black car ?"], "prompt": "door handle on black {}"}, {"index": 12, "image_id": 3493, "entity": "car", "caption": "car has a front light", "question": ["is there car ?", "is there a front light ?"], "prompt": "{} has a front light"}, {"index": 13, "image_id": 3493, "entity": "car", "caption": "car has front light", "question": ["is there car ?", "is there front light ?"], "prompt": "{} has front light"}, {"index": 14, "image_id": 3493, "entity": "car", "caption": "car has grey trim", "question": ["is there car ?"], "prompt": "{} has grey trim"}, {"index": 15, "image_id": 3493, "entity": "car", "caption": "red car has blue and white plate", "question": ["is there red car ?", "is there blue and white plate ?"], "prompt": "red {} has blue and white plate"}, {"index": 16, "image_id": 3493, "entity": "car", "caption": "sidewalk is next to car", "question": ["is there sidewalk ?"], "prompt": "sidewalk is next to {}"}, {"index": 17, "image_id": 3493, "entity": "car", "caption": "car has two headlights", "question": ["is there car ?", "are there two headlights ?"], "prompt": "{} has two headlights"}, {"index": 18, "image_id": 3764, "entity": "car", "caption": "mannequins are behind car", "question": ["are there mannequins ?", "is there car ?"], "prompt": "mannequins are behind {}"}, {"index": 19, "image_id": 3997, "entity": "car", "caption": "a red and black seat belt latch in a car", "question": ["is there a red and black seat belt latch ?", "is there a car ?"], "prompt": "a red and black seat belt latch in a {}"}, {"index": 20, "image_id": 3997, "entity": "car", "caption": "a black head rest in a car", "question": ["is there a black head ?", "is there a car ?"], "prompt": "a black head rest in a {}"}, {"index": 21, "image_id": 3997, "entity": "car", "caption": "a silver and red door handle in a car", "question": ["is there a silver and red door handle ?", "is there a car ?"], "prompt": "a silver and red door handle in a {}"}, {"index": 22, "image_id": 4526, "entity": "car", "caption": "a car front headlight", "question": ["is there a car front headlight ?"], "prompt": "a {} front headlight"}, {"index": 23, "image_id": 4526, "entity": "car", "caption": "the right front tire of the purple car is black in color.", "question": ["is there the right front tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the right front tire of the purple {} is black in color."}, {"index": 24, "image_id": 4526, "entity": "car", "caption": "the back right tire of the purple car is black in color.", "question": ["is there the back right tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the back right tire of the purple {} is black in color."}, {"index": 25, "image_id": 4526, "entity": "car", "caption": "the right front light of the purple car is round in shape.", "question": ["is there the right front light ?", "is there the purple car ?", "is there shape ?"], "prompt": "the right front light of the purple {} is round in shape."}, {"index": 26, "image_id": 2415144, "entity": "car", "caption": "police car in front of fire hydrant", "question": ["is there police car ?", "is there front ?", "is there fire hydrant ?"], "prompt": "police {} in front of fire hydrant"}, {"index": 27, "image_id": 497921, "entity": "car", "caption": "Seat belt coming from the side of car.", "question": ["is there seat belt ?", "is there the side ?", "is there car ?"], "prompt": "Seat belt coming from the side of {}."}, {"index": 28, "image_id": 713086, "entity": "car", "caption": "car has an antenna", "question": ["is there car ?", "is there an antenna ?"], "prompt": "{} has an antenna"}, {"index": 29, "image_id": 713093, "entity": "car", "caption": "Person in black coat standing next to vintage green car", "question": ["is there person ?", "is there black coat ?", "is there vintage green car ?"], "prompt": "Person in black coat standing next to vintage green {}"}, {"index": 30, "image_id": 713101, "entity": "car", "caption": "car has a window", "question": ["is there car ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 31, "image_id": 1592605, "entity": "car", "caption": "A grey car passes by", "question": ["is there a grey car ?"], "prompt": "A grey {} passes by"}, {"index": 32, "image_id": 2414932, "entity": "car", "caption": "The cat sits on the car.", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat sits on the {}."}, {"index": 33, "image_id": 2414470, "entity": "car", "caption": "A car's door handle", "question": ["is there a car's door ?"], "prompt": "A {}'s door handle"}, {"index": 34, "image_id": 2414470, "entity": "car", "caption": "Door handle on a car door.", "question": ["is there door ?", "is there a car door ?"], "prompt": "Door handle on a {} door."}, {"index": 35, "image_id": 2414470, "entity": "car", "caption": "The man is sitting in the car's driver seat.", "question": ["is there the man ?", "is there the car's driver seat ?"], "prompt": "The man is sitting in the {}'s driver seat."}, {"index": 36, "image_id": 2412607, "entity": "car", "caption": "Automobile seats inside the car are gray", "question": ["are there automobile seats ?", "is there the car ?"], "prompt": "Automobile seats inside the {} are gray"}, {"index": 37, "image_id": 2412607, "entity": "car", "caption": "silver door handle on car", "question": ["is there silver door ?", "is there car ?"], "prompt": "silver door handle on {}"}, {"index": 38, "image_id": 2412101, "entity": "car", "caption": "Red car parked on right side of street ", "question": ["is there red car ?", "is there right side ?", "is there street ?"], "prompt": "Red {} parked on right side of street "}, {"index": 39, "image_id": 2412101, "entity": "car", "caption": "Front left tire on gray car.", "question": ["is there front ?", "is there tire ?", "is there gray car ?"], "prompt": "Front left tire on gray {}."}, {"index": 40, "image_id": 2411491, "entity": "car", "caption": "car door is unlocked", "question": ["is there car door ?"], "prompt": "{} door is unlocked"}, {"index": 41, "image_id": 2410940, "entity": "car", "caption": "Hood of car is big", "question": ["is there hood ?", "is there car ?"], "prompt": "Hood of {} is big"}, {"index": 42, "image_id": 2410404, "entity": "car", "caption": "Hood popped open on car in background.", "question": ["is there hood ?", "is there car ?", "is there background ?"], "prompt": "Hood popped open on {} in background."}, {"index": 43, "image_id": 2410319, "entity": "car", "caption": "woman is inside of car", "question": ["is there woman ?", "is there car ?"], "prompt": "woman is inside of {}"}, {"index": 44, "image_id": 2410303, "entity": "car", "caption": "dark car the dog is sitting in", "question": ["is there dark car ?", "is there the dog ?"], "prompt": "dark {} the dog is sitting in"}, {"index": 45, "image_id": 2410034, "entity": "car", "caption": "Strap of car sit", "question": ["is there strap ?", "is there car ?"], "prompt": "Strap of {} sit"}, {"index": 46, "image_id": 2409981, "entity": "car", "caption": "Flags are on top of the car", "question": ["are there flags ?", "is there top ?", "is there the car ?"], "prompt": "Flags are on top of the {}"}, {"index": 47, "image_id": 2409288, "entity": "car", "caption": "car is ordering food", "question": ["is there car ?", "is there food ?"], "prompt": "{} is ordering food"}, {"index": 48, "image_id": 2409288, "entity": "car", "caption": "Silver door lock on a car", "question": ["is there silver door ?", "is there a car ?"], "prompt": "Silver door lock on a {}"}, {"index": 49, "image_id": 2408616, "entity": "car", "caption": "road the car is driving on", "question": ["is there road ?", "is there the car ?"], "prompt": "road the {} is driving on"}, {"index": 50, "image_id": 2408935, "entity": "car", "caption": "Cat sitting on a car.", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat sitting on a {}."}, {"index": 51, "image_id": 2408590, "entity": "car", "caption": "Front of car is red", "question": ["is there front ?", "is there car ?"], "prompt": "Front of {} is red"}, {"index": 52, "image_id": 2408413, "entity": "car", "caption": "Bamper of car is black", "question": ["is there car ?"], "prompt": "Bamper of {} is black"}, {"index": 53, "image_id": 2408413, "entity": "car", "caption": "Front headlight on a car. ", "question": ["is there front headlight ?", "is there a car ?"], "prompt": "Front headlight on a {}. "}, {"index": 54, "image_id": 2408413, "entity": "car", "caption": "Front turn signal light on a car. ", "question": ["is there front turn signal light ?", "is there a car ?"], "prompt": "Front turn signal light on a {}. "}, {"index": 55, "image_id": 2408413, "entity": "car", "caption": "the side of the front headlight on the car", "question": ["is there the side ?", "is there the front headlight ?", "is there the car ?"], "prompt": "the side of the front headlight on the {}"}, {"index": 56, "image_id": 2408016, "entity": "car", "caption": "The word Jazz written on back of car", "question": ["is there the word jazz ?", "is there car ?"], "prompt": "The word Jazz written on back of {}"}, {"index": 57, "image_id": 2408012, "entity": "car", "caption": "the car has a black underneth", "question": ["is there the car ?", "is there a black underneth ?"], "prompt": "the {} has a black underneth"}, {"index": 58, "image_id": 2407776, "entity": "car", "caption": "a parking meter is next to the car", "question": ["is there a parking meter ?", "is there the car ?"], "prompt": "a parking meter is next to the {}"}, {"index": 59, "image_id": 2407740, "entity": "car", "caption": "both cars tail lights are on", "question": ["are there both cars tail lights ?"], "prompt": "both {}s tail lights are on"}, {"index": 60, "image_id": 2407740, "entity": "car", "caption": "A red light is on a second car. ", "question": ["is there a red light ?", "is there a second car ?"], "prompt": "A red light is on a second {}. "}, {"index": 61, "image_id": 2407740, "entity": "car", "caption": "rain drops on car windshield", "question": ["is there rain ?", "is there car windshield ?"], "prompt": "rain drops on {} windshield"}, {"index": 62, "image_id": 2407600, "entity": "car", "caption": "white cup placed on roof of car", "question": ["is there roof ?", "is there car ?"], "prompt": "white cup placed on roof of {}"}, {"index": 63, "image_id": 2407600, "entity": "car", "caption": "The back tire of the car where the man is sitting.", "question": ["is there the back tire ?", "is there the car ?", "is there the man ?"], "prompt": "The back tire of the {} where the man is sitting."}, {"index": 64, "image_id": 2407600, "entity": "car", "caption": "The front tire of the car where the man is sitting.", "question": ["is there the front tire ?", "is there the car ?", "is there the man ?"], "prompt": "The front tire of the {} where the man is sitting."}, {"index": 65, "image_id": 2407181, "entity": "car", "caption": "Man sitting on car ", "question": ["is there man ?", "is there car ?"], "prompt": "Man sitting on {} "}, {"index": 66, "image_id": 2407181, "entity": "car", "caption": "The man is sitting inside a car.", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is sitting inside a {}."}, {"index": 67, "image_id": 2406983, "entity": "car", "caption": "The car has a Mercedes emblem", "question": ["is there the car ?", "are there a mercedes emblem ?"], "prompt": "The {} has a Mercedes emblem"}, {"index": 68, "image_id": 2406983, "entity": "car", "caption": "the car has 55000000 on the trunk", "question": ["is there the car ?", "is there the trunk ?"], "prompt": "the {} has 55000000 on the trunk"}, {"index": 69, "image_id": 2406229, "entity": "car", "caption": "door handle on a car", "question": ["is there door ?", "is there a car ?"], "prompt": "door handle on a {}"}, {"index": 70, "image_id": 2405945, "entity": "car", "caption": "the side view mirror is on the car", "question": ["is there the side view mirror ?", "is there the car ?"], "prompt": "the side view mirror is on the {}"}, {"index": 71, "image_id": 2405945, "entity": "car", "caption": "the dog is inside the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is inside the {}"}, {"index": 72, "image_id": 2405945, "entity": "car", "caption": "the windshield is on the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "the windshield is on the {}"}, {"index": 73, "image_id": 2405130, "entity": "car", "caption": "this is a car ", "question": ["is there a car ?"], "prompt": "this is a {} "}, {"index": 74, "image_id": 2405042, "entity": "car", "caption": "this is the car's hindlight", "question": ["is there the car's hindlight ?"], "prompt": "this is the {}'s hindlight"}, {"index": 75, "image_id": 2405042, "entity": "car", "caption": "the car beside the meter is blue", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} beside the meter is blue"}, {"index": 76, "image_id": 2405042, "entity": "car", "caption": "the car behind the meter is white", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} behind the meter is white"}, {"index": 77, "image_id": 2405042, "entity": "car", "caption": "the blue car has a red tail light", "question": ["is there the blue car ?", "is there a red tail light ?"], "prompt": "the blue {} has a red tail light"}, {"index": 78, "image_id": 2404709, "entity": "car", "caption": "door handle on a gray car", "question": ["is there door ?", "is there a gray car ?"], "prompt": "door handle on a gray {}"}, {"index": 79, "image_id": 2404508, "entity": "car", "caption": "a cat is on the car", "question": ["is there a cat ?", "is there the car ?"], "prompt": "a cat is on the {}"}, {"index": 80, "image_id": 2404508, "entity": "car", "caption": "the car is dark inside", "question": ["is there the car ?"], "prompt": "the {} is dark inside"}, {"index": 81, "image_id": 2404508, "entity": "car", "caption": "White car, visible through car window. ", "question": ["is there white car ?", "is there car window ?"], "prompt": "White {}, visible through {} window. "}, {"index": 82, "image_id": 2404508, "entity": "car", "caption": "the cat is in the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is in the {}"}, {"index": 83, "image_id": 2404223, "entity": "car", "caption": "black car behind bush and fire hydrant", "question": ["is there black car ?", "is there fire hydrant ?"], "prompt": "black {} behind bush and fire hydrant"}, {"index": 84, "image_id": 2404223, "entity": "car", "caption": "The car has rims on", "question": ["is there the car ?", "are there rims ?"], "prompt": "The {} has rims on"}, {"index": 85, "image_id": 2403996, "entity": "car", "caption": "The dog is laying in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is laying in the {}."}, {"index": 86, "image_id": 2403996, "entity": "car", "caption": "this is a car air freshner", "question": ["is there a car air freshner ?"], "prompt": "this is a {} air freshner"}, {"index": 87, "image_id": 2403274, "entity": "car", "caption": "antenna attached to car", "question": ["is there antenna ?", "is there car ?"], "prompt": "antenna attached to {}"}, {"index": 88, "image_id": 2402657, "entity": "car", "caption": "side car mirror with sky reflected ", "question": ["is there side car mirror ?", "is there sky ?"], "prompt": "side {} mirror with sky reflected "}, {"index": 89, "image_id": 2402628, "entity": "car", "caption": "a car head light", "question": ["is there a car head ?"], "prompt": "a {} head light"}, {"index": 90, "image_id": 2401935, "entity": "car", "caption": "a car's door handle", "question": ["is there a car's door ?"], "prompt": "a {}'s door handle"}, {"index": 91, "image_id": 2401222, "entity": "car", "caption": "the woman is in a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "the woman is in a {}"}, {"index": 92, "image_id": 2401204, "entity": "car", "caption": "A cat is sitting on top of a car", "question": ["is there a cat ?", "is there top ?", "is there a car ?"], "prompt": "A cat is sitting on top of a {}"}, {"index": 93, "image_id": 2401204, "entity": "car", "caption": "cat is on the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is on the {}"}, {"index": 94, "image_id": 2401017, "entity": "car", "caption": "The car is silver.", "question": ["is there the car ?"], "prompt": "The {} is silver."}, {"index": 95, "image_id": 2401017, "entity": "car", "caption": "reflection shines on the door of the car", "question": ["is there reflection ?", "is there the door ?", "is there the car ?"], "prompt": "reflection shines on the door of the {}"}, {"index": 96, "image_id": 2400948, "entity": "car", "caption": "Surf board on a car", "question": ["is there surf board ?", "is there a car ?"], "prompt": "Surf board on a {}"}, {"index": 97, "image_id": 2400948, "entity": "car", "caption": "surfboards are on top of the car", "question": ["are there surfboards ?", "is there top ?", "is there the car ?"], "prompt": "surfboards are on top of the {}"}, {"index": 98, "image_id": 2400948, "entity": "car", "caption": "a steering wheel statue is on the middle of car", "question": ["is there a steering wheel statue ?", "is there the middle ?", "is there car ?"], "prompt": "a steering wheel statue is on the middle of {}"}, {"index": 99, "image_id": 2400948, "entity": "car", "caption": "people are standing behind car", "question": ["are there people ?", "is there car ?"], "prompt": "people are standing behind {}"}, {"index": 100, "image_id": 2400860, "entity": "car", "caption": "black door handles on white car", "question": ["is there black door ?", "is there white car ?"], "prompt": "black door handles on white {}"}, {"index": 101, "image_id": 2400860, "entity": "car", "caption": "a door handle on a car", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}"}, {"index": 102, "image_id": 2400806, "entity": "car", "caption": "a red suitcase is next to the car", "question": ["is there a red suitcase ?", "is there the car ?"], "prompt": "a red suitcase is next to the {}"}, {"index": 103, "image_id": 2400490, "entity": "car", "caption": "front door handle on car", "question": ["is there front door ?", "is there car ?"], "prompt": "front door handle on {}"}, {"index": 104, "image_id": 2400490, "entity": "car", "caption": "a car door handle", "question": ["is there a car door ?"], "prompt": "a {} door handle"}, {"index": 105, "image_id": 2400490, "entity": "car", "caption": "parked car is dark gray with four doors", "question": ["is there parked car ?", "are there four doors ?"], "prompt": "parked {} is dark gray with four doors"}, {"index": 106, "image_id": 2400490, "entity": "car", "caption": "a door handle on a car.", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}."}, {"index": 107, "image_id": 2400490, "entity": "car", "caption": "front left fender of a car.", "question": ["is there front left fender ?", "is there a car ?"], "prompt": "front left fender of a {}."}, {"index": 108, "image_id": 2400275, "entity": "car", "caption": "A person barely visible in the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "A person barely visible in the {}"}, {"index": 109, "image_id": 2400275, "entity": "car", "caption": "The window of the car the dog is sticking his head out of", "question": ["is there the window ?", "is there the car ?", "is there the dog ?", "is there his head ?"], "prompt": "The window of the {} the dog is sticking his head out of"}, {"index": 110, "image_id": 2400275, "entity": "car", "caption": "Dogs is in a car", "question": ["are there dogs ?", "is there a car ?"], "prompt": "Dogs is in a {}"}, {"index": 111, "image_id": 2399913, "entity": "car", "caption": "handle that helps you getting out of car", "question": ["is there car ?"], "prompt": "handle that helps you getting out of {}"}, {"index": 112, "image_id": 2399740, "entity": "car", "caption": "This mirror belongs to a car.", "question": ["is there this mirror ?", "is there a car ?"], "prompt": "This mirror belongs to a {}."}, {"index": 113, "image_id": 2399146, "entity": "car", "caption": "this is a car", "question": ["is there a car ?"], "prompt": "this is a {}"}, {"index": 114, "image_id": 2398786, "entity": "car", "caption": "Door handle on the driver side of a black car. ", "question": ["is there door ?", "is there the driver side ?", "is there a black car ?"], "prompt": "Door handle on the driver side of a black {}. "}, {"index": 115, "image_id": 2398088, "entity": "car", "caption": "seat buckle part in car", "question": ["is there seat buckle part ?", "is there car ?"], "prompt": "seat buckle part in {}"}, {"index": 116, "image_id": 2398088, "entity": "car", "caption": "A window is in the car.", "question": ["is there a window ?", "is there the car ?"], "prompt": "A window is in the {}."}, {"index": 117, "image_id": 2398030, "entity": "car", "caption": "Trees are behind the cars.", "question": ["are there trees ?", "are there the cars ?"], "prompt": "Trees are behind the {}s."}, {"index": 118, "image_id": 2398030, "entity": "car", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice {}s and trucks lined up"}, {"index": 119, "image_id": 2398030, "entity": "car", "caption": "car with hood that opens backwards ", "question": ["is there car ?", "is there hood ?"], "prompt": "{} with hood that opens backwards "}, {"index": 120, "image_id": 2397686, "entity": "car", "caption": "Person is inside car.", "question": ["is there person ?", "is there inside car ?"], "prompt": "Person is inside {}."}, {"index": 121, "image_id": 2396173, "entity": "car", "caption": "the zebra is near a car", "question": ["is there a car ?"], "prompt": "the zebra is near a {}"}, {"index": 122, "image_id": 2396020, "entity": "car", "caption": "grass next to car is dry ", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is dry "}, {"index": 123, "image_id": 2396020, "entity": "car", "caption": "grass next to car is color brown", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is color brown"}, {"index": 124, "image_id": 2396018, "entity": "car", "caption": "White car is behind meter", "question": ["is there white car ?", "is there meter ?"], "prompt": "White {} is behind meter"}, {"index": 125, "image_id": 2395874, "entity": "car", "caption": "air went inside car", "question": ["is there air ?", "is there car ?"], "prompt": "air went inside {}"}, {"index": 126, "image_id": 2395874, "entity": "car", "caption": "The zebra is in the car.", "question": ["is there the car ?"], "prompt": "The zebra is in the {}."}, {"index": 127, "image_id": 2395874, "entity": "car", "caption": "zebra's head pokes into car window", "question": ["is there zebra's head ?", "is there car window ?"], "prompt": "zebra's head pokes into {} window"}, {"index": 128, "image_id": 2395759, "entity": "car", "caption": "cows surround the car", "question": ["are there cows ?", "is there the car ?"], "prompt": "cows surround the {}"}, {"index": 129, "image_id": 2395759, "entity": "car", "caption": "animal going to bathroom beside car", "question": ["is there animal ?", "is there car ?"], "prompt": "animal going to bathroom beside {}"}, {"index": 130, "image_id": 2395588, "entity": "car", "caption": "two more cows wait in line to taste different parts of car, perhaps c[h]ow down", "question": ["are there two more cows ?", "is there line ?", "are there different parts ?", "is there car ?"], "prompt": "two more cows wait in line to taste different parts of {}, perhaps c[h]ow down"}, {"index": 131, "image_id": 2395338, "entity": "car", "caption": "teddy bear on a red car", "question": ["is there a red car ?"], "prompt": "teddy bear on a red {}"}, {"index": 132, "image_id": 2395338, "entity": "car", "caption": "The teddy bear is sitting on the car.", "question": ["is there the car ?"], "prompt": "The teddy bear is sitting on the {}."}, {"index": 133, "image_id": 2395338, "entity": "car", "caption": "The seats in the car is tan.", "question": ["are there the seats ?", "is there the car ?", "is there tan ?"], "prompt": "The seats in the {} is tan."}, {"index": 134, "image_id": 2395338, "entity": "car", "caption": "The bear is sitting by the side mirror of the car.", "question": ["is there the bear ?", "is there the side mirror ?", "is there the car ?"], "prompt": "The bear is sitting by the side mirror of the {}."}, {"index": 135, "image_id": 2395338, "entity": "car", "caption": "The car has windshield wipers.", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "The {} has windshield wipers."}, {"index": 136, "image_id": 2395338, "entity": "car", "caption": "brown teddy bear sitting on car", "question": ["is there car ?"], "prompt": "brown teddy bear sitting on {}"}, {"index": 137, "image_id": 2395338, "entity": "car", "caption": "little teddy bear sitting on car", "question": ["is there car ?"], "prompt": "little teddy bear sitting on {}"}, {"index": 138, "image_id": 2395208, "entity": "car", "caption": "front left light of a car", "question": ["is there front ?", "is there light ?", "is there a car ?"], "prompt": "front left light of a {}"}, {"index": 139, "image_id": 2394987, "entity": "car", "caption": "the fence is behind the car", "question": ["is there the fence ?", "is there the car ?"], "prompt": "the fence is behind the {}"}, {"index": 140, "image_id": 2394987, "entity": "car", "caption": "the cars says coca-cola", "question": ["are there the cars ?"], "prompt": "the {}s says coca-cola"}, {"index": 141, "image_id": 2393712, "entity": "car", "caption": "The car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "The {} has a mirror"}, {"index": 142, "image_id": 2393712, "entity": "car", "caption": "the car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 143, "image_id": 2391973, "entity": "car", "caption": "the cars control panel", "question": ["are there the cars control panel ?"], "prompt": "the {}s control panel"}, {"index": 144, "image_id": 2390809, "entity": "car", "caption": "this is a car tire", "question": ["is there a car tire ?"], "prompt": "this is a {} tire"}, {"index": 145, "image_id": 2390710, "entity": "car", "caption": "the cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is on the {}"}, {"index": 146, "image_id": 2390710, "entity": "car", "caption": "cat sitting and crouching on hood of car", "question": ["is there cat ?", "is there hood ?", "is there car ?"], "prompt": "cat sitting and crouching on hood of {}"}, {"index": 147, "image_id": 2390672, "entity": "car", "caption": "The dog is in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is in the {}."}, {"index": 148, "image_id": 2390672, "entity": "car", "caption": "a German shepard alone inside a car with the windows rolled up", "question": ["is there a german shepard ?", "is there a car ?", "are there the windows ?"], "prompt": "a German shepard alone inside a {} with the windows rolled up"}, {"index": 149, "image_id": 2390553, "entity": "car", "caption": "the dash in the car is black", "question": ["is there the dash ?", "is there the car ?"], "prompt": "the dash in the {} is black"}, {"index": 150, "image_id": 2390177, "entity": "car", "caption": "shiny roof rack on red car", "question": ["is there shiny roof rack ?", "is there red car ?"], "prompt": "shiny roof rack on red {}"}, {"index": 151, "image_id": 2389910, "entity": "car", "caption": "a slipstream sports car has bikes on it.", "question": ["are there a slipstream sports car ?", "are there bikes ?"], "prompt": "a slipstream sports {} has bikes on it."}, {"index": 152, "image_id": 2389614, "entity": "car", "caption": "Dog hanging out of car. ", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog hanging out of {}. "}, {"index": 153, "image_id": 2389485, "entity": "car", "caption": "Woman watching animals in the car.", "question": ["is there woman ?", "are there animals ?", "is there the car ?"], "prompt": "Woman watching animals in the {}."}, {"index": 154, "image_id": 2389479, "entity": "car", "caption": "a car with several bicycles mounted on top of it", "question": ["is there a car ?", "are there several bicycles ?", "is there top ?"], "prompt": "a {} with several bicycles mounted on top of it"}, {"index": 155, "image_id": 2389474, "entity": "car", "caption": "The dog is looking out the car window.", "question": ["is there the dog ?", "is there the car window ?"], "prompt": "The dog is looking out the {} window."}, {"index": 156, "image_id": 2388774, "entity": "car", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the bird is in the {} "}, {"index": 157, "image_id": 2388733, "entity": "car", "caption": "bicycles mounted on car", "question": ["are there bicycles ?", "is there car ?"], "prompt": "bicycles mounted on {}"}, {"index": 158, "image_id": 2388584, "entity": "car", "caption": "A doll head in a car.", "question": ["is there a doll head ?", "is there a car ?"], "prompt": "A doll head in a {}."}, {"index": 159, "image_id": 2388584, "entity": "car", "caption": "Another doll head inside a car.", "question": ["is there another doll head ?", "is there a car ?"], "prompt": "Another doll head inside a {}."}, {"index": 160, "image_id": 2388584, "entity": "car", "caption": "empty tube of toothpaste taped to top of car", "question": ["is there empty tube ?", "is there toothpaste ?", "is there top ?", "is there car ?"], "prompt": "empty tube of toothpaste taped to top of {}"}, {"index": 161, "image_id": 2388584, "entity": "car", "caption": "two toothbrushes taped to top of car", "question": ["are there two toothbrushes ?", "is there top ?", "is there car ?"], "prompt": "two toothbrushes taped to top of {}"}, {"index": 162, "image_id": 2388052, "entity": "car", "caption": "roof of car is blue and yellow", "question": ["is there roof ?", "is there car ?"], "prompt": "roof of {} is blue and yellow"}, {"index": 163, "image_id": 2388052, "entity": "car", "caption": "door of car is yellow", "question": ["is there door ?", "is there car ?"], "prompt": "door of {} is yellow"}, {"index": 164, "image_id": 2388010, "entity": "car", "caption": "white car pulled off on side of road", "question": ["is there white car ?", "is there side ?", "is there road ?"], "prompt": "white {} pulled off on side of road"}, {"index": 165, "image_id": 2388010, "entity": "car", "caption": "a door handle ona car", "question": ["is there a door ?"], "prompt": "a door handle ona {}"}, {"index": 166, "image_id": 2387950, "entity": "car", "caption": "dog is resting on green car", "question": ["is there dog ?", "is there green car ?"], "prompt": "dog is resting on green {}"}, {"index": 167, "image_id": 2387327, "entity": "car", "caption": "The dogs are in a car.", "question": ["are there the dogs ?", "is there a car ?"], "prompt": "The dogs are in a {}."}, {"index": 168, "image_id": 2386114, "entity": "car", "caption": "white car door handle", "question": ["is there white car door ?"], "prompt": "white {} door handle"}, {"index": 169, "image_id": 2385961, "entity": "car", "caption": "a kitty cat is sleeping under a car", "question": ["is there a kitty cat ?", "is there a car ?"], "prompt": "a kitty cat is sleeping under a {}"}, {"index": 170, "image_id": 2385697, "entity": "car", "caption": "the surfboards are sticking out of the car", "question": ["are there the surfboards ?", "is there the car ?"], "prompt": "the surfboards are sticking out of the {}"}, {"index": 171, "image_id": 2385697, "entity": "car", "caption": "the tag is on the back of the car", "question": ["is there the tag ?", "is there the back ?", "is there the car ?"], "prompt": "the tag is on the back of the {}"}, {"index": 172, "image_id": 2385697, "entity": "car", "caption": "the surfboards are on the roof of the car", "question": ["are there the surfboards ?", "is there the roof ?", "is there the car ?"], "prompt": "the surfboards are on the roof of the {}"}, {"index": 173, "image_id": 2385466, "entity": "car", "caption": "Dog is inside car", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog is inside {}"}, {"index": 174, "image_id": 2385251, "entity": "car", "caption": "fence is in front of car", "question": ["is there fence ?", "is there front ?", "is there car ?"], "prompt": "fence is in front of {}"}, {"index": 175, "image_id": 2384917, "entity": "car", "caption": "Light on the car is on. ", "question": ["is there light ?", "is there the car ?"], "prompt": "Light on the {} is on. "}, {"index": 176, "image_id": 2383569, "entity": "car", "caption": "Three bicycles lined up behind a green car.", "question": ["are there three bicycles ?", "is there a green car ?"], "prompt": "Three bicycles lined up behind a green {}."}, {"index": 177, "image_id": 2383096, "entity": "car", "caption": "the car has wood grain", "question": ["is there the car ?", "is there wood grain ?"], "prompt": "the {} has wood grain"}, {"index": 178, "image_id": 2383016, "entity": "car", "caption": "Front left tire of car", "question": ["is there front left tire ?", "is there car ?"], "prompt": "Front left tire of {}"}, {"index": 179, "image_id": 2382637, "entity": "car", "caption": "rails surround roof of green car", "question": ["are there rails ?", "is there surround roof ?", "is there green car ?"], "prompt": "rails surround roof of green {}"}, {"index": 180, "image_id": 2382494, "entity": "car", "caption": "A woman looks into the white car", "question": ["is there a woman ?", "is there the white car ?"], "prompt": "A woman looks into the white {}"}, {"index": 181, "image_id": 2382257, "entity": "car", "caption": "car front passenger side handle", "question": ["is there car front passenger side handle ?"], "prompt": "{} front passenger side handle"}, {"index": 182, "image_id": 2382257, "entity": "car", "caption": "car rear passenger side handle", "question": ["is there car rear passenger side handle ?"], "prompt": "{} rear passenger side handle"}, {"index": 183, "image_id": 2382257, "entity": "car", "caption": "The car door handles", "question": ["is there the car door ?"], "prompt": "The {} door handles"}, {"index": 184, "image_id": 2381937, "entity": "car", "caption": "the driver of the toy car is piggy", "question": ["is there the driver ?", "is there the toy car ?", "is there piggy ?"], "prompt": "the driver of the toy {} is piggy"}, {"index": 185, "image_id": 2381832, "entity": "car", "caption": "Jeep parked next to car", "question": ["is there jeep ?", "is there car ?"], "prompt": "Jeep parked next to {}"}, {"index": 186, "image_id": 2381810, "entity": "car", "caption": "Person is driving a car.", "question": ["is there person ?", "is there a car ?"], "prompt": "Person is driving a {}."}, {"index": 187, "image_id": 2381447, "entity": "car", "caption": "the tag on the car has letters and numbers on it", "question": ["is there the tag ?", "is there the car ?", "are there letters ?", "are there numbers ?"], "prompt": "the tag on the {} has letters and numbers on it"}, {"index": 188, "image_id": 2381447, "entity": "car", "caption": "the car is a CX-7", "question": ["is there the car ?", "is there a cx-7 ?"], "prompt": "the {} is a CX-7"}, {"index": 189, "image_id": 2381447, "entity": "car", "caption": "Cat standing near a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat standing near a {}"}, {"index": 190, "image_id": 2381315, "entity": "car", "caption": "back end of a woman's car is open", "question": ["is there back end ?", "is there a woman's car ?"], "prompt": "back end of a woman's {} is open"}, {"index": 191, "image_id": 2381315, "entity": "car", "caption": "The woman is standing behind a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "The woman is standing behind a {}"}, {"index": 192, "image_id": 2381118, "entity": "car", "caption": "car has a sticker on the windshield ", "question": ["is there car ?", "is there a sticker ?", "is there the windshield ?"], "prompt": "{} has a sticker on the windshield "}, {"index": 193, "image_id": 2381101, "entity": "car", "caption": "back window of car with sunshine coming through", "question": ["is there back window ?", "is there car ?", "is there sunshine ?"], "prompt": "back window of {} with sunshine coming through"}, {"index": 194, "image_id": 2381051, "entity": "car", "caption": "car top tie down rack", "question": ["is there car top tie ?"], "prompt": "{} top tie down rack"}, {"index": 195, "image_id": 2380669, "entity": "car", "caption": "a car headlight ", "question": ["is there a car headlight ?"], "prompt": "a {} headlight "}, {"index": 196, "image_id": 2380293, "entity": "car", "caption": "speedometer showing the car is going 0 MPH", "question": ["is there speedometer ?", "is there the car ?"], "prompt": "speedometer showing the {} is going 0 MPH"}, {"index": 197, "image_id": 2380171, "entity": "car", "caption": "black door handle on car", "question": ["is there black door ?", "is there car ?"], "prompt": "black door handle on {}"}, {"index": 198, "image_id": 2379398, "entity": "car", "caption": "The lamb is next to the car", "question": ["is there the car ?"], "prompt": "The lamb is next to the {}"}, {"index": 199, "image_id": 2379398, "entity": "car", "caption": "The car is on top of gravel", "question": ["is there the car ?", "is there top ?", "is there gravel ?"], "prompt": "The {} is on top of gravel"}, {"index": 200, "image_id": 2379270, "entity": "car", "caption": "the people are in the car", "question": ["are there the people ?", "is there the car ?"], "prompt": "the people are in the {}"}, {"index": 201, "image_id": 2378437, "entity": "car", "caption": "window of car is semi-open", "question": ["is there window ?", "is there car ?"], "prompt": "window of {} is semi-open"}, {"index": 202, "image_id": 2377492, "entity": "car", "caption": "He is next to the car.", "question": ["is there the car ?"], "prompt": "He is next to the {}."}, {"index": 203, "image_id": 2377281, "entity": "car", "caption": "headlights of car are white", "question": ["are there headlights ?", "is there car ?"], "prompt": "headlights of {} are white"}, {"index": 204, "image_id": 2377134, "entity": "car", "caption": "Leather suitcase is strapped to the trunk of the car", "question": ["is there leather suitcase ?", "is there the trunk ?", "is there the car ?"], "prompt": "Leather suitcase is strapped to the trunk of the {}"}, {"index": 205, "image_id": 2377065, "entity": "car", "caption": "The cat is laying on a car.", "question": ["is there the cat ?", "is there a car ?"], "prompt": "The cat is laying on a {}."}, {"index": 206, "image_id": 2376812, "entity": "car", "caption": "man standing in front of a parked car", "question": ["is there man ?", "is there front ?", "is there a parked car ?"], "prompt": "man standing in front of a parked {}"}, {"index": 207, "image_id": 2376666, "entity": "car", "caption": "Two cars driving down the road.", "question": ["are there two cars ?", "is there the road ?"], "prompt": "Two {}s driving down the road."}, {"index": 208, "image_id": 2376189, "entity": "car", "caption": "The baby is in the car.", "question": ["is there the baby ?", "is there the car ?"], "prompt": "The baby is in the {}."}, {"index": 209, "image_id": 2374963, "entity": "car", "caption": "man standing next to car", "question": ["is there man ?", "is there car ?"], "prompt": "man standing next to {}"}, {"index": 210, "image_id": 2374891, "entity": "car", "caption": "A dog popping outa a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog popping outa a {}"}, {"index": 211, "image_id": 2374500, "entity": "car", "caption": "A cat is laying on a car", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is laying on a {}"}, {"index": 212, "image_id": 2374500, "entity": "car", "caption": "The cat is on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "The cat is on top of a {}"}, {"index": 213, "image_id": 2374500, "entity": "car", "caption": "The cat is on a white car", "question": ["is there the cat ?", "is there a white car ?"], "prompt": "The cat is on a white {}"}, {"index": 214, "image_id": 2374500, "entity": "car", "caption": "the tabby cat is laying on the car", "question": ["is there the tabby cat ?", "is there the car ?"], "prompt": "the tabby cat is laying on the {}"}, {"index": 215, "image_id": 2374203, "entity": "car", "caption": "The blue car has an open window", "question": ["is there the blue car ?", "is there an open window ?"], "prompt": "The blue {} has an open window"}, {"index": 216, "image_id": 2374203, "entity": "car", "caption": "A man is sitting in the blue car", "question": ["is there a man ?", "is there the blue car ?"], "prompt": "A man is sitting in the blue {}"}, {"index": 217, "image_id": 2374203, "entity": "car", "caption": "man driving a blue car", "question": ["is there man ?", "is there a blue car ?"], "prompt": "man driving a blue {}"}, {"index": 218, "image_id": 2374072, "entity": "car", "caption": "Gas pump behind car.", "question": ["is there gas pump ?", "is there car ?"], "prompt": "Gas pump behind {}."}, {"index": 219, "image_id": 2372618, "entity": "car", "caption": "Dog is inside the car.", "question": ["is there dog ?", "is there the car ?"], "prompt": "Dog is inside the {}."}, {"index": 220, "image_id": 2372618, "entity": "car", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog is riding in a {}"}, {"index": 221, "image_id": 2372618, "entity": "car", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A dog is in its master's {}"}, {"index": 222, "image_id": 2372618, "entity": "car", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog likes riding in a {}"}, {"index": 223, "image_id": 2372587, "entity": "car", "caption": "Classic car headlight", "question": ["is there classic car headlight ?"], "prompt": "Classic {} headlight"}, {"index": 224, "image_id": 2372587, "entity": "car", "caption": "Two surfboards attach to classic car roof", "question": ["are there two surfboards ?", "is there classic car roof ?"], "prompt": "Two surfboards attach to classic {} roof"}, {"index": 225, "image_id": 2372550, "entity": "car", "caption": "Mud flaps on a blue car", "question": ["are there mud flaps ?", "is there a blue car ?"], "prompt": "Mud flaps on a blue {}"}, {"index": 226, "image_id": 2372422, "entity": "car", "caption": "A back car door handle", "question": ["is there a back car door ?"], "prompt": "A back {} door handle"}, {"index": 227, "image_id": 2371952, "entity": "car", "caption": "seat belt hanging inside a car", "question": ["is there seat belt ?", "is there a car ?"], "prompt": "seat belt hanging inside a {}"}, {"index": 228, "image_id": 2371950, "entity": "car", "caption": "the cat is in a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is in a {}"}, {"index": 229, "image_id": 2371208, "entity": "car", "caption": "a chrome door handle on a car", "question": ["is there a chrome door ?", "is there a car ?"], "prompt": "a chrome door handle on a {}"}, {"index": 230, "image_id": 2371208, "entity": "car", "caption": "Silver door handle on green car", "question": ["is there silver door ?", "is there green car ?"], "prompt": "Silver door handle on green {}"}, {"index": 231, "image_id": 2370927, "entity": "car", "caption": "the elephant is close to the car ", "question": ["is there the elephant ?", "is there the car ?"], "prompt": "the elephant is close to the {} "}, {"index": 232, "image_id": 2370584, "entity": "car", "caption": "hood of the car is up", "question": ["is there hood ?", "is there the car ?"], "prompt": "hood of the {} is up"}, {"index": 233, "image_id": 2370584, "entity": "car", "caption": "several people standing away from the cars", "question": ["are there several people ?", "are there the cars ?"], "prompt": "several people standing away from the {}s"}, {"index": 234, "image_id": 2370584, "entity": "car", "caption": "trees located behind place where car show is", "question": ["are there trees ?", "is there place ?", "is there car show ?"], "prompt": "trees located behind place where {} show is"}, {"index": 235, "image_id": 2370246, "entity": "car", "caption": "the cat is lying on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is lying on the {}"}, {"index": 236, "image_id": 2369015, "entity": "car", "caption": "Surfboard is on top of car", "question": ["is there surfboard ?", "is there top ?", "is there car ?"], "prompt": "Surfboard is on top of {}"}, {"index": 237, "image_id": 2368457, "entity": "car", "caption": "baby looking out the window of the car", "question": ["is there baby ?", "is there the window ?", "is there the car ?"], "prompt": "baby looking out the window of the {}"}, {"index": 238, "image_id": 2368457, "entity": "car", "caption": "old style car driving down the road", "question": ["is there old style car ?", "is there the road ?"], "prompt": "old style {} driving down the road"}, {"index": 239, "image_id": 2368457, "entity": "car", "caption": "advertisement is on the door of the car", "question": ["is there advertisement ?", "is there the door ?", "is there the car ?"], "prompt": "advertisement is on the door of the {}"}, {"index": 240, "image_id": 2368457, "entity": "car", "caption": "a person is driving the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "a person is driving the {}"}, {"index": 241, "image_id": 2368457, "entity": "car", "caption": "a rack with straps is on the car", "question": ["is there a rack ?", "are there straps ?", "is there the car ?"], "prompt": "a rack with straps is on the {}"}, {"index": 242, "image_id": 2367648, "entity": "car", "caption": "A car is at an auto show", "question": ["is there a car ?", "is there an auto show ?"], "prompt": "A {} is at an auto show"}, {"index": 243, "image_id": 2367406, "entity": "car", "caption": "The curb is next to the cars.", "question": ["is there the curb ?", "are there the cars ?"], "prompt": "The curb is next to the {}s."}, {"index": 244, "image_id": 2367276, "entity": "car", "caption": "the car handle on the passenger door", "question": ["is there the car handle ?", "is there the passenger door ?"], "prompt": "the {} handle on the passenger door"}, {"index": 245, "image_id": 2367258, "entity": "car", "caption": "giraffe peeking in the car", "question": ["is there the car ?"], "prompt": "giraffe peeking in the {}"}, {"index": 246, "image_id": 2367258, "entity": "car", "caption": "the scene is inside the car ", "question": ["is there the scene ?", "is there the car ?"], "prompt": "the scene is inside the {} "}, {"index": 247, "image_id": 2367258, "entity": "car", "caption": "cars sunroof protective seal", "question": ["are there cars ?", "is there protective seal ?"], "prompt": "{}s sunroof protective seal"}, {"index": 248, "image_id": 2367033, "entity": "car", "caption": "the silver car door handle", "question": ["is there the silver car door ?"], "prompt": "the silver {} door handle"}, {"index": 249, "image_id": 2365787, "entity": "car", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th edog is in the {} "}, {"index": 250, "image_id": 2365750, "entity": "car", "caption": "This is a car mirror", "question": ["is there a car mirror ?"], "prompt": "This is a {} mirror"}, {"index": 251, "image_id": 2365750, "entity": "car", "caption": "This is a car window", "question": ["is there a car window ?"], "prompt": "This is a {} window"}, {"index": 252, "image_id": 2365458, "entity": "car", "caption": "one headlight on front of car", "question": ["is there one headlight ?", "is there front ?", "is there car ?"], "prompt": "one headlight on front of {}"}, {"index": 253, "image_id": 2364504, "entity": "car", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One dog is sitting in the {}."}, {"index": 254, "image_id": 2364504, "entity": "car", "caption": "Buildings are outside the car.", "question": ["are there buildings ?", "is there the car ?"], "prompt": "Buildings are outside the {}."}, {"index": 255, "image_id": 2364109, "entity": "car", "caption": "front dashboard of car where a rider took the photo", "question": ["is there front dashboard ?", "is there car ?", "is there a rider ?", "is there the photo ?"], "prompt": "front dashboard of {} where a rider took the photo"}, {"index": 256, "image_id": 2363425, "entity": "car", "caption": "the door handle on a car", "question": ["is there the door ?", "is there a car ?"], "prompt": "the door handle on a {}"}, {"index": 257, "image_id": 2363424, "entity": "car", "caption": "several people standing behind car", "question": ["are there several people ?", "is there car ?"], "prompt": "several people standing behind {}"}, {"index": 258, "image_id": 2363415, "entity": "car", "caption": "black car door handle on a white car", "question": ["is there black car door ?", "is there a white car ?"], "prompt": "black {} door handle on a white {}"}, {"index": 259, "image_id": 2363359, "entity": "car", "caption": "the writing on the car appears to be chinese", "question": ["is there the writing ?", "is there the car ?"], "prompt": "the writing on the {} appears to be chinese"}, {"index": 260, "image_id": 2363195, "entity": "car", "caption": "Ontario plates are on the car", "question": ["are there ontario plates ?", "is there the car ?"], "prompt": "Ontario plates are on the {}"}, {"index": 261, "image_id": 2363195, "entity": "car", "caption": "The cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}"}, {"index": 262, "image_id": 2362213, "entity": "car", "caption": "feline resting in car", "question": ["is there car ?"], "prompt": "feline resting in {}"}, {"index": 263, "image_id": 2362071, "entity": "car", "caption": "it is the windshield of the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "it is the windshield of the {}"}, {"index": 264, "image_id": 2362050, "entity": "car", "caption": "A Mercedes emblem is on the car.", "question": ["are there a mercedes emblem ?", "is there the car ?"], "prompt": "A Mercedes emblem is on the {}."}, {"index": 265, "image_id": 2361191, "entity": "car", "caption": "a red bird is on the car's mirror", "question": ["is there a red bird ?", "is there the car's mirror ?"], "prompt": "a red bird is on the {}'s mirror"}, {"index": 266, "image_id": 2360825, "entity": "car", "caption": "A car door is open.", "question": ["is there a car door ?"], "prompt": "A {} door is open."}, {"index": 267, "image_id": 2360825, "entity": "car", "caption": "A person is sitting in back of a car.", "question": ["is there a person ?", "is there a car ?"], "prompt": "A person is sitting in back of a {}."}, {"index": 268, "image_id": 2360521, "entity": "car", "caption": "this car has it's tail lights on", "question": ["is there this car ?", "are there it's tail lights ?"], "prompt": "this {} has it's tail lights on"}, {"index": 269, "image_id": 2360370, "entity": "car", "caption": "the man is standing by the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "the man is standing by the {}"}, {"index": 270, "image_id": 2360370, "entity": "car", "caption": "the bananas are in the car", "question": ["are there the bananas ?", "is there the car ?"], "prompt": "the bananas are in the {}"}, {"index": 271, "image_id": 2360146, "entity": "car", "caption": "Teddy bears in the car", "question": ["is there the car ?"], "prompt": "Teddy bears in the {}"}, {"index": 272, "image_id": 2359127, "entity": "car", "caption": "numbers on car are 2 and 08", "question": ["are there numbers ?", "is there car ?"], "prompt": "numbers on {} are 2 and 08"}, {"index": 273, "image_id": 2358763, "entity": "car", "caption": "This is a car hood", "question": ["is there a car hood ?"], "prompt": "This is a {} hood"}, {"index": 274, "image_id": 2358763, "entity": "car", "caption": "This is a car door", "question": ["is there a car door ?"], "prompt": "This is a {} door"}, {"index": 275, "image_id": 2358763, "entity": "car", "caption": "Water is on the car", "question": ["is there water ?", "is there the car ?"], "prompt": "Water is on the {}"}, {"index": 276, "image_id": 2358763, "entity": "car", "caption": "The car is next to trees", "question": ["is there the car ?", "are there trees ?"], "prompt": "The {} is next to trees"}, {"index": 277, "image_id": 2358763, "entity": "car", "caption": "The car has a steering wheel", "question": ["is there the car ?", "is there a steering wheel ?"], "prompt": "The {} has a steering wheel"}, {"index": 278, "image_id": 2358763, "entity": "car", "caption": "A car's reflection is in the window", "question": ["is there a car's reflection ?", "is there the window ?"], "prompt": "A {}'s reflection is in the window"}, {"index": 279, "image_id": 2357815, "entity": "car", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white {} is behind the truck"}, {"index": 280, "image_id": 2357637, "entity": "car", "caption": "the cat is sitting on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "the cat is sitting on top of a {}"}, {"index": 281, "image_id": 2357540, "entity": "car", "caption": "car has yellow license plate", "question": ["is there car ?", "is there yellow license plate ?"], "prompt": "{} has yellow license plate"}, {"index": 282, "image_id": 2357435, "entity": "car", "caption": "Suit cases in car packed", "question": ["are there suit cases ?"], "prompt": "Suit cases in {} packed"}, {"index": 283, "image_id": 2357435, "entity": "car", "caption": "user car controls black switch", "question": ["is there user car ?", "is there black switch ?"], "prompt": "user {} controls black switch"}, {"index": 284, "image_id": 2357435, "entity": "car", "caption": "back door of car is open", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is open"}, {"index": 285, "image_id": 2357435, "entity": "car", "caption": "back door of car is up", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is up"}, {"index": 286, "image_id": 2357227, "entity": "car", "caption": "people stand by a car", "question": ["are there people ?", "is there a car ?"], "prompt": "people stand by a {}"}, {"index": 287, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the gray car.", "question": ["is there the left front headlight ?", "is there the gray car ?"], "prompt": "The left front headlight of the gray {}."}, {"index": 288, "image_id": 2356915, "entity": "car", "caption": "The right front headlight on the black car.", "question": ["is there the right front headlight ?", "is there the black car ?"], "prompt": "The right front headlight on the black {}."}, {"index": 289, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the black car.", "question": ["is there the left front headlight ?", "is there the black car ?"], "prompt": "The left front headlight of the black {}."}, {"index": 290, "image_id": 2356554, "entity": "car", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "dog is sitting in side {}"}, {"index": 291, "image_id": 2355930, "entity": "car", "caption": "the cat is on top of the car", "question": ["is there the cat ?", "is there top ?", "is there the car ?"], "prompt": "the cat is on top of the {}"}, {"index": 292, "image_id": 2355930, "entity": "car", "caption": "the car has a license plate", "question": ["is there the car ?", "is there a license plate ?"], "prompt": "the {} has a license plate"}, {"index": 293, "image_id": 2355930, "entity": "car", "caption": "the wood is beside the car", "question": ["is there the wood ?", "is there the car ?"], "prompt": "the wood is beside the {}"}, {"index": 294, "image_id": 2355930, "entity": "car", "caption": "the car has seats", "question": ["is there the car ?", "are there seats ?"], "prompt": "the {} has seats"}, {"index": 295, "image_id": 2355512, "entity": "car", "caption": "the cat is under the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is under the {}"}, {"index": 296, "image_id": 2354802, "entity": "car", "caption": "side of the car is gray", "question": ["is there side ?", "is there the car ?"], "prompt": "side of the {} is gray"}, {"index": 297, "image_id": 2354802, "entity": "car", "caption": "car has advertisements all over paint job", "question": ["is there car ?", "are there advertisements ?", "is there paint job ?"], "prompt": "{} has advertisements all over paint job"}, {"index": 298, "image_id": 2354519, "entity": "car", "caption": "the shoes next to the car", "question": ["are there the shoes ?", "is there the car ?"], "prompt": "the shoes next to the {}"}, {"index": 299, "image_id": 2353437, "entity": "car", "caption": "a cat is on the car hood", "question": ["is there a cat ?", "is there the car hood ?"], "prompt": "a cat is on the {} hood"}, {"index": 300, "image_id": 2353208, "entity": "car", "caption": "the cat is sitting on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is sitting on the {}"}, {"index": 301, "image_id": 2353208, "entity": "car", "caption": "the car has windshield wipers", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "the {} has windshield wipers"}, {"index": 302, "image_id": 2353208, "entity": "car", "caption": "A cat is sitting on a car. ", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is sitting on a {}. "}, {"index": 303, "image_id": 2353208, "entity": "car", "caption": "A car has black windshield wipers. ", "question": ["is there a car ?", "are there black windshield wipers ?"], "prompt": "A {} has black windshield wipers. "}, {"index": 304, "image_id": 2353208, "entity": "car", "caption": "A car is under a cat. ", "question": ["is there a car ?", "is there a cat ?"], "prompt": "A {} is under a cat. "}, {"index": 305, "image_id": 2353125, "entity": "car", "caption": "a bicycle is on the car roof", "question": ["is there a bicycle ?", "is there the car roof ?"], "prompt": "a bicycle is on the {} roof"}, {"index": 306, "image_id": 2353125, "entity": "car", "caption": "the car has a carrier", "question": ["is there the car ?", "is there a carrier ?"], "prompt": "the {} has a {}rier"}, {"index": 307, "image_id": 2353125, "entity": "car", "caption": "Door handle on the car.", "question": ["is there door ?", "is there the car ?"], "prompt": "Door handle on the {}."}, {"index": 308, "image_id": 2352313, "entity": "car", "caption": "car door handle", "question": ["is there car door ?"], "prompt": "{} door handle"}, {"index": 309, "image_id": 2352313, "entity": "car", "caption": "door handle on a black car", "question": ["is there door ?", "is there a black car ?"], "prompt": "door handle on a black {}"}, {"index": 310, "image_id": 2352195, "entity": "car", "caption": "Blue and white bus parked next to the red car.", "question": ["is there blue and white bus ?", "is there the red car ?"], "prompt": "Blue and white bus parked next to the red {}."}, {"index": 311, "image_id": 2351364, "entity": "car", "caption": "She is next to the car.", "question": ["is there the car ?"], "prompt": "She is next to the {}."}, {"index": 312, "image_id": 2350995, "entity": "car", "caption": "A dog and man are riding in a white car.", "question": ["is there a dog ?", "is there man ?", "is there a white car ?"], "prompt": "A dog and man are riding in a white {}."}, {"index": 313, "image_id": 2350974, "entity": "car", "caption": "boy reflected in the car's window", "question": ["is there boy ?", "is there the car's window ?"], "prompt": "boy reflected in the {}'s window"}, {"index": 314, "image_id": 2350933, "entity": "car", "caption": "A car is in the window's reflection", "question": ["is there a car ?", "is there the window's reflection ?"], "prompt": "A {} is in the window's reflection"}, {"index": 315, "image_id": 2350869, "entity": "car", "caption": "line of cars stopped at intersection", "question": ["is there line ?", "are there cars ?", "is there intersection ?"], "prompt": "line of {}s stopped at intersection"}, {"index": 316, "image_id": 2350581, "entity": "car", "caption": "rear left tire on car", "question": ["is there rear left tire ?", "is there car ?"], "prompt": "rear left tire on {}"}, {"index": 317, "image_id": 2350581, "entity": "car", "caption": "front left tire on car", "question": ["is there front ?", "is there tire ?", "is there car ?"], "prompt": "front left tire on {}"}, {"index": 318, "image_id": 2350002, "entity": "car", "caption": "A car is on the road", "question": ["is there a car ?", "is there the road ?"], "prompt": "A {} is on the road"}, {"index": 319, "image_id": 2350002, "entity": "car", "caption": "A dog is sitting inside the car", "question": ["is there a dog ?", "is there the car ?"], "prompt": "A dog is sitting inside the {}"}, {"index": 320, "image_id": 2349972, "entity": "car", "caption": "a car having bags", "question": ["is there a car ?", "are there bags ?"], "prompt": "a {} having bags"}, {"index": 321, "image_id": 2349597, "entity": "car", "caption": "a car is by the dog", "question": ["is there a car ?", "is there the dog ?"], "prompt": "a {} is by the dog"}, {"index": 322, "image_id": 2348921, "entity": "car", "caption": "the child is in a car", "question": ["is there the child ?", "is there a car ?"], "prompt": "the child is in a {}"}, {"index": 323, "image_id": 2348625, "entity": "car", "caption": "this car has its break lights on ", "question": ["is there this car ?", "are there its break lights ?"], "prompt": "this {} has its break lights on "}, {"index": 324, "image_id": 2348416, "entity": "car", "caption": "indicator lights on the rear of a car", "question": ["are there indicator lights ?", "is there the rear ?", "is there a car ?"], "prompt": "indicator lights on the rear of a {}"}, {"index": 325, "image_id": 2348408, "entity": "car", "caption": "the window is down on the car", "question": ["is there the window ?", "is there the car ?"], "prompt": "the window is down on the {}"}, {"index": 326, "image_id": 2347190, "entity": "car", "caption": "the car front is grey in color", "question": ["is there the car front ?", "is there color ?"], "prompt": "the {} front is grey in color"}, {"index": 327, "image_id": 2347190, "entity": "car", "caption": "the car windscreen are black in color", "question": ["is there the car windscreen ?", "is there color ?"], "prompt": "the {} windscreen are black in color"}, {"index": 328, "image_id": 2347179, "entity": "car", "caption": "shadow os the cat is on the car ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "shadow os the cat is on the {} "}, {"index": 329, "image_id": 2347179, "entity": "car", "caption": "cat sits on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat sits on {}"}, {"index": 330, "image_id": 2347027, "entity": "car", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {}"}, {"index": 331, "image_id": 2346677, "entity": "car", "caption": "Man pushing suitcases in car", "question": ["is there man ?", "are there suitcases ?", "is there car ?"], "prompt": "Man pushing suitcases in {}"}, {"index": 332, "image_id": 2346677, "entity": "car", "caption": "Woman sitting in front seat of car", "question": ["is there woman ?", "is there front seat ?", "is there car ?"], "prompt": "Woman sitting in front seat of {}"}, {"index": 333, "image_id": 2345608, "entity": "car", "caption": "motorcycle is next to car", "question": ["is there motorcycle ?"], "prompt": "motorcycle is next to {}"}, {"index": 334, "image_id": 2345314, "entity": "car", "caption": "car window is down", "question": ["is there car window ?"], "prompt": "{} window is down"}, {"index": 335, "image_id": 2345219, "entity": "car", "caption": "car has red tail lights", "question": ["is there car ?", "are there red tail lights ?"], "prompt": "{} has red tail lights"}, {"index": 336, "image_id": 2345219, "entity": "car", "caption": "car trunk is open", "question": ["is there car trunk ?"], "prompt": "{} trunk is open"}, {"index": 337, "image_id": 2344729, "entity": "car", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is in the {}"}, {"index": 338, "image_id": 2344729, "entity": "car", "caption": "this is in a car", "question": ["is there a car ?"], "prompt": "this is in a {}"}, {"index": 339, "image_id": 2344713, "entity": "car", "caption": "black cat shaped car decal ", "question": ["is there black cat shaped car decal ?"], "prompt": "black cat shaped {} decal "}, {"index": 340, "image_id": 2344274, "entity": "car", "caption": "the car has no numberplates ", "question": ["is there the car ?"], "prompt": "the {} has no numberplates "}, {"index": 341, "image_id": 2344274, "entity": "car", "caption": "Silver car stopped at a light", "question": ["is there silver car ?", "is there a light ?"], "prompt": "Silver {} stopped at a light"}, {"index": 342, "image_id": 2343856, "entity": "car", "caption": "the plane is on the car ", "question": ["is there the plane ?", "is there the car ?"], "prompt": "the plane is on the {} "}, {"index": 343, "image_id": 2343756, "entity": "car", "caption": "A car's driver side headlight", "question": ["is there a car's driver side headlight ?"], "prompt": "A {}'s driver side headlight"}, {"index": 344, "image_id": 2343756, "entity": "car", "caption": "car make logo on front of car", "question": ["is there car ?", "is there logo ?", "is there front ?", "is there car ?"], "prompt": "{} make logo on front of {}"}, {"index": 345, "image_id": 2343756, "entity": "car", "caption": "silver care parked with surfboard on roof", "question": ["is there silver care ?", "is there surfboard ?", "is there roof ?"], "prompt": "silver {}e parked with surfboard on roof"}, {"index": 346, "image_id": 2343756, "entity": "car", "caption": "Surfboard attached to car rack", "question": ["is there surfboard ?", "is there car rack ?"], "prompt": "Surfboard attached to {} rack"}, {"index": 347, "image_id": 2343665, "entity": "car", "caption": "Various cars occupy city street", "question": ["are there various cars ?", "is there city street ?"], "prompt": "Various {}s occupy city street"}, {"index": 348, "image_id": 2343324, "entity": "car", "caption": "A lady travels inside the car", "question": ["is there a lady ?", "is there the car ?"], "prompt": "A lady travels inside the {}"}, {"index": 349, "image_id": 2343324, "entity": "car", "caption": "Besides the car vehicles are on the road", "question": ["are there the car vehicles ?", "is there the road ?"], "prompt": "Besides the {} vehicles are on the road"}, {"index": 350, "image_id": 2343324, "entity": "car", "caption": "A lady is riding her car ", "question": ["is there a lady ?", "is there her car ?"], "prompt": "A lady is riding her {} "}, {"index": 351, "image_id": 2343321, "entity": "car", "caption": "the car has tires", "question": ["is there the car ?", "are there tires ?"], "prompt": "the {} has tires"}, {"index": 352, "image_id": 2343098, "entity": "car", "caption": "a sign is on the front of the car", "question": ["is there a sign ?", "is there the front ?", "is there the car ?"], "prompt": "a sign is on the front of the {}"}, {"index": 353, "image_id": 2343098, "entity": "car", "caption": "a tire is on the car", "question": ["is there a tire ?", "is there the car ?"], "prompt": "a tire is on the {}"}, {"index": 354, "image_id": 2343098, "entity": "car", "caption": "the car's taillights are off ", "question": ["are there the car's taillights ?"], "prompt": "the {}'s taillights are off "}, {"index": 355, "image_id": 2342975, "entity": "car", "caption": "A surfboard is on the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}."}, {"index": 356, "image_id": 2342809, "entity": "car", "caption": "the car is reflecting the seat", "question": ["is there the car ?", "is there the seat ?"], "prompt": "the {} is reflecting the seat"}, {"index": 357, "image_id": 2342672, "entity": "car", "caption": "person driving the car", "question": ["is there person ?", "is there the car ?"], "prompt": "person driving the {}"}, {"index": 358, "image_id": 2342493, "entity": "car", "caption": "the cars have lights on", "question": ["are there the cars ?", "are there lights ?"], "prompt": "the {}s have lights on"}, {"index": 359, "image_id": 2341390, "entity": "car", "caption": "a large black dog sits in the back of a car", "question": ["is there a large black dog ?", "is there the back ?", "is there a car ?"], "prompt": "a large black dog sits in the back of a {}"}, {"index": 360, "image_id": 2341390, "entity": "car", "caption": "The dog is sitting in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is sitting in the {}."}, {"index": 361, "image_id": 2341390, "entity": "car", "caption": "The car have scratches", "question": ["is there the car ?", "are there scratches ?"], "prompt": "The {} have scratches"}, {"index": 362, "image_id": 2341390, "entity": "car", "caption": "a _very_ serious black dog sits in a scraped silver car", "question": ["is there a _very_ serious black dog ?", "is there a scraped silver car ?"], "prompt": "a _very_ serious black dog sits in a scraped silver {}"}, {"index": 363, "image_id": 2341390, "entity": "car", "caption": "car looks spraypainted silver, has a minor mess' worth of scrapes & scratches", "question": ["is there car ?", "is there spraypainted silver ?", "is there a minor mess' worth ?", "are there scrapes ?", "are there scratches ?"], "prompt": "{} looks spraypainted silver, has a minor mess' worth of scrapes & scratches"}, {"index": 364, "image_id": 2341302, "entity": "car", "caption": "woman is looking at the car", "question": ["is there woman ?", "is there the car ?"], "prompt": "woman is looking at the {}"}, {"index": 365, "image_id": 2341044, "entity": "car", "caption": "front left window of a black car", "question": ["is there front left window ?", "is there a black car ?"], "prompt": "front left window of a black {}"}, {"index": 366, "image_id": 2340693, "entity": "car", "caption": "cats are under car", "question": ["are there cats ?", "is there car ?"], "prompt": "cats are under {}"}, {"index": 367, "image_id": 2339803, "entity": "car", "caption": "The window is down in the car.", "question": ["is there the window ?", "is there the car ?"], "prompt": "The window is down in the {}."}, {"index": 368, "image_id": 2338847, "entity": "car", "caption": "Roof of car is black.", "question": ["is there roof ?", "is there car ?"], "prompt": "Roof of {} is black."}, {"index": 369, "image_id": 2338847, "entity": "car", "caption": "the car has wooden panels ", "question": ["is there the car ?", "are there wooden panels ?"], "prompt": "the {} has wooden panels "}, {"index": 370, "image_id": 2338254, "entity": "car", "caption": "surfbords are on the car", "question": ["are there surfbords ?", "is there the car ?"], "prompt": "surfbords are on the {}"}, {"index": 371, "image_id": 2338234, "entity": "car", "caption": "the model of car is ford ", "question": ["is there the model ?", "is there car ?"], "prompt": "the model of {} is ford "}, {"index": 372, "image_id": 2337797, "entity": "car", "caption": "the car has a red light", "question": ["is there the car ?", "is there a red light ?"], "prompt": "the {} has a red light"}, {"index": 373, "image_id": 2337385, "entity": "car", "caption": "window is apart of the car", "question": ["is there window ?", "is there the car ?"], "prompt": "window is apart of the {}"}, {"index": 374, "image_id": 2337324, "entity": "car", "caption": "a doggy has his head out the car window", "question": ["is there a doggy ?", "is there his head ?", "is there the car window ?"], "prompt": "a doggy has his head out the {} window"}, {"index": 375, "image_id": 2336747, "entity": "car", "caption": "black door handle on sliver car door", "question": ["is there black door ?", "is there sliver car door ?"], "prompt": "black door handle on sliver {} door"}, {"index": 376, "image_id": 2336235, "entity": "car", "caption": "the car the cat is lying on ", "question": ["is there the car ?", "is there the cat ?"], "prompt": "the {} the cat is lying on "}, {"index": 377, "image_id": 2336067, "entity": "car", "caption": "Cat is inside a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is inside a {}"}, {"index": 378, "image_id": 2336067, "entity": "car", "caption": "Cat is in the car's backseats", "question": ["is there cat ?", "are there the car's backseats ?"], "prompt": "Cat is in the {}'s backseats"}, {"index": 379, "image_id": 2336016, "entity": "car", "caption": "the man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "the man is in a {}"}, {"index": 380, "image_id": 2336016, "entity": "car", "caption": "Black car parked at the curb.", "question": ["is there black car ?", "is there the curb ?"], "prompt": "Black {} parked at the curb."}, {"index": 381, "image_id": 2335764, "entity": "car", "caption": "This car has a clear windshield", "question": ["is there this car ?", "is there a clear windshield ?"], "prompt": "This {} has a clear windshield"}, {"index": 382, "image_id": 2335683, "entity": "car", "caption": "it is car in the street ", "question": ["is there car ?", "is there the street ?"], "prompt": "it is {} in the street "}, {"index": 383, "image_id": 2335683, "entity": "car", "caption": "a white car stopped in street", "question": ["is there a white car ?", "is there street ?"], "prompt": "a white {} stopped in street"}, {"index": 384, "image_id": 2335292, "entity": "car", "caption": "The car is in front of the motorcycle", "question": ["is there the car ?", "is there front ?", "is there the motorcycle ?"], "prompt": "The {} is in front of the motorcycle"}, {"index": 385, "image_id": 2335292, "entity": "car", "caption": "The white car has red tail lights", "question": ["is there the white car ?", "are there red tail lights ?"], "prompt": "The white {} has red tail lights"}, {"index": 386, "image_id": 2335189, "entity": "car", "caption": "A old man standing behind a car.", "question": ["is there a old man ?", "is there a car ?"], "prompt": "A old man standing behind a {}."}, {"index": 387, "image_id": 2334957, "entity": "car", "caption": "right front headlight on car", "question": ["is there right front headlight ?", "is there car ?"], "prompt": "right front headlight on {}"}, {"index": 388, "image_id": 2334957, "entity": "car", "caption": "blue rusted door on car", "question": ["is there blue rusted door ?", "is there car ?"], "prompt": "blue rusted door on {}"}, {"index": 389, "image_id": 2333614, "entity": "car", "caption": "a rear view mirror is on the car", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "a rear view mirror is on the {}"}, {"index": 390, "image_id": 2333614, "entity": "car", "caption": "the car is on the street", "question": ["is there the car ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 391, "image_id": 2333466, "entity": "car", "caption": "license plate is on car", "question": ["is there license plate ?", "is there car ?"], "prompt": "license plate is on {}"}, {"index": 392, "image_id": 2332912, "entity": "car", "caption": "a white teddy bear sitting on a car", "question": ["is there a car ?"], "prompt": "a white teddy bear sitting on a {}"}, {"index": 393, "image_id": 2332110, "entity": "car", "caption": "wheel belongs to car", "question": ["is there wheel ?", "is there car ?"], "prompt": "wheel belongs to {}"}, {"index": 394, "image_id": 2332110, "entity": "car", "caption": "bumper belongs to car", "question": ["is there bumper ?", "is there car ?"], "prompt": "bumper belongs to {}"}, {"index": 395, "image_id": 2332110, "entity": "car", "caption": "headlight belongs to car", "question": ["is there headlight ?", "is there car ?"], "prompt": "headlight belongs to {}"}, {"index": 396, "image_id": 2332110, "entity": "car", "caption": "window belongs to car", "question": ["is there window ?", "is there car ?"], "prompt": "window belongs to {}"}, {"index": 397, "image_id": 2332110, "entity": "car", "caption": "car travels down street", "question": ["is there car ?"], "prompt": "{} travels down street"}, {"index": 398, "image_id": 2331977, "entity": "car", "caption": "he is sitting in a car ", "question": ["is there a car ?"], "prompt": "he is sitting in a {} "}, {"index": 399, "image_id": 2331977, "entity": "car", "caption": "the person is inside the car ", "question": ["is there the person ?", "is there the car ?"], "prompt": "the person is inside the {} "}, {"index": 400, "image_id": 2330180, "entity": "car", "caption": "cat sits on sidewalk looking at car", "question": ["is there cat ?", "is there sidewalk ?", "is there car ?"], "prompt": "cat sits on sidewalk looking at {}"}, {"index": 401, "image_id": 2330066, "entity": "car", "caption": "a red car is beside the blue car", "question": ["is there a red car ?", "is there the blue car ?"], "prompt": "a red {} is beside the blue {}"}, {"index": 402, "image_id": 2330005, "entity": "car", "caption": "Car painted red white and blue with elephant cartoon on hood", "question": ["is there car ?", "is there elephant cartoon ?", "is there hood ?"], "prompt": "Car painted red white and blue with elephant {}toon on hood"}, {"index": 403, "image_id": 2330005, "entity": "car", "caption": "man is driving the car", "question": ["is there man ?", "is there the car ?"], "prompt": "man is driving the {}"}, {"index": 404, "image_id": 2329079, "entity": "car", "caption": "car has a wheel on it", "question": ["is there car ?", "is there a wheel ?"], "prompt": "{} has a wheel on it"}, {"index": 405, "image_id": 2329079, "entity": "car", "caption": "a door handle on the car", "question": ["is there a door ?", "is there the car ?"], "prompt": "a door handle on the {}"}, {"index": 406, "image_id": 2328443, "entity": "car", "caption": "A car that is driving in the street", "question": ["is there a car ?", "is there the street ?"], "prompt": "A {} that is driving in the street"}, {"index": 407, "image_id": 2328324, "entity": "car", "caption": "the cat is on a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is on a {}"}, {"index": 408, "image_id": 2328094, "entity": "car", "caption": "the bear is in the grill of the car ", "question": ["is there the bear ?", "is there the grill ?", "is there the car ?"], "prompt": "the bear is in the grill of the {} "}, {"index": 409, "image_id": 2328094, "entity": "car", "caption": "it appears as if the car is eating the bear ", "question": ["is there the car ?", "is there the bear ?"], "prompt": "it appears as if the {} is eating the bear "}, {"index": 410, "image_id": 2327968, "entity": "car", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {} "}, {"index": 411, "image_id": 2327874, "entity": "car", "caption": "white surfboard leaned against car", "question": ["is there car ?"], "prompt": "white surfboard leaned against {}"}, {"index": 412, "image_id": 2327874, "entity": "car", "caption": "A surfboard is on the car. ", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}. "}, {"index": 413, "image_id": 2327874, "entity": "car", "caption": "Plants are next to the car. ", "question": ["are there plants ?", "is there the car ?"], "prompt": "Plants are next to the {}. "}, {"index": 414, "image_id": 2327874, "entity": "car", "caption": "A white surfboard is behind the car.", "question": ["is there a white surfboard ?", "is there the car ?"], "prompt": "A white surfboard is behind the {}."}, {"index": 415, "image_id": 2327688, "entity": "car", "caption": "door handle on the car", "question": ["is there door ?", "is there the car ?"], "prompt": "door handle on the {}"}, {"index": 416, "image_id": 2327454, "entity": "car", "caption": "Person driving a car", "question": ["is there person ?", "is there a car ?"], "prompt": "Person driving a {}"}, {"index": 417, "image_id": 2326951, "entity": "car", "caption": "poster is in the car", "question": ["is there poster ?", "is there the car ?"], "prompt": "poster is in the {}"}, {"index": 418, "image_id": 2326921, "entity": "car", "caption": "Volvo emblem on a car", "question": ["is there a car ?"], "prompt": "Volvo emblem on a {}"}, {"index": 419, "image_id": 2326884, "entity": "car", "caption": "this is a car windscreen", "question": ["is there a car windscreen ?"], "prompt": "this is a {} windscreen"}, {"index": 420, "image_id": 2326583, "entity": "car", "caption": "letter i on car", "question": ["is there letter ?", "is there car ?"], "prompt": "letter i on {}"}, {"index": 421, "image_id": 2325723, "entity": "car", "caption": "Cat is on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is on a {}"}, {"index": 422, "image_id": 2325460, "entity": "car", "caption": "Front end on a black car", "question": ["is there front end ?", "is there a black car ?"], "prompt": "Front end on a black {}"}, {"index": 423, "image_id": 2324926, "entity": "car", "caption": "the car has a face on it", "question": ["is there the car ?", "is there a face ?"], "prompt": "the {} has a face on it"}, {"index": 424, "image_id": 2323124, "entity": "car", "caption": "Cat is on the hood of car", "question": ["is there cat ?", "is there the hood ?", "is there car ?"], "prompt": "Cat is on the hood of {}"}, {"index": 425, "image_id": 2323124, "entity": "car", "caption": "Cat laying on the hood of the car", "question": ["is there cat ?", "is there the hood ?", "is there the car ?"], "prompt": "Cat laying on the hood of the {}"}, {"index": 426, "image_id": 2323124, "entity": "car", "caption": "Cat is laying on the hood of a car", "question": ["is there cat ?", "is there the hood ?", "is there a car ?"], "prompt": "Cat is laying on the hood of a {}"}, {"index": 427, "image_id": 2323088, "entity": "car", "caption": "The giraffes are walking around the cars", "question": ["are there the giraffes ?", "are there the cars ?"], "prompt": "The giraffes are walking around the {}s"}, {"index": 428, "image_id": 2322886, "entity": "car", "caption": "cars have rail on top of it ", "question": ["are there cars ?", "is there rail ?", "is there top ?"], "prompt": "{}s have rail on top of it "}, {"index": 429, "image_id": 2322886, "entity": "car", "caption": "cars have red light on back ", "question": ["are there cars ?", "is there red light ?"], "prompt": "{}s have red light on back "}, {"index": 430, "image_id": 2321836, "entity": "car", "caption": "Trunk of the car is open. ", "question": ["is there trunk ?", "is there the car ?"], "prompt": "Trunk of the {} is open. "}, {"index": 431, "image_id": 2321807, "entity": "car", "caption": "cat is meowing on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is meowing on {}"}, {"index": 432, "image_id": 2321807, "entity": "car", "caption": "Antenna is attache to the car", "question": ["is there antenna ?", "is there attache ?", "is there the car ?"], "prompt": "Antenna is attache to the {}"}, {"index": 433, "image_id": 2321807, "entity": "car", "caption": "Trees are in front of the car", "question": ["are there trees ?", "is there front ?", "is there the car ?"], "prompt": "Trees are in front of the {}"}, {"index": 434, "image_id": 2321807, "entity": "car", "caption": "Cat is sitting on the trunk of the car", "question": ["is there cat ?", "is there the trunk ?", "is there the car ?"], "prompt": "Cat is sitting on the trunk of the {}"}, {"index": 435, "image_id": 2321807, "entity": "car", "caption": "The cat is on the car. ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}. "}, {"index": 436, "image_id": 2320893, "entity": "car", "caption": "the car has a headlamp", "question": ["is there the car ?", "is there a headlamp ?"], "prompt": "the {} has a headlamp"}, {"index": 437, "image_id": 2320893, "entity": "car", "caption": "The left headlight on the car. ", "question": ["is there the left headlight ?", "is there the car ?"], "prompt": "The left headlight on the {}. "}, {"index": 438, "image_id": 2320741, "entity": "car", "caption": "car has black door", "question": ["is there car ?", "is there black door ?"], "prompt": "{} has black door"}, {"index": 439, "image_id": 2320741, "entity": "car", "caption": "car has black wheels", "question": ["is there car ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 440, "image_id": 2320741, "entity": "car", "caption": "The man is sitting in the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "The man is sitting in the {}"}, {"index": 441, "image_id": 2320741, "entity": "car", "caption": "The car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "The {} has a windshield"}, {"index": 442, "image_id": 2320741, "entity": "car", "caption": "man driving the black car", "question": ["is there man ?", "is there the black car ?"], "prompt": "man driving the black {}"}, {"index": 443, "image_id": 2320710, "entity": "car", "caption": "the car has a black tire", "question": ["is there the car ?", "is there a black tire ?"], "prompt": "the {} has a black tire"}, {"index": 444, "image_id": 2320662, "entity": "car", "caption": "man walking behind a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man walking behind a {}"}, {"index": 445, "image_id": 2320327, "entity": "car", "caption": "a round headlight on the car", "question": ["is there a round headlight ?", "is there the car ?"], "prompt": "a round headlight on the {}"}, {"index": 446, "image_id": 2319795, "entity": "car", "caption": "cat stands on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "cat stands on a {}"}, {"index": 447, "image_id": 2319480, "entity": "car", "caption": "Bird hanging from a rope in a car.", "question": ["is there bird ?", "is there a rope ?", "is there a car ?"], "prompt": "Bird hanging from a rope in a {}."}, {"index": 448, "image_id": 2319480, "entity": "car", "caption": "man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man driving a {}"}, {"index": 449, "image_id": 2319480, "entity": "car", "caption": "Man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "Man driving a {}"}, {"index": 450, "image_id": 2319164, "entity": "car", "caption": "white car rear with red stop lights", "question": ["is there white car rear ?", "are there red stop lights ?"], "prompt": "white {} rear with red stop lights"}, {"index": 451, "image_id": 2318890, "entity": "car", "caption": "the dog is on the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2318848, "entity": "car", "caption": "Black car parked next to the police vehicle", "question": ["is there black car ?", "is there the police vehicle ?"], "prompt": "Black {} parked next to the police vehicle"}, {"index": 453, "image_id": 2318441, "entity": "car", "caption": "the car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 454, "image_id": 2318441, "entity": "car", "caption": "A yellow car a dog is riding in", "question": ["is there a yellow car ?", "is there a dog ?"], "prompt": "A yellow {} a dog is riding in"}, {"index": 455, "image_id": 2318030, "entity": "car", "caption": "There is a red stripe that is on the car", "question": ["is there a red stripe ?", "is there the car ?"], "prompt": "There is a red stripe that is on the {}"}, {"index": 456, "image_id": 2318015, "entity": "car", "caption": "The man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is in a {}"}, {"index": 457, "image_id": 2317640, "entity": "car", "caption": "silver headlight on car", "question": ["is there silver headlight ?", "is there car ?"], "prompt": "silver headlight on {}"}, {"index": 458, "image_id": 2317640, "entity": "car", "caption": "company emblem on front of car", "question": ["is there company ?", "is there front ?", "is there car ?"], "prompt": "company emblem on front of {}"}, {"index": 459, "image_id": 2317566, "entity": "car", "caption": "a hose is on the roof of the car", "question": ["is there a hose ?", "is there the roof ?", "is there the car ?"], "prompt": "a hose is on the roof of the {}"}, {"index": 460, "image_id": 2317283, "entity": "car", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog is in a {}."}, {"index": 461, "image_id": 2317142, "entity": "car", "caption": "The car is on a rack.", "question": ["is there the car ?", "is there a rack ?"], "prompt": "The {} is on a rack."}, {"index": 462, "image_id": 2317029, "entity": "car", "caption": "console controls on a car", "question": ["is there console ?", "is there a car ?"], "prompt": "console controls on a {}"}, {"index": 463, "image_id": 2317029, "entity": "car", "caption": "front of car is blue", "question": ["is there front ?", "is there car ?"], "prompt": "front of {} is blue"}, {"index": 464, "image_id": 2317029, "entity": "car", "caption": "the teddy bear is in the car", "question": ["is there the teddy bear ?", "is there the car ?"], "prompt": "the teddy bear is in the {}"}, {"index": 465, "image_id": 2316404, "entity": "car", "caption": "This is a black car tire", "question": ["is there a black car tire ?"], "prompt": "This is a black {} tire"}, {"index": 466, "image_id": 2316376, "entity": "car", "caption": "yellow light is on the car", "question": ["is there yellow light ?", "is there the car ?"], "prompt": "yellow light is on the {}"}, {"index": 467, "image_id": 2316376, "entity": "car", "caption": "two men digging a car out of the mud", "question": ["are there two men ?", "is there a car ?", "is there the mud ?"], "prompt": "two men digging a {} out of the mud"}, {"index": 468, "image_id": 2316376, "entity": "car", "caption": "roof rack on a car", "question": ["is there roof rack ?", "is there a car ?"], "prompt": "roof rack on a {}"}, {"index": 469, "image_id": 2315981, "entity": "car", "caption": "Cay laying on a car ", "question": ["is there a car ?"], "prompt": "Cay laying on a {} "}, {"index": 470, "image_id": 2315981, "entity": "car", "caption": "Cat laying on car hood ", "question": ["is there cat ?", "is there car hood ?"], "prompt": "Cat laying on {} hood "}, {"index": 471, "image_id": 2315743, "entity": "car", "caption": "blue car behind moped", "question": ["is there blue car ?"], "prompt": "blue {} behind moped"}, {"index": 472, "image_id": 2315500, "entity": "car", "caption": "glass headlight on sports car", "question": ["is there glass headlight ?", "are there sports car ?"], "prompt": "glass headlight on sports {}"}, {"index": 473, "image_id": 2414288, "entity": "car", "caption": "a cat is laying on the hood of a car", "question": ["is there a cat ?", "is there the hood ?", "is there a car ?"], "prompt": "a cat is laying on the hood of a {}"}, {"index": 474, "image_id": 2414288, "entity": "car", "caption": "fuzzy cat is laying on the hood of a car", "question": ["is there fuzzy cat ?", "is there the hood ?", "is there a car ?"], "prompt": "fuzzy cat is laying on the hood of a {}"}, {"index": 475, "image_id": 2414288, "entity": "car", "caption": "cat is laying on a dark grey car", "question": ["is there cat ?", "is there a dark grey car ?"], "prompt": "cat is laying on a dark grey {}"}, {"index": 476, "image_id": 2414288, "entity": "car", "caption": "car has a small roof rack for luggage", "question": ["is there car ?", "is there a small roof rack ?", "is there luggage ?"], "prompt": "{} has a small roof rack for luggage"}, {"index": 477, "image_id": 2414273, "entity": "car", "caption": "cat is in the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is in the {}"}, {"index": 478, "image_id": 2414273, "entity": "car", "caption": "one cat is in the car", "question": ["is there one cat ?", "is there the car ?"], "prompt": "one cat is in the {}"}, {"index": 479, "image_id": 2413841, "entity": "car", "caption": "Diamond shaped light with numbers on the black car.", "question": ["is there light ?", "are there numbers ?", "is there the black car ?"], "prompt": "Diamond shaped light with numbers on the black {}."}, {"index": 480, "image_id": 2413841, "entity": "car", "caption": "Door handle on black car.", "question": ["is there door ?", "is there black car ?"], "prompt": "Door handle on black {}."}, {"index": 481, "image_id": 2413755, "entity": "car", "caption": "Trees growing behind car.", "question": ["are there trees ?", "is there car ?"], "prompt": "Trees growing behind {}."}, {"index": 482, "image_id": 2413755, "entity": "car", "caption": "The car has a red underglow", "question": ["is there the car ?", "is there a red underglow ?"], "prompt": "The {} has a red underglow"}, {"index": 483, "image_id": 2413755, "entity": "car", "caption": "a car is in the photo", "question": ["is there a car ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 484, "image_id": 2413755, "entity": "car", "caption": "a surfboard is on the car", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "a surfboard is on the {}"}, {"index": 485, "image_id": 2413755, "entity": "car", "caption": "the car is on the road", "question": ["is there the car ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 486, "image_id": 2413755, "entity": "car", "caption": "Red highlight lights accentuate the car", "question": ["are there red highlight lights ?", "is there the car ?"], "prompt": "Red highlight lights accentuate the {}"}, {"index": 487, "image_id": 2412424, "entity": "car", "caption": "the car windows are transparent", "question": ["are there the car windows ?"], "prompt": "the {} windows are transparent"}, {"index": 488, "image_id": 2412234, "entity": "car", "caption": "cat is under car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is under {}"}, {"index": 489, "image_id": 2412234, "entity": "car", "caption": "Cat is under the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "Cat is under the {}"}, {"index": 490, "image_id": 2411616, "entity": "car", "caption": "Surfboard tied to car", "question": ["is there surfboard ?", "is there car ?"], "prompt": "Surfboard tied to {}"}, {"index": 491, "image_id": 2411616, "entity": "car", "caption": "live christmas tree tied on car", "question": ["is there live christmas tree ?", "is there car ?"], "prompt": "live christmas tree tied on {}"}, {"index": 492, "image_id": 2411616, "entity": "car", "caption": "orange break light on black car ", "question": ["is there black car ?"], "prompt": "orange break light on black {} "}, {"index": 493, "image_id": 2411616, "entity": "car", "caption": "This car is hauling trees", "question": ["is there this car ?", "are there trees ?"], "prompt": "This {} is hauling trees"}, {"index": 494, "image_id": 2416074, "entity": "car", "caption": "The car has a red door.", "question": ["is there the car ?", "is there a red door ?"], "prompt": "The {} has a red door."}, {"index": 495, "image_id": 2416074, "entity": "car", "caption": "A surfboard is in the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is in the {}."}, {"index": 496, "image_id": 2417544, "entity": "car", "caption": "A car has dark rims.", "question": ["is there a car ?", "are there dark rims ?"], "prompt": "A {} has dark rims."}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n02951358.json b/data/imagenet/compositions/prompts/n02951358.json
new file mode 100644
index 0000000000000000000000000000000000000000..b3189e413eab4aea52dea9e68919006cd9ca9241
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n02951358.json
@@ -0,0 +1,6306 @@
+[
+ {
+ "index": 0,
+ "image_id": 815,
+ "entity": "boat",
+ "caption": "The boat has windows",
+ "question": [
+ "is there the boat ?",
+ "are there windows ?"
+ ],
+ "prompt": "The {} has windows"
+ },
+ {
+ "index": 1,
+ "image_id": 1883,
+ "entity": "boat",
+ "caption": "The boat has empty seats.",
+ "question": [
+ "is there the boat ?",
+ "are there empty seats ?"
+ ],
+ "prompt": "The {} has empty seats."
+ },
+ {
+ "index": 2,
+ "image_id": 1902,
+ "entity": "boat",
+ "caption": "woman with blue shirt standing on boat",
+ "question": [
+ "is there woman ?",
+ "is there blue shirt ?",
+ "is there boat ?"
+ ],
+ "prompt": "woman with blue shirt standing on {}"
+ },
+ {
+ "index": 3,
+ "image_id": 1904,
+ "entity": "boat",
+ "caption": "black letters and numbers painted on a boat",
+ "question": [
+ "are there black letters ?",
+ "are there numbers ?",
+ "is there a boat ?"
+ ],
+ "prompt": "black letters and numbers painted on a {}"
+ },
+ {
+ "index": 4,
+ "image_id": 2562,
+ "entity": "boat",
+ "caption": "white person is on a boat",
+ "question": [
+ "is there white person ?",
+ "is there a boat ?"
+ ],
+ "prompt": "white person is on a {}"
+ },
+ {
+ "index": 5,
+ "image_id": 2562,
+ "entity": "boat",
+ "caption": "Life preserver on the boat",
+ "question": [
+ "is there life preserver ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Life preserver on the {}"
+ },
+ {
+ "index": 6,
+ "image_id": 4245,
+ "entity": "boat",
+ "caption": "white boat parked in the dock ",
+ "question": [
+ "is there white boat ?",
+ "is there the dock ?"
+ ],
+ "prompt": "white {} parked in the dock "
+ },
+ {
+ "index": 7,
+ "image_id": 4245,
+ "entity": "boat",
+ "caption": "boat is tired to the pier",
+ "question": [
+ "is there boat ?",
+ "is there the pier ?"
+ ],
+ "prompt": "{} is tired to the pier"
+ },
+ {
+ "index": 8,
+ "image_id": 4990,
+ "entity": "boat",
+ "caption": "personal floating device on the sailboats transom",
+ "question": [
+ "is there personal floating device ?",
+ "are there the sailboats ?"
+ ],
+ "prompt": "personal floating device on the sail{}s transom"
+ },
+ {
+ "index": 9,
+ "image_id": 61552,
+ "entity": "boat",
+ "caption": "A man in a hat is on a small boat in the water",
+ "question": [
+ "is there a man ?",
+ "is there a hat ?",
+ "is there a small boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "A man in a hat is on a small {} in the water"
+ },
+ {
+ "index": 10,
+ "image_id": 61588,
+ "entity": "boat",
+ "caption": "blue letters painted on a boat",
+ "question": [
+ "are there blue letters ?",
+ "is there a boat ?"
+ ],
+ "prompt": "blue letters painted on a {}"
+ },
+ {
+ "index": 11,
+ "image_id": 285605,
+ "entity": "boat",
+ "caption": "bottom of boat is blue in color",
+ "question": [
+ "is there bottom ?",
+ "is there boat ?",
+ "is there color ?"
+ ],
+ "prompt": "bottom of {} is blue in color"
+ },
+ {
+ "index": 12,
+ "image_id": 498166,
+ "entity": "boat",
+ "caption": "People rowing a boat",
+ "question": [
+ "are there people ?",
+ "is there a boat ?"
+ ],
+ "prompt": "People rowing a {}"
+ },
+ {
+ "index": 13,
+ "image_id": 498166,
+ "entity": "boat",
+ "caption": "the boats have canopies",
+ "question": [
+ "are there the boats ?",
+ "are there canopies ?"
+ ],
+ "prompt": "the {}s have canopies"
+ },
+ {
+ "index": 14,
+ "image_id": 498267,
+ "entity": "boat",
+ "caption": "the white buoy hanging off the boat",
+ "question": [
+ "is there the white buoy ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the white buoy hanging off the {}"
+ },
+ {
+ "index": 15,
+ "image_id": 498267,
+ "entity": "boat",
+ "caption": "The boat is in the water.",
+ "question": [
+ "is there the boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is in the water."
+ },
+ {
+ "index": 16,
+ "image_id": 713061,
+ "entity": "boat",
+ "caption": "American flag flying on boat",
+ "question": [
+ "is there american flag ?",
+ "is there boat ?"
+ ],
+ "prompt": "American flag flying on {}"
+ },
+ {
+ "index": 17,
+ "image_id": 713156,
+ "entity": "boat",
+ "caption": "boat is next to boat in water",
+ "question": [
+ "is there boat ?",
+ "is there water ?"
+ ],
+ "prompt": "{} is next to {} in water"
+ },
+ {
+ "index": 18,
+ "image_id": 713162,
+ "entity": "boat",
+ "caption": "large boat docked by building",
+ "question": [
+ "is there large boat ?"
+ ],
+ "prompt": "large {} docked by building"
+ },
+ {
+ "index": 19,
+ "image_id": 713162,
+ "entity": "boat",
+ "caption": "the boat parked next to the red house",
+ "question": [
+ "is there the boat ?"
+ ],
+ "prompt": "the {} parked next to the red house"
+ },
+ {
+ "index": 20,
+ "image_id": 713470,
+ "entity": "boat",
+ "caption": "boat has wooden benched",
+ "question": [
+ "is there boat ?"
+ ],
+ "prompt": "{} has wooden benched"
+ },
+ {
+ "index": 21,
+ "image_id": 713832,
+ "entity": "boat",
+ "caption": "words are on the boat",
+ "question": [
+ "are there words ?",
+ "is there the boat ?"
+ ],
+ "prompt": "words are on the {}"
+ },
+ {
+ "index": 22,
+ "image_id": 713832,
+ "entity": "boat",
+ "caption": "boat has a pole",
+ "question": [
+ "is there boat ?",
+ "is there a pole ?"
+ ],
+ "prompt": "{} has a pole"
+ },
+ {
+ "index": 23,
+ "image_id": 713832,
+ "entity": "boat",
+ "caption": "boat has a window",
+ "question": [
+ "is there boat ?",
+ "is there a window ?"
+ ],
+ "prompt": "{} has a window"
+ },
+ {
+ "index": 24,
+ "image_id": 1159573,
+ "entity": "boat",
+ "caption": "blue and white boat sitting in body of water",
+ "question": [
+ "is there blue and white boat ?",
+ "is there body ?",
+ "is there water ?"
+ ],
+ "prompt": "blue and white {} sitting in body of water"
+ },
+ {
+ "index": 25,
+ "image_id": 1159823,
+ "entity": "boat",
+ "caption": "two boats side by side",
+ "question": [
+ "are there two boats ?",
+ "is there side ?"
+ ],
+ "prompt": "two {}s side by side"
+ },
+ {
+ "index": 26,
+ "image_id": 1159823,
+ "entity": "boat",
+ "caption": "\"RX60\" painted on boat with black paint",
+ "question": [
+ "is there boat ?",
+ "is there black paint ?"
+ ],
+ "prompt": "\"RX60\" painted on {} with black paint"
+ },
+ {
+ "index": 27,
+ "image_id": 1160209,
+ "entity": "boat",
+ "caption": "Long blue rope tied to boat.",
+ "question": [
+ "is there long blue rope ?",
+ "is there boat ?"
+ ],
+ "prompt": "Long blue rope tied to {}."
+ },
+ {
+ "index": 28,
+ "image_id": 1160209,
+ "entity": "boat",
+ "caption": "brown rope tied on the boat",
+ "question": [
+ "is there brown rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "brown rope tied on the {}"
+ },
+ {
+ "index": 29,
+ "image_id": 1592080,
+ "entity": "boat",
+ "caption": "the bottom of the boat is red",
+ "question": [
+ "is there the bottom ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the bottom of the {} is red"
+ },
+ {
+ "index": 30,
+ "image_id": 1592080,
+ "entity": "boat",
+ "caption": "the tarp on the boat is blue",
+ "question": [
+ "is there the tarp ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the tarp on the {} is blue"
+ },
+ {
+ "index": 31,
+ "image_id": 1592464,
+ "entity": "boat",
+ "caption": "american flag flying from the boat",
+ "question": [
+ "is there american flag ?",
+ "is there the boat ?"
+ ],
+ "prompt": "american flag flying from the {}"
+ },
+ {
+ "index": 32,
+ "image_id": 1592464,
+ "entity": "boat",
+ "caption": "water the boat is on",
+ "question": [
+ "is there the boat ?"
+ ],
+ "prompt": "water the {} is on"
+ },
+ {
+ "index": 33,
+ "image_id": 1592891,
+ "entity": "boat",
+ "caption": "White covers on yellow boat",
+ "question": [
+ "are there white covers ?",
+ "is there yellow boat ?"
+ ],
+ "prompt": "White covers on yellow {}"
+ },
+ {
+ "index": 34,
+ "image_id": 1592891,
+ "entity": "boat",
+ "caption": "the boat has fabric stripe",
+ "question": [
+ "is there the boat ?",
+ "is there fabric stripe ?"
+ ],
+ "prompt": "the {} has fabric stripe"
+ },
+ {
+ "index": 35,
+ "image_id": 1592892,
+ "entity": "boat",
+ "caption": "the man is on a boat",
+ "question": [
+ "is there the man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "the man is on a {}"
+ },
+ {
+ "index": 36,
+ "image_id": 1592892,
+ "entity": "boat",
+ "caption": "Man working on a boat",
+ "question": [
+ "is there man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Man working on a {}"
+ },
+ {
+ "index": 37,
+ "image_id": 1592951,
+ "entity": "boat",
+ "caption": "The truck on the boat is blue in color.",
+ "question": [
+ "is there the truck ?",
+ "is there the boat ?",
+ "is there color ?"
+ ],
+ "prompt": "The truck on the {} is blue in color."
+ },
+ {
+ "index": 38,
+ "image_id": 2414926,
+ "entity": "boat",
+ "caption": "The boat is in the water",
+ "question": [
+ "is there the boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is in the water"
+ },
+ {
+ "index": 39,
+ "image_id": 2414334,
+ "entity": "boat",
+ "caption": "Large boat docked on water.",
+ "question": [
+ "is there large boat ?",
+ "is there water ?"
+ ],
+ "prompt": "Large {} docked on water."
+ },
+ {
+ "index": 40,
+ "image_id": 2413907,
+ "entity": "boat",
+ "caption": "Man standing on a boat holding a hot dog.",
+ "question": [
+ "is there man ?",
+ "is there a boat ?",
+ "is there a hot dog ?"
+ ],
+ "prompt": "Man standing on a {} holding a hot dog."
+ },
+ {
+ "index": 41,
+ "image_id": 2413848,
+ "entity": "boat",
+ "caption": "boat has chinese letters",
+ "question": [
+ "is there boat ?",
+ "are there chinese letters ?"
+ ],
+ "prompt": "{} has chinese letters"
+ },
+ {
+ "index": 42,
+ "image_id": 2413848,
+ "entity": "boat",
+ "caption": "boat has yellow floaters on the side",
+ "question": [
+ "is there boat ?",
+ "are there yellow floaters ?",
+ "is there the side ?"
+ ],
+ "prompt": "{} has yellow floaters on the side"
+ },
+ {
+ "index": 43,
+ "image_id": 2413848,
+ "entity": "boat",
+ "caption": "boat has orange bouys",
+ "question": [
+ "is there boat ?",
+ "are there orange bouys ?"
+ ],
+ "prompt": "{} has orange bouys"
+ },
+ {
+ "index": 44,
+ "image_id": 2413848,
+ "entity": "boat",
+ "caption": "the inside of the boat is green",
+ "question": [
+ "is there the inside ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the inside of the {} is green"
+ },
+ {
+ "index": 45,
+ "image_id": 2413848,
+ "entity": "boat",
+ "caption": "wooden boat dock",
+ "question": [
+ "is there wooden boat ?"
+ ],
+ "prompt": "wooden {} dock"
+ },
+ {
+ "index": 46,
+ "image_id": 2413848,
+ "entity": "boat",
+ "caption": "the boat is at the dock",
+ "question": [
+ "is there the boat ?",
+ "is there the dock ?"
+ ],
+ "prompt": "the {} is at the dock"
+ },
+ {
+ "index": 47,
+ "image_id": 2413564,
+ "entity": "boat",
+ "caption": "an orange life saver hangs on the boat",
+ "question": [
+ "is there an orange life saver ?",
+ "is there the boat ?"
+ ],
+ "prompt": "an orange life saver hangs on the {}"
+ },
+ {
+ "index": 48,
+ "image_id": 2413564,
+ "entity": "boat",
+ "caption": "the boat in the front has a tall mast",
+ "question": [
+ "is there the boat ?",
+ "is there the front ?",
+ "is there a tall mast ?"
+ ],
+ "prompt": "the {} in the front has a tall mast"
+ },
+ {
+ "index": 49,
+ "image_id": 2413564,
+ "entity": "boat",
+ "caption": "the boats are on the bay",
+ "question": [
+ "are there the boats ?",
+ "is there the bay ?"
+ ],
+ "prompt": "the {}s are on the bay"
+ },
+ {
+ "index": 50,
+ "image_id": 2412218,
+ "entity": "boat",
+ "caption": "a boat is in the photo",
+ "question": [
+ "is there a boat ?",
+ "is there the photo ?"
+ ],
+ "prompt": "a {} is in the photo"
+ },
+ {
+ "index": 51,
+ "image_id": 2412218,
+ "entity": "boat",
+ "caption": "the boat is red with designs",
+ "question": [
+ "is there the boat ?",
+ "are there designs ?"
+ ],
+ "prompt": "the {} is red with designs"
+ },
+ {
+ "index": 52,
+ "image_id": 2412218,
+ "entity": "boat",
+ "caption": "the boat is on the shore",
+ "question": [
+ "is there the boat ?",
+ "is there the shore ?"
+ ],
+ "prompt": "the {} is on the shore"
+ },
+ {
+ "index": 53,
+ "image_id": 2412218,
+ "entity": "boat",
+ "caption": "the boat has a star of david",
+ "question": [
+ "is there the boat ?",
+ "is there a star ?"
+ ],
+ "prompt": "the {} has a star of david"
+ },
+ {
+ "index": 54,
+ "image_id": 2412218,
+ "entity": "boat",
+ "caption": "the boat has a heart ",
+ "question": [
+ "is there the boat ?",
+ "is there a heart ?"
+ ],
+ "prompt": "the {} has a heart "
+ },
+ {
+ "index": 55,
+ "image_id": 2412218,
+ "entity": "boat",
+ "caption": "the boat has a cloud design",
+ "question": [
+ "is there the boat ?",
+ "is there a cloud design ?"
+ ],
+ "prompt": "the {} has a cloud design"
+ },
+ {
+ "index": 56,
+ "image_id": 2412218,
+ "entity": "boat",
+ "caption": "heart shapes window in side of boat",
+ "question": [
+ "is there heart ?",
+ "is there side ?",
+ "is there boat ?"
+ ],
+ "prompt": "heart shapes window in side of {}"
+ },
+ {
+ "index": 57,
+ "image_id": 2411489,
+ "entity": "boat",
+ "caption": "boat docked at pier",
+ "question": [
+ "is there boat ?",
+ "is there pier ?"
+ ],
+ "prompt": "{} docked at pier"
+ },
+ {
+ "index": 58,
+ "image_id": 2411204,
+ "entity": "boat",
+ "caption": "An enormous amount of water on which people ride boats.",
+ "question": [
+ "is there an enormous amount ?",
+ "is there water ?",
+ "are there people ?",
+ "are there boats ?"
+ ],
+ "prompt": "An enormous amount of water on which people ride {}s."
+ },
+ {
+ "index": 59,
+ "image_id": 2410909,
+ "entity": "boat",
+ "caption": "Two people sit on a boat",
+ "question": [
+ "are there two people ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Two people sit on a {}"
+ },
+ {
+ "index": 60,
+ "image_id": 2410909,
+ "entity": "boat",
+ "caption": "A person is steering the boat with the rudder",
+ "question": [
+ "is there a person ?",
+ "is there the boat ?",
+ "is there the rudder ?"
+ ],
+ "prompt": "A person is steering the {} with the rudder"
+ },
+ {
+ "index": 61,
+ "image_id": 2410850,
+ "entity": "boat",
+ "caption": "a sniper rifle anchored to the boat",
+ "question": [
+ "is there a sniper rifle ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a sniper rifle anchored to the {}"
+ },
+ {
+ "index": 62,
+ "image_id": 2410850,
+ "entity": "boat",
+ "caption": "U.S. Coast Guard painted on boat",
+ "question": [
+ "is there boat ?"
+ ],
+ "prompt": "U.S. Coast Guard painted on {}"
+ },
+ {
+ "index": 63,
+ "image_id": 2410850,
+ "entity": "boat",
+ "caption": "Honda outboard boat motor",
+ "question": [],
+ "prompt": "Honda outboard {} motor"
+ },
+ {
+ "index": 64,
+ "image_id": 2410846,
+ "entity": "boat",
+ "caption": "life preserver mounted to side of boat",
+ "question": [
+ "is there life preserver ?",
+ "is there side ?",
+ "is there boat ?"
+ ],
+ "prompt": "life preserver mounted to side of {}"
+ },
+ {
+ "index": 65,
+ "image_id": 2410846,
+ "entity": "boat",
+ "caption": "Life saving ring on the boat",
+ "question": [
+ "is there life saving ring ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Life saving ring on the {}"
+ },
+ {
+ "index": 66,
+ "image_id": 2409599,
+ "entity": "boat",
+ "caption": "Several boats are in the water. ",
+ "question": [
+ "are there several boats ?",
+ "is there the water ?"
+ ],
+ "prompt": "Several {}s are in the water. "
+ },
+ {
+ "index": 67,
+ "image_id": 2409599,
+ "entity": "boat",
+ "caption": "The boat has several windows. ",
+ "question": [
+ "is there the boat ?",
+ "are there several windows ?"
+ ],
+ "prompt": "The {} has several windows. "
+ },
+ {
+ "index": 68,
+ "image_id": 2409599,
+ "entity": "boat",
+ "caption": "A rope secures the boat to the dock.",
+ "question": [
+ "is there a rope ?",
+ "is there the boat ?",
+ "is there the dock ?"
+ ],
+ "prompt": "A rope secures the {} to the dock."
+ },
+ {
+ "index": 69,
+ "image_id": 2409599,
+ "entity": "boat",
+ "caption": "rope securing a boat to the dock",
+ "question": [
+ "is there rope ?",
+ "is there a boat ?",
+ "is there the dock ?"
+ ],
+ "prompt": "rope securing a {} to the dock"
+ },
+ {
+ "index": 70,
+ "image_id": 2409535,
+ "entity": "boat",
+ "caption": "Cables attached to larger boat",
+ "question": [
+ "are there cables ?",
+ "is there larger boat ?"
+ ],
+ "prompt": "Cables attached to larger {}"
+ },
+ {
+ "index": 71,
+ "image_id": 2409535,
+ "entity": "boat",
+ "caption": "Name written on side of smaller boat",
+ "question": [
+ "is there name ?",
+ "is there side ?",
+ "is there smaller boat ?"
+ ],
+ "prompt": "Name written on side of smaller {}"
+ },
+ {
+ "index": 72,
+ "image_id": 2409535,
+ "entity": "boat",
+ "caption": "name of a boat painted on",
+ "question": [
+ "is there name ?",
+ "is there a boat ?"
+ ],
+ "prompt": "name of a {} painted on"
+ },
+ {
+ "index": 73,
+ "image_id": 2409264,
+ "entity": "boat",
+ "caption": "small boy standing in a boat",
+ "question": [
+ "is there small boy ?",
+ "is there a boat ?"
+ ],
+ "prompt": "small boy standing in a {}"
+ },
+ {
+ "index": 74,
+ "image_id": 2409264,
+ "entity": "boat",
+ "caption": "asian boy standing in boat",
+ "question": [
+ "is there asian boy ?",
+ "is there boat ?"
+ ],
+ "prompt": "asian boy standing in {}"
+ },
+ {
+ "index": 75,
+ "image_id": 2409264,
+ "entity": "boat",
+ "caption": "person standing in boat in backgroung",
+ "question": [
+ "is there person ?",
+ "is there boat ?",
+ "is there backgroung ?"
+ ],
+ "prompt": "person standing in {} in backgroung"
+ },
+ {
+ "index": 76,
+ "image_id": 2408406,
+ "entity": "boat",
+ "caption": "hand hangs over side of boat.",
+ "question": [
+ "is there hand ?",
+ "is there side ?",
+ "is there boat ?"
+ ],
+ "prompt": "hand hangs over side of {}."
+ },
+ {
+ "index": 77,
+ "image_id": 2408406,
+ "entity": "boat",
+ "caption": "two large umbrellas covering most of boat",
+ "question": [
+ "are there two large umbrellas ?",
+ "is there boat ?"
+ ],
+ "prompt": "two large umbrellas covering most of {}"
+ },
+ {
+ "index": 78,
+ "image_id": 2408406,
+ "entity": "boat",
+ "caption": "The person has their hand out of the boat",
+ "question": [
+ "is there the person ?",
+ "is there their hand ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The person has their hand out of the {}"
+ },
+ {
+ "index": 79,
+ "image_id": 2408406,
+ "entity": "boat",
+ "caption": "hand of person who is riding in the boat",
+ "question": [
+ "is there hand ?",
+ "is there person ?",
+ "is there the boat ?"
+ ],
+ "prompt": "hand of person who is riding in the {}"
+ },
+ {
+ "index": 80,
+ "image_id": 2408406,
+ "entity": "boat",
+ "caption": "The food and umbrellas are on a boat. ",
+ "question": [
+ "is there the food ?",
+ "are there umbrellas ?",
+ "is there a boat ?"
+ ],
+ "prompt": "The food and umbrellas are on a {}. "
+ },
+ {
+ "index": 81,
+ "image_id": 2408030,
+ "entity": "boat",
+ "caption": "people sitting in a boat waiting",
+ "question": [
+ "are there people ?",
+ "is there a boat ?"
+ ],
+ "prompt": "people sitting in a {} waiting"
+ },
+ {
+ "index": 82,
+ "image_id": 2408030,
+ "entity": "boat",
+ "caption": "person climbing into or out of the boat",
+ "question": [
+ "is there person ?",
+ "is there the boat ?"
+ ],
+ "prompt": "person climbing into or out of the {}"
+ },
+ {
+ "index": 83,
+ "image_id": 2407441,
+ "entity": "boat",
+ "caption": "Man standing on a boat. ",
+ "question": [
+ "is there man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Man standing on a {}. "
+ },
+ {
+ "index": 84,
+ "image_id": 2407441,
+ "entity": "boat",
+ "caption": "wooden boat with woman standing",
+ "question": [
+ "is there wooden boat ?",
+ "is there woman ?"
+ ],
+ "prompt": "wooden {} with woman standing"
+ },
+ {
+ "index": 85,
+ "image_id": 2406902,
+ "entity": "boat",
+ "caption": "Orange life preserver on a white boat.",
+ "question": [
+ "is there orange life preserver ?",
+ "is there a white boat ?"
+ ],
+ "prompt": "Orange life preserver on a white {}."
+ },
+ {
+ "index": 86,
+ "image_id": 2405871,
+ "entity": "boat",
+ "caption": "a bridge goes into the boat",
+ "question": [
+ "is there a bridge ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a bridge goes into the {}"
+ },
+ {
+ "index": 87,
+ "image_id": 2405602,
+ "entity": "boat",
+ "caption": "small boat going out to sea",
+ "question": [
+ "is there small boat ?",
+ "is there sea ?"
+ ],
+ "prompt": "small {} going out to sea"
+ },
+ {
+ "index": 88,
+ "image_id": 2404841,
+ "entity": "boat",
+ "caption": "bamboo boats parked together",
+ "question": [
+ "are there bamboo boats ?"
+ ],
+ "prompt": "bamboo {}s parked together"
+ },
+ {
+ "index": 89,
+ "image_id": 2404841,
+ "entity": "boat",
+ "caption": "orange life preservers are hanging from the boat chairs",
+ "question": [
+ "are there orange life preservers ?",
+ "are there the boat chairs ?"
+ ],
+ "prompt": "orange life preservers are hanging from the {} chairs"
+ },
+ {
+ "index": 90,
+ "image_id": 2404198,
+ "entity": "boat",
+ "caption": "The boat has two life boats on the right side",
+ "question": [
+ "is there the boat ?",
+ "are there two life boats ?",
+ "is there the right side ?"
+ ],
+ "prompt": "The {} has two life {}s on the right side"
+ },
+ {
+ "index": 91,
+ "image_id": 2404184,
+ "entity": "boat",
+ "caption": "These people are on a boat ride",
+ "question": [
+ "are there these people ?",
+ "is there a boat ride ?"
+ ],
+ "prompt": "These people are on a {} ride"
+ },
+ {
+ "index": 92,
+ "image_id": 2404184,
+ "entity": "boat",
+ "caption": "The boat is creating waves",
+ "question": [
+ "is there the boat ?",
+ "are there waves ?"
+ ],
+ "prompt": "The {} is creating waves"
+ },
+ {
+ "index": 93,
+ "image_id": 2403899,
+ "entity": "boat",
+ "caption": "three people are on the boat",
+ "question": [
+ "are there three people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "three people are on the {}"
+ },
+ {
+ "index": 94,
+ "image_id": 2403899,
+ "entity": "boat",
+ "caption": "a flag is in the front of the boat",
+ "question": [
+ "is there a flag ?",
+ "is there the front ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a flag is in the front of the {}"
+ },
+ {
+ "index": 95,
+ "image_id": 2403899,
+ "entity": "boat",
+ "caption": "the boat travels on a river",
+ "question": [
+ "is there the boat ?",
+ "is there a river ?"
+ ],
+ "prompt": "the {} travels on a river"
+ },
+ {
+ "index": 96,
+ "image_id": 2403899,
+ "entity": "boat",
+ "caption": "the boat is in the water",
+ "question": [
+ "is there the boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "the {} is in the water"
+ },
+ {
+ "index": 97,
+ "image_id": 2403899,
+ "entity": "boat",
+ "caption": "two fishing poles stick up out of the boat",
+ "question": [
+ "are there two fishing poles ?",
+ "is there the boat ?"
+ ],
+ "prompt": "two fishing poles stick up out of the {}"
+ },
+ {
+ "index": 98,
+ "image_id": 2403899,
+ "entity": "boat",
+ "caption": "the flag is on the front of the boat",
+ "question": [
+ "is there the flag ?",
+ "is there the front ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the flag is on the front of the {}"
+ },
+ {
+ "index": 99,
+ "image_id": 2403899,
+ "entity": "boat",
+ "caption": "three people are in the boat",
+ "question": [
+ "are there three people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "three people are in the {}"
+ },
+ {
+ "index": 100,
+ "image_id": 2403753,
+ "entity": "boat",
+ "caption": "Many of the boats have masts.",
+ "question": [
+ "are there the boats ?",
+ "are there masts ?"
+ ],
+ "prompt": "Many of the {}s have masts."
+ },
+ {
+ "index": 101,
+ "image_id": 2403753,
+ "entity": "boat",
+ "caption": "A rope hanging over boat.",
+ "question": [
+ "is there a rope ?",
+ "is there boat ?"
+ ],
+ "prompt": "A rope hanging over {}."
+ },
+ {
+ "index": 102,
+ "image_id": 2403753,
+ "entity": "boat",
+ "caption": "Paint of the boat is coming off",
+ "question": [
+ "is there paint ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Paint of the {} is coming off"
+ },
+ {
+ "index": 103,
+ "image_id": 2403753,
+ "entity": "boat",
+ "caption": "Two boats anchored to the dock",
+ "question": [
+ "are there two boats ?",
+ "is there the dock ?"
+ ],
+ "prompt": "Two {}s anchored to the dock"
+ },
+ {
+ "index": 104,
+ "image_id": 2403753,
+ "entity": "boat",
+ "caption": "Rope attached the boat",
+ "question": [
+ "is there rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Rope attached the {}"
+ },
+ {
+ "index": 105,
+ "image_id": 2403712,
+ "entity": "boat",
+ "caption": "Person riding bike on to boat.",
+ "question": [
+ "is there person ?",
+ "is there bike ?",
+ "is there boat ?"
+ ],
+ "prompt": "Person riding bike on to {}."
+ },
+ {
+ "index": 106,
+ "image_id": 2403147,
+ "entity": "boat",
+ "caption": "Black tarp covering part of boat",
+ "question": [
+ "is there black tarp ?",
+ "is there part ?",
+ "is there boat ?"
+ ],
+ "prompt": "Black tarp covering part of {}"
+ },
+ {
+ "index": 107,
+ "image_id": 2403147,
+ "entity": "boat",
+ "caption": "rope tied to the boat.",
+ "question": [
+ "is there rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "rope tied to the {}."
+ },
+ {
+ "index": 108,
+ "image_id": 2402503,
+ "entity": "boat",
+ "caption": "Person stepping on boat",
+ "question": [
+ "is there person ?",
+ "is there boat ?"
+ ],
+ "prompt": "Person stepping on {}"
+ },
+ {
+ "index": 109,
+ "image_id": 2402503,
+ "entity": "boat",
+ "caption": "Rope lying on a boat",
+ "question": [
+ "is there rope ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Rope lying on a {}"
+ },
+ {
+ "index": 110,
+ "image_id": 2402107,
+ "entity": "boat",
+ "caption": "two men getting things off the boat",
+ "question": [
+ "are there two men ?",
+ "are there things ?",
+ "is there the boat ?"
+ ],
+ "prompt": "two men getting things off the {}"
+ },
+ {
+ "index": 111,
+ "image_id": 2402107,
+ "entity": "boat",
+ "caption": "boat coming to pick up the people",
+ "question": [
+ "is there boat ?",
+ "are there the people ?"
+ ],
+ "prompt": "{} coming to pick up the people"
+ },
+ {
+ "index": 112,
+ "image_id": 2402067,
+ "entity": "boat",
+ "caption": "The water the boat is on",
+ "question": [
+ "is there the water ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The water the {} is on"
+ },
+ {
+ "index": 113,
+ "image_id": 2401739,
+ "entity": "boat",
+ "caption": "Woman sitting in wood boat.",
+ "question": [
+ "is there woman ?",
+ "is there wood boat ?"
+ ],
+ "prompt": "Woman sitting in wood {}."
+ },
+ {
+ "index": 114,
+ "image_id": 2401739,
+ "entity": "boat",
+ "caption": "pole is in boat",
+ "question": [
+ "is there pole ?",
+ "is there boat ?"
+ ],
+ "prompt": "pole is in {}"
+ },
+ {
+ "index": 115,
+ "image_id": 2401739,
+ "entity": "boat",
+ "caption": "two boats side by side in the water",
+ "question": [
+ "are there two boats ?",
+ "is there side ?",
+ "is there the water ?"
+ ],
+ "prompt": "two {}s side by side in the water"
+ },
+ {
+ "index": 116,
+ "image_id": 2401211,
+ "entity": "boat",
+ "caption": "Man fishing in boat.",
+ "question": [
+ "is there man ?",
+ "is there boat ?"
+ ],
+ "prompt": "Man fishing in {}."
+ },
+ {
+ "index": 117,
+ "image_id": 2400731,
+ "entity": "boat",
+ "caption": "water the boat is floating on ",
+ "question": [
+ "is there water ?",
+ "is there the boat ?"
+ ],
+ "prompt": "water the {} is floating on "
+ },
+ {
+ "index": 118,
+ "image_id": 2400731,
+ "entity": "boat",
+ "caption": "apples that are on the boat",
+ "question": [
+ "are there apples ?",
+ "is there the boat ?"
+ ],
+ "prompt": "apples that are on the {}"
+ },
+ {
+ "index": 119,
+ "image_id": 2400487,
+ "entity": "boat",
+ "caption": "red toy boat is in the water",
+ "question": [
+ "is there red toy boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "red toy {} is in the water"
+ },
+ {
+ "index": 120,
+ "image_id": 2400487,
+ "entity": "boat",
+ "caption": "The toy boat is in the water.",
+ "question": [
+ "is there the toy boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "The toy {} is in the water."
+ },
+ {
+ "index": 121,
+ "image_id": 2400486,
+ "entity": "boat",
+ "caption": "water where the boats are",
+ "question": [
+ "is there water ?",
+ "are there the boats ?"
+ ],
+ "prompt": "water where the {}s are"
+ },
+ {
+ "index": 122,
+ "image_id": 2400240,
+ "entity": "boat",
+ "caption": "a lawn hair sitting near a boat.",
+ "question": [
+ "is there a lawn hair ?",
+ "is there a boat ?"
+ ],
+ "prompt": "a lawn hair sitting near a {}."
+ },
+ {
+ "index": 123,
+ "image_id": 2400066,
+ "entity": "boat",
+ "caption": "Steps lead up to the boat",
+ "question": [
+ "are there steps ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Steps lead up to the {}"
+ },
+ {
+ "index": 124,
+ "image_id": 2400066,
+ "entity": "boat",
+ "caption": "The front of the boat has black netting",
+ "question": [
+ "is there the front ?",
+ "is there the boat ?",
+ "is there black netting ?"
+ ],
+ "prompt": "The front of the {} has black netting"
+ },
+ {
+ "index": 125,
+ "image_id": 2400066,
+ "entity": "boat",
+ "caption": "White boat docked next to the red boat",
+ "question": [
+ "is there white boat ?",
+ "is there the red boat ?"
+ ],
+ "prompt": "White {} docked next to the red {}"
+ },
+ {
+ "index": 126,
+ "image_id": 2399658,
+ "entity": "boat",
+ "caption": "white metal fencing around boat",
+ "question": [
+ "is there white metal fencing ?",
+ "is there boat ?"
+ ],
+ "prompt": "white metal fencing around {}"
+ },
+ {
+ "index": 127,
+ "image_id": 2399658,
+ "entity": "boat",
+ "caption": "rope attatched to a boat",
+ "question": [
+ "is there rope ?",
+ "is there a boat ?"
+ ],
+ "prompt": "rope attatched to a {}"
+ },
+ {
+ "index": 128,
+ "image_id": 2399025,
+ "entity": "boat",
+ "caption": "these are four people on the boat",
+ "question": [
+ "are there four people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "these are four people on the {}"
+ },
+ {
+ "index": 129,
+ "image_id": 2399025,
+ "entity": "boat",
+ "caption": "man standing on a boat",
+ "question": [
+ "is there man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "man standing on a {}"
+ },
+ {
+ "index": 130,
+ "image_id": 2398909,
+ "entity": "boat",
+ "caption": "man selling potatoes on a boat ",
+ "question": [
+ "is there man ?",
+ "are there potatoes ?",
+ "is there a boat ?"
+ ],
+ "prompt": "man selling potatoes on a {} "
+ },
+ {
+ "index": 131,
+ "image_id": 2398909,
+ "entity": "boat",
+ "caption": "Man is on a boat",
+ "question": [
+ "is there man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Man is on a {}"
+ },
+ {
+ "index": 132,
+ "image_id": 2398909,
+ "entity": "boat",
+ "caption": "man on boat is selling food",
+ "question": [
+ "is there man ?",
+ "is there boat ?",
+ "is there food ?"
+ ],
+ "prompt": "man on {} is selling food"
+ },
+ {
+ "index": 133,
+ "image_id": 2398909,
+ "entity": "boat",
+ "caption": "boat is on the water",
+ "question": [
+ "is there boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "{} is on the water"
+ },
+ {
+ "index": 134,
+ "image_id": 2398909,
+ "entity": "boat",
+ "caption": "boat door is open",
+ "question": [
+ "is there boat door ?"
+ ],
+ "prompt": "{} door is open"
+ },
+ {
+ "index": 135,
+ "image_id": 2398862,
+ "entity": "boat",
+ "caption": "this is a boat",
+ "question": [
+ "is there a boat ?"
+ ],
+ "prompt": "this is a {}"
+ },
+ {
+ "index": 136,
+ "image_id": 2398735,
+ "entity": "boat",
+ "caption": "The boat has wood panels.",
+ "question": [
+ "is there the boat ?",
+ "are there wood panels ?"
+ ],
+ "prompt": "The {} has wood panels."
+ },
+ {
+ "index": 137,
+ "image_id": 2398609,
+ "entity": "boat",
+ "caption": "a rope tied to a boat",
+ "question": [
+ "is there a rope ?",
+ "is there a boat ?"
+ ],
+ "prompt": "a rope tied to a {}"
+ },
+ {
+ "index": 138,
+ "image_id": 2398396,
+ "entity": "boat",
+ "caption": "long green boat is on water",
+ "question": [
+ "is there long green boat ?",
+ "is there water ?"
+ ],
+ "prompt": "long green {} is on water"
+ },
+ {
+ "index": 139,
+ "image_id": 2398396,
+ "entity": "boat",
+ "caption": "empty plastic bottle is in middle of boat",
+ "question": [
+ "is there empty plastic bottle ?",
+ "is there middle ?",
+ "is there boat ?"
+ ],
+ "prompt": "empty plastic bottle is in middle of {}"
+ },
+ {
+ "index": 140,
+ "image_id": 2398396,
+ "entity": "boat",
+ "caption": "Water is reflecting boat",
+ "question": [
+ "is there water ?",
+ "is there boat ?"
+ ],
+ "prompt": "Water is reflecting {}"
+ },
+ {
+ "index": 141,
+ "image_id": 2398176,
+ "entity": "boat",
+ "caption": "The boat has equipment on it.",
+ "question": [
+ "is there the boat ?",
+ "is there equipment ?"
+ ],
+ "prompt": "The {} has equipment on it."
+ },
+ {
+ "index": 142,
+ "image_id": 2398032,
+ "entity": "boat",
+ "caption": "The boat is on the water.",
+ "question": [
+ "is there the boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {} is on the water."
+ },
+ {
+ "index": 143,
+ "image_id": 2398032,
+ "entity": "boat",
+ "caption": "The people are on the boat.",
+ "question": [
+ "are there the people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The people are on the {}."
+ },
+ {
+ "index": 144,
+ "image_id": 2397696,
+ "entity": "boat",
+ "caption": "Ladder leaning against a boat.",
+ "question": [
+ "is there ladder ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Ladder leaning against a {}."
+ },
+ {
+ "index": 145,
+ "image_id": 2397163,
+ "entity": "boat",
+ "caption": "teddy bear sits on a boat",
+ "question": [
+ "is there a boat ?"
+ ],
+ "prompt": "teddy bear sits on a {}"
+ },
+ {
+ "index": 146,
+ "image_id": 2397163,
+ "entity": "boat",
+ "caption": "the teddy bear is on a boat",
+ "question": [
+ "is there the teddy bear ?",
+ "is there a boat ?"
+ ],
+ "prompt": "the teddy bear is on a {}"
+ },
+ {
+ "index": 147,
+ "image_id": 2397163,
+ "entity": "boat",
+ "caption": "the boat is on the water",
+ "question": [
+ "is there the boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "the {} is on the water"
+ },
+ {
+ "index": 148,
+ "image_id": 2397042,
+ "entity": "boat",
+ "caption": "The top of the boat is blue.",
+ "question": [
+ "is there the top ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The top of the {} is blue."
+ },
+ {
+ "index": 149,
+ "image_id": 2396771,
+ "entity": "boat",
+ "caption": "The boat has long wooden planks",
+ "question": [
+ "is there the boat ?",
+ "are there long wooden planks ?"
+ ],
+ "prompt": "The {} has long wooden planks"
+ },
+ {
+ "index": 150,
+ "image_id": 2396771,
+ "entity": "boat",
+ "caption": "The boat is resting on grass",
+ "question": [
+ "is there the boat ?",
+ "is there grass ?"
+ ],
+ "prompt": "The {} is resting on grass"
+ },
+ {
+ "index": 151,
+ "image_id": 2396668,
+ "entity": "boat",
+ "caption": "Life preservers on top of a boat",
+ "question": [
+ "are there life preservers ?",
+ "is there top ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Life preservers on top of a {}"
+ },
+ {
+ "index": 152,
+ "image_id": 2396583,
+ "entity": "boat",
+ "caption": "Man drives duck boat.",
+ "question": [
+ "is there man ?",
+ "is there duck boat ?"
+ ],
+ "prompt": "Man drives duck {}."
+ },
+ {
+ "index": 153,
+ "image_id": 2396583,
+ "entity": "boat",
+ "caption": "people are sitting in duck boat",
+ "question": [
+ "are there people ?",
+ "is there duck boat ?"
+ ],
+ "prompt": "people are sitting in duck {}"
+ },
+ {
+ "index": 154,
+ "image_id": 2395255,
+ "entity": "boat",
+ "caption": "letter m on boat",
+ "question": [
+ "is there letter ?",
+ "is there boat ?"
+ ],
+ "prompt": "letter m on {}"
+ },
+ {
+ "index": 155,
+ "image_id": 2395255,
+ "entity": "boat",
+ "caption": "Red life preserver on a boat",
+ "question": [
+ "is there red life preserver ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Red life preserver on a {}"
+ },
+ {
+ "index": 156,
+ "image_id": 2395255,
+ "entity": "boat",
+ "caption": "Water splashing up in front of a boat",
+ "question": [
+ "is there water ?",
+ "is there front ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Water splashing up in front of a {}"
+ },
+ {
+ "index": 157,
+ "image_id": 2395073,
+ "entity": "boat",
+ "caption": "a woman sits on a boat",
+ "question": [
+ "is there a woman ?",
+ "is there a boat ?"
+ ],
+ "prompt": "a woman sits on a {}"
+ },
+ {
+ "index": 158,
+ "image_id": 2393753,
+ "entity": "boat",
+ "caption": "speed boat creating ripples in water",
+ "question": [
+ "is there speed boat ?",
+ "are there ripples ?",
+ "is there water ?"
+ ],
+ "prompt": "speed {} creating ripples in water"
+ },
+ {
+ "index": 159,
+ "image_id": 2393753,
+ "entity": "boat",
+ "caption": "light green boat cover",
+ "question": [
+ "is there light green boat cover ?"
+ ],
+ "prompt": "light green {} cover"
+ },
+ {
+ "index": 160,
+ "image_id": 2393562,
+ "entity": "boat",
+ "caption": "The boat has many windows",
+ "question": [
+ "is there the boat ?",
+ "are there many windows ?"
+ ],
+ "prompt": "The {} has many windows"
+ },
+ {
+ "index": 161,
+ "image_id": 2393150,
+ "entity": "boat",
+ "caption": "the boat is from los angeles",
+ "question": [
+ "is there the boat ?"
+ ],
+ "prompt": "the {} is from los angeles"
+ },
+ {
+ "index": 162,
+ "image_id": 2393150,
+ "entity": "boat",
+ "caption": "the boat number is 17",
+ "question": [
+ "is there the boat number ?"
+ ],
+ "prompt": "the {} number is 17"
+ },
+ {
+ "index": 163,
+ "image_id": 2393150,
+ "entity": "boat",
+ "caption": "the boat has a cabin",
+ "question": [
+ "is there the boat ?",
+ "is there a cabin ?"
+ ],
+ "prompt": "the {} has a cabin"
+ },
+ {
+ "index": 164,
+ "image_id": 2393150,
+ "entity": "boat",
+ "caption": "Where the police boat is from",
+ "question": [
+ "is there the police boat ?"
+ ],
+ "prompt": "Where the police {} is from"
+ },
+ {
+ "index": 165,
+ "image_id": 2393150,
+ "entity": "boat",
+ "caption": "Police officer driving the boat",
+ "question": [
+ "is there police officer ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Police officer driving the {}"
+ },
+ {
+ "index": 166,
+ "image_id": 2392895,
+ "entity": "boat",
+ "caption": "dog is on a boat",
+ "question": [
+ "is there dog ?",
+ "is there a boat ?"
+ ],
+ "prompt": "dog is on a {}"
+ },
+ {
+ "index": 167,
+ "image_id": 2391231,
+ "entity": "boat",
+ "caption": "gas can inside orange and white boat",
+ "question": [
+ "is there gas ?",
+ "is there orange and white boat ?"
+ ],
+ "prompt": "gas can inside orange and white {}"
+ },
+ {
+ "index": 168,
+ "image_id": 2391099,
+ "entity": "boat",
+ "caption": "flag painted on the boat",
+ "question": [
+ "is there flag ?",
+ "is there the boat ?"
+ ],
+ "prompt": "flag painted on the {}"
+ },
+ {
+ "index": 169,
+ "image_id": 2391099,
+ "entity": "boat",
+ "caption": "achomraich is name on side of boat",
+ "question": [
+ "is there name ?",
+ "is there side ?",
+ "is there boat ?"
+ ],
+ "prompt": "achomraich is name on side of {}"
+ },
+ {
+ "index": 170,
+ "image_id": 2390472,
+ "entity": "boat",
+ "caption": "Metal chain coming off front of boat.",
+ "question": [
+ "is there metal chain ?",
+ "is there front ?",
+ "is there boat ?"
+ ],
+ "prompt": "Metal chain coming off front of {}."
+ },
+ {
+ "index": 171,
+ "image_id": 2390472,
+ "entity": "boat",
+ "caption": "Green leaves on branches near boat.",
+ "question": [
+ "are there green leaves ?",
+ "are there branches ?",
+ "is there boat ?"
+ ],
+ "prompt": "Green leaves on branches near {}."
+ },
+ {
+ "index": 172,
+ "image_id": 2390472,
+ "entity": "boat",
+ "caption": "Boat is blue next to green boat.",
+ "question": [
+ "is there boat ?",
+ "is there green boat ?"
+ ],
+ "prompt": "Boat is blue next to green {}."
+ },
+ {
+ "index": 173,
+ "image_id": 2388743,
+ "entity": "boat",
+ "caption": "a boat that has a clear window.",
+ "question": [
+ "is there a boat ?",
+ "is there a clear window ?"
+ ],
+ "prompt": "a {} that has a clear window."
+ },
+ {
+ "index": 174,
+ "image_id": 2388725,
+ "entity": "boat",
+ "caption": "the yellow painted outside of a boat",
+ "question": [
+ "is there the yellow ?",
+ "is there a boat ?"
+ ],
+ "prompt": "the yellow painted outside of a {}"
+ },
+ {
+ "index": 175,
+ "image_id": 2388588,
+ "entity": "boat",
+ "caption": "boat has a white stripe",
+ "question": [
+ "is there boat ?",
+ "is there a white stripe ?"
+ ],
+ "prompt": "{} has a white stripe"
+ },
+ {
+ "index": 176,
+ "image_id": 2388588,
+ "entity": "boat",
+ "caption": "anchor of the boat is black",
+ "question": [
+ "is there anchor ?",
+ "is there the boat ?"
+ ],
+ "prompt": "anchor of the {} is black"
+ },
+ {
+ "index": 177,
+ "image_id": 2388588,
+ "entity": "boat",
+ "caption": "people are on the boat ",
+ "question": [
+ "are there people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "people are on the {} "
+ },
+ {
+ "index": 178,
+ "image_id": 2388309,
+ "entity": "boat",
+ "caption": "the man is steering the boat",
+ "question": [
+ "is there the man ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the man is steering the {}"
+ },
+ {
+ "index": 179,
+ "image_id": 2388309,
+ "entity": "boat",
+ "caption": "blue boat rules sign",
+ "question": [
+ "are there blue boat rules ?"
+ ],
+ "prompt": "blue {} rules sign"
+ },
+ {
+ "index": 180,
+ "image_id": 2388309,
+ "entity": "boat",
+ "caption": "boats wake in the water",
+ "question": [
+ "are there boats ?",
+ "is there the water ?"
+ ],
+ "prompt": "{}s wake in the water"
+ },
+ {
+ "index": 181,
+ "image_id": 2387705,
+ "entity": "boat",
+ "caption": "mast of a boat is wood",
+ "question": [
+ "is there mast ?",
+ "is there a boat ?",
+ "is there wood ?"
+ ],
+ "prompt": "mast of a {} is wood"
+ },
+ {
+ "index": 182,
+ "image_id": 2387564,
+ "entity": "boat",
+ "caption": "life guard is in a boat ",
+ "question": [
+ "is there life guard ?",
+ "is there a boat ?"
+ ],
+ "prompt": "life guard is in a {} "
+ },
+ {
+ "index": 183,
+ "image_id": 2387564,
+ "entity": "boat",
+ "caption": "woman stands in a boat",
+ "question": [
+ "is there woman ?",
+ "is there a boat ?"
+ ],
+ "prompt": "woman stands in a {}"
+ },
+ {
+ "index": 184,
+ "image_id": 2387146,
+ "entity": "boat",
+ "caption": "a man stand on a boat",
+ "question": [
+ "is there a man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "a man stand on a {}"
+ },
+ {
+ "index": 185,
+ "image_id": 2387146,
+ "entity": "boat",
+ "caption": "A group of red boats docked at the shore",
+ "question": [
+ "is there a group ?",
+ "are there red boats ?",
+ "is there the shore ?"
+ ],
+ "prompt": "A group of red {}s docked at the shore"
+ },
+ {
+ "index": 186,
+ "image_id": 2387146,
+ "entity": "boat",
+ "caption": "Person standing on red boat.",
+ "question": [
+ "is there person ?",
+ "is there red boat ?"
+ ],
+ "prompt": "Person standing on red {}."
+ },
+ {
+ "index": 187,
+ "image_id": 2387146,
+ "entity": "boat",
+ "caption": "Red boat sitting in water.",
+ "question": [
+ "is there red boat ?",
+ "is there water ?"
+ ],
+ "prompt": "Red {} sitting in water."
+ },
+ {
+ "index": 188,
+ "image_id": 2387137,
+ "entity": "boat",
+ "caption": "the woman is on a boat",
+ "question": [
+ "is there the woman ?",
+ "is there a boat ?"
+ ],
+ "prompt": "the woman is on a {}"
+ },
+ {
+ "index": 189,
+ "image_id": 2386500,
+ "entity": "boat",
+ "caption": "rope tied at front of boat",
+ "question": [
+ "is there rope ?",
+ "is there front ?",
+ "is there boat ?"
+ ],
+ "prompt": "rope tied at front of {}"
+ },
+ {
+ "index": 190,
+ "image_id": 2385578,
+ "entity": "boat",
+ "caption": "Hook and chain hoist above boat.",
+ "question": [
+ "is there hook ?",
+ "is there chain ?",
+ "is there hoist ?",
+ "is there boat ?"
+ ],
+ "prompt": "Hook and chain hoist above {}."
+ },
+ {
+ "index": 191,
+ "image_id": 2384997,
+ "entity": "boat",
+ "caption": "metal crane attached to a boat",
+ "question": [
+ "is there metal crane ?",
+ "is there a boat ?"
+ ],
+ "prompt": "metal crane attached to a {}"
+ },
+ {
+ "index": 192,
+ "image_id": 2384997,
+ "entity": "boat",
+ "caption": "Tower lift on back of boat",
+ "question": [
+ "is there tower ?",
+ "is there back ?",
+ "is there boat ?"
+ ],
+ "prompt": "Tower lift on back of {}"
+ },
+ {
+ "index": 193,
+ "image_id": 2384727,
+ "entity": "boat",
+ "caption": "red and black metal boat smoke stack",
+ "question": [
+ "is there red and black metal boat smoke ?"
+ ],
+ "prompt": "red and black metal {} smoke stack"
+ },
+ {
+ "index": 194,
+ "image_id": 2384036,
+ "entity": "boat",
+ "caption": "The boat moving in the water causing a wave.",
+ "question": [
+ "is there the boat ?",
+ "is there the water ?",
+ "is there a wave ?"
+ ],
+ "prompt": "The {} moving in the water causing a wave."
+ },
+ {
+ "index": 195,
+ "image_id": 2384036,
+ "entity": "boat",
+ "caption": "A search light mounted on a boat",
+ "question": [
+ "is there a search light ?",
+ "is there a boat ?"
+ ],
+ "prompt": "A search light mounted on a {}"
+ },
+ {
+ "index": 196,
+ "image_id": 2384036,
+ "entity": "boat",
+ "caption": "A boat mounted bull horn",
+ "question": [
+ "is there a boat ?",
+ "is there bull horn ?"
+ ],
+ "prompt": "A {} mounted bull horn"
+ },
+ {
+ "index": 197,
+ "image_id": 2383929,
+ "entity": "boat",
+ "caption": "SF3-3999 writing on boat",
+ "question": [
+ "is there boat ?"
+ ],
+ "prompt": "SF3-3999 writing on {}"
+ },
+ {
+ "index": 198,
+ "image_id": 2383555,
+ "entity": "boat",
+ "caption": "a wooden boat oar",
+ "question": [
+ "is there a wooden boat ?",
+ "is there oar ?"
+ ],
+ "prompt": "a wooden {} oar"
+ },
+ {
+ "index": 199,
+ "image_id": 2383462,
+ "entity": "boat",
+ "caption": "The boat is on land",
+ "question": [
+ "is there the boat ?",
+ "is there land ?"
+ ],
+ "prompt": "The {} is on land"
+ },
+ {
+ "index": 200,
+ "image_id": 2383399,
+ "entity": "boat",
+ "caption": "water the boat is in",
+ "question": [
+ "is there the boat ?"
+ ],
+ "prompt": "water the {} is in"
+ },
+ {
+ "index": 201,
+ "image_id": 2383399,
+ "entity": "boat",
+ "caption": "deck of the boat the couple is on",
+ "question": [
+ "is there deck ?",
+ "is there the boat ?",
+ "is there the couple ?"
+ ],
+ "prompt": "deck of the {} the couple is on"
+ },
+ {
+ "index": 202,
+ "image_id": 2383399,
+ "entity": "boat",
+ "caption": "two people are in boat.",
+ "question": [
+ "are there two people ?",
+ "is there boat ?"
+ ],
+ "prompt": "two people are in {}."
+ },
+ {
+ "index": 203,
+ "image_id": 2383272,
+ "entity": "boat",
+ "caption": "MASEN written on the boat",
+ "question": [
+ "is there the boat ?"
+ ],
+ "prompt": "MASEN written on the {}"
+ },
+ {
+ "index": 204,
+ "image_id": 2383272,
+ "entity": "boat",
+ "caption": "door on the boat is wood slats",
+ "question": [
+ "is there door ?",
+ "is there the boat ?",
+ "are there wood slats ?"
+ ],
+ "prompt": "door on the {} is wood slats"
+ },
+ {
+ "index": 205,
+ "image_id": 2382463,
+ "entity": "boat",
+ "caption": "The boat has two sails",
+ "question": [
+ "is there the boat ?",
+ "are there two sails ?"
+ ],
+ "prompt": "The {} has two sails"
+ },
+ {
+ "index": 206,
+ "image_id": 2382231,
+ "entity": "boat",
+ "caption": "the dog is on a boat",
+ "question": [
+ "is there the dog ?",
+ "is there a boat ?"
+ ],
+ "prompt": "the dog is on a {}"
+ },
+ {
+ "index": 207,
+ "image_id": 2382219,
+ "entity": "boat",
+ "caption": "the inflatable boat is red ",
+ "question": [
+ "is there the inflatable boat ?"
+ ],
+ "prompt": "the inflatable {} is red "
+ },
+ {
+ "index": 208,
+ "image_id": 2382219,
+ "entity": "boat",
+ "caption": "Life saving boat is red color.",
+ "question": [
+ "is there life saving boat ?",
+ "is there red color ?"
+ ],
+ "prompt": "Life saving {} is red color."
+ },
+ {
+ "index": 209,
+ "image_id": 2382219,
+ "entity": "boat",
+ "caption": "The man is driving the boat",
+ "question": [
+ "is there the man ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The man is driving the {}"
+ },
+ {
+ "index": 210,
+ "image_id": 2382219,
+ "entity": "boat",
+ "caption": "The boat has a brown and white seat",
+ "question": [
+ "is there the boat ?",
+ "is there a brown and white seat ?"
+ ],
+ "prompt": "The {} has a brown and white seat"
+ },
+ {
+ "index": 211,
+ "image_id": 2382102,
+ "entity": "boat",
+ "caption": "Person is barefoot standing on edge of boat.",
+ "question": [
+ "is there person ?",
+ "is there edge ?",
+ "is there boat ?"
+ ],
+ "prompt": "Person is barefoot standing on edge of {}."
+ },
+ {
+ "index": 212,
+ "image_id": 2382102,
+ "entity": "boat",
+ "caption": "the man is on the side of the boat",
+ "question": [
+ "is there the man ?",
+ "is there the side ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the man is on the side of the {}"
+ },
+ {
+ "index": 213,
+ "image_id": 2381922,
+ "entity": "boat",
+ "caption": "the boat has a shark",
+ "question": [
+ "is there the boat ?",
+ "is there a shark ?"
+ ],
+ "prompt": "the {} has a shark"
+ },
+ {
+ "index": 214,
+ "image_id": 2381922,
+ "entity": "boat",
+ "caption": "the boat has people ",
+ "question": [
+ "is there the boat ?",
+ "are there people ?"
+ ],
+ "prompt": "the {} has people "
+ },
+ {
+ "index": 215,
+ "image_id": 2381685,
+ "entity": "boat",
+ "caption": "small boat tied to another boat",
+ "question": [
+ "is there small boat ?",
+ "is there another boat ?"
+ ],
+ "prompt": "small {} tied to another {}"
+ },
+ {
+ "index": 216,
+ "image_id": 2381433,
+ "entity": "boat",
+ "caption": "rope hanging on a boat",
+ "question": [
+ "is there rope ?",
+ "is there a boat ?"
+ ],
+ "prompt": "rope hanging on a {}"
+ },
+ {
+ "index": 217,
+ "image_id": 2381084,
+ "entity": "boat",
+ "caption": "Cushions on boat are white.",
+ "question": [
+ "are there cushions ?",
+ "is there boat ?"
+ ],
+ "prompt": "Cushions on {} are white."
+ },
+ {
+ "index": 218,
+ "image_id": 2381084,
+ "entity": "boat",
+ "caption": "Dog is standing on back of boat.",
+ "question": [
+ "is there dog ?",
+ "is there boat ?"
+ ],
+ "prompt": "Dog is standing on back of {}."
+ },
+ {
+ "index": 219,
+ "image_id": 2380882,
+ "entity": "boat",
+ "caption": "A woman sitting on a boat reading",
+ "question": [
+ "is there a woman ?",
+ "is there a boat ?"
+ ],
+ "prompt": "A woman sitting on a {} reading"
+ },
+ {
+ "index": 220,
+ "image_id": 2380594,
+ "entity": "boat",
+ "caption": "the boat has two outboard motors",
+ "question": [
+ "is there the boat ?",
+ "are there two outboard motors ?"
+ ],
+ "prompt": "the {} has two outboard motors"
+ },
+ {
+ "index": 221,
+ "image_id": 2380594,
+ "entity": "boat",
+ "caption": "the boat is in the water ",
+ "question": [
+ "is there the boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "the {} is in the water "
+ },
+ {
+ "index": 222,
+ "image_id": 2379791,
+ "entity": "boat",
+ "caption": "boats docked along the shoreline",
+ "question": [
+ "are there boats ?",
+ "is there the shoreline ?"
+ ],
+ "prompt": "{}s docked along the shoreline"
+ },
+ {
+ "index": 223,
+ "image_id": 2379774,
+ "entity": "boat",
+ "caption": "the body of water the boat is in",
+ "question": [
+ "is there the body ?",
+ "is there water ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the body of water the {} is in"
+ },
+ {
+ "index": 224,
+ "image_id": 2379714,
+ "entity": "boat",
+ "caption": "boats say nice on them",
+ "question": [
+ "are there boats ?"
+ ],
+ "prompt": "{}s say nice on them"
+ },
+ {
+ "index": 225,
+ "image_id": 2379714,
+ "entity": "boat",
+ "caption": "boat with life preserver on it",
+ "question": [
+ "is there boat ?",
+ "is there life preserver ?"
+ ],
+ "prompt": "{} with life preserver on it"
+ },
+ {
+ "index": 226,
+ "image_id": 2379714,
+ "entity": "boat",
+ "caption": "nets and lines hang off boat",
+ "question": [
+ "are there nets ?",
+ "are there lines ?",
+ "is there boat ?"
+ ],
+ "prompt": "nets and lines hang off {}"
+ },
+ {
+ "index": 227,
+ "image_id": 2379714,
+ "entity": "boat",
+ "caption": "tarp covers top of boat",
+ "question": [
+ "is there tarp ?",
+ "is there top ?",
+ "is there boat ?"
+ ],
+ "prompt": "tarp covers top of {}"
+ },
+ {
+ "index": 228,
+ "image_id": 2379714,
+ "entity": "boat",
+ "caption": "man sits on boat",
+ "question": [
+ "is there man ?",
+ "is there boat ?"
+ ],
+ "prompt": "man sits on {}"
+ },
+ {
+ "index": 229,
+ "image_id": 2379714,
+ "entity": "boat",
+ "caption": "man standing beside a boat",
+ "question": [
+ "is there man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "man standing beside a {}"
+ },
+ {
+ "index": 230,
+ "image_id": 2379304,
+ "entity": "boat",
+ "caption": "a boat is in the water",
+ "question": [
+ "is there a boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "a {} is in the water"
+ },
+ {
+ "index": 231,
+ "image_id": 2378904,
+ "entity": "boat",
+ "caption": "three boats at a boat dock",
+ "question": [
+ "are there three boats ?",
+ "is there a boat dock ?"
+ ],
+ "prompt": "three {}s at a {} dock"
+ },
+ {
+ "index": 232,
+ "image_id": 2378904,
+ "entity": "boat",
+ "caption": "the boat is on a boat lift",
+ "question": [
+ "is there the boat ?",
+ "is there a boat lift ?"
+ ],
+ "prompt": "the {} is on a {} lift"
+ },
+ {
+ "index": 233,
+ "image_id": 2378904,
+ "entity": "boat",
+ "caption": "blue rope attached to the boat",
+ "question": [
+ "is there blue rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "blue rope attached to the {}"
+ },
+ {
+ "index": 234,
+ "image_id": 2378904,
+ "entity": "boat",
+ "caption": "boat docked on pier",
+ "question": [
+ "is there boat ?",
+ "is there pier ?"
+ ],
+ "prompt": "{} docked on pier"
+ },
+ {
+ "index": 235,
+ "image_id": 2378460,
+ "entity": "boat",
+ "caption": "Row is on the boat. ",
+ "question": [
+ "is there row ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Row is on the {}. "
+ },
+ {
+ "index": 236,
+ "image_id": 2378460,
+ "entity": "boat",
+ "caption": "fruit laid out neatly in the closest boat",
+ "question": [
+ "is there fruit ?",
+ "is there the closest boat ?"
+ ],
+ "prompt": "fruit laid out neatly in the closest {}"
+ },
+ {
+ "index": 237,
+ "image_id": 2378110,
+ "entity": "boat",
+ "caption": "rope ties boat to dock",
+ "question": [],
+ "prompt": "rope ties {} to dock"
+ },
+ {
+ "index": 238,
+ "image_id": 2378110,
+ "entity": "boat",
+ "caption": "A banner is on the back of the boat",
+ "question": [
+ "is there a banner ?",
+ "is there the back ?",
+ "is there the boat ?"
+ ],
+ "prompt": "A banner is on the back of the {}"
+ },
+ {
+ "index": 239,
+ "image_id": 2378110,
+ "entity": "boat",
+ "caption": "Buoys are hanging off the boat",
+ "question": [
+ "are there buoys ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Buoys are hanging off the {}"
+ },
+ {
+ "index": 240,
+ "image_id": 2377887,
+ "entity": "boat",
+ "caption": "the emergency boats are on the ship",
+ "question": [
+ "are there the emergency boats ?",
+ "is there the ship ?"
+ ],
+ "prompt": "the emergency {}s are on the ship"
+ },
+ {
+ "index": 241,
+ "image_id": 2377380,
+ "entity": "boat",
+ "caption": "ropes suspended over boats",
+ "question": [
+ "are there ropes ?",
+ "are there boats ?"
+ ],
+ "prompt": "ropes suspended over {}s"
+ },
+ {
+ "index": 242,
+ "image_id": 2377380,
+ "entity": "boat",
+ "caption": "tip of boat bow",
+ "question": [
+ "is there tip ?",
+ "is there boat ?"
+ ],
+ "prompt": "tip of {} bow"
+ },
+ {
+ "index": 243,
+ "image_id": 2377380,
+ "entity": "boat",
+ "caption": "a boat docked on land.",
+ "question": [
+ "is there a boat ?",
+ "is there land ?"
+ ],
+ "prompt": "a {} docked on land."
+ },
+ {
+ "index": 244,
+ "image_id": 2377083,
+ "entity": "boat",
+ "caption": "Cord coming out of back of paddle boat",
+ "question": [
+ "is there cord ?",
+ "is there back ?",
+ "is there paddle boat ?"
+ ],
+ "prompt": "Cord coming out of back of paddle {}"
+ },
+ {
+ "index": 245,
+ "image_id": 2376246,
+ "entity": "boat",
+ "caption": "small red boat docked in water ",
+ "question": [
+ "is there small red boat ?",
+ "is there water ?"
+ ],
+ "prompt": "small red {} docked in water "
+ },
+ {
+ "index": 246,
+ "image_id": 2375980,
+ "entity": "boat",
+ "caption": "A sign is atop the boat",
+ "question": [
+ "is there a sign ?",
+ "is there the boat ?"
+ ],
+ "prompt": "A sign is atop the {}"
+ },
+ {
+ "index": 247,
+ "image_id": 2375980,
+ "entity": "boat",
+ "caption": "house boat docked on river",
+ "question": [
+ "is there house boat ?",
+ "is there river ?"
+ ],
+ "prompt": "house {} docked on river"
+ },
+ {
+ "index": 248,
+ "image_id": 2375980,
+ "entity": "boat",
+ "caption": "many bikes piled onto boat",
+ "question": [
+ "are there many bikes ?",
+ "is there boat ?"
+ ],
+ "prompt": "many bikes piled onto {}"
+ },
+ {
+ "index": 249,
+ "image_id": 2375275,
+ "entity": "boat",
+ "caption": "rope to secure the boat",
+ "question": [
+ "is there the boat ?"
+ ],
+ "prompt": "rope to secure the {}"
+ },
+ {
+ "index": 250,
+ "image_id": 2375275,
+ "entity": "boat",
+ "caption": "the blue rope attached to the boat",
+ "question": [
+ "is there the blue rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the blue rope attached to the {}"
+ },
+ {
+ "index": 251,
+ "image_id": 2374451,
+ "entity": "boat",
+ "caption": "life boat hanging on a ship",
+ "question": [
+ "is there life boat ?",
+ "is there a ship ?"
+ ],
+ "prompt": "life {} hanging on a ship"
+ },
+ {
+ "index": 252,
+ "image_id": 2374451,
+ "entity": "boat",
+ "caption": "wires that hold the life boat",
+ "question": [
+ "are there wires ?",
+ "is there the life boat ?"
+ ],
+ "prompt": "wires that hold the life {}"
+ },
+ {
+ "index": 253,
+ "image_id": 2374088,
+ "entity": "boat",
+ "caption": "A rope attached to a boat",
+ "question": [
+ "is there a rope ?",
+ "is there a boat ?"
+ ],
+ "prompt": "A rope attached to a {}"
+ },
+ {
+ "index": 254,
+ "image_id": 2373499,
+ "entity": "boat",
+ "caption": "team of people rowing boat",
+ "question": [
+ "is there team ?",
+ "are there people ?",
+ "is there boat ?"
+ ],
+ "prompt": "team of people rowing {}"
+ },
+ {
+ "index": 255,
+ "image_id": 2373351,
+ "entity": "boat",
+ "caption": "Woman sitting at the back of a boat wearing a light blue shirt",
+ "question": [
+ "is there woman ?",
+ "is there the back ?",
+ "is there a boat ?",
+ "is there a light blue shirt ?"
+ ],
+ "prompt": "Woman sitting at the back of a {} wearing a light blue shirt"
+ },
+ {
+ "index": 256,
+ "image_id": 2373351,
+ "entity": "boat",
+ "caption": "Frothy wake left behind in the water as a boat travels",
+ "question": [
+ "is there frothy wake ?",
+ "is there the water ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Frothy wake left behind in the water as a {} travels"
+ },
+ {
+ "index": 257,
+ "image_id": 2373126,
+ "entity": "boat",
+ "caption": "white boats parked in dock",
+ "question": [
+ "are there white boats ?",
+ "is there dock ?"
+ ],
+ "prompt": "white {}s parked in dock"
+ },
+ {
+ "index": 258,
+ "image_id": 2372837,
+ "entity": "boat",
+ "caption": "a boat docked in a harbor",
+ "question": [
+ "is there a boat ?",
+ "is there a harbor ?"
+ ],
+ "prompt": "a {} docked in a harbor"
+ },
+ {
+ "index": 259,
+ "image_id": 2372480,
+ "entity": "boat",
+ "caption": "A boat docked under a tunnel.",
+ "question": [
+ "is there a boat ?",
+ "is there a tunnel ?"
+ ],
+ "prompt": "A {} docked under a tunnel."
+ },
+ {
+ "index": 260,
+ "image_id": 2372480,
+ "entity": "boat",
+ "caption": "boat is in water",
+ "question": [
+ "is there boat ?",
+ "is there water ?"
+ ],
+ "prompt": "{} is in water"
+ },
+ {
+ "index": 261,
+ "image_id": 2372341,
+ "entity": "boat",
+ "caption": "Man with red hat leaning on boat",
+ "question": [
+ "is there man ?",
+ "is there red hat ?",
+ "is there boat ?"
+ ],
+ "prompt": "Man with red hat leaning on {}"
+ },
+ {
+ "index": 262,
+ "image_id": 2372106,
+ "entity": "boat",
+ "caption": "man is standing on the back of the boat",
+ "question": [
+ "is there man ?",
+ "is there the back ?",
+ "is there the boat ?"
+ ],
+ "prompt": "man is standing on the back of the {}"
+ },
+ {
+ "index": 263,
+ "image_id": 2371942,
+ "entity": "boat",
+ "caption": "Rope tied to boat",
+ "question": [
+ "is there rope ?",
+ "is there boat ?"
+ ],
+ "prompt": "Rope tied to {}"
+ },
+ {
+ "index": 264,
+ "image_id": 2371644,
+ "entity": "boat",
+ "caption": "man standing on bow of boat",
+ "question": [
+ "is there man ?",
+ "is there bow ?",
+ "is there boat ?"
+ ],
+ "prompt": "man standing on bow of {}"
+ },
+ {
+ "index": 265,
+ "image_id": 2371644,
+ "entity": "boat",
+ "caption": "man standing at the hull of a boat",
+ "question": [
+ "is there man ?",
+ "is there the hull ?",
+ "is there a boat ?"
+ ],
+ "prompt": "man standing at the hull of a {}"
+ },
+ {
+ "index": 266,
+ "image_id": 2371288,
+ "entity": "boat",
+ "caption": "The birds are following the boat.",
+ "question": [
+ "are there the birds ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The birds are following the {}."
+ },
+ {
+ "index": 267,
+ "image_id": 2371288,
+ "entity": "boat",
+ "caption": "The people are standing on the boat.",
+ "question": [
+ "are there the people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The people are standing on the {}."
+ },
+ {
+ "index": 268,
+ "image_id": 2371288,
+ "entity": "boat",
+ "caption": "birds flying around boat",
+ "question": [
+ "are there birds ?"
+ ],
+ "prompt": "birds flying around {}"
+ },
+ {
+ "index": 269,
+ "image_id": 2371288,
+ "entity": "boat",
+ "caption": "birds flying around shrimpers boat",
+ "question": [
+ "are there birds ?",
+ "are there shrimpers ?"
+ ],
+ "prompt": "birds flying around shrimpers {}"
+ },
+ {
+ "index": 270,
+ "image_id": 2371288,
+ "entity": "boat",
+ "caption": "three men are visible on the boat",
+ "question": [
+ "are there three men ?",
+ "is there the boat ?"
+ ],
+ "prompt": "three men are visible on the {}"
+ },
+ {
+ "index": 271,
+ "image_id": 2371288,
+ "entity": "boat",
+ "caption": "the boat has caused some waves in the water",
+ "question": [
+ "is there the boat ?",
+ "are there some waves ?",
+ "is there the water ?"
+ ],
+ "prompt": "the {} has caused some waves in the water"
+ },
+ {
+ "index": 272,
+ "image_id": 2371137,
+ "entity": "boat",
+ "caption": "The name says \" MAVIS\" on boat",
+ "question": [
+ "is there the name ?",
+ "is there boat ?"
+ ],
+ "prompt": "The name says \" MAVIS\" on {}"
+ },
+ {
+ "index": 273,
+ "image_id": 2371004,
+ "entity": "boat",
+ "caption": "The sailboats all have tall masts",
+ "question": [
+ "are there the sailboats ?",
+ "are there tall masts ?"
+ ],
+ "prompt": "The sail{}s all have tall masts"
+ },
+ {
+ "index": 274,
+ "image_id": 2370993,
+ "entity": "boat",
+ "caption": "boat has wooden floor",
+ "question": [
+ "is there boat ?",
+ "is there wooden floor ?"
+ ],
+ "prompt": "{} has wooden floor"
+ },
+ {
+ "index": 275,
+ "image_id": 2370335,
+ "entity": "boat",
+ "caption": "MAMA written on side of boat",
+ "question": [
+ "is there mama ?",
+ "is there side ?",
+ "is there boat ?"
+ ],
+ "prompt": "MAMA written on side of {}"
+ },
+ {
+ "index": 276,
+ "image_id": 2370335,
+ "entity": "boat",
+ "caption": "boat is on a trailer",
+ "question": [
+ "is there boat ?",
+ "is there a trailer ?"
+ ],
+ "prompt": "{} is on a trailer"
+ },
+ {
+ "index": 277,
+ "image_id": 2370335,
+ "entity": "boat",
+ "caption": "A boat is on a trailer",
+ "question": [
+ "is there a boat ?",
+ "is there a trailer ?"
+ ],
+ "prompt": "A {} is on a trailer"
+ },
+ {
+ "index": 278,
+ "image_id": 2370335,
+ "entity": "boat",
+ "caption": "The boat is at somebody's home",
+ "question": [
+ "is there the boat ?",
+ "is there somebody's home ?"
+ ],
+ "prompt": "The {} is at somebody's home"
+ },
+ {
+ "index": 279,
+ "image_id": 2369706,
+ "entity": "boat",
+ "caption": "boat docked at the harbor",
+ "question": [
+ "is there boat ?",
+ "is there the harbor ?"
+ ],
+ "prompt": "{} docked at the harbor"
+ },
+ {
+ "index": 280,
+ "image_id": 2368857,
+ "entity": "boat",
+ "caption": "The boats have tall sails ",
+ "question": [
+ "are there the boats ?",
+ "are there tall sails ?"
+ ],
+ "prompt": "The {}s have tall sails "
+ },
+ {
+ "index": 281,
+ "image_id": 2368689,
+ "entity": "boat",
+ "caption": "TGI painted on the side of the boat",
+ "question": [
+ "is there the side ?",
+ "is there the boat ?"
+ ],
+ "prompt": "TGI painted on the side of the {}"
+ },
+ {
+ "index": 282,
+ "image_id": 2368436,
+ "entity": "boat",
+ "caption": "Bananas are in a boat",
+ "question": [
+ "are there bananas ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Bananas are in a {}"
+ },
+ {
+ "index": 283,
+ "image_id": 2368415,
+ "entity": "boat",
+ "caption": "dog that's standing on a boat",
+ "question": [
+ "is there dog ?",
+ "is there a boat ?"
+ ],
+ "prompt": "dog that's standing on a {}"
+ },
+ {
+ "index": 284,
+ "image_id": 2368415,
+ "entity": "boat",
+ "caption": "water that boats are sitting in",
+ "question": [
+ "is there water ?",
+ "are there boats ?"
+ ],
+ "prompt": "water that {}s are sitting in"
+ },
+ {
+ "index": 285,
+ "image_id": 2368415,
+ "entity": "boat",
+ "caption": "boat brown dog is standing on",
+ "question": [
+ "is there boat brown dog ?"
+ ],
+ "prompt": "{} brown dog is standing on"
+ },
+ {
+ "index": 286,
+ "image_id": 2368415,
+ "entity": "boat",
+ "caption": "metal loop hanging on boat",
+ "question": [
+ "is there metal loop ?",
+ "is there boat ?"
+ ],
+ "prompt": "metal loop hanging on {}"
+ },
+ {
+ "index": 287,
+ "image_id": 2368054,
+ "entity": "boat",
+ "caption": "The dog feet is on the boat.",
+ "question": [
+ "are there the dog feet ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The dog feet is on the {}."
+ },
+ {
+ "index": 288,
+ "image_id": 2368009,
+ "entity": "boat",
+ "caption": "rope ties boat to the dock",
+ "question": [
+ "are there rope ties boat ?",
+ "is there the dock ?"
+ ],
+ "prompt": "rope ties {} to the dock"
+ },
+ {
+ "index": 289,
+ "image_id": 2368009,
+ "entity": "boat",
+ "caption": "fire extinguishers on beard a boat",
+ "question": [
+ "are there fire extinguishers ?",
+ "is there a boat ?"
+ ],
+ "prompt": "fire extinguishers on beard a {}"
+ },
+ {
+ "index": 290,
+ "image_id": 2367819,
+ "entity": "boat",
+ "caption": "two people are still on the boat",
+ "question": [
+ "are there two people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "two people are still on the {}"
+ },
+ {
+ "index": 291,
+ "image_id": 2367673,
+ "entity": "boat",
+ "caption": "a blue boat tied to a dock",
+ "question": [
+ "is there a blue boat ?",
+ "is there a dock ?"
+ ],
+ "prompt": "a blue {} tied to a dock"
+ },
+ {
+ "index": 292,
+ "image_id": 2367673,
+ "entity": "boat",
+ "caption": "a white boat tied to a dock",
+ "question": [
+ "is there a white boat ?",
+ "is there a dock ?"
+ ],
+ "prompt": "a white {} tied to a dock"
+ },
+ {
+ "index": 293,
+ "image_id": 2367655,
+ "entity": "boat",
+ "caption": "Blue and white boat floating in water",
+ "question": [
+ "is there blue and white boat ?",
+ "is there water ?"
+ ],
+ "prompt": "Blue and white {} floating in water"
+ },
+ {
+ "index": 294,
+ "image_id": 2367655,
+ "entity": "boat",
+ "caption": "water pouring out the back of a boat.",
+ "question": [
+ "is there water ?",
+ "is there the back ?",
+ "is there a boat ?"
+ ],
+ "prompt": "water pouring out the back of a {}."
+ },
+ {
+ "index": 295,
+ "image_id": 2367579,
+ "entity": "boat",
+ "caption": "man driving a boat",
+ "question": [
+ "is there man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "man driving a {}"
+ },
+ {
+ "index": 296,
+ "image_id": 2365612,
+ "entity": "boat",
+ "caption": "the bike is leaning on the boat ",
+ "question": [
+ "is there the bike ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the bike is leaning on the {} "
+ },
+ {
+ "index": 297,
+ "image_id": 2365530,
+ "entity": "boat",
+ "caption": "The white lettering of the word WAVE on the boat. ",
+ "question": [
+ "is there the white lettering ?",
+ "is there the word wave ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The white lettering of the word WAVE on the {}. "
+ },
+ {
+ "index": 298,
+ "image_id": 2365530,
+ "entity": "boat",
+ "caption": "Grey hair on a man bent over the boat. ",
+ "question": [
+ "is there grey hair ?",
+ "is there a man ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Grey hair on a man bent over the {}. "
+ },
+ {
+ "index": 299,
+ "image_id": 2365530,
+ "entity": "boat",
+ "caption": "The black and white side of a boat that says NEXT WAVE",
+ "question": [
+ "is there the black and white side ?",
+ "is there a boat ?"
+ ],
+ "prompt": "The black and white side of a {} that says NEXT WAVE"
+ },
+ {
+ "index": 300,
+ "image_id": 2365530,
+ "entity": "boat",
+ "caption": "The boat says \"Next wave\"",
+ "question": [
+ "is there the boat ?",
+ "is there next wave ?"
+ ],
+ "prompt": "The {} says \"Next wave\""
+ },
+ {
+ "index": 301,
+ "image_id": 2365530,
+ "entity": "boat",
+ "caption": "A rolled up mast on the boat",
+ "question": [
+ "is there a rolled up mast ?",
+ "is there the boat ?"
+ ],
+ "prompt": "A rolled up mast on the {}"
+ },
+ {
+ "index": 302,
+ "image_id": 2365310,
+ "entity": "boat",
+ "caption": "lorries packed near the boats",
+ "question": [
+ "are there lorries ?",
+ "are there the boats ?"
+ ],
+ "prompt": "lorries packed near the {}s"
+ },
+ {
+ "index": 303,
+ "image_id": 2365007,
+ "entity": "boat",
+ "caption": "water where boats are docks",
+ "question": [
+ "is there water ?",
+ "are there boats ?",
+ "are there docks ?"
+ ],
+ "prompt": "water where {}s are docks"
+ },
+ {
+ "index": 304,
+ "image_id": 2364291,
+ "entity": "boat",
+ "caption": "the tire is on the boat",
+ "question": [
+ "is there the tire ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the tire is on the {}"
+ },
+ {
+ "index": 305,
+ "image_id": 2364078,
+ "entity": "boat",
+ "caption": "White chain round a boat",
+ "question": [
+ "is there a boat ?"
+ ],
+ "prompt": "White chain round a {}"
+ },
+ {
+ "index": 306,
+ "image_id": 2364078,
+ "entity": "boat",
+ "caption": "The sailboat has a tall mast.",
+ "question": [
+ "is there the sailboat ?",
+ "is there a tall mast ?"
+ ],
+ "prompt": "The sail{} has a tall mast."
+ },
+ {
+ "index": 307,
+ "image_id": 2364078,
+ "entity": "boat",
+ "caption": "A boat is moving in the water behind the boat.",
+ "question": [
+ "is there a boat ?",
+ "is there the water ?",
+ "is there the boat ?"
+ ],
+ "prompt": "A {} is moving in the water behind the {}."
+ },
+ {
+ "index": 308,
+ "image_id": 2362967,
+ "entity": "boat",
+ "caption": "a boat tied to shore",
+ "question": [
+ "is there a boat ?",
+ "is there shore ?"
+ ],
+ "prompt": "a {} tied to shore"
+ },
+ {
+ "index": 309,
+ "image_id": 2362967,
+ "entity": "boat",
+ "caption": "boat docked on river",
+ "question": [
+ "is there boat ?",
+ "is there river ?"
+ ],
+ "prompt": "{} docked on river"
+ },
+ {
+ "index": 310,
+ "image_id": 2362967,
+ "entity": "boat",
+ "caption": "ther boat is white in color ",
+ "question": [
+ "is there ther boat ?",
+ "is there color ?"
+ ],
+ "prompt": "ther {} is white in color "
+ },
+ {
+ "index": 311,
+ "image_id": 2362967,
+ "entity": "boat",
+ "caption": "the boat is white in color",
+ "question": [
+ "is there the boat ?",
+ "is there color ?"
+ ],
+ "prompt": "the {} is white in color"
+ },
+ {
+ "index": 312,
+ "image_id": 2362871,
+ "entity": "boat",
+ "caption": "blue boat hanging on side of ship",
+ "question": [
+ "is there blue boat ?",
+ "is there side ?",
+ "is there ship ?"
+ ],
+ "prompt": "blue {} hanging on side of ship"
+ },
+ {
+ "index": 313,
+ "image_id": 2362329,
+ "entity": "boat",
+ "caption": "front end of boat opened up",
+ "question": [
+ "is there front end ?",
+ "is there boat ?"
+ ],
+ "prompt": "front end of {} opened up"
+ },
+ {
+ "index": 314,
+ "image_id": 2362280,
+ "entity": "boat",
+ "caption": "name of boat painted in white",
+ "question": [
+ "is there name ?",
+ "is there boat ?",
+ "is there white ?"
+ ],
+ "prompt": "name of {} painted in white"
+ },
+ {
+ "index": 315,
+ "image_id": 2362280,
+ "entity": "boat",
+ "caption": "two black rubber tires mounted on boat",
+ "question": [
+ "are there two black rubber tires ?",
+ "is there boat ?"
+ ],
+ "prompt": "two black rubber tires mounted on {}"
+ },
+ {
+ "index": 316,
+ "image_id": 2362246,
+ "entity": "boat",
+ "caption": "a river with a lot of boats docked in it",
+ "question": [
+ "is there a river ?",
+ "is there a lot ?",
+ "are there boats ?"
+ ],
+ "prompt": "a river with a lot of {}s docked in it"
+ },
+ {
+ "index": 317,
+ "image_id": 2362239,
+ "entity": "boat",
+ "caption": "Man kneeling down on boat. ",
+ "question": [
+ "is there man ?",
+ "is there boat ?"
+ ],
+ "prompt": "Man kneeling down on {}. "
+ },
+ {
+ "index": 318,
+ "image_id": 2361892,
+ "entity": "boat",
+ "caption": "the lady is in a boat",
+ "question": [
+ "is there the lady ?",
+ "is there a boat ?"
+ ],
+ "prompt": "the lady is in a {}"
+ },
+ {
+ "index": 319,
+ "image_id": 2361892,
+ "entity": "boat",
+ "caption": "small boat sailing on water",
+ "question": [
+ "is there small boat ?",
+ "is there water ?"
+ ],
+ "prompt": "small {} sailing on water"
+ },
+ {
+ "index": 320,
+ "image_id": 2361742,
+ "entity": "boat",
+ "caption": "Rope attached to front of boat",
+ "question": [
+ "is there rope ?",
+ "is there front ?",
+ "is there boat ?"
+ ],
+ "prompt": "Rope attached to front of {}"
+ },
+ {
+ "index": 321,
+ "image_id": 2361562,
+ "entity": "boat",
+ "caption": "the cat is on the boat",
+ "question": [
+ "is there the cat ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the cat is on the {}"
+ },
+ {
+ "index": 322,
+ "image_id": 2361562,
+ "entity": "boat",
+ "caption": "the boat is at a port",
+ "question": [
+ "is there the boat ?",
+ "is there a port ?"
+ ],
+ "prompt": "the {} is at a port"
+ },
+ {
+ "index": 323,
+ "image_id": 2361562,
+ "entity": "boat",
+ "caption": "the cat stands on the boat",
+ "question": [
+ "is there the cat ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the cat stands on the {}"
+ },
+ {
+ "index": 324,
+ "image_id": 2361562,
+ "entity": "boat",
+ "caption": "Cat is standing on back of boat.",
+ "question": [
+ "is there cat ?",
+ "is there boat ?"
+ ],
+ "prompt": "Cat is standing on back of {}."
+ },
+ {
+ "index": 325,
+ "image_id": 2361562,
+ "entity": "boat",
+ "caption": "boat capsized in water",
+ "question": [
+ "is there boat ?",
+ "is there water ?"
+ ],
+ "prompt": "{} capsized in water"
+ },
+ {
+ "index": 326,
+ "image_id": 2361536,
+ "entity": "boat",
+ "caption": "cows are near a boat",
+ "question": [
+ "are there cows ?",
+ "is there a boat ?"
+ ],
+ "prompt": "cows are near a {}"
+ },
+ {
+ "index": 327,
+ "image_id": 2361359,
+ "entity": "boat",
+ "caption": "A motor is on the boat",
+ "question": [
+ "is there a motor ?",
+ "is there the boat ?"
+ ],
+ "prompt": "A motor is on the {}"
+ },
+ {
+ "index": 328,
+ "image_id": 2359602,
+ "entity": "boat",
+ "caption": "A log is keeping the boat off the ground.",
+ "question": [
+ "is there a log ?",
+ "is there the boat ?",
+ "is there the ground ?"
+ ],
+ "prompt": "A log is keeping the {} off the ground."
+ },
+ {
+ "index": 329,
+ "image_id": 2359008,
+ "entity": "boat",
+ "caption": "Sail boat docked at marina.",
+ "question": [
+ "is there sail boat ?",
+ "is there marina ?"
+ ],
+ "prompt": "Sail {} docked at marina."
+ },
+ {
+ "index": 330,
+ "image_id": 2359008,
+ "entity": "boat",
+ "caption": "White sail boat docked in water.",
+ "question": [
+ "is there white sail boat ?",
+ "is there water ?"
+ ],
+ "prompt": "White sail {} docked in water."
+ },
+ {
+ "index": 331,
+ "image_id": 2358936,
+ "entity": "boat",
+ "caption": "a dog is on the boat",
+ "question": [
+ "is there a dog ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a dog is on the {}"
+ },
+ {
+ "index": 332,
+ "image_id": 2358604,
+ "entity": "boat",
+ "caption": "people are on the boat",
+ "question": [
+ "are there people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "people are on the {}"
+ },
+ {
+ "index": 333,
+ "image_id": 2357802,
+ "entity": "boat",
+ "caption": "The people are on a boat on a lake",
+ "question": [
+ "are there the people ?",
+ "is there a boat ?",
+ "is there a lake ?"
+ ],
+ "prompt": "The people are on a {} on a lake"
+ },
+ {
+ "index": 334,
+ "image_id": 2357398,
+ "entity": "boat",
+ "caption": "two woman walking on a boat",
+ "question": [
+ "is there two woman ?",
+ "is there a boat ?"
+ ],
+ "prompt": "two woman walking on a {}"
+ },
+ {
+ "index": 335,
+ "image_id": 2357398,
+ "entity": "boat",
+ "caption": "the top of the boat is wood",
+ "question": [
+ "is there the top ?",
+ "is there the boat ?",
+ "is there wood ?"
+ ],
+ "prompt": "the top of the {} is wood"
+ },
+ {
+ "index": 336,
+ "image_id": 2357118,
+ "entity": "boat",
+ "caption": "Person sitting inside of boat.",
+ "question": [
+ "is there person ?",
+ "is there boat ?"
+ ],
+ "prompt": "Person sitting inside of {}."
+ },
+ {
+ "index": 337,
+ "image_id": 2357118,
+ "entity": "boat",
+ "caption": "the sun is on the boat",
+ "question": [
+ "is there the sun ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the sun is on the {}"
+ },
+ {
+ "index": 338,
+ "image_id": 2355707,
+ "entity": "boat",
+ "caption": "The boat has 3 windows",
+ "question": [
+ "is there the boat ?",
+ "are there 3 windows ?"
+ ],
+ "prompt": "The {} has 3 windows"
+ },
+ {
+ "index": 339,
+ "image_id": 2355505,
+ "entity": "boat",
+ "caption": "Box on a boat oar",
+ "question": [
+ "is there a boat ?"
+ ],
+ "prompt": "Box on a {} oar"
+ },
+ {
+ "index": 340,
+ "image_id": 2355505,
+ "entity": "boat",
+ "caption": "Flag hanging from a boat.",
+ "question": [
+ "is there flag ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Flag hanging from a {}."
+ },
+ {
+ "index": 341,
+ "image_id": 2355361,
+ "entity": "boat",
+ "caption": "two triangle shaped white sails on sailboat",
+ "question": [
+ "is there two triangle ?",
+ "are there white sails ?",
+ "is there sailboat ?"
+ ],
+ "prompt": "two triangle shaped white sails on sail{}"
+ },
+ {
+ "index": 342,
+ "image_id": 2355027,
+ "entity": "boat",
+ "caption": "boat pulled up to dock",
+ "question": [
+ "is there boat ?",
+ "is there dock ?"
+ ],
+ "prompt": "{} pulled up to dock"
+ },
+ {
+ "index": 343,
+ "image_id": 2355027,
+ "entity": "boat",
+ "caption": "boat has flagpole on back",
+ "question": [
+ "is there boat ?",
+ "is there flagpole ?"
+ ],
+ "prompt": "{} has flagpole on back"
+ },
+ {
+ "index": 344,
+ "image_id": 2355027,
+ "entity": "boat",
+ "caption": "flag stuck into a boat",
+ "question": [
+ "is there flag ?",
+ "is there a boat ?"
+ ],
+ "prompt": "flag stuck into a {}"
+ },
+ {
+ "index": 345,
+ "image_id": 2354959,
+ "entity": "boat",
+ "caption": "green moss growing on the side of the boat",
+ "question": [
+ "is there green moss ?",
+ "is there the side ?",
+ "is there the boat ?"
+ ],
+ "prompt": "green moss growing on the side of the {}"
+ },
+ {
+ "index": 346,
+ "image_id": 2354939,
+ "entity": "boat",
+ "caption": "the sailboat is white",
+ "question": [
+ "is there the sailboat ?"
+ ],
+ "prompt": "the sail{} is white"
+ },
+ {
+ "index": 347,
+ "image_id": 2354939,
+ "entity": "boat",
+ "caption": "a small boat sailing",
+ "question": [
+ "is there a small boat ?"
+ ],
+ "prompt": "a small {} sailing"
+ },
+ {
+ "index": 348,
+ "image_id": 2354714,
+ "entity": "boat",
+ "caption": "The life preserver on the front of the boat.",
+ "question": [
+ "is there the life preserver ?",
+ "is there the front ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The life preserver on the front of the {}."
+ },
+ {
+ "index": 349,
+ "image_id": 2354714,
+ "entity": "boat",
+ "caption": "this is a boat ",
+ "question": [
+ "is there a boat ?"
+ ],
+ "prompt": "this is a {} "
+ },
+ {
+ "index": 350,
+ "image_id": 2354714,
+ "entity": "boat",
+ "caption": "waves stirred up by white boat",
+ "question": [
+ "are there waves ?",
+ "is there white boat ?"
+ ],
+ "prompt": "waves stirred up by white {}"
+ },
+ {
+ "index": 351,
+ "image_id": 2354714,
+ "entity": "boat",
+ "caption": "red and white flag waving on boat",
+ "question": [
+ "is there red and white flag ?",
+ "is there boat ?"
+ ],
+ "prompt": "red and white flag waving on {}"
+ },
+ {
+ "index": 352,
+ "image_id": 2354714,
+ "entity": "boat",
+ "caption": "tan rope hanging on rail of boat",
+ "question": [
+ "is there rail ?",
+ "is there boat ?"
+ ],
+ "prompt": "tan rope hanging on rail of {}"
+ },
+ {
+ "index": 353,
+ "image_id": 2354458,
+ "entity": "boat",
+ "caption": "Tire hanging from boat",
+ "question": [
+ "is there tire ?",
+ "is there boat ?"
+ ],
+ "prompt": "Tire hanging from {}"
+ },
+ {
+ "index": 354,
+ "image_id": 2354458,
+ "entity": "boat",
+ "caption": "Silva Lopes is the name of boat",
+ "question": [
+ "are there silva lopes ?",
+ "is there the name ?",
+ "is there boat ?"
+ ],
+ "prompt": "Silva Lopes is the name of {}"
+ },
+ {
+ "index": 355,
+ "image_id": 2354402,
+ "entity": "boat",
+ "caption": "woman sitting on boat bow",
+ "question": [
+ "is there woman ?",
+ "is there boat bow ?"
+ ],
+ "prompt": "woman sitting on {} bow"
+ },
+ {
+ "index": 356,
+ "image_id": 2354402,
+ "entity": "boat",
+ "caption": "Person is barefoot on boat.",
+ "question": [
+ "is there person ?",
+ "is there boat ?"
+ ],
+ "prompt": "Person is barefoot on {}."
+ },
+ {
+ "index": 357,
+ "image_id": 2354402,
+ "entity": "boat",
+ "caption": "Person sitting on boat.",
+ "question": [
+ "is there person ?",
+ "is there boat ?"
+ ],
+ "prompt": "Person sitting on {}."
+ },
+ {
+ "index": 358,
+ "image_id": 2354402,
+ "entity": "boat",
+ "caption": "Wood boat floating in water.",
+ "question": [
+ "is there wood boat ?",
+ "is there water ?"
+ ],
+ "prompt": "Wood {} floating in water."
+ },
+ {
+ "index": 359,
+ "image_id": 2354178,
+ "entity": "boat",
+ "caption": "a flag is on the boat",
+ "question": [
+ "is there a flag ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a flag is on the {}"
+ },
+ {
+ "index": 360,
+ "image_id": 2354178,
+ "entity": "boat",
+ "caption": "a small boat is on the water",
+ "question": [
+ "is there a small boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "a small {} is on the water"
+ },
+ {
+ "index": 361,
+ "image_id": 2354178,
+ "entity": "boat",
+ "caption": "people standing close to the boat",
+ "question": [
+ "are there people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "people standing close to the {}"
+ },
+ {
+ "index": 362,
+ "image_id": 2354017,
+ "entity": "boat",
+ "caption": "The rolled up sail of the boat.",
+ "question": [
+ "is there the rolled up sail ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The rolled up sail of the {}."
+ },
+ {
+ "index": 363,
+ "image_id": 2353866,
+ "entity": "boat",
+ "caption": "boat pulled at dock",
+ "question": [
+ "is there boat ?",
+ "is there dock ?"
+ ],
+ "prompt": "{} pulled at dock"
+ },
+ {
+ "index": 364,
+ "image_id": 2353866,
+ "entity": "boat",
+ "caption": "boat has overhead tent",
+ "question": [
+ "is there boat ?",
+ "is there overhead tent ?"
+ ],
+ "prompt": "{} has overhead tent"
+ },
+ {
+ "index": 365,
+ "image_id": 2353358,
+ "entity": "boat",
+ "caption": "red life save on boat",
+ "question": [
+ "is there red life ?",
+ "is there boat ?"
+ ],
+ "prompt": "red life save on {}"
+ },
+ {
+ "index": 366,
+ "image_id": 2353358,
+ "entity": "boat",
+ "caption": "rope hanging from boat",
+ "question": [
+ "is there rope ?",
+ "is there boat ?"
+ ],
+ "prompt": "rope hanging from {}"
+ },
+ {
+ "index": 367,
+ "image_id": 2353358,
+ "entity": "boat",
+ "caption": "rope attached to boat",
+ "question": [
+ "is there rope ?",
+ "is there boat ?"
+ ],
+ "prompt": "rope attached to {}"
+ },
+ {
+ "index": 368,
+ "image_id": 2353153,
+ "entity": "boat",
+ "caption": "the boat has a red covering",
+ "question": [
+ "is there the boat ?",
+ "is there a red covering ?"
+ ],
+ "prompt": "the {} has a red covering"
+ },
+ {
+ "index": 369,
+ "image_id": 2352684,
+ "entity": "boat",
+ "caption": "metal post and boat reflected in the water",
+ "question": [
+ "is there metal post ?",
+ "is there boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "metal post and {} reflected in the water"
+ },
+ {
+ "index": 370,
+ "image_id": 2352424,
+ "entity": "boat",
+ "caption": "yellow mast stick up out of a boat",
+ "question": [
+ "is there yellow mast ?",
+ "is there a boat ?"
+ ],
+ "prompt": "yellow mast stick up out of a {}"
+ },
+ {
+ "index": 371,
+ "image_id": 2351791,
+ "entity": "boat",
+ "caption": "The man and woman are in a boat.",
+ "question": [
+ "is there the man ?",
+ "is there woman ?",
+ "is there a boat ?"
+ ],
+ "prompt": "The man and woman are in a {}."
+ },
+ {
+ "index": 372,
+ "image_id": 2351791,
+ "entity": "boat",
+ "caption": "Woman sitting on boat.",
+ "question": [
+ "is there woman ?",
+ "is there boat ?"
+ ],
+ "prompt": "Woman sitting on {}."
+ },
+ {
+ "index": 373,
+ "image_id": 2351791,
+ "entity": "boat",
+ "caption": "handle of a boat oar",
+ "question": [
+ "is there handle ?",
+ "is there a boat ?"
+ ],
+ "prompt": "handle of a {} oar"
+ },
+ {
+ "index": 374,
+ "image_id": 2351188,
+ "entity": "boat",
+ "caption": "People stand next to the boat",
+ "question": [
+ "are there people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "People stand next to the {}"
+ },
+ {
+ "index": 375,
+ "image_id": 2351188,
+ "entity": "boat",
+ "caption": "Bicycles are on the boat",
+ "question": [
+ "are there bicycles ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Bicycles are on the {}"
+ },
+ {
+ "index": 376,
+ "image_id": 2351016,
+ "entity": "boat",
+ "caption": "boat is floating in water",
+ "question": [
+ "is there boat ?",
+ "is there water ?"
+ ],
+ "prompt": "{} is floating in water"
+ },
+ {
+ "index": 377,
+ "image_id": 2351016,
+ "entity": "boat",
+ "caption": "rope tied to boat",
+ "question": [
+ "is there rope ?",
+ "is there boat ?"
+ ],
+ "prompt": "rope tied to {}"
+ },
+ {
+ "index": 378,
+ "image_id": 2350876,
+ "entity": "boat",
+ "caption": "the rope hanging off of the boat",
+ "question": [
+ "is there the rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the rope hanging off of the {}"
+ },
+ {
+ "index": 379,
+ "image_id": 2350876,
+ "entity": "boat",
+ "caption": "boat docked on shore ",
+ "question": [
+ "is there boat ?",
+ "is there shore ?"
+ ],
+ "prompt": "{} docked on shore "
+ },
+ {
+ "index": 380,
+ "image_id": 2350876,
+ "entity": "boat",
+ "caption": "red rope attached to boat ",
+ "question": [
+ "is there red rope ?",
+ "is there boat ?"
+ ],
+ "prompt": "red rope attached to {} "
+ },
+ {
+ "index": 381,
+ "image_id": 2350876,
+ "entity": "boat",
+ "caption": "rope attached to boat ",
+ "question": [
+ "is there rope ?",
+ "is there boat ?"
+ ],
+ "prompt": "rope attached to {} "
+ },
+ {
+ "index": 382,
+ "image_id": 2350779,
+ "entity": "boat",
+ "caption": "rope tied to a small boat",
+ "question": [
+ "is there rope ?",
+ "is there a small boat ?"
+ ],
+ "prompt": "rope tied to a small {}"
+ },
+ {
+ "index": 383,
+ "image_id": 2350779,
+ "entity": "boat",
+ "caption": "a floating tire mounted on boat",
+ "question": [
+ "is there a floating tire ?",
+ "is there boat ?"
+ ],
+ "prompt": "a floating tire mounted on {}"
+ },
+ {
+ "index": 384,
+ "image_id": 2350779,
+ "entity": "boat",
+ "caption": "two boats mounted by a rope",
+ "question": [
+ "are there two boats ?",
+ "is there a rope ?"
+ ],
+ "prompt": "two {}s mounted by a rope"
+ },
+ {
+ "index": 385,
+ "image_id": 2350779,
+ "entity": "boat",
+ "caption": "rope holding two boats",
+ "question": [
+ "is there rope ?",
+ "are there two boats ?"
+ ],
+ "prompt": "rope holding two {}s"
+ },
+ {
+ "index": 386,
+ "image_id": 2350304,
+ "entity": "boat",
+ "caption": "A boat that has a lot of books on it. ",
+ "question": [
+ "is there a boat ?",
+ "is there a lot ?",
+ "are there books ?"
+ ],
+ "prompt": "A {} that has a lot of books on it. "
+ },
+ {
+ "index": 387,
+ "image_id": 2349748,
+ "entity": "boat",
+ "caption": "Man drivng a boat.",
+ "question": [
+ "is there man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Man drivng a {}."
+ },
+ {
+ "index": 388,
+ "image_id": 2349748,
+ "entity": "boat",
+ "caption": "Woman standing in the boat.",
+ "question": [
+ "is there woman ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Woman standing in the {}."
+ },
+ {
+ "index": 389,
+ "image_id": 2349440,
+ "entity": "boat",
+ "caption": "American flag hanging from the boat",
+ "question": [
+ "is there american flag ?",
+ "is there the boat ?"
+ ],
+ "prompt": "American flag hanging from the {}"
+ },
+ {
+ "index": 390,
+ "image_id": 2349440,
+ "entity": "boat",
+ "caption": "The boat has a yellow logo on it ",
+ "question": [
+ "is there the boat ?",
+ "is there a yellow logo ?"
+ ],
+ "prompt": "The {} has a yellow logo on it "
+ },
+ {
+ "index": 391,
+ "image_id": 2348095,
+ "entity": "boat",
+ "caption": "red rope budled on the boat",
+ "question": [
+ "is there red rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "red rope budled on the {}"
+ },
+ {
+ "index": 392,
+ "image_id": 2348078,
+ "entity": "boat",
+ "caption": "the people are standing beside a boat",
+ "question": [
+ "are there the people ?",
+ "is there a boat ?"
+ ],
+ "prompt": "the people are standing beside a {}"
+ },
+ {
+ "index": 393,
+ "image_id": 2347906,
+ "entity": "boat",
+ "caption": "boat pulled to dock",
+ "question": [
+ "is there boat ?",
+ "is there dock ?"
+ ],
+ "prompt": "{} pulled to dock"
+ },
+ {
+ "index": 394,
+ "image_id": 2347681,
+ "entity": "boat",
+ "caption": "the can next to the boat",
+ "question": [
+ "is there the boat ?"
+ ],
+ "prompt": "the can next to the {}"
+ },
+ {
+ "index": 395,
+ "image_id": 2347233,
+ "entity": "boat",
+ "caption": "the rope tied to the boat",
+ "question": [
+ "is there the rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the rope tied to the {}"
+ },
+ {
+ "index": 396,
+ "image_id": 2346193,
+ "entity": "boat",
+ "caption": "top of boat is white",
+ "question": [
+ "is there top ?",
+ "is there boat ?"
+ ],
+ "prompt": "top of {} is white"
+ },
+ {
+ "index": 397,
+ "image_id": 2345781,
+ "entity": "boat",
+ "caption": "A thick rope attached to a boat",
+ "question": [
+ "is there a thick rope ?",
+ "is there a boat ?"
+ ],
+ "prompt": "A thick rope attached to a {}"
+ },
+ {
+ "index": 398,
+ "image_id": 2345781,
+ "entity": "boat",
+ "caption": "boat is in the water",
+ "question": [
+ "is there boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "{} is in the water"
+ },
+ {
+ "index": 399,
+ "image_id": 2345272,
+ "entity": "boat",
+ "caption": "2 black dogs are on the boat",
+ "question": [
+ "are there 2 black dogs ?",
+ "is there the boat ?"
+ ],
+ "prompt": "2 black dogs are on the {}"
+ },
+ {
+ "index": 400,
+ "image_id": 2345272,
+ "entity": "boat",
+ "caption": "a man stands on the boat holding a dog with a leash",
+ "question": [
+ "is there a man ?",
+ "is there the boat ?",
+ "is there a dog ?",
+ "is there a leash ?"
+ ],
+ "prompt": "a man stands on the {} holding a dog with a leash"
+ },
+ {
+ "index": 401,
+ "image_id": 2345019,
+ "entity": "boat",
+ "caption": "The man is standing in the boat.",
+ "question": [
+ "is there the man ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The man is standing in the {}."
+ },
+ {
+ "index": 402,
+ "image_id": 2344745,
+ "entity": "boat",
+ "caption": "Woman dumping water out of boat",
+ "question": [
+ "is there woman ?",
+ "is there water ?",
+ "is there boat ?"
+ ],
+ "prompt": "Woman dumping water out of {}"
+ },
+ {
+ "index": 403,
+ "image_id": 2344677,
+ "entity": "boat",
+ "caption": "An owner holding her dog over the boat so it can have a view of the water.",
+ "question": [
+ "is there an owner ?",
+ "is there her dog ?",
+ "is there the boat ?",
+ "is there a view ?",
+ "is there the water ?"
+ ],
+ "prompt": "An owner holding her dog over the {} so it can have a view of the water."
+ },
+ {
+ "index": 404,
+ "image_id": 2344627,
+ "entity": "boat",
+ "caption": "a boat is by the dock",
+ "question": [
+ "is there a boat ?",
+ "is there the dock ?"
+ ],
+ "prompt": "a {} is by the dock"
+ },
+ {
+ "index": 405,
+ "image_id": 2344618,
+ "entity": "boat",
+ "caption": "a boat dock on the water",
+ "question": [
+ "is there a boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "a {} dock on the water"
+ },
+ {
+ "index": 406,
+ "image_id": 2343974,
+ "entity": "boat",
+ "caption": "tires attached to boat are black",
+ "question": [
+ "are there tires ?",
+ "is there boat ?"
+ ],
+ "prompt": "tires attached to {} are black"
+ },
+ {
+ "index": 407,
+ "image_id": 2343968,
+ "entity": "boat",
+ "caption": "the boats are in water ",
+ "question": [
+ "are there the boats ?",
+ "is there water ?"
+ ],
+ "prompt": "the {}s are in water "
+ },
+ {
+ "index": 408,
+ "image_id": 2343968,
+ "entity": "boat",
+ "caption": "the buskets are in the boat ",
+ "question": [
+ "are there the buskets ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the buskets are in the {} "
+ },
+ {
+ "index": 409,
+ "image_id": 2343968,
+ "entity": "boat",
+ "caption": "The kid on the large boat that is sitting down.",
+ "question": [
+ "is there the kid ?",
+ "is there the large boat ?"
+ ],
+ "prompt": "The kid on the large {} that is sitting down."
+ },
+ {
+ "index": 410,
+ "image_id": 2343968,
+ "entity": "boat",
+ "caption": "The long boat the two kids are on.",
+ "question": [
+ "is there the long boat ?",
+ "are there the two kids ?"
+ ],
+ "prompt": "The long {} the two kids are on."
+ },
+ {
+ "index": 411,
+ "image_id": 2343749,
+ "entity": "boat",
+ "caption": "boat docked at the shore",
+ "question": [
+ "is there boat ?",
+ "is there the shore ?"
+ ],
+ "prompt": "{} docked at the shore"
+ },
+ {
+ "index": 412,
+ "image_id": 2343527,
+ "entity": "boat",
+ "caption": "water splashing on back of boat ",
+ "question": [
+ "is there back ?",
+ "is there boat ?"
+ ],
+ "prompt": "water splashing on back of {} "
+ },
+ {
+ "index": 413,
+ "image_id": 2343527,
+ "entity": "boat",
+ "caption": "rudder is on the back of the boat",
+ "question": [
+ "is there rudder ?",
+ "is there the back ?",
+ "is there the boat ?"
+ ],
+ "prompt": "rudder is on the back of the {}"
+ },
+ {
+ "index": 414,
+ "image_id": 2343527,
+ "entity": "boat",
+ "caption": "a rubber tire is hanging on the side of the boat",
+ "question": [
+ "is there a rubber tire ?",
+ "is there the side ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a rubber tire is hanging on the side of the {}"
+ },
+ {
+ "index": 415,
+ "image_id": 2343527,
+ "entity": "boat",
+ "caption": "a white cross is on the top of the boat",
+ "question": [
+ "is there the top ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a white cross is on the top of the {}"
+ },
+ {
+ "index": 416,
+ "image_id": 2343527,
+ "entity": "boat",
+ "caption": "a person is standing on the back of the boat",
+ "question": [
+ "is there a person ?",
+ "is there the back ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a person is standing on the back of the {}"
+ },
+ {
+ "index": 417,
+ "image_id": 2342814,
+ "entity": "boat",
+ "caption": "two handles are on the back of the boat",
+ "question": [
+ "are there two handles ?",
+ "is there the back ?",
+ "is there the boat ?"
+ ],
+ "prompt": "two handles are on the back of the {}"
+ },
+ {
+ "index": 418,
+ "image_id": 2342814,
+ "entity": "boat",
+ "caption": "a blue box is on the boat",
+ "question": [
+ "is there a blue box ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a blue box is on the {}"
+ },
+ {
+ "index": 419,
+ "image_id": 2342814,
+ "entity": "boat",
+ "caption": "a first aid kit is on the boat",
+ "question": [
+ "is there a first aid kit ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a first aid kit is on the {}"
+ },
+ {
+ "index": 420,
+ "image_id": 2342814,
+ "entity": "boat",
+ "caption": "the boat has silver handles",
+ "question": [
+ "is there the boat ?",
+ "are there silver handles ?"
+ ],
+ "prompt": "the {} has silver handles"
+ },
+ {
+ "index": 421,
+ "image_id": 2342814,
+ "entity": "boat",
+ "caption": "a white box is on the boat",
+ "question": [
+ "is there the boat ?"
+ ],
+ "prompt": "a white box is on the {}"
+ },
+ {
+ "index": 422,
+ "image_id": 2342814,
+ "entity": "boat",
+ "caption": "white handles are on the boat",
+ "question": [
+ "are there white handles ?",
+ "is there the boat ?"
+ ],
+ "prompt": "white handles are on the {}"
+ },
+ {
+ "index": 423,
+ "image_id": 2342338,
+ "entity": "boat",
+ "caption": "man stands in a boat",
+ "question": [
+ "is there man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "man stands in a {}"
+ },
+ {
+ "index": 424,
+ "image_id": 2342338,
+ "entity": "boat",
+ "caption": "they are sitting in the boat",
+ "question": [
+ "is there the boat ?"
+ ],
+ "prompt": "they are sitting in the {}"
+ },
+ {
+ "index": 425,
+ "image_id": 2341913,
+ "entity": "boat",
+ "caption": "boat is moving in the water",
+ "question": [
+ "is there boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "{} is moving in the water"
+ },
+ {
+ "index": 426,
+ "image_id": 2341403,
+ "entity": "boat",
+ "caption": "The boat has a red stripe.",
+ "question": [
+ "is there the boat ?",
+ "is there a red stripe ?"
+ ],
+ "prompt": "The {} has a red stripe."
+ },
+ {
+ "index": 427,
+ "image_id": 2341403,
+ "entity": "boat",
+ "caption": "The boat has a red and green stripe.",
+ "question": [
+ "is there the boat ?",
+ "is there a red and green stripe ?"
+ ],
+ "prompt": "The {} has a red and green stripe."
+ },
+ {
+ "index": 428,
+ "image_id": 2341403,
+ "entity": "boat",
+ "caption": "the boat is on sand",
+ "question": [
+ "is there the boat ?",
+ "is there sand ?"
+ ],
+ "prompt": "the {} is on sand"
+ },
+ {
+ "index": 429,
+ "image_id": 2341403,
+ "entity": "boat",
+ "caption": "rope wound around the boat",
+ "question": [
+ "is there rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "rope wound around the {}"
+ },
+ {
+ "index": 430,
+ "image_id": 2341403,
+ "entity": "boat",
+ "caption": "the boat has a red stripe",
+ "question": [
+ "is there the boat ?",
+ "is there a red stripe ?"
+ ],
+ "prompt": "the {} has a red stripe"
+ },
+ {
+ "index": 431,
+ "image_id": 2341403,
+ "entity": "boat",
+ "caption": "rope tied around the boat",
+ "question": [
+ "is there rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "rope tied around the {}"
+ },
+ {
+ "index": 432,
+ "image_id": 2341358,
+ "entity": "boat",
+ "caption": "the man is in a boat ",
+ "question": [
+ "is there the man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "the man is in a {} "
+ },
+ {
+ "index": 433,
+ "image_id": 2341331,
+ "entity": "boat",
+ "caption": "the boat has an inboard engine",
+ "question": [
+ "is there the boat ?",
+ "is there an inboard engine ?"
+ ],
+ "prompt": "the {} has an inboard engine"
+ },
+ {
+ "index": 434,
+ "image_id": 2341331,
+ "entity": "boat",
+ "caption": "the steering wheel is in the boat",
+ "question": [
+ "is there the steering wheel ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the steering wheel is in the {}"
+ },
+ {
+ "index": 435,
+ "image_id": 2341331,
+ "entity": "boat",
+ "caption": "windows are on the boat",
+ "question": [
+ "are there windows ?",
+ "is there the boat ?"
+ ],
+ "prompt": "windows are on the {}"
+ },
+ {
+ "index": 436,
+ "image_id": 2341331,
+ "entity": "boat",
+ "caption": "rope tied to the front of the boat",
+ "question": [
+ "is there rope ?",
+ "is there the front ?",
+ "is there the boat ?"
+ ],
+ "prompt": "rope tied to the front of the {}"
+ },
+ {
+ "index": 437,
+ "image_id": 2341331,
+ "entity": "boat",
+ "caption": "rope tied to back of the boat",
+ "question": [
+ "is there rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "rope tied to back of the {}"
+ },
+ {
+ "index": 438,
+ "image_id": 2340730,
+ "entity": "boat",
+ "caption": "hatches are on the bow of the boat",
+ "question": [
+ "are there hatches ?",
+ "is there the bow ?",
+ "is there the boat ?"
+ ],
+ "prompt": "hatches are on the bow of the {}"
+ },
+ {
+ "index": 439,
+ "image_id": 2339716,
+ "entity": "boat",
+ "caption": "Person in the background is standing on a boat",
+ "question": [
+ "is there person ?",
+ "is there the background ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Person in the background is standing on a {}"
+ },
+ {
+ "index": 440,
+ "image_id": 2335633,
+ "entity": "boat",
+ "caption": "The family is safe on a boat",
+ "question": [
+ "is there the family ?",
+ "is there a boat ?"
+ ],
+ "prompt": "The family is safe on a {}"
+ },
+ {
+ "index": 441,
+ "image_id": 2335557,
+ "entity": "boat",
+ "caption": "A boat is floating in the water",
+ "question": [
+ "is there a boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "A {} is floating in the water"
+ },
+ {
+ "index": 442,
+ "image_id": 2335557,
+ "entity": "boat",
+ "caption": "A boat is carrying many people",
+ "question": [
+ "is there a boat ?",
+ "are there many people ?"
+ ],
+ "prompt": "A {} is carrying many people"
+ },
+ {
+ "index": 443,
+ "image_id": 2335513,
+ "entity": "boat",
+ "caption": "dark water the boat is on",
+ "question": [
+ "is there dark water ?",
+ "is there the boat ?"
+ ],
+ "prompt": "dark water the {} is on"
+ },
+ {
+ "index": 444,
+ "image_id": 2335383,
+ "entity": "boat",
+ "caption": "one old boat stuck on beach",
+ "question": [
+ "is there one old boat ?",
+ "is there beach ?"
+ ],
+ "prompt": "one old {} stuck on beach"
+ },
+ {
+ "index": 445,
+ "image_id": 2335383,
+ "entity": "boat",
+ "caption": "Rope hanging from the bottom of a boat",
+ "question": [
+ "is there rope ?",
+ "is there the bottom ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Rope hanging from the bottom of a {}"
+ },
+ {
+ "index": 446,
+ "image_id": 2335383,
+ "entity": "boat",
+ "caption": "A boat is sitting on a lot",
+ "question": [
+ "is there a boat ?",
+ "is there a lot ?"
+ ],
+ "prompt": "A {} is sitting on a lot"
+ },
+ {
+ "index": 447,
+ "image_id": 2335383,
+ "entity": "boat",
+ "caption": "The boat is casting a shadow",
+ "question": [
+ "is there the boat ?",
+ "is there a shadow ?"
+ ],
+ "prompt": "The {} is casting a shadow"
+ },
+ {
+ "index": 448,
+ "image_id": 2335383,
+ "entity": "boat",
+ "caption": "The boat is close to the ocean",
+ "question": [
+ "is there the boat ?",
+ "is there the ocean ?"
+ ],
+ "prompt": "The {} is close to the ocean"
+ },
+ {
+ "index": 449,
+ "image_id": 2335220,
+ "entity": "boat",
+ "caption": "small boat parked next to a dock",
+ "question": [
+ "is there small boat ?",
+ "is there a dock ?"
+ ],
+ "prompt": "small {} parked next to a dock"
+ },
+ {
+ "index": 450,
+ "image_id": 2335207,
+ "entity": "boat",
+ "caption": "The boat has many windows.",
+ "question": [
+ "is there the boat ?",
+ "are there many windows ?"
+ ],
+ "prompt": "The {} has many windows."
+ },
+ {
+ "index": 451,
+ "image_id": 2335104,
+ "entity": "boat",
+ "caption": "the dog is on the boat",
+ "question": [
+ "is there the dog ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the dog is on the {}"
+ },
+ {
+ "index": 452,
+ "image_id": 2335104,
+ "entity": "boat",
+ "caption": "a pillow is in on the boat",
+ "question": [
+ "is there a pillow ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a pillow is in on the {}"
+ },
+ {
+ "index": 453,
+ "image_id": 2334367,
+ "entity": "boat",
+ "caption": "The dog is on the boat ",
+ "question": [
+ "is there the dog ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The dog is on the {} "
+ },
+ {
+ "index": 454,
+ "image_id": 2334367,
+ "entity": "boat",
+ "caption": "Bubbley wake of the boat",
+ "question": [
+ "is there bubbley wake ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Bubbley wake of the {}"
+ },
+ {
+ "index": 455,
+ "image_id": 2334187,
+ "entity": "boat",
+ "caption": "the boat has pigeons",
+ "question": [
+ "is there the boat ?",
+ "are there pigeons ?"
+ ],
+ "prompt": "the {} has pigeons"
+ },
+ {
+ "index": 456,
+ "image_id": 2334187,
+ "entity": "boat",
+ "caption": "the oars are in the boat",
+ "question": [
+ "are there the oars ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the oars are in the {}"
+ },
+ {
+ "index": 457,
+ "image_id": 2334187,
+ "entity": "boat",
+ "caption": "the boat has rope trim",
+ "question": [
+ "is there the boat ?",
+ "is there rope ?"
+ ],
+ "prompt": "the {} has rope trim"
+ },
+ {
+ "index": 458,
+ "image_id": 2333973,
+ "entity": "boat",
+ "caption": "a silver oar to row a boat",
+ "question": [
+ "is there a silver oar ?",
+ "is there a boat ?"
+ ],
+ "prompt": "a silver oar to row a {}"
+ },
+ {
+ "index": 459,
+ "image_id": 2333973,
+ "entity": "boat",
+ "caption": "Blue writing us out of the white boats",
+ "question": [
+ "are there the white boats ?"
+ ],
+ "prompt": "Blue writing us out of the white {}s"
+ },
+ {
+ "index": 460,
+ "image_id": 2333538,
+ "entity": "boat",
+ "caption": "a bridge connects to the boat",
+ "question": [
+ "is there a bridge ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a bridge connects to the {}"
+ },
+ {
+ "index": 461,
+ "image_id": 2332476,
+ "entity": "boat",
+ "caption": "boat carries three humans",
+ "question": [
+ "is there boat ?",
+ "are there three humans ?"
+ ],
+ "prompt": "{} carries three humans"
+ },
+ {
+ "index": 462,
+ "image_id": 2332476,
+ "entity": "boat",
+ "caption": "life preserver attached to boat",
+ "question": [
+ "is there life preserver ?",
+ "is there boat ?"
+ ],
+ "prompt": "life preserver attached to {}"
+ },
+ {
+ "index": 463,
+ "image_id": 2332444,
+ "entity": "boat",
+ "caption": "rope going down from the boat",
+ "question": [
+ "is there rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "rope going down from the {}"
+ },
+ {
+ "index": 464,
+ "image_id": 2331968,
+ "entity": "boat",
+ "caption": "man steering white boat",
+ "question": [
+ "is there man ?",
+ "is there white boat ?"
+ ],
+ "prompt": "man steering white {}"
+ },
+ {
+ "index": 465,
+ "image_id": 2331968,
+ "entity": "boat",
+ "caption": "white rope attached to boat",
+ "question": [
+ "is there boat ?"
+ ],
+ "prompt": "white rope attached to {}"
+ },
+ {
+ "index": 466,
+ "image_id": 2331586,
+ "entity": "boat",
+ "caption": "the boat is tipping",
+ "question": [
+ "is there the boat ?"
+ ],
+ "prompt": "the {} is tipping"
+ },
+ {
+ "index": 467,
+ "image_id": 2330347,
+ "entity": "boat",
+ "caption": "The lady is sitting in the boat.",
+ "question": [
+ "is there the lady ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The lady is sitting in the {}."
+ },
+ {
+ "index": 468,
+ "image_id": 2330347,
+ "entity": "boat",
+ "caption": "People are on the boat.",
+ "question": [
+ "are there people ?",
+ "is there the boat ?"
+ ],
+ "prompt": "People are on the {}."
+ },
+ {
+ "index": 469,
+ "image_id": 2329011,
+ "entity": "boat",
+ "caption": "white rope tied to a boat",
+ "question": [
+ "is there a boat ?"
+ ],
+ "prompt": "white rope tied to a {}"
+ },
+ {
+ "index": 470,
+ "image_id": 2328185,
+ "entity": "boat",
+ "caption": "food sits on boat",
+ "question": [
+ "is there food ?",
+ "is there boat ?"
+ ],
+ "prompt": "food sits on {}"
+ },
+ {
+ "index": 471,
+ "image_id": 2328185,
+ "entity": "boat",
+ "caption": "human stands on boat",
+ "question": [
+ "is there human ?",
+ "is there boat ?"
+ ],
+ "prompt": "human stands on {}"
+ },
+ {
+ "index": 472,
+ "image_id": 2328185,
+ "entity": "boat",
+ "caption": "a river boat painted red, white and blue",
+ "question": [
+ "is there a river boat ?"
+ ],
+ "prompt": "a river {} painted red, white and blue"
+ },
+ {
+ "index": 473,
+ "image_id": 2327815,
+ "entity": "boat",
+ "caption": "man standing in the front of a boat",
+ "question": [
+ "is there man ?",
+ "is there the front ?",
+ "is there a boat ?"
+ ],
+ "prompt": "man standing in the front of a {}"
+ },
+ {
+ "index": 474,
+ "image_id": 2327709,
+ "entity": "boat",
+ "caption": "boat that man is sitting in",
+ "question": [
+ "is there boat ?",
+ "is there that man ?"
+ ],
+ "prompt": "{} that man is sitting in"
+ },
+ {
+ "index": 475,
+ "image_id": 2327444,
+ "entity": "boat",
+ "caption": "bushes are behind boat",
+ "question": [
+ "are there bushes ?",
+ "is there boat ?"
+ ],
+ "prompt": "bushes are behind {}"
+ },
+ {
+ "index": 476,
+ "image_id": 2326620,
+ "entity": "boat",
+ "caption": "fruits are in the boat ",
+ "question": [
+ "are there fruits ?",
+ "is there the boat ?"
+ ],
+ "prompt": "fruits are in the {} "
+ },
+ {
+ "index": 477,
+ "image_id": 2326389,
+ "entity": "boat",
+ "caption": "water boats are in",
+ "question": [
+ "are there water boats ?"
+ ],
+ "prompt": "water {}s are in"
+ },
+ {
+ "index": 478,
+ "image_id": 2325957,
+ "entity": "boat",
+ "caption": "life preserver hung on boat",
+ "question": [
+ "is there life preserver ?",
+ "is there boat ?"
+ ],
+ "prompt": "life preserver hung on {}"
+ },
+ {
+ "index": 479,
+ "image_id": 2325634,
+ "entity": "boat",
+ "caption": "Red rope attached to metal boat.",
+ "question": [
+ "is there red rope ?",
+ "is there metal boat ?"
+ ],
+ "prompt": "Red rope attached to metal {}."
+ },
+ {
+ "index": 480,
+ "image_id": 2325634,
+ "entity": "boat",
+ "caption": "Metal boat anchored with yellow rope.",
+ "question": [
+ "is there metal boat ?",
+ "is there yellow rope ?"
+ ],
+ "prompt": "Metal {} anchored with yellow rope."
+ },
+ {
+ "index": 481,
+ "image_id": 2325522,
+ "entity": "boat",
+ "caption": "the boat is floating on the water ",
+ "question": [
+ "is there the boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "the {} is floating on the water "
+ },
+ {
+ "index": 482,
+ "image_id": 2325172,
+ "entity": "boat",
+ "caption": "the boat is on the sand",
+ "question": [
+ "is there the boat ?",
+ "is there the sand ?"
+ ],
+ "prompt": "the {} is on the sand"
+ },
+ {
+ "index": 483,
+ "image_id": 2325172,
+ "entity": "boat",
+ "caption": "lettering is on the boat",
+ "question": [
+ "is there lettering ?",
+ "is there the boat ?"
+ ],
+ "prompt": "lettering is on the {}"
+ },
+ {
+ "index": 484,
+ "image_id": 2325172,
+ "entity": "boat",
+ "caption": "a mast is on the boat",
+ "question": [
+ "is there a mast ?",
+ "is there the boat ?"
+ ],
+ "prompt": "a mast is on the {}"
+ },
+ {
+ "index": 485,
+ "image_id": 2325172,
+ "entity": "boat",
+ "caption": "numbers are in the boat",
+ "question": [
+ "are there numbers ?",
+ "is there the boat ?"
+ ],
+ "prompt": "numbers are in the {}"
+ },
+ {
+ "index": 486,
+ "image_id": 2324743,
+ "entity": "boat",
+ "caption": "The bottom of the boat is the color red ",
+ "question": [
+ "is there the bottom ?",
+ "is there the boat ?",
+ "is there the color red ?"
+ ],
+ "prompt": "The bottom of the {} is the color red "
+ },
+ {
+ "index": 487,
+ "image_id": 2324743,
+ "entity": "boat",
+ "caption": "dragon painted on the side of the boat",
+ "question": [
+ "is there dragon ?",
+ "is there the side ?",
+ "is there the boat ?"
+ ],
+ "prompt": "dragon painted on the side of the {}"
+ },
+ {
+ "index": 488,
+ "image_id": 2324603,
+ "entity": "boat",
+ "caption": "an old wooden boat dock on the side of the river",
+ "question": [
+ "is there the side ?",
+ "is there the river ?"
+ ],
+ "prompt": "an old wooden {} dock on the side of the river"
+ },
+ {
+ "index": 489,
+ "image_id": 2324332,
+ "entity": "boat",
+ "caption": "Sand patches behind the boat",
+ "question": [
+ "are there sand patches ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Sand patches behind the {}"
+ },
+ {
+ "index": 490,
+ "image_id": 2324332,
+ "entity": "boat",
+ "caption": "The boat sits on the bank. ",
+ "question": [
+ "is there the boat ?",
+ "is there the bank ?"
+ ],
+ "prompt": "The {} sits on the bank. "
+ },
+ {
+ "index": 491,
+ "image_id": 2324332,
+ "entity": "boat",
+ "caption": "The flowers next to the boat. ",
+ "question": [
+ "are there the flowers ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The flowers next to the {}. "
+ },
+ {
+ "index": 492,
+ "image_id": 2324332,
+ "entity": "boat",
+ "caption": "The boat sits in the rocks. ",
+ "question": [
+ "is there the boat ?",
+ "are there the rocks ?"
+ ],
+ "prompt": "The {} sits in the rocks. "
+ },
+ {
+ "index": 493,
+ "image_id": 2323258,
+ "entity": "boat",
+ "caption": "Some boats are carrying oars for rowing",
+ "question": [
+ "are there some boats ?",
+ "are there oars ?"
+ ],
+ "prompt": "Some {}s are carrying oars for rowing"
+ },
+ {
+ "index": 494,
+ "image_id": 2323258,
+ "entity": "boat",
+ "caption": "White boat with floats attached",
+ "question": [
+ "is there white boat ?",
+ "are there floats ?"
+ ],
+ "prompt": "White {} with floats attached"
+ },
+ {
+ "index": 495,
+ "image_id": 2321960,
+ "entity": "boat",
+ "caption": "two boats parked at the dock",
+ "question": [
+ "are there two boats ?",
+ "is there the dock ?"
+ ],
+ "prompt": "two {}s parked at the dock"
+ },
+ {
+ "index": 496,
+ "image_id": 2321105,
+ "entity": "boat",
+ "caption": "Sign on boat says Manon Manon.",
+ "question": [
+ "is there sign ?",
+ "is there boat ?"
+ ],
+ "prompt": "Sign on {} says Manon Manon."
+ },
+ {
+ "index": 497,
+ "image_id": 2321105,
+ "entity": "boat",
+ "caption": "A grey barrel sits in an old boat.",
+ "question": [
+ "is there a grey barrel ?",
+ "is there an old boat ?"
+ ],
+ "prompt": "A grey barrel sits in an old {}."
+ },
+ {
+ "index": 498,
+ "image_id": 2320922,
+ "entity": "boat",
+ "caption": "Water that boat sits on",
+ "question": [
+ "is there water ?",
+ "is there that boat ?"
+ ],
+ "prompt": "Water that {} sits on"
+ },
+ {
+ "index": 499,
+ "image_id": 2320922,
+ "entity": "boat",
+ "caption": " some chains anchoring a boat",
+ "question": [
+ "are there some chains ?",
+ "is there a boat ?"
+ ],
+ "prompt": " some chains anchoring a {}"
+ },
+ {
+ "index": 500,
+ "image_id": 2320922,
+ "entity": "boat",
+ "caption": "water boat is sitting in",
+ "question": [
+ "is there water boat ?"
+ ],
+ "prompt": "water {} is sitting in"
+ },
+ {
+ "index": 501,
+ "image_id": 2320922,
+ "entity": "boat",
+ "caption": "the boat is in a marina",
+ "question": [
+ "is there the boat ?",
+ "is there a marina ?"
+ ],
+ "prompt": "the {} is in a marina"
+ },
+ {
+ "index": 502,
+ "image_id": 2320725,
+ "entity": "boat",
+ "caption": "The boat is on land.",
+ "question": [
+ "is there the boat ?",
+ "is there land ?"
+ ],
+ "prompt": "The {} is on land."
+ },
+ {
+ "index": 503,
+ "image_id": 2319811,
+ "entity": "boat",
+ "caption": "the grey stripe on the boat",
+ "question": [
+ "is there the grey stripe ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the grey stripe on the {}"
+ },
+ {
+ "index": 504,
+ "image_id": 2318574,
+ "entity": "boat",
+ "caption": "the letter \"R\"on the boat",
+ "question": [
+ "is there the letter ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the letter \"R\"on the {}"
+ },
+ {
+ "index": 505,
+ "image_id": 2318574,
+ "entity": "boat",
+ "caption": "water for boats to sail",
+ "question": [
+ "is there water ?",
+ "are there boats ?"
+ ],
+ "prompt": "water for {}s to sail"
+ },
+ {
+ "index": 506,
+ "image_id": 2318144,
+ "entity": "boat",
+ "caption": "crowd of people gathered around looking at the huge boat",
+ "question": [
+ "is there crowd ?",
+ "are there people ?",
+ "is there the huge boat ?"
+ ],
+ "prompt": "crowd of people gathered around looking at the huge {}"
+ },
+ {
+ "index": 507,
+ "image_id": 2318140,
+ "entity": "boat",
+ "caption": "white boat docked at the pier",
+ "question": [
+ "is there white boat ?",
+ "is there the pier ?"
+ ],
+ "prompt": "white {} docked at the pier"
+ },
+ {
+ "index": 508,
+ "image_id": 2317528,
+ "entity": "boat",
+ "caption": "boats lined up side by side",
+ "question": [
+ "are there boats ?",
+ "is there side ?",
+ "is there side ?"
+ ],
+ "prompt": "{}s lined up side by side"
+ },
+ {
+ "index": 509,
+ "image_id": 2317528,
+ "entity": "boat",
+ "caption": "Yellow number 9 painted onto a blue square on a red boat",
+ "question": [
+ "is there yellow number ?",
+ "is there a blue square ?",
+ "is there a red boat ?"
+ ],
+ "prompt": "Yellow number 9 painted onto a blue square on a red {}"
+ },
+ {
+ "index": 510,
+ "image_id": 2317528,
+ "entity": "boat",
+ "caption": "Orange carved dragon head on a boat",
+ "question": [
+ "is there orange carved dragon head ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Orange carved dragon head on a {}"
+ },
+ {
+ "index": 511,
+ "image_id": 2317528,
+ "entity": "boat",
+ "caption": "Blue flower painted on a boat",
+ "question": [
+ "is there blue flower ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Blue flower painted on a {}"
+ },
+ {
+ "index": 512,
+ "image_id": 2317528,
+ "entity": "boat",
+ "caption": "Orange carved tail on a boat",
+ "question": [
+ "is there orange carved tail ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Orange carved tail on a {}"
+ },
+ {
+ "index": 513,
+ "image_id": 2317528,
+ "entity": "boat",
+ "caption": "Green carved tail on a boat",
+ "question": [
+ "is there green carved tail ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Green carved tail on a {}"
+ },
+ {
+ "index": 514,
+ "image_id": 2317472,
+ "entity": "boat",
+ "caption": "large metal rope pulleys on boat",
+ "question": [
+ "are there large metal rope pulleys ?",
+ "is there boat ?"
+ ],
+ "prompt": "large metal rope pulleys on {}"
+ },
+ {
+ "index": 515,
+ "image_id": 2316999,
+ "entity": "boat",
+ "caption": "open deck are of boat",
+ "question": [
+ "is there open deck ?",
+ "is there boat ?"
+ ],
+ "prompt": "open deck are of {}"
+ },
+ {
+ "index": 516,
+ "image_id": 2316999,
+ "entity": "boat",
+ "caption": "the deck of this boat is blue",
+ "question": [
+ "is there the deck ?",
+ "is there this boat ?"
+ ],
+ "prompt": "the deck of this {} is blue"
+ },
+ {
+ "index": 517,
+ "image_id": 2316715,
+ "entity": "boat",
+ "caption": "large white boat casting reflection on water",
+ "question": [
+ "is there large white boat ?",
+ "is there reflection ?",
+ "is there water ?"
+ ],
+ "prompt": "large white {} casting reflection on water"
+ },
+ {
+ "index": 518,
+ "image_id": 2316663,
+ "entity": "boat",
+ "caption": "Rope tied across a boat",
+ "question": [
+ "is there rope ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Rope tied across a {}"
+ },
+ {
+ "index": 519,
+ "image_id": 2316469,
+ "entity": "boat",
+ "caption": "the life ring is on a boat",
+ "question": [
+ "is there the life ring ?",
+ "is there a boat ?"
+ ],
+ "prompt": "the life ring is on a {}"
+ },
+ {
+ "index": 520,
+ "image_id": 2316232,
+ "entity": "boat",
+ "caption": "row boat docked in water",
+ "question": [
+ "is there row boat ?",
+ "is there water ?"
+ ],
+ "prompt": "row {} docked in water"
+ },
+ {
+ "index": 521,
+ "image_id": 2316232,
+ "entity": "boat",
+ "caption": "this is a row boat",
+ "question": [
+ "is there a row boat ?"
+ ],
+ "prompt": "this is a row {}"
+ },
+ {
+ "index": 522,
+ "image_id": 2316232,
+ "entity": "boat",
+ "caption": "The rope tied to the boat",
+ "question": [
+ "is there the rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The rope tied to the {}"
+ },
+ {
+ "index": 523,
+ "image_id": 2316232,
+ "entity": "boat",
+ "caption": "A boat that is sitting in the water",
+ "question": [
+ "is there a boat ?",
+ "is there the water ?"
+ ],
+ "prompt": "A {} that is sitting in the water"
+ },
+ {
+ "index": 524,
+ "image_id": 2316174,
+ "entity": "boat",
+ "caption": "The letter R on the boat.",
+ "question": [
+ "is there the letter r ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The letter R on the {}."
+ },
+ {
+ "index": 525,
+ "image_id": 2316174,
+ "entity": "boat",
+ "caption": "The word PLYMOUTH on the boat.",
+ "question": [
+ "is there the word ?",
+ "is there plymouth ?",
+ "is there the boat ?"
+ ],
+ "prompt": "The word PLYMOUTH on the {}."
+ },
+ {
+ "index": 526,
+ "image_id": 2316161,
+ "entity": "boat",
+ "caption": "The wooden boat the woman is sitting in.",
+ "question": [
+ "is there the wooden boat ?",
+ "is there the woman ?"
+ ],
+ "prompt": "The wooden {} the woman is sitting in."
+ },
+ {
+ "index": 527,
+ "image_id": 2316161,
+ "entity": "boat",
+ "caption": "boat holds woman",
+ "question": [
+ "is there boat ?",
+ "is there woman ?"
+ ],
+ "prompt": "{} holds woman"
+ },
+ {
+ "index": 528,
+ "image_id": 2316102,
+ "entity": "boat",
+ "caption": "number 33 painted on a boat.",
+ "question": [
+ "is there number ?",
+ "is there a boat ?"
+ ],
+ "prompt": "number 33 painted on a {}."
+ },
+ {
+ "index": 529,
+ "image_id": 2315952,
+ "entity": "boat",
+ "caption": "Rope tied to the boat.",
+ "question": [
+ "is there rope ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Rope tied to the {}."
+ },
+ {
+ "index": 530,
+ "image_id": 2315952,
+ "entity": "boat",
+ "caption": "Chain tied to the boat.",
+ "question": [
+ "is there chain ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Chain tied to the {}."
+ },
+ {
+ "index": 531,
+ "image_id": 2315952,
+ "entity": "boat",
+ "caption": "red plastic buoys hanging from boat",
+ "question": [
+ "are there red plastic buoys ?",
+ "is there boat ?"
+ ],
+ "prompt": "red plastic buoys hanging from {}"
+ },
+ {
+ "index": 532,
+ "image_id": 2315952,
+ "entity": "boat",
+ "caption": "black tire hanging from side of boat",
+ "question": [
+ "is there black tire ?",
+ "is there side ?",
+ "is there boat ?"
+ ],
+ "prompt": "black tire hanging from side of {}"
+ },
+ {
+ "index": 533,
+ "image_id": 2315952,
+ "entity": "boat",
+ "caption": "boueys attached to boat",
+ "question": [
+ "is there boat ?"
+ ],
+ "prompt": "boueys attached to {}"
+ },
+ {
+ "index": 534,
+ "image_id": 2315666,
+ "entity": "boat",
+ "caption": "red flag hanging from boat in water ",
+ "question": [
+ "is there red flag ?",
+ "is there boat ?",
+ "is there water ?"
+ ],
+ "prompt": "red flag hanging from {} in water "
+ },
+ {
+ "index": 535,
+ "image_id": 2414707,
+ "entity": "boat",
+ "caption": "man pushing a lifeboat",
+ "question": [
+ "is there man ?",
+ "is there a lifeboat ?"
+ ],
+ "prompt": "man pushing a life{}"
+ },
+ {
+ "index": 536,
+ "image_id": 2414707,
+ "entity": "boat",
+ "caption": "Men pushing a boat",
+ "question": [
+ "are there men ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Men pushing a {}"
+ },
+ {
+ "index": 537,
+ "image_id": 2414285,
+ "entity": "boat",
+ "caption": "A bicycle is on the boat.",
+ "question": [
+ "is there a bicycle ?",
+ "is there the boat ?"
+ ],
+ "prompt": "A bicycle is on the {}."
+ },
+ {
+ "index": 538,
+ "image_id": 2414285,
+ "entity": "boat",
+ "caption": "The bicycle is on the deck of a boat.",
+ "question": [
+ "is there the bicycle ?",
+ "is there the deck ?",
+ "is there a boat ?"
+ ],
+ "prompt": "The bicycle is on the deck of a {}."
+ },
+ {
+ "index": 539,
+ "image_id": 2414285,
+ "entity": "boat",
+ "caption": "This is part of the mast of the boat.",
+ "question": [
+ "is there part ?",
+ "is there the mast ?",
+ "is there the boat ?"
+ ],
+ "prompt": "This is part of the mast of the {}."
+ },
+ {
+ "index": 540,
+ "image_id": 2414285,
+ "entity": "boat",
+ "caption": "Rope is on the deck of the boat.",
+ "question": [
+ "is there rope ?",
+ "is there the deck ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Rope is on the deck of the {}."
+ },
+ {
+ "index": 541,
+ "image_id": 2414285,
+ "entity": "boat",
+ "caption": "small boat with boat sitting on it",
+ "question": [
+ "is there small boat ?",
+ "is there boat ?"
+ ],
+ "prompt": "small {} with {} sitting on it"
+ },
+ {
+ "index": 542,
+ "image_id": 2414285,
+ "entity": "boat",
+ "caption": "A rope tied to a boat.",
+ "question": [
+ "is there a rope ?",
+ "is there a boat ?"
+ ],
+ "prompt": "A rope tied to a {}."
+ },
+ {
+ "index": 543,
+ "image_id": 2414008,
+ "entity": "boat",
+ "caption": "Bottles made boats floating in the water.",
+ "question": [
+ "are there bottles ?",
+ "are there boats ?",
+ "is there the water ?"
+ ],
+ "prompt": "Bottles made {}s floating in the water."
+ },
+ {
+ "index": 544,
+ "image_id": 2413336,
+ "entity": "boat",
+ "caption": "the kid is standing on the boat",
+ "question": [
+ "is there the kid ?",
+ "is there the boat ?"
+ ],
+ "prompt": "the kid is standing on the {}"
+ },
+ {
+ "index": 545,
+ "image_id": 2413281,
+ "entity": "boat",
+ "caption": "Two oars inside boat.",
+ "question": [
+ "are there two oars ?",
+ "is there boat ?"
+ ],
+ "prompt": "Two oars inside {}."
+ },
+ {
+ "index": 546,
+ "image_id": 2413281,
+ "entity": "boat",
+ "caption": "Rope coiled inside boat.",
+ "question": [
+ "is there inside boat ?"
+ ],
+ "prompt": "Rope coiled inside {}."
+ },
+ {
+ "index": 547,
+ "image_id": 2413281,
+ "entity": "boat",
+ "caption": "boat tied to dock",
+ "question": [
+ "is there boat ?",
+ "is there dock ?"
+ ],
+ "prompt": "{} tied to dock"
+ },
+ {
+ "index": 548,
+ "image_id": 2413281,
+ "entity": "boat",
+ "caption": "exposed wood where blue boat paint has worn away",
+ "question": [
+ "is there wood ?",
+ "is there blue boat paint ?"
+ ],
+ "prompt": "exposed wood where blue {} paint has worn away"
+ },
+ {
+ "index": 549,
+ "image_id": 2412726,
+ "entity": "boat",
+ "caption": "The boats are on the water",
+ "question": [
+ "are there the boats ?",
+ "is there the water ?"
+ ],
+ "prompt": "The {}s are on the water"
+ },
+ {
+ "index": 550,
+ "image_id": 2412726,
+ "entity": "boat",
+ "caption": "boats trimmed in light blue",
+ "question": [
+ "are there boats ?",
+ "is there light blue ?"
+ ],
+ "prompt": "{}s trimmed in light blue"
+ },
+ {
+ "index": 551,
+ "image_id": 2412667,
+ "entity": "boat",
+ "caption": "woman painted on side of boat",
+ "question": [
+ "is there woman ?",
+ "is there side ?",
+ "is there boat ?"
+ ],
+ "prompt": "woman painted on side of {}"
+ },
+ {
+ "index": 552,
+ "image_id": 2412667,
+ "entity": "boat",
+ "caption": "Woman painted on large multi-colored boat",
+ "question": [
+ "is there woman ?",
+ "is there large multi-colored boat ?"
+ ],
+ "prompt": "Woman painted on large multi-colored {}"
+ },
+ {
+ "index": 553,
+ "image_id": 2412667,
+ "entity": "boat",
+ "caption": "Woman painted on the boat",
+ "question": [
+ "is there woman ?",
+ "is there the boat ?"
+ ],
+ "prompt": "Woman painted on the {}"
+ },
+ {
+ "index": 554,
+ "image_id": 2412272,
+ "entity": "boat",
+ "caption": "boats are in the water",
+ "question": [
+ "are there boats ?",
+ "is there the water ?"
+ ],
+ "prompt": "{}s are in the water"
+ },
+ {
+ "index": 555,
+ "image_id": 2412272,
+ "entity": "boat",
+ "caption": "\"Intrepid\" painted on front of boat",
+ "question": [
+ "is there front ?",
+ "is there boat ?"
+ ],
+ "prompt": "\"Intrepid\" painted on front of {}"
+ },
+ {
+ "index": 556,
+ "image_id": 2412205,
+ "entity": "boat",
+ "caption": "the man is riding ina boat",
+ "question": [
+ "is there the man ?",
+ "is there ina boat ?"
+ ],
+ "prompt": "the man is riding ina {}"
+ },
+ {
+ "index": 557,
+ "image_id": 2412205,
+ "entity": "boat",
+ "caption": "a boat racing along a lake",
+ "question": [
+ "is there a boat ?",
+ "is there a lake ?"
+ ],
+ "prompt": "a {} racing along a lake"
+ },
+ {
+ "index": 558,
+ "image_id": 2412205,
+ "entity": "boat",
+ "caption": "Man is in a boat",
+ "question": [
+ "is there man ?",
+ "is there a boat ?"
+ ],
+ "prompt": "Man is in a {}"
+ },
+ {
+ "index": 559,
+ "image_id": 2412205,
+ "entity": "boat",
+ "caption": "Engine of boat is tan",
+ "question": [
+ "is there engine ?",
+ "is there boat ?",
+ "is there tan ?"
+ ],
+ "prompt": "Engine of {} is tan"
+ },
+ {
+ "index": 560,
+ "image_id": 2412205,
+ "entity": "boat",
+ "caption": "boat has wooden bench",
+ "question": [
+ "is there boat ?",
+ "is there wooden bench ?"
+ ],
+ "prompt": "{} has wooden bench"
+ },
+ {
+ "index": 561,
+ "image_id": 2411896,
+ "entity": "boat",
+ "caption": "Large boat pulling containers",
+ "question": [
+ "is there large boat ?"
+ ],
+ "prompt": "Large {} pulling containers"
+ },
+ {
+ "index": 562,
+ "image_id": 2415372,
+ "entity": "boat",
+ "caption": "Rope attaching boat to boardwalk",
+ "question": [
+ "is there boat ?"
+ ],
+ "prompt": "Rope attaching {} to boardwalk"
+ },
+ {
+ "index": 563,
+ "image_id": 2415691,
+ "entity": "boat",
+ "caption": "boat and cabin reflected in clear smooth water",
+ "question": [
+ "is there boat ?",
+ "is there cabin ?",
+ "is there clear smooth water ?"
+ ],
+ "prompt": "{} and cabin reflected in clear smooth water"
+ },
+ {
+ "index": 564,
+ "image_id": 2416767,
+ "entity": "boat",
+ "caption": "2 identical boats are next to each other in the water ",
+ "question": [
+ "are there 2 identical boats ?",
+ "is there the water ?"
+ ],
+ "prompt": "2 identical {}s are next to each other in the water "
+ },
+ {
+ "index": 565,
+ "image_id": 2416767,
+ "entity": "boat",
+ "caption": "ropes hang over the boat near the dock",
+ "question": [
+ "are there ropes ?",
+ "is there the boat ?",
+ "is there the dock ?"
+ ],
+ "prompt": "ropes hang over the {} near the dock"
+ },
+ {
+ "index": 566,
+ "image_id": 2417150,
+ "entity": "boat",
+ "caption": "man driving the boat",
+ "question": [
+ "is there man ?",
+ "is there the boat ?"
+ ],
+ "prompt": "man driving the {}"
+ }
+]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03041632.json b/data/imagenet/compositions/prompts/n03041632.json
new file mode 100644
index 0000000000000000000000000000000000000000..775a098b73fbbe9b4cce1899495001edccdbcbc6
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03041632.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2410601, "entity": "knife", "caption": "a knife is on the apple", "question": ["is there a knife ?", "is there the apple ?"], "prompt": "a {} is on the apple"}, {"index": 1, "image_id": 2410601, "entity": "knife", "caption": "knife slicing through apple", "question": ["is there knife slicing ?", "is there apple ?"], "prompt": "{} slicing through apple"}, {"index": 2, "image_id": 2403832, "entity": "knife", "caption": "knife has black handle", "question": ["is there knife ?", "is there black handle ?"], "prompt": "{} has black handle"}, {"index": 3, "image_id": 2403832, "entity": "knife", "caption": "bolt holding a knife together.", "question": ["is there a knife ?"], "prompt": "bolt holding a {} together."}, {"index": 4, "image_id": 2402771, "entity": "knife", "caption": "Blade of knife is dirty", "question": ["is there blade ?", "is there knife ?"], "prompt": "Blade of {} is dirty"}, {"index": 5, "image_id": 2402771, "entity": "knife", "caption": "Blade of knife is pointy", "question": ["is there blade ?", "is there knife ?"], "prompt": "Blade of {} is pointy"}, {"index": 6, "image_id": 2400506, "entity": "knife", "caption": "A knife is in the dish.", "question": ["is there a knife ?", "is there the dish ?"], "prompt": "A {} is in the dish."}, {"index": 7, "image_id": 2396733, "entity": "knife", "caption": "homemade black knife is on the table", "question": ["is there homemade black knife ?", "is there the table ?"], "prompt": "homemade black {} is on the table"}, {"index": 8, "image_id": 2396733, "entity": "knife", "caption": "this is a knife ", "question": ["is there a knife ?"], "prompt": "this is a {} "}, {"index": 9, "image_id": 2395610, "entity": "knife", "caption": "the knife stabbed in the cake", "question": ["is there the knife ?", "is there the cake ?"], "prompt": "the {} stabbed in the cake"}, {"index": 10, "image_id": 2394061, "entity": "knife", "caption": "A hand is holding a large knife.", "question": ["is there a hand ?", "is there a large knife ?"], "prompt": "A hand is holding a large {}."}, {"index": 11, "image_id": 2392048, "entity": "knife", "caption": "man holds a knife", "question": ["is there man ?", "is there a knife ?"], "prompt": "man holds a {}"}, {"index": 12, "image_id": 2380448, "entity": "knife", "caption": "the knife is next to the carrot", "question": ["is there the knife ?", "is there the carrot ?"], "prompt": "the {} is next to the carrot"}, {"index": 13, "image_id": 2380448, "entity": "knife", "caption": "the knife is on the cutting board", "question": ["is there the knife ?", "is there the cutting board ?"], "prompt": "the {} is on the cutting board"}, {"index": 14, "image_id": 2379177, "entity": "knife", "caption": "The knife is on the cutting board.", "question": ["is there the knife ?", "is there the cutting board ?"], "prompt": "The {} is on the cutting board."}, {"index": 15, "image_id": 2378708, "entity": "knife", "caption": "a knife propped on a plate ", "question": ["is there a knife ?", "is there a plate ?"], "prompt": "a {} propped on a plate "}, {"index": 16, "image_id": 2373189, "entity": "knife", "caption": "a butter knife is in the sink", "question": ["is there a butter knife ?", "is there the sink ?"], "prompt": "a butter {} is in the sink"}, {"index": 17, "image_id": 2364647, "entity": "knife", "caption": "stainless steel knife cutting carrot", "question": ["is there stainless steel knife ?", "is there carrot ?"], "prompt": "stainless steel {} cutting carrot"}, {"index": 18, "image_id": 2349999, "entity": "knife", "caption": "long knife used to cut brownies", "question": ["is there long knife ?", "are there brownies ?"], "prompt": "long {} used to cut brownies"}, {"index": 19, "image_id": 2347800, "entity": "knife", "caption": "Man's hand holding a knife", "question": ["is there man's hand ?", "is there a knife ?"], "prompt": "Man's hand holding a {}"}, {"index": 20, "image_id": 2347800, "entity": "knife", "caption": "guy is holding a large kitchen knife", "question": ["is there guy ?", "is there a large kitchen knife ?"], "prompt": "guy is holding a large kitchen {}"}, {"index": 21, "image_id": 2344692, "entity": "knife", "caption": "the hand that is holding the knife", "question": ["is there the hand ?", "is there the knife ?"], "prompt": "the hand that is holding the {}"}, {"index": 22, "image_id": 2344692, "entity": "knife", "caption": "hand holds a black knife", "question": ["is there hand ?", "is there a black knife ?"], "prompt": "hand holds a black {}"}, {"index": 23, "image_id": 2344692, "entity": "knife", "caption": "the screws in the knifes handle", "question": ["are there the screws ?", "are there the knifes ?"], "prompt": "the screws in the {}s handle"}, {"index": 24, "image_id": 2342976, "entity": "knife", "caption": "a knife is on the plate", "question": ["is there a knife ?", "is there the plate ?"], "prompt": "a {} is on the plate"}, {"index": 25, "image_id": 2341202, "entity": "knife", "caption": "The knife has a black and silver handle.", "question": ["is there the knife ?", "is there a black and silver handle ?"], "prompt": "The {} has a black and silver handle."}, {"index": 26, "image_id": 2337924, "entity": "knife", "caption": "chees rements on the knife", "question": ["are there chees rements ?", "is there the knife ?"], "prompt": "chees rements on the {}"}, {"index": 27, "image_id": 2327696, "entity": "knife", "caption": "the knife is on the table", "question": ["is there the knife ?", "is there the table ?"], "prompt": "the {} is on the table"}, {"index": 28, "image_id": 2320803, "entity": "knife", "caption": "knife is cutting the cake", "question": ["is there knife ?", "is there the cake ?"], "prompt": "{} is cutting the cake"}, {"index": 29, "image_id": 2319412, "entity": "knife", "caption": "line is the shadow of the knife ", "question": ["is there line ?", "is there the shadow ?", "is there the knife ?"], "prompt": "line is the shadow of the {} "}, {"index": 30, "image_id": 2414271, "entity": "knife", "caption": "knife is sitting on the edge of the plate", "question": ["is there knife ?", "is there the edge ?", "is there the plate ?"], "prompt": "{} is sitting on the edge of the plate"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03100240.json b/data/imagenet/compositions/prompts/n03100240.json
new file mode 100644
index 0000000000000000000000000000000000000000..2381f38921c9ad56862e92e8fc850617008827e1
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03100240.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 65, "entity": "car", "caption": "License plate placed on black car", "question": ["is there license plate ?", "is there black car ?"], "prompt": "License plate placed on black {}"}, {"index": 1, "image_id": 316, "entity": "car", "caption": "the seats are in the car", "question": ["are there the seats ?", "is there the car ?"], "prompt": "the seats are in the {}"}, {"index": 2, "image_id": 692, "entity": "car", "caption": "A man is sitting in a car.", "question": ["is there a man ?", "is there a car ?"], "prompt": "A man is sitting in a {}."}, {"index": 3, "image_id": 692, "entity": "car", "caption": "A rear view mirror is in the car.", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "A rear view mirror is in the {}."}, {"index": 4, "image_id": 1029, "entity": "car", "caption": "man is sitting in tan car", "question": ["is there man ?", "is there tan car ?"], "prompt": "man is sitting in tan {}"}, {"index": 5, "image_id": 1710, "entity": "car", "caption": "silver trim on car", "question": ["is there silver trim ?", "is there car ?"], "prompt": "silver trim on {}"}, {"index": 6, "image_id": 2889, "entity": "car", "caption": "rear left tire of the white car", "question": ["is there rear left tire ?", "is there the white car ?"], "prompt": "rear left tire of the white {}"}, {"index": 7, "image_id": 2889, "entity": "car", "caption": "front left tire of the white car", "question": ["is there front left tire ?", "is there the white car ?"], "prompt": "front left tire of the white {}"}, {"index": 8, "image_id": 3288, "entity": "car", "caption": "the white car has doors", "question": ["is there the white car ?", "are there doors ?"], "prompt": "the white {} has doors"}, {"index": 9, "image_id": 3288, "entity": "car", "caption": "the tail light is red on the back of the car", "question": ["is there the tail light ?", "is there the back ?", "is there the car ?"], "prompt": "the tail light is red on the back of the {}"}, {"index": 10, "image_id": 3378, "entity": "car", "caption": "red car parked streetside", "question": ["is there red car ?"], "prompt": "red {} parked streetside"}, {"index": 11, "image_id": 3378, "entity": "car", "caption": "door handle on black car", "question": ["is there door ?", "is there black car ?"], "prompt": "door handle on black {}"}, {"index": 12, "image_id": 3493, "entity": "car", "caption": "car has a front light", "question": ["is there car ?", "is there a front light ?"], "prompt": "{} has a front light"}, {"index": 13, "image_id": 3493, "entity": "car", "caption": "car has front light", "question": ["is there car ?", "is there front light ?"], "prompt": "{} has front light"}, {"index": 14, "image_id": 3493, "entity": "car", "caption": "car has grey trim", "question": ["is there car ?"], "prompt": "{} has grey trim"}, {"index": 15, "image_id": 3493, "entity": "car", "caption": "red car has blue and white plate", "question": ["is there red car ?", "is there blue and white plate ?"], "prompt": "red {} has blue and white plate"}, {"index": 16, "image_id": 3493, "entity": "car", "caption": "sidewalk is next to car", "question": ["is there sidewalk ?"], "prompt": "sidewalk is next to {}"}, {"index": 17, "image_id": 3493, "entity": "car", "caption": "car has two headlights", "question": ["is there car ?", "are there two headlights ?"], "prompt": "{} has two headlights"}, {"index": 18, "image_id": 3764, "entity": "car", "caption": "mannequins are behind car", "question": ["are there mannequins ?", "is there car ?"], "prompt": "mannequins are behind {}"}, {"index": 19, "image_id": 3997, "entity": "car", "caption": "a red and black seat belt latch in a car", "question": ["is there a red and black seat belt latch ?", "is there a car ?"], "prompt": "a red and black seat belt latch in a {}"}, {"index": 20, "image_id": 3997, "entity": "car", "caption": "a black head rest in a car", "question": ["is there a black head ?", "is there a car ?"], "prompt": "a black head rest in a {}"}, {"index": 21, "image_id": 3997, "entity": "car", "caption": "a silver and red door handle in a car", "question": ["is there a silver and red door handle ?", "is there a car ?"], "prompt": "a silver and red door handle in a {}"}, {"index": 22, "image_id": 4526, "entity": "car", "caption": "a car front headlight", "question": ["is there a car front headlight ?"], "prompt": "a {} front headlight"}, {"index": 23, "image_id": 4526, "entity": "car", "caption": "the right front tire of the purple car is black in color.", "question": ["is there the right front tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the right front tire of the purple {} is black in color."}, {"index": 24, "image_id": 4526, "entity": "car", "caption": "the back right tire of the purple car is black in color.", "question": ["is there the back right tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the back right tire of the purple {} is black in color."}, {"index": 25, "image_id": 4526, "entity": "car", "caption": "the right front light of the purple car is round in shape.", "question": ["is there the right front light ?", "is there the purple car ?", "is there shape ?"], "prompt": "the right front light of the purple {} is round in shape."}, {"index": 26, "image_id": 2415144, "entity": "car", "caption": "police car in front of fire hydrant", "question": ["is there police car ?", "is there front ?", "is there fire hydrant ?"], "prompt": "police {} in front of fire hydrant"}, {"index": 27, "image_id": 497921, "entity": "car", "caption": "Seat belt coming from the side of car.", "question": ["is there seat belt ?", "is there the side ?", "is there car ?"], "prompt": "Seat belt coming from the side of {}."}, {"index": 28, "image_id": 713086, "entity": "car", "caption": "car has an antenna", "question": ["is there car ?", "is there an antenna ?"], "prompt": "{} has an antenna"}, {"index": 29, "image_id": 713093, "entity": "car", "caption": "Person in black coat standing next to vintage green car", "question": ["is there person ?", "is there black coat ?", "is there vintage green car ?"], "prompt": "Person in black coat standing next to vintage green {}"}, {"index": 30, "image_id": 713101, "entity": "car", "caption": "car has a window", "question": ["is there car ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 31, "image_id": 1592605, "entity": "car", "caption": "A grey car passes by", "question": ["is there a grey car ?"], "prompt": "A grey {} passes by"}, {"index": 32, "image_id": 2414932, "entity": "car", "caption": "The cat sits on the car.", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat sits on the {}."}, {"index": 33, "image_id": 2414470, "entity": "car", "caption": "A car's door handle", "question": ["is there a car's door ?"], "prompt": "A {}'s door handle"}, {"index": 34, "image_id": 2414470, "entity": "car", "caption": "Door handle on a car door.", "question": ["is there door ?", "is there a car door ?"], "prompt": "Door handle on a {} door."}, {"index": 35, "image_id": 2414470, "entity": "car", "caption": "The man is sitting in the car's driver seat.", "question": ["is there the man ?", "is there the car's driver seat ?"], "prompt": "The man is sitting in the {}'s driver seat."}, {"index": 36, "image_id": 2412607, "entity": "car", "caption": "Automobile seats inside the car are gray", "question": ["are there automobile seats ?", "is there the car ?"], "prompt": "Automobile seats inside the {} are gray"}, {"index": 37, "image_id": 2412607, "entity": "car", "caption": "silver door handle on car", "question": ["is there silver door ?", "is there car ?"], "prompt": "silver door handle on {}"}, {"index": 38, "image_id": 2412101, "entity": "car", "caption": "Red car parked on right side of street ", "question": ["is there red car ?", "is there right side ?", "is there street ?"], "prompt": "Red {} parked on right side of street "}, {"index": 39, "image_id": 2412101, "entity": "car", "caption": "Front left tire on gray car.", "question": ["is there front ?", "is there tire ?", "is there gray car ?"], "prompt": "Front left tire on gray {}."}, {"index": 40, "image_id": 2411491, "entity": "car", "caption": "car door is unlocked", "question": ["is there car door ?"], "prompt": "{} door is unlocked"}, {"index": 41, "image_id": 2410940, "entity": "car", "caption": "Hood of car is big", "question": ["is there hood ?", "is there car ?"], "prompt": "Hood of {} is big"}, {"index": 42, "image_id": 2410404, "entity": "car", "caption": "Hood popped open on car in background.", "question": ["is there hood ?", "is there car ?", "is there background ?"], "prompt": "Hood popped open on {} in background."}, {"index": 43, "image_id": 2410319, "entity": "car", "caption": "woman is inside of car", "question": ["is there woman ?", "is there car ?"], "prompt": "woman is inside of {}"}, {"index": 44, "image_id": 2410303, "entity": "car", "caption": "dark car the dog is sitting in", "question": ["is there dark car ?", "is there the dog ?"], "prompt": "dark {} the dog is sitting in"}, {"index": 45, "image_id": 2410034, "entity": "car", "caption": "Strap of car sit", "question": ["is there strap ?", "is there car ?"], "prompt": "Strap of {} sit"}, {"index": 46, "image_id": 2409981, "entity": "car", "caption": "Flags are on top of the car", "question": ["are there flags ?", "is there top ?", "is there the car ?"], "prompt": "Flags are on top of the {}"}, {"index": 47, "image_id": 2409288, "entity": "car", "caption": "car is ordering food", "question": ["is there car ?", "is there food ?"], "prompt": "{} is ordering food"}, {"index": 48, "image_id": 2409288, "entity": "car", "caption": "Silver door lock on a car", "question": ["is there silver door ?", "is there a car ?"], "prompt": "Silver door lock on a {}"}, {"index": 49, "image_id": 2408616, "entity": "car", "caption": "road the car is driving on", "question": ["is there road ?", "is there the car ?"], "prompt": "road the {} is driving on"}, {"index": 50, "image_id": 2408935, "entity": "car", "caption": "Cat sitting on a car.", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat sitting on a {}."}, {"index": 51, "image_id": 2408590, "entity": "car", "caption": "Front of car is red", "question": ["is there front ?", "is there car ?"], "prompt": "Front of {} is red"}, {"index": 52, "image_id": 2408413, "entity": "car", "caption": "Bamper of car is black", "question": ["is there car ?"], "prompt": "Bamper of {} is black"}, {"index": 53, "image_id": 2408413, "entity": "car", "caption": "Front headlight on a car. ", "question": ["is there front headlight ?", "is there a car ?"], "prompt": "Front headlight on a {}. "}, {"index": 54, "image_id": 2408413, "entity": "car", "caption": "Front turn signal light on a car. ", "question": ["is there front turn signal light ?", "is there a car ?"], "prompt": "Front turn signal light on a {}. "}, {"index": 55, "image_id": 2408413, "entity": "car", "caption": "the side of the front headlight on the car", "question": ["is there the side ?", "is there the front headlight ?", "is there the car ?"], "prompt": "the side of the front headlight on the {}"}, {"index": 56, "image_id": 2408016, "entity": "car", "caption": "The word Jazz written on back of car", "question": ["is there the word jazz ?", "is there car ?"], "prompt": "The word Jazz written on back of {}"}, {"index": 57, "image_id": 2408012, "entity": "car", "caption": "the car has a black underneth", "question": ["is there the car ?", "is there a black underneth ?"], "prompt": "the {} has a black underneth"}, {"index": 58, "image_id": 2407776, "entity": "car", "caption": "a parking meter is next to the car", "question": ["is there a parking meter ?", "is there the car ?"], "prompt": "a parking meter is next to the {}"}, {"index": 59, "image_id": 2407740, "entity": "car", "caption": "both cars tail lights are on", "question": ["are there both cars tail lights ?"], "prompt": "both {}s tail lights are on"}, {"index": 60, "image_id": 2407740, "entity": "car", "caption": "A red light is on a second car. ", "question": ["is there a red light ?", "is there a second car ?"], "prompt": "A red light is on a second {}. "}, {"index": 61, "image_id": 2407740, "entity": "car", "caption": "rain drops on car windshield", "question": ["is there rain ?", "is there car windshield ?"], "prompt": "rain drops on {} windshield"}, {"index": 62, "image_id": 2407600, "entity": "car", "caption": "white cup placed on roof of car", "question": ["is there roof ?", "is there car ?"], "prompt": "white cup placed on roof of {}"}, {"index": 63, "image_id": 2407600, "entity": "car", "caption": "The back tire of the car where the man is sitting.", "question": ["is there the back tire ?", "is there the car ?", "is there the man ?"], "prompt": "The back tire of the {} where the man is sitting."}, {"index": 64, "image_id": 2407600, "entity": "car", "caption": "The front tire of the car where the man is sitting.", "question": ["is there the front tire ?", "is there the car ?", "is there the man ?"], "prompt": "The front tire of the {} where the man is sitting."}, {"index": 65, "image_id": 2407181, "entity": "car", "caption": "Man sitting on car ", "question": ["is there man ?", "is there car ?"], "prompt": "Man sitting on {} "}, {"index": 66, "image_id": 2407181, "entity": "car", "caption": "The man is sitting inside a car.", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is sitting inside a {}."}, {"index": 67, "image_id": 2406983, "entity": "car", "caption": "The car has a Mercedes emblem", "question": ["is there the car ?", "are there a mercedes emblem ?"], "prompt": "The {} has a Mercedes emblem"}, {"index": 68, "image_id": 2406983, "entity": "car", "caption": "the car has 55000000 on the trunk", "question": ["is there the car ?", "is there the trunk ?"], "prompt": "the {} has 55000000 on the trunk"}, {"index": 69, "image_id": 2406229, "entity": "car", "caption": "door handle on a car", "question": ["is there door ?", "is there a car ?"], "prompt": "door handle on a {}"}, {"index": 70, "image_id": 2405945, "entity": "car", "caption": "the side view mirror is on the car", "question": ["is there the side view mirror ?", "is there the car ?"], "prompt": "the side view mirror is on the {}"}, {"index": 71, "image_id": 2405945, "entity": "car", "caption": "the dog is inside the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is inside the {}"}, {"index": 72, "image_id": 2405945, "entity": "car", "caption": "the windshield is on the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "the windshield is on the {}"}, {"index": 73, "image_id": 2405130, "entity": "car", "caption": "this is a car ", "question": ["is there a car ?"], "prompt": "this is a {} "}, {"index": 74, "image_id": 2405042, "entity": "car", "caption": "this is the car's hindlight", "question": ["is there the car's hindlight ?"], "prompt": "this is the {}'s hindlight"}, {"index": 75, "image_id": 2405042, "entity": "car", "caption": "the car beside the meter is blue", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} beside the meter is blue"}, {"index": 76, "image_id": 2405042, "entity": "car", "caption": "the car behind the meter is white", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} behind the meter is white"}, {"index": 77, "image_id": 2405042, "entity": "car", "caption": "the blue car has a red tail light", "question": ["is there the blue car ?", "is there a red tail light ?"], "prompt": "the blue {} has a red tail light"}, {"index": 78, "image_id": 2404709, "entity": "car", "caption": "door handle on a gray car", "question": ["is there door ?", "is there a gray car ?"], "prompt": "door handle on a gray {}"}, {"index": 79, "image_id": 2404508, "entity": "car", "caption": "a cat is on the car", "question": ["is there a cat ?", "is there the car ?"], "prompt": "a cat is on the {}"}, {"index": 80, "image_id": 2404508, "entity": "car", "caption": "the car is dark inside", "question": ["is there the car ?"], "prompt": "the {} is dark inside"}, {"index": 81, "image_id": 2404508, "entity": "car", "caption": "White car, visible through car window. ", "question": ["is there white car ?", "is there car window ?"], "prompt": "White {}, visible through {} window. "}, {"index": 82, "image_id": 2404508, "entity": "car", "caption": "the cat is in the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is in the {}"}, {"index": 83, "image_id": 2404223, "entity": "car", "caption": "black car behind bush and fire hydrant", "question": ["is there black car ?", "is there fire hydrant ?"], "prompt": "black {} behind bush and fire hydrant"}, {"index": 84, "image_id": 2404223, "entity": "car", "caption": "The car has rims on", "question": ["is there the car ?", "are there rims ?"], "prompt": "The {} has rims on"}, {"index": 85, "image_id": 2403996, "entity": "car", "caption": "The dog is laying in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is laying in the {}."}, {"index": 86, "image_id": 2403996, "entity": "car", "caption": "this is a car air freshner", "question": ["is there a car air freshner ?"], "prompt": "this is a {} air freshner"}, {"index": 87, "image_id": 2403274, "entity": "car", "caption": "antenna attached to car", "question": ["is there antenna ?", "is there car ?"], "prompt": "antenna attached to {}"}, {"index": 88, "image_id": 2402657, "entity": "car", "caption": "side car mirror with sky reflected ", "question": ["is there side car mirror ?", "is there sky ?"], "prompt": "side {} mirror with sky reflected "}, {"index": 89, "image_id": 2402628, "entity": "car", "caption": "a car head light", "question": ["is there a car head ?"], "prompt": "a {} head light"}, {"index": 90, "image_id": 2401935, "entity": "car", "caption": "a car's door handle", "question": ["is there a car's door ?"], "prompt": "a {}'s door handle"}, {"index": 91, "image_id": 2401222, "entity": "car", "caption": "the woman is in a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "the woman is in a {}"}, {"index": 92, "image_id": 2401204, "entity": "car", "caption": "A cat is sitting on top of a car", "question": ["is there a cat ?", "is there top ?", "is there a car ?"], "prompt": "A cat is sitting on top of a {}"}, {"index": 93, "image_id": 2401204, "entity": "car", "caption": "cat is on the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is on the {}"}, {"index": 94, "image_id": 2401017, "entity": "car", "caption": "The car is silver.", "question": ["is there the car ?"], "prompt": "The {} is silver."}, {"index": 95, "image_id": 2401017, "entity": "car", "caption": "reflection shines on the door of the car", "question": ["is there reflection ?", "is there the door ?", "is there the car ?"], "prompt": "reflection shines on the door of the {}"}, {"index": 96, "image_id": 2400948, "entity": "car", "caption": "Surf board on a car", "question": ["is there surf board ?", "is there a car ?"], "prompt": "Surf board on a {}"}, {"index": 97, "image_id": 2400948, "entity": "car", "caption": "surfboards are on top of the car", "question": ["are there surfboards ?", "is there top ?", "is there the car ?"], "prompt": "surfboards are on top of the {}"}, {"index": 98, "image_id": 2400948, "entity": "car", "caption": "a steering wheel statue is on the middle of car", "question": ["is there a steering wheel statue ?", "is there the middle ?", "is there car ?"], "prompt": "a steering wheel statue is on the middle of {}"}, {"index": 99, "image_id": 2400948, "entity": "car", "caption": "people are standing behind car", "question": ["are there people ?", "is there car ?"], "prompt": "people are standing behind {}"}, {"index": 100, "image_id": 2400860, "entity": "car", "caption": "black door handles on white car", "question": ["is there black door ?", "is there white car ?"], "prompt": "black door handles on white {}"}, {"index": 101, "image_id": 2400860, "entity": "car", "caption": "a door handle on a car", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}"}, {"index": 102, "image_id": 2400806, "entity": "car", "caption": "a red suitcase is next to the car", "question": ["is there a red suitcase ?", "is there the car ?"], "prompt": "a red suitcase is next to the {}"}, {"index": 103, "image_id": 2400490, "entity": "car", "caption": "front door handle on car", "question": ["is there front door ?", "is there car ?"], "prompt": "front door handle on {}"}, {"index": 104, "image_id": 2400490, "entity": "car", "caption": "a car door handle", "question": ["is there a car door ?"], "prompt": "a {} door handle"}, {"index": 105, "image_id": 2400490, "entity": "car", "caption": "parked car is dark gray with four doors", "question": ["is there parked car ?", "are there four doors ?"], "prompt": "parked {} is dark gray with four doors"}, {"index": 106, "image_id": 2400490, "entity": "car", "caption": "a door handle on a car.", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}."}, {"index": 107, "image_id": 2400490, "entity": "car", "caption": "front left fender of a car.", "question": ["is there front left fender ?", "is there a car ?"], "prompt": "front left fender of a {}."}, {"index": 108, "image_id": 2400275, "entity": "car", "caption": "A person barely visible in the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "A person barely visible in the {}"}, {"index": 109, "image_id": 2400275, "entity": "car", "caption": "The window of the car the dog is sticking his head out of", "question": ["is there the window ?", "is there the car ?", "is there the dog ?", "is there his head ?"], "prompt": "The window of the {} the dog is sticking his head out of"}, {"index": 110, "image_id": 2400275, "entity": "car", "caption": "Dogs is in a car", "question": ["are there dogs ?", "is there a car ?"], "prompt": "Dogs is in a {}"}, {"index": 111, "image_id": 2399913, "entity": "car", "caption": "handle that helps you getting out of car", "question": ["is there car ?"], "prompt": "handle that helps you getting out of {}"}, {"index": 112, "image_id": 2399740, "entity": "car", "caption": "This mirror belongs to a car.", "question": ["is there this mirror ?", "is there a car ?"], "prompt": "This mirror belongs to a {}."}, {"index": 113, "image_id": 2399146, "entity": "car", "caption": "this is a car", "question": ["is there a car ?"], "prompt": "this is a {}"}, {"index": 114, "image_id": 2398786, "entity": "car", "caption": "Door handle on the driver side of a black car. ", "question": ["is there door ?", "is there the driver side ?", "is there a black car ?"], "prompt": "Door handle on the driver side of a black {}. "}, {"index": 115, "image_id": 2398088, "entity": "car", "caption": "seat buckle part in car", "question": ["is there seat buckle part ?", "is there car ?"], "prompt": "seat buckle part in {}"}, {"index": 116, "image_id": 2398088, "entity": "car", "caption": "A window is in the car.", "question": ["is there a window ?", "is there the car ?"], "prompt": "A window is in the {}."}, {"index": 117, "image_id": 2398030, "entity": "car", "caption": "Trees are behind the cars.", "question": ["are there trees ?", "are there the cars ?"], "prompt": "Trees are behind the {}s."}, {"index": 118, "image_id": 2398030, "entity": "car", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice {}s and trucks lined up"}, {"index": 119, "image_id": 2398030, "entity": "car", "caption": "car with hood that opens backwards ", "question": ["is there car ?", "is there hood ?"], "prompt": "{} with hood that opens backwards "}, {"index": 120, "image_id": 2397686, "entity": "car", "caption": "Person is inside car.", "question": ["is there person ?", "is there inside car ?"], "prompt": "Person is inside {}."}, {"index": 121, "image_id": 2396173, "entity": "car", "caption": "the zebra is near a car", "question": ["is there a car ?"], "prompt": "the zebra is near a {}"}, {"index": 122, "image_id": 2396020, "entity": "car", "caption": "grass next to car is dry ", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is dry "}, {"index": 123, "image_id": 2396020, "entity": "car", "caption": "grass next to car is color brown", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is color brown"}, {"index": 124, "image_id": 2396018, "entity": "car", "caption": "White car is behind meter", "question": ["is there white car ?", "is there meter ?"], "prompt": "White {} is behind meter"}, {"index": 125, "image_id": 2395874, "entity": "car", "caption": "air went inside car", "question": ["is there air ?", "is there car ?"], "prompt": "air went inside {}"}, {"index": 126, "image_id": 2395874, "entity": "car", "caption": "The zebra is in the car.", "question": ["is there the car ?"], "prompt": "The zebra is in the {}."}, {"index": 127, "image_id": 2395874, "entity": "car", "caption": "zebra's head pokes into car window", "question": ["is there zebra's head ?", "is there car window ?"], "prompt": "zebra's head pokes into {} window"}, {"index": 128, "image_id": 2395759, "entity": "car", "caption": "cows surround the car", "question": ["are there cows ?", "is there the car ?"], "prompt": "cows surround the {}"}, {"index": 129, "image_id": 2395759, "entity": "car", "caption": "animal going to bathroom beside car", "question": ["is there animal ?", "is there car ?"], "prompt": "animal going to bathroom beside {}"}, {"index": 130, "image_id": 2395588, "entity": "car", "caption": "two more cows wait in line to taste different parts of car, perhaps c[h]ow down", "question": ["are there two more cows ?", "is there line ?", "are there different parts ?", "is there car ?"], "prompt": "two more cows wait in line to taste different parts of {}, perhaps c[h]ow down"}, {"index": 131, "image_id": 2395338, "entity": "car", "caption": "teddy bear on a red car", "question": ["is there a red car ?"], "prompt": "teddy bear on a red {}"}, {"index": 132, "image_id": 2395338, "entity": "car", "caption": "The teddy bear is sitting on the car.", "question": ["is there the car ?"], "prompt": "The teddy bear is sitting on the {}."}, {"index": 133, "image_id": 2395338, "entity": "car", "caption": "The seats in the car is tan.", "question": ["are there the seats ?", "is there the car ?", "is there tan ?"], "prompt": "The seats in the {} is tan."}, {"index": 134, "image_id": 2395338, "entity": "car", "caption": "The bear is sitting by the side mirror of the car.", "question": ["is there the bear ?", "is there the side mirror ?", "is there the car ?"], "prompt": "The bear is sitting by the side mirror of the {}."}, {"index": 135, "image_id": 2395338, "entity": "car", "caption": "The car has windshield wipers.", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "The {} has windshield wipers."}, {"index": 136, "image_id": 2395338, "entity": "car", "caption": "brown teddy bear sitting on car", "question": ["is there car ?"], "prompt": "brown teddy bear sitting on {}"}, {"index": 137, "image_id": 2395338, "entity": "car", "caption": "little teddy bear sitting on car", "question": ["is there car ?"], "prompt": "little teddy bear sitting on {}"}, {"index": 138, "image_id": 2395208, "entity": "car", "caption": "front left light of a car", "question": ["is there front ?", "is there light ?", "is there a car ?"], "prompt": "front left light of a {}"}, {"index": 139, "image_id": 2394987, "entity": "car", "caption": "the fence is behind the car", "question": ["is there the fence ?", "is there the car ?"], "prompt": "the fence is behind the {}"}, {"index": 140, "image_id": 2394987, "entity": "car", "caption": "the cars says coca-cola", "question": ["are there the cars ?"], "prompt": "the {}s says coca-cola"}, {"index": 141, "image_id": 2393712, "entity": "car", "caption": "The car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "The {} has a mirror"}, {"index": 142, "image_id": 2393712, "entity": "car", "caption": "the car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 143, "image_id": 2391973, "entity": "car", "caption": "the cars control panel", "question": ["are there the cars control panel ?"], "prompt": "the {}s control panel"}, {"index": 144, "image_id": 2390809, "entity": "car", "caption": "this is a car tire", "question": ["is there a car tire ?"], "prompt": "this is a {} tire"}, {"index": 145, "image_id": 2390710, "entity": "car", "caption": "the cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is on the {}"}, {"index": 146, "image_id": 2390710, "entity": "car", "caption": "cat sitting and crouching on hood of car", "question": ["is there cat ?", "is there hood ?", "is there car ?"], "prompt": "cat sitting and crouching on hood of {}"}, {"index": 147, "image_id": 2390672, "entity": "car", "caption": "The dog is in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is in the {}."}, {"index": 148, "image_id": 2390672, "entity": "car", "caption": "a German shepard alone inside a car with the windows rolled up", "question": ["is there a german shepard ?", "is there a car ?", "are there the windows ?"], "prompt": "a German shepard alone inside a {} with the windows rolled up"}, {"index": 149, "image_id": 2390553, "entity": "car", "caption": "the dash in the car is black", "question": ["is there the dash ?", "is there the car ?"], "prompt": "the dash in the {} is black"}, {"index": 150, "image_id": 2390177, "entity": "car", "caption": "shiny roof rack on red car", "question": ["is there shiny roof rack ?", "is there red car ?"], "prompt": "shiny roof rack on red {}"}, {"index": 151, "image_id": 2389910, "entity": "car", "caption": "a slipstream sports car has bikes on it.", "question": ["are there a slipstream sports car ?", "are there bikes ?"], "prompt": "a slipstream sports {} has bikes on it."}, {"index": 152, "image_id": 2389614, "entity": "car", "caption": "Dog hanging out of car. ", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog hanging out of {}. "}, {"index": 153, "image_id": 2389485, "entity": "car", "caption": "Woman watching animals in the car.", "question": ["is there woman ?", "are there animals ?", "is there the car ?"], "prompt": "Woman watching animals in the {}."}, {"index": 154, "image_id": 2389479, "entity": "car", "caption": "a car with several bicycles mounted on top of it", "question": ["is there a car ?", "are there several bicycles ?", "is there top ?"], "prompt": "a {} with several bicycles mounted on top of it"}, {"index": 155, "image_id": 2389474, "entity": "car", "caption": "The dog is looking out the car window.", "question": ["is there the dog ?", "is there the car window ?"], "prompt": "The dog is looking out the {} window."}, {"index": 156, "image_id": 2388774, "entity": "car", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the bird is in the {} "}, {"index": 157, "image_id": 2388733, "entity": "car", "caption": "bicycles mounted on car", "question": ["are there bicycles ?", "is there car ?"], "prompt": "bicycles mounted on {}"}, {"index": 158, "image_id": 2388584, "entity": "car", "caption": "A doll head in a car.", "question": ["is there a doll head ?", "is there a car ?"], "prompt": "A doll head in a {}."}, {"index": 159, "image_id": 2388584, "entity": "car", "caption": "Another doll head inside a car.", "question": ["is there another doll head ?", "is there a car ?"], "prompt": "Another doll head inside a {}."}, {"index": 160, "image_id": 2388584, "entity": "car", "caption": "empty tube of toothpaste taped to top of car", "question": ["is there empty tube ?", "is there toothpaste ?", "is there top ?", "is there car ?"], "prompt": "empty tube of toothpaste taped to top of {}"}, {"index": 161, "image_id": 2388584, "entity": "car", "caption": "two toothbrushes taped to top of car", "question": ["are there two toothbrushes ?", "is there top ?", "is there car ?"], "prompt": "two toothbrushes taped to top of {}"}, {"index": 162, "image_id": 2388052, "entity": "car", "caption": "roof of car is blue and yellow", "question": ["is there roof ?", "is there car ?"], "prompt": "roof of {} is blue and yellow"}, {"index": 163, "image_id": 2388052, "entity": "car", "caption": "door of car is yellow", "question": ["is there door ?", "is there car ?"], "prompt": "door of {} is yellow"}, {"index": 164, "image_id": 2388010, "entity": "car", "caption": "white car pulled off on side of road", "question": ["is there white car ?", "is there side ?", "is there road ?"], "prompt": "white {} pulled off on side of road"}, {"index": 165, "image_id": 2388010, "entity": "car", "caption": "a door handle ona car", "question": ["is there a door ?"], "prompt": "a door handle ona {}"}, {"index": 166, "image_id": 2387950, "entity": "car", "caption": "dog is resting on green car", "question": ["is there dog ?", "is there green car ?"], "prompt": "dog is resting on green {}"}, {"index": 167, "image_id": 2387327, "entity": "car", "caption": "The dogs are in a car.", "question": ["are there the dogs ?", "is there a car ?"], "prompt": "The dogs are in a {}."}, {"index": 168, "image_id": 2386114, "entity": "car", "caption": "white car door handle", "question": ["is there white car door ?"], "prompt": "white {} door handle"}, {"index": 169, "image_id": 2385961, "entity": "car", "caption": "a kitty cat is sleeping under a car", "question": ["is there a kitty cat ?", "is there a car ?"], "prompt": "a kitty cat is sleeping under a {}"}, {"index": 170, "image_id": 2385697, "entity": "car", "caption": "the surfboards are sticking out of the car", "question": ["are there the surfboards ?", "is there the car ?"], "prompt": "the surfboards are sticking out of the {}"}, {"index": 171, "image_id": 2385697, "entity": "car", "caption": "the tag is on the back of the car", "question": ["is there the tag ?", "is there the back ?", "is there the car ?"], "prompt": "the tag is on the back of the {}"}, {"index": 172, "image_id": 2385697, "entity": "car", "caption": "the surfboards are on the roof of the car", "question": ["are there the surfboards ?", "is there the roof ?", "is there the car ?"], "prompt": "the surfboards are on the roof of the {}"}, {"index": 173, "image_id": 2385466, "entity": "car", "caption": "Dog is inside car", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog is inside {}"}, {"index": 174, "image_id": 2385251, "entity": "car", "caption": "fence is in front of car", "question": ["is there fence ?", "is there front ?", "is there car ?"], "prompt": "fence is in front of {}"}, {"index": 175, "image_id": 2384917, "entity": "car", "caption": "Light on the car is on. ", "question": ["is there light ?", "is there the car ?"], "prompt": "Light on the {} is on. "}, {"index": 176, "image_id": 2383569, "entity": "car", "caption": "Three bicycles lined up behind a green car.", "question": ["are there three bicycles ?", "is there a green car ?"], "prompt": "Three bicycles lined up behind a green {}."}, {"index": 177, "image_id": 2383096, "entity": "car", "caption": "the car has wood grain", "question": ["is there the car ?", "is there wood grain ?"], "prompt": "the {} has wood grain"}, {"index": 178, "image_id": 2383016, "entity": "car", "caption": "Front left tire of car", "question": ["is there front left tire ?", "is there car ?"], "prompt": "Front left tire of {}"}, {"index": 179, "image_id": 2382637, "entity": "car", "caption": "rails surround roof of green car", "question": ["are there rails ?", "is there surround roof ?", "is there green car ?"], "prompt": "rails surround roof of green {}"}, {"index": 180, "image_id": 2382494, "entity": "car", "caption": "A woman looks into the white car", "question": ["is there a woman ?", "is there the white car ?"], "prompt": "A woman looks into the white {}"}, {"index": 181, "image_id": 2382257, "entity": "car", "caption": "car front passenger side handle", "question": ["is there car front passenger side handle ?"], "prompt": "{} front passenger side handle"}, {"index": 182, "image_id": 2382257, "entity": "car", "caption": "car rear passenger side handle", "question": ["is there car rear passenger side handle ?"], "prompt": "{} rear passenger side handle"}, {"index": 183, "image_id": 2382257, "entity": "car", "caption": "The car door handles", "question": ["is there the car door ?"], "prompt": "The {} door handles"}, {"index": 184, "image_id": 2381937, "entity": "car", "caption": "the driver of the toy car is piggy", "question": ["is there the driver ?", "is there the toy car ?", "is there piggy ?"], "prompt": "the driver of the toy {} is piggy"}, {"index": 185, "image_id": 2381832, "entity": "car", "caption": "Jeep parked next to car", "question": ["is there jeep ?", "is there car ?"], "prompt": "Jeep parked next to {}"}, {"index": 186, "image_id": 2381810, "entity": "car", "caption": "Person is driving a car.", "question": ["is there person ?", "is there a car ?"], "prompt": "Person is driving a {}."}, {"index": 187, "image_id": 2381447, "entity": "car", "caption": "the tag on the car has letters and numbers on it", "question": ["is there the tag ?", "is there the car ?", "are there letters ?", "are there numbers ?"], "prompt": "the tag on the {} has letters and numbers on it"}, {"index": 188, "image_id": 2381447, "entity": "car", "caption": "the car is a CX-7", "question": ["is there the car ?", "is there a cx-7 ?"], "prompt": "the {} is a CX-7"}, {"index": 189, "image_id": 2381447, "entity": "car", "caption": "Cat standing near a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat standing near a {}"}, {"index": 190, "image_id": 2381315, "entity": "car", "caption": "back end of a woman's car is open", "question": ["is there back end ?", "is there a woman's car ?"], "prompt": "back end of a woman's {} is open"}, {"index": 191, "image_id": 2381315, "entity": "car", "caption": "The woman is standing behind a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "The woman is standing behind a {}"}, {"index": 192, "image_id": 2381118, "entity": "car", "caption": "car has a sticker on the windshield ", "question": ["is there car ?", "is there a sticker ?", "is there the windshield ?"], "prompt": "{} has a sticker on the windshield "}, {"index": 193, "image_id": 2381101, "entity": "car", "caption": "back window of car with sunshine coming through", "question": ["is there back window ?", "is there car ?", "is there sunshine ?"], "prompt": "back window of {} with sunshine coming through"}, {"index": 194, "image_id": 2381051, "entity": "car", "caption": "car top tie down rack", "question": ["is there car top tie ?"], "prompt": "{} top tie down rack"}, {"index": 195, "image_id": 2380669, "entity": "car", "caption": "a car headlight ", "question": ["is there a car headlight ?"], "prompt": "a {} headlight "}, {"index": 196, "image_id": 2380293, "entity": "car", "caption": "speedometer showing the car is going 0 MPH", "question": ["is there speedometer ?", "is there the car ?"], "prompt": "speedometer showing the {} is going 0 MPH"}, {"index": 197, "image_id": 2380171, "entity": "car", "caption": "black door handle on car", "question": ["is there black door ?", "is there car ?"], "prompt": "black door handle on {}"}, {"index": 198, "image_id": 2379398, "entity": "car", "caption": "The lamb is next to the car", "question": ["is there the car ?"], "prompt": "The lamb is next to the {}"}, {"index": 199, "image_id": 2379398, "entity": "car", "caption": "The car is on top of gravel", "question": ["is there the car ?", "is there top ?", "is there gravel ?"], "prompt": "The {} is on top of gravel"}, {"index": 200, "image_id": 2379270, "entity": "car", "caption": "the people are in the car", "question": ["are there the people ?", "is there the car ?"], "prompt": "the people are in the {}"}, {"index": 201, "image_id": 2378437, "entity": "car", "caption": "window of car is semi-open", "question": ["is there window ?", "is there car ?"], "prompt": "window of {} is semi-open"}, {"index": 202, "image_id": 2377492, "entity": "car", "caption": "He is next to the car.", "question": ["is there the car ?"], "prompt": "He is next to the {}."}, {"index": 203, "image_id": 2377281, "entity": "car", "caption": "headlights of car are white", "question": ["are there headlights ?", "is there car ?"], "prompt": "headlights of {} are white"}, {"index": 204, "image_id": 2377134, "entity": "car", "caption": "Leather suitcase is strapped to the trunk of the car", "question": ["is there leather suitcase ?", "is there the trunk ?", "is there the car ?"], "prompt": "Leather suitcase is strapped to the trunk of the {}"}, {"index": 205, "image_id": 2377065, "entity": "car", "caption": "The cat is laying on a car.", "question": ["is there the cat ?", "is there a car ?"], "prompt": "The cat is laying on a {}."}, {"index": 206, "image_id": 2376812, "entity": "car", "caption": "man standing in front of a parked car", "question": ["is there man ?", "is there front ?", "is there a parked car ?"], "prompt": "man standing in front of a parked {}"}, {"index": 207, "image_id": 2376666, "entity": "car", "caption": "Two cars driving down the road.", "question": ["are there two cars ?", "is there the road ?"], "prompt": "Two {}s driving down the road."}, {"index": 208, "image_id": 2376189, "entity": "car", "caption": "The baby is in the car.", "question": ["is there the baby ?", "is there the car ?"], "prompt": "The baby is in the {}."}, {"index": 209, "image_id": 2374963, "entity": "car", "caption": "man standing next to car", "question": ["is there man ?", "is there car ?"], "prompt": "man standing next to {}"}, {"index": 210, "image_id": 2374891, "entity": "car", "caption": "A dog popping outa a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog popping outa a {}"}, {"index": 211, "image_id": 2374500, "entity": "car", "caption": "A cat is laying on a car", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is laying on a {}"}, {"index": 212, "image_id": 2374500, "entity": "car", "caption": "The cat is on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "The cat is on top of a {}"}, {"index": 213, "image_id": 2374500, "entity": "car", "caption": "The cat is on a white car", "question": ["is there the cat ?", "is there a white car ?"], "prompt": "The cat is on a white {}"}, {"index": 214, "image_id": 2374500, "entity": "car", "caption": "the tabby cat is laying on the car", "question": ["is there the tabby cat ?", "is there the car ?"], "prompt": "the tabby cat is laying on the {}"}, {"index": 215, "image_id": 2374203, "entity": "car", "caption": "The blue car has an open window", "question": ["is there the blue car ?", "is there an open window ?"], "prompt": "The blue {} has an open window"}, {"index": 216, "image_id": 2374203, "entity": "car", "caption": "A man is sitting in the blue car", "question": ["is there a man ?", "is there the blue car ?"], "prompt": "A man is sitting in the blue {}"}, {"index": 217, "image_id": 2374203, "entity": "car", "caption": "man driving a blue car", "question": ["is there man ?", "is there a blue car ?"], "prompt": "man driving a blue {}"}, {"index": 218, "image_id": 2374072, "entity": "car", "caption": "Gas pump behind car.", "question": ["is there gas pump ?", "is there car ?"], "prompt": "Gas pump behind {}."}, {"index": 219, "image_id": 2372618, "entity": "car", "caption": "Dog is inside the car.", "question": ["is there dog ?", "is there the car ?"], "prompt": "Dog is inside the {}."}, {"index": 220, "image_id": 2372618, "entity": "car", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog is riding in a {}"}, {"index": 221, "image_id": 2372618, "entity": "car", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A dog is in its master's {}"}, {"index": 222, "image_id": 2372618, "entity": "car", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog likes riding in a {}"}, {"index": 223, "image_id": 2372587, "entity": "car", "caption": "Classic car headlight", "question": ["is there classic car headlight ?"], "prompt": "Classic {} headlight"}, {"index": 224, "image_id": 2372587, "entity": "car", "caption": "Two surfboards attach to classic car roof", "question": ["are there two surfboards ?", "is there classic car roof ?"], "prompt": "Two surfboards attach to classic {} roof"}, {"index": 225, "image_id": 2372550, "entity": "car", "caption": "Mud flaps on a blue car", "question": ["are there mud flaps ?", "is there a blue car ?"], "prompt": "Mud flaps on a blue {}"}, {"index": 226, "image_id": 2372422, "entity": "car", "caption": "A back car door handle", "question": ["is there a back car door ?"], "prompt": "A back {} door handle"}, {"index": 227, "image_id": 2371952, "entity": "car", "caption": "seat belt hanging inside a car", "question": ["is there seat belt ?", "is there a car ?"], "prompt": "seat belt hanging inside a {}"}, {"index": 228, "image_id": 2371950, "entity": "car", "caption": "the cat is in a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is in a {}"}, {"index": 229, "image_id": 2371208, "entity": "car", "caption": "a chrome door handle on a car", "question": ["is there a chrome door ?", "is there a car ?"], "prompt": "a chrome door handle on a {}"}, {"index": 230, "image_id": 2371208, "entity": "car", "caption": "Silver door handle on green car", "question": ["is there silver door ?", "is there green car ?"], "prompt": "Silver door handle on green {}"}, {"index": 231, "image_id": 2370927, "entity": "car", "caption": "the elephant is close to the car ", "question": ["is there the elephant ?", "is there the car ?"], "prompt": "the elephant is close to the {} "}, {"index": 232, "image_id": 2370584, "entity": "car", "caption": "hood of the car is up", "question": ["is there hood ?", "is there the car ?"], "prompt": "hood of the {} is up"}, {"index": 233, "image_id": 2370584, "entity": "car", "caption": "several people standing away from the cars", "question": ["are there several people ?", "are there the cars ?"], "prompt": "several people standing away from the {}s"}, {"index": 234, "image_id": 2370584, "entity": "car", "caption": "trees located behind place where car show is", "question": ["are there trees ?", "is there place ?", "is there car show ?"], "prompt": "trees located behind place where {} show is"}, {"index": 235, "image_id": 2370246, "entity": "car", "caption": "the cat is lying on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is lying on the {}"}, {"index": 236, "image_id": 2369015, "entity": "car", "caption": "Surfboard is on top of car", "question": ["is there surfboard ?", "is there top ?", "is there car ?"], "prompt": "Surfboard is on top of {}"}, {"index": 237, "image_id": 2368457, "entity": "car", "caption": "baby looking out the window of the car", "question": ["is there baby ?", "is there the window ?", "is there the car ?"], "prompt": "baby looking out the window of the {}"}, {"index": 238, "image_id": 2368457, "entity": "car", "caption": "old style car driving down the road", "question": ["is there old style car ?", "is there the road ?"], "prompt": "old style {} driving down the road"}, {"index": 239, "image_id": 2368457, "entity": "car", "caption": "advertisement is on the door of the car", "question": ["is there advertisement ?", "is there the door ?", "is there the car ?"], "prompt": "advertisement is on the door of the {}"}, {"index": 240, "image_id": 2368457, "entity": "car", "caption": "a person is driving the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "a person is driving the {}"}, {"index": 241, "image_id": 2368457, "entity": "car", "caption": "a rack with straps is on the car", "question": ["is there a rack ?", "are there straps ?", "is there the car ?"], "prompt": "a rack with straps is on the {}"}, {"index": 242, "image_id": 2367648, "entity": "car", "caption": "A car is at an auto show", "question": ["is there a car ?", "is there an auto show ?"], "prompt": "A {} is at an auto show"}, {"index": 243, "image_id": 2367406, "entity": "car", "caption": "The curb is next to the cars.", "question": ["is there the curb ?", "are there the cars ?"], "prompt": "The curb is next to the {}s."}, {"index": 244, "image_id": 2367276, "entity": "car", "caption": "the car handle on the passenger door", "question": ["is there the car handle ?", "is there the passenger door ?"], "prompt": "the {} handle on the passenger door"}, {"index": 245, "image_id": 2367258, "entity": "car", "caption": "giraffe peeking in the car", "question": ["is there the car ?"], "prompt": "giraffe peeking in the {}"}, {"index": 246, "image_id": 2367258, "entity": "car", "caption": "the scene is inside the car ", "question": ["is there the scene ?", "is there the car ?"], "prompt": "the scene is inside the {} "}, {"index": 247, "image_id": 2367258, "entity": "car", "caption": "cars sunroof protective seal", "question": ["are there cars ?", "is there protective seal ?"], "prompt": "{}s sunroof protective seal"}, {"index": 248, "image_id": 2367033, "entity": "car", "caption": "the silver car door handle", "question": ["is there the silver car door ?"], "prompt": "the silver {} door handle"}, {"index": 249, "image_id": 2365787, "entity": "car", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th edog is in the {} "}, {"index": 250, "image_id": 2365750, "entity": "car", "caption": "This is a car mirror", "question": ["is there a car mirror ?"], "prompt": "This is a {} mirror"}, {"index": 251, "image_id": 2365750, "entity": "car", "caption": "This is a car window", "question": ["is there a car window ?"], "prompt": "This is a {} window"}, {"index": 252, "image_id": 2365458, "entity": "car", "caption": "one headlight on front of car", "question": ["is there one headlight ?", "is there front ?", "is there car ?"], "prompt": "one headlight on front of {}"}, {"index": 253, "image_id": 2364504, "entity": "car", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One dog is sitting in the {}."}, {"index": 254, "image_id": 2364504, "entity": "car", "caption": "Buildings are outside the car.", "question": ["are there buildings ?", "is there the car ?"], "prompt": "Buildings are outside the {}."}, {"index": 255, "image_id": 2364109, "entity": "car", "caption": "front dashboard of car where a rider took the photo", "question": ["is there front dashboard ?", "is there car ?", "is there a rider ?", "is there the photo ?"], "prompt": "front dashboard of {} where a rider took the photo"}, {"index": 256, "image_id": 2363425, "entity": "car", "caption": "the door handle on a car", "question": ["is there the door ?", "is there a car ?"], "prompt": "the door handle on a {}"}, {"index": 257, "image_id": 2363424, "entity": "car", "caption": "several people standing behind car", "question": ["are there several people ?", "is there car ?"], "prompt": "several people standing behind {}"}, {"index": 258, "image_id": 2363415, "entity": "car", "caption": "black car door handle on a white car", "question": ["is there black car door ?", "is there a white car ?"], "prompt": "black {} door handle on a white {}"}, {"index": 259, "image_id": 2363359, "entity": "car", "caption": "the writing on the car appears to be chinese", "question": ["is there the writing ?", "is there the car ?"], "prompt": "the writing on the {} appears to be chinese"}, {"index": 260, "image_id": 2363195, "entity": "car", "caption": "Ontario plates are on the car", "question": ["are there ontario plates ?", "is there the car ?"], "prompt": "Ontario plates are on the {}"}, {"index": 261, "image_id": 2363195, "entity": "car", "caption": "The cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}"}, {"index": 262, "image_id": 2362213, "entity": "car", "caption": "feline resting in car", "question": ["is there car ?"], "prompt": "feline resting in {}"}, {"index": 263, "image_id": 2362071, "entity": "car", "caption": "it is the windshield of the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "it is the windshield of the {}"}, {"index": 264, "image_id": 2362050, "entity": "car", "caption": "A Mercedes emblem is on the car.", "question": ["are there a mercedes emblem ?", "is there the car ?"], "prompt": "A Mercedes emblem is on the {}."}, {"index": 265, "image_id": 2361191, "entity": "car", "caption": "a red bird is on the car's mirror", "question": ["is there a red bird ?", "is there the car's mirror ?"], "prompt": "a red bird is on the {}'s mirror"}, {"index": 266, "image_id": 2360825, "entity": "car", "caption": "A car door is open.", "question": ["is there a car door ?"], "prompt": "A {} door is open."}, {"index": 267, "image_id": 2360825, "entity": "car", "caption": "A person is sitting in back of a car.", "question": ["is there a person ?", "is there a car ?"], "prompt": "A person is sitting in back of a {}."}, {"index": 268, "image_id": 2360521, "entity": "car", "caption": "this car has it's tail lights on", "question": ["is there this car ?", "are there it's tail lights ?"], "prompt": "this {} has it's tail lights on"}, {"index": 269, "image_id": 2360370, "entity": "car", "caption": "the man is standing by the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "the man is standing by the {}"}, {"index": 270, "image_id": 2360370, "entity": "car", "caption": "the bananas are in the car", "question": ["are there the bananas ?", "is there the car ?"], "prompt": "the bananas are in the {}"}, {"index": 271, "image_id": 2360146, "entity": "car", "caption": "Teddy bears in the car", "question": ["is there the car ?"], "prompt": "Teddy bears in the {}"}, {"index": 272, "image_id": 2359127, "entity": "car", "caption": "numbers on car are 2 and 08", "question": ["are there numbers ?", "is there car ?"], "prompt": "numbers on {} are 2 and 08"}, {"index": 273, "image_id": 2358763, "entity": "car", "caption": "This is a car hood", "question": ["is there a car hood ?"], "prompt": "This is a {} hood"}, {"index": 274, "image_id": 2358763, "entity": "car", "caption": "This is a car door", "question": ["is there a car door ?"], "prompt": "This is a {} door"}, {"index": 275, "image_id": 2358763, "entity": "car", "caption": "Water is on the car", "question": ["is there water ?", "is there the car ?"], "prompt": "Water is on the {}"}, {"index": 276, "image_id": 2358763, "entity": "car", "caption": "The car is next to trees", "question": ["is there the car ?", "are there trees ?"], "prompt": "The {} is next to trees"}, {"index": 277, "image_id": 2358763, "entity": "car", "caption": "The car has a steering wheel", "question": ["is there the car ?", "is there a steering wheel ?"], "prompt": "The {} has a steering wheel"}, {"index": 278, "image_id": 2358763, "entity": "car", "caption": "A car's reflection is in the window", "question": ["is there a car's reflection ?", "is there the window ?"], "prompt": "A {}'s reflection is in the window"}, {"index": 279, "image_id": 2357815, "entity": "car", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white {} is behind the truck"}, {"index": 280, "image_id": 2357637, "entity": "car", "caption": "the cat is sitting on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "the cat is sitting on top of a {}"}, {"index": 281, "image_id": 2357540, "entity": "car", "caption": "car has yellow license plate", "question": ["is there car ?", "is there yellow license plate ?"], "prompt": "{} has yellow license plate"}, {"index": 282, "image_id": 2357435, "entity": "car", "caption": "Suit cases in car packed", "question": ["are there suit cases ?"], "prompt": "Suit cases in {} packed"}, {"index": 283, "image_id": 2357435, "entity": "car", "caption": "user car controls black switch", "question": ["is there user car ?", "is there black switch ?"], "prompt": "user {} controls black switch"}, {"index": 284, "image_id": 2357435, "entity": "car", "caption": "back door of car is open", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is open"}, {"index": 285, "image_id": 2357435, "entity": "car", "caption": "back door of car is up", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is up"}, {"index": 286, "image_id": 2357227, "entity": "car", "caption": "people stand by a car", "question": ["are there people ?", "is there a car ?"], "prompt": "people stand by a {}"}, {"index": 287, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the gray car.", "question": ["is there the left front headlight ?", "is there the gray car ?"], "prompt": "The left front headlight of the gray {}."}, {"index": 288, "image_id": 2356915, "entity": "car", "caption": "The right front headlight on the black car.", "question": ["is there the right front headlight ?", "is there the black car ?"], "prompt": "The right front headlight on the black {}."}, {"index": 289, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the black car.", "question": ["is there the left front headlight ?", "is there the black car ?"], "prompt": "The left front headlight of the black {}."}, {"index": 290, "image_id": 2356554, "entity": "car", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "dog is sitting in side {}"}, {"index": 291, "image_id": 2355930, "entity": "car", "caption": "the cat is on top of the car", "question": ["is there the cat ?", "is there top ?", "is there the car ?"], "prompt": "the cat is on top of the {}"}, {"index": 292, "image_id": 2355930, "entity": "car", "caption": "the car has a license plate", "question": ["is there the car ?", "is there a license plate ?"], "prompt": "the {} has a license plate"}, {"index": 293, "image_id": 2355930, "entity": "car", "caption": "the wood is beside the car", "question": ["is there the wood ?", "is there the car ?"], "prompt": "the wood is beside the {}"}, {"index": 294, "image_id": 2355930, "entity": "car", "caption": "the car has seats", "question": ["is there the car ?", "are there seats ?"], "prompt": "the {} has seats"}, {"index": 295, "image_id": 2355512, "entity": "car", "caption": "the cat is under the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is under the {}"}, {"index": 296, "image_id": 2354802, "entity": "car", "caption": "side of the car is gray", "question": ["is there side ?", "is there the car ?"], "prompt": "side of the {} is gray"}, {"index": 297, "image_id": 2354802, "entity": "car", "caption": "car has advertisements all over paint job", "question": ["is there car ?", "are there advertisements ?", "is there paint job ?"], "prompt": "{} has advertisements all over paint job"}, {"index": 298, "image_id": 2354519, "entity": "car", "caption": "the shoes next to the car", "question": ["are there the shoes ?", "is there the car ?"], "prompt": "the shoes next to the {}"}, {"index": 299, "image_id": 2353437, "entity": "car", "caption": "a cat is on the car hood", "question": ["is there a cat ?", "is there the car hood ?"], "prompt": "a cat is on the {} hood"}, {"index": 300, "image_id": 2353208, "entity": "car", "caption": "the cat is sitting on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is sitting on the {}"}, {"index": 301, "image_id": 2353208, "entity": "car", "caption": "the car has windshield wipers", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "the {} has windshield wipers"}, {"index": 302, "image_id": 2353208, "entity": "car", "caption": "A cat is sitting on a car. ", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is sitting on a {}. "}, {"index": 303, "image_id": 2353208, "entity": "car", "caption": "A car has black windshield wipers. ", "question": ["is there a car ?", "are there black windshield wipers ?"], "prompt": "A {} has black windshield wipers. "}, {"index": 304, "image_id": 2353208, "entity": "car", "caption": "A car is under a cat. ", "question": ["is there a car ?", "is there a cat ?"], "prompt": "A {} is under a cat. "}, {"index": 305, "image_id": 2353125, "entity": "car", "caption": "a bicycle is on the car roof", "question": ["is there a bicycle ?", "is there the car roof ?"], "prompt": "a bicycle is on the {} roof"}, {"index": 306, "image_id": 2353125, "entity": "car", "caption": "the car has a carrier", "question": ["is there the car ?", "is there a carrier ?"], "prompt": "the {} has a {}rier"}, {"index": 307, "image_id": 2353125, "entity": "car", "caption": "Door handle on the car.", "question": ["is there door ?", "is there the car ?"], "prompt": "Door handle on the {}."}, {"index": 308, "image_id": 2352313, "entity": "car", "caption": "car door handle", "question": ["is there car door ?"], "prompt": "{} door handle"}, {"index": 309, "image_id": 2352313, "entity": "car", "caption": "door handle on a black car", "question": ["is there door ?", "is there a black car ?"], "prompt": "door handle on a black {}"}, {"index": 310, "image_id": 2352195, "entity": "car", "caption": "Blue and white bus parked next to the red car.", "question": ["is there blue and white bus ?", "is there the red car ?"], "prompt": "Blue and white bus parked next to the red {}."}, {"index": 311, "image_id": 2351364, "entity": "car", "caption": "She is next to the car.", "question": ["is there the car ?"], "prompt": "She is next to the {}."}, {"index": 312, "image_id": 2350995, "entity": "car", "caption": "A dog and man are riding in a white car.", "question": ["is there a dog ?", "is there man ?", "is there a white car ?"], "prompt": "A dog and man are riding in a white {}."}, {"index": 313, "image_id": 2350974, "entity": "car", "caption": "boy reflected in the car's window", "question": ["is there boy ?", "is there the car's window ?"], "prompt": "boy reflected in the {}'s window"}, {"index": 314, "image_id": 2350933, "entity": "car", "caption": "A car is in the window's reflection", "question": ["is there a car ?", "is there the window's reflection ?"], "prompt": "A {} is in the window's reflection"}, {"index": 315, "image_id": 2350869, "entity": "car", "caption": "line of cars stopped at intersection", "question": ["is there line ?", "are there cars ?", "is there intersection ?"], "prompt": "line of {}s stopped at intersection"}, {"index": 316, "image_id": 2350581, "entity": "car", "caption": "rear left tire on car", "question": ["is there rear left tire ?", "is there car ?"], "prompt": "rear left tire on {}"}, {"index": 317, "image_id": 2350581, "entity": "car", "caption": "front left tire on car", "question": ["is there front ?", "is there tire ?", "is there car ?"], "prompt": "front left tire on {}"}, {"index": 318, "image_id": 2350002, "entity": "car", "caption": "A car is on the road", "question": ["is there a car ?", "is there the road ?"], "prompt": "A {} is on the road"}, {"index": 319, "image_id": 2350002, "entity": "car", "caption": "A dog is sitting inside the car", "question": ["is there a dog ?", "is there the car ?"], "prompt": "A dog is sitting inside the {}"}, {"index": 320, "image_id": 2349972, "entity": "car", "caption": "a car having bags", "question": ["is there a car ?", "are there bags ?"], "prompt": "a {} having bags"}, {"index": 321, "image_id": 2349597, "entity": "car", "caption": "a car is by the dog", "question": ["is there a car ?", "is there the dog ?"], "prompt": "a {} is by the dog"}, {"index": 322, "image_id": 2348921, "entity": "car", "caption": "the child is in a car", "question": ["is there the child ?", "is there a car ?"], "prompt": "the child is in a {}"}, {"index": 323, "image_id": 2348625, "entity": "car", "caption": "this car has its break lights on ", "question": ["is there this car ?", "are there its break lights ?"], "prompt": "this {} has its break lights on "}, {"index": 324, "image_id": 2348416, "entity": "car", "caption": "indicator lights on the rear of a car", "question": ["are there indicator lights ?", "is there the rear ?", "is there a car ?"], "prompt": "indicator lights on the rear of a {}"}, {"index": 325, "image_id": 2348408, "entity": "car", "caption": "the window is down on the car", "question": ["is there the window ?", "is there the car ?"], "prompt": "the window is down on the {}"}, {"index": 326, "image_id": 2347190, "entity": "car", "caption": "the car front is grey in color", "question": ["is there the car front ?", "is there color ?"], "prompt": "the {} front is grey in color"}, {"index": 327, "image_id": 2347190, "entity": "car", "caption": "the car windscreen are black in color", "question": ["is there the car windscreen ?", "is there color ?"], "prompt": "the {} windscreen are black in color"}, {"index": 328, "image_id": 2347179, "entity": "car", "caption": "shadow os the cat is on the car ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "shadow os the cat is on the {} "}, {"index": 329, "image_id": 2347179, "entity": "car", "caption": "cat sits on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat sits on {}"}, {"index": 330, "image_id": 2347027, "entity": "car", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {}"}, {"index": 331, "image_id": 2346677, "entity": "car", "caption": "Man pushing suitcases in car", "question": ["is there man ?", "are there suitcases ?", "is there car ?"], "prompt": "Man pushing suitcases in {}"}, {"index": 332, "image_id": 2346677, "entity": "car", "caption": "Woman sitting in front seat of car", "question": ["is there woman ?", "is there front seat ?", "is there car ?"], "prompt": "Woman sitting in front seat of {}"}, {"index": 333, "image_id": 2345608, "entity": "car", "caption": "motorcycle is next to car", "question": ["is there motorcycle ?"], "prompt": "motorcycle is next to {}"}, {"index": 334, "image_id": 2345314, "entity": "car", "caption": "car window is down", "question": ["is there car window ?"], "prompt": "{} window is down"}, {"index": 335, "image_id": 2345219, "entity": "car", "caption": "car has red tail lights", "question": ["is there car ?", "are there red tail lights ?"], "prompt": "{} has red tail lights"}, {"index": 336, "image_id": 2345219, "entity": "car", "caption": "car trunk is open", "question": ["is there car trunk ?"], "prompt": "{} trunk is open"}, {"index": 337, "image_id": 2344729, "entity": "car", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is in the {}"}, {"index": 338, "image_id": 2344729, "entity": "car", "caption": "this is in a car", "question": ["is there a car ?"], "prompt": "this is in a {}"}, {"index": 339, "image_id": 2344713, "entity": "car", "caption": "black cat shaped car decal ", "question": ["is there black cat shaped car decal ?"], "prompt": "black cat shaped {} decal "}, {"index": 340, "image_id": 2344274, "entity": "car", "caption": "the car has no numberplates ", "question": ["is there the car ?"], "prompt": "the {} has no numberplates "}, {"index": 341, "image_id": 2344274, "entity": "car", "caption": "Silver car stopped at a light", "question": ["is there silver car ?", "is there a light ?"], "prompt": "Silver {} stopped at a light"}, {"index": 342, "image_id": 2343856, "entity": "car", "caption": "the plane is on the car ", "question": ["is there the plane ?", "is there the car ?"], "prompt": "the plane is on the {} "}, {"index": 343, "image_id": 2343756, "entity": "car", "caption": "A car's driver side headlight", "question": ["is there a car's driver side headlight ?"], "prompt": "A {}'s driver side headlight"}, {"index": 344, "image_id": 2343756, "entity": "car", "caption": "car make logo on front of car", "question": ["is there car ?", "is there logo ?", "is there front ?", "is there car ?"], "prompt": "{} make logo on front of {}"}, {"index": 345, "image_id": 2343756, "entity": "car", "caption": "silver care parked with surfboard on roof", "question": ["is there silver care ?", "is there surfboard ?", "is there roof ?"], "prompt": "silver {}e parked with surfboard on roof"}, {"index": 346, "image_id": 2343756, "entity": "car", "caption": "Surfboard attached to car rack", "question": ["is there surfboard ?", "is there car rack ?"], "prompt": "Surfboard attached to {} rack"}, {"index": 347, "image_id": 2343665, "entity": "car", "caption": "Various cars occupy city street", "question": ["are there various cars ?", "is there city street ?"], "prompt": "Various {}s occupy city street"}, {"index": 348, "image_id": 2343324, "entity": "car", "caption": "A lady travels inside the car", "question": ["is there a lady ?", "is there the car ?"], "prompt": "A lady travels inside the {}"}, {"index": 349, "image_id": 2343324, "entity": "car", "caption": "Besides the car vehicles are on the road", "question": ["are there the car vehicles ?", "is there the road ?"], "prompt": "Besides the {} vehicles are on the road"}, {"index": 350, "image_id": 2343324, "entity": "car", "caption": "A lady is riding her car ", "question": ["is there a lady ?", "is there her car ?"], "prompt": "A lady is riding her {} "}, {"index": 351, "image_id": 2343321, "entity": "car", "caption": "the car has tires", "question": ["is there the car ?", "are there tires ?"], "prompt": "the {} has tires"}, {"index": 352, "image_id": 2343098, "entity": "car", "caption": "a sign is on the front of the car", "question": ["is there a sign ?", "is there the front ?", "is there the car ?"], "prompt": "a sign is on the front of the {}"}, {"index": 353, "image_id": 2343098, "entity": "car", "caption": "a tire is on the car", "question": ["is there a tire ?", "is there the car ?"], "prompt": "a tire is on the {}"}, {"index": 354, "image_id": 2343098, "entity": "car", "caption": "the car's taillights are off ", "question": ["are there the car's taillights ?"], "prompt": "the {}'s taillights are off "}, {"index": 355, "image_id": 2342975, "entity": "car", "caption": "A surfboard is on the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}."}, {"index": 356, "image_id": 2342809, "entity": "car", "caption": "the car is reflecting the seat", "question": ["is there the car ?", "is there the seat ?"], "prompt": "the {} is reflecting the seat"}, {"index": 357, "image_id": 2342672, "entity": "car", "caption": "person driving the car", "question": ["is there person ?", "is there the car ?"], "prompt": "person driving the {}"}, {"index": 358, "image_id": 2342493, "entity": "car", "caption": "the cars have lights on", "question": ["are there the cars ?", "are there lights ?"], "prompt": "the {}s have lights on"}, {"index": 359, "image_id": 2341390, "entity": "car", "caption": "a large black dog sits in the back of a car", "question": ["is there a large black dog ?", "is there the back ?", "is there a car ?"], "prompt": "a large black dog sits in the back of a {}"}, {"index": 360, "image_id": 2341390, "entity": "car", "caption": "The dog is sitting in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is sitting in the {}."}, {"index": 361, "image_id": 2341390, "entity": "car", "caption": "The car have scratches", "question": ["is there the car ?", "are there scratches ?"], "prompt": "The {} have scratches"}, {"index": 362, "image_id": 2341390, "entity": "car", "caption": "a _very_ serious black dog sits in a scraped silver car", "question": ["is there a _very_ serious black dog ?", "is there a scraped silver car ?"], "prompt": "a _very_ serious black dog sits in a scraped silver {}"}, {"index": 363, "image_id": 2341390, "entity": "car", "caption": "car looks spraypainted silver, has a minor mess' worth of scrapes & scratches", "question": ["is there car ?", "is there spraypainted silver ?", "is there a minor mess' worth ?", "are there scrapes ?", "are there scratches ?"], "prompt": "{} looks spraypainted silver, has a minor mess' worth of scrapes & scratches"}, {"index": 364, "image_id": 2341302, "entity": "car", "caption": "woman is looking at the car", "question": ["is there woman ?", "is there the car ?"], "prompt": "woman is looking at the {}"}, {"index": 365, "image_id": 2341044, "entity": "car", "caption": "front left window of a black car", "question": ["is there front left window ?", "is there a black car ?"], "prompt": "front left window of a black {}"}, {"index": 366, "image_id": 2340693, "entity": "car", "caption": "cats are under car", "question": ["are there cats ?", "is there car ?"], "prompt": "cats are under {}"}, {"index": 367, "image_id": 2339803, "entity": "car", "caption": "The window is down in the car.", "question": ["is there the window ?", "is there the car ?"], "prompt": "The window is down in the {}."}, {"index": 368, "image_id": 2338847, "entity": "car", "caption": "Roof of car is black.", "question": ["is there roof ?", "is there car ?"], "prompt": "Roof of {} is black."}, {"index": 369, "image_id": 2338847, "entity": "car", "caption": "the car has wooden panels ", "question": ["is there the car ?", "are there wooden panels ?"], "prompt": "the {} has wooden panels "}, {"index": 370, "image_id": 2338254, "entity": "car", "caption": "surfbords are on the car", "question": ["are there surfbords ?", "is there the car ?"], "prompt": "surfbords are on the {}"}, {"index": 371, "image_id": 2338234, "entity": "car", "caption": "the model of car is ford ", "question": ["is there the model ?", "is there car ?"], "prompt": "the model of {} is ford "}, {"index": 372, "image_id": 2337797, "entity": "car", "caption": "the car has a red light", "question": ["is there the car ?", "is there a red light ?"], "prompt": "the {} has a red light"}, {"index": 373, "image_id": 2337385, "entity": "car", "caption": "window is apart of the car", "question": ["is there window ?", "is there the car ?"], "prompt": "window is apart of the {}"}, {"index": 374, "image_id": 2337324, "entity": "car", "caption": "a doggy has his head out the car window", "question": ["is there a doggy ?", "is there his head ?", "is there the car window ?"], "prompt": "a doggy has his head out the {} window"}, {"index": 375, "image_id": 2336747, "entity": "car", "caption": "black door handle on sliver car door", "question": ["is there black door ?", "is there sliver car door ?"], "prompt": "black door handle on sliver {} door"}, {"index": 376, "image_id": 2336235, "entity": "car", "caption": "the car the cat is lying on ", "question": ["is there the car ?", "is there the cat ?"], "prompt": "the {} the cat is lying on "}, {"index": 377, "image_id": 2336067, "entity": "car", "caption": "Cat is inside a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is inside a {}"}, {"index": 378, "image_id": 2336067, "entity": "car", "caption": "Cat is in the car's backseats", "question": ["is there cat ?", "are there the car's backseats ?"], "prompt": "Cat is in the {}'s backseats"}, {"index": 379, "image_id": 2336016, "entity": "car", "caption": "the man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "the man is in a {}"}, {"index": 380, "image_id": 2336016, "entity": "car", "caption": "Black car parked at the curb.", "question": ["is there black car ?", "is there the curb ?"], "prompt": "Black {} parked at the curb."}, {"index": 381, "image_id": 2335764, "entity": "car", "caption": "This car has a clear windshield", "question": ["is there this car ?", "is there a clear windshield ?"], "prompt": "This {} has a clear windshield"}, {"index": 382, "image_id": 2335683, "entity": "car", "caption": "it is car in the street ", "question": ["is there car ?", "is there the street ?"], "prompt": "it is {} in the street "}, {"index": 383, "image_id": 2335683, "entity": "car", "caption": "a white car stopped in street", "question": ["is there a white car ?", "is there street ?"], "prompt": "a white {} stopped in street"}, {"index": 384, "image_id": 2335292, "entity": "car", "caption": "The car is in front of the motorcycle", "question": ["is there the car ?", "is there front ?", "is there the motorcycle ?"], "prompt": "The {} is in front of the motorcycle"}, {"index": 385, "image_id": 2335292, "entity": "car", "caption": "The white car has red tail lights", "question": ["is there the white car ?", "are there red tail lights ?"], "prompt": "The white {} has red tail lights"}, {"index": 386, "image_id": 2335189, "entity": "car", "caption": "A old man standing behind a car.", "question": ["is there a old man ?", "is there a car ?"], "prompt": "A old man standing behind a {}."}, {"index": 387, "image_id": 2334957, "entity": "car", "caption": "right front headlight on car", "question": ["is there right front headlight ?", "is there car ?"], "prompt": "right front headlight on {}"}, {"index": 388, "image_id": 2334957, "entity": "car", "caption": "blue rusted door on car", "question": ["is there blue rusted door ?", "is there car ?"], "prompt": "blue rusted door on {}"}, {"index": 389, "image_id": 2333614, "entity": "car", "caption": "a rear view mirror is on the car", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "a rear view mirror is on the {}"}, {"index": 390, "image_id": 2333614, "entity": "car", "caption": "the car is on the street", "question": ["is there the car ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 391, "image_id": 2333466, "entity": "car", "caption": "license plate is on car", "question": ["is there license plate ?", "is there car ?"], "prompt": "license plate is on {}"}, {"index": 392, "image_id": 2332912, "entity": "car", "caption": "a white teddy bear sitting on a car", "question": ["is there a car ?"], "prompt": "a white teddy bear sitting on a {}"}, {"index": 393, "image_id": 2332110, "entity": "car", "caption": "wheel belongs to car", "question": ["is there wheel ?", "is there car ?"], "prompt": "wheel belongs to {}"}, {"index": 394, "image_id": 2332110, "entity": "car", "caption": "bumper belongs to car", "question": ["is there bumper ?", "is there car ?"], "prompt": "bumper belongs to {}"}, {"index": 395, "image_id": 2332110, "entity": "car", "caption": "headlight belongs to car", "question": ["is there headlight ?", "is there car ?"], "prompt": "headlight belongs to {}"}, {"index": 396, "image_id": 2332110, "entity": "car", "caption": "window belongs to car", "question": ["is there window ?", "is there car ?"], "prompt": "window belongs to {}"}, {"index": 397, "image_id": 2332110, "entity": "car", "caption": "car travels down street", "question": ["is there car ?"], "prompt": "{} travels down street"}, {"index": 398, "image_id": 2331977, "entity": "car", "caption": "he is sitting in a car ", "question": ["is there a car ?"], "prompt": "he is sitting in a {} "}, {"index": 399, "image_id": 2331977, "entity": "car", "caption": "the person is inside the car ", "question": ["is there the person ?", "is there the car ?"], "prompt": "the person is inside the {} "}, {"index": 400, "image_id": 2330180, "entity": "car", "caption": "cat sits on sidewalk looking at car", "question": ["is there cat ?", "is there sidewalk ?", "is there car ?"], "prompt": "cat sits on sidewalk looking at {}"}, {"index": 401, "image_id": 2330066, "entity": "car", "caption": "a red car is beside the blue car", "question": ["is there a red car ?", "is there the blue car ?"], "prompt": "a red {} is beside the blue {}"}, {"index": 402, "image_id": 2330005, "entity": "car", "caption": "Car painted red white and blue with elephant cartoon on hood", "question": ["is there car ?", "is there elephant cartoon ?", "is there hood ?"], "prompt": "Car painted red white and blue with elephant {}toon on hood"}, {"index": 403, "image_id": 2330005, "entity": "car", "caption": "man is driving the car", "question": ["is there man ?", "is there the car ?"], "prompt": "man is driving the {}"}, {"index": 404, "image_id": 2329079, "entity": "car", "caption": "car has a wheel on it", "question": ["is there car ?", "is there a wheel ?"], "prompt": "{} has a wheel on it"}, {"index": 405, "image_id": 2329079, "entity": "car", "caption": "a door handle on the car", "question": ["is there a door ?", "is there the car ?"], "prompt": "a door handle on the {}"}, {"index": 406, "image_id": 2328443, "entity": "car", "caption": "A car that is driving in the street", "question": ["is there a car ?", "is there the street ?"], "prompt": "A {} that is driving in the street"}, {"index": 407, "image_id": 2328324, "entity": "car", "caption": "the cat is on a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is on a {}"}, {"index": 408, "image_id": 2328094, "entity": "car", "caption": "the bear is in the grill of the car ", "question": ["is there the bear ?", "is there the grill ?", "is there the car ?"], "prompt": "the bear is in the grill of the {} "}, {"index": 409, "image_id": 2328094, "entity": "car", "caption": "it appears as if the car is eating the bear ", "question": ["is there the car ?", "is there the bear ?"], "prompt": "it appears as if the {} is eating the bear "}, {"index": 410, "image_id": 2327968, "entity": "car", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {} "}, {"index": 411, "image_id": 2327874, "entity": "car", "caption": "white surfboard leaned against car", "question": ["is there car ?"], "prompt": "white surfboard leaned against {}"}, {"index": 412, "image_id": 2327874, "entity": "car", "caption": "A surfboard is on the car. ", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}. "}, {"index": 413, "image_id": 2327874, "entity": "car", "caption": "Plants are next to the car. ", "question": ["are there plants ?", "is there the car ?"], "prompt": "Plants are next to the {}. "}, {"index": 414, "image_id": 2327874, "entity": "car", "caption": "A white surfboard is behind the car.", "question": ["is there a white surfboard ?", "is there the car ?"], "prompt": "A white surfboard is behind the {}."}, {"index": 415, "image_id": 2327688, "entity": "car", "caption": "door handle on the car", "question": ["is there door ?", "is there the car ?"], "prompt": "door handle on the {}"}, {"index": 416, "image_id": 2327454, "entity": "car", "caption": "Person driving a car", "question": ["is there person ?", "is there a car ?"], "prompt": "Person driving a {}"}, {"index": 417, "image_id": 2326951, "entity": "car", "caption": "poster is in the car", "question": ["is there poster ?", "is there the car ?"], "prompt": "poster is in the {}"}, {"index": 418, "image_id": 2326921, "entity": "car", "caption": "Volvo emblem on a car", "question": ["is there a car ?"], "prompt": "Volvo emblem on a {}"}, {"index": 419, "image_id": 2326884, "entity": "car", "caption": "this is a car windscreen", "question": ["is there a car windscreen ?"], "prompt": "this is a {} windscreen"}, {"index": 420, "image_id": 2326583, "entity": "car", "caption": "letter i on car", "question": ["is there letter ?", "is there car ?"], "prompt": "letter i on {}"}, {"index": 421, "image_id": 2325723, "entity": "car", "caption": "Cat is on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is on a {}"}, {"index": 422, "image_id": 2325460, "entity": "car", "caption": "Front end on a black car", "question": ["is there front end ?", "is there a black car ?"], "prompt": "Front end on a black {}"}, {"index": 423, "image_id": 2324926, "entity": "car", "caption": "the car has a face on it", "question": ["is there the car ?", "is there a face ?"], "prompt": "the {} has a face on it"}, {"index": 424, "image_id": 2323124, "entity": "car", "caption": "Cat is on the hood of car", "question": ["is there cat ?", "is there the hood ?", "is there car ?"], "prompt": "Cat is on the hood of {}"}, {"index": 425, "image_id": 2323124, "entity": "car", "caption": "Cat laying on the hood of the car", "question": ["is there cat ?", "is there the hood ?", "is there the car ?"], "prompt": "Cat laying on the hood of the {}"}, {"index": 426, "image_id": 2323124, "entity": "car", "caption": "Cat is laying on the hood of a car", "question": ["is there cat ?", "is there the hood ?", "is there a car ?"], "prompt": "Cat is laying on the hood of a {}"}, {"index": 427, "image_id": 2323088, "entity": "car", "caption": "The giraffes are walking around the cars", "question": ["are there the giraffes ?", "are there the cars ?"], "prompt": "The giraffes are walking around the {}s"}, {"index": 428, "image_id": 2322886, "entity": "car", "caption": "cars have rail on top of it ", "question": ["are there cars ?", "is there rail ?", "is there top ?"], "prompt": "{}s have rail on top of it "}, {"index": 429, "image_id": 2322886, "entity": "car", "caption": "cars have red light on back ", "question": ["are there cars ?", "is there red light ?"], "prompt": "{}s have red light on back "}, {"index": 430, "image_id": 2321836, "entity": "car", "caption": "Trunk of the car is open. ", "question": ["is there trunk ?", "is there the car ?"], "prompt": "Trunk of the {} is open. "}, {"index": 431, "image_id": 2321807, "entity": "car", "caption": "cat is meowing on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is meowing on {}"}, {"index": 432, "image_id": 2321807, "entity": "car", "caption": "Antenna is attache to the car", "question": ["is there antenna ?", "is there attache ?", "is there the car ?"], "prompt": "Antenna is attache to the {}"}, {"index": 433, "image_id": 2321807, "entity": "car", "caption": "Trees are in front of the car", "question": ["are there trees ?", "is there front ?", "is there the car ?"], "prompt": "Trees are in front of the {}"}, {"index": 434, "image_id": 2321807, "entity": "car", "caption": "Cat is sitting on the trunk of the car", "question": ["is there cat ?", "is there the trunk ?", "is there the car ?"], "prompt": "Cat is sitting on the trunk of the {}"}, {"index": 435, "image_id": 2321807, "entity": "car", "caption": "The cat is on the car. ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}. "}, {"index": 436, "image_id": 2320893, "entity": "car", "caption": "the car has a headlamp", "question": ["is there the car ?", "is there a headlamp ?"], "prompt": "the {} has a headlamp"}, {"index": 437, "image_id": 2320893, "entity": "car", "caption": "The left headlight on the car. ", "question": ["is there the left headlight ?", "is there the car ?"], "prompt": "The left headlight on the {}. "}, {"index": 438, "image_id": 2320741, "entity": "car", "caption": "car has black door", "question": ["is there car ?", "is there black door ?"], "prompt": "{} has black door"}, {"index": 439, "image_id": 2320741, "entity": "car", "caption": "car has black wheels", "question": ["is there car ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 440, "image_id": 2320741, "entity": "car", "caption": "The man is sitting in the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "The man is sitting in the {}"}, {"index": 441, "image_id": 2320741, "entity": "car", "caption": "The car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "The {} has a windshield"}, {"index": 442, "image_id": 2320741, "entity": "car", "caption": "man driving the black car", "question": ["is there man ?", "is there the black car ?"], "prompt": "man driving the black {}"}, {"index": 443, "image_id": 2320710, "entity": "car", "caption": "the car has a black tire", "question": ["is there the car ?", "is there a black tire ?"], "prompt": "the {} has a black tire"}, {"index": 444, "image_id": 2320662, "entity": "car", "caption": "man walking behind a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man walking behind a {}"}, {"index": 445, "image_id": 2320327, "entity": "car", "caption": "a round headlight on the car", "question": ["is there a round headlight ?", "is there the car ?"], "prompt": "a round headlight on the {}"}, {"index": 446, "image_id": 2319795, "entity": "car", "caption": "cat stands on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "cat stands on a {}"}, {"index": 447, "image_id": 2319480, "entity": "car", "caption": "Bird hanging from a rope in a car.", "question": ["is there bird ?", "is there a rope ?", "is there a car ?"], "prompt": "Bird hanging from a rope in a {}."}, {"index": 448, "image_id": 2319480, "entity": "car", "caption": "man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man driving a {}"}, {"index": 449, "image_id": 2319480, "entity": "car", "caption": "Man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "Man driving a {}"}, {"index": 450, "image_id": 2319164, "entity": "car", "caption": "white car rear with red stop lights", "question": ["is there white car rear ?", "are there red stop lights ?"], "prompt": "white {} rear with red stop lights"}, {"index": 451, "image_id": 2318890, "entity": "car", "caption": "the dog is on the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2318848, "entity": "car", "caption": "Black car parked next to the police vehicle", "question": ["is there black car ?", "is there the police vehicle ?"], "prompt": "Black {} parked next to the police vehicle"}, {"index": 453, "image_id": 2318441, "entity": "car", "caption": "the car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 454, "image_id": 2318441, "entity": "car", "caption": "A yellow car a dog is riding in", "question": ["is there a yellow car ?", "is there a dog ?"], "prompt": "A yellow {} a dog is riding in"}, {"index": 455, "image_id": 2318030, "entity": "car", "caption": "There is a red stripe that is on the car", "question": ["is there a red stripe ?", "is there the car ?"], "prompt": "There is a red stripe that is on the {}"}, {"index": 456, "image_id": 2318015, "entity": "car", "caption": "The man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is in a {}"}, {"index": 457, "image_id": 2317640, "entity": "car", "caption": "silver headlight on car", "question": ["is there silver headlight ?", "is there car ?"], "prompt": "silver headlight on {}"}, {"index": 458, "image_id": 2317640, "entity": "car", "caption": "company emblem on front of car", "question": ["is there company ?", "is there front ?", "is there car ?"], "prompt": "company emblem on front of {}"}, {"index": 459, "image_id": 2317566, "entity": "car", "caption": "a hose is on the roof of the car", "question": ["is there a hose ?", "is there the roof ?", "is there the car ?"], "prompt": "a hose is on the roof of the {}"}, {"index": 460, "image_id": 2317283, "entity": "car", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog is in a {}."}, {"index": 461, "image_id": 2317142, "entity": "car", "caption": "The car is on a rack.", "question": ["is there the car ?", "is there a rack ?"], "prompt": "The {} is on a rack."}, {"index": 462, "image_id": 2317029, "entity": "car", "caption": "console controls on a car", "question": ["is there console ?", "is there a car ?"], "prompt": "console controls on a {}"}, {"index": 463, "image_id": 2317029, "entity": "car", "caption": "front of car is blue", "question": ["is there front ?", "is there car ?"], "prompt": "front of {} is blue"}, {"index": 464, "image_id": 2317029, "entity": "car", "caption": "the teddy bear is in the car", "question": ["is there the teddy bear ?", "is there the car ?"], "prompt": "the teddy bear is in the {}"}, {"index": 465, "image_id": 2316404, "entity": "car", "caption": "This is a black car tire", "question": ["is there a black car tire ?"], "prompt": "This is a black {} tire"}, {"index": 466, "image_id": 2316376, "entity": "car", "caption": "yellow light is on the car", "question": ["is there yellow light ?", "is there the car ?"], "prompt": "yellow light is on the {}"}, {"index": 467, "image_id": 2316376, "entity": "car", "caption": "two men digging a car out of the mud", "question": ["are there two men ?", "is there a car ?", "is there the mud ?"], "prompt": "two men digging a {} out of the mud"}, {"index": 468, "image_id": 2316376, "entity": "car", "caption": "roof rack on a car", "question": ["is there roof rack ?", "is there a car ?"], "prompt": "roof rack on a {}"}, {"index": 469, "image_id": 2315981, "entity": "car", "caption": "Cay laying on a car ", "question": ["is there a car ?"], "prompt": "Cay laying on a {} "}, {"index": 470, "image_id": 2315981, "entity": "car", "caption": "Cat laying on car hood ", "question": ["is there cat ?", "is there car hood ?"], "prompt": "Cat laying on {} hood "}, {"index": 471, "image_id": 2315743, "entity": "car", "caption": "blue car behind moped", "question": ["is there blue car ?"], "prompt": "blue {} behind moped"}, {"index": 472, "image_id": 2315500, "entity": "car", "caption": "glass headlight on sports car", "question": ["is there glass headlight ?", "are there sports car ?"], "prompt": "glass headlight on sports {}"}, {"index": 473, "image_id": 2414288, "entity": "car", "caption": "a cat is laying on the hood of a car", "question": ["is there a cat ?", "is there the hood ?", "is there a car ?"], "prompt": "a cat is laying on the hood of a {}"}, {"index": 474, "image_id": 2414288, "entity": "car", "caption": "fuzzy cat is laying on the hood of a car", "question": ["is there fuzzy cat ?", "is there the hood ?", "is there a car ?"], "prompt": "fuzzy cat is laying on the hood of a {}"}, {"index": 475, "image_id": 2414288, "entity": "car", "caption": "cat is laying on a dark grey car", "question": ["is there cat ?", "is there a dark grey car ?"], "prompt": "cat is laying on a dark grey {}"}, {"index": 476, "image_id": 2414288, "entity": "car", "caption": "car has a small roof rack for luggage", "question": ["is there car ?", "is there a small roof rack ?", "is there luggage ?"], "prompt": "{} has a small roof rack for luggage"}, {"index": 477, "image_id": 2414273, "entity": "car", "caption": "cat is in the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is in the {}"}, {"index": 478, "image_id": 2414273, "entity": "car", "caption": "one cat is in the car", "question": ["is there one cat ?", "is there the car ?"], "prompt": "one cat is in the {}"}, {"index": 479, "image_id": 2413841, "entity": "car", "caption": "Diamond shaped light with numbers on the black car.", "question": ["is there light ?", "are there numbers ?", "is there the black car ?"], "prompt": "Diamond shaped light with numbers on the black {}."}, {"index": 480, "image_id": 2413841, "entity": "car", "caption": "Door handle on black car.", "question": ["is there door ?", "is there black car ?"], "prompt": "Door handle on black {}."}, {"index": 481, "image_id": 2413755, "entity": "car", "caption": "Trees growing behind car.", "question": ["are there trees ?", "is there car ?"], "prompt": "Trees growing behind {}."}, {"index": 482, "image_id": 2413755, "entity": "car", "caption": "The car has a red underglow", "question": ["is there the car ?", "is there a red underglow ?"], "prompt": "The {} has a red underglow"}, {"index": 483, "image_id": 2413755, "entity": "car", "caption": "a car is in the photo", "question": ["is there a car ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 484, "image_id": 2413755, "entity": "car", "caption": "a surfboard is on the car", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "a surfboard is on the {}"}, {"index": 485, "image_id": 2413755, "entity": "car", "caption": "the car is on the road", "question": ["is there the car ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 486, "image_id": 2413755, "entity": "car", "caption": "Red highlight lights accentuate the car", "question": ["are there red highlight lights ?", "is there the car ?"], "prompt": "Red highlight lights accentuate the {}"}, {"index": 487, "image_id": 2412424, "entity": "car", "caption": "the car windows are transparent", "question": ["are there the car windows ?"], "prompt": "the {} windows are transparent"}, {"index": 488, "image_id": 2412234, "entity": "car", "caption": "cat is under car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is under {}"}, {"index": 489, "image_id": 2412234, "entity": "car", "caption": "Cat is under the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "Cat is under the {}"}, {"index": 490, "image_id": 2411616, "entity": "car", "caption": "Surfboard tied to car", "question": ["is there surfboard ?", "is there car ?"], "prompt": "Surfboard tied to {}"}, {"index": 491, "image_id": 2411616, "entity": "car", "caption": "live christmas tree tied on car", "question": ["is there live christmas tree ?", "is there car ?"], "prompt": "live christmas tree tied on {}"}, {"index": 492, "image_id": 2411616, "entity": "car", "caption": "orange break light on black car ", "question": ["is there black car ?"], "prompt": "orange break light on black {} "}, {"index": 493, "image_id": 2411616, "entity": "car", "caption": "This car is hauling trees", "question": ["is there this car ?", "are there trees ?"], "prompt": "This {} is hauling trees"}, {"index": 494, "image_id": 2416074, "entity": "car", "caption": "The car has a red door.", "question": ["is there the car ?", "is there a red door ?"], "prompt": "The {} has a red door."}, {"index": 495, "image_id": 2416074, "entity": "car", "caption": "A surfboard is in the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is in the {}."}, {"index": 496, "image_id": 2417544, "entity": "car", "caption": "A car has dark rims.", "question": ["is there a car ?", "are there dark rims ?"], "prompt": "A {} has dark rims."}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03180011.json b/data/imagenet/compositions/prompts/n03180011.json
new file mode 100644
index 0000000000000000000000000000000000000000..eb6f3cc340447bec06e9d0d2e41c4e6a28c4ebc4
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03180011.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 1670, "entity": "computer", "caption": "the computer is sitting on a white desk", "question": ["is there the computer ?", "is there a white desk ?"], "prompt": "the {} is sitting on a white desk"}, {"index": 1, "image_id": 2413614, "entity": "computer", "caption": "Audio input on laptop computer.", "question": ["is there audio input ?", "is there laptop computer ?"], "prompt": "Audio input on laptop {}."}, {"index": 2, "image_id": 2411787, "entity": "computer", "caption": "Mouse of computer is black and tan", "question": ["is there computer ?"], "prompt": "Mouse of {} is black and tan"}, {"index": 3, "image_id": 2411787, "entity": "computer", "caption": "Screen of computer is purple and white", "question": ["is there screen ?", "is there computer ?"], "prompt": "Screen of {} is purple and white"}, {"index": 4, "image_id": 2411787, "entity": "computer", "caption": "The computer sits on a table. ", "question": ["is there the computer ?", "is there a table ?"], "prompt": "The {} sits on a table. "}, {"index": 5, "image_id": 2411787, "entity": "computer", "caption": "The computer has the Apple logo.", "question": ["is there the computer ?", "is there the apple logo ?"], "prompt": "The {} has the Apple logo."}, {"index": 6, "image_id": 2411787, "entity": "computer", "caption": "The computer has two monitors. ", "question": ["is there the computer ?", "are there two monitors ?"], "prompt": "The {} has two monitors. "}, {"index": 7, "image_id": 2411787, "entity": "computer", "caption": "The computer has speakers. ", "question": ["is there the computer ?", "are there speakers ?"], "prompt": "The {} has speakers. "}, {"index": 8, "image_id": 2411787, "entity": "computer", "caption": "The computer has a mouse.", "question": ["is there the computer ?", "is there a mouse ?"], "prompt": "The {} has a mouse."}, {"index": 9, "image_id": 2409573, "entity": "computer", "caption": "The computer screen is on", "question": ["is there the computer screen ?"], "prompt": "The {} screen is on"}, {"index": 10, "image_id": 2409573, "entity": "computer", "caption": "The giant can next to the computer", "question": ["is there the giant ?", "is there the computer ?"], "prompt": "The giant can next to the {}"}, {"index": 11, "image_id": 2407218, "entity": "computer", "caption": "This is a smartphone that this man has attached to his computer.", "question": ["is there a smartphone ?", "is there this man ?", "is there his computer ?"], "prompt": "This is a smartphone that this man has attached to his {}."}, {"index": 12, "image_id": 2404050, "entity": "computer", "caption": "The computer has a silver bolt", "question": ["is there the computer ?", "is there a silver bolt ?"], "prompt": "The {} has a silver bolt"}, {"index": 13, "image_id": 2397913, "entity": "computer", "caption": "Man is looking at the computer", "question": ["is there man ?", "is there the computer ?"], "prompt": "Man is looking at the {}"}, {"index": 14, "image_id": 2396611, "entity": "computer", "caption": "a cat resting it's head on a computer.", "question": ["is there a cat ?", "is there head ?", "is there a computer ?"], "prompt": "a cat resting it's head on a {}."}, {"index": 15, "image_id": 2396611, "entity": "computer", "caption": "a cats paw on a computer.", "question": ["are there a cats ?", "is there a computer ?"], "prompt": "a cats paw on a {}."}, {"index": 16, "image_id": 2391965, "entity": "computer", "caption": "computer set up with monitor", "question": ["is there computer ?", "is there monitor ?"], "prompt": "{} set up with monitor"}, {"index": 17, "image_id": 2389431, "entity": "computer", "caption": "wires pluged on computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires pluged on {}"}, {"index": 18, "image_id": 2388062, "entity": "computer", "caption": "Power cord plugged into the computer.", "question": ["is there power cord ?", "is there the computer ?"], "prompt": "Power cord plugged into the {}."}, {"index": 19, "image_id": 2384108, "entity": "computer", "caption": "computer speaker laying sidways", "question": ["is there computer speaker ?"], "prompt": "{} speaker laying sidways"}, {"index": 20, "image_id": 2380641, "entity": "computer", "caption": "mouse of computer is ergonomic", "question": ["is there computer ?"], "prompt": "mouse of {} is ergonomic"}, {"index": 21, "image_id": 2380272, "entity": "computer", "caption": "computer mouse sitting next to laptop computer", "question": ["is there computer mouse ?", "is there laptop computer ?"], "prompt": "{} mouse sitting next to laptop {}"}, {"index": 22, "image_id": 2377814, "entity": "computer", "caption": "The computer the cat is standing on", "question": ["is there the computer ?", "is there the cat ?"], "prompt": "The {} the cat is standing on"}, {"index": 23, "image_id": 2375150, "entity": "computer", "caption": "the girl is typing on the computer", "question": ["is there the girl ?", "is there the computer ?"], "prompt": "the girl is typing on the {}"}, {"index": 24, "image_id": 2372868, "entity": "computer", "caption": "Cord plug ins for computer.", "question": ["are there cord plug ins ?", "is there computer ?"], "prompt": "Cord plug ins for {}."}, {"index": 25, "image_id": 2371612, "entity": "computer", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The dog is using the {} "}, {"index": 26, "image_id": 2371612, "entity": "computer", "caption": "The mouse pad is the middle of the computer ", "question": ["is there the mouse pad ?", "is there the middle ?", "is there the computer ?"], "prompt": "The mouse pad is the middle of the {} "}, {"index": 27, "image_id": 2370068, "entity": "computer", "caption": "tree leaves on computer screen", "question": ["is there tree ?", "is there computer screen ?"], "prompt": "tree leaves on {} screen"}, {"index": 28, "image_id": 2364993, "entity": "computer", "caption": "Indicator lights on a laptop computer", "question": ["are there indicator lights ?", "is there a laptop computer ?"], "prompt": "Indicator lights on a laptop {}"}, {"index": 29, "image_id": 2364841, "entity": "computer", "caption": "wires blurry behind computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires blurry behind {}"}, {"index": 30, "image_id": 2364534, "entity": "computer", "caption": "The computer stand so the computer isn't falling over.", "question": ["is there the computer ?", "is there the computer ?"], "prompt": "The {} stand so the {} isn't falling over."}, {"index": 31, "image_id": 2361519, "entity": "computer", "caption": "number keypad for computer", "question": ["is there number keypad ?", "is there computer ?"], "prompt": "number keypad for {}"}, {"index": 32, "image_id": 2359377, "entity": "computer", "caption": "Papers sit next to computer", "question": ["are there papers ?", "is there computer ?"], "prompt": "Papers sit next to {}"}, {"index": 33, "image_id": 2358048, "entity": "computer", "caption": "The computer is on the log in screen.", "question": ["is there the computer ?", "is there the log ?", "is there screen ?"], "prompt": "The {} is on the log in screen."}, {"index": 34, "image_id": 2357136, "entity": "computer", "caption": "multiple objects are open on computer screen", "question": ["are there multiple objects ?", "is there computer screen ?"], "prompt": "multiple objects are open on {} screen"}, {"index": 35, "image_id": 2353879, "entity": "computer", "caption": "power wire plugged into computer", "question": ["is there power wire ?", "is there computer ?"], "prompt": "power wire plugged into {}"}, {"index": 36, "image_id": 2353456, "entity": "computer", "caption": "plug plugged into computer", "question": ["is there plug ?", "is there computer ?"], "prompt": "plug plugged into {}"}, {"index": 37, "image_id": 2351707, "entity": "computer", "caption": "the keyboard of the computer that which the cat is sitting on", "question": ["is there the keyboard ?", "is there the computer ?", "is there the cat ?"], "prompt": "the keyboard of the {} that which the cat is sitting on"}, {"index": 38, "image_id": 2348719, "entity": "computer", "caption": "White USB cord hanging from the computer.", "question": ["is there white usb cord ?", "is there the computer ?"], "prompt": "White USB cord hanging from the {}."}, {"index": 39, "image_id": 2347801, "entity": "computer", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The dog is next to a laptop {}"}, {"index": 40, "image_id": 2347039, "entity": "computer", "caption": "the plugs going into the computer", "question": ["are there the plugs ?", "is there the computer ?"], "prompt": "the plugs going into the {}"}, {"index": 41, "image_id": 2346356, "entity": "computer", "caption": "computer on table is open", "question": ["is there computer ?", "is there table ?"], "prompt": "{} on table is open"}, {"index": 42, "image_id": 2345231, "entity": "computer", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the dogs paws on on the {}"}, {"index": 43, "image_id": 2342983, "entity": "computer", "caption": "Cord plugged into the computer", "question": ["is there cord ?", "is there the computer ?"], "prompt": "Cord plugged into the {}"}, {"index": 44, "image_id": 2330099, "entity": "computer", "caption": "person is looking at the computer", "question": ["is there person ?", "is there the computer ?"], "prompt": "person is looking at the {}"}, {"index": 45, "image_id": 2326900, "entity": "computer", "caption": "a computer screen turned on", "question": ["is there a computer screen ?"], "prompt": "a {} screen turned on"}, {"index": 46, "image_id": 2326148, "entity": "computer", "caption": "Cat hiding behind a computer screen", "question": ["is there cat ?", "is there a computer screen ?"], "prompt": "Cat hiding behind a {} screen"}, {"index": 47, "image_id": 2322592, "entity": "computer", "caption": "white wire coming out of the nearest computer", "question": ["is there white wire ?", "is there the nearest computer ?"], "prompt": "white wire coming out of the nearest {}"}, {"index": 48, "image_id": 2317168, "entity": "computer", "caption": "objects piled up behind the computer", "question": ["are there objects ?", "is there the computer ?"], "prompt": "objects piled up behind the {}"}, {"index": 49, "image_id": 2414391, "entity": "computer", "caption": "the computer is sitting on a desk", "question": ["is there the computer ?", "is there a desk ?"], "prompt": "the {} is sitting on a desk"}, {"index": 50, "image_id": 2413201, "entity": "computer", "caption": "smooth wood table hold a computer", "question": ["is there smooth wood table ?", "is there a computer ?"], "prompt": "smooth wood table hold a {}"}, {"index": 51, "image_id": 2415366, "entity": "computer", "caption": "A computer is on a white desk", "question": ["is there a computer ?", "is there a white desk ?"], "prompt": "A {} is on a white desk"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03196217.json b/data/imagenet/compositions/prompts/n03196217.json
new file mode 100644
index 0000000000000000000000000000000000000000..95345f888ea62094c76859f3878edf9bd59891ca
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03196217.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2410316, "entity": "clock", "caption": "a horse toy is beside the clock", "question": ["is there a horse toy ?", "is there the clock ?"], "prompt": "a horse toy is beside the {}"}, {"index": 1, "image_id": 2410316, "entity": "clock", "caption": "the clock indicates ten minutes to five", "question": ["is there the clock ?", "are there ten minutes ?"], "prompt": "the {} indicates ten minutes to five"}, {"index": 2, "image_id": 2410316, "entity": "clock", "caption": "a brown horse toy is behind the clock", "question": ["is there a brown horse toy ?", "is there the clock ?"], "prompt": "a brown horse toy is behind the {}"}, {"index": 3, "image_id": 2410316, "entity": "clock", "caption": "The clock has united in large letters. ", "question": ["is there the clock ?", "are there large letters ?"], "prompt": "The {} has united in large letters. "}, {"index": 4, "image_id": 2409095, "entity": "clock", "caption": "The clock has roman numerals", "question": ["is there the clock ?", "are there roman numerals ?"], "prompt": "The {} has roman numerals"}, {"index": 5, "image_id": 2408776, "entity": "clock", "caption": "The clock is on the wall. ", "question": ["is there the clock ?", "is there the wall ?"], "prompt": "The {} is on the wall. "}, {"index": 6, "image_id": 2408776, "entity": "clock", "caption": "The clocks hangs on the wall by a cord. ", "question": ["are there the clocks ?", "is there the wall ?", "is there a cord ?"], "prompt": "The {}s hangs on the wall by a cord. "}, {"index": 7, "image_id": 2408776, "entity": "clock", "caption": "The clock's numbers are black. ", "question": ["are there the clock's numbers ?"], "prompt": "The {}'s numbers are black. "}, {"index": 8, "image_id": 2408776, "entity": "clock", "caption": "The clocks's hands are black. ", "question": ["are there the clocks's hands ?"], "prompt": "The {}s's hands are black. "}, {"index": 9, "image_id": 2408776, "entity": "clock", "caption": "A flower is on the clock. ", "question": ["is there a flower ?", "is there the clock ?"], "prompt": "A flower is on the {}. "}, {"index": 10, "image_id": 2408776, "entity": "clock", "caption": "The flower is behind a corner of the clock. ", "question": ["is there the flower ?", "is there a corner ?", "is there the clock ?"], "prompt": "The flower is behind a corner of the {}. "}, {"index": 11, "image_id": 2408776, "entity": "clock", "caption": "Wall the clock is hanging on", "question": ["is there the clock ?"], "prompt": "Wall the {} is hanging on"}, {"index": 12, "image_id": 2408776, "entity": "clock", "caption": "Cord the clock is hanging on", "question": ["is there the clock ?"], "prompt": "Cord the {} is hanging on"}, {"index": 13, "image_id": 2406706, "entity": "clock", "caption": "the clock has roman numerals", "question": ["is there the clock ?", "are there roman numerals ?"], "prompt": "the {} has roman numerals"}, {"index": 14, "image_id": 2406706, "entity": "clock", "caption": "the clock has layers", "question": ["is there the clock ?", "are there layers ?"], "prompt": "the {} has layers"}, {"index": 15, "image_id": 2406706, "entity": "clock", "caption": "clock mounted on a building", "question": ["is there clock ?", "is there a building ?"], "prompt": "{} mounted on a building"}, {"index": 16, "image_id": 2401776, "entity": "clock", "caption": "the clock is on the side of the building", "question": ["is there the clock ?", "is there the side ?", "is there the building ?"], "prompt": "the {} is on the side of the building"}, {"index": 17, "image_id": 2401776, "entity": "clock", "caption": "the clock has a minute hand", "question": ["is there the clock ?", "is there a minute hand ?"], "prompt": "the {} has a minute hand"}, {"index": 18, "image_id": 2401775, "entity": "clock", "caption": "a clock saying it is almost 3:30", "question": ["is there a clock ?"], "prompt": "a {} saying it is almost 3:30"}, {"index": 19, "image_id": 2397881, "entity": "clock", "caption": "the clock has stripes", "question": ["is there the clock ?", "are there stripes ?"], "prompt": "the {} has stripes"}, {"index": 20, "image_id": 2394607, "entity": "clock", "caption": "green and white clock stuck on a pole", "question": ["is there green and white clock ?", "is there a pole ?"], "prompt": "green and white {} stuck on a pole"}, {"index": 21, "image_id": 2394286, "entity": "clock", "caption": "The word Quartz written on the face of the clock", "question": ["is there the word ?", "is there quartz ?", "is there the face ?", "is there the clock ?"], "prompt": "The word Quartz written on the face of the {}"}, {"index": 22, "image_id": 2392766, "entity": "clock", "caption": "The clock has black hands.", "question": ["is there the clock ?", "are there black hands ?"], "prompt": "The {} has black hands."}, {"index": 23, "image_id": 2392766, "entity": "clock", "caption": "The clock is on the mechanics.", "question": ["is there the clock ?", "are there the mechanics ?"], "prompt": "The {} is on the mechanics."}, {"index": 24, "image_id": 2391821, "entity": "clock", "caption": "The stone animals are around the clock.", "question": ["are there the stone animals ?", "is there the clock ?"], "prompt": "The stone animals are around the {}."}, {"index": 25, "image_id": 2391067, "entity": "clock", "caption": "Numbers on clock are roman numerals.", "question": ["are there numbers ?", "is there clock ?", "are there roman numerals ?"], "prompt": "Numbers on {} are roman numerals."}, {"index": 26, "image_id": 2389588, "entity": "clock", "caption": "the mirror is behind the clock", "question": ["is there the mirror ?", "is there the clock ?"], "prompt": "the mirror is behind the {}"}, {"index": 27, "image_id": 2389588, "entity": "clock", "caption": "the trophy is on top of the clock", "question": ["is there the trophy ?", "is there top ?", "is there the clock ?"], "prompt": "the trophy is on top of the {}"}, {"index": 28, "image_id": 2389588, "entity": "clock", "caption": "children are sculptures of clock", "question": ["are there children ?", "are there sculptures ?", "is there clock ?"], "prompt": "children are sculptures of {}"}, {"index": 29, "image_id": 2389588, "entity": "clock", "caption": "clock is in museum", "question": ["is there clock ?", "is there museum ?"], "prompt": "{} is in museum"}, {"index": 30, "image_id": 2389588, "entity": "clock", "caption": "clock uses roman numerals", "question": ["is there clock ?", "are there roman numerals ?"], "prompt": "{} uses roman numerals"}, {"index": 31, "image_id": 2389588, "entity": "clock", "caption": "children are statues on clock", "question": ["are there children ?", "are there statues ?", "is there clock ?"], "prompt": "children are statues on {}"}, {"index": 32, "image_id": 2384484, "entity": "clock", "caption": "A double window is above the clock.", "question": ["is there a double window ?", "is there the clock ?"], "prompt": "A double window is above the {}."}, {"index": 33, "image_id": 2384484, "entity": "clock", "caption": "The clock has Roman numerals.", "question": ["is there the clock ?", "are there roman numerals ?"], "prompt": "The {} has Roman numerals."}, {"index": 34, "image_id": 2384484, "entity": "clock", "caption": "A trailer is behind the clock.", "question": ["is there a trailer ?", "is there the clock ?"], "prompt": "A trailer is behind the {}."}, {"index": 35, "image_id": 2383009, "entity": "clock", "caption": "Center of clock has small knob", "question": ["is there center ?", "is there clock ?", "is there small knob ?"], "prompt": "Center of {} has small knob"}, {"index": 36, "image_id": 2381167, "entity": "clock", "caption": "stucco wall clock is on", "question": ["is there stucco wall clock ?"], "prompt": "stucco wall {} is on"}, {"index": 37, "image_id": 2377181, "entity": "clock", "caption": "The clock is hanging from the ceiling", "question": ["is there the clock ?", "is there the ceiling ?"], "prompt": "The {} is hanging from the ceiling"}, {"index": 38, "image_id": 2377181, "entity": "clock", "caption": "The clock has numerical numbers.", "question": ["is there the clock ?", "are there numerical numbers ?"], "prompt": "The {} has numerical numbers."}, {"index": 39, "image_id": 2377181, "entity": "clock", "caption": "The little hand on the clock is red.", "question": ["is there the little hand ?", "is there the clock ?"], "prompt": "The little hand on the {} is red."}, {"index": 40, "image_id": 2377181, "entity": "clock", "caption": "The big hand on the clock is black.", "question": ["is there the big hand ?", "is there the clock ?"], "prompt": "The big hand on the {} is black."}, {"index": 41, "image_id": 2376461, "entity": "clock", "caption": "top of the track the clock is hanging on", "question": ["is there top ?", "is there the track ?", "is there the clock ?"], "prompt": "top of the track the {} is hanging on"}, {"index": 42, "image_id": 2376359, "entity": "clock", "caption": "Oval shaped hole in middle of clock hand", "question": ["is there oval shaped hole ?", "is there middle ?", "is there clock hand ?"], "prompt": "Oval shaped hole in middle of {} hand"}, {"index": 43, "image_id": 2376359, "entity": "clock", "caption": "The clock is on the counter.", "question": ["is there the clock ?", "is there the counter ?"], "prompt": "The {} is on the counter."}, {"index": 44, "image_id": 2376359, "entity": "clock", "caption": "the clock is on the table ", "question": ["is there the clock ?", "is there the table ?"], "prompt": "the {} is on the table "}, {"index": 45, "image_id": 2376119, "entity": "clock", "caption": "The clock is above the windows", "question": ["is there the clock ?", "are there the windows ?"], "prompt": "The {} is above the windows"}, {"index": 46, "image_id": 2375668, "entity": "clock", "caption": "the sun is in the middle of the clock", "question": ["is there the sun ?", "is there the middle ?", "is there the clock ?"], "prompt": "the sun is in the middle of the {}"}, {"index": 47, "image_id": 2375539, "entity": "clock", "caption": "animal carved into the front of the clock", "question": ["is there animal ?", "is there the front ?", "is there the clock ?"], "prompt": "animal carved into the front of the {}"}, {"index": 48, "image_id": 2365737, "entity": "clock", "caption": "the illar has two clocks", "question": ["are there two clocks ?"], "prompt": "the illar has two {}s"}, {"index": 49, "image_id": 2362939, "entity": "clock", "caption": "this is a clock", "question": ["is there a clock ?"], "prompt": "this is a {}"}, {"index": 50, "image_id": 2360759, "entity": "clock", "caption": "woman standing behind a large clock", "question": ["is there woman ?", "is there a large clock ?"], "prompt": "woman standing behind a large {}"}, {"index": 51, "image_id": 2360759, "entity": "clock", "caption": "There are dots on the clock that are visible", "question": ["are there dots ?", "is there the clock ?"], "prompt": "There are dots on the {} that are visible"}, {"index": 52, "image_id": 2358739, "entity": "clock", "caption": "a metal clock extending from building", "question": ["is there a metal clock ?"], "prompt": "a metal {} extending from building"}, {"index": 53, "image_id": 2356053, "entity": "clock", "caption": "an old clock is hanging on the wall", "question": ["is there an old clock ?", "is there the wall ?"], "prompt": "an old {} is hanging on the wall"}, {"index": 54, "image_id": 2356053, "entity": "clock", "caption": "clock is in a wood suppor", "question": ["is there clock ?", "is there a wood suppor ?"], "prompt": "{} is in a wood suppor"}, {"index": 55, "image_id": 2356053, "entity": "clock", "caption": "clock has cardinal numbers", "question": ["is there clock ?", "are there cardinal numbers ?"], "prompt": "{} has cardinal numbers"}, {"index": 56, "image_id": 2353998, "entity": "clock", "caption": "clock that reads 10:35", "question": ["is there clock ?"], "prompt": "{} that reads 10:35"}, {"index": 57, "image_id": 2352061, "entity": "clock", "caption": "the clock shows 9:33", "question": ["is there the clock ?"], "prompt": "the {} shows 9:33"}, {"index": 58, "image_id": 2352061, "entity": "clock", "caption": "clock's hands are black", "question": ["are there clock's hands ?"], "prompt": "{}'s hands are black"}, {"index": 59, "image_id": 2351684, "entity": "clock", "caption": "The hour and minute hand on the clock is gold.", "question": ["is there the hour and minute hand ?", "is there the clock ?", "is there gold ?"], "prompt": "The hour and minute hand on the {} is gold."}, {"index": 60, "image_id": 2351684, "entity": "clock", "caption": "Gold colored hands on the clock.", "question": ["are there gold colored hands ?", "is there the clock ?"], "prompt": "Gold colored hands on the {}."}, {"index": 61, "image_id": 2351684, "entity": "clock", "caption": "A camel's head painted in the background on a clock", "question": ["is there a camel's head ?", "is there the background ?", "is there a clock ?"], "prompt": "A camel's head painted in the background on a {}"}, {"index": 62, "image_id": 2350248, "entity": "clock", "caption": "One large orange clock attached to wall have back writing ", "question": ["is there one large orange clock ?", "is there wall ?"], "prompt": "One large orange {} attached to wall have back writing "}, {"index": 63, "image_id": 2348404, "entity": "clock", "caption": "The clock reads 11:36", "question": ["is there the clock ?"], "prompt": "The {} reads 11:36"}, {"index": 64, "image_id": 2346989, "entity": "clock", "caption": "screw that holds hands of clock together", "question": ["are there hands ?", "is there clock ?"], "prompt": "screw that holds hands of {} together"}, {"index": 65, "image_id": 2346989, "entity": "clock", "caption": "clock has roman numbers", "question": ["is there clock ?", "are there roman numbers ?"], "prompt": "{} has roman numbers"}, {"index": 66, "image_id": 2346989, "entity": "clock", "caption": "numbers on the clock are in black", "question": ["are there numbers ?", "is there the clock ?", "is there black ?"], "prompt": "numbers on the {} are in black"}, {"index": 67, "image_id": 2346989, "entity": "clock", "caption": "gold bolt holding hands to clock face", "question": ["are there hands ?"], "prompt": "gold bolt holding hands to {} face"}, {"index": 68, "image_id": 2345738, "entity": "clock", "caption": "clock has gold face", "question": ["is there clock ?", "is there gold face ?"], "prompt": "{} has gold face"}, {"index": 69, "image_id": 2345738, "entity": "clock", "caption": "clock has roman numerals", "question": ["is there clock ?", "are there roman numerals ?"], "prompt": "{} has roman numerals"}, {"index": 70, "image_id": 2345738, "entity": "clock", "caption": "clock hands are black", "question": ["are there clock hands ?"], "prompt": "{} hands are black"}, {"index": 71, "image_id": 2345738, "entity": "clock", "caption": "clock is casting shadow", "question": ["is there clock ?", "is there shadow ?"], "prompt": "{} is casting shadow"}, {"index": 72, "image_id": 2345738, "entity": "clock", "caption": "the front of the clock has s decorative carving", "question": ["is there the front ?", "is there the clock ?", "is there decorative carving ?"], "prompt": "the front of the {} has s decorative carving"}, {"index": 73, "image_id": 2345738, "entity": "clock", "caption": "the clock is in the corner", "question": ["is there the clock ?", "is there the corner ?"], "prompt": "the {} is in the corner"}, {"index": 74, "image_id": 2342674, "entity": "clock", "caption": "the clock has a number 7", "question": ["is there the clock ?", "is there a number ?"], "prompt": "the {} has a number 7"}, {"index": 75, "image_id": 2342674, "entity": "clock", "caption": "the clock has a number 8", "question": ["is there the clock ?", "is there a number ?"], "prompt": "the {} has a number 8"}, {"index": 76, "image_id": 2342674, "entity": "clock", "caption": "the clock has a number 10", "question": ["is there the clock ?", "is there a number ?"], "prompt": "the {} has a number 10"}, {"index": 77, "image_id": 2342674, "entity": "clock", "caption": "the clock has a number 11", "question": ["is there the clock ?", "is there a number ?"], "prompt": "the {} has a number 11"}, {"index": 78, "image_id": 2342674, "entity": "clock", "caption": "the clock has a number 12", "question": ["is there the clock ?", "is there a number ?"], "prompt": "the {} has a number 12"}, {"index": 79, "image_id": 2342674, "entity": "clock", "caption": "numbers on the clock are black", "question": ["are there numbers ?", "is there the clock ?"], "prompt": "numbers on the {} are black"}, {"index": 80, "image_id": 2338262, "entity": "clock", "caption": "clock has white face", "question": ["is there clock ?", "is there white face ?"], "prompt": "{} has white face"}, {"index": 81, "image_id": 2338262, "entity": "clock", "caption": "clock has black hands", "question": ["is there clock ?", "are there black hands ?"], "prompt": "{} has black hands"}, {"index": 82, "image_id": 2337207, "entity": "clock", "caption": "clock time indicates 2:08", "question": ["is there clock time ?"], "prompt": "{} time indicates 2:08"}, {"index": 83, "image_id": 2336136, "entity": "clock", "caption": "The clock is hanging from the ceiling.", "question": ["is there the clock ?", "is there the ceiling ?"], "prompt": "The {} is hanging from the ceiling."}, {"index": 84, "image_id": 2336136, "entity": "clock", "caption": "A clock that is hanging from the wall", "question": ["is there a clock ?", "is there the wall ?"], "prompt": "A {} that is hanging from the wall"}, {"index": 85, "image_id": 2335316, "entity": "clock", "caption": "clock has a pendulum", "question": ["is there clock ?", "is there a pendulum ?"], "prompt": "{} has a pendulum"}, {"index": 86, "image_id": 2334994, "entity": "clock", "caption": "handles of clock are black ", "question": ["are there handles ?", "is there clock ?"], "prompt": "handles of {} are black "}, {"index": 87, "image_id": 2334994, "entity": "clock", "caption": "1 is on the clock ", "question": ["is there the clock ?"], "prompt": "1 is on the {} "}, {"index": 88, "image_id": 2334994, "entity": "clock", "caption": "3 is on the clock ", "question": ["is there the clock ?"], "prompt": "3 is on the {} "}, {"index": 89, "image_id": 2334994, "entity": "clock", "caption": "4 is on the clock ", "question": ["is there the clock ?"], "prompt": "4 is on the {} "}, {"index": 90, "image_id": 2334994, "entity": "clock", "caption": "5 is on the clock ", "question": ["is there the clock ?"], "prompt": "5 is on the {} "}, {"index": 91, "image_id": 2334994, "entity": "clock", "caption": "7 is on the clock ", "question": ["is there the clock ?"], "prompt": "7 is on the {} "}, {"index": 92, "image_id": 2334738, "entity": "clock", "caption": "it is 4:22 on the clock", "question": ["is there the clock ?"], "prompt": "it is 4:22 on the {}"}, {"index": 93, "image_id": 2333327, "entity": "clock", "caption": "clock has a number", "question": ["is there clock ?", "is there a number ?"], "prompt": "{} has a number"}, {"index": 94, "image_id": 2330856, "entity": "clock", "caption": "Hands of the clock are outside the glass", "question": ["are there hands ?", "is there the clock ?", "is there the glass ?"], "prompt": "Hands of the {} are outside the glass"}, {"index": 95, "image_id": 2324292, "entity": "clock", "caption": "A clock mounted on the wall", "question": ["is there a clock ?", "is there the wall ?"], "prompt": "A {} mounted on the wall"}, {"index": 96, "image_id": 2320915, "entity": "clock", "caption": "the vine is around clock", "question": ["is there the vine ?", "is there clock ?"], "prompt": "the vine is around {}"}, {"index": 97, "image_id": 2319981, "entity": "clock", "caption": "the clock is on a building ", "question": ["is there the clock ?", "is there a building ?"], "prompt": "the {} is on a building "}, {"index": 98, "image_id": 2319981, "entity": "clock", "caption": "the clock has black hour and minute markers ", "question": ["is there the clock ?", "are there black hour and minute markers ?"], "prompt": "the {} has black hour and minute markers "}, {"index": 99, "image_id": 2414999, "entity": "clock", "caption": "wall mounted clock ", "question": ["is there clock ?"], "prompt": "wall mounted {} "}, {"index": 100, "image_id": 2414957, "entity": "clock", "caption": "Buildings are visible through the clock.", "question": ["are there buildings ?", "is there the clock ?"], "prompt": "Buildings are visible through the {}."}, {"index": 101, "image_id": 2414957, "entity": "clock", "caption": "The clock's numbers are roman numerals. ", "question": ["are there the clock's numbers ?", "are there roman numerals ?"], "prompt": "The {}'s numbers are roman numerals. "}, {"index": 102, "image_id": 2414212, "entity": "clock", "caption": "These are clock hands.", "question": ["are there clock hands ?"], "prompt": "These are {} hands."}, {"index": 103, "image_id": 2412479, "entity": "clock", "caption": "The clock has one red hand", "question": ["is there the clock ?", "is there one red hand ?"], "prompt": "The {} has one red hand"}, {"index": 104, "image_id": 2412479, "entity": "clock", "caption": "A wooden stool is standing behind the clock.", "question": ["is there a wooden stool ?", "is there the clock ?"], "prompt": "A wooden stool is standing behind the {}."}, {"index": 105, "image_id": 2412479, "entity": "clock", "caption": "Small woman design on the clock.", "question": ["is there small woman ?", "is there the clock ?"], "prompt": "Small woman design on the {}."}, {"index": 106, "image_id": 2415872, "entity": "clock", "caption": "clock has twelve numbers", "question": ["is there clock ?", "are there twelve numbers ?"], "prompt": "{} has twelve numbers"}, {"index": 107, "image_id": 2415872, "entity": "clock", "caption": "clock has two silver hands", "question": ["is there clock ?", "are there two silver hands ?"], "prompt": "{} has two silver hands"}, {"index": 108, "image_id": 2417056, "entity": "clock", "caption": "The clock's big hand that tells the minutes.", "question": ["is there the clock's big hand ?", "are there the minutes ?"], "prompt": "The {}'s big hand that tells the minutes."}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03259280.json b/data/imagenet/compositions/prompts/n03259280.json
new file mode 100644
index 0000000000000000000000000000000000000000..209e99d1348161eafff222db1da220023a9c169a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03259280.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 498042, "entity": "oven", "caption": "Chef putting pizza in oven.", "question": ["is there chef ?", "is there pizza ?", "is there oven ?"], "prompt": "Chef putting pizza in {}."}, {"index": 1, "image_id": 498111, "entity": "oven", "caption": "convection oven with open door", "question": ["is there convection oven ?", "is there open door ?"], "prompt": "convection {} with open door"}, {"index": 2, "image_id": 498111, "entity": "oven", "caption": "convection oven with blue interior", "question": ["is there convection oven ?", "is there blue interior ?"], "prompt": "convection {} with blue interior"}, {"index": 3, "image_id": 1593184, "entity": "oven", "caption": "Cat is sitting inside of oven.", "question": ["is there cat ?", "is there oven ?"], "prompt": "Cat is sitting inside of {}."}, {"index": 4, "image_id": 2411403, "entity": "oven", "caption": "Cat is in oven", "question": ["is there cat ?", "is there oven ?"], "prompt": "Cat is in {}"}, {"index": 5, "image_id": 2411403, "entity": "oven", "caption": "Wall behind oven is white", "question": ["is there oven ?"], "prompt": "Wall behind {} is white"}, {"index": 6, "image_id": 2411357, "entity": "oven", "caption": "the dog is watching the oven", "question": ["is there the dog ?", "is there the oven ?"], "prompt": "the dog is watching the {}"}, {"index": 7, "image_id": 2410282, "entity": "oven", "caption": "the ovens door is white in color", "question": ["are there the ovens door ?", "is there color ?"], "prompt": "the {}s door is white in color"}, {"index": 8, "image_id": 2410282, "entity": "oven", "caption": "a metallic container is inside the oven", "question": ["is there a metallic container ?", "is there the oven ?"], "prompt": "a metallic container is inside the {}"}, {"index": 9, "image_id": 2410282, "entity": "oven", "caption": "these are buttons on the oven", "question": ["are there buttons ?", "is there the oven ?"], "prompt": "these are buttons on the {}"}, {"index": 10, "image_id": 2410282, "entity": "oven", "caption": "the oven is on a stand", "question": ["is there the oven ?", "is there a stand ?"], "prompt": "the {} is on a stand"}, {"index": 11, "image_id": 2410147, "entity": "oven", "caption": "Dog is in an oven", "question": ["is there dog ?", "is there an oven ?"], "prompt": "Dog is in an {}"}, {"index": 12, "image_id": 2408688, "entity": "oven", "caption": "Metal oven racks inside of the oven.", "question": ["are there metal oven racks ?", "is there the oven ?"], "prompt": "Metal {} racks inside of the {}."}, {"index": 13, "image_id": 2408516, "entity": "oven", "caption": "Food is inside a oven", "question": ["is there food ?", "is there a oven ?"], "prompt": "Food is inside a {}"}, {"index": 14, "image_id": 2408516, "entity": "oven", "caption": "Top of the oven heaters is red", "question": ["is there top ?", "are there the oven heaters ?"], "prompt": "Top of the {} heaters is red"}, {"index": 15, "image_id": 2408199, "entity": "oven", "caption": "pizza is in oven", "question": ["is there pizza ?", "is there oven ?"], "prompt": "pizza is in {}"}, {"index": 16, "image_id": 2406320, "entity": "oven", "caption": "a thermometer is in the oven", "question": ["is there a thermometer ?", "is there the oven ?"], "prompt": "a thermometer is in the {}"}, {"index": 17, "image_id": 2406291, "entity": "oven", "caption": "door is open on the oven", "question": ["is there door ?", "is there the oven ?"], "prompt": "door is open on the {}"}, {"index": 18, "image_id": 2406291, "entity": "oven", "caption": "foil layed at the bottom of the oven", "question": ["is there foil ?", "is there the bottom ?", "is there the oven ?"], "prompt": "foil layed at the bottom of the {}"}, {"index": 19, "image_id": 2404859, "entity": "oven", "caption": "an oven light that is on", "question": ["is there an oven light ?"], "prompt": "an {} light that is on"}, {"index": 20, "image_id": 2404859, "entity": "oven", "caption": "The light is on inside the oven.", "question": ["is there the light ?", "is there the oven ?"], "prompt": "The light is on inside the {}."}, {"index": 21, "image_id": 2404830, "entity": "oven", "caption": "Time on the oven says 4:01", "question": ["is there time ?", "is there the oven ?"], "prompt": "Time on the {} says 4:01"}, {"index": 22, "image_id": 2404830, "entity": "oven", "caption": "stainless steel oven", "question": ["is there stainless steel oven ?"], "prompt": "stainless steel {}"}, {"index": 23, "image_id": 2404649, "entity": "oven", "caption": "the turkey is in the oven", "question": ["is there the oven ?"], "prompt": "the turkey is in the {}"}, {"index": 24, "image_id": 2404649, "entity": "oven", "caption": "the oven door is open", "question": ["is there the oven door ?"], "prompt": "the {} door is open"}, {"index": 25, "image_id": 2404082, "entity": "oven", "caption": "The bagels are toasting in the oven", "question": ["are there the bagels ?", "is there the oven ?"], "prompt": "The bagels are toasting in the {}"}, {"index": 26, "image_id": 2403994, "entity": "oven", "caption": "oven door handle", "question": ["is there oven door ?"], "prompt": "{} door handle"}, {"index": 27, "image_id": 2403994, "entity": "oven", "caption": "wall behind oven is dirty", "question": ["is there oven ?"], "prompt": "wall behind {} is dirty"}, {"index": 28, "image_id": 2403994, "entity": "oven", "caption": "oven handle is silver", "question": ["is there oven ?"], "prompt": "{} handle is silver"}, {"index": 29, "image_id": 2403911, "entity": "oven", "caption": "the oven has 2 pans in it", "question": ["is there the oven ?", "are there 2 pans ?"], "prompt": "the {} has 2 pans in it"}, {"index": 30, "image_id": 2403911, "entity": "oven", "caption": "two pans are in the oven", "question": ["are there two pans ?", "is there the oven ?"], "prompt": "two pans are in the {}"}, {"index": 31, "image_id": 2403401, "entity": "oven", "caption": "white fancy oven with handle", "question": ["is there white fancy oven ?", "is there handle ?"], "prompt": "white fancy {} with handle"}, {"index": 32, "image_id": 2403093, "entity": "oven", "caption": "The oven has racks.", "question": ["is there the oven ?", "are there racks ?"], "prompt": "The {} has racks."}, {"index": 33, "image_id": 2403093, "entity": "oven", "caption": "Homemade bread oven bake", "question": ["is there homemade bread oven ?"], "prompt": "Homemade bread {} bake"}, {"index": 34, "image_id": 2400967, "entity": "oven", "caption": "bagel on pan going in oven to be toasted", "question": ["is there bagel ?", "is there pan ?", "is there oven ?"], "prompt": "bagel on pan going in {} to be toasted"}, {"index": 35, "image_id": 2399896, "entity": "oven", "caption": "a toaster oven sitting on a counter", "question": ["is there a toaster oven ?", "is there a counter ?"], "prompt": "a toaster {} sitting on a counter"}, {"index": 36, "image_id": 2399896, "entity": "oven", "caption": "the oven has a blue information panel", "question": ["is there the oven ?", "is there a blue information panel ?"], "prompt": "the {} has a blue information panel"}, {"index": 37, "image_id": 2399896, "entity": "oven", "caption": "the oven has three silver dials", "question": ["is there the oven ?", "are there three silver dials ?"], "prompt": "the {} has three silver dials"}, {"index": 38, "image_id": 2399896, "entity": "oven", "caption": "the oven has a silver button", "question": ["is there the oven ?", "is there a silver button ?"], "prompt": "the {} has a silver button"}, {"index": 39, "image_id": 2399152, "entity": "oven", "caption": "The oven has buttons", "question": ["is there the oven ?", "are there buttons ?"], "prompt": "The {} has buttons"}, {"index": 40, "image_id": 2398590, "entity": "oven", "caption": "Three pizzas are visible in the oven.", "question": ["are there three pizzas ?", "is there the oven ?"], "prompt": "Three pizzas are visible in the {}."}, {"index": 41, "image_id": 2398590, "entity": "oven", "caption": "The door to the pizza oven is open.", "question": ["is there the door ?", "is there the pizza oven ?"], "prompt": "The door to the pizza {} is open."}, {"index": 42, "image_id": 2398590, "entity": "oven", "caption": "A flame inside the pizza oven.", "question": ["is there a flame ?", "is there the pizza oven ?"], "prompt": "A flame inside the pizza {}."}, {"index": 43, "image_id": 2398590, "entity": "oven", "caption": "The word Wood is on the oven.", "question": ["is there the word wood ?", "is there the oven ?"], "prompt": "The word Wood is on the {}."}, {"index": 44, "image_id": 2398418, "entity": "oven", "caption": "a oven mit hanging", "question": ["is there a oven mit ?"], "prompt": "a {} mit hanging"}, {"index": 45, "image_id": 2396659, "entity": "oven", "caption": "drip marks on side of metal oven", "question": ["are there marks ?", "is there side ?", "is there metal oven ?"], "prompt": "drip marks on side of metal {}"}, {"index": 46, "image_id": 2396659, "entity": "oven", "caption": "oven door is open", "question": ["is there oven door ?"], "prompt": "{} door is open"}, {"index": 47, "image_id": 2393568, "entity": "oven", "caption": "The man is taking something from the oven", "question": ["is there the man ?", "is there something ?", "is there the oven ?"], "prompt": "The man is taking something from the {}"}, {"index": 48, "image_id": 2393568, "entity": "oven", "caption": "the man pulls something out of oven", "question": ["is there the man ?", "is there something ?", "is there oven ?"], "prompt": "the man pulls something out of {}"}, {"index": 49, "image_id": 2393568, "entity": "oven", "caption": "The man is putting something in the oven", "question": ["is there the man ?", "is there something ?", "is there the oven ?"], "prompt": "The man is putting something in the {}"}, {"index": 50, "image_id": 2393568, "entity": "oven", "caption": "The rack is out of the oven", "question": ["is there the rack ?", "is there the oven ?"], "prompt": "The rack is out of the {}"}, {"index": 51, "image_id": 2393568, "entity": "oven", "caption": "man taking something out of the oven", "question": ["is there man ?", "is there something ?", "is there the oven ?"], "prompt": "man taking something out of the {}"}, {"index": 52, "image_id": 2390677, "entity": "oven", "caption": "Pizza going into oven", "question": ["is there pizza ?", "is there oven ?"], "prompt": "Pizza going into {}"}, {"index": 53, "image_id": 2390677, "entity": "oven", "caption": "Controls to large oven", "question": ["is there large oven ?"], "prompt": "Controls to large {}"}, {"index": 54, "image_id": 2386402, "entity": "oven", "caption": "Someone is standing right beside the oven", "question": ["is there someone ?", "is there the oven ?"], "prompt": "Someone is standing right beside the {}"}, {"index": 55, "image_id": 2386040, "entity": "oven", "caption": "The oven walls are gray.", "question": ["are there the oven walls ?"], "prompt": "The {} walls are gray."}, {"index": 56, "image_id": 2386040, "entity": "oven", "caption": "Shelf racks on side of an oven", "question": ["are there shelf racks ?", "is there side ?", "is there an oven ?"], "prompt": "Shelf racks on side of an {}"}, {"index": 57, "image_id": 2386040, "entity": "oven", "caption": "the pizza is in the oven", "question": ["is there the pizza ?", "is there the oven ?"], "prompt": "the pizza is in the {}"}, {"index": 58, "image_id": 2385529, "entity": "oven", "caption": "person is reaching into oven", "question": ["is there person ?", "is there oven ?"], "prompt": "person is reaching into {}"}, {"index": 59, "image_id": 2385529, "entity": "oven", "caption": "person is retrieving baking tray from oven", "question": ["is there person ?", "is there baking tray ?", "is there oven ?"], "prompt": "person is retrieving baking tray from {}"}, {"index": 60, "image_id": 2385529, "entity": "oven", "caption": "woman about to put a pizza in the oven", "question": ["is there woman ?", "is there a pizza ?", "is there the oven ?"], "prompt": "woman about to put a pizza in the {}"}, {"index": 61, "image_id": 2385231, "entity": "oven", "caption": "person reflected in oven", "question": ["is there person ?", "is there oven ?"], "prompt": "person reflected in {}"}, {"index": 62, "image_id": 2385231, "entity": "oven", "caption": "a kitchen cabinet is near the oven", "question": ["is there a kitchen cabinet ?", "is there the oven ?"], "prompt": "a kitchen cabinet is near the {}"}, {"index": 63, "image_id": 2385231, "entity": "oven", "caption": "muffins are baking in the oven", "question": ["are there muffins ?", "is there the oven ?"], "prompt": "muffins are baking in the {}"}, {"index": 64, "image_id": 2383007, "entity": "oven", "caption": "knobs on the bread oven", "question": ["are there knobs ?", "is there the bread oven ?"], "prompt": "knobs on the bread {}"}, {"index": 65, "image_id": 2383007, "entity": "oven", "caption": "the bottom of the oven has 6 racks", "question": ["is there the bottom ?", "is there the oven ?", "are there 6 racks ?"], "prompt": "the bottom of the {} has 6 racks"}, {"index": 66, "image_id": 2381811, "entity": "oven", "caption": "the oven has many buttons", "question": ["is there the oven ?", "are there many buttons ?"], "prompt": "the {} has many buttons"}, {"index": 67, "image_id": 2381811, "entity": "oven", "caption": "the girl is reaching into the oven", "question": ["is there the girl ?", "is there the oven ?"], "prompt": "the girl is reaching into the {}"}, {"index": 68, "image_id": 2381811, "entity": "oven", "caption": "woman looking into oven", "question": ["is there woman ?", "is there oven ?"], "prompt": "woman looking into {}"}, {"index": 69, "image_id": 2378898, "entity": "oven", "caption": "black oven has two racks", "question": ["is there black oven ?", "are there two racks ?"], "prompt": "black {} has two racks"}, {"index": 70, "image_id": 2378810, "entity": "oven", "caption": "oven's door handle", "question": ["is there oven's door ?"], "prompt": "{}'s door handle"}, {"index": 71, "image_id": 2378810, "entity": "oven", "caption": "knobs on a toaster oven", "question": ["are there knobs ?", "is there a toaster oven ?"], "prompt": "knobs on a toaster {}"}, {"index": 72, "image_id": 2378047, "entity": "oven", "caption": "The oven has control knobs", "question": ["is there the oven ?", "are there control knobs ?"], "prompt": "The {} has control knobs"}, {"index": 73, "image_id": 2377236, "entity": "oven", "caption": "a turkey that is cooking in the oven", "question": ["is there a turkey ?", "is there the oven ?"], "prompt": "a turkey that is cooking in the {}"}, {"index": 74, "image_id": 2376057, "entity": "oven", "caption": "The pan is in the oven.", "question": ["is there the pan ?", "is there the oven ?"], "prompt": "The pan is in the {}."}, {"index": 75, "image_id": 2376057, "entity": "oven", "caption": "a pan of food going into the oven to cook", "question": ["is there a pan ?", "is there food ?", "is there the oven ?"], "prompt": "a pan of food going into the {} to cook"}, {"index": 76, "image_id": 2374883, "entity": "oven", "caption": "grease built up on the oven door", "question": ["is there grease ?", "is there the oven door ?"], "prompt": "grease built up on the {} door"}, {"index": 77, "image_id": 2374227, "entity": "oven", "caption": "the light is on in the oven", "question": ["is there the light ?", "is there the oven ?"], "prompt": "the light is on in the {}"}, {"index": 78, "image_id": 2374227, "entity": "oven", "caption": "a clack and white oven in the kitchen", "question": ["is there a clack and white oven ?", "is there the kitchen ?"], "prompt": "a clack and white {} in the kitchen"}, {"index": 79, "image_id": 2374187, "entity": "oven", "caption": "door of an oven that is wide open ", "question": ["is there door ?", "is there an oven ?"], "prompt": "door of an {} that is wide open "}, {"index": 80, "image_id": 2369871, "entity": "oven", "caption": "white oven door handle", "question": ["is there white oven door ?"], "prompt": "white {} door handle"}, {"index": 81, "image_id": 2369871, "entity": "oven", "caption": "Side of stove andoven with documentation", "question": ["is there side ?", "is there stove ?", "is there documentation ?"], "prompt": "Side of stove and{} with documentation"}, {"index": 82, "image_id": 2368897, "entity": "oven", "caption": "the wood fire oven for the food", "question": ["is there the wood fire oven ?", "is there the food ?"], "prompt": "the wood fire {} for the food"}, {"index": 83, "image_id": 2368471, "entity": "oven", "caption": "The oven is in the wall", "question": ["is there the oven ?", "is there the wall ?"], "prompt": "The {} is in the wall"}, {"index": 84, "image_id": 2367960, "entity": "oven", "caption": "Roper is the brand name of this oven", "question": ["is there roper ?", "is there the brand name ?", "is there this oven ?"], "prompt": "Roper is the brand name of this {}"}, {"index": 85, "image_id": 2367960, "entity": "oven", "caption": "this knob controls the oven temperature", "question": ["is there this knob ?", "is there the oven temperature ?"], "prompt": "this knob controls the {} temperature"}, {"index": 86, "image_id": 2367766, "entity": "oven", "caption": "The dials on the bottom oven", "question": ["are there the dials ?", "is there the bottom oven ?"], "prompt": "The dials on the bottom {}"}, {"index": 87, "image_id": 2367766, "entity": "oven", "caption": "Wire connected from oven", "question": ["is there wire ?", "is there oven ?"], "prompt": "Wire connected from {}"}, {"index": 88, "image_id": 2367325, "entity": "oven", "caption": "Cookies baking in the oven.", "question": ["are there cookies ?", "is there the oven ?"], "prompt": "Cookies baking in the {}."}, {"index": 89, "image_id": 2366664, "entity": "oven", "caption": "woman taking turkey out of oven ", "question": ["is there woman ?", "is there turkey ?", "is there oven ?"], "prompt": "woman taking turkey out of {} "}, {"index": 90, "image_id": 2366598, "entity": "oven", "caption": "The toaster oven on the counter.", "question": ["is there the toaster oven ?", "is there the counter ?"], "prompt": "The toaster {} on the counter."}, {"index": 91, "image_id": 2365736, "entity": "oven", "caption": "oven door is white", "question": ["is there oven door ?"], "prompt": "{} door is white"}, {"index": 92, "image_id": 2365568, "entity": "oven", "caption": "man taking pizza from oven", "question": ["is there man ?", "is there pizza ?", "is there oven ?"], "prompt": "man taking pizza from {}"}, {"index": 93, "image_id": 2365568, "entity": "oven", "caption": "man in cap looking into dark oven", "question": ["is there man ?", "is there cap ?", "is there dark oven ?"], "prompt": "man in cap looking into dark {}"}, {"index": 94, "image_id": 2365178, "entity": "oven", "caption": "bread is in the oven ", "question": ["is there bread ?", "is there the oven ?"], "prompt": "bread is in the {} "}, {"index": 95, "image_id": 2364974, "entity": "oven", "caption": "The pizza oven is in the kitchen ", "question": ["is there the pizza oven ?", "is there the kitchen ?"], "prompt": "The pizza {} is in the kitchen "}, {"index": 96, "image_id": 2364974, "entity": "oven", "caption": "the girl is taking the pizza out of the oven", "question": ["is there the girl ?", "is there the pizza ?", "is there the oven ?"], "prompt": "the girl is taking the pizza out of the {}"}, {"index": 97, "image_id": 2364729, "entity": "oven", "caption": "white crane looking inside kitchen oven", "question": ["is there white crane ?", "is there kitchen oven ?"], "prompt": "white crane looking inside kitchen {}"}, {"index": 98, "image_id": 2363855, "entity": "oven", "caption": "the dishwasher is next to the oven", "question": ["is there the dishwasher ?", "is there the oven ?"], "prompt": "the dishwasher is next to the {}"}, {"index": 99, "image_id": 2363855, "entity": "oven", "caption": "drawers are next to the oven", "question": ["are there drawers ?", "is there the oven ?"], "prompt": "drawers are next to the {}"}, {"index": 100, "image_id": 2363447, "entity": "oven", "caption": "the burner of a toy oven", "question": ["is there the burner ?", "is there a toy oven ?"], "prompt": "the burner of a toy {}"}, {"index": 101, "image_id": 2363269, "entity": "oven", "caption": "the woman is placing a dish in the oven", "question": ["is there the woman ?", "is there a dish ?", "is there the oven ?"], "prompt": "the woman is placing a dish in the {}"}, {"index": 102, "image_id": 2363269, "entity": "oven", "caption": "two oven racks are in the oven", "question": ["are there two oven racks ?", "is there the oven ?"], "prompt": "two {} racks are in the {}"}, {"index": 103, "image_id": 2363269, "entity": "oven", "caption": "white tile is behind he oven range", "question": ["is there white tile ?", "is there oven ?"], "prompt": "white tile is behind he {} range"}, {"index": 104, "image_id": 2363269, "entity": "oven", "caption": "The woman is using the oven ", "question": ["is there the woman ?", "is there the oven ?"], "prompt": "The woman is using the {} "}, {"index": 105, "image_id": 2362287, "entity": "oven", "caption": "Cook reignites the fire inside the oven", "question": ["is there the fire ?", "is there the oven ?"], "prompt": "Cook reignites the fire inside the {}"}, {"index": 106, "image_id": 2360092, "entity": "oven", "caption": "the woman standing near the oven", "question": ["is there the woman ?", "is there the oven ?"], "prompt": "the woman standing near the {}"}, {"index": 107, "image_id": 2359356, "entity": "oven", "caption": "the light in the oven is on", "question": ["is there the light ?", "is there the oven ?"], "prompt": "the light in the {} is on"}, {"index": 108, "image_id": 2357909, "entity": "oven", "caption": "man placing a turkey into the oven", "question": ["is there man ?", "is there a turkey ?", "is there the oven ?"], "prompt": "man placing a turkey into the {}"}, {"index": 109, "image_id": 2357909, "entity": "oven", "caption": "turkey goes in the oven", "question": ["is there the oven ?"], "prompt": "turkey goes in the {}"}, {"index": 110, "image_id": 2357852, "entity": "oven", "caption": "man`s head is in the oven", "question": ["is there man`s head ?", "is there the oven ?"], "prompt": "man`s head is in the {}"}, {"index": 111, "image_id": 2357852, "entity": "oven", "caption": "boy sticking his head in the oven", "question": ["is there boy ?", "is there his head ?", "is there the oven ?"], "prompt": "boy sticking his head in the {}"}, {"index": 112, "image_id": 2355956, "entity": "oven", "caption": "A light on a bakers oven", "question": ["is there a light ?", "are there a bakers oven ?"], "prompt": "A light on a bakers {}"}, {"index": 113, "image_id": 2355956, "entity": "oven", "caption": "Cook placing hands on oven", "question": ["are there hands ?", "is there oven ?"], "prompt": "Cook placing hands on {}"}, {"index": 114, "image_id": 2355720, "entity": "oven", "caption": "the door of a GE brand oven", "question": ["is there the door ?", "is there a ge brand oven ?"], "prompt": "the door of a GE brand {}"}, {"index": 115, "image_id": 2351848, "entity": "oven", "caption": "the rack is in the oven", "question": ["is there the rack ?", "is there the oven ?"], "prompt": "the rack is in the {}"}, {"index": 116, "image_id": 2350263, "entity": "oven", "caption": "Stainless steel oven inside of a residential kitchen.", "question": ["is there stainless steel oven ?", "is there a residential kitchen ?"], "prompt": "Stainless steel {} inside of a residential kitchen."}, {"index": 117, "image_id": 2349899, "entity": "oven", "caption": "drawer below oven slightly open", "question": ["is there drawer ?", "is there oven ?"], "prompt": "drawer below {} slightly open"}, {"index": 118, "image_id": 2349899, "entity": "oven", "caption": "Light colored oven with the light on inside", "question": ["is there light colored oven ?", "is there the light ?"], "prompt": "Light colored {} with the light on inside"}, {"index": 119, "image_id": 2349899, "entity": "oven", "caption": "sugar cookies baking in an oven", "question": ["are there sugar cookies ?", "is there an oven ?"], "prompt": "sugar cookies baking in an {}"}, {"index": 120, "image_id": 2349595, "entity": "oven", "caption": "wall mounted microwave oven", "question": ["is there microwave oven ?"], "prompt": "wall mounted microwave {}"}, {"index": 121, "image_id": 2349595, "entity": "oven", "caption": "silver colored oven door", "question": ["is there silver colored oven door ?"], "prompt": "silver colored {} door"}, {"index": 122, "image_id": 2348141, "entity": "oven", "caption": "a man bent over a oven", "question": ["is there a man ?", "is there a oven ?"], "prompt": "a man bent over a {}"}, {"index": 123, "image_id": 2346818, "entity": "oven", "caption": "Twelve cups are inside the oven.", "question": ["are there twelve cups ?", "is there the oven ?"], "prompt": "Twelve cups are inside the {}."}, {"index": 124, "image_id": 2346321, "entity": "oven", "caption": "The pans are on an oven. ", "question": ["are there the pans ?", "is there an oven ?"], "prompt": "The pans are on an {}. "}, {"index": 125, "image_id": 2346152, "entity": "oven", "caption": "Food coming out of the oven ", "question": ["is there food ?", "is there the oven ?"], "prompt": "Food coming out of the {} "}, {"index": 126, "image_id": 2345305, "entity": "oven", "caption": "a window is on the oven", "question": ["is there a window ?", "is there the oven ?"], "prompt": "a window is on the {}"}, {"index": 127, "image_id": 2344505, "entity": "oven", "caption": "The oven has five knobs. ", "question": ["is there the oven ?", "are there five knobs ?"], "prompt": "The {} has five knobs. "}, {"index": 128, "image_id": 2344505, "entity": "oven", "caption": "Tin foil is next to the oven. ", "question": ["is there tin foil ?", "is there the oven ?"], "prompt": "Tin foil is next to the {}. "}, {"index": 129, "image_id": 2344505, "entity": "oven", "caption": "Towel hanging off of oven", "question": ["is there towel ?", "is there oven ?"], "prompt": "Towel hanging off of {}"}, {"index": 130, "image_id": 2344141, "entity": "oven", "caption": "the chicken is in an oven", "question": ["is there the chicken ?", "is there an oven ?"], "prompt": "the chicken is in an {}"}, {"index": 131, "image_id": 2343463, "entity": "oven", "caption": "The oven door is open.", "question": ["is there the oven door ?"], "prompt": "The {} door is open."}, {"index": 132, "image_id": 2342458, "entity": "oven", "caption": "Brownies baking in the oven", "question": ["are there brownies ?", "is there the oven ?"], "prompt": "Brownies baking in the {}"}, {"index": 133, "image_id": 2342097, "entity": "oven", "caption": "pizza is in the oven", "question": ["is there pizza ?", "is there the oven ?"], "prompt": "pizza is in the {}"}, {"index": 134, "image_id": 2342097, "entity": "oven", "caption": "the heater on the oven is on", "question": ["is there the heater ?", "is there the oven ?"], "prompt": "the heater on the {} is on"}, {"index": 135, "image_id": 2340606, "entity": "oven", "caption": "Woman reaches into hot oven to remove filled baking dish", "question": ["is there woman ?", "is there hot oven ?", "is there filled baking dish ?"], "prompt": "Woman reaches into hot {} to remove filled baking dish"}, {"index": 136, "image_id": 2340606, "entity": "oven", "caption": "Woman safely and carefully removes the dish from the hot oven", "question": ["is there woman ?", "is there the dish ?", "is there the hot oven ?"], "prompt": "Woman safely and carefully removes the dish from the hot {}"}, {"index": 137, "image_id": 2340606, "entity": "oven", "caption": "Woman fully extends her arms to remove the dish from the oven", "question": ["is there woman ?", "are there her arms ?", "is there the dish ?", "is there the oven ?"], "prompt": "Woman fully extends her arms to remove the dish from the {}"}, {"index": 138, "image_id": 2340480, "entity": "oven", "caption": "A pizza goes in to the oven. ", "question": ["is there a pizza ?", "is there the oven ?"], "prompt": "A pizza goes in to the {}. "}, {"index": 139, "image_id": 2340226, "entity": "oven", "caption": "White wall behind the toaster oven", "question": ["is there the toaster oven ?"], "prompt": "White wall behind the toaster {}"}, {"index": 140, "image_id": 2339594, "entity": "oven", "caption": "Bottom drawer of oven slightly open", "question": ["is there bottom drawer ?", "is there oven ?"], "prompt": "Bottom drawer of {} slightly open"}, {"index": 141, "image_id": 2339448, "entity": "oven", "caption": "this is a knob on the oven", "question": ["is there a knob ?", "is there the oven ?"], "prompt": "this is a knob on the {}"}, {"index": 142, "image_id": 2339358, "entity": "oven", "caption": "Turkey baking in the oven.", "question": ["is there turkey baking ?", "is there the oven ?"], "prompt": "Turkey baking in the {}."}, {"index": 143, "image_id": 2338276, "entity": "oven", "caption": "racks of oven that hold food", "question": ["are there racks ?", "is there oven ?", "is there food ?"], "prompt": "racks of {} that hold food"}, {"index": 144, "image_id": 2338276, "entity": "oven", "caption": "light is on in oven", "question": ["is there light ?", "is there oven ?"], "prompt": "light is on in {}"}, {"index": 145, "image_id": 2338276, "entity": "oven", "caption": "light is in the oven ", "question": ["is there light ?", "is there the oven ?"], "prompt": "light is in the {} "}, {"index": 146, "image_id": 2338276, "entity": "oven", "caption": "sticker is on the oven", "question": ["is there sticker ?", "is there the oven ?"], "prompt": "sticker is on the {}"}, {"index": 147, "image_id": 2337681, "entity": "oven", "caption": "cookie sheet in teh oven", "question": ["is there cookie sheet ?", "is there teh oven ?"], "prompt": "cookie sheet in teh {}"}, {"index": 148, "image_id": 2337271, "entity": "oven", "caption": "Bread dough cooking in the oven.", "question": ["is there bread dough ?", "is there the oven ?"], "prompt": "Bread dough cooking in the {}."}, {"index": 149, "image_id": 2337271, "entity": "oven", "caption": "man is getting bread from oven", "question": ["is there man ?", "is there bread ?", "is there oven ?"], "prompt": "man is getting bread from {}"}, {"index": 150, "image_id": 2337271, "entity": "oven", "caption": "this is an oven", "question": ["is there an oven ?"], "prompt": "this is an {}"}, {"index": 151, "image_id": 2336351, "entity": "oven", "caption": "pizza oven behind the man", "question": ["is there pizza oven ?", "is there the man ?"], "prompt": "pizza {} behind the man"}, {"index": 152, "image_id": 2331964, "entity": "oven", "caption": "oven has three seperate racks", "question": ["is there oven ?", "are there three seperate racks ?"], "prompt": "{} has three seperate racks"}, {"index": 153, "image_id": 2331331, "entity": "oven", "caption": "Handle on oven is black", "question": ["is there oven ?"], "prompt": "Handle on {} is black"}, {"index": 154, "image_id": 2330918, "entity": "oven", "caption": "the ovens displayed are for sale", "question": ["are there the ovens ?", "is there sale ?"], "prompt": "the {}s displayed are for sale"}, {"index": 155, "image_id": 2330918, "entity": "oven", "caption": "the ovens price tag is hanging on the front of the oven", "question": ["are there the ovens price tag ?", "is there the front ?", "is there the oven ?"], "prompt": "the {}s price tag is hanging on the front of the {}"}, {"index": 156, "image_id": 2330918, "entity": "oven", "caption": "the oven has a digital face", "question": ["is there the oven ?", "is there a digital face ?"], "prompt": "the {} has a digital face"}, {"index": 157, "image_id": 2330511, "entity": "oven", "caption": "oven has a nice fan", "question": ["is there oven ?", "is there a nice fan ?"], "prompt": "{} has a nice fan"}, {"index": 158, "image_id": 2330057, "entity": "oven", "caption": "cupcakes in toaster oven", "question": ["are there cupcakes ?", "is there toaster oven ?"], "prompt": "cupcakes in toaster {}"}, {"index": 159, "image_id": 2330057, "entity": "oven", "caption": "Silver knobs on the toaster oven.", "question": ["are there silver knobs ?", "is there the toaster oven ?"], "prompt": "Silver knobs on the toaster {}."}, {"index": 160, "image_id": 2328976, "entity": "oven", "caption": "dishtowel is on the oven", "question": ["is there the oven ?"], "prompt": "dishtowel is on the {}"}, {"index": 161, "image_id": 2328564, "entity": "oven", "caption": "Counter the oven is sitting on", "question": ["is there the oven ?"], "prompt": "Counter the {} is sitting on"}, {"index": 162, "image_id": 2327242, "entity": "oven", "caption": "the fridge is next to th ee oven", "question": ["is there the fridge ?", "is there th ee oven ?"], "prompt": "the fridge is next to th ee {}"}, {"index": 163, "image_id": 2326823, "entity": "oven", "caption": "pizza is in the oven ", "question": ["is there pizza ?", "is there the oven ?"], "prompt": "pizza is in the {} "}, {"index": 164, "image_id": 2326471, "entity": "oven", "caption": "Silver toaster oven", "question": ["is there silver toaster oven ?"], "prompt": "Silver toaster {}"}, {"index": 165, "image_id": 2326471, "entity": "oven", "caption": "Black leg of a toaster oven", "question": ["is there black leg ?", "is there a toaster oven ?"], "prompt": "Black leg of a toaster {}"}, {"index": 166, "image_id": 2326471, "entity": "oven", "caption": "Metal handle of a toaster oven", "question": ["is there metal handle ?", "is there a toaster oven ?"], "prompt": "Metal handle of a toaster {}"}, {"index": 167, "image_id": 2326471, "entity": "oven", "caption": "two black dials on a toaster oven", "question": ["are there two black dials ?", "is there a toaster oven ?"], "prompt": "two black dials on a toaster {}"}, {"index": 168, "image_id": 2325300, "entity": "oven", "caption": "hand is in the oven", "question": ["is there hand ?", "is there the oven ?"], "prompt": "hand is in the {}"}, {"index": 169, "image_id": 2325300, "entity": "oven", "caption": "knobs that control the oven", "question": ["are there knobs ?", "is there the oven ?"], "prompt": "knobs that control the {}"}, {"index": 170, "image_id": 2324366, "entity": "oven", "caption": "the drawer sits underneath the oven", "question": ["is there the drawer ?", "is there the oven ?"], "prompt": "the drawer sits underneath the {}"}, {"index": 171, "image_id": 2324366, "entity": "oven", "caption": "the oven has two racks", "question": ["is there the oven ?", "are there two racks ?"], "prompt": "the {} has two racks"}, {"index": 172, "image_id": 2322327, "entity": "oven", "caption": "it's dead, it's in the oven", "question": ["is there the oven ?"], "prompt": "it's dead, it's in the {}"}, {"index": 173, "image_id": 2322327, "entity": "oven", "caption": "The oven light is shining.", "question": ["is there the oven light ?"], "prompt": "The {} light is shining."}, {"index": 174, "image_id": 2320937, "entity": "oven", "caption": "woman looking into an oven", "question": ["is there woman ?", "is there an oven ?"], "prompt": "woman looking into an {}"}, {"index": 175, "image_id": 2320937, "entity": "oven", "caption": "The food is in the oven. ", "question": ["is there the food ?", "is there the oven ?"], "prompt": "The food is in the {}. "}, {"index": 176, "image_id": 2320622, "entity": "oven", "caption": "steel oven with four knobs", "question": ["is there steel oven ?", "are there four knobs ?"], "prompt": "steel {} with four knobs"}, {"index": 177, "image_id": 2320622, "entity": "oven", "caption": "letters on sign behind the steel oven", "question": ["are there letters ?", "is there sign ?", "is there the steel oven ?"], "prompt": "letters on sign behind the steel {}"}, {"index": 178, "image_id": 2320622, "entity": "oven", "caption": "steel oven with people reflections on it", "question": ["is there steel oven ?", "are there people ?"], "prompt": "steel {} with people reflections on it"}, {"index": 179, "image_id": 2320622, "entity": "oven", "caption": "steel oven with an opened small door", "question": ["is there steel oven ?", "is there an opened small door ?"], "prompt": "steel {} with an opened small door"}, {"index": 180, "image_id": 2320622, "entity": "oven", "caption": "The control knobs of a stainless steel oven", "question": ["are there the control knobs ?", "is there a stainless steel oven ?"], "prompt": "The control knobs of a stainless steel {}"}, {"index": 181, "image_id": 2320622, "entity": "oven", "caption": "Indicator lights on the front of an oven", "question": ["are there indicator lights ?", "is there the front ?", "is there an oven ?"], "prompt": "Indicator lights on the front of an {}"}, {"index": 182, "image_id": 2320622, "entity": "oven", "caption": "A shiny silver long handle to open the oven.", "question": ["is there a shiny silver long handle ?", "is there the oven ?"], "prompt": "A shiny silver long handle to open the {}."}, {"index": 183, "image_id": 2320463, "entity": "oven", "caption": "Man adjusting pizza in oven", "question": ["is there man ?", "is there pizza ?", "is there oven ?"], "prompt": "Man adjusting pizza in {}"}, {"index": 184, "image_id": 2320366, "entity": "oven", "caption": "white oven built into the wall", "question": ["is there white oven ?", "is there the wall ?"], "prompt": "white {} built into the wall"}, {"index": 185, "image_id": 2318842, "entity": "oven", "caption": "the stovetop grills on the oven", "question": ["are there the stovetop grills ?", "is there the oven ?"], "prompt": "the stovetop grills on the {}"}, {"index": 186, "image_id": 2317593, "entity": "oven", "caption": "This is the oven", "question": ["is there the oven ?"], "prompt": "This is the {}"}, {"index": 187, "image_id": 2317593, "entity": "oven", "caption": "the oven has many knobs ", "question": ["is there the oven ?", "are there many knobs ?"], "prompt": "the {} has many knobs "}, {"index": 188, "image_id": 2317379, "entity": "oven", "caption": "knobs on front the oven", "question": ["are there knobs ?", "is there the oven ?"], "prompt": "knobs on front the {}"}, {"index": 189, "image_id": 2413047, "entity": "oven", "caption": "the oven has a white exterior", "question": ["is there the oven ?", "is there a white exterior ?"], "prompt": "the {} has a white exterior"}, {"index": 190, "image_id": 2413047, "entity": "oven", "caption": "the oven has a black interior", "question": ["is there the oven ?", "is there a black interior ?"], "prompt": "the {} has a black interior"}, {"index": 191, "image_id": 2413047, "entity": "oven", "caption": "the oven has grills", "question": ["is there the oven ?", "are there grills ?"], "prompt": "the {} has grills"}, {"index": 192, "image_id": 2411917, "entity": "oven", "caption": "Stove has an oven", "question": ["is there stove ?", "is there an oven ?"], "prompt": "Stove has an {}"}, {"index": 193, "image_id": 2411574, "entity": "oven", "caption": "Door handle for oven with black corners", "question": ["is there door ?", "is there oven ?", "are there black corners ?"], "prompt": "Door handle for {} with black corners"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03344393.json b/data/imagenet/compositions/prompts/n03344393.json
new file mode 100644
index 0000000000000000000000000000000000000000..1091d72597600d36f049b579bcd37e9d0ad4df2a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03344393.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 815, "entity": "boat", "caption": "The boat has windows", "question": ["is there the boat ?", "are there windows ?"], "prompt": "The {} has windows"}, {"index": 1, "image_id": 1883, "entity": "boat", "caption": "The boat has empty seats.", "question": ["is there the boat ?", "are there empty seats ?"], "prompt": "The {} has empty seats."}, {"index": 2, "image_id": 1902, "entity": "boat", "caption": "woman with blue shirt standing on boat", "question": ["is there woman ?", "is there blue shirt ?", "is there boat ?"], "prompt": "woman with blue shirt standing on {}"}, {"index": 3, "image_id": 1904, "entity": "boat", "caption": "black letters and numbers painted on a boat", "question": ["are there black letters ?", "are there numbers ?", "is there a boat ?"], "prompt": "black letters and numbers painted on a {}"}, {"index": 4, "image_id": 2562, "entity": "boat", "caption": "white person is on a boat", "question": ["is there white person ?", "is there a boat ?"], "prompt": "white person is on a {}"}, {"index": 5, "image_id": 2562, "entity": "boat", "caption": "Life preserver on the boat", "question": ["is there life preserver ?", "is there the boat ?"], "prompt": "Life preserver on the {}"}, {"index": 6, "image_id": 4245, "entity": "boat", "caption": "white boat parked in the dock ", "question": ["is there white boat ?", "is there the dock ?"], "prompt": "white {} parked in the dock "}, {"index": 7, "image_id": 4245, "entity": "boat", "caption": "boat is tired to the pier", "question": ["is there boat ?", "is there the pier ?"], "prompt": "{} is tired to the pier"}, {"index": 8, "image_id": 4990, "entity": "boat", "caption": "personal floating device on the sailboats transom", "question": ["is there personal floating device ?", "are there the sailboats ?"], "prompt": "personal floating device on the sail{}s transom"}, {"index": 9, "image_id": 61552, "entity": "boat", "caption": "A man in a hat is on a small boat in the water", "question": ["is there a man ?", "is there a hat ?", "is there a small boat ?", "is there the water ?"], "prompt": "A man in a hat is on a small {} in the water"}, {"index": 10, "image_id": 61588, "entity": "boat", "caption": "blue letters painted on a boat", "question": ["are there blue letters ?", "is there a boat ?"], "prompt": "blue letters painted on a {}"}, {"index": 11, "image_id": 285605, "entity": "boat", "caption": "bottom of boat is blue in color", "question": ["is there bottom ?", "is there boat ?", "is there color ?"], "prompt": "bottom of {} is blue in color"}, {"index": 12, "image_id": 498166, "entity": "boat", "caption": "People rowing a boat", "question": ["are there people ?", "is there a boat ?"], "prompt": "People rowing a {}"}, {"index": 13, "image_id": 498166, "entity": "boat", "caption": "the boats have canopies", "question": ["are there the boats ?", "are there canopies ?"], "prompt": "the {}s have canopies"}, {"index": 14, "image_id": 498267, "entity": "boat", "caption": "the white buoy hanging off the boat", "question": ["is there the white buoy ?", "is there the boat ?"], "prompt": "the white buoy hanging off the {}"}, {"index": 15, "image_id": 498267, "entity": "boat", "caption": "The boat is in the water.", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is in the water."}, {"index": 16, "image_id": 713061, "entity": "boat", "caption": "American flag flying on boat", "question": ["is there american flag ?", "is there boat ?"], "prompt": "American flag flying on {}"}, {"index": 17, "image_id": 713156, "entity": "boat", "caption": "boat is next to boat in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is next to {} in water"}, {"index": 18, "image_id": 713162, "entity": "boat", "caption": "large boat docked by building", "question": ["is there large boat ?"], "prompt": "large {} docked by building"}, {"index": 19, "image_id": 713162, "entity": "boat", "caption": "the boat parked next to the red house", "question": ["is there the boat ?"], "prompt": "the {} parked next to the red house"}, {"index": 20, "image_id": 713470, "entity": "boat", "caption": "boat has wooden benched", "question": ["is there boat ?"], "prompt": "{} has wooden benched"}, {"index": 21, "image_id": 713832, "entity": "boat", "caption": "words are on the boat", "question": ["are there words ?", "is there the boat ?"], "prompt": "words are on the {}"}, {"index": 22, "image_id": 713832, "entity": "boat", "caption": "boat has a pole", "question": ["is there boat ?", "is there a pole ?"], "prompt": "{} has a pole"}, {"index": 23, "image_id": 713832, "entity": "boat", "caption": "boat has a window", "question": ["is there boat ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 24, "image_id": 1159573, "entity": "boat", "caption": "blue and white boat sitting in body of water", "question": ["is there blue and white boat ?", "is there body ?", "is there water ?"], "prompt": "blue and white {} sitting in body of water"}, {"index": 25, "image_id": 1159823, "entity": "boat", "caption": "two boats side by side", "question": ["are there two boats ?", "is there side ?"], "prompt": "two {}s side by side"}, {"index": 26, "image_id": 1159823, "entity": "boat", "caption": "\"RX60\" painted on boat with black paint", "question": ["is there boat ?", "is there black paint ?"], "prompt": "\"RX60\" painted on {} with black paint"}, {"index": 27, "image_id": 1160209, "entity": "boat", "caption": "Long blue rope tied to boat.", "question": ["is there long blue rope ?", "is there boat ?"], "prompt": "Long blue rope tied to {}."}, {"index": 28, "image_id": 1160209, "entity": "boat", "caption": "brown rope tied on the boat", "question": ["is there brown rope ?", "is there the boat ?"], "prompt": "brown rope tied on the {}"}, {"index": 29, "image_id": 1592080, "entity": "boat", "caption": "the bottom of the boat is red", "question": ["is there the bottom ?", "is there the boat ?"], "prompt": "the bottom of the {} is red"}, {"index": 30, "image_id": 1592080, "entity": "boat", "caption": "the tarp on the boat is blue", "question": ["is there the tarp ?", "is there the boat ?"], "prompt": "the tarp on the {} is blue"}, {"index": 31, "image_id": 1592464, "entity": "boat", "caption": "american flag flying from the boat", "question": ["is there american flag ?", "is there the boat ?"], "prompt": "american flag flying from the {}"}, {"index": 32, "image_id": 1592464, "entity": "boat", "caption": "water the boat is on", "question": ["is there the boat ?"], "prompt": "water the {} is on"}, {"index": 33, "image_id": 1592891, "entity": "boat", "caption": "White covers on yellow boat", "question": ["are there white covers ?", "is there yellow boat ?"], "prompt": "White covers on yellow {}"}, {"index": 34, "image_id": 1592891, "entity": "boat", "caption": "the boat has fabric stripe", "question": ["is there the boat ?", "is there fabric stripe ?"], "prompt": "the {} has fabric stripe"}, {"index": 35, "image_id": 1592892, "entity": "boat", "caption": "the man is on a boat", "question": ["is there the man ?", "is there a boat ?"], "prompt": "the man is on a {}"}, {"index": 36, "image_id": 1592892, "entity": "boat", "caption": "Man working on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man working on a {}"}, {"index": 37, "image_id": 1592951, "entity": "boat", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The truck on the {} is blue in color."}, {"index": 38, "image_id": 2414926, "entity": "boat", "caption": "The boat is in the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 39, "image_id": 2414334, "entity": "boat", "caption": "Large boat docked on water.", "question": ["is there large boat ?", "is there water ?"], "prompt": "Large {} docked on water."}, {"index": 40, "image_id": 2413907, "entity": "boat", "caption": "Man standing on a boat holding a hot dog.", "question": ["is there man ?", "is there a boat ?", "is there a hot dog ?"], "prompt": "Man standing on a {} holding a hot dog."}, {"index": 41, "image_id": 2413848, "entity": "boat", "caption": "boat has chinese letters", "question": ["is there boat ?", "are there chinese letters ?"], "prompt": "{} has chinese letters"}, {"index": 42, "image_id": 2413848, "entity": "boat", "caption": "boat has yellow floaters on the side", "question": ["is there boat ?", "are there yellow floaters ?", "is there the side ?"], "prompt": "{} has yellow floaters on the side"}, {"index": 43, "image_id": 2413848, "entity": "boat", "caption": "boat has orange bouys", "question": ["is there boat ?", "are there orange bouys ?"], "prompt": "{} has orange bouys"}, {"index": 44, "image_id": 2413848, "entity": "boat", "caption": "the inside of the boat is green", "question": ["is there the inside ?", "is there the boat ?"], "prompt": "the inside of the {} is green"}, {"index": 45, "image_id": 2413848, "entity": "boat", "caption": "wooden boat dock", "question": ["is there wooden boat ?"], "prompt": "wooden {} dock"}, {"index": 46, "image_id": 2413848, "entity": "boat", "caption": "the boat is at the dock", "question": ["is there the boat ?", "is there the dock ?"], "prompt": "the {} is at the dock"}, {"index": 47, "image_id": 2413564, "entity": "boat", "caption": "an orange life saver hangs on the boat", "question": ["is there an orange life saver ?", "is there the boat ?"], "prompt": "an orange life saver hangs on the {}"}, {"index": 48, "image_id": 2413564, "entity": "boat", "caption": "the boat in the front has a tall mast", "question": ["is there the boat ?", "is there the front ?", "is there a tall mast ?"], "prompt": "the {} in the front has a tall mast"}, {"index": 49, "image_id": 2413564, "entity": "boat", "caption": "the boats are on the bay", "question": ["are there the boats ?", "is there the bay ?"], "prompt": "the {}s are on the bay"}, {"index": 50, "image_id": 2412218, "entity": "boat", "caption": "a boat is in the photo", "question": ["is there a boat ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 51, "image_id": 2412218, "entity": "boat", "caption": "the boat is red with designs", "question": ["is there the boat ?", "are there designs ?"], "prompt": "the {} is red with designs"}, {"index": 52, "image_id": 2412218, "entity": "boat", "caption": "the boat is on the shore", "question": ["is there the boat ?", "is there the shore ?"], "prompt": "the {} is on the shore"}, {"index": 53, "image_id": 2412218, "entity": "boat", "caption": "the boat has a star of david", "question": ["is there the boat ?", "is there a star ?"], "prompt": "the {} has a star of david"}, {"index": 54, "image_id": 2412218, "entity": "boat", "caption": "the boat has a heart ", "question": ["is there the boat ?", "is there a heart ?"], "prompt": "the {} has a heart "}, {"index": 55, "image_id": 2412218, "entity": "boat", "caption": "the boat has a cloud design", "question": ["is there the boat ?", "is there a cloud design ?"], "prompt": "the {} has a cloud design"}, {"index": 56, "image_id": 2412218, "entity": "boat", "caption": "heart shapes window in side of boat", "question": ["is there heart ?", "is there side ?", "is there boat ?"], "prompt": "heart shapes window in side of {}"}, {"index": 57, "image_id": 2411489, "entity": "boat", "caption": "boat docked at pier", "question": ["is there boat ?", "is there pier ?"], "prompt": "{} docked at pier"}, {"index": 58, "image_id": 2411204, "entity": "boat", "caption": "An enormous amount of water on which people ride boats.", "question": ["is there an enormous amount ?", "is there water ?", "are there people ?", "are there boats ?"], "prompt": "An enormous amount of water on which people ride {}s."}, {"index": 59, "image_id": 2410909, "entity": "boat", "caption": "Two people sit on a boat", "question": ["are there two people ?", "is there a boat ?"], "prompt": "Two people sit on a {}"}, {"index": 60, "image_id": 2410909, "entity": "boat", "caption": "A person is steering the boat with the rudder", "question": ["is there a person ?", "is there the boat ?", "is there the rudder ?"], "prompt": "A person is steering the {} with the rudder"}, {"index": 61, "image_id": 2410850, "entity": "boat", "caption": "a sniper rifle anchored to the boat", "question": ["is there a sniper rifle ?", "is there the boat ?"], "prompt": "a sniper rifle anchored to the {}"}, {"index": 62, "image_id": 2410850, "entity": "boat", "caption": "U.S. Coast Guard painted on boat", "question": ["is there boat ?"], "prompt": "U.S. Coast Guard painted on {}"}, {"index": 63, "image_id": 2410850, "entity": "boat", "caption": "Honda outboard boat motor", "question": [], "prompt": "Honda outboard {} motor"}, {"index": 64, "image_id": 2410846, "entity": "boat", "caption": "life preserver mounted to side of boat", "question": ["is there life preserver ?", "is there side ?", "is there boat ?"], "prompt": "life preserver mounted to side of {}"}, {"index": 65, "image_id": 2410846, "entity": "boat", "caption": "Life saving ring on the boat", "question": ["is there life saving ring ?", "is there the boat ?"], "prompt": "Life saving ring on the {}"}, {"index": 66, "image_id": 2409599, "entity": "boat", "caption": "Several boats are in the water. ", "question": ["are there several boats ?", "is there the water ?"], "prompt": "Several {}s are in the water. "}, {"index": 67, "image_id": 2409599, "entity": "boat", "caption": "The boat has several windows. ", "question": ["is there the boat ?", "are there several windows ?"], "prompt": "The {} has several windows. "}, {"index": 68, "image_id": 2409599, "entity": "boat", "caption": "A rope secures the boat to the dock.", "question": ["is there a rope ?", "is there the boat ?", "is there the dock ?"], "prompt": "A rope secures the {} to the dock."}, {"index": 69, "image_id": 2409599, "entity": "boat", "caption": "rope securing a boat to the dock", "question": ["is there rope ?", "is there a boat ?", "is there the dock ?"], "prompt": "rope securing a {} to the dock"}, {"index": 70, "image_id": 2409535, "entity": "boat", "caption": "Cables attached to larger boat", "question": ["are there cables ?", "is there larger boat ?"], "prompt": "Cables attached to larger {}"}, {"index": 71, "image_id": 2409535, "entity": "boat", "caption": "Name written on side of smaller boat", "question": ["is there name ?", "is there side ?", "is there smaller boat ?"], "prompt": "Name written on side of smaller {}"}, {"index": 72, "image_id": 2409535, "entity": "boat", "caption": "name of a boat painted on", "question": ["is there name ?", "is there a boat ?"], "prompt": "name of a {} painted on"}, {"index": 73, "image_id": 2409264, "entity": "boat", "caption": "small boy standing in a boat", "question": ["is there small boy ?", "is there a boat ?"], "prompt": "small boy standing in a {}"}, {"index": 74, "image_id": 2409264, "entity": "boat", "caption": "asian boy standing in boat", "question": ["is there asian boy ?", "is there boat ?"], "prompt": "asian boy standing in {}"}, {"index": 75, "image_id": 2409264, "entity": "boat", "caption": "person standing in boat in backgroung", "question": ["is there person ?", "is there boat ?", "is there backgroung ?"], "prompt": "person standing in {} in backgroung"}, {"index": 76, "image_id": 2408406, "entity": "boat", "caption": "hand hangs over side of boat.", "question": ["is there hand ?", "is there side ?", "is there boat ?"], "prompt": "hand hangs over side of {}."}, {"index": 77, "image_id": 2408406, "entity": "boat", "caption": "two large umbrellas covering most of boat", "question": ["are there two large umbrellas ?", "is there boat ?"], "prompt": "two large umbrellas covering most of {}"}, {"index": 78, "image_id": 2408406, "entity": "boat", "caption": "The person has their hand out of the boat", "question": ["is there the person ?", "is there their hand ?", "is there the boat ?"], "prompt": "The person has their hand out of the {}"}, {"index": 79, "image_id": 2408406, "entity": "boat", "caption": "hand of person who is riding in the boat", "question": ["is there hand ?", "is there person ?", "is there the boat ?"], "prompt": "hand of person who is riding in the {}"}, {"index": 80, "image_id": 2408406, "entity": "boat", "caption": "The food and umbrellas are on a boat. ", "question": ["is there the food ?", "are there umbrellas ?", "is there a boat ?"], "prompt": "The food and umbrellas are on a {}. "}, {"index": 81, "image_id": 2408030, "entity": "boat", "caption": "people sitting in a boat waiting", "question": ["are there people ?", "is there a boat ?"], "prompt": "people sitting in a {} waiting"}, {"index": 82, "image_id": 2408030, "entity": "boat", "caption": "person climbing into or out of the boat", "question": ["is there person ?", "is there the boat ?"], "prompt": "person climbing into or out of the {}"}, {"index": 83, "image_id": 2407441, "entity": "boat", "caption": "Man standing on a boat. ", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man standing on a {}. "}, {"index": 84, "image_id": 2407441, "entity": "boat", "caption": "wooden boat with woman standing", "question": ["is there wooden boat ?", "is there woman ?"], "prompt": "wooden {} with woman standing"}, {"index": 85, "image_id": 2406902, "entity": "boat", "caption": "Orange life preserver on a white boat.", "question": ["is there orange life preserver ?", "is there a white boat ?"], "prompt": "Orange life preserver on a white {}."}, {"index": 86, "image_id": 2405871, "entity": "boat", "caption": "a bridge goes into the boat", "question": ["is there a bridge ?", "is there the boat ?"], "prompt": "a bridge goes into the {}"}, {"index": 87, "image_id": 2405602, "entity": "boat", "caption": "small boat going out to sea", "question": ["is there small boat ?", "is there sea ?"], "prompt": "small {} going out to sea"}, {"index": 88, "image_id": 2404841, "entity": "boat", "caption": "bamboo boats parked together", "question": ["are there bamboo boats ?"], "prompt": "bamboo {}s parked together"}, {"index": 89, "image_id": 2404841, "entity": "boat", "caption": "orange life preservers are hanging from the boat chairs", "question": ["are there orange life preservers ?", "are there the boat chairs ?"], "prompt": "orange life preservers are hanging from the {} chairs"}, {"index": 90, "image_id": 2404198, "entity": "boat", "caption": "The boat has two life boats on the right side", "question": ["is there the boat ?", "are there two life boats ?", "is there the right side ?"], "prompt": "The {} has two life {}s on the right side"}, {"index": 91, "image_id": 2404184, "entity": "boat", "caption": "These people are on a boat ride", "question": ["are there these people ?", "is there a boat ride ?"], "prompt": "These people are on a {} ride"}, {"index": 92, "image_id": 2404184, "entity": "boat", "caption": "The boat is creating waves", "question": ["is there the boat ?", "are there waves ?"], "prompt": "The {} is creating waves"}, {"index": 93, "image_id": 2403899, "entity": "boat", "caption": "three people are on the boat", "question": ["are there three people ?", "is there the boat ?"], "prompt": "three people are on the {}"}, {"index": 94, "image_id": 2403899, "entity": "boat", "caption": "a flag is in the front of the boat", "question": ["is there a flag ?", "is there the front ?", "is there the boat ?"], "prompt": "a flag is in the front of the {}"}, {"index": 95, "image_id": 2403899, "entity": "boat", "caption": "the boat travels on a river", "question": ["is there the boat ?", "is there a river ?"], "prompt": "the {} travels on a river"}, {"index": 96, "image_id": 2403899, "entity": "boat", "caption": "the boat is in the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is in the water"}, {"index": 97, "image_id": 2403899, "entity": "boat", "caption": "two fishing poles stick up out of the boat", "question": ["are there two fishing poles ?", "is there the boat ?"], "prompt": "two fishing poles stick up out of the {}"}, {"index": 98, "image_id": 2403899, "entity": "boat", "caption": "the flag is on the front of the boat", "question": ["is there the flag ?", "is there the front ?", "is there the boat ?"], "prompt": "the flag is on the front of the {}"}, {"index": 99, "image_id": 2403899, "entity": "boat", "caption": "three people are in the boat", "question": ["are there three people ?", "is there the boat ?"], "prompt": "three people are in the {}"}, {"index": 100, "image_id": 2403753, "entity": "boat", "caption": "Many of the boats have masts.", "question": ["are there the boats ?", "are there masts ?"], "prompt": "Many of the {}s have masts."}, {"index": 101, "image_id": 2403753, "entity": "boat", "caption": "A rope hanging over boat.", "question": ["is there a rope ?", "is there boat ?"], "prompt": "A rope hanging over {}."}, {"index": 102, "image_id": 2403753, "entity": "boat", "caption": "Paint of the boat is coming off", "question": ["is there paint ?", "is there the boat ?"], "prompt": "Paint of the {} is coming off"}, {"index": 103, "image_id": 2403753, "entity": "boat", "caption": "Two boats anchored to the dock", "question": ["are there two boats ?", "is there the dock ?"], "prompt": "Two {}s anchored to the dock"}, {"index": 104, "image_id": 2403753, "entity": "boat", "caption": "Rope attached the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "Rope attached the {}"}, {"index": 105, "image_id": 2403712, "entity": "boat", "caption": "Person riding bike on to boat.", "question": ["is there person ?", "is there bike ?", "is there boat ?"], "prompt": "Person riding bike on to {}."}, {"index": 106, "image_id": 2403147, "entity": "boat", "caption": "Black tarp covering part of boat", "question": ["is there black tarp ?", "is there part ?", "is there boat ?"], "prompt": "Black tarp covering part of {}"}, {"index": 107, "image_id": 2403147, "entity": "boat", "caption": "rope tied to the boat.", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied to the {}."}, {"index": 108, "image_id": 2402503, "entity": "boat", "caption": "Person stepping on boat", "question": ["is there person ?", "is there boat ?"], "prompt": "Person stepping on {}"}, {"index": 109, "image_id": 2402503, "entity": "boat", "caption": "Rope lying on a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "Rope lying on a {}"}, {"index": 110, "image_id": 2402107, "entity": "boat", "caption": "two men getting things off the boat", "question": ["are there two men ?", "are there things ?", "is there the boat ?"], "prompt": "two men getting things off the {}"}, {"index": 111, "image_id": 2402107, "entity": "boat", "caption": "boat coming to pick up the people", "question": ["is there boat ?", "are there the people ?"], "prompt": "{} coming to pick up the people"}, {"index": 112, "image_id": 2402067, "entity": "boat", "caption": "The water the boat is on", "question": ["is there the water ?", "is there the boat ?"], "prompt": "The water the {} is on"}, {"index": 113, "image_id": 2401739, "entity": "boat", "caption": "Woman sitting in wood boat.", "question": ["is there woman ?", "is there wood boat ?"], "prompt": "Woman sitting in wood {}."}, {"index": 114, "image_id": 2401739, "entity": "boat", "caption": "pole is in boat", "question": ["is there pole ?", "is there boat ?"], "prompt": "pole is in {}"}, {"index": 115, "image_id": 2401739, "entity": "boat", "caption": "two boats side by side in the water", "question": ["are there two boats ?", "is there side ?", "is there the water ?"], "prompt": "two {}s side by side in the water"}, {"index": 116, "image_id": 2401211, "entity": "boat", "caption": "Man fishing in boat.", "question": ["is there man ?", "is there boat ?"], "prompt": "Man fishing in {}."}, {"index": 117, "image_id": 2400731, "entity": "boat", "caption": "water the boat is floating on ", "question": ["is there water ?", "is there the boat ?"], "prompt": "water the {} is floating on "}, {"index": 118, "image_id": 2400731, "entity": "boat", "caption": "apples that are on the boat", "question": ["are there apples ?", "is there the boat ?"], "prompt": "apples that are on the {}"}, {"index": 119, "image_id": 2400487, "entity": "boat", "caption": "red toy boat is in the water", "question": ["is there red toy boat ?", "is there the water ?"], "prompt": "red toy {} is in the water"}, {"index": 120, "image_id": 2400487, "entity": "boat", "caption": "The toy boat is in the water.", "question": ["is there the toy boat ?", "is there the water ?"], "prompt": "The toy {} is in the water."}, {"index": 121, "image_id": 2400486, "entity": "boat", "caption": "water where the boats are", "question": ["is there water ?", "are there the boats ?"], "prompt": "water where the {}s are"}, {"index": 122, "image_id": 2400240, "entity": "boat", "caption": "a lawn hair sitting near a boat.", "question": ["is there a lawn hair ?", "is there a boat ?"], "prompt": "a lawn hair sitting near a {}."}, {"index": 123, "image_id": 2400066, "entity": "boat", "caption": "Steps lead up to the boat", "question": ["are there steps ?", "is there the boat ?"], "prompt": "Steps lead up to the {}"}, {"index": 124, "image_id": 2400066, "entity": "boat", "caption": "The front of the boat has black netting", "question": ["is there the front ?", "is there the boat ?", "is there black netting ?"], "prompt": "The front of the {} has black netting"}, {"index": 125, "image_id": 2400066, "entity": "boat", "caption": "White boat docked next to the red boat", "question": ["is there white boat ?", "is there the red boat ?"], "prompt": "White {} docked next to the red {}"}, {"index": 126, "image_id": 2399658, "entity": "boat", "caption": "white metal fencing around boat", "question": ["is there white metal fencing ?", "is there boat ?"], "prompt": "white metal fencing around {}"}, {"index": 127, "image_id": 2399658, "entity": "boat", "caption": "rope attatched to a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "rope attatched to a {}"}, {"index": 128, "image_id": 2399025, "entity": "boat", "caption": "these are four people on the boat", "question": ["are there four people ?", "is there the boat ?"], "prompt": "these are four people on the {}"}, {"index": 129, "image_id": 2399025, "entity": "boat", "caption": "man standing on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man standing on a {}"}, {"index": 130, "image_id": 2398909, "entity": "boat", "caption": "man selling potatoes on a boat ", "question": ["is there man ?", "are there potatoes ?", "is there a boat ?"], "prompt": "man selling potatoes on a {} "}, {"index": 131, "image_id": 2398909, "entity": "boat", "caption": "Man is on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man is on a {}"}, {"index": 132, "image_id": 2398909, "entity": "boat", "caption": "man on boat is selling food", "question": ["is there man ?", "is there boat ?", "is there food ?"], "prompt": "man on {} is selling food"}, {"index": 133, "image_id": 2398909, "entity": "boat", "caption": "boat is on the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is on the water"}, {"index": 134, "image_id": 2398909, "entity": "boat", "caption": "boat door is open", "question": ["is there boat door ?"], "prompt": "{} door is open"}, {"index": 135, "image_id": 2398862, "entity": "boat", "caption": "this is a boat", "question": ["is there a boat ?"], "prompt": "this is a {}"}, {"index": 136, "image_id": 2398735, "entity": "boat", "caption": "The boat has wood panels.", "question": ["is there the boat ?", "are there wood panels ?"], "prompt": "The {} has wood panels."}, {"index": 137, "image_id": 2398609, "entity": "boat", "caption": "a rope tied to a boat", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "a rope tied to a {}"}, {"index": 138, "image_id": 2398396, "entity": "boat", "caption": "long green boat is on water", "question": ["is there long green boat ?", "is there water ?"], "prompt": "long green {} is on water"}, {"index": 139, "image_id": 2398396, "entity": "boat", "caption": "empty plastic bottle is in middle of boat", "question": ["is there empty plastic bottle ?", "is there middle ?", "is there boat ?"], "prompt": "empty plastic bottle is in middle of {}"}, {"index": 140, "image_id": 2398396, "entity": "boat", "caption": "Water is reflecting boat", "question": ["is there water ?", "is there boat ?"], "prompt": "Water is reflecting {}"}, {"index": 141, "image_id": 2398176, "entity": "boat", "caption": "The boat has equipment on it.", "question": ["is there the boat ?", "is there equipment ?"], "prompt": "The {} has equipment on it."}, {"index": 142, "image_id": 2398032, "entity": "boat", "caption": "The boat is on the water.", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 143, "image_id": 2398032, "entity": "boat", "caption": "The people are on the boat.", "question": ["are there the people ?", "is there the boat ?"], "prompt": "The people are on the {}."}, {"index": 144, "image_id": 2397696, "entity": "boat", "caption": "Ladder leaning against a boat.", "question": ["is there ladder ?", "is there a boat ?"], "prompt": "Ladder leaning against a {}."}, {"index": 145, "image_id": 2397163, "entity": "boat", "caption": "teddy bear sits on a boat", "question": ["is there a boat ?"], "prompt": "teddy bear sits on a {}"}, {"index": 146, "image_id": 2397163, "entity": "boat", "caption": "the teddy bear is on a boat", "question": ["is there the teddy bear ?", "is there a boat ?"], "prompt": "the teddy bear is on a {}"}, {"index": 147, "image_id": 2397163, "entity": "boat", "caption": "the boat is on the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is on the water"}, {"index": 148, "image_id": 2397042, "entity": "boat", "caption": "The top of the boat is blue.", "question": ["is there the top ?", "is there the boat ?"], "prompt": "The top of the {} is blue."}, {"index": 149, "image_id": 2396771, "entity": "boat", "caption": "The boat has long wooden planks", "question": ["is there the boat ?", "are there long wooden planks ?"], "prompt": "The {} has long wooden planks"}, {"index": 150, "image_id": 2396771, "entity": "boat", "caption": "The boat is resting on grass", "question": ["is there the boat ?", "is there grass ?"], "prompt": "The {} is resting on grass"}, {"index": 151, "image_id": 2396668, "entity": "boat", "caption": "Life preservers on top of a boat", "question": ["are there life preservers ?", "is there top ?", "is there a boat ?"], "prompt": "Life preservers on top of a {}"}, {"index": 152, "image_id": 2396583, "entity": "boat", "caption": "Man drives duck boat.", "question": ["is there man ?", "is there duck boat ?"], "prompt": "Man drives duck {}."}, {"index": 153, "image_id": 2396583, "entity": "boat", "caption": "people are sitting in duck boat", "question": ["are there people ?", "is there duck boat ?"], "prompt": "people are sitting in duck {}"}, {"index": 154, "image_id": 2395255, "entity": "boat", "caption": "letter m on boat", "question": ["is there letter ?", "is there boat ?"], "prompt": "letter m on {}"}, {"index": 155, "image_id": 2395255, "entity": "boat", "caption": "Red life preserver on a boat", "question": ["is there red life preserver ?", "is there a boat ?"], "prompt": "Red life preserver on a {}"}, {"index": 156, "image_id": 2395255, "entity": "boat", "caption": "Water splashing up in front of a boat", "question": ["is there water ?", "is there front ?", "is there a boat ?"], "prompt": "Water splashing up in front of a {}"}, {"index": 157, "image_id": 2395073, "entity": "boat", "caption": "a woman sits on a boat", "question": ["is there a woman ?", "is there a boat ?"], "prompt": "a woman sits on a {}"}, {"index": 158, "image_id": 2393753, "entity": "boat", "caption": "speed boat creating ripples in water", "question": ["is there speed boat ?", "are there ripples ?", "is there water ?"], "prompt": "speed {} creating ripples in water"}, {"index": 159, "image_id": 2393753, "entity": "boat", "caption": "light green boat cover", "question": ["is there light green boat cover ?"], "prompt": "light green {} cover"}, {"index": 160, "image_id": 2393562, "entity": "boat", "caption": "The boat has many windows", "question": ["is there the boat ?", "are there many windows ?"], "prompt": "The {} has many windows"}, {"index": 161, "image_id": 2393150, "entity": "boat", "caption": "the boat is from los angeles", "question": ["is there the boat ?"], "prompt": "the {} is from los angeles"}, {"index": 162, "image_id": 2393150, "entity": "boat", "caption": "the boat number is 17", "question": ["is there the boat number ?"], "prompt": "the {} number is 17"}, {"index": 163, "image_id": 2393150, "entity": "boat", "caption": "the boat has a cabin", "question": ["is there the boat ?", "is there a cabin ?"], "prompt": "the {} has a cabin"}, {"index": 164, "image_id": 2393150, "entity": "boat", "caption": "Where the police boat is from", "question": ["is there the police boat ?"], "prompt": "Where the police {} is from"}, {"index": 165, "image_id": 2393150, "entity": "boat", "caption": "Police officer driving the boat", "question": ["is there police officer ?", "is there the boat ?"], "prompt": "Police officer driving the {}"}, {"index": 166, "image_id": 2392895, "entity": "boat", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "dog is on a {}"}, {"index": 167, "image_id": 2391231, "entity": "boat", "caption": "gas can inside orange and white boat", "question": ["is there gas ?", "is there orange and white boat ?"], "prompt": "gas can inside orange and white {}"}, {"index": 168, "image_id": 2391099, "entity": "boat", "caption": "flag painted on the boat", "question": ["is there flag ?", "is there the boat ?"], "prompt": "flag painted on the {}"}, {"index": 169, "image_id": 2391099, "entity": "boat", "caption": "achomraich is name on side of boat", "question": ["is there name ?", "is there side ?", "is there boat ?"], "prompt": "achomraich is name on side of {}"}, {"index": 170, "image_id": 2390472, "entity": "boat", "caption": "Metal chain coming off front of boat.", "question": ["is there metal chain ?", "is there front ?", "is there boat ?"], "prompt": "Metal chain coming off front of {}."}, {"index": 171, "image_id": 2390472, "entity": "boat", "caption": "Green leaves on branches near boat.", "question": ["are there green leaves ?", "are there branches ?", "is there boat ?"], "prompt": "Green leaves on branches near {}."}, {"index": 172, "image_id": 2390472, "entity": "boat", "caption": "Boat is blue next to green boat.", "question": ["is there boat ?", "is there green boat ?"], "prompt": "Boat is blue next to green {}."}, {"index": 173, "image_id": 2388743, "entity": "boat", "caption": "a boat that has a clear window.", "question": ["is there a boat ?", "is there a clear window ?"], "prompt": "a {} that has a clear window."}, {"index": 174, "image_id": 2388725, "entity": "boat", "caption": "the yellow painted outside of a boat", "question": ["is there the yellow ?", "is there a boat ?"], "prompt": "the yellow painted outside of a {}"}, {"index": 175, "image_id": 2388588, "entity": "boat", "caption": "boat has a white stripe", "question": ["is there boat ?", "is there a white stripe ?"], "prompt": "{} has a white stripe"}, {"index": 176, "image_id": 2388588, "entity": "boat", "caption": "anchor of the boat is black", "question": ["is there anchor ?", "is there the boat ?"], "prompt": "anchor of the {} is black"}, {"index": 177, "image_id": 2388588, "entity": "boat", "caption": "people are on the boat ", "question": ["are there people ?", "is there the boat ?"], "prompt": "people are on the {} "}, {"index": 178, "image_id": 2388309, "entity": "boat", "caption": "the man is steering the boat", "question": ["is there the man ?", "is there the boat ?"], "prompt": "the man is steering the {}"}, {"index": 179, "image_id": 2388309, "entity": "boat", "caption": "blue boat rules sign", "question": ["are there blue boat rules ?"], "prompt": "blue {} rules sign"}, {"index": 180, "image_id": 2388309, "entity": "boat", "caption": "boats wake in the water", "question": ["are there boats ?", "is there the water ?"], "prompt": "{}s wake in the water"}, {"index": 181, "image_id": 2387705, "entity": "boat", "caption": "mast of a boat is wood", "question": ["is there mast ?", "is there a boat ?", "is there wood ?"], "prompt": "mast of a {} is wood"}, {"index": 182, "image_id": 2387564, "entity": "boat", "caption": "life guard is in a boat ", "question": ["is there life guard ?", "is there a boat ?"], "prompt": "life guard is in a {} "}, {"index": 183, "image_id": 2387564, "entity": "boat", "caption": "woman stands in a boat", "question": ["is there woman ?", "is there a boat ?"], "prompt": "woman stands in a {}"}, {"index": 184, "image_id": 2387146, "entity": "boat", "caption": "a man stand on a boat", "question": ["is there a man ?", "is there a boat ?"], "prompt": "a man stand on a {}"}, {"index": 185, "image_id": 2387146, "entity": "boat", "caption": "A group of red boats docked at the shore", "question": ["is there a group ?", "are there red boats ?", "is there the shore ?"], "prompt": "A group of red {}s docked at the shore"}, {"index": 186, "image_id": 2387146, "entity": "boat", "caption": "Person standing on red boat.", "question": ["is there person ?", "is there red boat ?"], "prompt": "Person standing on red {}."}, {"index": 187, "image_id": 2387146, "entity": "boat", "caption": "Red boat sitting in water.", "question": ["is there red boat ?", "is there water ?"], "prompt": "Red {} sitting in water."}, {"index": 188, "image_id": 2387137, "entity": "boat", "caption": "the woman is on a boat", "question": ["is there the woman ?", "is there a boat ?"], "prompt": "the woman is on a {}"}, {"index": 189, "image_id": 2386500, "entity": "boat", "caption": "rope tied at front of boat", "question": ["is there rope ?", "is there front ?", "is there boat ?"], "prompt": "rope tied at front of {}"}, {"index": 190, "image_id": 2385578, "entity": "boat", "caption": "Hook and chain hoist above boat.", "question": ["is there hook ?", "is there chain ?", "is there hoist ?", "is there boat ?"], "prompt": "Hook and chain hoist above {}."}, {"index": 191, "image_id": 2384997, "entity": "boat", "caption": "metal crane attached to a boat", "question": ["is there metal crane ?", "is there a boat ?"], "prompt": "metal crane attached to a {}"}, {"index": 192, "image_id": 2384997, "entity": "boat", "caption": "Tower lift on back of boat", "question": ["is there tower ?", "is there back ?", "is there boat ?"], "prompt": "Tower lift on back of {}"}, {"index": 193, "image_id": 2384727, "entity": "boat", "caption": "red and black metal boat smoke stack", "question": ["is there red and black metal boat smoke ?"], "prompt": "red and black metal {} smoke stack"}, {"index": 194, "image_id": 2384036, "entity": "boat", "caption": "The boat moving in the water causing a wave.", "question": ["is there the boat ?", "is there the water ?", "is there a wave ?"], "prompt": "The {} moving in the water causing a wave."}, {"index": 195, "image_id": 2384036, "entity": "boat", "caption": "A search light mounted on a boat", "question": ["is there a search light ?", "is there a boat ?"], "prompt": "A search light mounted on a {}"}, {"index": 196, "image_id": 2384036, "entity": "boat", "caption": "A boat mounted bull horn", "question": ["is there a boat ?", "is there bull horn ?"], "prompt": "A {} mounted bull horn"}, {"index": 197, "image_id": 2383929, "entity": "boat", "caption": "SF3-3999 writing on boat", "question": ["is there boat ?"], "prompt": "SF3-3999 writing on {}"}, {"index": 198, "image_id": 2383555, "entity": "boat", "caption": "a wooden boat oar", "question": ["is there a wooden boat ?", "is there oar ?"], "prompt": "a wooden {} oar"}, {"index": 199, "image_id": 2383462, "entity": "boat", "caption": "The boat is on land", "question": ["is there the boat ?", "is there land ?"], "prompt": "The {} is on land"}, {"index": 200, "image_id": 2383399, "entity": "boat", "caption": "water the boat is in", "question": ["is there the boat ?"], "prompt": "water the {} is in"}, {"index": 201, "image_id": 2383399, "entity": "boat", "caption": "deck of the boat the couple is on", "question": ["is there deck ?", "is there the boat ?", "is there the couple ?"], "prompt": "deck of the {} the couple is on"}, {"index": 202, "image_id": 2383399, "entity": "boat", "caption": "two people are in boat.", "question": ["are there two people ?", "is there boat ?"], "prompt": "two people are in {}."}, {"index": 203, "image_id": 2383272, "entity": "boat", "caption": "MASEN written on the boat", "question": ["is there the boat ?"], "prompt": "MASEN written on the {}"}, {"index": 204, "image_id": 2383272, "entity": "boat", "caption": "door on the boat is wood slats", "question": ["is there door ?", "is there the boat ?", "are there wood slats ?"], "prompt": "door on the {} is wood slats"}, {"index": 205, "image_id": 2382463, "entity": "boat", "caption": "The boat has two sails", "question": ["is there the boat ?", "are there two sails ?"], "prompt": "The {} has two sails"}, {"index": 206, "image_id": 2382231, "entity": "boat", "caption": "the dog is on a boat", "question": ["is there the dog ?", "is there a boat ?"], "prompt": "the dog is on a {}"}, {"index": 207, "image_id": 2382219, "entity": "boat", "caption": "the inflatable boat is red ", "question": ["is there the inflatable boat ?"], "prompt": "the inflatable {} is red "}, {"index": 208, "image_id": 2382219, "entity": "boat", "caption": "Life saving boat is red color.", "question": ["is there life saving boat ?", "is there red color ?"], "prompt": "Life saving {} is red color."}, {"index": 209, "image_id": 2382219, "entity": "boat", "caption": "The man is driving the boat", "question": ["is there the man ?", "is there the boat ?"], "prompt": "The man is driving the {}"}, {"index": 210, "image_id": 2382219, "entity": "boat", "caption": "The boat has a brown and white seat", "question": ["is there the boat ?", "is there a brown and white seat ?"], "prompt": "The {} has a brown and white seat"}, {"index": 211, "image_id": 2382102, "entity": "boat", "caption": "Person is barefoot standing on edge of boat.", "question": ["is there person ?", "is there edge ?", "is there boat ?"], "prompt": "Person is barefoot standing on edge of {}."}, {"index": 212, "image_id": 2382102, "entity": "boat", "caption": "the man is on the side of the boat", "question": ["is there the man ?", "is there the side ?", "is there the boat ?"], "prompt": "the man is on the side of the {}"}, {"index": 213, "image_id": 2381922, "entity": "boat", "caption": "the boat has a shark", "question": ["is there the boat ?", "is there a shark ?"], "prompt": "the {} has a shark"}, {"index": 214, "image_id": 2381922, "entity": "boat", "caption": "the boat has people ", "question": ["is there the boat ?", "are there people ?"], "prompt": "the {} has people "}, {"index": 215, "image_id": 2381685, "entity": "boat", "caption": "small boat tied to another boat", "question": ["is there small boat ?", "is there another boat ?"], "prompt": "small {} tied to another {}"}, {"index": 216, "image_id": 2381433, "entity": "boat", "caption": "rope hanging on a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "rope hanging on a {}"}, {"index": 217, "image_id": 2381084, "entity": "boat", "caption": "Cushions on boat are white.", "question": ["are there cushions ?", "is there boat ?"], "prompt": "Cushions on {} are white."}, {"index": 218, "image_id": 2381084, "entity": "boat", "caption": "Dog is standing on back of boat.", "question": ["is there dog ?", "is there boat ?"], "prompt": "Dog is standing on back of {}."}, {"index": 219, "image_id": 2380882, "entity": "boat", "caption": "A woman sitting on a boat reading", "question": ["is there a woman ?", "is there a boat ?"], "prompt": "A woman sitting on a {} reading"}, {"index": 220, "image_id": 2380594, "entity": "boat", "caption": "the boat has two outboard motors", "question": ["is there the boat ?", "are there two outboard motors ?"], "prompt": "the {} has two outboard motors"}, {"index": 221, "image_id": 2380594, "entity": "boat", "caption": "the boat is in the water ", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 222, "image_id": 2379791, "entity": "boat", "caption": "boats docked along the shoreline", "question": ["are there boats ?", "is there the shoreline ?"], "prompt": "{}s docked along the shoreline"}, {"index": 223, "image_id": 2379774, "entity": "boat", "caption": "the body of water the boat is in", "question": ["is there the body ?", "is there water ?", "is there the boat ?"], "prompt": "the body of water the {} is in"}, {"index": 224, "image_id": 2379714, "entity": "boat", "caption": "boats say nice on them", "question": ["are there boats ?"], "prompt": "{}s say nice on them"}, {"index": 225, "image_id": 2379714, "entity": "boat", "caption": "boat with life preserver on it", "question": ["is there boat ?", "is there life preserver ?"], "prompt": "{} with life preserver on it"}, {"index": 226, "image_id": 2379714, "entity": "boat", "caption": "nets and lines hang off boat", "question": ["are there nets ?", "are there lines ?", "is there boat ?"], "prompt": "nets and lines hang off {}"}, {"index": 227, "image_id": 2379714, "entity": "boat", "caption": "tarp covers top of boat", "question": ["is there tarp ?", "is there top ?", "is there boat ?"], "prompt": "tarp covers top of {}"}, {"index": 228, "image_id": 2379714, "entity": "boat", "caption": "man sits on boat", "question": ["is there man ?", "is there boat ?"], "prompt": "man sits on {}"}, {"index": 229, "image_id": 2379714, "entity": "boat", "caption": "man standing beside a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man standing beside a {}"}, {"index": 230, "image_id": 2379304, "entity": "boat", "caption": "a boat is in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "a {} is in the water"}, {"index": 231, "image_id": 2378904, "entity": "boat", "caption": "three boats at a boat dock", "question": ["are there three boats ?", "is there a boat dock ?"], "prompt": "three {}s at a {} dock"}, {"index": 232, "image_id": 2378904, "entity": "boat", "caption": "the boat is on a boat lift", "question": ["is there the boat ?", "is there a boat lift ?"], "prompt": "the {} is on a {} lift"}, {"index": 233, "image_id": 2378904, "entity": "boat", "caption": "blue rope attached to the boat", "question": ["is there blue rope ?", "is there the boat ?"], "prompt": "blue rope attached to the {}"}, {"index": 234, "image_id": 2378904, "entity": "boat", "caption": "boat docked on pier", "question": ["is there boat ?", "is there pier ?"], "prompt": "{} docked on pier"}, {"index": 235, "image_id": 2378460, "entity": "boat", "caption": "Row is on the boat. ", "question": ["is there row ?", "is there the boat ?"], "prompt": "Row is on the {}. "}, {"index": 236, "image_id": 2378460, "entity": "boat", "caption": "fruit laid out neatly in the closest boat", "question": ["is there fruit ?", "is there the closest boat ?"], "prompt": "fruit laid out neatly in the closest {}"}, {"index": 237, "image_id": 2378110, "entity": "boat", "caption": "rope ties boat to dock", "question": [], "prompt": "rope ties {} to dock"}, {"index": 238, "image_id": 2378110, "entity": "boat", "caption": "A banner is on the back of the boat", "question": ["is there a banner ?", "is there the back ?", "is there the boat ?"], "prompt": "A banner is on the back of the {}"}, {"index": 239, "image_id": 2378110, "entity": "boat", "caption": "Buoys are hanging off the boat", "question": ["are there buoys ?", "is there the boat ?"], "prompt": "Buoys are hanging off the {}"}, {"index": 240, "image_id": 2377887, "entity": "boat", "caption": "the emergency boats are on the ship", "question": ["are there the emergency boats ?", "is there the ship ?"], "prompt": "the emergency {}s are on the ship"}, {"index": 241, "image_id": 2377380, "entity": "boat", "caption": "ropes suspended over boats", "question": ["are there ropes ?", "are there boats ?"], "prompt": "ropes suspended over {}s"}, {"index": 242, "image_id": 2377380, "entity": "boat", "caption": "tip of boat bow", "question": ["is there tip ?", "is there boat ?"], "prompt": "tip of {} bow"}, {"index": 243, "image_id": 2377380, "entity": "boat", "caption": "a boat docked on land.", "question": ["is there a boat ?", "is there land ?"], "prompt": "a {} docked on land."}, {"index": 244, "image_id": 2377083, "entity": "boat", "caption": "Cord coming out of back of paddle boat", "question": ["is there cord ?", "is there back ?", "is there paddle boat ?"], "prompt": "Cord coming out of back of paddle {}"}, {"index": 245, "image_id": 2376246, "entity": "boat", "caption": "small red boat docked in water ", "question": ["is there small red boat ?", "is there water ?"], "prompt": "small red {} docked in water "}, {"index": 246, "image_id": 2375980, "entity": "boat", "caption": "A sign is atop the boat", "question": ["is there a sign ?", "is there the boat ?"], "prompt": "A sign is atop the {}"}, {"index": 247, "image_id": 2375980, "entity": "boat", "caption": "house boat docked on river", "question": ["is there house boat ?", "is there river ?"], "prompt": "house {} docked on river"}, {"index": 248, "image_id": 2375980, "entity": "boat", "caption": "many bikes piled onto boat", "question": ["are there many bikes ?", "is there boat ?"], "prompt": "many bikes piled onto {}"}, {"index": 249, "image_id": 2375275, "entity": "boat", "caption": "rope to secure the boat", "question": ["is there the boat ?"], "prompt": "rope to secure the {}"}, {"index": 250, "image_id": 2375275, "entity": "boat", "caption": "the blue rope attached to the boat", "question": ["is there the blue rope ?", "is there the boat ?"], "prompt": "the blue rope attached to the {}"}, {"index": 251, "image_id": 2374451, "entity": "boat", "caption": "life boat hanging on a ship", "question": ["is there life boat ?", "is there a ship ?"], "prompt": "life {} hanging on a ship"}, {"index": 252, "image_id": 2374451, "entity": "boat", "caption": "wires that hold the life boat", "question": ["are there wires ?", "is there the life boat ?"], "prompt": "wires that hold the life {}"}, {"index": 253, "image_id": 2374088, "entity": "boat", "caption": "A rope attached to a boat", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "A rope attached to a {}"}, {"index": 254, "image_id": 2373499, "entity": "boat", "caption": "team of people rowing boat", "question": ["is there team ?", "are there people ?", "is there boat ?"], "prompt": "team of people rowing {}"}, {"index": 255, "image_id": 2373351, "entity": "boat", "caption": "Woman sitting at the back of a boat wearing a light blue shirt", "question": ["is there woman ?", "is there the back ?", "is there a boat ?", "is there a light blue shirt ?"], "prompt": "Woman sitting at the back of a {} wearing a light blue shirt"}, {"index": 256, "image_id": 2373351, "entity": "boat", "caption": "Frothy wake left behind in the water as a boat travels", "question": ["is there frothy wake ?", "is there the water ?", "is there a boat ?"], "prompt": "Frothy wake left behind in the water as a {} travels"}, {"index": 257, "image_id": 2373126, "entity": "boat", "caption": "white boats parked in dock", "question": ["are there white boats ?", "is there dock ?"], "prompt": "white {}s parked in dock"}, {"index": 258, "image_id": 2372837, "entity": "boat", "caption": "a boat docked in a harbor", "question": ["is there a boat ?", "is there a harbor ?"], "prompt": "a {} docked in a harbor"}, {"index": 259, "image_id": 2372480, "entity": "boat", "caption": "A boat docked under a tunnel.", "question": ["is there a boat ?", "is there a tunnel ?"], "prompt": "A {} docked under a tunnel."}, {"index": 260, "image_id": 2372480, "entity": "boat", "caption": "boat is in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is in water"}, {"index": 261, "image_id": 2372341, "entity": "boat", "caption": "Man with red hat leaning on boat", "question": ["is there man ?", "is there red hat ?", "is there boat ?"], "prompt": "Man with red hat leaning on {}"}, {"index": 262, "image_id": 2372106, "entity": "boat", "caption": "man is standing on the back of the boat", "question": ["is there man ?", "is there the back ?", "is there the boat ?"], "prompt": "man is standing on the back of the {}"}, {"index": 263, "image_id": 2371942, "entity": "boat", "caption": "Rope tied to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "Rope tied to {}"}, {"index": 264, "image_id": 2371644, "entity": "boat", "caption": "man standing on bow of boat", "question": ["is there man ?", "is there bow ?", "is there boat ?"], "prompt": "man standing on bow of {}"}, {"index": 265, "image_id": 2371644, "entity": "boat", "caption": "man standing at the hull of a boat", "question": ["is there man ?", "is there the hull ?", "is there a boat ?"], "prompt": "man standing at the hull of a {}"}, {"index": 266, "image_id": 2371288, "entity": "boat", "caption": "The birds are following the boat.", "question": ["are there the birds ?", "is there the boat ?"], "prompt": "The birds are following the {}."}, {"index": 267, "image_id": 2371288, "entity": "boat", "caption": "The people are standing on the boat.", "question": ["are there the people ?", "is there the boat ?"], "prompt": "The people are standing on the {}."}, {"index": 268, "image_id": 2371288, "entity": "boat", "caption": "birds flying around boat", "question": ["are there birds ?"], "prompt": "birds flying around {}"}, {"index": 269, "image_id": 2371288, "entity": "boat", "caption": "birds flying around shrimpers boat", "question": ["are there birds ?", "are there shrimpers ?"], "prompt": "birds flying around shrimpers {}"}, {"index": 270, "image_id": 2371288, "entity": "boat", "caption": "three men are visible on the boat", "question": ["are there three men ?", "is there the boat ?"], "prompt": "three men are visible on the {}"}, {"index": 271, "image_id": 2371288, "entity": "boat", "caption": "the boat has caused some waves in the water", "question": ["is there the boat ?", "are there some waves ?", "is there the water ?"], "prompt": "the {} has caused some waves in the water"}, {"index": 272, "image_id": 2371137, "entity": "boat", "caption": "The name says \" MAVIS\" on boat", "question": ["is there the name ?", "is there boat ?"], "prompt": "The name says \" MAVIS\" on {}"}, {"index": 273, "image_id": 2371004, "entity": "boat", "caption": "The sailboats all have tall masts", "question": ["are there the sailboats ?", "are there tall masts ?"], "prompt": "The sail{}s all have tall masts"}, {"index": 274, "image_id": 2370993, "entity": "boat", "caption": "boat has wooden floor", "question": ["is there boat ?", "is there wooden floor ?"], "prompt": "{} has wooden floor"}, {"index": 275, "image_id": 2370335, "entity": "boat", "caption": "MAMA written on side of boat", "question": ["is there mama ?", "is there side ?", "is there boat ?"], "prompt": "MAMA written on side of {}"}, {"index": 276, "image_id": 2370335, "entity": "boat", "caption": "boat is on a trailer", "question": ["is there boat ?", "is there a trailer ?"], "prompt": "{} is on a trailer"}, {"index": 277, "image_id": 2370335, "entity": "boat", "caption": "A boat is on a trailer", "question": ["is there a boat ?", "is there a trailer ?"], "prompt": "A {} is on a trailer"}, {"index": 278, "image_id": 2370335, "entity": "boat", "caption": "The boat is at somebody's home", "question": ["is there the boat ?", "is there somebody's home ?"], "prompt": "The {} is at somebody's home"}, {"index": 279, "image_id": 2369706, "entity": "boat", "caption": "boat docked at the harbor", "question": ["is there boat ?", "is there the harbor ?"], "prompt": "{} docked at the harbor"}, {"index": 280, "image_id": 2368857, "entity": "boat", "caption": "The boats have tall sails ", "question": ["are there the boats ?", "are there tall sails ?"], "prompt": "The {}s have tall sails "}, {"index": 281, "image_id": 2368689, "entity": "boat", "caption": "TGI painted on the side of the boat", "question": ["is there the side ?", "is there the boat ?"], "prompt": "TGI painted on the side of the {}"}, {"index": 282, "image_id": 2368436, "entity": "boat", "caption": "Bananas are in a boat", "question": ["are there bananas ?", "is there a boat ?"], "prompt": "Bananas are in a {}"}, {"index": 283, "image_id": 2368415, "entity": "boat", "caption": "dog that's standing on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "dog that's standing on a {}"}, {"index": 284, "image_id": 2368415, "entity": "boat", "caption": "water that boats are sitting in", "question": ["is there water ?", "are there boats ?"], "prompt": "water that {}s are sitting in"}, {"index": 285, "image_id": 2368415, "entity": "boat", "caption": "boat brown dog is standing on", "question": ["is there boat brown dog ?"], "prompt": "{} brown dog is standing on"}, {"index": 286, "image_id": 2368415, "entity": "boat", "caption": "metal loop hanging on boat", "question": ["is there metal loop ?", "is there boat ?"], "prompt": "metal loop hanging on {}"}, {"index": 287, "image_id": 2368054, "entity": "boat", "caption": "The dog feet is on the boat.", "question": ["are there the dog feet ?", "is there the boat ?"], "prompt": "The dog feet is on the {}."}, {"index": 288, "image_id": 2368009, "entity": "boat", "caption": "rope ties boat to the dock", "question": ["are there rope ties boat ?", "is there the dock ?"], "prompt": "rope ties {} to the dock"}, {"index": 289, "image_id": 2368009, "entity": "boat", "caption": "fire extinguishers on beard a boat", "question": ["are there fire extinguishers ?", "is there a boat ?"], "prompt": "fire extinguishers on beard a {}"}, {"index": 290, "image_id": 2367819, "entity": "boat", "caption": "two people are still on the boat", "question": ["are there two people ?", "is there the boat ?"], "prompt": "two people are still on the {}"}, {"index": 291, "image_id": 2367673, "entity": "boat", "caption": "a blue boat tied to a dock", "question": ["is there a blue boat ?", "is there a dock ?"], "prompt": "a blue {} tied to a dock"}, {"index": 292, "image_id": 2367673, "entity": "boat", "caption": "a white boat tied to a dock", "question": ["is there a white boat ?", "is there a dock ?"], "prompt": "a white {} tied to a dock"}, {"index": 293, "image_id": 2367655, "entity": "boat", "caption": "Blue and white boat floating in water", "question": ["is there blue and white boat ?", "is there water ?"], "prompt": "Blue and white {} floating in water"}, {"index": 294, "image_id": 2367655, "entity": "boat", "caption": "water pouring out the back of a boat.", "question": ["is there water ?", "is there the back ?", "is there a boat ?"], "prompt": "water pouring out the back of a {}."}, {"index": 295, "image_id": 2367579, "entity": "boat", "caption": "man driving a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man driving a {}"}, {"index": 296, "image_id": 2365612, "entity": "boat", "caption": "the bike is leaning on the boat ", "question": ["is there the bike ?", "is there the boat ?"], "prompt": "the bike is leaning on the {} "}, {"index": 297, "image_id": 2365530, "entity": "boat", "caption": "The white lettering of the word WAVE on the boat. ", "question": ["is there the white lettering ?", "is there the word wave ?", "is there the boat ?"], "prompt": "The white lettering of the word WAVE on the {}. "}, {"index": 298, "image_id": 2365530, "entity": "boat", "caption": "Grey hair on a man bent over the boat. ", "question": ["is there grey hair ?", "is there a man ?", "is there the boat ?"], "prompt": "Grey hair on a man bent over the {}. "}, {"index": 299, "image_id": 2365530, "entity": "boat", "caption": "The black and white side of a boat that says NEXT WAVE", "question": ["is there the black and white side ?", "is there a boat ?"], "prompt": "The black and white side of a {} that says NEXT WAVE"}, {"index": 300, "image_id": 2365530, "entity": "boat", "caption": "The boat says \"Next wave\"", "question": ["is there the boat ?", "is there next wave ?"], "prompt": "The {} says \"Next wave\""}, {"index": 301, "image_id": 2365530, "entity": "boat", "caption": "A rolled up mast on the boat", "question": ["is there a rolled up mast ?", "is there the boat ?"], "prompt": "A rolled up mast on the {}"}, {"index": 302, "image_id": 2365310, "entity": "boat", "caption": "lorries packed near the boats", "question": ["are there lorries ?", "are there the boats ?"], "prompt": "lorries packed near the {}s"}, {"index": 303, "image_id": 2365007, "entity": "boat", "caption": "water where boats are docks", "question": ["is there water ?", "are there boats ?", "are there docks ?"], "prompt": "water where {}s are docks"}, {"index": 304, "image_id": 2364291, "entity": "boat", "caption": "the tire is on the boat", "question": ["is there the tire ?", "is there the boat ?"], "prompt": "the tire is on the {}"}, {"index": 305, "image_id": 2364078, "entity": "boat", "caption": "White chain round a boat", "question": ["is there a boat ?"], "prompt": "White chain round a {}"}, {"index": 306, "image_id": 2364078, "entity": "boat", "caption": "The sailboat has a tall mast.", "question": ["is there the sailboat ?", "is there a tall mast ?"], "prompt": "The sail{} has a tall mast."}, {"index": 307, "image_id": 2364078, "entity": "boat", "caption": "A boat is moving in the water behind the boat.", "question": ["is there a boat ?", "is there the water ?", "is there the boat ?"], "prompt": "A {} is moving in the water behind the {}."}, {"index": 308, "image_id": 2362967, "entity": "boat", "caption": "a boat tied to shore", "question": ["is there a boat ?", "is there shore ?"], "prompt": "a {} tied to shore"}, {"index": 309, "image_id": 2362967, "entity": "boat", "caption": "boat docked on river", "question": ["is there boat ?", "is there river ?"], "prompt": "{} docked on river"}, {"index": 310, "image_id": 2362967, "entity": "boat", "caption": "ther boat is white in color ", "question": ["is there ther boat ?", "is there color ?"], "prompt": "ther {} is white in color "}, {"index": 311, "image_id": 2362967, "entity": "boat", "caption": "the boat is white in color", "question": ["is there the boat ?", "is there color ?"], "prompt": "the {} is white in color"}, {"index": 312, "image_id": 2362871, "entity": "boat", "caption": "blue boat hanging on side of ship", "question": ["is there blue boat ?", "is there side ?", "is there ship ?"], "prompt": "blue {} hanging on side of ship"}, {"index": 313, "image_id": 2362329, "entity": "boat", "caption": "front end of boat opened up", "question": ["is there front end ?", "is there boat ?"], "prompt": "front end of {} opened up"}, {"index": 314, "image_id": 2362280, "entity": "boat", "caption": "name of boat painted in white", "question": ["is there name ?", "is there boat ?", "is there white ?"], "prompt": "name of {} painted in white"}, {"index": 315, "image_id": 2362280, "entity": "boat", "caption": "two black rubber tires mounted on boat", "question": ["are there two black rubber tires ?", "is there boat ?"], "prompt": "two black rubber tires mounted on {}"}, {"index": 316, "image_id": 2362246, "entity": "boat", "caption": "a river with a lot of boats docked in it", "question": ["is there a river ?", "is there a lot ?", "are there boats ?"], "prompt": "a river with a lot of {}s docked in it"}, {"index": 317, "image_id": 2362239, "entity": "boat", "caption": "Man kneeling down on boat. ", "question": ["is there man ?", "is there boat ?"], "prompt": "Man kneeling down on {}. "}, {"index": 318, "image_id": 2361892, "entity": "boat", "caption": "the lady is in a boat", "question": ["is there the lady ?", "is there a boat ?"], "prompt": "the lady is in a {}"}, {"index": 319, "image_id": 2361892, "entity": "boat", "caption": "small boat sailing on water", "question": ["is there small boat ?", "is there water ?"], "prompt": "small {} sailing on water"}, {"index": 320, "image_id": 2361742, "entity": "boat", "caption": "Rope attached to front of boat", "question": ["is there rope ?", "is there front ?", "is there boat ?"], "prompt": "Rope attached to front of {}"}, {"index": 321, "image_id": 2361562, "entity": "boat", "caption": "the cat is on the boat", "question": ["is there the cat ?", "is there the boat ?"], "prompt": "the cat is on the {}"}, {"index": 322, "image_id": 2361562, "entity": "boat", "caption": "the boat is at a port", "question": ["is there the boat ?", "is there a port ?"], "prompt": "the {} is at a port"}, {"index": 323, "image_id": 2361562, "entity": "boat", "caption": "the cat stands on the boat", "question": ["is there the cat ?", "is there the boat ?"], "prompt": "the cat stands on the {}"}, {"index": 324, "image_id": 2361562, "entity": "boat", "caption": "Cat is standing on back of boat.", "question": ["is there cat ?", "is there boat ?"], "prompt": "Cat is standing on back of {}."}, {"index": 325, "image_id": 2361562, "entity": "boat", "caption": "boat capsized in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} capsized in water"}, {"index": 326, "image_id": 2361536, "entity": "boat", "caption": "cows are near a boat", "question": ["are there cows ?", "is there a boat ?"], "prompt": "cows are near a {}"}, {"index": 327, "image_id": 2361359, "entity": "boat", "caption": "A motor is on the boat", "question": ["is there a motor ?", "is there the boat ?"], "prompt": "A motor is on the {}"}, {"index": 328, "image_id": 2359602, "entity": "boat", "caption": "A log is keeping the boat off the ground.", "question": ["is there a log ?", "is there the boat ?", "is there the ground ?"], "prompt": "A log is keeping the {} off the ground."}, {"index": 329, "image_id": 2359008, "entity": "boat", "caption": "Sail boat docked at marina.", "question": ["is there sail boat ?", "is there marina ?"], "prompt": "Sail {} docked at marina."}, {"index": 330, "image_id": 2359008, "entity": "boat", "caption": "White sail boat docked in water.", "question": ["is there white sail boat ?", "is there water ?"], "prompt": "White sail {} docked in water."}, {"index": 331, "image_id": 2358936, "entity": "boat", "caption": "a dog is on the boat", "question": ["is there a dog ?", "is there the boat ?"], "prompt": "a dog is on the {}"}, {"index": 332, "image_id": 2358604, "entity": "boat", "caption": "people are on the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "people are on the {}"}, {"index": 333, "image_id": 2357802, "entity": "boat", "caption": "The people are on a boat on a lake", "question": ["are there the people ?", "is there a boat ?", "is there a lake ?"], "prompt": "The people are on a {} on a lake"}, {"index": 334, "image_id": 2357398, "entity": "boat", "caption": "two woman walking on a boat", "question": ["is there two woman ?", "is there a boat ?"], "prompt": "two woman walking on a {}"}, {"index": 335, "image_id": 2357398, "entity": "boat", "caption": "the top of the boat is wood", "question": ["is there the top ?", "is there the boat ?", "is there wood ?"], "prompt": "the top of the {} is wood"}, {"index": 336, "image_id": 2357118, "entity": "boat", "caption": "Person sitting inside of boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person sitting inside of {}."}, {"index": 337, "image_id": 2357118, "entity": "boat", "caption": "the sun is on the boat", "question": ["is there the sun ?", "is there the boat ?"], "prompt": "the sun is on the {}"}, {"index": 338, "image_id": 2355707, "entity": "boat", "caption": "The boat has 3 windows", "question": ["is there the boat ?", "are there 3 windows ?"], "prompt": "The {} has 3 windows"}, {"index": 339, "image_id": 2355505, "entity": "boat", "caption": "Box on a boat oar", "question": ["is there a boat ?"], "prompt": "Box on a {} oar"}, {"index": 340, "image_id": 2355505, "entity": "boat", "caption": "Flag hanging from a boat.", "question": ["is there flag ?", "is there a boat ?"], "prompt": "Flag hanging from a {}."}, {"index": 341, "image_id": 2355361, "entity": "boat", "caption": "two triangle shaped white sails on sailboat", "question": ["is there two triangle ?", "are there white sails ?", "is there sailboat ?"], "prompt": "two triangle shaped white sails on sail{}"}, {"index": 342, "image_id": 2355027, "entity": "boat", "caption": "boat pulled up to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled up to dock"}, {"index": 343, "image_id": 2355027, "entity": "boat", "caption": "boat has flagpole on back", "question": ["is there boat ?", "is there flagpole ?"], "prompt": "{} has flagpole on back"}, {"index": 344, "image_id": 2355027, "entity": "boat", "caption": "flag stuck into a boat", "question": ["is there flag ?", "is there a boat ?"], "prompt": "flag stuck into a {}"}, {"index": 345, "image_id": 2354959, "entity": "boat", "caption": "green moss growing on the side of the boat", "question": ["is there green moss ?", "is there the side ?", "is there the boat ?"], "prompt": "green moss growing on the side of the {}"}, {"index": 346, "image_id": 2354939, "entity": "boat", "caption": "the sailboat is white", "question": ["is there the sailboat ?"], "prompt": "the sail{} is white"}, {"index": 347, "image_id": 2354939, "entity": "boat", "caption": "a small boat sailing", "question": ["is there a small boat ?"], "prompt": "a small {} sailing"}, {"index": 348, "image_id": 2354714, "entity": "boat", "caption": "The life preserver on the front of the boat.", "question": ["is there the life preserver ?", "is there the front ?", "is there the boat ?"], "prompt": "The life preserver on the front of the {}."}, {"index": 349, "image_id": 2354714, "entity": "boat", "caption": "this is a boat ", "question": ["is there a boat ?"], "prompt": "this is a {} "}, {"index": 350, "image_id": 2354714, "entity": "boat", "caption": "waves stirred up by white boat", "question": ["are there waves ?", "is there white boat ?"], "prompt": "waves stirred up by white {}"}, {"index": 351, "image_id": 2354714, "entity": "boat", "caption": "red and white flag waving on boat", "question": ["is there red and white flag ?", "is there boat ?"], "prompt": "red and white flag waving on {}"}, {"index": 352, "image_id": 2354714, "entity": "boat", "caption": "tan rope hanging on rail of boat", "question": ["is there rail ?", "is there boat ?"], "prompt": "tan rope hanging on rail of {}"}, {"index": 353, "image_id": 2354458, "entity": "boat", "caption": "Tire hanging from boat", "question": ["is there tire ?", "is there boat ?"], "prompt": "Tire hanging from {}"}, {"index": 354, "image_id": 2354458, "entity": "boat", "caption": "Silva Lopes is the name of boat", "question": ["are there silva lopes ?", "is there the name ?", "is there boat ?"], "prompt": "Silva Lopes is the name of {}"}, {"index": 355, "image_id": 2354402, "entity": "boat", "caption": "woman sitting on boat bow", "question": ["is there woman ?", "is there boat bow ?"], "prompt": "woman sitting on {} bow"}, {"index": 356, "image_id": 2354402, "entity": "boat", "caption": "Person is barefoot on boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person is barefoot on {}."}, {"index": 357, "image_id": 2354402, "entity": "boat", "caption": "Person sitting on boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person sitting on {}."}, {"index": 358, "image_id": 2354402, "entity": "boat", "caption": "Wood boat floating in water.", "question": ["is there wood boat ?", "is there water ?"], "prompt": "Wood {} floating in water."}, {"index": 359, "image_id": 2354178, "entity": "boat", "caption": "a flag is on the boat", "question": ["is there a flag ?", "is there the boat ?"], "prompt": "a flag is on the {}"}, {"index": 360, "image_id": 2354178, "entity": "boat", "caption": "a small boat is on the water", "question": ["is there a small boat ?", "is there the water ?"], "prompt": "a small {} is on the water"}, {"index": 361, "image_id": 2354178, "entity": "boat", "caption": "people standing close to the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "people standing close to the {}"}, {"index": 362, "image_id": 2354017, "entity": "boat", "caption": "The rolled up sail of the boat.", "question": ["is there the rolled up sail ?", "is there the boat ?"], "prompt": "The rolled up sail of the {}."}, {"index": 363, "image_id": 2353866, "entity": "boat", "caption": "boat pulled at dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled at dock"}, {"index": 364, "image_id": 2353866, "entity": "boat", "caption": "boat has overhead tent", "question": ["is there boat ?", "is there overhead tent ?"], "prompt": "{} has overhead tent"}, {"index": 365, "image_id": 2353358, "entity": "boat", "caption": "red life save on boat", "question": ["is there red life ?", "is there boat ?"], "prompt": "red life save on {}"}, {"index": 366, "image_id": 2353358, "entity": "boat", "caption": "rope hanging from boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope hanging from {}"}, {"index": 367, "image_id": 2353358, "entity": "boat", "caption": "rope attached to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope attached to {}"}, {"index": 368, "image_id": 2353153, "entity": "boat", "caption": "the boat has a red covering", "question": ["is there the boat ?", "is there a red covering ?"], "prompt": "the {} has a red covering"}, {"index": 369, "image_id": 2352684, "entity": "boat", "caption": "metal post and boat reflected in the water", "question": ["is there metal post ?", "is there boat ?", "is there the water ?"], "prompt": "metal post and {} reflected in the water"}, {"index": 370, "image_id": 2352424, "entity": "boat", "caption": "yellow mast stick up out of a boat", "question": ["is there yellow mast ?", "is there a boat ?"], "prompt": "yellow mast stick up out of a {}"}, {"index": 371, "image_id": 2351791, "entity": "boat", "caption": "The man and woman are in a boat.", "question": ["is there the man ?", "is there woman ?", "is there a boat ?"], "prompt": "The man and woman are in a {}."}, {"index": 372, "image_id": 2351791, "entity": "boat", "caption": "Woman sitting on boat.", "question": ["is there woman ?", "is there boat ?"], "prompt": "Woman sitting on {}."}, {"index": 373, "image_id": 2351791, "entity": "boat", "caption": "handle of a boat oar", "question": ["is there handle ?", "is there a boat ?"], "prompt": "handle of a {} oar"}, {"index": 374, "image_id": 2351188, "entity": "boat", "caption": "People stand next to the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "People stand next to the {}"}, {"index": 375, "image_id": 2351188, "entity": "boat", "caption": "Bicycles are on the boat", "question": ["are there bicycles ?", "is there the boat ?"], "prompt": "Bicycles are on the {}"}, {"index": 376, "image_id": 2351016, "entity": "boat", "caption": "boat is floating in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is floating in water"}, {"index": 377, "image_id": 2351016, "entity": "boat", "caption": "rope tied to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope tied to {}"}, {"index": 378, "image_id": 2350876, "entity": "boat", "caption": "the rope hanging off of the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "the rope hanging off of the {}"}, {"index": 379, "image_id": 2350876, "entity": "boat", "caption": "boat docked on shore ", "question": ["is there boat ?", "is there shore ?"], "prompt": "{} docked on shore "}, {"index": 380, "image_id": 2350876, "entity": "boat", "caption": "red rope attached to boat ", "question": ["is there red rope ?", "is there boat ?"], "prompt": "red rope attached to {} "}, {"index": 381, "image_id": 2350876, "entity": "boat", "caption": "rope attached to boat ", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope attached to {} "}, {"index": 382, "image_id": 2350779, "entity": "boat", "caption": "rope tied to a small boat", "question": ["is there rope ?", "is there a small boat ?"], "prompt": "rope tied to a small {}"}, {"index": 383, "image_id": 2350779, "entity": "boat", "caption": "a floating tire mounted on boat", "question": ["is there a floating tire ?", "is there boat ?"], "prompt": "a floating tire mounted on {}"}, {"index": 384, "image_id": 2350779, "entity": "boat", "caption": "two boats mounted by a rope", "question": ["are there two boats ?", "is there a rope ?"], "prompt": "two {}s mounted by a rope"}, {"index": 385, "image_id": 2350779, "entity": "boat", "caption": "rope holding two boats", "question": ["is there rope ?", "are there two boats ?"], "prompt": "rope holding two {}s"}, {"index": 386, "image_id": 2350304, "entity": "boat", "caption": "A boat that has a lot of books on it. ", "question": ["is there a boat ?", "is there a lot ?", "are there books ?"], "prompt": "A {} that has a lot of books on it. "}, {"index": 387, "image_id": 2349748, "entity": "boat", "caption": "Man drivng a boat.", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man drivng a {}."}, {"index": 388, "image_id": 2349748, "entity": "boat", "caption": "Woman standing in the boat.", "question": ["is there woman ?", "is there the boat ?"], "prompt": "Woman standing in the {}."}, {"index": 389, "image_id": 2349440, "entity": "boat", "caption": "American flag hanging from the boat", "question": ["is there american flag ?", "is there the boat ?"], "prompt": "American flag hanging from the {}"}, {"index": 390, "image_id": 2349440, "entity": "boat", "caption": "The boat has a yellow logo on it ", "question": ["is there the boat ?", "is there a yellow logo ?"], "prompt": "The {} has a yellow logo on it "}, {"index": 391, "image_id": 2348095, "entity": "boat", "caption": "red rope budled on the boat", "question": ["is there red rope ?", "is there the boat ?"], "prompt": "red rope budled on the {}"}, {"index": 392, "image_id": 2348078, "entity": "boat", "caption": "the people are standing beside a boat", "question": ["are there the people ?", "is there a boat ?"], "prompt": "the people are standing beside a {}"}, {"index": 393, "image_id": 2347906, "entity": "boat", "caption": "boat pulled to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled to dock"}, {"index": 394, "image_id": 2347681, "entity": "boat", "caption": "the can next to the boat", "question": ["is there the boat ?"], "prompt": "the can next to the {}"}, {"index": 395, "image_id": 2347233, "entity": "boat", "caption": "the rope tied to the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "the rope tied to the {}"}, {"index": 396, "image_id": 2346193, "entity": "boat", "caption": "top of boat is white", "question": ["is there top ?", "is there boat ?"], "prompt": "top of {} is white"}, {"index": 397, "image_id": 2345781, "entity": "boat", "caption": "A thick rope attached to a boat", "question": ["is there a thick rope ?", "is there a boat ?"], "prompt": "A thick rope attached to a {}"}, {"index": 398, "image_id": 2345781, "entity": "boat", "caption": "boat is in the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is in the water"}, {"index": 399, "image_id": 2345272, "entity": "boat", "caption": "2 black dogs are on the boat", "question": ["are there 2 black dogs ?", "is there the boat ?"], "prompt": "2 black dogs are on the {}"}, {"index": 400, "image_id": 2345272, "entity": "boat", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the {} holding a dog with a leash"}, {"index": 401, "image_id": 2345019, "entity": "boat", "caption": "The man is standing in the boat.", "question": ["is there the man ?", "is there the boat ?"], "prompt": "The man is standing in the {}."}, {"index": 402, "image_id": 2344745, "entity": "boat", "caption": "Woman dumping water out of boat", "question": ["is there woman ?", "is there water ?", "is there boat ?"], "prompt": "Woman dumping water out of {}"}, {"index": 403, "image_id": 2344677, "entity": "boat", "caption": "An owner holding her dog over the boat so it can have a view of the water.", "question": ["is there an owner ?", "is there her dog ?", "is there the boat ?", "is there a view ?", "is there the water ?"], "prompt": "An owner holding her dog over the {} so it can have a view of the water."}, {"index": 404, "image_id": 2344627, "entity": "boat", "caption": "a boat is by the dock", "question": ["is there a boat ?", "is there the dock ?"], "prompt": "a {} is by the dock"}, {"index": 405, "image_id": 2344618, "entity": "boat", "caption": "a boat dock on the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "a {} dock on the water"}, {"index": 406, "image_id": 2343974, "entity": "boat", "caption": "tires attached to boat are black", "question": ["are there tires ?", "is there boat ?"], "prompt": "tires attached to {} are black"}, {"index": 407, "image_id": 2343968, "entity": "boat", "caption": "the boats are in water ", "question": ["are there the boats ?", "is there water ?"], "prompt": "the {}s are in water "}, {"index": 408, "image_id": 2343968, "entity": "boat", "caption": "the buskets are in the boat ", "question": ["are there the buskets ?", "is there the boat ?"], "prompt": "the buskets are in the {} "}, {"index": 409, "image_id": 2343968, "entity": "boat", "caption": "The kid on the large boat that is sitting down.", "question": ["is there the kid ?", "is there the large boat ?"], "prompt": "The kid on the large {} that is sitting down."}, {"index": 410, "image_id": 2343968, "entity": "boat", "caption": "The long boat the two kids are on.", "question": ["is there the long boat ?", "are there the two kids ?"], "prompt": "The long {} the two kids are on."}, {"index": 411, "image_id": 2343749, "entity": "boat", "caption": "boat docked at the shore", "question": ["is there boat ?", "is there the shore ?"], "prompt": "{} docked at the shore"}, {"index": 412, "image_id": 2343527, "entity": "boat", "caption": "water splashing on back of boat ", "question": ["is there back ?", "is there boat ?"], "prompt": "water splashing on back of {} "}, {"index": 413, "image_id": 2343527, "entity": "boat", "caption": "rudder is on the back of the boat", "question": ["is there rudder ?", "is there the back ?", "is there the boat ?"], "prompt": "rudder is on the back of the {}"}, {"index": 414, "image_id": 2343527, "entity": "boat", "caption": "a rubber tire is hanging on the side of the boat", "question": ["is there a rubber tire ?", "is there the side ?", "is there the boat ?"], "prompt": "a rubber tire is hanging on the side of the {}"}, {"index": 415, "image_id": 2343527, "entity": "boat", "caption": "a white cross is on the top of the boat", "question": ["is there the top ?", "is there the boat ?"], "prompt": "a white cross is on the top of the {}"}, {"index": 416, "image_id": 2343527, "entity": "boat", "caption": "a person is standing on the back of the boat", "question": ["is there a person ?", "is there the back ?", "is there the boat ?"], "prompt": "a person is standing on the back of the {}"}, {"index": 417, "image_id": 2342814, "entity": "boat", "caption": "two handles are on the back of the boat", "question": ["are there two handles ?", "is there the back ?", "is there the boat ?"], "prompt": "two handles are on the back of the {}"}, {"index": 418, "image_id": 2342814, "entity": "boat", "caption": "a blue box is on the boat", "question": ["is there a blue box ?", "is there the boat ?"], "prompt": "a blue box is on the {}"}, {"index": 419, "image_id": 2342814, "entity": "boat", "caption": "a first aid kit is on the boat", "question": ["is there a first aid kit ?", "is there the boat ?"], "prompt": "a first aid kit is on the {}"}, {"index": 420, "image_id": 2342814, "entity": "boat", "caption": "the boat has silver handles", "question": ["is there the boat ?", "are there silver handles ?"], "prompt": "the {} has silver handles"}, {"index": 421, "image_id": 2342814, "entity": "boat", "caption": "a white box is on the boat", "question": ["is there the boat ?"], "prompt": "a white box is on the {}"}, {"index": 422, "image_id": 2342814, "entity": "boat", "caption": "white handles are on the boat", "question": ["are there white handles ?", "is there the boat ?"], "prompt": "white handles are on the {}"}, {"index": 423, "image_id": 2342338, "entity": "boat", "caption": "man stands in a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man stands in a {}"}, {"index": 424, "image_id": 2342338, "entity": "boat", "caption": "they are sitting in the boat", "question": ["is there the boat ?"], "prompt": "they are sitting in the {}"}, {"index": 425, "image_id": 2341913, "entity": "boat", "caption": "boat is moving in the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is moving in the water"}, {"index": 426, "image_id": 2341403, "entity": "boat", "caption": "The boat has a red stripe.", "question": ["is there the boat ?", "is there a red stripe ?"], "prompt": "The {} has a red stripe."}, {"index": 427, "image_id": 2341403, "entity": "boat", "caption": "The boat has a red and green stripe.", "question": ["is there the boat ?", "is there a red and green stripe ?"], "prompt": "The {} has a red and green stripe."}, {"index": 428, "image_id": 2341403, "entity": "boat", "caption": "the boat is on sand", "question": ["is there the boat ?", "is there sand ?"], "prompt": "the {} is on sand"}, {"index": 429, "image_id": 2341403, "entity": "boat", "caption": "rope wound around the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope wound around the {}"}, {"index": 430, "image_id": 2341403, "entity": "boat", "caption": "the boat has a red stripe", "question": ["is there the boat ?", "is there a red stripe ?"], "prompt": "the {} has a red stripe"}, {"index": 431, "image_id": 2341403, "entity": "boat", "caption": "rope tied around the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied around the {}"}, {"index": 432, "image_id": 2341358, "entity": "boat", "caption": "the man is in a boat ", "question": ["is there the man ?", "is there a boat ?"], "prompt": "the man is in a {} "}, {"index": 433, "image_id": 2341331, "entity": "boat", "caption": "the boat has an inboard engine", "question": ["is there the boat ?", "is there an inboard engine ?"], "prompt": "the {} has an inboard engine"}, {"index": 434, "image_id": 2341331, "entity": "boat", "caption": "the steering wheel is in the boat", "question": ["is there the steering wheel ?", "is there the boat ?"], "prompt": "the steering wheel is in the {}"}, {"index": 435, "image_id": 2341331, "entity": "boat", "caption": "windows are on the boat", "question": ["are there windows ?", "is there the boat ?"], "prompt": "windows are on the {}"}, {"index": 436, "image_id": 2341331, "entity": "boat", "caption": "rope tied to the front of the boat", "question": ["is there rope ?", "is there the front ?", "is there the boat ?"], "prompt": "rope tied to the front of the {}"}, {"index": 437, "image_id": 2341331, "entity": "boat", "caption": "rope tied to back of the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied to back of the {}"}, {"index": 438, "image_id": 2340730, "entity": "boat", "caption": "hatches are on the bow of the boat", "question": ["are there hatches ?", "is there the bow ?", "is there the boat ?"], "prompt": "hatches are on the bow of the {}"}, {"index": 439, "image_id": 2339716, "entity": "boat", "caption": "Person in the background is standing on a boat", "question": ["is there person ?", "is there the background ?", "is there a boat ?"], "prompt": "Person in the background is standing on a {}"}, {"index": 440, "image_id": 2335633, "entity": "boat", "caption": "The family is safe on a boat", "question": ["is there the family ?", "is there a boat ?"], "prompt": "The family is safe on a {}"}, {"index": 441, "image_id": 2335557, "entity": "boat", "caption": "A boat is floating in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "A {} is floating in the water"}, {"index": 442, "image_id": 2335557, "entity": "boat", "caption": "A boat is carrying many people", "question": ["is there a boat ?", "are there many people ?"], "prompt": "A {} is carrying many people"}, {"index": 443, "image_id": 2335513, "entity": "boat", "caption": "dark water the boat is on", "question": ["is there dark water ?", "is there the boat ?"], "prompt": "dark water the {} is on"}, {"index": 444, "image_id": 2335383, "entity": "boat", "caption": "one old boat stuck on beach", "question": ["is there one old boat ?", "is there beach ?"], "prompt": "one old {} stuck on beach"}, {"index": 445, "image_id": 2335383, "entity": "boat", "caption": "Rope hanging from the bottom of a boat", "question": ["is there rope ?", "is there the bottom ?", "is there a boat ?"], "prompt": "Rope hanging from the bottom of a {}"}, {"index": 446, "image_id": 2335383, "entity": "boat", "caption": "A boat is sitting on a lot", "question": ["is there a boat ?", "is there a lot ?"], "prompt": "A {} is sitting on a lot"}, {"index": 447, "image_id": 2335383, "entity": "boat", "caption": "The boat is casting a shadow", "question": ["is there the boat ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow"}, {"index": 448, "image_id": 2335383, "entity": "boat", "caption": "The boat is close to the ocean", "question": ["is there the boat ?", "is there the ocean ?"], "prompt": "The {} is close to the ocean"}, {"index": 449, "image_id": 2335220, "entity": "boat", "caption": "small boat parked next to a dock", "question": ["is there small boat ?", "is there a dock ?"], "prompt": "small {} parked next to a dock"}, {"index": 450, "image_id": 2335207, "entity": "boat", "caption": "The boat has many windows.", "question": ["is there the boat ?", "are there many windows ?"], "prompt": "The {} has many windows."}, {"index": 451, "image_id": 2335104, "entity": "boat", "caption": "the dog is on the boat", "question": ["is there the dog ?", "is there the boat ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2335104, "entity": "boat", "caption": "a pillow is in on the boat", "question": ["is there a pillow ?", "is there the boat ?"], "prompt": "a pillow is in on the {}"}, {"index": 453, "image_id": 2334367, "entity": "boat", "caption": "The dog is on the boat ", "question": ["is there the dog ?", "is there the boat ?"], "prompt": "The dog is on the {} "}, {"index": 454, "image_id": 2334367, "entity": "boat", "caption": "Bubbley wake of the boat", "question": ["is there bubbley wake ?", "is there the boat ?"], "prompt": "Bubbley wake of the {}"}, {"index": 455, "image_id": 2334187, "entity": "boat", "caption": "the boat has pigeons", "question": ["is there the boat ?", "are there pigeons ?"], "prompt": "the {} has pigeons"}, {"index": 456, "image_id": 2334187, "entity": "boat", "caption": "the oars are in the boat", "question": ["are there the oars ?", "is there the boat ?"], "prompt": "the oars are in the {}"}, {"index": 457, "image_id": 2334187, "entity": "boat", "caption": "the boat has rope trim", "question": ["is there the boat ?", "is there rope ?"], "prompt": "the {} has rope trim"}, {"index": 458, "image_id": 2333973, "entity": "boat", "caption": "a silver oar to row a boat", "question": ["is there a silver oar ?", "is there a boat ?"], "prompt": "a silver oar to row a {}"}, {"index": 459, "image_id": 2333973, "entity": "boat", "caption": "Blue writing us out of the white boats", "question": ["are there the white boats ?"], "prompt": "Blue writing us out of the white {}s"}, {"index": 460, "image_id": 2333538, "entity": "boat", "caption": "a bridge connects to the boat", "question": ["is there a bridge ?", "is there the boat ?"], "prompt": "a bridge connects to the {}"}, {"index": 461, "image_id": 2332476, "entity": "boat", "caption": "boat carries three humans", "question": ["is there boat ?", "are there three humans ?"], "prompt": "{} carries three humans"}, {"index": 462, "image_id": 2332476, "entity": "boat", "caption": "life preserver attached to boat", "question": ["is there life preserver ?", "is there boat ?"], "prompt": "life preserver attached to {}"}, {"index": 463, "image_id": 2332444, "entity": "boat", "caption": "rope going down from the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope going down from the {}"}, {"index": 464, "image_id": 2331968, "entity": "boat", "caption": "man steering white boat", "question": ["is there man ?", "is there white boat ?"], "prompt": "man steering white {}"}, {"index": 465, "image_id": 2331968, "entity": "boat", "caption": "white rope attached to boat", "question": ["is there boat ?"], "prompt": "white rope attached to {}"}, {"index": 466, "image_id": 2331586, "entity": "boat", "caption": "the boat is tipping", "question": ["is there the boat ?"], "prompt": "the {} is tipping"}, {"index": 467, "image_id": 2330347, "entity": "boat", "caption": "The lady is sitting in the boat.", "question": ["is there the lady ?", "is there the boat ?"], "prompt": "The lady is sitting in the {}."}, {"index": 468, "image_id": 2330347, "entity": "boat", "caption": "People are on the boat.", "question": ["are there people ?", "is there the boat ?"], "prompt": "People are on the {}."}, {"index": 469, "image_id": 2329011, "entity": "boat", "caption": "white rope tied to a boat", "question": ["is there a boat ?"], "prompt": "white rope tied to a {}"}, {"index": 470, "image_id": 2328185, "entity": "boat", "caption": "food sits on boat", "question": ["is there food ?", "is there boat ?"], "prompt": "food sits on {}"}, {"index": 471, "image_id": 2328185, "entity": "boat", "caption": "human stands on boat", "question": ["is there human ?", "is there boat ?"], "prompt": "human stands on {}"}, {"index": 472, "image_id": 2328185, "entity": "boat", "caption": "a river boat painted red, white and blue", "question": ["is there a river boat ?"], "prompt": "a river {} painted red, white and blue"}, {"index": 473, "image_id": 2327815, "entity": "boat", "caption": "man standing in the front of a boat", "question": ["is there man ?", "is there the front ?", "is there a boat ?"], "prompt": "man standing in the front of a {}"}, {"index": 474, "image_id": 2327709, "entity": "boat", "caption": "boat that man is sitting in", "question": ["is there boat ?", "is there that man ?"], "prompt": "{} that man is sitting in"}, {"index": 475, "image_id": 2327444, "entity": "boat", "caption": "bushes are behind boat", "question": ["are there bushes ?", "is there boat ?"], "prompt": "bushes are behind {}"}, {"index": 476, "image_id": 2326620, "entity": "boat", "caption": "fruits are in the boat ", "question": ["are there fruits ?", "is there the boat ?"], "prompt": "fruits are in the {} "}, {"index": 477, "image_id": 2326389, "entity": "boat", "caption": "water boats are in", "question": ["are there water boats ?"], "prompt": "water {}s are in"}, {"index": 478, "image_id": 2325957, "entity": "boat", "caption": "life preserver hung on boat", "question": ["is there life preserver ?", "is there boat ?"], "prompt": "life preserver hung on {}"}, {"index": 479, "image_id": 2325634, "entity": "boat", "caption": "Red rope attached to metal boat.", "question": ["is there red rope ?", "is there metal boat ?"], "prompt": "Red rope attached to metal {}."}, {"index": 480, "image_id": 2325634, "entity": "boat", "caption": "Metal boat anchored with yellow rope.", "question": ["is there metal boat ?", "is there yellow rope ?"], "prompt": "Metal {} anchored with yellow rope."}, {"index": 481, "image_id": 2325522, "entity": "boat", "caption": "the boat is floating on the water ", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is floating on the water "}, {"index": 482, "image_id": 2325172, "entity": "boat", "caption": "the boat is on the sand", "question": ["is there the boat ?", "is there the sand ?"], "prompt": "the {} is on the sand"}, {"index": 483, "image_id": 2325172, "entity": "boat", "caption": "lettering is on the boat", "question": ["is there lettering ?", "is there the boat ?"], "prompt": "lettering is on the {}"}, {"index": 484, "image_id": 2325172, "entity": "boat", "caption": "a mast is on the boat", "question": ["is there a mast ?", "is there the boat ?"], "prompt": "a mast is on the {}"}, {"index": 485, "image_id": 2325172, "entity": "boat", "caption": "numbers are in the boat", "question": ["are there numbers ?", "is there the boat ?"], "prompt": "numbers are in the {}"}, {"index": 486, "image_id": 2324743, "entity": "boat", "caption": "The bottom of the boat is the color red ", "question": ["is there the bottom ?", "is there the boat ?", "is there the color red ?"], "prompt": "The bottom of the {} is the color red "}, {"index": 487, "image_id": 2324743, "entity": "boat", "caption": "dragon painted on the side of the boat", "question": ["is there dragon ?", "is there the side ?", "is there the boat ?"], "prompt": "dragon painted on the side of the {}"}, {"index": 488, "image_id": 2324603, "entity": "boat", "caption": "an old wooden boat dock on the side of the river", "question": ["is there the side ?", "is there the river ?"], "prompt": "an old wooden {} dock on the side of the river"}, {"index": 489, "image_id": 2324332, "entity": "boat", "caption": "Sand patches behind the boat", "question": ["are there sand patches ?", "is there the boat ?"], "prompt": "Sand patches behind the {}"}, {"index": 490, "image_id": 2324332, "entity": "boat", "caption": "The boat sits on the bank. ", "question": ["is there the boat ?", "is there the bank ?"], "prompt": "The {} sits on the bank. "}, {"index": 491, "image_id": 2324332, "entity": "boat", "caption": "The flowers next to the boat. ", "question": ["are there the flowers ?", "is there the boat ?"], "prompt": "The flowers next to the {}. "}, {"index": 492, "image_id": 2324332, "entity": "boat", "caption": "The boat sits in the rocks. ", "question": ["is there the boat ?", "are there the rocks ?"], "prompt": "The {} sits in the rocks. "}, {"index": 493, "image_id": 2323258, "entity": "boat", "caption": "Some boats are carrying oars for rowing", "question": ["are there some boats ?", "are there oars ?"], "prompt": "Some {}s are carrying oars for rowing"}, {"index": 494, "image_id": 2323258, "entity": "boat", "caption": "White boat with floats attached", "question": ["is there white boat ?", "are there floats ?"], "prompt": "White {} with floats attached"}, {"index": 495, "image_id": 2321960, "entity": "boat", "caption": "two boats parked at the dock", "question": ["are there two boats ?", "is there the dock ?"], "prompt": "two {}s parked at the dock"}, {"index": 496, "image_id": 2321105, "entity": "boat", "caption": "Sign on boat says Manon Manon.", "question": ["is there sign ?", "is there boat ?"], "prompt": "Sign on {} says Manon Manon."}, {"index": 497, "image_id": 2321105, "entity": "boat", "caption": "A grey barrel sits in an old boat.", "question": ["is there a grey barrel ?", "is there an old boat ?"], "prompt": "A grey barrel sits in an old {}."}, {"index": 498, "image_id": 2320922, "entity": "boat", "caption": "Water that boat sits on", "question": ["is there water ?", "is there that boat ?"], "prompt": "Water that {} sits on"}, {"index": 499, "image_id": 2320922, "entity": "boat", "caption": " some chains anchoring a boat", "question": ["are there some chains ?", "is there a boat ?"], "prompt": " some chains anchoring a {}"}, {"index": 500, "image_id": 2320922, "entity": "boat", "caption": "water boat is sitting in", "question": ["is there water boat ?"], "prompt": "water {} is sitting in"}, {"index": 501, "image_id": 2320922, "entity": "boat", "caption": "the boat is in a marina", "question": ["is there the boat ?", "is there a marina ?"], "prompt": "the {} is in a marina"}, {"index": 502, "image_id": 2320725, "entity": "boat", "caption": "The boat is on land.", "question": ["is there the boat ?", "is there land ?"], "prompt": "The {} is on land."}, {"index": 503, "image_id": 2319811, "entity": "boat", "caption": "the grey stripe on the boat", "question": ["is there the grey stripe ?", "is there the boat ?"], "prompt": "the grey stripe on the {}"}, {"index": 504, "image_id": 2318574, "entity": "boat", "caption": "the letter \"R\"on the boat", "question": ["is there the letter ?", "is there the boat ?"], "prompt": "the letter \"R\"on the {}"}, {"index": 505, "image_id": 2318574, "entity": "boat", "caption": "water for boats to sail", "question": ["is there water ?", "are there boats ?"], "prompt": "water for {}s to sail"}, {"index": 506, "image_id": 2318144, "entity": "boat", "caption": "crowd of people gathered around looking at the huge boat", "question": ["is there crowd ?", "are there people ?", "is there the huge boat ?"], "prompt": "crowd of people gathered around looking at the huge {}"}, {"index": 507, "image_id": 2318140, "entity": "boat", "caption": "white boat docked at the pier", "question": ["is there white boat ?", "is there the pier ?"], "prompt": "white {} docked at the pier"}, {"index": 508, "image_id": 2317528, "entity": "boat", "caption": "boats lined up side by side", "question": ["are there boats ?", "is there side ?", "is there side ?"], "prompt": "{}s lined up side by side"}, {"index": 509, "image_id": 2317528, "entity": "boat", "caption": "Yellow number 9 painted onto a blue square on a red boat", "question": ["is there yellow number ?", "is there a blue square ?", "is there a red boat ?"], "prompt": "Yellow number 9 painted onto a blue square on a red {}"}, {"index": 510, "image_id": 2317528, "entity": "boat", "caption": "Orange carved dragon head on a boat", "question": ["is there orange carved dragon head ?", "is there a boat ?"], "prompt": "Orange carved dragon head on a {}"}, {"index": 511, "image_id": 2317528, "entity": "boat", "caption": "Blue flower painted on a boat", "question": ["is there blue flower ?", "is there a boat ?"], "prompt": "Blue flower painted on a {}"}, {"index": 512, "image_id": 2317528, "entity": "boat", "caption": "Orange carved tail on a boat", "question": ["is there orange carved tail ?", "is there a boat ?"], "prompt": "Orange carved tail on a {}"}, {"index": 513, "image_id": 2317528, "entity": "boat", "caption": "Green carved tail on a boat", "question": ["is there green carved tail ?", "is there a boat ?"], "prompt": "Green carved tail on a {}"}, {"index": 514, "image_id": 2317472, "entity": "boat", "caption": "large metal rope pulleys on boat", "question": ["are there large metal rope pulleys ?", "is there boat ?"], "prompt": "large metal rope pulleys on {}"}, {"index": 515, "image_id": 2316999, "entity": "boat", "caption": "open deck are of boat", "question": ["is there open deck ?", "is there boat ?"], "prompt": "open deck are of {}"}, {"index": 516, "image_id": 2316999, "entity": "boat", "caption": "the deck of this boat is blue", "question": ["is there the deck ?", "is there this boat ?"], "prompt": "the deck of this {} is blue"}, {"index": 517, "image_id": 2316715, "entity": "boat", "caption": "large white boat casting reflection on water", "question": ["is there large white boat ?", "is there reflection ?", "is there water ?"], "prompt": "large white {} casting reflection on water"}, {"index": 518, "image_id": 2316663, "entity": "boat", "caption": "Rope tied across a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "Rope tied across a {}"}, {"index": 519, "image_id": 2316469, "entity": "boat", "caption": "the life ring is on a boat", "question": ["is there the life ring ?", "is there a boat ?"], "prompt": "the life ring is on a {}"}, {"index": 520, "image_id": 2316232, "entity": "boat", "caption": "row boat docked in water", "question": ["is there row boat ?", "is there water ?"], "prompt": "row {} docked in water"}, {"index": 521, "image_id": 2316232, "entity": "boat", "caption": "this is a row boat", "question": ["is there a row boat ?"], "prompt": "this is a row {}"}, {"index": 522, "image_id": 2316232, "entity": "boat", "caption": "The rope tied to the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "The rope tied to the {}"}, {"index": 523, "image_id": 2316232, "entity": "boat", "caption": "A boat that is sitting in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "A {} that is sitting in the water"}, {"index": 524, "image_id": 2316174, "entity": "boat", "caption": "The letter R on the boat.", "question": ["is there the letter r ?", "is there the boat ?"], "prompt": "The letter R on the {}."}, {"index": 525, "image_id": 2316174, "entity": "boat", "caption": "The word PLYMOUTH on the boat.", "question": ["is there the word ?", "is there plymouth ?", "is there the boat ?"], "prompt": "The word PLYMOUTH on the {}."}, {"index": 526, "image_id": 2316161, "entity": "boat", "caption": "The wooden boat the woman is sitting in.", "question": ["is there the wooden boat ?", "is there the woman ?"], "prompt": "The wooden {} the woman is sitting in."}, {"index": 527, "image_id": 2316161, "entity": "boat", "caption": "boat holds woman", "question": ["is there boat ?", "is there woman ?"], "prompt": "{} holds woman"}, {"index": 528, "image_id": 2316102, "entity": "boat", "caption": "number 33 painted on a boat.", "question": ["is there number ?", "is there a boat ?"], "prompt": "number 33 painted on a {}."}, {"index": 529, "image_id": 2315952, "entity": "boat", "caption": "Rope tied to the boat.", "question": ["is there rope ?", "is there the boat ?"], "prompt": "Rope tied to the {}."}, {"index": 530, "image_id": 2315952, "entity": "boat", "caption": "Chain tied to the boat.", "question": ["is there chain ?", "is there the boat ?"], "prompt": "Chain tied to the {}."}, {"index": 531, "image_id": 2315952, "entity": "boat", "caption": "red plastic buoys hanging from boat", "question": ["are there red plastic buoys ?", "is there boat ?"], "prompt": "red plastic buoys hanging from {}"}, {"index": 532, "image_id": 2315952, "entity": "boat", "caption": "black tire hanging from side of boat", "question": ["is there black tire ?", "is there side ?", "is there boat ?"], "prompt": "black tire hanging from side of {}"}, {"index": 533, "image_id": 2315952, "entity": "boat", "caption": "boueys attached to boat", "question": ["is there boat ?"], "prompt": "boueys attached to {}"}, {"index": 534, "image_id": 2315666, "entity": "boat", "caption": "red flag hanging from boat in water ", "question": ["is there red flag ?", "is there boat ?", "is there water ?"], "prompt": "red flag hanging from {} in water "}, {"index": 535, "image_id": 2414707, "entity": "boat", "caption": "man pushing a lifeboat", "question": ["is there man ?", "is there a lifeboat ?"], "prompt": "man pushing a life{}"}, {"index": 536, "image_id": 2414707, "entity": "boat", "caption": "Men pushing a boat", "question": ["are there men ?", "is there a boat ?"], "prompt": "Men pushing a {}"}, {"index": 537, "image_id": 2414285, "entity": "boat", "caption": "A bicycle is on the boat.", "question": ["is there a bicycle ?", "is there the boat ?"], "prompt": "A bicycle is on the {}."}, {"index": 538, "image_id": 2414285, "entity": "boat", "caption": "The bicycle is on the deck of a boat.", "question": ["is there the bicycle ?", "is there the deck ?", "is there a boat ?"], "prompt": "The bicycle is on the deck of a {}."}, {"index": 539, "image_id": 2414285, "entity": "boat", "caption": "This is part of the mast of the boat.", "question": ["is there part ?", "is there the mast ?", "is there the boat ?"], "prompt": "This is part of the mast of the {}."}, {"index": 540, "image_id": 2414285, "entity": "boat", "caption": "Rope is on the deck of the boat.", "question": ["is there rope ?", "is there the deck ?", "is there the boat ?"], "prompt": "Rope is on the deck of the {}."}, {"index": 541, "image_id": 2414285, "entity": "boat", "caption": "small boat with boat sitting on it", "question": ["is there small boat ?", "is there boat ?"], "prompt": "small {} with {} sitting on it"}, {"index": 542, "image_id": 2414285, "entity": "boat", "caption": "A rope tied to a boat.", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "A rope tied to a {}."}, {"index": 543, "image_id": 2414008, "entity": "boat", "caption": "Bottles made boats floating in the water.", "question": ["are there bottles ?", "are there boats ?", "is there the water ?"], "prompt": "Bottles made {}s floating in the water."}, {"index": 544, "image_id": 2413336, "entity": "boat", "caption": "the kid is standing on the boat", "question": ["is there the kid ?", "is there the boat ?"], "prompt": "the kid is standing on the {}"}, {"index": 545, "image_id": 2413281, "entity": "boat", "caption": "Two oars inside boat.", "question": ["are there two oars ?", "is there boat ?"], "prompt": "Two oars inside {}."}, {"index": 546, "image_id": 2413281, "entity": "boat", "caption": "Rope coiled inside boat.", "question": ["is there inside boat ?"], "prompt": "Rope coiled inside {}."}, {"index": 547, "image_id": 2413281, "entity": "boat", "caption": "boat tied to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} tied to dock"}, {"index": 548, "image_id": 2413281, "entity": "boat", "caption": "exposed wood where blue boat paint has worn away", "question": ["is there wood ?", "is there blue boat paint ?"], "prompt": "exposed wood where blue {} paint has worn away"}, {"index": 549, "image_id": 2412726, "entity": "boat", "caption": "The boats are on the water", "question": ["are there the boats ?", "is there the water ?"], "prompt": "The {}s are on the water"}, {"index": 550, "image_id": 2412726, "entity": "boat", "caption": "boats trimmed in light blue", "question": ["are there boats ?", "is there light blue ?"], "prompt": "{}s trimmed in light blue"}, {"index": 551, "image_id": 2412667, "entity": "boat", "caption": "woman painted on side of boat", "question": ["is there woman ?", "is there side ?", "is there boat ?"], "prompt": "woman painted on side of {}"}, {"index": 552, "image_id": 2412667, "entity": "boat", "caption": "Woman painted on large multi-colored boat", "question": ["is there woman ?", "is there large multi-colored boat ?"], "prompt": "Woman painted on large multi-colored {}"}, {"index": 553, "image_id": 2412667, "entity": "boat", "caption": "Woman painted on the boat", "question": ["is there woman ?", "is there the boat ?"], "prompt": "Woman painted on the {}"}, {"index": 554, "image_id": 2412272, "entity": "boat", "caption": "boats are in the water", "question": ["are there boats ?", "is there the water ?"], "prompt": "{}s are in the water"}, {"index": 555, "image_id": 2412272, "entity": "boat", "caption": "\"Intrepid\" painted on front of boat", "question": ["is there front ?", "is there boat ?"], "prompt": "\"Intrepid\" painted on front of {}"}, {"index": 556, "image_id": 2412205, "entity": "boat", "caption": "the man is riding ina boat", "question": ["is there the man ?", "is there ina boat ?"], "prompt": "the man is riding ina {}"}, {"index": 557, "image_id": 2412205, "entity": "boat", "caption": "a boat racing along a lake", "question": ["is there a boat ?", "is there a lake ?"], "prompt": "a {} racing along a lake"}, {"index": 558, "image_id": 2412205, "entity": "boat", "caption": "Man is in a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man is in a {}"}, {"index": 559, "image_id": 2412205, "entity": "boat", "caption": "Engine of boat is tan", "question": ["is there engine ?", "is there boat ?", "is there tan ?"], "prompt": "Engine of {} is tan"}, {"index": 560, "image_id": 2412205, "entity": "boat", "caption": "boat has wooden bench", "question": ["is there boat ?", "is there wooden bench ?"], "prompt": "{} has wooden bench"}, {"index": 561, "image_id": 2411896, "entity": "boat", "caption": "Large boat pulling containers", "question": ["is there large boat ?"], "prompt": "Large {} pulling containers"}, {"index": 562, "image_id": 2415372, "entity": "boat", "caption": "Rope attaching boat to boardwalk", "question": ["is there boat ?"], "prompt": "Rope attaching {} to boardwalk"}, {"index": 563, "image_id": 2415691, "entity": "boat", "caption": "boat and cabin reflected in clear smooth water", "question": ["is there boat ?", "is there cabin ?", "is there clear smooth water ?"], "prompt": "{} and cabin reflected in clear smooth water"}, {"index": 564, "image_id": 2416767, "entity": "boat", "caption": "2 identical boats are next to each other in the water ", "question": ["are there 2 identical boats ?", "is there the water ?"], "prompt": "2 identical {}s are next to each other in the water "}, {"index": 565, "image_id": 2416767, "entity": "boat", "caption": "ropes hang over the boat near the dock", "question": ["are there ropes ?", "is there the boat ?", "is there the dock ?"], "prompt": "ropes hang over the {} near the dock"}, {"index": 566, "image_id": 2417150, "entity": "boat", "caption": "man driving the boat", "question": ["is there man ?", "is there the boat ?"], "prompt": "man driving the {}"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03345487.json b/data/imagenet/compositions/prompts/n03345487.json
new file mode 100644
index 0000000000000000000000000000000000000000..b6fe830b8c58bb2e880bf19ab5e0170da455ebed
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03345487.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 107967, "entity": "truck", "caption": "A window is open on the truck", "question": ["is there a window ?", "is there the truck ?"], "prompt": "A window is open on the {}"}, {"index": 1, "image_id": 150364, "entity": "truck", "caption": "front left wheel of tow truck", "question": ["is there front left wheel ?", "is there tow truck ?"], "prompt": "front left wheel of tow {}"}, {"index": 2, "image_id": 150393, "entity": "truck", "caption": "A truck that probably sells seafood", "question": ["is there a truck ?", "is there seafood ?"], "prompt": "A {} that probably sells seafood"}, {"index": 3, "image_id": 150486, "entity": "truck", "caption": "This is a basket on a bucket truck.", "question": ["is there a basket ?", "is there a bucket truck ?"], "prompt": "This is a basket on a bucket {}."}, {"index": 4, "image_id": 150497, "entity": "truck", "caption": "Firetruck parked in garage", "question": ["is there firetruck ?", "is there garage ?"], "prompt": "Fire{} parked in garage"}, {"index": 5, "image_id": 285972, "entity": "truck", "caption": "a gas station pump by truck", "question": ["is there a gas station pump ?", "is there truck ?"], "prompt": "a gas station pump by {}"}, {"index": 6, "image_id": 498093, "entity": "truck", "caption": "green face painted on a truck", "question": ["is there green face ?", "is there a truck ?"], "prompt": "green face painted on a {}"}, {"index": 7, "image_id": 498093, "entity": "truck", "caption": "Blue painted letters on the side of truck.", "question": ["are there blue painted letters ?", "is there the side ?", "is there truck ?"], "prompt": "Blue painted letters on the side of {}."}, {"index": 8, "image_id": 713062, "entity": "truck", "caption": "black door handle on the truck", "question": ["is there black door ?", "is there the truck ?"], "prompt": "black door handle on the {}"}, {"index": 9, "image_id": 713419, "entity": "truck", "caption": "Woman standing next to truck ", "question": ["is there woman ?", "is there truck ?"], "prompt": "Woman standing next to {} "}, {"index": 10, "image_id": 713503, "entity": "truck", "caption": "A blue rope tied to a truck", "question": ["is there a blue rope ?", "is there a truck ?"], "prompt": "A blue rope tied to a {}"}, {"index": 11, "image_id": 713614, "entity": "truck", "caption": "container on truck has pink flowers painted on it", "question": ["is there container ?", "is there truck ?", "are there pink flowers ?"], "prompt": "container on {} has pink flowers painted on it"}, {"index": 12, "image_id": 713614, "entity": "truck", "caption": "large white sack that is full is hung from back of truck ", "question": ["is there large white sack ?", "is there truck ?"], "prompt": "large white sack that is full is hung from back of {} "}, {"index": 13, "image_id": 713614, "entity": "truck", "caption": "Lotus Flower painted on back of garbage truck", "question": ["is there lotus flower ?", "is there garbage truck ?"], "prompt": "Lotus Flower painted on back of garbage {}"}, {"index": 14, "image_id": 1159845, "entity": "truck", "caption": "bright colored star painted on the back of the truck", "question": ["is there bright colored star ?", "is there the back ?", "is there the truck ?"], "prompt": "bright colored star painted on the back of the {}"}, {"index": 15, "image_id": 1159845, "entity": "truck", "caption": "two grey tarp covered bundles on the back of the truck", "question": ["is there two grey tarp ?", "are there bundles ?", "is there the back ?", "is there the truck ?"], "prompt": "two grey tarp covered bundles on the back of the {}"}, {"index": 16, "image_id": 1160061, "entity": "truck", "caption": "The person standing in the open door of the blue truck.", "question": ["is there the person ?", "is there the open door ?", "is there the blue truck ?"], "prompt": "The person standing in the open door of the blue {}."}, {"index": 17, "image_id": 1160061, "entity": "truck", "caption": "The white shirt the person is wearing at the door of the truck.", "question": ["is there the white shirt ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The white shirt the person is wearing at the door of the {}."}, {"index": 18, "image_id": 1160061, "entity": "truck", "caption": "The pants the person standing in the door of the truck is wearing.", "question": ["are there the pants ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The pants the person standing in the door of the {} is wearing."}, {"index": 19, "image_id": 1592126, "entity": "truck", "caption": "Potatoes are on the back of a truck", "question": ["are there potatoes ?", "is there the back ?", "is there a truck ?"], "prompt": "Potatoes are on the back of a {}"}, {"index": 20, "image_id": 1592126, "entity": "truck", "caption": "Bags of potatoes are on back of a truck", "question": ["are there bags ?", "are there potatoes ?", "is there a truck ?"], "prompt": "Bags of potatoes are on back of a {}"}, {"index": 21, "image_id": 1592160, "entity": "truck", "caption": "an orange pick up truck with an open hood", "question": ["is there an orange pick ?", "is there truck ?", "is there an open hood ?"], "prompt": "an orange pick up {} with an open hood"}, {"index": 22, "image_id": 1592291, "entity": "truck", "caption": "bird painted on the side of the truck", "question": ["is there bird ?", "is there the side ?", "is there the truck ?"], "prompt": "bird painted on the side of the {}"}, {"index": 23, "image_id": 1592584, "entity": "truck", "caption": "An orange cone is on the white truck", "question": ["is there an orange cone ?", "is there the white truck ?"], "prompt": "An orange cone is on the white {}"}, {"index": 24, "image_id": 1592584, "entity": "truck", "caption": "The truck has a license plate", "question": ["is there the truck ?", "is there a license plate ?"], "prompt": "The {} has a license plate"}, {"index": 25, "image_id": 1592584, "entity": "truck", "caption": "Red letters on the trucks grill", "question": ["are there red letters ?", "are there the trucks ?"], "prompt": "Red letters on the {}s grill"}, {"index": 26, "image_id": 1592584, "entity": "truck", "caption": "The truck has a windsheild ", "question": ["is there the truck ?", "is there a windsheild ?"], "prompt": "The {} has a windsheild "}, {"index": 27, "image_id": 1592951, "entity": "truck", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The {} on the boat is blue in color."}, {"index": 28, "image_id": 2413810, "entity": "truck", "caption": "The truck has a tall exhaust pipe", "question": ["is there the truck ?", "is there a tall exhaust pipe ?"], "prompt": "The {} has a tall exhaust pipe"}, {"index": 29, "image_id": 2413318, "entity": "truck", "caption": "Some packet kept on the deck of the truck", "question": ["is there some packet ?", "is there the deck ?", "is there the truck ?"], "prompt": "Some packet kept on the deck of the {}"}, {"index": 30, "image_id": 2413318, "entity": "truck", "caption": "people are riding the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are riding the {}"}, {"index": 31, "image_id": 2413114, "entity": "truck", "caption": "group of young men ride the front of truck", "question": ["is there group ?", "are there young men ?", "is there the front ?", "is there truck ?"], "prompt": "group of young men ride the front of {}"}, {"index": 32, "image_id": 2413114, "entity": "truck", "caption": "seated person watches truck drive by", "question": ["is there seated person ?"], "prompt": "seated person watches {} drive by"}, {"index": 33, "image_id": 2413114, "entity": "truck", "caption": "person of motorbike trails the truck", "question": ["is there person ?", "are there motorbike trails ?"], "prompt": "person of motorbike trails the {}"}, {"index": 34, "image_id": 2413114, "entity": "truck", "caption": "\"Three men rides on the front of a truck\"", "question": ["are there three men ?", "is there the front ?", "is there a truck ?"], "prompt": "\"Three men rides on the front of a {}\""}, {"index": 35, "image_id": 2413114, "entity": "truck", "caption": "Side view mirrors on dump truck.", "question": ["are there side view mirrors ?", "is there dump truck ?"], "prompt": "Side view mirrors on dump {}."}, {"index": 36, "image_id": 2413114, "entity": "truck", "caption": "Front left tire of dump truck.", "question": ["is there front left tire ?", "is there dump truck ?"], "prompt": "Front left tire of dump {}."}, {"index": 37, "image_id": 2410247, "entity": "truck", "caption": "Man driving the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man driving the {}."}, {"index": 38, "image_id": 2410156, "entity": "truck", "caption": "D I is on side of truck", "question": ["is there side ?", "is there truck ?"], "prompt": "D I is on side of {}"}, {"index": 39, "image_id": 2410114, "entity": "truck", "caption": "front head light on a fire truck", "question": ["is there front head light ?", "is there a fire truck ?"], "prompt": "front head light on a fire {}"}, {"index": 40, "image_id": 2409987, "entity": "truck", "caption": "the truck has windows", "question": ["is there the truck ?", "are there windows ?"], "prompt": "the {} has windows"}, {"index": 41, "image_id": 2409644, "entity": "truck", "caption": "Motorcycle parked next to semi truck.", "question": ["is there motorcycle ?", "is there semi truck ?"], "prompt": "Motorcycle parked next to semi {}."}, {"index": 42, "image_id": 2409644, "entity": "truck", "caption": "Woman standing next to semi truck.", "question": ["is there woman ?", "is there semi truck ?"], "prompt": "Woman standing next to semi {}."}, {"index": 43, "image_id": 2409644, "entity": "truck", "caption": "a woman is reaching into a truck compartment", "question": ["is there a woman ?", "is there a truck compartment ?"], "prompt": "a woman is reaching into a {} compartment"}, {"index": 44, "image_id": 2409644, "entity": "truck", "caption": "a kw grill cover on truck", "question": ["is there a kw grill cover ?", "is there truck ?"], "prompt": "a kw grill cover on {}"}, {"index": 45, "image_id": 2409644, "entity": "truck", "caption": "american flag painted truck", "question": ["is there truck ?"], "prompt": "american flag painted {}"}, {"index": 46, "image_id": 2409642, "entity": "truck", "caption": "the truck has a crane", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane"}, {"index": 47, "image_id": 2409642, "entity": "truck", "caption": "these are truck tires", "question": ["are there truck tires ?"], "prompt": "these are {} tires"}, {"index": 48, "image_id": 2409608, "entity": "truck", "caption": "Road in front of truck is gravel.", "question": ["is there road ?", "is there front ?", "is there truck ?", "is there gravel ?"], "prompt": "Road in front of {} is gravel."}, {"index": 49, "image_id": 2409326, "entity": "truck", "caption": "man bent over truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man bent over {}"}, {"index": 50, "image_id": 2409188, "entity": "truck", "caption": "The truck has a siren and lights on it.", "question": ["is there the truck ?", "is there a siren ?", "are there lights ?"], "prompt": "The {} has a siren and lights on it."}, {"index": 51, "image_id": 2409176, "entity": "truck", "caption": "Sedans are behind truck", "question": ["are there sedans ?", "is there truck ?"], "prompt": "Sedans are behind {}"}, {"index": 52, "image_id": 2408016, "entity": "truck", "caption": "The head lights on a truck", "question": ["is there the head ?", "is there a truck ?"], "prompt": "The head lights on a {}"}, {"index": 53, "image_id": 2408016, "entity": "truck", "caption": "Toyota sign in the front of the truck", "question": ["is there toyota sign ?", "is there the front ?", "is there the truck ?"], "prompt": "Toyota sign in the front of the {}"}, {"index": 54, "image_id": 2408016, "entity": "truck", "caption": "Gold writing on front of truck", "question": ["is there gold writing ?", "is there front ?", "is there truck ?"], "prompt": "Gold writing on front of {}"}, {"index": 55, "image_id": 2408012, "entity": "truck", "caption": "the truck has a headlight on the side", "question": ["is there the truck ?", "is there a headlight ?", "is there the side ?"], "prompt": "the {} has a headlight on the side"}, {"index": 56, "image_id": 2408003, "entity": "truck", "caption": "Two side view mirrors on the food truck.", "question": ["are there two side view mirrors ?", "is there the food truck ?"], "prompt": "Two side view mirrors on the food {}."}, {"index": 57, "image_id": 2407996, "entity": "truck", "caption": "two d's on a transfer truck", "question": ["is there two d ?", "is there a transfer truck ?"], "prompt": "two d's on a transfer {}"}, {"index": 58, "image_id": 2407996, "entity": "truck", "caption": "Name of the company written on the side of the truck", "question": ["is there name ?", "is there the company ?", "is there the side ?", "is there the truck ?"], "prompt": "Name of the company written on the side of the {}"}, {"index": 59, "image_id": 2407996, "entity": "truck", "caption": "Parking lights lit up on the truck", "question": ["are there parking lights ?", "is there the truck ?"], "prompt": "Parking lights lit up on the {}"}, {"index": 60, "image_id": 2407996, "entity": "truck", "caption": "Person standing next to the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "Person standing next to the {}"}, {"index": 61, "image_id": 2407996, "entity": "truck", "caption": "the truck has headlights", "question": ["is there the truck ?", "are there headlights ?"], "prompt": "the {} has headlights"}, {"index": 62, "image_id": 2407996, "entity": "truck", "caption": "the truck says \"Eddie Stobart\"", "question": ["is there the truck ?"], "prompt": "the {} says \"Eddie Stobart\""}, {"index": 63, "image_id": 2407879, "entity": "truck", "caption": "the word scania is on the front of the truck", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there the truck ?"], "prompt": "the word scania is on the front of the {}"}, {"index": 64, "image_id": 2407879, "entity": "truck", "caption": "emblem on truck says scania", "question": ["is there emblem ?", "is there truck ?"], "prompt": "emblem on {} says scania"}, {"index": 65, "image_id": 2407871, "entity": "truck", "caption": "The truck is on grass", "question": ["is there the truck ?", "is there grass ?"], "prompt": "The {} is on grass"}, {"index": 66, "image_id": 2407871, "entity": "truck", "caption": "a metal dog ornament on the truck", "question": ["is there a metal dog ornament ?", "is there the truck ?"], "prompt": "a metal dog ornament on the {}"}, {"index": 67, "image_id": 2407871, "entity": "truck", "caption": "old truck is beside a road", "question": ["is there old truck ?", "is there a road ?"], "prompt": "old {} is beside a road"}, {"index": 68, "image_id": 2407871, "entity": "truck", "caption": "truck is sitting in grass", "question": ["is there truck ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 69, "image_id": 2407871, "entity": "truck", "caption": "grass growing around truck", "question": ["is there grass ?", "is there truck ?"], "prompt": "grass growing around {}"}, {"index": 70, "image_id": 2407871, "entity": "truck", "caption": "truck has a red cab", "question": ["is there truck ?", "is there a red cab ?"], "prompt": "{} has a red cab"}, {"index": 71, "image_id": 2407871, "entity": "truck", "caption": "truck says mack on side", "question": ["is there truck ?", "is there side ?"], "prompt": "{} says mack on side"}, {"index": 72, "image_id": 2407871, "entity": "truck", "caption": "truck has headlights", "question": ["is there truck ?", "are there headlights ?"], "prompt": "{} has headlights"}, {"index": 73, "image_id": 2407784, "entity": "truck", "caption": "passer bys walking behind truck", "question": ["is there truck ?"], "prompt": "passer bys walking behind {}"}, {"index": 74, "image_id": 2407760, "entity": "truck", "caption": "the truck is red in color", "question": ["is there the truck ?", "is there color ?"], "prompt": "the {} is red in color"}, {"index": 75, "image_id": 2407760, "entity": "truck", "caption": "the truck is metallic", "question": ["is there the truck ?"], "prompt": "the {} is metallic"}, {"index": 76, "image_id": 2407551, "entity": "truck", "caption": "Makers logo on the truck nearest the camera", "question": ["are there makers ?", "is there the truck ?", "is there the camera ?"], "prompt": "Makers logo on the {} nearest the camera"}, {"index": 77, "image_id": 2407551, "entity": "truck", "caption": "chrome lettering front of truck", "question": ["is there chrome lettering front ?", "is there truck ?"], "prompt": "chrome lettering front of {}"}, {"index": 78, "image_id": 2407551, "entity": "truck", "caption": "truck has multiple wheels", "question": ["is there truck ?", "are there multiple wheels ?"], "prompt": "{} has multiple wheels"}, {"index": 79, "image_id": 2407551, "entity": "truck", "caption": "front bumper on truck is clean", "question": ["is there front bumper ?", "is there truck ?"], "prompt": "front bumper on {} is clean"}, {"index": 80, "image_id": 2407241, "entity": "truck", "caption": "Red stripe painted on the truck", "question": ["is there red stripe ?", "is there the truck ?"], "prompt": "Red stripe painted on the {}"}, {"index": 81, "image_id": 2407128, "entity": "truck", "caption": "trucks parked side to side", "question": ["are there trucks ?"], "prompt": "{}s parked side to side"}, {"index": 82, "image_id": 2407128, "entity": "truck", "caption": "fabric pulled over the tops of trucks", "question": ["is there fabric ?", "are there the tops ?", "are there trucks ?"], "prompt": "fabric pulled over the tops of {}s"}, {"index": 83, "image_id": 2407128, "entity": "truck", "caption": "sign on rope hanging off front of truck", "question": ["is there rope ?", "is there front ?", "is there truck ?"], "prompt": "sign on rope hanging off front of {}"}, {"index": 84, "image_id": 2407128, "entity": "truck", "caption": "Two trucks are on the grass.", "question": ["are there two trucks ?", "is there the grass ?"], "prompt": "Two {}s are on the grass."}, {"index": 85, "image_id": 2407128, "entity": "truck", "caption": "The number 9 is on the truck.", "question": ["is there the number ?", "is there the truck ?"], "prompt": "The number 9 is on the {}."}, {"index": 86, "image_id": 2407128, "entity": "truck", "caption": "The truck has a spare tire under the bed.", "question": ["is there the truck ?", "is there a spare tire ?", "is there the bed ?"], "prompt": "The {} has a spare tire under the bed."}, {"index": 87, "image_id": 2407128, "entity": "truck", "caption": "The truck has a fabric cover on the back.", "question": ["is there the truck ?", "is there a fabric cover ?", "is there the back ?"], "prompt": "The {} has a fabric cover on the back."}, {"index": 88, "image_id": 2407128, "entity": "truck", "caption": "A yellow and white sign is on a truck.", "question": ["is there a yellow and white sign ?", "is there a truck ?"], "prompt": "A yellow and white sign is on a {}."}, {"index": 89, "image_id": 2405965, "entity": "truck", "caption": "the side of the truck has lettering on it", "question": ["is there the side ?", "is there the truck ?"], "prompt": "the side of the {} has lettering on it"}, {"index": 90, "image_id": 2405965, "entity": "truck", "caption": "the truck is casting a shadow", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow"}, {"index": 91, "image_id": 2405965, "entity": "truck", "caption": "palm trees are behind the truck", "question": ["are there palm trees ?", "is there the truck ?"], "prompt": "palm trees are behind the {}"}, {"index": 92, "image_id": 2404753, "entity": "truck", "caption": "Window of truck is open", "question": ["is there window ?", "is there truck ?"], "prompt": "Window of {} is open"}, {"index": 93, "image_id": 2404626, "entity": "truck", "caption": "the flatbed truck is black", "question": ["is there the flatbed truck ?"], "prompt": "the flatbed {} is black"}, {"index": 94, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of a house", "question": ["is there the truck ?", "is there front ?", "is there a house ?"], "prompt": "the {} is in front of a house"}, {"index": 95, "image_id": 2404602, "entity": "truck", "caption": "the truck has a black bumper", "question": ["is there the truck ?", "is there a black bumper ?"], "prompt": "the {} has a black bumper"}, {"index": 96, "image_id": 2404602, "entity": "truck", "caption": "the truck has a logo on the back of it", "question": ["is there the truck ?", "is there a logo ?", "is there the back ?"], "prompt": "the {} has a logo on the back of it"}, {"index": 97, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of the house", "question": ["is there the truck ?", "is there front ?", "is there the house ?"], "prompt": "the {} is in front of the house"}, {"index": 98, "image_id": 2404338, "entity": "truck", "caption": "Person is on top of a truck", "question": ["is there person ?", "is there top ?", "is there a truck ?"], "prompt": "Person is on top of a {}"}, {"index": 99, "image_id": 2404315, "entity": "truck", "caption": "the bed of the truck has steel rails", "question": ["is there the bed ?", "is there the truck ?", "are there steel rails ?"], "prompt": "the bed of the {} has steel rails"}, {"index": 100, "image_id": 2404315, "entity": "truck", "caption": "the truck has mud flaps", "question": ["is there the truck ?", "are there mud flaps ?"], "prompt": "the {} has mud flaps"}, {"index": 101, "image_id": 2404315, "entity": "truck", "caption": "The back of the truck is holding an object", "question": ["is there the back ?", "is there the truck ?", "is there an object ?"], "prompt": "The back of the {} is holding an object"}, {"index": 102, "image_id": 2404315, "entity": "truck", "caption": "green grass growing around the truck", "question": ["is there green grass ?", "is there the truck ?"], "prompt": "green grass growing around the {}"}, {"index": 103, "image_id": 2403558, "entity": "truck", "caption": "road that truck is on", "question": ["is there road ?", "is there that truck ?"], "prompt": "road that {} is on"}, {"index": 104, "image_id": 2403322, "entity": "truck", "caption": "the wheels are on truck", "question": ["are there the wheels ?", "is there truck ?"], "prompt": "the wheels are on {}"}, {"index": 105, "image_id": 2403322, "entity": "truck", "caption": "mirror is on truck", "question": ["is there mirror ?", "is there truck ?"], "prompt": "mirror is on {}"}, {"index": 106, "image_id": 2402597, "entity": "truck", "caption": "Woman sits on border of truck", "question": ["is there woman ?", "is there border ?", "is there truck ?"], "prompt": "Woman sits on border of {}"}, {"index": 107, "image_id": 2402597, "entity": "truck", "caption": "Man sits in back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "Man sits in back of {}"}, {"index": 108, "image_id": 2402433, "entity": "truck", "caption": "A German shepherd is sitting in the back of a truck.", "question": ["is there a german shepherd ?", "is there the back ?", "is there a truck ?"], "prompt": "A German shepherd is sitting in the back of a {}."}, {"index": 109, "image_id": 2402276, "entity": "truck", "caption": "Kiddie fire truck merry go round", "question": ["is there kiddie fire truck merry ?"], "prompt": "Kiddie fire {} merry go round"}, {"index": 110, "image_id": 2402096, "entity": "truck", "caption": "Leaves painted onto a truck", "question": ["are there leaves ?", "is there a truck ?"], "prompt": "Leaves painted onto a {}"}, {"index": 111, "image_id": 2401997, "entity": "truck", "caption": "metal truck bed lid", "question": ["is there metal truck bed lid ?"], "prompt": "metal {} bed lid"}, {"index": 112, "image_id": 2401580, "entity": "truck", "caption": "flag mounted on the front of a truck", "question": ["is there flag ?", "is there the front ?", "is there a truck ?"], "prompt": "flag mounted on the front of a {}"}, {"index": 113, "image_id": 2401327, "entity": "truck", "caption": "the truck has a chalkboard", "question": ["is there the truck ?", "is there a chalkboard ?"], "prompt": "the {} has a chalkboard"}, {"index": 114, "image_id": 2401327, "entity": "truck", "caption": "the man is inside of the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "the man is inside of the {}"}, {"index": 115, "image_id": 2401327, "entity": "truck", "caption": "the truck's tire is black and red", "question": ["is there the truck's tire ?"], "prompt": "the {}'s tire is black and red"}, {"index": 116, "image_id": 2401207, "entity": "truck", "caption": "the truck is blue", "question": ["is there the truck ?"], "prompt": "the {} is blue"}, {"index": 117, "image_id": 2401207, "entity": "truck", "caption": "White head lights on truck.", "question": ["are there white head lights ?", "is there truck ?"], "prompt": "White head lights on {}."}, {"index": 118, "image_id": 2401199, "entity": "truck", "caption": "a round headlight on a truck", "question": ["is there a round headlight ?", "is there a truck ?"], "prompt": "a round headlight on a {}"}, {"index": 119, "image_id": 2401199, "entity": "truck", "caption": "Old red truck with a license plate that says HENRE.", "question": ["is there old red truck ?", "is there a license plate ?", "is there henre ?"], "prompt": "Old red {} with a license plate that says HENRE."}, {"index": 120, "image_id": 2400775, "entity": "truck", "caption": "camo armored pick up truck", "question": ["is there truck ?"], "prompt": "camo armored pick up {}"}, {"index": 121, "image_id": 2400775, "entity": "truck", "caption": "white skull painted on truck", "question": ["is there white skull ?", "is there truck ?"], "prompt": "white skull painted on {}"}, {"index": 122, "image_id": 2400768, "entity": "truck", "caption": "the truck has huge tires", "question": ["is there the truck ?", "are there huge tires ?"], "prompt": "the {} has huge tires"}, {"index": 123, "image_id": 2400768, "entity": "truck", "caption": "people are watching the truck go by", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are watching the {} go by"}, {"index": 124, "image_id": 2400768, "entity": "truck", "caption": "the truck has yellow lights", "question": ["is there the truck ?", "are there yellow lights ?"], "prompt": "the {} has yellow lights"}, {"index": 125, "image_id": 2400768, "entity": "truck", "caption": "Military truck driving down street.", "question": ["is there military truck ?", "is there street ?"], "prompt": "Military {} driving down street."}, {"index": 126, "image_id": 2400633, "entity": "truck", "caption": "the engine compartment on a truck.", "question": ["is there the engine compartment ?", "is there a truck ?"], "prompt": "the engine compartment on a {}."}, {"index": 127, "image_id": 2400633, "entity": "truck", "caption": "silver spot on the truck where paint has faded ", "question": ["is there silver spot ?", "is there the truck ?", "is there paint ?"], "prompt": "silver spot on the {} where paint has faded "}, {"index": 128, "image_id": 2400606, "entity": "truck", "caption": "a silver right headlight on an old truck", "question": ["is there a silver right headlight ?", "is there an old truck ?"], "prompt": "a silver right headlight on an old {}"}, {"index": 129, "image_id": 2400606, "entity": "truck", "caption": "the truck has 2 lights on front of it", "question": ["is there the truck ?", "are there 2 lights ?", "is there front ?"], "prompt": "the {} has 2 lights on front of it"}, {"index": 130, "image_id": 2400606, "entity": "truck", "caption": "straw is under the truck", "question": ["is there straw ?", "is there the truck ?"], "prompt": "straw is under the {}"}, {"index": 131, "image_id": 2400606, "entity": "truck", "caption": "the truck's bumper is falling off", "question": ["is there the truck's bumper ?"], "prompt": "the {}'s bumper is falling off"}, {"index": 132, "image_id": 2400599, "entity": "truck", "caption": "Side of truck is blue", "question": ["is there side ?", "is there truck ?"], "prompt": "Side of {} is blue"}, {"index": 133, "image_id": 2400599, "entity": "truck", "caption": "blue car parked behind a truck", "question": ["is there blue car ?", "is there a truck ?"], "prompt": "blue car parked behind a {}"}, {"index": 134, "image_id": 2400509, "entity": "truck", "caption": "front left tire on the truck", "question": ["is there front left tire ?", "is there the truck ?"], "prompt": "front left tire on the {}"}, {"index": 135, "image_id": 2400509, "entity": "truck", "caption": "front left mirror on the truck", "question": ["is there front left mirror ?", "is there the truck ?"], "prompt": "front left mirror on the {}"}, {"index": 136, "image_id": 2400509, "entity": "truck", "caption": "the man has a white truck", "question": ["is there the man ?", "is there a white truck ?"], "prompt": "the man has a white {}"}, {"index": 137, "image_id": 2400346, "entity": "truck", "caption": "man driving a pick-up truck", "question": ["is there man ?", "is there a pick-up truck ?"], "prompt": "man driving a pick-up {}"}, {"index": 138, "image_id": 2400346, "entity": "truck", "caption": "man is driving a bluish gray truck", "question": ["is there man ?", "is there a bluish gray truck ?"], "prompt": "man is driving a bluish gray {}"}, {"index": 139, "image_id": 2400304, "entity": "truck", "caption": "Man on street looking at truck", "question": ["is there man ?", "is there street ?", "is there truck ?"], "prompt": "Man on street looking at {}"}, {"index": 140, "image_id": 2400304, "entity": "truck", "caption": "Blue shirt on man looking at truck", "question": ["is there blue shirt ?", "is there man ?", "is there truck ?"], "prompt": "Blue shirt on man looking at {}"}, {"index": 141, "image_id": 2400304, "entity": "truck", "caption": "Black hat on man looking at truck", "question": ["is there black hat ?", "is there man ?", "is there truck ?"], "prompt": "Black hat on man looking at {}"}, {"index": 142, "image_id": 2400304, "entity": "truck", "caption": "Watch on man looking at truck", "question": ["is there man ?", "is there truck ?"], "prompt": "Watch on man looking at {}"}, {"index": 143, "image_id": 2400304, "entity": "truck", "caption": "The man standing next to the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "The man standing next to the {}"}, {"index": 144, "image_id": 2400304, "entity": "truck", "caption": "The women reflected on the truck", "question": ["are there the women ?", "is there the truck ?"], "prompt": "The women reflected on the {}"}, {"index": 145, "image_id": 2400304, "entity": "truck", "caption": "Tall man is looking at truck", "question": ["is there tall man ?", "is there truck ?"], "prompt": "Tall man is looking at {}"}, {"index": 146, "image_id": 2399870, "entity": "truck", "caption": "a sign is on the side of the truck", "question": ["is there a sign ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign is on the side of the {}"}, {"index": 147, "image_id": 2399870, "entity": "truck", "caption": "a number is on the side of the truck", "question": ["is there a number ?", "is there the side ?", "is there the truck ?"], "prompt": "a number is on the side of the {}"}, {"index": 148, "image_id": 2399870, "entity": "truck", "caption": "an exhaust system is on the side of the truck", "question": ["is there an exhaust system ?", "is there the side ?", "is there the truck ?"], "prompt": "an exhaust system is on the side of the {}"}, {"index": 149, "image_id": 2399764, "entity": "truck", "caption": "A truck is in the background.", "question": ["is there a truck ?", "is there the background ?"], "prompt": "A {} is in the background."}, {"index": 150, "image_id": 2398894, "entity": "truck", "caption": "black truck with hard bed cover", "question": ["is there black truck ?", "is there hard bed ?"], "prompt": "black {} with hard bed cover"}, {"index": 151, "image_id": 2398630, "entity": "truck", "caption": "a bus that has collided with truck", "question": ["is there a bus ?", "is there truck ?"], "prompt": "a bus that has collided with {}"}, {"index": 152, "image_id": 2398143, "entity": "truck", "caption": "transfer trucks windshield", "question": ["are there trucks ?"], "prompt": "transfer {}s windshield"}, {"index": 153, "image_id": 2398143, "entity": "truck", "caption": "the front left tire of a truck", "question": ["is there tire ?", "is there a truck ?"], "prompt": "the front left tire of a {}"}, {"index": 154, "image_id": 2398143, "entity": "truck", "caption": "front of truck is red", "question": ["is there front ?", "is there truck ?"], "prompt": "front of {} is red"}, {"index": 155, "image_id": 2398143, "entity": "truck", "caption": "lights on truck are orange", "question": ["are there lights ?", "is there truck ?"], "prompt": "lights on {} are orange"}, {"index": 156, "image_id": 2398143, "entity": "truck", "caption": "truck has gray stripes", "question": ["is there truck ?", "are there gray stripes ?"], "prompt": "{} has gray stripes"}, {"index": 157, "image_id": 2398143, "entity": "truck", "caption": "two silver stripes painted on the front of the truck", "question": ["are there two silver stripes ?", "is there the front ?", "is there the truck ?"], "prompt": "two silver stripes painted on the front of the {}"}, {"index": 158, "image_id": 2398030, "entity": "truck", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice cars and {}s lined up"}, {"index": 159, "image_id": 2397835, "entity": "truck", "caption": "the sculpture is in the bed of a truck", "question": ["is there the sculpture ?", "is there the bed ?", "is there a truck ?"], "prompt": "the sculpture is in the bed of a {}"}, {"index": 160, "image_id": 2397835, "entity": "truck", "caption": "WILD IN ART is on the back of the truck", "question": ["is there art ?", "is there the back ?", "is there the truck ?"], "prompt": "WILD IN ART is on the back of the {}"}, {"index": 161, "image_id": 2397058, "entity": "truck", "caption": "cardboard boxes piled high on truck", "question": ["are there cardboard boxes ?", "is there truck ?"], "prompt": "cardboard boxes piled high on {}"}, {"index": 162, "image_id": 2397058, "entity": "truck", "caption": "man in plaid shirt leaning over truck", "question": ["is there man ?", "is there plaid shirt ?", "is there truck ?"], "prompt": "man in plaid shirt leaning over {}"}, {"index": 163, "image_id": 2397049, "entity": "truck", "caption": "Teddy bear on front of truck", "question": ["is there front ?", "is there truck ?"], "prompt": "Teddy bear on front of {}"}, {"index": 164, "image_id": 2397049, "entity": "truck", "caption": "Head lights front of truck", "question": ["are there head lights ?", "is there truck ?"], "prompt": "Head lights front of {}"}, {"index": 165, "image_id": 2396831, "entity": "truck", "caption": "the trucks headlights are off", "question": ["are there the trucks headlights ?"], "prompt": "the {}s headlights are off"}, {"index": 166, "image_id": 2396726, "entity": "truck", "caption": "truck tires have two different types of white hubcaps", "question": ["are there truck tires ?", "are there two different types ?", "are there white hubcaps ?"], "prompt": "{} tires have two different types of white hubcaps"}, {"index": 167, "image_id": 2396726, "entity": "truck", "caption": "sedan behind truck has obama '08 poster on front above license plate", "question": ["is there truck ?", "is there obama '08 poster ?", "is there front ?", "is there license plate ?"], "prompt": "sedan behind {} has obama '08 poster on front above license plate"}, {"index": 168, "image_id": 2396726, "entity": "truck", "caption": "drivers side truck headlight", "question": ["are there drivers ?"], "prompt": "drivers side {} headlight"}, {"index": 169, "image_id": 2396433, "entity": "truck", "caption": "A man spray paints the truck.", "question": ["is there a man ?", "is there the truck ?"], "prompt": "A man spray paints the {}."}, {"index": 170, "image_id": 2396312, "entity": "truck", "caption": "the truck rim is red", "question": ["is there the truck rim ?"], "prompt": "the {} rim is red"}, {"index": 171, "image_id": 2396312, "entity": "truck", "caption": "it is the door on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "it is the door on the {}"}, {"index": 172, "image_id": 2396121, "entity": "truck", "caption": "Gigi writing on truck.", "question": ["is there truck ?"], "prompt": "Gigi writing on {}."}, {"index": 173, "image_id": 2396121, "entity": "truck", "caption": "Menu hanging from truck.", "question": ["is there menu ?", "is there truck ?"], "prompt": "Menu hanging from {}."}, {"index": 174, "image_id": 2395929, "entity": "truck", "caption": "the horse is on a truck", "question": ["is there the horse ?", "is there a truck ?"], "prompt": "the horse is on a {}"}, {"index": 175, "image_id": 2395902, "entity": "truck", "caption": "Big blue parked truck.", "question": ["is there big blue parked truck ?"], "prompt": "Big blue parked {}."}, {"index": 176, "image_id": 2395902, "entity": "truck", "caption": "Long white truck parked.", "question": ["is there long white truck ?"], "prompt": "Long white {} parked."}, {"index": 177, "image_id": 2395835, "entity": "truck", "caption": "passenger handle inside truck", "question": ["is there passenger handle ?", "is there truck ?"], "prompt": "passenger handle inside {}"}, {"index": 178, "image_id": 2395835, "entity": "truck", "caption": "a man in the truck is wearing red", "question": ["is there a man ?", "is there the truck ?", "is there red ?"], "prompt": "a man in the {} is wearing red"}, {"index": 179, "image_id": 2395835, "entity": "truck", "caption": "two people are in the truck", "question": ["are there two people ?", "is there the truck ?"], "prompt": "two people are in the {}"}, {"index": 180, "image_id": 2395411, "entity": "truck", "caption": "emergency lights are on top of the truck", "question": ["are there emergency lights ?", "is there top ?", "is there the truck ?"], "prompt": "emergency lights are on top of the {}"}, {"index": 181, "image_id": 2395408, "entity": "truck", "caption": "headlights of food truck are off", "question": ["are there headlights ?", "is there food truck ?"], "prompt": "headlights of food {} are off"}, {"index": 182, "image_id": 2395292, "entity": "truck", "caption": "wheels of the truck are red and chrome", "question": ["are there wheels ?", "is there the truck ?"], "prompt": "wheels of the {} are red and chrome"}, {"index": 183, "image_id": 2395292, "entity": "truck", "caption": "bed of truck is wooden", "question": ["is there bed ?", "is there truck ?"], "prompt": "bed of {} is wooden"}, {"index": 184, "image_id": 2395292, "entity": "truck", "caption": "truck has a side mirror", "question": ["is there truck ?", "is there a side mirror ?"], "prompt": "{} has a side mirror"}, {"index": 185, "image_id": 2395292, "entity": "truck", "caption": "truck door has no handle", "question": ["is there truck door ?", "is there no handle ?"], "prompt": "{} door has no handle"}, {"index": 186, "image_id": 2395042, "entity": "truck", "caption": "The truck door is open. ", "question": ["is there the truck door ?"], "prompt": "The {} door is open. "}, {"index": 187, "image_id": 2395042, "entity": "truck", "caption": "The driver is getting into the truck. ", "question": ["is there the driver ?", "is there the truck ?"], "prompt": "The driver is getting into the {}. "}, {"index": 188, "image_id": 2395042, "entity": "truck", "caption": "The truck is carrying cattle. ", "question": ["is there the truck ?", "are there cattle ?"], "prompt": "The {} is carrying cattle. "}, {"index": 189, "image_id": 2395042, "entity": "truck", "caption": "The truck's shadow is on the street.", "question": ["is there the truck's shadow ?", "is there the street ?"], "prompt": "The {}'s shadow is on the street."}, {"index": 190, "image_id": 2395042, "entity": "truck", "caption": "door of truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "door of {} is open"}, {"index": 191, "image_id": 2394987, "entity": "truck", "caption": "a sign on the side of a truck that says Drink Coca-Cola", "question": ["is there a sign ?", "is there the side ?", "is there a truck ?"], "prompt": "a sign on the side of a {} that says Drink Coca-Cola"}, {"index": 192, "image_id": 2394972, "entity": "truck", "caption": "the truck has a light", "question": ["is there the truck ?", "is there a light ?"], "prompt": "the {} has a light"}, {"index": 193, "image_id": 2394972, "entity": "truck", "caption": "the truck has a windshield", "question": ["is there the truck ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 194, "image_id": 2394854, "entity": "truck", "caption": "the truck has a green logo", "question": ["is there the truck ?", "is there a green logo ?"], "prompt": "the {} has a green logo"}, {"index": 195, "image_id": 2394854, "entity": "truck", "caption": "emergency lights are on the truck", "question": ["are there emergency lights ?", "is there the truck ?"], "prompt": "emergency lights are on the {}"}, {"index": 196, "image_id": 2394854, "entity": "truck", "caption": "a side mirror is on the truck", "question": ["is there a side mirror ?", "is there the truck ?"], "prompt": "a side mirror is on the {}"}, {"index": 197, "image_id": 2394740, "entity": "truck", "caption": "Honda emblem on the back of a gry truck", "question": ["is there the back ?", "is there a gry truck ?"], "prompt": "Honda emblem on the back of a gry {}"}, {"index": 198, "image_id": 2394740, "entity": "truck", "caption": "the truck is a honda", "question": ["is there the truck ?"], "prompt": "the {} is a honda"}, {"index": 199, "image_id": 2394740, "entity": "truck", "caption": "the truck has 4wd", "question": ["is there the truck ?", "is there 4wd ?"], "prompt": "the {} has 4wd"}, {"index": 200, "image_id": 2394327, "entity": "truck", "caption": "metal ladder sitting beside truck", "question": ["is there metal ladder ?", "is there truck ?"], "prompt": "metal ladder sitting beside {}"}, {"index": 201, "image_id": 2394327, "entity": "truck", "caption": "bottom on red crane attached to back of truck", "question": ["is there bottom ?", "is there red crane ?", "is there truck ?"], "prompt": "bottom on red crane attached to back of {}"}, {"index": 202, "image_id": 2393999, "entity": "truck", "caption": "The front of the truck is yellow.", "question": ["is there the front ?", "is there the truck ?"], "prompt": "The front of the {} is yellow."}, {"index": 203, "image_id": 2393989, "entity": "truck", "caption": "End of truck where garbage enters.", "question": ["is there end ?", "is there truck ?", "is there garbage ?"], "prompt": "End of {} where garbage enters."}, {"index": 204, "image_id": 2393842, "entity": "truck", "caption": "The people are looking at the truck.", "question": ["are there the people ?", "is there the truck ?"], "prompt": "The people are looking at the {}."}, {"index": 205, "image_id": 2393686, "entity": "truck", "caption": "The fire trucks windshield.", "question": ["are there the fire trucks ?"], "prompt": "The fire {}s windshield."}, {"index": 206, "image_id": 2393686, "entity": "truck", "caption": "A license plate is on the truck", "question": ["is there a license plate ?", "is there the truck ?"], "prompt": "A license plate is on the {}"}, {"index": 207, "image_id": 2393686, "entity": "truck", "caption": "License plate on front of firetruck that reads S360 ATO", "question": ["is there license plate ?", "is there front ?", "is there firetruck ?"], "prompt": "License plate on front of fire{} that reads S360 ATO"}, {"index": 208, "image_id": 2393548, "entity": "truck", "caption": "The bucket is dumping dirt into the truck", "question": ["is there the bucket ?", "is there dirt ?", "is there the truck ?"], "prompt": "The bucket is dumping dirt into the {}"}, {"index": 209, "image_id": 2393548, "entity": "truck", "caption": "These are the trucks front wheels", "question": ["are there the trucks ?", "are there front wheels ?"], "prompt": "These are the {}s front wheels"}, {"index": 210, "image_id": 2393548, "entity": "truck", "caption": "This is the cab of the truck", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "This is the cab of the {}"}, {"index": 211, "image_id": 2393263, "entity": "truck", "caption": "Ribbons tied around the mirror of a utility truck", "question": ["are there ribbons ?", "is there the mirror ?", "is there a utility truck ?"], "prompt": "Ribbons tied around the mirror of a utility {}"}, {"index": 212, "image_id": 2392926, "entity": "truck", "caption": "man driving large truck", "question": ["is there man ?", "is there large truck ?"], "prompt": "man driving large {}"}, {"index": 213, "image_id": 2392536, "entity": "truck", "caption": "front wheel of truck is black", "question": ["is there front wheel ?", "is there truck ?"], "prompt": "front wheel of {} is black"}, {"index": 214, "image_id": 2392536, "entity": "truck", "caption": "back wheel of truck is big", "question": ["is there back wheel ?", "is there truck ?"], "prompt": "back wheel of {} is big"}, {"index": 215, "image_id": 2392536, "entity": "truck", "caption": "The truck has a lady painted on it", "question": ["is there the truck ?", "is there a lady ?"], "prompt": "The {} has a lady painted on it"}, {"index": 216, "image_id": 2392394, "entity": "truck", "caption": "the front headlight on the truck", "question": ["is there the front headlight ?", "is there the truck ?"], "prompt": "the front headlight on the {}"}, {"index": 217, "image_id": 2392394, "entity": "truck", "caption": "man standing behind the truck", "question": ["is there man ?", "is there the truck ?"], "prompt": "man standing behind the {}"}, {"index": 218, "image_id": 2392105, "entity": "truck", "caption": "The windhield wipers are on the truck.", "question": ["are there the windhield wipers ?", "is there the truck ?"], "prompt": "The windhield wipers are on the {}."}, {"index": 219, "image_id": 2391764, "entity": "truck", "caption": "tires on truck are black", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires on {} are black"}, {"index": 220, "image_id": 2391651, "entity": "truck", "caption": "the pickup truck is on the street", "question": ["is there the pickup truck ?", "is there the street ?"], "prompt": "the pickup {} is on the street"}, {"index": 221, "image_id": 2391651, "entity": "truck", "caption": "person seemingly trying to get into truck", "question": ["is there person ?", "is there truck ?"], "prompt": "person seemingly trying to get into {}"}, {"index": 222, "image_id": 2391651, "entity": "truck", "caption": "The right side view mirrors on the truck.", "question": ["are there the right side view mirrors ?", "is there the truck ?"], "prompt": "The right side view mirrors on the {}."}, {"index": 223, "image_id": 2391651, "entity": "truck", "caption": "The front tire on the side of the truck that the door is open.", "question": ["is there the front tire ?", "is there the side ?", "is there the truck ?", "is there the door ?"], "prompt": "The front tire on the side of the {} that the door is open."}, {"index": 224, "image_id": 2391651, "entity": "truck", "caption": "front left tire of green truck", "question": ["is there front left tire ?", "is there green truck ?"], "prompt": "front left tire of green {}"}, {"index": 225, "image_id": 2391128, "entity": "truck", "caption": "Dead tree branch hanging out of the truck.", "question": ["is there dead tree branch ?", "is there the truck ?"], "prompt": "Dead tree branch hanging out of the {}."}, {"index": 226, "image_id": 2391128, "entity": "truck", "caption": "Large truck driving down the road.", "question": ["is there large truck ?", "is there the road ?"], "prompt": "Large {} driving down the road."}, {"index": 227, "image_id": 2391063, "entity": "truck", "caption": "clear truck head light", "question": ["is there clear truck head light ?"], "prompt": "clear {} head light"}, {"index": 228, "image_id": 2390018, "entity": "truck", "caption": "Black woman painted on truck", "question": ["is there black woman ?", "is there truck ?"], "prompt": "Black woman painted on {}"}, {"index": 229, "image_id": 2390018, "entity": "truck", "caption": "female character painted on truck", "question": ["is there female character ?", "is there truck ?"], "prompt": "female character painted on {}"}, {"index": 230, "image_id": 2389846, "entity": "truck", "caption": "Driver's side window rolled up on truck", "question": ["is there driver's side window ?", "is there truck ?"], "prompt": "Driver's side window rolled up on {}"}, {"index": 231, "image_id": 2389498, "entity": "truck", "caption": "red pick up truck parked on a street", "question": ["is there truck ?", "is there a street ?"], "prompt": "red pick up {} parked on a street"}, {"index": 232, "image_id": 2389435, "entity": "truck", "caption": "ladder coming out of the truck", "question": ["is there ladder ?", "is there the truck ?"], "prompt": "ladder coming out of the {}"}, {"index": 233, "image_id": 2389435, "entity": "truck", "caption": "kid standing on truck.", "question": ["is there kid ?", "is there truck ?"], "prompt": "kid standing on {}."}, {"index": 234, "image_id": 2389256, "entity": "truck", "caption": "The dishes are on the truck.", "question": ["are there the dishes ?", "is there the truck ?"], "prompt": "The dishes are on the {}."}, {"index": 235, "image_id": 2389256, "entity": "truck", "caption": "Two dishes are on the truck.", "question": ["are there two dishes ?", "is there the truck ?"], "prompt": "Two dishes are on the {}."}, {"index": 236, "image_id": 2389256, "entity": "truck", "caption": "dark container next to truck", "question": ["is there dark container ?", "is there truck ?"], "prompt": "dark container next to {}"}, {"index": 237, "image_id": 2389232, "entity": "truck", "caption": "a black truck bed cover", "question": ["is there a black truck bed ?"], "prompt": "a black {} bed cover"}, {"index": 238, "image_id": 2389232, "entity": "truck", "caption": "the trucks name DUDE", "question": ["are there the trucks ?", "is there dude ?"], "prompt": "the {}s name DUDE"}, {"index": 239, "image_id": 2389232, "entity": "truck", "caption": "truck bed has a black cover", "question": ["is there truck bed ?", "is there a black cover ?"], "prompt": "{} bed has a black cover"}, {"index": 240, "image_id": 2389232, "entity": "truck", "caption": "Hood of truck is open.", "question": ["is there hood ?", "is there truck ?"], "prompt": "Hood of {} is open."}, {"index": 241, "image_id": 2388587, "entity": "truck", "caption": "person walking near massive truck", "question": ["is there person ?", "is there massive truck ?"], "prompt": "person walking near massive {}"}, {"index": 242, "image_id": 2388482, "entity": "truck", "caption": "two dogs are standing in the back of a truck", "question": ["are there two dogs ?", "is there the back ?", "is there a truck ?"], "prompt": "two dogs are standing in the back of a {}"}, {"index": 243, "image_id": 2388482, "entity": "truck", "caption": "two dogs are peering over a truck cab", "question": ["are there two dogs ?", "is there a truck cab ?"], "prompt": "two dogs are peering over a {} cab"}, {"index": 244, "image_id": 2388482, "entity": "truck", "caption": "SIERRA is on the back of truck", "question": ["is there the back ?", "is there truck ?"], "prompt": "SIERRA is on the back of {}"}, {"index": 245, "image_id": 2388482, "entity": "truck", "caption": "sierra make on truck", "question": ["is there truck ?"], "prompt": "sierra make on {}"}, {"index": 246, "image_id": 2388392, "entity": "truck", "caption": "People are standing by the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "People are standing by the {}"}, {"index": 247, "image_id": 2388286, "entity": "truck", "caption": "The ladder is on the truck.", "question": ["is there the ladder ?", "is there the truck ?"], "prompt": "The ladder is on the {}."}, {"index": 248, "image_id": 2388286, "entity": "truck", "caption": "The paper on the truck is white.", "question": ["is there the paper ?", "is there the truck ?"], "prompt": "The paper on the {} is white."}, {"index": 249, "image_id": 2388286, "entity": "truck", "caption": "The ladders are on top of the truck", "question": ["are there the ladders ?", "is there top ?", "is there the truck ?"], "prompt": "The ladders are on top of the {}"}, {"index": 250, "image_id": 2388153, "entity": "truck", "caption": "Steel bed cover on pickup truck", "question": ["is there steel bed cover ?", "is there pickup truck ?"], "prompt": "Steel bed cover on pickup {}"}, {"index": 251, "image_id": 2388153, "entity": "truck", "caption": "Manufacturer emblem of a pickup truck", "question": ["is there manufacturer emblem ?", "is there a pickup truck ?"], "prompt": "Manufacturer emblem of a pickup {}"}, {"index": 252, "image_id": 2388153, "entity": "truck", "caption": "the truck has a bed cover", "question": ["is there the truck ?", "is there a bed cover ?"], "prompt": "the {} has a bed cover"}, {"index": 253, "image_id": 2387414, "entity": "truck", "caption": "green grass growing beside truck", "question": ["is there green grass ?", "is there truck ?"], "prompt": "green grass growing beside {}"}, {"index": 254, "image_id": 2387347, "entity": "truck", "caption": "Leaveless branches hang down in front of the truck", "question": ["are there leaveless branches ?", "is there front ?", "is there the truck ?"], "prompt": "Leaveless branches hang down in front of the {}"}, {"index": 255, "image_id": 2387347, "entity": "truck", "caption": "God is love is painted across the truck's front bumper", "question": ["is there love ?", "is there the truck's front bumper ?"], "prompt": "God is love is painted across the {}'s front bumper"}, {"index": 256, "image_id": 2387056, "entity": "truck", "caption": "Name of company written on truck.", "question": ["is there name ?", "is there company ?", "is there truck ?"], "prompt": "Name of company written on {}."}, {"index": 257, "image_id": 2386762, "entity": "truck", "caption": "silver metal door handle on truck", "question": ["is there silver metal door ?", "is there truck ?"], "prompt": "silver metal door handle on {}"}, {"index": 258, "image_id": 2386762, "entity": "truck", "caption": "Trees are behind the truck.", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are behind the {}."}, {"index": 259, "image_id": 2386704, "entity": "truck", "caption": "a garbage can next to the truck", "question": ["is there a garbage ?", "is there the truck ?"], "prompt": "a garbage can next to the {}"}, {"index": 260, "image_id": 2386704, "entity": "truck", "caption": "A cooler is on the truck", "question": ["is there the truck ?"], "prompt": "A cooler is on the {}"}, {"index": 261, "image_id": 2386704, "entity": "truck", "caption": "A menu is on the side of the truck", "question": ["is there a menu ?", "is there the side ?", "is there the truck ?"], "prompt": "A menu is on the side of the {}"}, {"index": 262, "image_id": 2386704, "entity": "truck", "caption": "A trash can is beside the truck", "question": ["is there a trash can ?", "is there the truck ?"], "prompt": "A trash can is beside the {}"}, {"index": 263, "image_id": 2386704, "entity": "truck", "caption": "A sign is on top of the truck", "question": ["is there a sign ?", "is there top ?", "is there the truck ?"], "prompt": "A sign is on top of the {}"}, {"index": 264, "image_id": 2386704, "entity": "truck", "caption": "food truck parked next to sidewalk", "question": ["is there food truck ?"], "prompt": "food {} parked next to sidewalk"}, {"index": 265, "image_id": 2386704, "entity": "truck", "caption": "lined trash can leaning againt food truck", "question": ["is there trash ?", "is there againt food truck ?"], "prompt": "lined trash can leaning againt food {}"}, {"index": 266, "image_id": 2386704, "entity": "truck", "caption": "Trash can outside of truck", "question": ["is there truck ?"], "prompt": "Trash can outside of {}"}, {"index": 267, "image_id": 2386545, "entity": "truck", "caption": "dirt splashed on side of truck door", "question": ["is there dirt ?", "is there side ?", "is there truck ?"], "prompt": "dirt splashed on side of {} door"}, {"index": 268, "image_id": 2386451, "entity": "truck", "caption": "roof rack on top of pickup truck", "question": ["is there roof rack ?", "is there top ?", "is there pickup truck ?"], "prompt": "roof rack on top of pickup {}"}, {"index": 269, "image_id": 2386451, "entity": "truck", "caption": "The truck is towing a boat", "question": ["is there the truck ?", "is there a boat ?"], "prompt": "The {} is towing a boat"}, {"index": 270, "image_id": 2385966, "entity": "truck", "caption": "The truck has a red logo on it.", "question": ["is there the truck ?", "is there a red logo ?"], "prompt": "The {} has a red logo on it."}, {"index": 271, "image_id": 2385966, "entity": "truck", "caption": "the caution lights on a truck", "question": ["are there the caution lights ?", "is there a truck ?"], "prompt": "the caution lights on a {}"}, {"index": 272, "image_id": 2385580, "entity": "truck", "caption": "Couch is riding in truck bed", "question": ["is there couch ?", "is there truck bed ?"], "prompt": "Couch is riding in {} bed"}, {"index": 273, "image_id": 2385580, "entity": "truck", "caption": "power lines hang above truck", "question": ["are there power lines ?", "is there truck ?"], "prompt": "power lines hang above {}"}, {"index": 274, "image_id": 2385580, "entity": "truck", "caption": "the couch sits in the back of a pickup truck", "question": ["is there the couch ?", "is there the back ?", "is there a pickup truck ?"], "prompt": "the couch sits in the back of a pickup {}"}, {"index": 275, "image_id": 2385580, "entity": "truck", "caption": "door handle on the truck door", "question": ["is there door ?", "is there the truck door ?"], "prompt": "door handle on the {} door"}, {"index": 276, "image_id": 2385559, "entity": "truck", "caption": "Gold writing on the front of the fire truck", "question": ["is there gold writing ?", "is there the front ?", "is there the fire truck ?"], "prompt": "Gold writing on the front of the fire {}"}, {"index": 277, "image_id": 2385559, "entity": "truck", "caption": "A firetruck is on a road.", "question": ["is there a firetruck ?", "is there a road ?"], "prompt": "A fire{} is on a road."}, {"index": 278, "image_id": 2385559, "entity": "truck", "caption": "The word \" PLAINS \" is on the front of a firetruck.", "question": ["is there the word ?", "are there \" plains ?", "is there the front ?", "is there a firetruck ?"], "prompt": "The word \" PLAINS \" is on the front of a fire{}."}, {"index": 279, "image_id": 2385559, "entity": "truck", "caption": "A street sign is above a firetruck.", "question": ["is there a street sign ?", "is there a firetruck ?"], "prompt": "A street sign is above a fire{}."}, {"index": 280, "image_id": 2385527, "entity": "truck", "caption": "red chef stenciled on side of truck", "question": ["is there red chef ?", "is there side ?", "is there truck ?"], "prompt": "red chef stenciled on side of {}"}, {"index": 281, "image_id": 2384523, "entity": "truck", "caption": "tires of truck painted", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires of {} painted"}, {"index": 282, "image_id": 2384523, "entity": "truck", "caption": "red painted bible sign on truck", "question": ["is there bible sign ?", "is there truck ?"], "prompt": "red painted bible sign on {}"}, {"index": 283, "image_id": 2384073, "entity": "truck", "caption": "Ice hanging from the front of truck", "question": ["is there ice ?", "is there the front ?", "is there truck ?"], "prompt": "Ice hanging from the front of {}"}, {"index": 284, "image_id": 2383911, "entity": "truck", "caption": "The word Challenge on the truck.", "question": ["is there the word challenge ?", "is there the truck ?"], "prompt": "The word Challenge on the {}."}, {"index": 285, "image_id": 2383909, "entity": "truck", "caption": "The bananas are in the truck bed", "question": ["are there the bananas ?", "is there the truck bed ?"], "prompt": "The bananas are in the {} bed"}, {"index": 286, "image_id": 2383743, "entity": "truck", "caption": "A truck is carrying merchandise", "question": ["is there a truck ?", "is there merchandise ?"], "prompt": "A {} is carrying merchandise"}, {"index": 287, "image_id": 2383743, "entity": "truck", "caption": "lights hanging off the back of the truck", "question": ["are there lights ?", "is there the back ?", "is there the truck ?"], "prompt": "lights hanging off the back of the {}"}, {"index": 288, "image_id": 2383315, "entity": "truck", "caption": "The fire truck is on the street", "question": ["is there the fire truck ?", "is there the street ?"], "prompt": "The fire {} is on the street"}, {"index": 289, "image_id": 2382893, "entity": "truck", "caption": "big lugs encircle a rear truck tire", "question": ["are there big lugs ?", "is there a rear truck tire ?"], "prompt": "big lugs encircle a rear {} tire"}, {"index": 290, "image_id": 2382893, "entity": "truck", "caption": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow truck", "question": ["are there present viewers' line ?", "is there site ?", "is there end ?", "is there yellow truck ?"], "prompt": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow {}"}, {"index": 291, "image_id": 2382893, "entity": "truck", "caption": "truck has a cover on back", "question": ["is there truck ?", "is there a cover ?"], "prompt": "{} has a cover on back"}, {"index": 292, "image_id": 2382893, "entity": "truck", "caption": "the cover is on the back of a truck", "question": ["is there the cover ?", "is there the back ?", "is there a truck ?"], "prompt": "the cover is on the back of a {}"}, {"index": 293, "image_id": 2382893, "entity": "truck", "caption": "the truck has some black letters on it", "question": ["is there the truck ?", "are there some black letters ?"], "prompt": "the {} has some black letters on it"}, {"index": 294, "image_id": 2382779, "entity": "truck", "caption": "the spare tire is on the truck", "question": ["is there the spare tire ?", "is there the truck ?"], "prompt": "the spare tire is on the {}"}, {"index": 295, "image_id": 2382494, "entity": "truck", "caption": "the truck has a plate", "question": ["is there the truck ?", "is there a plate ?"], "prompt": "the {} has a plate"}, {"index": 296, "image_id": 2382494, "entity": "truck", "caption": "the truck has a bumper", "question": ["is there the truck ?", "is there a bumper ?"], "prompt": "the {} has a bumper"}, {"index": 297, "image_id": 2382494, "entity": "truck", "caption": "the truck has a wiper", "question": ["is there the truck ?", "is there a wiper ?"], "prompt": "the {} has a wiper"}, {"index": 298, "image_id": 2382494, "entity": "truck", "caption": "the truck has a window", "question": ["is there the truck ?", "is there a window ?"], "prompt": "the {} has a window"}, {"index": 299, "image_id": 2382494, "entity": "truck", "caption": "the chevy logo is on the truck", "question": ["is there the chevy logo ?", "is there the truck ?"], "prompt": "the chevy logo is on the {}"}, {"index": 300, "image_id": 2382494, "entity": "truck", "caption": "the truck has a silver grill", "question": ["is there the truck ?", "is there a silver grill ?"], "prompt": "the {} has a silver grill"}, {"index": 301, "image_id": 2382470, "entity": "truck", "caption": "Waste management truck is on the road", "question": ["is there waste management truck ?", "is there the road ?"], "prompt": "Waste management {} is on the road"}, {"index": 302, "image_id": 2382462, "entity": "truck", "caption": "man is standing behind truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is standing behind {}"}, {"index": 303, "image_id": 2382462, "entity": "truck", "caption": "truck has white door", "question": ["is there truck ?", "is there white door ?"], "prompt": "{} has white door"}, {"index": 304, "image_id": 2382454, "entity": "truck", "caption": "Lights are on in front of the truck.", "question": ["are there lights ?", "is there front ?", "is there the truck ?"], "prompt": "Lights are on in front of the {}."}, {"index": 305, "image_id": 2381035, "entity": "truck", "caption": "Woman standing on step of truck", "question": ["is there woman ?", "is there step ?", "is there truck ?"], "prompt": "Woman standing on step of {}"}, {"index": 306, "image_id": 2380908, "entity": "truck", "caption": "The door handle on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door handle on the {}"}, {"index": 307, "image_id": 2380866, "entity": "truck", "caption": "the truck has a mirror", "question": ["is there the truck ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 308, "image_id": 2380866, "entity": "truck", "caption": "the logo is on the back of the truck", "question": ["is there the logo ?", "is there the back ?", "is there the truck ?"], "prompt": "the logo is on the back of the {}"}, {"index": 309, "image_id": 2380866, "entity": "truck", "caption": "the billboard is infront of the truck", "question": ["is there the billboard ?", "is there the truck ?"], "prompt": "the billboard is infront of the {}"}, {"index": 310, "image_id": 2380592, "entity": "truck", "caption": "man standing at back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "man standing at back of {}"}, {"index": 311, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is black"}, {"index": 312, "image_id": 2380587, "entity": "truck", "caption": "the truck has an antenna", "question": ["is there the truck ?", "is there an antenna ?"], "prompt": "the {} has an antenna"}, {"index": 313, "image_id": 2380587, "entity": "truck", "caption": "black windshield wipers are on the truck", "question": ["are there black windshield wipers ?", "is there the truck ?"], "prompt": "black windshield wipers are on the {}"}, {"index": 314, "image_id": 2380587, "entity": "truck", "caption": "the truck has writing on the side", "question": ["is there the truck ?", "is there the side ?"], "prompt": "the {} has writing on the side"}, {"index": 315, "image_id": 2380587, "entity": "truck", "caption": "a rack is on the roof of the truck", "question": ["is there a rack ?", "is there the roof ?", "is there the truck ?"], "prompt": "a rack is on the roof of the {}"}, {"index": 316, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is flat black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is flat black"}, {"index": 317, "image_id": 2380587, "entity": "truck", "caption": "red lettering is on the side of the truck", "question": ["is there red lettering ?", "is there the side ?", "is there the truck ?"], "prompt": "red lettering is on the side of the {}"}, {"index": 318, "image_id": 2380587, "entity": "truck", "caption": "the headlight of the truck is off", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "the headlight of the {} is off"}, {"index": 319, "image_id": 2380587, "entity": "truck", "caption": "a rack is on top of the truck", "question": ["is there a rack ?", "is there top ?", "is there the truck ?"], "prompt": "a rack is on top of the {}"}, {"index": 320, "image_id": 2380587, "entity": "truck", "caption": "green hedges are behind the truck", "question": ["are there green hedges ?", "is there the truck ?"], "prompt": "green hedges are behind the {}"}, {"index": 321, "image_id": 2380273, "entity": "truck", "caption": "the truck has a long side mirror ", "question": ["is there the truck ?", "is there a long side mirror ?"], "prompt": "the {} has a long side mirror "}, {"index": 322, "image_id": 2380273, "entity": "truck", "caption": "The truck is on pavement. ", "question": ["is there the truck ?", "is there pavement ?"], "prompt": "The {} is on pavement. "}, {"index": 323, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting something.", "question": ["is there the truck ?", "is there something ?"], "prompt": "The {} is lifting something."}, {"index": 324, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting a small vehicle with a crane.", "question": ["is there the truck ?", "is there a small vehicle ?", "is there a crane ?"], "prompt": "The {} is lifting a small vehicle with a crane."}, {"index": 325, "image_id": 2380112, "entity": "truck", "caption": "Military truck loading a vehicle", "question": ["is there military truck ?", "is there a vehicle ?"], "prompt": "Military {} loading a vehicle"}, {"index": 326, "image_id": 2379690, "entity": "truck", "caption": "man driving a vintage truck", "question": ["is there man ?", "is there a vintage truck ?"], "prompt": "man driving a vintage {}"}, {"index": 327, "image_id": 2379397, "entity": "truck", "caption": "man climbing back of truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man climbing back of {}"}, {"index": 328, "image_id": 2379397, "entity": "truck", "caption": "boy in grey shirt standing on top of truck", "question": ["is there boy ?", "is there top ?", "is there truck ?"], "prompt": "boy in grey shirt standing on top of {}"}, {"index": 329, "image_id": 2379397, "entity": "truck", "caption": "young man climbing up back of truck", "question": ["is there young man ?", "is there truck ?"], "prompt": "young man climbing up back of {}"}, {"index": 330, "image_id": 2378872, "entity": "truck", "caption": "Dog standing on side of truck bed", "question": ["is there dog ?", "is there side ?", "is there truck ?", "is there bed ?"], "prompt": "Dog standing on side of {} bed"}, {"index": 331, "image_id": 2378626, "entity": "truck", "caption": "Car parked in front of pick-up truck", "question": ["is there car ?", "is there front ?", "is there pick-up truck ?"], "prompt": "Car parked in front of pick-up {}"}, {"index": 332, "image_id": 2378563, "entity": "truck", "caption": "The word Blow on the tail gate of the truck.", "question": ["is there the word ?", "is there the tail gate ?", "is there the truck ?"], "prompt": "The word Blow on the tail gate of the {}."}, {"index": 333, "image_id": 2378417, "entity": "truck", "caption": "Green writing on side of truck.", "question": ["is there green writing ?", "is there side ?", "is there truck ?"], "prompt": "Green writing on side of {}."}, {"index": 334, "image_id": 2378417, "entity": "truck", "caption": "Big tire leaning on truck.", "question": ["is there big tire ?", "is there truck ?"], "prompt": "Big tire leaning on {}."}, {"index": 335, "image_id": 2378417, "entity": "truck", "caption": "weeds are growing by the old truck", "question": ["are there weeds ?", "is there the old truck ?"], "prompt": "weeds are growing by the old {}"}, {"index": 336, "image_id": 2378218, "entity": "truck", "caption": "rope tied in truck", "question": ["is there rope ?", "is there truck ?"], "prompt": "rope tied in {}"}, {"index": 337, "image_id": 2378218, "entity": "truck", "caption": "the truck the cow is sitting on", "question": ["is there the truck ?", "is there the cow ?"], "prompt": "the {} the cow is sitting on"}, {"index": 338, "image_id": 2378035, "entity": "truck", "caption": "men driving an old time truck", "question": ["are there men ?", "is there an old time truck ?"], "prompt": "men driving an old time {}"}, {"index": 339, "image_id": 2377760, "entity": "truck", "caption": "a truck is driving down the road.", "question": ["is there a truck ?", "is there the road ?"], "prompt": "a {} is driving down the road."}, {"index": 340, "image_id": 2377333, "entity": "truck", "caption": "round headlight on truck", "question": ["is there headlight ?", "is there truck ?"], "prompt": "round headlight on {}"}, {"index": 341, "image_id": 2377333, "entity": "truck", "caption": "Tan truck has five visible tires", "question": ["is there tan truck ?", "are there five visible tires ?"], "prompt": "Tan {} has five visible tires"}, {"index": 342, "image_id": 2376346, "entity": "truck", "caption": "man in red vest standing in front of truck", "question": ["is there man ?", "is there red vest ?", "is there front ?", "is there truck ?"], "prompt": "man in red vest standing in front of {}"}, {"index": 343, "image_id": 2376063, "entity": "truck", "caption": "large tarps covering bed of red-orange truck", "question": ["are there large tarps ?", "is there bed ?", "is there red-orange truck ?"], "prompt": "large tarps covering bed of red-orange {}"}, {"index": 344, "image_id": 2376061, "entity": "truck", "caption": "a fire truck is driving down the street.", "question": ["is there a fire truck ?", "is there the street ?"], "prompt": "a fire {} is driving down the street."}, {"index": 345, "image_id": 2376061, "entity": "truck", "caption": "American flag hanging from the truck", "question": ["is there american flag ?", "is there the truck ?"], "prompt": "American flag hanging from the {}"}, {"index": 346, "image_id": 2376005, "entity": "truck", "caption": "the truck has lettering on the side", "question": ["is there the truck ?", "is there lettering ?", "is there the side ?"], "prompt": "the {} has lettering on the side"}, {"index": 347, "image_id": 2376005, "entity": "truck", "caption": "the truck has a metal fender in front", "question": ["is there the truck ?", "is there a metal fender ?", "is there front ?"], "prompt": "the {} has a metal fender in front"}, {"index": 348, "image_id": 2374981, "entity": "truck", "caption": "Person walking behind truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking behind {}."}, {"index": 349, "image_id": 2374981, "entity": "truck", "caption": "The truck is carrying jugs of water.", "question": ["is there the truck ?", "are there jugs ?", "is there water ?"], "prompt": "The {} is carrying jugs of water."}, {"index": 350, "image_id": 2374981, "entity": "truck", "caption": "The taxi is next to the truck.", "question": ["is there the taxi ?", "is there the truck ?"], "prompt": "The taxi is next to the {}."}, {"index": 351, "image_id": 2374981, "entity": "truck", "caption": "the truck is a water truck", "question": ["is there the truck ?", "is there a water truck ?"], "prompt": "the {} is a water {}"}, {"index": 352, "image_id": 2374218, "entity": "truck", "caption": "truck has grey tire", "question": ["is there truck ?", "is there grey tire ?"], "prompt": "{} has grey tire"}, {"index": 353, "image_id": 2374072, "entity": "truck", "caption": "Person standing near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person standing near {}."}, {"index": 354, "image_id": 2373789, "entity": "truck", "caption": "door of truck has a window", "question": ["is there door ?", "is there truck ?", "is there a window ?"], "prompt": "door of {} has a window"}, {"index": 355, "image_id": 2373559, "entity": "truck", "caption": "brick street the truck is on", "question": ["is there brick street ?", "is there the truck ?"], "prompt": "brick street the {} is on"}, {"index": 356, "image_id": 2373441, "entity": "truck", "caption": "Black shadows cast on the red side of a truck", "question": ["are there black shadows ?", "is there the red side ?", "is there a truck ?"], "prompt": "Black shadows cast on the red side of a {}"}, {"index": 357, "image_id": 2373441, "entity": "truck", "caption": "front wheel truck is big", "question": ["is there front wheel truck ?"], "prompt": "front wheel {} is big"}, {"index": 358, "image_id": 2372785, "entity": "truck", "caption": "it is the front tire of the truck", "question": ["is there the front tire ?", "is there the truck ?"], "prompt": "it is the front tire of the {}"}, {"index": 359, "image_id": 2372785, "entity": "truck", "caption": "is it the back tire of the white truck", "question": ["is there the back tire ?", "is there the white truck ?"], "prompt": "is it the back tire of the white {}"}, {"index": 360, "image_id": 2372785, "entity": "truck", "caption": "a person is sitting in the white truck", "question": ["is there a person ?", "is there the white truck ?"], "prompt": "a person is sitting in the white {}"}, {"index": 361, "image_id": 2372785, "entity": "truck", "caption": "door handle on delivery truck", "question": ["is there door ?", "is there delivery truck ?"], "prompt": "door handle on delivery {}"}, {"index": 362, "image_id": 2372670, "entity": "truck", "caption": "green pick up next to mack truck on the left", "question": ["is there mack truck ?"], "prompt": "green pick up next to mack {} on the left"}, {"index": 363, "image_id": 2372645, "entity": "truck", "caption": "a garbage can sitting next to a truck", "question": ["is there a garbage ?", "is there a truck ?"], "prompt": "a garbage can sitting next to a {}"}, {"index": 364, "image_id": 2372645, "entity": "truck", "caption": "Doll is in top of the truck.", "question": ["is there doll ?", "is there top ?", "is there the truck ?"], "prompt": "Doll is in top of the {}."}, {"index": 365, "image_id": 2372493, "entity": "truck", "caption": "dog is resting in shade of truck", "question": ["is there dog ?", "is there shade ?", "is there truck ?"], "prompt": "dog is resting in shade of {}"}, {"index": 366, "image_id": 2372487, "entity": "truck", "caption": "ford is in the grill of truck", "question": ["is there the grill ?", "is there truck ?"], "prompt": "ford is in the grill of {}"}, {"index": 367, "image_id": 2372487, "entity": "truck", "caption": "hood is black on the truck", "question": ["is there hood ?", "is there the truck ?"], "prompt": "hood is black on the {}"}, {"index": 368, "image_id": 2372487, "entity": "truck", "caption": "blue auto maker sign behind truck", "question": ["is there blue auto maker ?", "is there truck ?"], "prompt": "blue auto maker sign behind {}"}, {"index": 369, "image_id": 2372400, "entity": "truck", "caption": "Woman sitting on top of a truck", "question": ["is there woman ?", "is there top ?", "is there a truck ?"], "prompt": "Woman sitting on top of a {}"}, {"index": 370, "image_id": 2372385, "entity": "truck", "caption": "Man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "Man driving a {}"}, {"index": 371, "image_id": 2372385, "entity": "truck", "caption": "headlights in front of truck are off", "question": ["are there headlights ?", "is there front ?", "is there truck ?"], "prompt": "headlights in front of {} are off"}, {"index": 372, "image_id": 2372249, "entity": "truck", "caption": "it is the back tire of the truck", "question": ["is there the back tire ?", "is there the truck ?"], "prompt": "it is the back tire of the {}"}, {"index": 373, "image_id": 2372249, "entity": "truck", "caption": "it is the front head light of the truck", "question": ["is there the front head light ?", "is there the truck ?"], "prompt": "it is the front head light of the {}"}, {"index": 374, "image_id": 2372249, "entity": "truck", "caption": "it is the windshield of the truck", "question": ["is there the windshield ?", "is there the truck ?"], "prompt": "it is the windshield of the {}"}, {"index": 375, "image_id": 2372238, "entity": "truck", "caption": "A big truck is sitting in a parking lot.", "question": ["is there a big truck ?", "is there a parking lot ?"], "prompt": "A big {} is sitting in a parking lot."}, {"index": 376, "image_id": 2372063, "entity": "truck", "caption": "letters on truck says \"Budweiser\"", "question": ["are there letters ?", "is there truck ?", "is there budweiser ?"], "prompt": "letters on {} says \"Budweiser\""}, {"index": 377, "image_id": 2371995, "entity": "truck", "caption": "letter painted on truck", "question": ["is there letter ?", "is there truck ?"], "prompt": "letter painted on {}"}, {"index": 378, "image_id": 2371903, "entity": "truck", "caption": "stars are on the truck", "question": ["are there stars ?", "is there the truck ?"], "prompt": "stars are on the {}"}, {"index": 379, "image_id": 2371903, "entity": "truck", "caption": "USA painted on a truck", "question": ["is there a truck ?"], "prompt": "USA painted on a {}"}, {"index": 380, "image_id": 2371766, "entity": "truck", "caption": "this is the trucks windshield ", "question": ["are there the trucks ?"], "prompt": "this is the {}s windshield "}, {"index": 381, "image_id": 2371766, "entity": "truck", "caption": "truck window is open", "question": ["is there truck window ?"], "prompt": "{} window is open"}, {"index": 382, "image_id": 2371022, "entity": "truck", "caption": "a red truck parked", "question": ["is there a red truck ?"], "prompt": "a red {} parked"}, {"index": 383, "image_id": 2371022, "entity": "truck", "caption": "Tire splash guard of truck", "question": ["is there tire splash guard ?", "is there truck ?"], "prompt": "Tire splash guard of {}"}, {"index": 384, "image_id": 2369895, "entity": "truck", "caption": "The tire of the truck is black ", "question": ["is there the tire ?", "is there the truck ?"], "prompt": "The tire of the {} is black "}, {"index": 385, "image_id": 2369837, "entity": "truck", "caption": "A truck is on the street.", "question": ["is there a truck ?", "is there the street ?"], "prompt": "A {} is on the street."}, {"index": 386, "image_id": 2369837, "entity": "truck", "caption": "A canopy drapes over the truck.", "question": ["is there a canopy ?", "is there the truck ?"], "prompt": "A canopy drapes over the {}."}, {"index": 387, "image_id": 2369837, "entity": "truck", "caption": "The truck is missing the hood.", "question": ["is there the truck ?", "is there the hood ?"], "prompt": "The {} is missing the hood."}, {"index": 388, "image_id": 2369288, "entity": "truck", "caption": "bear is on truck bed", "question": ["is there truck bed ?"], "prompt": "bear is on {} bed"}, {"index": 389, "image_id": 2369089, "entity": "truck", "caption": "silver door handle on truck", "question": ["is there silver door ?", "is there truck ?"], "prompt": "silver door handle on {}"}, {"index": 390, "image_id": 2368262, "entity": "truck", "caption": "this truck has a backdoor", "question": ["is there this truck ?", "is there a backdoor ?"], "prompt": "this {} has a backdoor"}, {"index": 391, "image_id": 2368262, "entity": "truck", "caption": "the rear door handle to the truck is rusting", "question": ["is there the rear door ?", "is there the truck ?"], "prompt": "the rear door handle to the {} is rusting"}, {"index": 392, "image_id": 2368262, "entity": "truck", "caption": "latches are on the truck rear door", "question": ["are there latches ?", "is there the truck rear door ?"], "prompt": "latches are on the {} rear door"}, {"index": 393, "image_id": 2368262, "entity": "truck", "caption": "writing is visible on the side of the truck", "question": ["is there writing ?", "is there the side ?", "is there the truck ?"], "prompt": "writing is visible on the side of the {}"}, {"index": 394, "image_id": 2368262, "entity": "truck", "caption": "the side door of the truck has windows", "question": ["is there the side door ?", "is there the truck ?", "are there windows ?"], "prompt": "the side door of the {} has windows"}, {"index": 395, "image_id": 2368262, "entity": "truck", "caption": "Trees in front of truck have no leaves.", "question": ["are there trees ?", "is there front ?", "is there truck ?", "are there no leaves ?"], "prompt": "Trees in front of {} have no leaves."}, {"index": 396, "image_id": 2367654, "entity": "truck", "caption": "the trucks back license plate ", "question": ["are there the trucks ?", "is there license plate ?"], "prompt": "the {}s back license plate "}, {"index": 397, "image_id": 2367654, "entity": "truck", "caption": "truck is hauling circular objects", "question": ["is there truck ?", "are there circular objects ?"], "prompt": "{} is hauling circular objects"}, {"index": 398, "image_id": 2367654, "entity": "truck", "caption": "The truck has ten tubes.", "question": ["is there the truck ?", "are there ten tubes ?"], "prompt": "The {} has ten tubes."}, {"index": 399, "image_id": 2367654, "entity": "truck", "caption": "The truck has six red ligths.", "question": ["is there the truck ?", "are there six red ligths ?"], "prompt": "The {} has six red ligths."}, {"index": 400, "image_id": 2367556, "entity": "truck", "caption": "truck has red tail light", "question": ["is there truck ?", "is there red tail light ?"], "prompt": "{} has red tail light"}, {"index": 401, "image_id": 2367108, "entity": "truck", "caption": "the truck has words on it", "question": ["is there the truck ?", "are there words ?"], "prompt": "the {} has words on it"}, {"index": 402, "image_id": 2366931, "entity": "truck", "caption": "car door handle on truck", "question": ["is there car door ?", "is there truck ?"], "prompt": "car door handle on {}"}, {"index": 403, "image_id": 2366645, "entity": "truck", "caption": "A horse int he bed of a truck", "question": ["is there a truck ?"], "prompt": "A horse int he bed of a {}"}, {"index": 404, "image_id": 2366645, "entity": "truck", "caption": "the white wall rims on the truck tire", "question": ["are there the white wall rims ?", "is there the truck tire ?"], "prompt": "the white wall rims on the {} tire"}, {"index": 405, "image_id": 2366233, "entity": "truck", "caption": "A gray sedan parked very closely in front of the truck", "question": ["is there a gray sedan ?", "is there front ?", "is there the truck ?"], "prompt": "A gray sedan parked very closely in front of the {}"}, {"index": 406, "image_id": 2366156, "entity": "truck", "caption": "Horse standing next to a red truck", "question": ["is there horse ?", "is there a red truck ?"], "prompt": "Horse standing next to a red {}"}, {"index": 407, "image_id": 2365951, "entity": "truck", "caption": "The truck has lights on it's roof", "question": ["is there the truck ?", "are there lights ?", "is there it's roof ?"], "prompt": "The {} has lights on it's roof"}, {"index": 408, "image_id": 2365951, "entity": "truck", "caption": "red numbers painted on a truck", "question": ["are there red numbers ?", "is there a truck ?"], "prompt": "red numbers painted on a {}"}, {"index": 409, "image_id": 2365951, "entity": "truck", "caption": "The concrete truck is the color yellow ", "question": ["is there the concrete truck ?"], "prompt": "The concrete {} is the color yellow "}, {"index": 410, "image_id": 2365951, "entity": "truck", "caption": "This is a yellow truck", "question": ["is there a yellow truck ?"], "prompt": "This is a yellow {}"}, {"index": 411, "image_id": 2365691, "entity": "truck", "caption": "sideways spare tire mounted under the truck", "question": ["is there spare tire ?", "is there the truck ?"], "prompt": "sideways spare tire mounted under the {}"}, {"index": 412, "image_id": 2365570, "entity": "truck", "caption": "The cab of the truck is red", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "The cab of the {} is red"}, {"index": 413, "image_id": 2365570, "entity": "truck", "caption": "The dumping part of the truck is yellow", "question": ["is there the dumping part ?", "is there the truck ?"], "prompt": "The dumping part of the {} is yellow"}, {"index": 414, "image_id": 2365570, "entity": "truck", "caption": "This truck has gone through a lot of dirt", "question": ["is there this truck ?", "is there a lot ?", "is there dirt ?"], "prompt": "This {} has gone through a lot of dirt"}, {"index": 415, "image_id": 2365252, "entity": "truck", "caption": "man with long hair stands beside truck cab", "question": ["is there man ?", "is there long hair ?", "is there truck cab ?"], "prompt": "man with long hair stands beside {} cab"}, {"index": 416, "image_id": 2365252, "entity": "truck", "caption": "truck's front turn signal", "question": ["is there truck's front turn ?"], "prompt": "{}'s front turn signal"}, {"index": 417, "image_id": 2364632, "entity": "truck", "caption": "the truck's cab is blue", "question": ["is there the truck's cab ?"], "prompt": "the {}'s cab is blue"}, {"index": 418, "image_id": 2364512, "entity": "truck", "caption": "Top of the truck is white and green in color", "question": ["is there top ?", "is there the truck ?", "is there color ?"], "prompt": "Top of the {} is white and green in color"}, {"index": 419, "image_id": 2363920, "entity": "truck", "caption": "man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man driving a {}"}, {"index": 420, "image_id": 2362822, "entity": "truck", "caption": "gray ram sniffing a truck", "question": ["is there a truck ?"], "prompt": "gray ram sniffing a {}"}, {"index": 421, "image_id": 2362058, "entity": "truck", "caption": "it is a ladder on the side of the truck", "question": ["is there a ladder ?", "is there the side ?", "is there the truck ?"], "prompt": "it is a ladder on the side of the {}"}, {"index": 422, "image_id": 2362058, "entity": "truck", "caption": "it is the headlight of the truck", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "it is the headlight of the {}"}, {"index": 423, "image_id": 2361362, "entity": "truck", "caption": "garbage man running behing garabge truck", "question": ["is there garbage man ?", "is there behing garabge truck ?"], "prompt": "garbage man running behing garabge {}"}, {"index": 424, "image_id": 2361169, "entity": "truck", "caption": "cartoon character painted on truck", "question": ["is there cartoon character ?", "is there truck ?"], "prompt": "cartoon character painted on {}"}, {"index": 425, "image_id": 2360580, "entity": "truck", "caption": "The truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "The {} is on the road"}, {"index": 426, "image_id": 2360438, "entity": "truck", "caption": "a sign that says Signal on the side of the truck", "question": ["is there a sign ?", "is there signal ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign that says Signal on the side of the {}"}, {"index": 427, "image_id": 2360362, "entity": "truck", "caption": "Two people walking toward a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "Two people walking toward a {}"}, {"index": 428, "image_id": 2360185, "entity": "truck", "caption": "Man reflected in the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man reflected in the {}."}, {"index": 429, "image_id": 2359911, "entity": "truck", "caption": "Plymouth written on the truck", "question": ["is there the truck ?"], "prompt": "Plymouth written on the {}"}, {"index": 430, "image_id": 2359717, "entity": "truck", "caption": "united states flag on truck", "question": ["is there truck ?"], "prompt": "united states flag on {}"}, {"index": 431, "image_id": 2359708, "entity": "truck", "caption": "a firetruck headlight ", "question": ["is there a firetruck headlight ?"], "prompt": "a fire{} headlight "}, {"index": 432, "image_id": 2359307, "entity": "truck", "caption": "the truck is in the Forrest", "question": ["is there the truck ?", "is there the forrest ?"], "prompt": "the {} is in the Forrest"}, {"index": 433, "image_id": 2357815, "entity": "truck", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white car is behind the {}"}, {"index": 434, "image_id": 2357815, "entity": "truck", "caption": "A tarp is over the back of the truck", "question": ["is there a tarp ?", "is there the back ?", "is there the truck ?"], "prompt": "A tarp is over the back of the {}"}, {"index": 435, "image_id": 2357227, "entity": "truck", "caption": "white numbers are on the truck", "question": ["are there white numbers ?", "is there the truck ?"], "prompt": "white numbers are on the {}"}, {"index": 436, "image_id": 2357227, "entity": "truck", "caption": "a man straps the truck down", "question": ["is there a man ?", "is there the truck ?"], "prompt": "a man straps the {} down"}, {"index": 437, "image_id": 2357081, "entity": "truck", "caption": "The left front headlight on the truck", "question": ["is there the left front headlight ?", "is there the truck ?"], "prompt": "The left front headlight on the {}"}, {"index": 438, "image_id": 2356932, "entity": "truck", "caption": "The truck is casting a shadow. ", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow. "}, {"index": 439, "image_id": 2356932, "entity": "truck", "caption": "Person taking a picture of the truck. ", "question": ["is there person ?", "is there a picture ?", "is there the truck ?"], "prompt": "Person taking a picture of the {}. "}, {"index": 440, "image_id": 2356921, "entity": "truck", "caption": "GREAT TASTE written on the side of a truck. ", "question": ["is there great taste ?", "is there the side ?", "is there a truck ?"], "prompt": "GREAT TASTE written on the side of a {}. "}, {"index": 441, "image_id": 2355892, "entity": "truck", "caption": "it is the letter C on the truck ", "question": ["is there the letter ?", "is there c ?", "is there the truck ?"], "prompt": "it is the letter C on the {} "}, {"index": 442, "image_id": 2355892, "entity": "truck", "caption": "it is the letter O on the truck", "question": ["is there the letter ?", "is there o ?", "is there the truck ?"], "prompt": "it is the letter O on the {}"}, {"index": 443, "image_id": 2355892, "entity": "truck", "caption": "it is a light on the truck", "question": ["is there a light ?", "is there the truck ?"], "prompt": "it is a light on the {}"}, {"index": 444, "image_id": 2355892, "entity": "truck", "caption": "the truck has a black wheel", "question": ["is there the truck ?", "is there a black wheel ?"], "prompt": "the {} has a black wheel"}, {"index": 445, "image_id": 2355892, "entity": "truck", "caption": "the truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 446, "image_id": 2355892, "entity": "truck", "caption": "The truck has lights on it.", "question": ["is there the truck ?", "are there lights ?"], "prompt": "The {} has lights on it."}, {"index": 447, "image_id": 2355892, "entity": "truck", "caption": "The truck says coco", "question": ["is there the truck ?", "is there coco ?"], "prompt": "The {} says coco"}, {"index": 448, "image_id": 2355892, "entity": "truck", "caption": "The lettering is white on the truck", "question": ["is there the lettering ?", "is there the truck ?"], "prompt": "The lettering is white on the {}"}, {"index": 449, "image_id": 2355892, "entity": "truck", "caption": "The truck has tires.", "question": ["is there the truck ?", "are there tires ?"], "prompt": "The {} has tires."}, {"index": 450, "image_id": 2355741, "entity": "truck", "caption": "Woman standing next to the truck", "question": ["is there woman ?", "is there the truck ?"], "prompt": "Woman standing next to the {}"}, {"index": 451, "image_id": 2354584, "entity": "truck", "caption": "There is a symbol on this truck that says Fire Dept.", "question": ["is there a symbol ?", "is there this truck ?", "is there fire dept ?"], "prompt": "There is a symbol on this {} that says Fire Dept."}, {"index": 452, "image_id": 2354302, "entity": "truck", "caption": "rust covered truck shows it has some age", "question": ["is there rust covered truck ?", "is there some age ?"], "prompt": "rust covered {} shows it has some age"}, {"index": 453, "image_id": 2354302, "entity": "truck", "caption": "white hydrolic machinery on truck shows unprotected by weather", "question": ["is there white hydrolic machinery ?", "are there truck shows ?", "is there weather ?"], "prompt": "white hydrolic machinery on {} shows unprotected by weather"}, {"index": 454, "image_id": 2354302, "entity": "truck", "caption": "windshield on truck looks clean", "question": ["is there windshield ?", "is there truck ?"], "prompt": "windshield on {} looks clean"}, {"index": 455, "image_id": 2353824, "entity": "truck", "caption": "truck has four lights", "question": ["is there truck ?", "are there four lights ?"], "prompt": "{} has four lights"}, {"index": 456, "image_id": 2353824, "entity": "truck", "caption": "truck lights are lit", "question": ["are there truck lights ?"], "prompt": "{} lights are lit"}, {"index": 457, "image_id": 2353824, "entity": "truck", "caption": "truck has yellow arm", "question": ["is there truck ?", "is there yellow arm ?"], "prompt": "{} has yellow arm"}, {"index": 458, "image_id": 2353824, "entity": "truck", "caption": "Orange lit up light above truck.", "question": ["is there light ?", "is there truck ?"], "prompt": "Orange lit up light above {}."}, {"index": 459, "image_id": 2353075, "entity": "truck", "caption": "PX is on the top of the truck", "question": ["is there px ?", "is there the top ?", "is there the truck ?"], "prompt": "PX is on the top of the {}"}, {"index": 460, "image_id": 2353075, "entity": "truck", "caption": "mercedes emblem on truck ", "question": ["are there mercedes ?", "is there truck ?"], "prompt": "mercedes emblem on {} "}, {"index": 461, "image_id": 2352665, "entity": "truck", "caption": "door handle on white truck", "question": ["is there door ?", "is there white truck ?"], "prompt": "door handle on white {}"}, {"index": 462, "image_id": 2352260, "entity": "truck", "caption": "box spring on it's side in the back of a truck", "question": ["is there box spring ?", "is there it's side ?", "is there the back ?", "is there a truck ?"], "prompt": "box spring on it's side in the back of a {}"}, {"index": 463, "image_id": 2351947, "entity": "truck", "caption": "front left wheel of the fire truck", "question": ["is there front left wheel ?", "is there the fire truck ?"], "prompt": "front left wheel of the fire {}"}, {"index": 464, "image_id": 2351810, "entity": "truck", "caption": "man standing in back of windowless truck", "question": ["is there man ?", "is there windowless truck ?"], "prompt": "man standing in back of windowless {}"}, {"index": 465, "image_id": 2351290, "entity": "truck", "caption": "a striped blanket is on a truck", "question": ["is there a striped blanket ?", "is there a truck ?"], "prompt": "a striped blanket is on a {}"}, {"index": 466, "image_id": 2351290, "entity": "truck", "caption": "the wall behind the truck is silver", "question": ["is there the wall ?", "is there the truck ?"], "prompt": "the wall behind the {} is silver"}, {"index": 467, "image_id": 2351178, "entity": "truck", "caption": "The truck is carrying a surfboard", "question": ["is there the truck ?", "is there a surfboard ?"], "prompt": "The {} is carrying a surfboard"}, {"index": 468, "image_id": 2351178, "entity": "truck", "caption": "life saving device on truck", "question": ["is there device ?", "is there truck ?"], "prompt": "life saving device on {}"}, {"index": 469, "image_id": 2351178, "entity": "truck", "caption": "The left headlight on the truck.", "question": ["is there the left headlight ?", "is there the truck ?"], "prompt": "The left headlight on the {}."}, {"index": 470, "image_id": 2351131, "entity": "truck", "caption": "Trailer hitch on back of truck", "question": ["is there trailer hitch ?", "is there back ?", "is there truck ?"], "prompt": "Trailer hitch on back of {}"}, {"index": 471, "image_id": 2349773, "entity": "truck", "caption": "Two posts are near a truck.", "question": ["are there two posts ?", "is there a truck ?"], "prompt": "Two posts are near a {}."}, {"index": 472, "image_id": 2349620, "entity": "truck", "caption": "a metal pole is by the truck", "question": ["is there a metal pole ?", "is there the truck ?"], "prompt": "a metal pole is by the {}"}, {"index": 473, "image_id": 2349620, "entity": "truck", "caption": "the truck has a rearview mirror", "question": ["is there the truck ?", "is there a rearview mirror ?"], "prompt": "the {} has a rearview mirror"}, {"index": 474, "image_id": 2348945, "entity": "truck", "caption": "A large tube is on a truck.", "question": ["is there a large tube ?", "is there a truck ?"], "prompt": "A large tube is on a {}."}, {"index": 475, "image_id": 2348945, "entity": "truck", "caption": "A grey box is on a truck.", "question": ["is there a truck ?"], "prompt": "A grey box is on a {}."}, {"index": 476, "image_id": 2348945, "entity": "truck", "caption": "A man is standing next to a truck.", "question": ["is there a man ?", "is there a truck ?"], "prompt": "A man is standing next to a {}."}, {"index": 477, "image_id": 2348933, "entity": "truck", "caption": "logo painted on a truck", "question": ["is there logo ?", "is there a truck ?"], "prompt": "logo painted on a {}"}, {"index": 478, "image_id": 2348742, "entity": "truck", "caption": "cows hauled on top of truck", "question": ["are there cows ?", "is there top ?", "is there truck ?"], "prompt": "cows hauled on top of {}"}, {"index": 479, "image_id": 2348742, "entity": "truck", "caption": "sign in truck says \"mitsubishi\"", "question": ["is there sign ?", "is there truck ?"], "prompt": "sign in {} says \"mitsubishi\""}, {"index": 480, "image_id": 2348742, "entity": "truck", "caption": "windy road the truck is driving on ", "question": ["is there windy road ?", "is there the truck ?"], "prompt": "windy road the {} is driving on "}, {"index": 481, "image_id": 2348526, "entity": "truck", "caption": "machinery is on the truck", "question": ["is there machinery ?", "is there the truck ?"], "prompt": "machinery is on the {}"}, {"index": 482, "image_id": 2348526, "entity": "truck", "caption": "Back door is open on truck", "question": ["is there back door ?", "is there truck ?"], "prompt": "Back door is open on {}"}, {"index": 483, "image_id": 2347761, "entity": "truck", "caption": "a driver is inside the truck cab", "question": ["is there a driver ?", "is there the truck cab ?"], "prompt": "a driver is inside the {} cab"}, {"index": 484, "image_id": 2347750, "entity": "truck", "caption": "A person is by the truck", "question": ["is there a person ?", "is there the truck ?"], "prompt": "A person is by the {}"}, {"index": 485, "image_id": 2347690, "entity": "truck", "caption": "4x4 painted on the side of truck", "question": ["is there the side ?", "is there truck ?"], "prompt": "4x4 painted on the side of {}"}, {"index": 486, "image_id": 2347690, "entity": "truck", "caption": "tail gate is down on truck", "question": ["is there tail gate ?", "is there truck ?"], "prompt": "tail gate is down on {}"}, {"index": 487, "image_id": 2347487, "entity": "truck", "caption": "Rear left wheel of the truck", "question": ["is there rear left wheel ?", "is there the truck ?"], "prompt": "Rear left wheel of the {}"}, {"index": 488, "image_id": 2347487, "entity": "truck", "caption": "Front left wheel of the truck", "question": ["is there front left wheel ?", "is there the truck ?"], "prompt": "Front left wheel of the {}"}, {"index": 489, "image_id": 2347377, "entity": "truck", "caption": "Person sitting in a dark two tone truck", "question": ["is there person ?", "is there a dark two tone truck ?"], "prompt": "Person sitting in a dark two tone {}"}, {"index": 490, "image_id": 2346986, "entity": "truck", "caption": "the truck has a picture at the door", "question": ["is there the truck ?", "is there a picture ?", "is there the door ?"], "prompt": "the {} has a picture at the door"}, {"index": 491, "image_id": 2346214, "entity": "truck", "caption": "guy trying to get stuff out of a truck", "question": ["is there guy ?", "is there stuff ?", "is there a truck ?"], "prompt": "guy trying to get stuff out of a {}"}, {"index": 492, "image_id": 2345894, "entity": "truck", "caption": "the truck has No2 painted on it", "question": ["is there the truck ?", "are there no2 ?"], "prompt": "the {} has No2 painted on it"}, {"index": 493, "image_id": 2345381, "entity": "truck", "caption": "people are standing by the food truck", "question": ["are there people ?", "is there the food truck ?"], "prompt": "people are standing by the food {}"}, {"index": 494, "image_id": 2345381, "entity": "truck", "caption": "the food truck has red lights on it", "question": ["is there the food truck ?", "are there red lights ?"], "prompt": "the food {} has red lights on it"}, {"index": 495, "image_id": 2345314, "entity": "truck", "caption": "Yellow truck has hood opened", "question": ["is there yellow truck ?", "is there hood ?"], "prompt": "Yellow {} has hood opened"}, {"index": 496, "image_id": 2345314, "entity": "truck", "caption": "Pickup truck has hood opened", "question": ["is there pickup truck ?", "is there hood ?"], "prompt": "Pickup {} has hood opened"}, {"index": 497, "image_id": 2345212, "entity": "truck", "caption": "long carpets rolls at back of truck", "question": ["are there long carpets rolls ?", "is there back ?", "is there truck ?"], "prompt": "long carpets rolls at back of {}"}, {"index": 498, "image_id": 2345212, "entity": "truck", "caption": "gray car behing the truck", "question": ["is there gray car ?", "is there the truck ?"], "prompt": "gray car behing the {}"}, {"index": 499, "image_id": 2345212, "entity": "truck", "caption": "household furnishings strapped onto a truck bed", "question": ["are there household furnishings ?", "is there a truck bed ?"], "prompt": "household furnishings strapped onto a {} bed"}, {"index": 500, "image_id": 2345032, "entity": "truck", "caption": "The word SCANIA on the front of a truck. ", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there a truck ?"], "prompt": "The word SCANIA on the front of a {}. "}, {"index": 501, "image_id": 2344888, "entity": "truck", "caption": "antique truck stuck in the mud", "question": ["is there antique truck ?", "is there the mud ?"], "prompt": "antique {} stuck in the mud"}, {"index": 502, "image_id": 2343592, "entity": "truck", "caption": "Sign on truck is Avitat", "question": ["is there sign ?", "is there truck ?"], "prompt": "Sign on {} is Avitat"}, {"index": 503, "image_id": 2342746, "entity": "truck", "caption": "a cheverolet emblem is on the truck", "question": ["is there a cheverolet emblem ?", "is there the truck ?"], "prompt": "a cheverolet emblem is on the {}"}, {"index": 504, "image_id": 2342137, "entity": "truck", "caption": "vertical door handle on delivery truck", "question": ["is there vertical door ?", "is there delivery truck ?"], "prompt": "vertical door handle on delivery {}"}, {"index": 505, "image_id": 2341556, "entity": "truck", "caption": "a truck is outside", "question": ["is there a truck ?"], "prompt": "a {} is outside"}, {"index": 506, "image_id": 2341556, "entity": "truck", "caption": "the truck has a brand name painted on ", "question": ["is there the truck ?", "is there a brand name ?"], "prompt": "the {} has a brand name painted on "}, {"index": 507, "image_id": 2341337, "entity": "truck", "caption": "gravel is on the train trucks ", "question": ["is there gravel ?", "are there the train trucks ?"], "prompt": "gravel is on the train {}s "}, {"index": 508, "image_id": 2341077, "entity": "truck", "caption": "two people standing behind a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "two people standing behind a {}"}, {"index": 509, "image_id": 2340746, "entity": "truck", "caption": "truck has black wheels", "question": ["is there truck ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 510, "image_id": 2340746, "entity": "truck", "caption": "man shoving an animal into a truck", "question": ["is there man ?", "is there an animal ?", "is there a truck ?"], "prompt": "man shoving an animal into a {}"}, {"index": 511, "image_id": 2340595, "entity": "truck", "caption": "a wheel turned under the truck", "question": ["is there a wheel ?", "is there the truck ?"], "prompt": "a wheel turned under the {}"}, {"index": 512, "image_id": 2340429, "entity": "truck", "caption": "Person walking near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking near {}."}, {"index": 513, "image_id": 2340353, "entity": "truck", "caption": "a black shirt draped over a truck", "question": ["is there a black shirt ?", "is there a truck ?"], "prompt": "a black shirt draped over a {}"}, {"index": 514, "image_id": 2340353, "entity": "truck", "caption": "Tee shirt draped on side of truck", "question": ["is there tee shirt ?", "is there side ?", "is there truck ?"], "prompt": "Tee shirt draped on side of {}"}, {"index": 515, "image_id": 2339539, "entity": "truck", "caption": "person driving the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "person driving the {}"}, {"index": 516, "image_id": 2339539, "entity": "truck", "caption": "the truck has a black trailer bed ", "question": ["is there the truck ?", "is there a black trailer bed ?"], "prompt": "the {} has a black trailer bed "}, {"index": 517, "image_id": 2339539, "entity": "truck", "caption": "he is driving the truck ", "question": ["is there the truck ?"], "prompt": "he is driving the {} "}, {"index": 518, "image_id": 2339412, "entity": "truck", "caption": "The old truck has wood boards on it.", "question": ["is there the old truck ?", "are there wood boards ?"], "prompt": "The old {} has wood boards on it."}, {"index": 519, "image_id": 2339139, "entity": "truck", "caption": "Rear left tire on a tow truck", "question": ["is there rear left tire ?", "is there a tow truck ?"], "prompt": "Rear left tire on a tow {}"}, {"index": 520, "image_id": 2339139, "entity": "truck", "caption": "Front left head light on a truck", "question": ["is there front left head light ?", "is there a truck ?"], "prompt": "Front left head light on a {}"}, {"index": 521, "image_id": 2339139, "entity": "truck", "caption": "The door handle on a truck", "question": ["is there the door ?", "is there a truck ?"], "prompt": "The door handle on a {}"}, {"index": 522, "image_id": 2338619, "entity": "truck", "caption": "the guy is on top of the fire truck ", "question": ["is there the guy ?", "is there top ?", "is there the fire truck ?"], "prompt": "the guy is on top of the fire {} "}, {"index": 523, "image_id": 2337684, "entity": "truck", "caption": "the folgers container under the truck", "question": ["are there the folgers container ?", "is there the truck ?"], "prompt": "the folgers container under the {}"}, {"index": 524, "image_id": 2337628, "entity": "truck", "caption": "the truck is full of dogs", "question": ["is there the truck ?", "are there dogs ?"], "prompt": "the {} is full of dogs"}, {"index": 525, "image_id": 2337628, "entity": "truck", "caption": "the truck has photos of dogs", "question": ["is there the truck ?", "are there photos ?", "are there dogs ?"], "prompt": "the {} has photos of dogs"}, {"index": 526, "image_id": 2337628, "entity": "truck", "caption": "the truck has wheels", "question": ["is there the truck ?", "are there wheels ?"], "prompt": "the {} has wheels"}, {"index": 527, "image_id": 2336350, "entity": "truck", "caption": "the trees are behind the truck", "question": ["are there the trees ?", "is there the truck ?"], "prompt": "the trees are behind the {}"}, {"index": 528, "image_id": 2336187, "entity": "truck", "caption": "The word Mackinnon's on the front of a truck", "question": ["is there the word ?", "is there the front ?", "is there a truck ?"], "prompt": "The word Mackinnon's on the front of a {}"}, {"index": 529, "image_id": 2335976, "entity": "truck", "caption": "back door on truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "back door on {} is open"}, {"index": 530, "image_id": 2335976, "entity": "truck", "caption": "man is walking toward truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is walking toward {}"}, {"index": 531, "image_id": 2335976, "entity": "truck", "caption": "The door of the truck is open.", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door of the {} is open."}, {"index": 532, "image_id": 2335976, "entity": "truck", "caption": "Garbage can by the truck.", "question": ["is there garbage ?", "is there the truck ?"], "prompt": "Garbage can by the {}."}, {"index": 533, "image_id": 2335976, "entity": "truck", "caption": "food truck menu painted on side of truck", "question": ["is there food truck menu ?", "is there side ?", "is there truck ?"], "prompt": "food {} menu painted on side of {}"}, {"index": 534, "image_id": 2335337, "entity": "truck", "caption": "Menu written on side of truck.", "question": ["is there menu ?", "is there side ?", "is there truck ?"], "prompt": "Menu written on side of {}."}, {"index": 535, "image_id": 2335292, "entity": "truck", "caption": "The motorcycle is in front of the truck", "question": ["is there the motorcycle ?", "is there front ?", "is there the truck ?"], "prompt": "The motorcycle is in front of the {}"}, {"index": 536, "image_id": 2335292, "entity": "truck", "caption": "The truck has a cardboard box in the bed", "question": ["is there the truck ?", "is there a cardboard box ?", "is there the bed ?"], "prompt": "The {} has a cardboard box in the bed"}, {"index": 537, "image_id": 2333358, "entity": "truck", "caption": "woman waiting for food at truck window", "question": ["is there woman ?", "is there food ?", "is there truck window ?"], "prompt": "woman waiting for food at {} window"}, {"index": 538, "image_id": 2333358, "entity": "truck", "caption": "a food truck is on the street", "question": ["is there a food truck ?", "is there the street ?"], "prompt": "a food {} is on the street"}, {"index": 539, "image_id": 2333348, "entity": "truck", "caption": "two men standing next to each other in front of truck", "question": ["are there two men ?", "is there front ?", "is there truck ?"], "prompt": "two men standing next to each other in front of {}"}, {"index": 540, "image_id": 2332754, "entity": "truck", "caption": "A wooden pole is behind the truck", "question": ["is there a wooden pole ?", "is there the truck ?"], "prompt": "A wooden pole is behind the {}"}, {"index": 541, "image_id": 2332750, "entity": "truck", "caption": "A fold up chair stands next to the truck", "question": ["is there a fold up chair ?", "is there the truck ?"], "prompt": "A fold up chair stands next to the {}"}, {"index": 542, "image_id": 2331746, "entity": "truck", "caption": "a truck travels in front the beach", "question": ["is there a truck ?", "is there front ?"], "prompt": "a {} travels in front the beach"}, {"index": 543, "image_id": 2331430, "entity": "truck", "caption": "this guy is on the back of the truck", "question": ["is there this guy ?", "is there the back ?", "is there the truck ?"], "prompt": "this guy is on the back of the {}"}, {"index": 544, "image_id": 2330313, "entity": "truck", "caption": "A flap is visible on a truck.", "question": ["is there a flap ?", "is there a truck ?"], "prompt": "A flap is visible on a {}."}, {"index": 545, "image_id": 2329413, "entity": "truck", "caption": "Web URL painted in black letters on white truck", "question": ["is there web url ?", "are there black letters ?", "is there white truck ?"], "prompt": "Web URL painted in black letters on white {}"}, {"index": 546, "image_id": 2328751, "entity": "truck", "caption": "a person is driving the truck ", "question": ["is there a person ?", "is there the truck ?"], "prompt": "a person is driving the {} "}, {"index": 547, "image_id": 2328751, "entity": "truck", "caption": "The truck has a fire extinguisher.", "question": ["is there the truck ?", "is there a fire extinguisher ?"], "prompt": "The {} has a fire extinguisher."}, {"index": 548, "image_id": 2328751, "entity": "truck", "caption": "The truck has a horn.", "question": ["is there the truck ?", "is there a horn ?"], "prompt": "The {} has a horn."}, {"index": 549, "image_id": 2328751, "entity": "truck", "caption": "The horn is on the truck roof.", "question": ["is there the horn ?", "is there the truck roof ?"], "prompt": "The horn is on the {} roof."}, {"index": 550, "image_id": 2328751, "entity": "truck", "caption": "The truck has a white grill.", "question": ["is there the truck ?", "is there a white grill ?"], "prompt": "The {} has a white grill."}, {"index": 551, "image_id": 2328751, "entity": "truck", "caption": "The truck has an orange light.", "question": ["is there the truck ?", "is there an orange light ?"], "prompt": "The {} has an orange light."}, {"index": 552, "image_id": 2328751, "entity": "truck", "caption": "The truck has a headlight.", "question": ["is there the truck ?", "is there a headlight ?"], "prompt": "The {} has a headlight."}, {"index": 553, "image_id": 2328751, "entity": "truck", "caption": "The truck has a big tire.", "question": ["is there the truck ?", "is there a big tire ?"], "prompt": "The {} has a big tire."}, {"index": 554, "image_id": 2327911, "entity": "truck", "caption": "The truck has a black dump bed.", "question": ["is there the truck ?", "is there a black dump bed ?"], "prompt": "The {} has a black dump bed."}, {"index": 555, "image_id": 2327911, "entity": "truck", "caption": "The truck cab has orange lights.", "question": ["is there the truck cab ?", "are there orange lights ?"], "prompt": "The {} cab has orange lights."}, {"index": 556, "image_id": 2327911, "entity": "truck", "caption": "The truck has a tire.", "question": ["is there the truck ?", "is there a tire ?"], "prompt": "The {} has a tire."}, {"index": 557, "image_id": 2325925, "entity": "truck", "caption": "The truck has the number 20 on its side", "question": ["is there the truck ?", "is there the number ?", "is there its side ?"], "prompt": "The {} has the number 20 on its side"}, {"index": 558, "image_id": 2325611, "entity": "truck", "caption": "the truck has white writing", "question": ["is there the truck ?", "is there white writing ?"], "prompt": "the {} has white writing"}, {"index": 559, "image_id": 2324486, "entity": "truck", "caption": "The license plate is on the back of truck", "question": ["is there the license plate ?", "is there the back ?", "is there truck ?"], "prompt": "The license plate is on the back of {}"}, {"index": 560, "image_id": 2324486, "entity": "truck", "caption": "The word DIESEL on back of truck. ", "question": ["is there the word diesel ?", "is there back ?", "is there truck ?"], "prompt": "The word DIESEL on back of {}. "}, {"index": 561, "image_id": 2323321, "entity": "truck", "caption": "the graffiti on the truck is green", "question": ["is there the graffiti ?", "is there the truck ?"], "prompt": "the graffiti on the {} is green"}, {"index": 562, "image_id": 2323321, "entity": "truck", "caption": "the truck is on the street", "question": ["is there the truck ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 563, "image_id": 2323321, "entity": "truck", "caption": "a truck that has graffiti", "question": ["is there a truck ?"], "prompt": "a {} that has graffiti"}, {"index": 564, "image_id": 2323077, "entity": "truck", "caption": "Crane lowering truck onto truck", "question": ["is there truck ?", "is there truck ?"], "prompt": "Crane lowering {} onto {}"}, {"index": 565, "image_id": 2322225, "entity": "truck", "caption": "Mud flaps on a truck.", "question": ["are there mud flaps ?", "is there a truck ?"], "prompt": "Mud flaps on a {}."}, {"index": 566, "image_id": 2322197, "entity": "truck", "caption": "Ford emblem on a truck", "question": ["is there a truck ?"], "prompt": "Ford emblem on a {}"}, {"index": 567, "image_id": 2321380, "entity": "truck", "caption": "tarp covering back of truck", "question": ["is there tarp ?", "is there truck ?"], "prompt": "tarp covering back of {}"}, {"index": 568, "image_id": 2321380, "entity": "truck", "caption": "drivers side door of truck", "question": ["are there drivers ?", "is there door ?", "is there truck ?"], "prompt": "drivers side door of {}"}, {"index": 569, "image_id": 2320291, "entity": "truck", "caption": "man walking in front of red truck", "question": ["is there man ?", "is there front ?", "is there red truck ?"], "prompt": "man walking in front of red {}"}, {"index": 570, "image_id": 2319823, "entity": "truck", "caption": "the light on the truck is on ", "question": ["is there the light ?", "is there the truck ?"], "prompt": "the light on the {} is on "}, {"index": 571, "image_id": 2319676, "entity": "truck", "caption": "The truck has a white cab.", "question": ["is there the truck ?", "is there a white cab ?"], "prompt": "The {} has a white cab."}, {"index": 572, "image_id": 2319676, "entity": "truck", "caption": "The truck has a windshield wiper.", "question": ["is there the truck ?", "is there a windshield wiper ?"], "prompt": "The {} has a windshield wiper."}, {"index": 573, "image_id": 2319676, "entity": "truck", "caption": "The driver of the truck is a man.", "question": ["is there the driver ?", "is there the truck ?", "is there a man ?"], "prompt": "The driver of the {} is a man."}, {"index": 574, "image_id": 2319556, "entity": "truck", "caption": "Realistic strawberries painted on truck.", "question": ["are there realistic strawberries ?", "is there truck ?"], "prompt": "Realistic strawberries painted on {}."}, {"index": 575, "image_id": 2319556, "entity": "truck", "caption": "Realistic blackberries painted on truck", "question": ["are there realistic blackberries ?", "is there truck ?"], "prompt": "Realistic blackberries painted on {}"}, {"index": 576, "image_id": 2319556, "entity": "truck", "caption": "Very nice shades of purple painted on truck.", "question": ["are there very nice shades ?", "is there purple ?", "is there truck ?"], "prompt": "Very nice shades of purple painted on {}."}, {"index": 577, "image_id": 2319540, "entity": "truck", "caption": "wagon behind pick up truck", "question": ["is there wagon ?", "is there truck ?"], "prompt": "wagon behind pick up {}"}, {"index": 578, "image_id": 2319280, "entity": "truck", "caption": "PErson sitting in the cab of a truck", "question": ["is there person ?", "is there the cab ?", "is there a truck ?"], "prompt": "PErson sitting in the cab of a {}"}, {"index": 579, "image_id": 2319280, "entity": "truck", "caption": "three people part way under the truck", "question": ["are there three people ?", "is there the truck ?"], "prompt": "three people part way under the {}"}, {"index": 580, "image_id": 2318538, "entity": "truck", "caption": "the dirt piled in the bed of the truck", "question": ["is there the dirt ?", "is there the bed ?", "is there the truck ?"], "prompt": "the dirt piled in the bed of the {}"}, {"index": 581, "image_id": 2317984, "entity": "truck", "caption": "The truck has two plows on it.", "question": ["is there the truck ?", "are there two plows ?"], "prompt": "The {} has two plows on it."}, {"index": 582, "image_id": 2317934, "entity": "truck", "caption": "the company that built the firetruck", "question": ["is there the company ?", "is there the firetruck ?"], "prompt": "the company that built the fire{}"}, {"index": 583, "image_id": 2317726, "entity": "truck", "caption": "the people are climbing the truck", "question": ["are there the people ?", "is there the truck ?"], "prompt": "the people are climbing the {}"}, {"index": 584, "image_id": 2317513, "entity": "truck", "caption": "an old truck sits in a yard", "question": ["is there an old truck ?", "is there a yard ?"], "prompt": "an old {} sits in a yard"}, {"index": 585, "image_id": 2317513, "entity": "truck", "caption": "Grill work on front of truck.", "question": ["is there grill work ?", "is there front ?", "is there truck ?"], "prompt": "Grill work on front of {}."}, {"index": 586, "image_id": 2317513, "entity": "truck", "caption": "Old fashion headlight on front of truck.", "question": ["is there old fashion headlight ?", "is there front ?", "is there truck ?"], "prompt": "Old fashion headlight on front of {}."}, {"index": 587, "image_id": 2317513, "entity": "truck", "caption": "Front right tire flat on truck.", "question": ["is there right tire ?", "is there truck ?"], "prompt": "Front right tire flat on {}."}, {"index": 588, "image_id": 2317240, "entity": "truck", "caption": "White and black mud flaps on back of truck.", "question": ["are there white and black mud flaps ?", "is there back ?", "is there truck ?"], "prompt": "White and black mud flaps on back of {}."}, {"index": 589, "image_id": 2317240, "entity": "truck", "caption": "large black tire mounted behind truck cab", "question": ["is there large black tire ?", "is there truck cab ?"], "prompt": "large black tire mounted behind {} cab"}, {"index": 590, "image_id": 2316849, "entity": "truck", "caption": "he is leaning on the truck ", "question": ["is there the truck ?"], "prompt": "he is leaning on the {} "}, {"index": 591, "image_id": 2316849, "entity": "truck", "caption": "the truck grill is black", "question": ["is there the truck grill ?"], "prompt": "the {} grill is black"}, {"index": 592, "image_id": 2316663, "entity": "truck", "caption": "cord wrapped over items in truck and secured on sides", "question": ["is there cord ?", "are there items ?", "is there truck ?", "are there sides ?"], "prompt": "cord wrapped over items in {} and secured on sides"}, {"index": 593, "image_id": 2316663, "entity": "truck", "caption": "Trailer hitch on a truck", "question": ["is there trailer hitch ?", "is there a truck ?"], "prompt": "Trailer hitch on a {}"}, {"index": 594, "image_id": 2316538, "entity": "truck", "caption": "a rack mounted on top of the truck cab", "question": ["is there a rack ?", "is there top ?", "is there the truck cab ?"], "prompt": "a rack mounted on top of the {} cab"}, {"index": 595, "image_id": 2316538, "entity": "truck", "caption": "truck sits on a pockmarked street", "question": ["is there truck ?", "is there a pockmarked street ?"], "prompt": "{} sits on a pockmarked street"}, {"index": 596, "image_id": 2315863, "entity": "truck", "caption": "door handle on the truck", "question": ["is there door ?", "is there the truck ?"], "prompt": "door handle on the {}"}, {"index": 597, "image_id": 2315632, "entity": "truck", "caption": "a woman sititn gon truck", "question": ["is there a woman sititn ?", "is there truck ?"], "prompt": "a woman sititn gon {}"}, {"index": 598, "image_id": 2315484, "entity": "truck", "caption": "chrome plated grill on the front of a truck", "question": ["is there chrome plated grill ?", "is there the front ?", "is there a truck ?"], "prompt": "chrome plated grill on the front of a {}"}, {"index": 599, "image_id": 2414401, "entity": "truck", "caption": "the truck has a red brakelight", "question": ["is there the truck ?", "is there a red brakelight ?"], "prompt": "the {} has a red brakelight"}, {"index": 600, "image_id": 2414401, "entity": "truck", "caption": "the truck is carrying a ladder ", "question": ["is there the truck ?", "is there a ladder ?"], "prompt": "the {} is carrying a ladder "}, {"index": 601, "image_id": 2414213, "entity": "truck", "caption": "the door handle on the truck is silver", "question": ["is there the door ?", "is there the truck ?"], "prompt": "the door handle on the {} is silver"}, {"index": 602, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver mirror", "question": ["is there the blue truck ?", "is there a silver mirror ?"], "prompt": "the blue {} has a silver mirror"}, {"index": 603, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver stripe", "question": ["is there the blue truck ?", "is there a silver stripe ?"], "prompt": "the blue {} has a silver stripe"}, {"index": 604, "image_id": 2414213, "entity": "truck", "caption": "a dog is looking out truck window", "question": ["is there a dog ?"], "prompt": "a dog is looking out {} window"}, {"index": 605, "image_id": 2414213, "entity": "truck", "caption": "Silverado emblem on the side of the truck", "question": ["is there silverado emblem ?", "is there the side ?", "is there the truck ?"], "prompt": "Silverado emblem on the side of the {}"}, {"index": 606, "image_id": 2414213, "entity": "truck", "caption": "Door handle on the side of the truck", "question": ["is there door ?", "is there the side ?", "is there the truck ?"], "prompt": "Door handle on the side of the {}"}, {"index": 607, "image_id": 2414197, "entity": "truck", "caption": "The truck carries equipment. ", "question": ["is there the truck ?", "is there equipment ?"], "prompt": "The {} carries equipment. "}, {"index": 608, "image_id": 2414197, "entity": "truck", "caption": "The truck carries a hose.", "question": ["is there the truck ?", "is there a hose ?"], "prompt": "The {} carries a hose."}, {"index": 609, "image_id": 2414197, "entity": "truck", "caption": "The truck carries cables. ", "question": ["is there the truck ?", "are there cables ?"], "prompt": "The {} carries cables. "}, {"index": 610, "image_id": 2414197, "entity": "truck", "caption": "The truck's front has red stripes.", "question": ["is there the truck's front ?", "are there red stripes ?"], "prompt": "The {}'s front has red stripes."}, {"index": 611, "image_id": 2414197, "entity": "truck", "caption": "Three of the truck's tires are visible.", "question": ["are there the truck's tires ?"], "prompt": "Three of the {}'s tires are visible."}, {"index": 612, "image_id": 2414142, "entity": "truck", "caption": "the truck says brennstoffe on the back", "question": ["is there the truck ?", "is there the back ?"], "prompt": "the {} says brennstoffe on the back"}, {"index": 613, "image_id": 2414142, "entity": "truck", "caption": "a car is on the road in front of the truck", "question": ["is there a car ?", "is there the road ?", "is there front ?", "is there the truck ?"], "prompt": "a car is on the road in front of the {}"}, {"index": 614, "image_id": 2414142, "entity": "truck", "caption": "the back of the truck says man", "question": ["is there the back ?", "is there the truck ?", "is there man ?"], "prompt": "the back of the {} says man"}, {"index": 615, "image_id": 2413814, "entity": "truck", "caption": "Sign written in white on side of truck.", "question": ["is there sign ?", "is there side ?", "is there truck ?"], "prompt": "Sign written in white on side of {}."}, {"index": 616, "image_id": 2413814, "entity": "truck", "caption": "A white SUV is behind the truck ", "question": ["is there the truck ?"], "prompt": "A white SUV is behind the {} "}, {"index": 617, "image_id": 2413579, "entity": "truck", "caption": "truck has chrome wheelie bar on back", "question": ["is there truck ?", "is there chrome wheelie bar ?"], "prompt": "{} has chrome wheelie bar on back"}, {"index": 618, "image_id": 2413408, "entity": "truck", "caption": "The truck has yellow hubcaps.", "question": ["is there the truck ?", "are there yellow hubcaps ?"], "prompt": "The {} has yellow hubcaps."}, {"index": 619, "image_id": 2413408, "entity": "truck", "caption": "The truck has two headlights.", "question": ["is there the truck ?", "are there two headlights ?"], "prompt": "The {} has two headlights."}, {"index": 620, "image_id": 2413104, "entity": "truck", "caption": "a mechanical arm sits on top of a truck", "question": ["is there a mechanical arm ?", "is there top ?", "is there a truck ?"], "prompt": "a mechanical arm sits on top of a {}"}, {"index": 621, "image_id": 2413104, "entity": "truck", "caption": "This truck has 6 wheels", "question": ["is there this truck ?", "are there 6 wheels ?"], "prompt": "This {} has 6 wheels"}, {"index": 622, "image_id": 2413104, "entity": "truck", "caption": "This door enters the truck", "question": ["is there this door ?", "is there the truck ?"], "prompt": "This door enters the {}"}, {"index": 623, "image_id": 2413104, "entity": "truck", "caption": "Trees are next to the truck", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are next to the {}"}, {"index": 624, "image_id": 2413104, "entity": "truck", "caption": "man standing next to a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man standing next to a {}"}, {"index": 625, "image_id": 2412942, "entity": "truck", "caption": "the truck has large tyres", "question": ["is there the truck ?", "are there large tyres ?"], "prompt": "the {} has large tyres"}, {"index": 626, "image_id": 2412792, "entity": "truck", "caption": "the truck is casting a shadow underneath", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow underneath"}, {"index": 627, "image_id": 2412792, "entity": "truck", "caption": "the truck has a crane on it's back", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane on it's back"}, {"index": 628, "image_id": 2412792, "entity": "truck", "caption": "the side of the truck has Chinese lettering", "question": ["is there the side ?", "is there the truck ?", "is there chinese lettering ?"], "prompt": "the side of the {} has Chinese lettering"}, {"index": 629, "image_id": 2412792, "entity": "truck", "caption": "a palm tree is behind the truck", "question": ["is there a palm tree ?", "is there the truck ?"], "prompt": "a palm tree is behind the {}"}, {"index": 630, "image_id": 2412792, "entity": "truck", "caption": "a white column is on the right of the truck", "question": ["is there a white column ?", "is there the right ?", "is there the truck ?"], "prompt": "a white column is on the right of the {}"}, {"index": 631, "image_id": 2412792, "entity": "truck", "caption": "truck has a crane on back", "question": ["is there truck ?", "is there a crane ?"], "prompt": "{} has a crane on back"}, {"index": 632, "image_id": 2412792, "entity": "truck", "caption": "Roof of truck is red", "question": ["is there roof ?", "is there truck ?"], "prompt": "Roof of {} is red"}, {"index": 633, "image_id": 2412603, "entity": "truck", "caption": "Man is by a red Toyota truck", "question": ["is there man ?", "is there a red toyota truck ?"], "prompt": "Man is by a red Toyota {}"}, {"index": 634, "image_id": 2412488, "entity": "truck", "caption": "a person works on a truck", "question": ["is there a person ?", "is there a truck ?"], "prompt": "a person works on a {}"}, {"index": 635, "image_id": 2412483, "entity": "truck", "caption": "woman in purple shirt looking at truck", "question": ["is there woman ?", "is there purple shirt ?", "is there truck ?"], "prompt": "woman in purple shirt looking at {}"}, {"index": 636, "image_id": 2412483, "entity": "truck", "caption": "man in black shirt taking picture of truck", "question": ["is there man ?", "is there black shirt ?", "is there picture ?", "is there truck ?"], "prompt": "man in black shirt taking picture of {}"}, {"index": 637, "image_id": 2412186, "entity": "truck", "caption": "Front headlight on the red truck.", "question": ["is there front headlight ?", "is there the red truck ?"], "prompt": "Front headlight on the red {}."}, {"index": 638, "image_id": 2412186, "entity": "truck", "caption": "canoe tied on top of truck", "question": ["is there canoe ?", "is there top ?", "is there truck ?"], "prompt": "canoe tied on top of {}"}, {"index": 639, "image_id": 2412186, "entity": "truck", "caption": "truck logo painted on fender", "question": ["is there truck logo ?", "is there fender ?"], "prompt": "{} logo painted on fender"}, {"index": 640, "image_id": 2412161, "entity": "truck", "caption": "The truck has a side mirror.", "question": ["is there the truck ?", "is there a side mirror ?"], "prompt": "The {} has a side mirror."}, {"index": 641, "image_id": 2412161, "entity": "truck", "caption": "Rust surrounds truck headlight. ", "question": ["is there rust ?", "is there truck headlight ?"], "prompt": "Rust surrounds {} headlight. "}, {"index": 642, "image_id": 2415675, "entity": "truck", "caption": "these are truck wheels", "question": ["are there truck wheels ?"], "prompt": "these are {} wheels"}, {"index": 643, "image_id": 2416928, "entity": "truck", "caption": "Yellow truck has big wheels ", "question": ["is there yellow truck ?", "are there big wheels ?"], "prompt": "Yellow {} has big wheels "}, {"index": 644, "image_id": 2417877, "entity": "truck", "caption": "Strange artwork is on the truck ", "question": ["is there strange artwork ?", "is there the truck ?"], "prompt": "Strange artwork is on the {} "}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03417042.json b/data/imagenet/compositions/prompts/n03417042.json
new file mode 100644
index 0000000000000000000000000000000000000000..b6fe830b8c58bb2e880bf19ab5e0170da455ebed
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03417042.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 107967, "entity": "truck", "caption": "A window is open on the truck", "question": ["is there a window ?", "is there the truck ?"], "prompt": "A window is open on the {}"}, {"index": 1, "image_id": 150364, "entity": "truck", "caption": "front left wheel of tow truck", "question": ["is there front left wheel ?", "is there tow truck ?"], "prompt": "front left wheel of tow {}"}, {"index": 2, "image_id": 150393, "entity": "truck", "caption": "A truck that probably sells seafood", "question": ["is there a truck ?", "is there seafood ?"], "prompt": "A {} that probably sells seafood"}, {"index": 3, "image_id": 150486, "entity": "truck", "caption": "This is a basket on a bucket truck.", "question": ["is there a basket ?", "is there a bucket truck ?"], "prompt": "This is a basket on a bucket {}."}, {"index": 4, "image_id": 150497, "entity": "truck", "caption": "Firetruck parked in garage", "question": ["is there firetruck ?", "is there garage ?"], "prompt": "Fire{} parked in garage"}, {"index": 5, "image_id": 285972, "entity": "truck", "caption": "a gas station pump by truck", "question": ["is there a gas station pump ?", "is there truck ?"], "prompt": "a gas station pump by {}"}, {"index": 6, "image_id": 498093, "entity": "truck", "caption": "green face painted on a truck", "question": ["is there green face ?", "is there a truck ?"], "prompt": "green face painted on a {}"}, {"index": 7, "image_id": 498093, "entity": "truck", "caption": "Blue painted letters on the side of truck.", "question": ["are there blue painted letters ?", "is there the side ?", "is there truck ?"], "prompt": "Blue painted letters on the side of {}."}, {"index": 8, "image_id": 713062, "entity": "truck", "caption": "black door handle on the truck", "question": ["is there black door ?", "is there the truck ?"], "prompt": "black door handle on the {}"}, {"index": 9, "image_id": 713419, "entity": "truck", "caption": "Woman standing next to truck ", "question": ["is there woman ?", "is there truck ?"], "prompt": "Woman standing next to {} "}, {"index": 10, "image_id": 713503, "entity": "truck", "caption": "A blue rope tied to a truck", "question": ["is there a blue rope ?", "is there a truck ?"], "prompt": "A blue rope tied to a {}"}, {"index": 11, "image_id": 713614, "entity": "truck", "caption": "container on truck has pink flowers painted on it", "question": ["is there container ?", "is there truck ?", "are there pink flowers ?"], "prompt": "container on {} has pink flowers painted on it"}, {"index": 12, "image_id": 713614, "entity": "truck", "caption": "large white sack that is full is hung from back of truck ", "question": ["is there large white sack ?", "is there truck ?"], "prompt": "large white sack that is full is hung from back of {} "}, {"index": 13, "image_id": 713614, "entity": "truck", "caption": "Lotus Flower painted on back of garbage truck", "question": ["is there lotus flower ?", "is there garbage truck ?"], "prompt": "Lotus Flower painted on back of garbage {}"}, {"index": 14, "image_id": 1159845, "entity": "truck", "caption": "bright colored star painted on the back of the truck", "question": ["is there bright colored star ?", "is there the back ?", "is there the truck ?"], "prompt": "bright colored star painted on the back of the {}"}, {"index": 15, "image_id": 1159845, "entity": "truck", "caption": "two grey tarp covered bundles on the back of the truck", "question": ["is there two grey tarp ?", "are there bundles ?", "is there the back ?", "is there the truck ?"], "prompt": "two grey tarp covered bundles on the back of the {}"}, {"index": 16, "image_id": 1160061, "entity": "truck", "caption": "The person standing in the open door of the blue truck.", "question": ["is there the person ?", "is there the open door ?", "is there the blue truck ?"], "prompt": "The person standing in the open door of the blue {}."}, {"index": 17, "image_id": 1160061, "entity": "truck", "caption": "The white shirt the person is wearing at the door of the truck.", "question": ["is there the white shirt ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The white shirt the person is wearing at the door of the {}."}, {"index": 18, "image_id": 1160061, "entity": "truck", "caption": "The pants the person standing in the door of the truck is wearing.", "question": ["are there the pants ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The pants the person standing in the door of the {} is wearing."}, {"index": 19, "image_id": 1592126, "entity": "truck", "caption": "Potatoes are on the back of a truck", "question": ["are there potatoes ?", "is there the back ?", "is there a truck ?"], "prompt": "Potatoes are on the back of a {}"}, {"index": 20, "image_id": 1592126, "entity": "truck", "caption": "Bags of potatoes are on back of a truck", "question": ["are there bags ?", "are there potatoes ?", "is there a truck ?"], "prompt": "Bags of potatoes are on back of a {}"}, {"index": 21, "image_id": 1592160, "entity": "truck", "caption": "an orange pick up truck with an open hood", "question": ["is there an orange pick ?", "is there truck ?", "is there an open hood ?"], "prompt": "an orange pick up {} with an open hood"}, {"index": 22, "image_id": 1592291, "entity": "truck", "caption": "bird painted on the side of the truck", "question": ["is there bird ?", "is there the side ?", "is there the truck ?"], "prompt": "bird painted on the side of the {}"}, {"index": 23, "image_id": 1592584, "entity": "truck", "caption": "An orange cone is on the white truck", "question": ["is there an orange cone ?", "is there the white truck ?"], "prompt": "An orange cone is on the white {}"}, {"index": 24, "image_id": 1592584, "entity": "truck", "caption": "The truck has a license plate", "question": ["is there the truck ?", "is there a license plate ?"], "prompt": "The {} has a license plate"}, {"index": 25, "image_id": 1592584, "entity": "truck", "caption": "Red letters on the trucks grill", "question": ["are there red letters ?", "are there the trucks ?"], "prompt": "Red letters on the {}s grill"}, {"index": 26, "image_id": 1592584, "entity": "truck", "caption": "The truck has a windsheild ", "question": ["is there the truck ?", "is there a windsheild ?"], "prompt": "The {} has a windsheild "}, {"index": 27, "image_id": 1592951, "entity": "truck", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The {} on the boat is blue in color."}, {"index": 28, "image_id": 2413810, "entity": "truck", "caption": "The truck has a tall exhaust pipe", "question": ["is there the truck ?", "is there a tall exhaust pipe ?"], "prompt": "The {} has a tall exhaust pipe"}, {"index": 29, "image_id": 2413318, "entity": "truck", "caption": "Some packet kept on the deck of the truck", "question": ["is there some packet ?", "is there the deck ?", "is there the truck ?"], "prompt": "Some packet kept on the deck of the {}"}, {"index": 30, "image_id": 2413318, "entity": "truck", "caption": "people are riding the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are riding the {}"}, {"index": 31, "image_id": 2413114, "entity": "truck", "caption": "group of young men ride the front of truck", "question": ["is there group ?", "are there young men ?", "is there the front ?", "is there truck ?"], "prompt": "group of young men ride the front of {}"}, {"index": 32, "image_id": 2413114, "entity": "truck", "caption": "seated person watches truck drive by", "question": ["is there seated person ?"], "prompt": "seated person watches {} drive by"}, {"index": 33, "image_id": 2413114, "entity": "truck", "caption": "person of motorbike trails the truck", "question": ["is there person ?", "are there motorbike trails ?"], "prompt": "person of motorbike trails the {}"}, {"index": 34, "image_id": 2413114, "entity": "truck", "caption": "\"Three men rides on the front of a truck\"", "question": ["are there three men ?", "is there the front ?", "is there a truck ?"], "prompt": "\"Three men rides on the front of a {}\""}, {"index": 35, "image_id": 2413114, "entity": "truck", "caption": "Side view mirrors on dump truck.", "question": ["are there side view mirrors ?", "is there dump truck ?"], "prompt": "Side view mirrors on dump {}."}, {"index": 36, "image_id": 2413114, "entity": "truck", "caption": "Front left tire of dump truck.", "question": ["is there front left tire ?", "is there dump truck ?"], "prompt": "Front left tire of dump {}."}, {"index": 37, "image_id": 2410247, "entity": "truck", "caption": "Man driving the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man driving the {}."}, {"index": 38, "image_id": 2410156, "entity": "truck", "caption": "D I is on side of truck", "question": ["is there side ?", "is there truck ?"], "prompt": "D I is on side of {}"}, {"index": 39, "image_id": 2410114, "entity": "truck", "caption": "front head light on a fire truck", "question": ["is there front head light ?", "is there a fire truck ?"], "prompt": "front head light on a fire {}"}, {"index": 40, "image_id": 2409987, "entity": "truck", "caption": "the truck has windows", "question": ["is there the truck ?", "are there windows ?"], "prompt": "the {} has windows"}, {"index": 41, "image_id": 2409644, "entity": "truck", "caption": "Motorcycle parked next to semi truck.", "question": ["is there motorcycle ?", "is there semi truck ?"], "prompt": "Motorcycle parked next to semi {}."}, {"index": 42, "image_id": 2409644, "entity": "truck", "caption": "Woman standing next to semi truck.", "question": ["is there woman ?", "is there semi truck ?"], "prompt": "Woman standing next to semi {}."}, {"index": 43, "image_id": 2409644, "entity": "truck", "caption": "a woman is reaching into a truck compartment", "question": ["is there a woman ?", "is there a truck compartment ?"], "prompt": "a woman is reaching into a {} compartment"}, {"index": 44, "image_id": 2409644, "entity": "truck", "caption": "a kw grill cover on truck", "question": ["is there a kw grill cover ?", "is there truck ?"], "prompt": "a kw grill cover on {}"}, {"index": 45, "image_id": 2409644, "entity": "truck", "caption": "american flag painted truck", "question": ["is there truck ?"], "prompt": "american flag painted {}"}, {"index": 46, "image_id": 2409642, "entity": "truck", "caption": "the truck has a crane", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane"}, {"index": 47, "image_id": 2409642, "entity": "truck", "caption": "these are truck tires", "question": ["are there truck tires ?"], "prompt": "these are {} tires"}, {"index": 48, "image_id": 2409608, "entity": "truck", "caption": "Road in front of truck is gravel.", "question": ["is there road ?", "is there front ?", "is there truck ?", "is there gravel ?"], "prompt": "Road in front of {} is gravel."}, {"index": 49, "image_id": 2409326, "entity": "truck", "caption": "man bent over truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man bent over {}"}, {"index": 50, "image_id": 2409188, "entity": "truck", "caption": "The truck has a siren and lights on it.", "question": ["is there the truck ?", "is there a siren ?", "are there lights ?"], "prompt": "The {} has a siren and lights on it."}, {"index": 51, "image_id": 2409176, "entity": "truck", "caption": "Sedans are behind truck", "question": ["are there sedans ?", "is there truck ?"], "prompt": "Sedans are behind {}"}, {"index": 52, "image_id": 2408016, "entity": "truck", "caption": "The head lights on a truck", "question": ["is there the head ?", "is there a truck ?"], "prompt": "The head lights on a {}"}, {"index": 53, "image_id": 2408016, "entity": "truck", "caption": "Toyota sign in the front of the truck", "question": ["is there toyota sign ?", "is there the front ?", "is there the truck ?"], "prompt": "Toyota sign in the front of the {}"}, {"index": 54, "image_id": 2408016, "entity": "truck", "caption": "Gold writing on front of truck", "question": ["is there gold writing ?", "is there front ?", "is there truck ?"], "prompt": "Gold writing on front of {}"}, {"index": 55, "image_id": 2408012, "entity": "truck", "caption": "the truck has a headlight on the side", "question": ["is there the truck ?", "is there a headlight ?", "is there the side ?"], "prompt": "the {} has a headlight on the side"}, {"index": 56, "image_id": 2408003, "entity": "truck", "caption": "Two side view mirrors on the food truck.", "question": ["are there two side view mirrors ?", "is there the food truck ?"], "prompt": "Two side view mirrors on the food {}."}, {"index": 57, "image_id": 2407996, "entity": "truck", "caption": "two d's on a transfer truck", "question": ["is there two d ?", "is there a transfer truck ?"], "prompt": "two d's on a transfer {}"}, {"index": 58, "image_id": 2407996, "entity": "truck", "caption": "Name of the company written on the side of the truck", "question": ["is there name ?", "is there the company ?", "is there the side ?", "is there the truck ?"], "prompt": "Name of the company written on the side of the {}"}, {"index": 59, "image_id": 2407996, "entity": "truck", "caption": "Parking lights lit up on the truck", "question": ["are there parking lights ?", "is there the truck ?"], "prompt": "Parking lights lit up on the {}"}, {"index": 60, "image_id": 2407996, "entity": "truck", "caption": "Person standing next to the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "Person standing next to the {}"}, {"index": 61, "image_id": 2407996, "entity": "truck", "caption": "the truck has headlights", "question": ["is there the truck ?", "are there headlights ?"], "prompt": "the {} has headlights"}, {"index": 62, "image_id": 2407996, "entity": "truck", "caption": "the truck says \"Eddie Stobart\"", "question": ["is there the truck ?"], "prompt": "the {} says \"Eddie Stobart\""}, {"index": 63, "image_id": 2407879, "entity": "truck", "caption": "the word scania is on the front of the truck", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there the truck ?"], "prompt": "the word scania is on the front of the {}"}, {"index": 64, "image_id": 2407879, "entity": "truck", "caption": "emblem on truck says scania", "question": ["is there emblem ?", "is there truck ?"], "prompt": "emblem on {} says scania"}, {"index": 65, "image_id": 2407871, "entity": "truck", "caption": "The truck is on grass", "question": ["is there the truck ?", "is there grass ?"], "prompt": "The {} is on grass"}, {"index": 66, "image_id": 2407871, "entity": "truck", "caption": "a metal dog ornament on the truck", "question": ["is there a metal dog ornament ?", "is there the truck ?"], "prompt": "a metal dog ornament on the {}"}, {"index": 67, "image_id": 2407871, "entity": "truck", "caption": "old truck is beside a road", "question": ["is there old truck ?", "is there a road ?"], "prompt": "old {} is beside a road"}, {"index": 68, "image_id": 2407871, "entity": "truck", "caption": "truck is sitting in grass", "question": ["is there truck ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 69, "image_id": 2407871, "entity": "truck", "caption": "grass growing around truck", "question": ["is there grass ?", "is there truck ?"], "prompt": "grass growing around {}"}, {"index": 70, "image_id": 2407871, "entity": "truck", "caption": "truck has a red cab", "question": ["is there truck ?", "is there a red cab ?"], "prompt": "{} has a red cab"}, {"index": 71, "image_id": 2407871, "entity": "truck", "caption": "truck says mack on side", "question": ["is there truck ?", "is there side ?"], "prompt": "{} says mack on side"}, {"index": 72, "image_id": 2407871, "entity": "truck", "caption": "truck has headlights", "question": ["is there truck ?", "are there headlights ?"], "prompt": "{} has headlights"}, {"index": 73, "image_id": 2407784, "entity": "truck", "caption": "passer bys walking behind truck", "question": ["is there truck ?"], "prompt": "passer bys walking behind {}"}, {"index": 74, "image_id": 2407760, "entity": "truck", "caption": "the truck is red in color", "question": ["is there the truck ?", "is there color ?"], "prompt": "the {} is red in color"}, {"index": 75, "image_id": 2407760, "entity": "truck", "caption": "the truck is metallic", "question": ["is there the truck ?"], "prompt": "the {} is metallic"}, {"index": 76, "image_id": 2407551, "entity": "truck", "caption": "Makers logo on the truck nearest the camera", "question": ["are there makers ?", "is there the truck ?", "is there the camera ?"], "prompt": "Makers logo on the {} nearest the camera"}, {"index": 77, "image_id": 2407551, "entity": "truck", "caption": "chrome lettering front of truck", "question": ["is there chrome lettering front ?", "is there truck ?"], "prompt": "chrome lettering front of {}"}, {"index": 78, "image_id": 2407551, "entity": "truck", "caption": "truck has multiple wheels", "question": ["is there truck ?", "are there multiple wheels ?"], "prompt": "{} has multiple wheels"}, {"index": 79, "image_id": 2407551, "entity": "truck", "caption": "front bumper on truck is clean", "question": ["is there front bumper ?", "is there truck ?"], "prompt": "front bumper on {} is clean"}, {"index": 80, "image_id": 2407241, "entity": "truck", "caption": "Red stripe painted on the truck", "question": ["is there red stripe ?", "is there the truck ?"], "prompt": "Red stripe painted on the {}"}, {"index": 81, "image_id": 2407128, "entity": "truck", "caption": "trucks parked side to side", "question": ["are there trucks ?"], "prompt": "{}s parked side to side"}, {"index": 82, "image_id": 2407128, "entity": "truck", "caption": "fabric pulled over the tops of trucks", "question": ["is there fabric ?", "are there the tops ?", "are there trucks ?"], "prompt": "fabric pulled over the tops of {}s"}, {"index": 83, "image_id": 2407128, "entity": "truck", "caption": "sign on rope hanging off front of truck", "question": ["is there rope ?", "is there front ?", "is there truck ?"], "prompt": "sign on rope hanging off front of {}"}, {"index": 84, "image_id": 2407128, "entity": "truck", "caption": "Two trucks are on the grass.", "question": ["are there two trucks ?", "is there the grass ?"], "prompt": "Two {}s are on the grass."}, {"index": 85, "image_id": 2407128, "entity": "truck", "caption": "The number 9 is on the truck.", "question": ["is there the number ?", "is there the truck ?"], "prompt": "The number 9 is on the {}."}, {"index": 86, "image_id": 2407128, "entity": "truck", "caption": "The truck has a spare tire under the bed.", "question": ["is there the truck ?", "is there a spare tire ?", "is there the bed ?"], "prompt": "The {} has a spare tire under the bed."}, {"index": 87, "image_id": 2407128, "entity": "truck", "caption": "The truck has a fabric cover on the back.", "question": ["is there the truck ?", "is there a fabric cover ?", "is there the back ?"], "prompt": "The {} has a fabric cover on the back."}, {"index": 88, "image_id": 2407128, "entity": "truck", "caption": "A yellow and white sign is on a truck.", "question": ["is there a yellow and white sign ?", "is there a truck ?"], "prompt": "A yellow and white sign is on a {}."}, {"index": 89, "image_id": 2405965, "entity": "truck", "caption": "the side of the truck has lettering on it", "question": ["is there the side ?", "is there the truck ?"], "prompt": "the side of the {} has lettering on it"}, {"index": 90, "image_id": 2405965, "entity": "truck", "caption": "the truck is casting a shadow", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow"}, {"index": 91, "image_id": 2405965, "entity": "truck", "caption": "palm trees are behind the truck", "question": ["are there palm trees ?", "is there the truck ?"], "prompt": "palm trees are behind the {}"}, {"index": 92, "image_id": 2404753, "entity": "truck", "caption": "Window of truck is open", "question": ["is there window ?", "is there truck ?"], "prompt": "Window of {} is open"}, {"index": 93, "image_id": 2404626, "entity": "truck", "caption": "the flatbed truck is black", "question": ["is there the flatbed truck ?"], "prompt": "the flatbed {} is black"}, {"index": 94, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of a house", "question": ["is there the truck ?", "is there front ?", "is there a house ?"], "prompt": "the {} is in front of a house"}, {"index": 95, "image_id": 2404602, "entity": "truck", "caption": "the truck has a black bumper", "question": ["is there the truck ?", "is there a black bumper ?"], "prompt": "the {} has a black bumper"}, {"index": 96, "image_id": 2404602, "entity": "truck", "caption": "the truck has a logo on the back of it", "question": ["is there the truck ?", "is there a logo ?", "is there the back ?"], "prompt": "the {} has a logo on the back of it"}, {"index": 97, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of the house", "question": ["is there the truck ?", "is there front ?", "is there the house ?"], "prompt": "the {} is in front of the house"}, {"index": 98, "image_id": 2404338, "entity": "truck", "caption": "Person is on top of a truck", "question": ["is there person ?", "is there top ?", "is there a truck ?"], "prompt": "Person is on top of a {}"}, {"index": 99, "image_id": 2404315, "entity": "truck", "caption": "the bed of the truck has steel rails", "question": ["is there the bed ?", "is there the truck ?", "are there steel rails ?"], "prompt": "the bed of the {} has steel rails"}, {"index": 100, "image_id": 2404315, "entity": "truck", "caption": "the truck has mud flaps", "question": ["is there the truck ?", "are there mud flaps ?"], "prompt": "the {} has mud flaps"}, {"index": 101, "image_id": 2404315, "entity": "truck", "caption": "The back of the truck is holding an object", "question": ["is there the back ?", "is there the truck ?", "is there an object ?"], "prompt": "The back of the {} is holding an object"}, {"index": 102, "image_id": 2404315, "entity": "truck", "caption": "green grass growing around the truck", "question": ["is there green grass ?", "is there the truck ?"], "prompt": "green grass growing around the {}"}, {"index": 103, "image_id": 2403558, "entity": "truck", "caption": "road that truck is on", "question": ["is there road ?", "is there that truck ?"], "prompt": "road that {} is on"}, {"index": 104, "image_id": 2403322, "entity": "truck", "caption": "the wheels are on truck", "question": ["are there the wheels ?", "is there truck ?"], "prompt": "the wheels are on {}"}, {"index": 105, "image_id": 2403322, "entity": "truck", "caption": "mirror is on truck", "question": ["is there mirror ?", "is there truck ?"], "prompt": "mirror is on {}"}, {"index": 106, "image_id": 2402597, "entity": "truck", "caption": "Woman sits on border of truck", "question": ["is there woman ?", "is there border ?", "is there truck ?"], "prompt": "Woman sits on border of {}"}, {"index": 107, "image_id": 2402597, "entity": "truck", "caption": "Man sits in back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "Man sits in back of {}"}, {"index": 108, "image_id": 2402433, "entity": "truck", "caption": "A German shepherd is sitting in the back of a truck.", "question": ["is there a german shepherd ?", "is there the back ?", "is there a truck ?"], "prompt": "A German shepherd is sitting in the back of a {}."}, {"index": 109, "image_id": 2402276, "entity": "truck", "caption": "Kiddie fire truck merry go round", "question": ["is there kiddie fire truck merry ?"], "prompt": "Kiddie fire {} merry go round"}, {"index": 110, "image_id": 2402096, "entity": "truck", "caption": "Leaves painted onto a truck", "question": ["are there leaves ?", "is there a truck ?"], "prompt": "Leaves painted onto a {}"}, {"index": 111, "image_id": 2401997, "entity": "truck", "caption": "metal truck bed lid", "question": ["is there metal truck bed lid ?"], "prompt": "metal {} bed lid"}, {"index": 112, "image_id": 2401580, "entity": "truck", "caption": "flag mounted on the front of a truck", "question": ["is there flag ?", "is there the front ?", "is there a truck ?"], "prompt": "flag mounted on the front of a {}"}, {"index": 113, "image_id": 2401327, "entity": "truck", "caption": "the truck has a chalkboard", "question": ["is there the truck ?", "is there a chalkboard ?"], "prompt": "the {} has a chalkboard"}, {"index": 114, "image_id": 2401327, "entity": "truck", "caption": "the man is inside of the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "the man is inside of the {}"}, {"index": 115, "image_id": 2401327, "entity": "truck", "caption": "the truck's tire is black and red", "question": ["is there the truck's tire ?"], "prompt": "the {}'s tire is black and red"}, {"index": 116, "image_id": 2401207, "entity": "truck", "caption": "the truck is blue", "question": ["is there the truck ?"], "prompt": "the {} is blue"}, {"index": 117, "image_id": 2401207, "entity": "truck", "caption": "White head lights on truck.", "question": ["are there white head lights ?", "is there truck ?"], "prompt": "White head lights on {}."}, {"index": 118, "image_id": 2401199, "entity": "truck", "caption": "a round headlight on a truck", "question": ["is there a round headlight ?", "is there a truck ?"], "prompt": "a round headlight on a {}"}, {"index": 119, "image_id": 2401199, "entity": "truck", "caption": "Old red truck with a license plate that says HENRE.", "question": ["is there old red truck ?", "is there a license plate ?", "is there henre ?"], "prompt": "Old red {} with a license plate that says HENRE."}, {"index": 120, "image_id": 2400775, "entity": "truck", "caption": "camo armored pick up truck", "question": ["is there truck ?"], "prompt": "camo armored pick up {}"}, {"index": 121, "image_id": 2400775, "entity": "truck", "caption": "white skull painted on truck", "question": ["is there white skull ?", "is there truck ?"], "prompt": "white skull painted on {}"}, {"index": 122, "image_id": 2400768, "entity": "truck", "caption": "the truck has huge tires", "question": ["is there the truck ?", "are there huge tires ?"], "prompt": "the {} has huge tires"}, {"index": 123, "image_id": 2400768, "entity": "truck", "caption": "people are watching the truck go by", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are watching the {} go by"}, {"index": 124, "image_id": 2400768, "entity": "truck", "caption": "the truck has yellow lights", "question": ["is there the truck ?", "are there yellow lights ?"], "prompt": "the {} has yellow lights"}, {"index": 125, "image_id": 2400768, "entity": "truck", "caption": "Military truck driving down street.", "question": ["is there military truck ?", "is there street ?"], "prompt": "Military {} driving down street."}, {"index": 126, "image_id": 2400633, "entity": "truck", "caption": "the engine compartment on a truck.", "question": ["is there the engine compartment ?", "is there a truck ?"], "prompt": "the engine compartment on a {}."}, {"index": 127, "image_id": 2400633, "entity": "truck", "caption": "silver spot on the truck where paint has faded ", "question": ["is there silver spot ?", "is there the truck ?", "is there paint ?"], "prompt": "silver spot on the {} where paint has faded "}, {"index": 128, "image_id": 2400606, "entity": "truck", "caption": "a silver right headlight on an old truck", "question": ["is there a silver right headlight ?", "is there an old truck ?"], "prompt": "a silver right headlight on an old {}"}, {"index": 129, "image_id": 2400606, "entity": "truck", "caption": "the truck has 2 lights on front of it", "question": ["is there the truck ?", "are there 2 lights ?", "is there front ?"], "prompt": "the {} has 2 lights on front of it"}, {"index": 130, "image_id": 2400606, "entity": "truck", "caption": "straw is under the truck", "question": ["is there straw ?", "is there the truck ?"], "prompt": "straw is under the {}"}, {"index": 131, "image_id": 2400606, "entity": "truck", "caption": "the truck's bumper is falling off", "question": ["is there the truck's bumper ?"], "prompt": "the {}'s bumper is falling off"}, {"index": 132, "image_id": 2400599, "entity": "truck", "caption": "Side of truck is blue", "question": ["is there side ?", "is there truck ?"], "prompt": "Side of {} is blue"}, {"index": 133, "image_id": 2400599, "entity": "truck", "caption": "blue car parked behind a truck", "question": ["is there blue car ?", "is there a truck ?"], "prompt": "blue car parked behind a {}"}, {"index": 134, "image_id": 2400509, "entity": "truck", "caption": "front left tire on the truck", "question": ["is there front left tire ?", "is there the truck ?"], "prompt": "front left tire on the {}"}, {"index": 135, "image_id": 2400509, "entity": "truck", "caption": "front left mirror on the truck", "question": ["is there front left mirror ?", "is there the truck ?"], "prompt": "front left mirror on the {}"}, {"index": 136, "image_id": 2400509, "entity": "truck", "caption": "the man has a white truck", "question": ["is there the man ?", "is there a white truck ?"], "prompt": "the man has a white {}"}, {"index": 137, "image_id": 2400346, "entity": "truck", "caption": "man driving a pick-up truck", "question": ["is there man ?", "is there a pick-up truck ?"], "prompt": "man driving a pick-up {}"}, {"index": 138, "image_id": 2400346, "entity": "truck", "caption": "man is driving a bluish gray truck", "question": ["is there man ?", "is there a bluish gray truck ?"], "prompt": "man is driving a bluish gray {}"}, {"index": 139, "image_id": 2400304, "entity": "truck", "caption": "Man on street looking at truck", "question": ["is there man ?", "is there street ?", "is there truck ?"], "prompt": "Man on street looking at {}"}, {"index": 140, "image_id": 2400304, "entity": "truck", "caption": "Blue shirt on man looking at truck", "question": ["is there blue shirt ?", "is there man ?", "is there truck ?"], "prompt": "Blue shirt on man looking at {}"}, {"index": 141, "image_id": 2400304, "entity": "truck", "caption": "Black hat on man looking at truck", "question": ["is there black hat ?", "is there man ?", "is there truck ?"], "prompt": "Black hat on man looking at {}"}, {"index": 142, "image_id": 2400304, "entity": "truck", "caption": "Watch on man looking at truck", "question": ["is there man ?", "is there truck ?"], "prompt": "Watch on man looking at {}"}, {"index": 143, "image_id": 2400304, "entity": "truck", "caption": "The man standing next to the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "The man standing next to the {}"}, {"index": 144, "image_id": 2400304, "entity": "truck", "caption": "The women reflected on the truck", "question": ["are there the women ?", "is there the truck ?"], "prompt": "The women reflected on the {}"}, {"index": 145, "image_id": 2400304, "entity": "truck", "caption": "Tall man is looking at truck", "question": ["is there tall man ?", "is there truck ?"], "prompt": "Tall man is looking at {}"}, {"index": 146, "image_id": 2399870, "entity": "truck", "caption": "a sign is on the side of the truck", "question": ["is there a sign ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign is on the side of the {}"}, {"index": 147, "image_id": 2399870, "entity": "truck", "caption": "a number is on the side of the truck", "question": ["is there a number ?", "is there the side ?", "is there the truck ?"], "prompt": "a number is on the side of the {}"}, {"index": 148, "image_id": 2399870, "entity": "truck", "caption": "an exhaust system is on the side of the truck", "question": ["is there an exhaust system ?", "is there the side ?", "is there the truck ?"], "prompt": "an exhaust system is on the side of the {}"}, {"index": 149, "image_id": 2399764, "entity": "truck", "caption": "A truck is in the background.", "question": ["is there a truck ?", "is there the background ?"], "prompt": "A {} is in the background."}, {"index": 150, "image_id": 2398894, "entity": "truck", "caption": "black truck with hard bed cover", "question": ["is there black truck ?", "is there hard bed ?"], "prompt": "black {} with hard bed cover"}, {"index": 151, "image_id": 2398630, "entity": "truck", "caption": "a bus that has collided with truck", "question": ["is there a bus ?", "is there truck ?"], "prompt": "a bus that has collided with {}"}, {"index": 152, "image_id": 2398143, "entity": "truck", "caption": "transfer trucks windshield", "question": ["are there trucks ?"], "prompt": "transfer {}s windshield"}, {"index": 153, "image_id": 2398143, "entity": "truck", "caption": "the front left tire of a truck", "question": ["is there tire ?", "is there a truck ?"], "prompt": "the front left tire of a {}"}, {"index": 154, "image_id": 2398143, "entity": "truck", "caption": "front of truck is red", "question": ["is there front ?", "is there truck ?"], "prompt": "front of {} is red"}, {"index": 155, "image_id": 2398143, "entity": "truck", "caption": "lights on truck are orange", "question": ["are there lights ?", "is there truck ?"], "prompt": "lights on {} are orange"}, {"index": 156, "image_id": 2398143, "entity": "truck", "caption": "truck has gray stripes", "question": ["is there truck ?", "are there gray stripes ?"], "prompt": "{} has gray stripes"}, {"index": 157, "image_id": 2398143, "entity": "truck", "caption": "two silver stripes painted on the front of the truck", "question": ["are there two silver stripes ?", "is there the front ?", "is there the truck ?"], "prompt": "two silver stripes painted on the front of the {}"}, {"index": 158, "image_id": 2398030, "entity": "truck", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice cars and {}s lined up"}, {"index": 159, "image_id": 2397835, "entity": "truck", "caption": "the sculpture is in the bed of a truck", "question": ["is there the sculpture ?", "is there the bed ?", "is there a truck ?"], "prompt": "the sculpture is in the bed of a {}"}, {"index": 160, "image_id": 2397835, "entity": "truck", "caption": "WILD IN ART is on the back of the truck", "question": ["is there art ?", "is there the back ?", "is there the truck ?"], "prompt": "WILD IN ART is on the back of the {}"}, {"index": 161, "image_id": 2397058, "entity": "truck", "caption": "cardboard boxes piled high on truck", "question": ["are there cardboard boxes ?", "is there truck ?"], "prompt": "cardboard boxes piled high on {}"}, {"index": 162, "image_id": 2397058, "entity": "truck", "caption": "man in plaid shirt leaning over truck", "question": ["is there man ?", "is there plaid shirt ?", "is there truck ?"], "prompt": "man in plaid shirt leaning over {}"}, {"index": 163, "image_id": 2397049, "entity": "truck", "caption": "Teddy bear on front of truck", "question": ["is there front ?", "is there truck ?"], "prompt": "Teddy bear on front of {}"}, {"index": 164, "image_id": 2397049, "entity": "truck", "caption": "Head lights front of truck", "question": ["are there head lights ?", "is there truck ?"], "prompt": "Head lights front of {}"}, {"index": 165, "image_id": 2396831, "entity": "truck", "caption": "the trucks headlights are off", "question": ["are there the trucks headlights ?"], "prompt": "the {}s headlights are off"}, {"index": 166, "image_id": 2396726, "entity": "truck", "caption": "truck tires have two different types of white hubcaps", "question": ["are there truck tires ?", "are there two different types ?", "are there white hubcaps ?"], "prompt": "{} tires have two different types of white hubcaps"}, {"index": 167, "image_id": 2396726, "entity": "truck", "caption": "sedan behind truck has obama '08 poster on front above license plate", "question": ["is there truck ?", "is there obama '08 poster ?", "is there front ?", "is there license plate ?"], "prompt": "sedan behind {} has obama '08 poster on front above license plate"}, {"index": 168, "image_id": 2396726, "entity": "truck", "caption": "drivers side truck headlight", "question": ["are there drivers ?"], "prompt": "drivers side {} headlight"}, {"index": 169, "image_id": 2396433, "entity": "truck", "caption": "A man spray paints the truck.", "question": ["is there a man ?", "is there the truck ?"], "prompt": "A man spray paints the {}."}, {"index": 170, "image_id": 2396312, "entity": "truck", "caption": "the truck rim is red", "question": ["is there the truck rim ?"], "prompt": "the {} rim is red"}, {"index": 171, "image_id": 2396312, "entity": "truck", "caption": "it is the door on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "it is the door on the {}"}, {"index": 172, "image_id": 2396121, "entity": "truck", "caption": "Gigi writing on truck.", "question": ["is there truck ?"], "prompt": "Gigi writing on {}."}, {"index": 173, "image_id": 2396121, "entity": "truck", "caption": "Menu hanging from truck.", "question": ["is there menu ?", "is there truck ?"], "prompt": "Menu hanging from {}."}, {"index": 174, "image_id": 2395929, "entity": "truck", "caption": "the horse is on a truck", "question": ["is there the horse ?", "is there a truck ?"], "prompt": "the horse is on a {}"}, {"index": 175, "image_id": 2395902, "entity": "truck", "caption": "Big blue parked truck.", "question": ["is there big blue parked truck ?"], "prompt": "Big blue parked {}."}, {"index": 176, "image_id": 2395902, "entity": "truck", "caption": "Long white truck parked.", "question": ["is there long white truck ?"], "prompt": "Long white {} parked."}, {"index": 177, "image_id": 2395835, "entity": "truck", "caption": "passenger handle inside truck", "question": ["is there passenger handle ?", "is there truck ?"], "prompt": "passenger handle inside {}"}, {"index": 178, "image_id": 2395835, "entity": "truck", "caption": "a man in the truck is wearing red", "question": ["is there a man ?", "is there the truck ?", "is there red ?"], "prompt": "a man in the {} is wearing red"}, {"index": 179, "image_id": 2395835, "entity": "truck", "caption": "two people are in the truck", "question": ["are there two people ?", "is there the truck ?"], "prompt": "two people are in the {}"}, {"index": 180, "image_id": 2395411, "entity": "truck", "caption": "emergency lights are on top of the truck", "question": ["are there emergency lights ?", "is there top ?", "is there the truck ?"], "prompt": "emergency lights are on top of the {}"}, {"index": 181, "image_id": 2395408, "entity": "truck", "caption": "headlights of food truck are off", "question": ["are there headlights ?", "is there food truck ?"], "prompt": "headlights of food {} are off"}, {"index": 182, "image_id": 2395292, "entity": "truck", "caption": "wheels of the truck are red and chrome", "question": ["are there wheels ?", "is there the truck ?"], "prompt": "wheels of the {} are red and chrome"}, {"index": 183, "image_id": 2395292, "entity": "truck", "caption": "bed of truck is wooden", "question": ["is there bed ?", "is there truck ?"], "prompt": "bed of {} is wooden"}, {"index": 184, "image_id": 2395292, "entity": "truck", "caption": "truck has a side mirror", "question": ["is there truck ?", "is there a side mirror ?"], "prompt": "{} has a side mirror"}, {"index": 185, "image_id": 2395292, "entity": "truck", "caption": "truck door has no handle", "question": ["is there truck door ?", "is there no handle ?"], "prompt": "{} door has no handle"}, {"index": 186, "image_id": 2395042, "entity": "truck", "caption": "The truck door is open. ", "question": ["is there the truck door ?"], "prompt": "The {} door is open. "}, {"index": 187, "image_id": 2395042, "entity": "truck", "caption": "The driver is getting into the truck. ", "question": ["is there the driver ?", "is there the truck ?"], "prompt": "The driver is getting into the {}. "}, {"index": 188, "image_id": 2395042, "entity": "truck", "caption": "The truck is carrying cattle. ", "question": ["is there the truck ?", "are there cattle ?"], "prompt": "The {} is carrying cattle. "}, {"index": 189, "image_id": 2395042, "entity": "truck", "caption": "The truck's shadow is on the street.", "question": ["is there the truck's shadow ?", "is there the street ?"], "prompt": "The {}'s shadow is on the street."}, {"index": 190, "image_id": 2395042, "entity": "truck", "caption": "door of truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "door of {} is open"}, {"index": 191, "image_id": 2394987, "entity": "truck", "caption": "a sign on the side of a truck that says Drink Coca-Cola", "question": ["is there a sign ?", "is there the side ?", "is there a truck ?"], "prompt": "a sign on the side of a {} that says Drink Coca-Cola"}, {"index": 192, "image_id": 2394972, "entity": "truck", "caption": "the truck has a light", "question": ["is there the truck ?", "is there a light ?"], "prompt": "the {} has a light"}, {"index": 193, "image_id": 2394972, "entity": "truck", "caption": "the truck has a windshield", "question": ["is there the truck ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 194, "image_id": 2394854, "entity": "truck", "caption": "the truck has a green logo", "question": ["is there the truck ?", "is there a green logo ?"], "prompt": "the {} has a green logo"}, {"index": 195, "image_id": 2394854, "entity": "truck", "caption": "emergency lights are on the truck", "question": ["are there emergency lights ?", "is there the truck ?"], "prompt": "emergency lights are on the {}"}, {"index": 196, "image_id": 2394854, "entity": "truck", "caption": "a side mirror is on the truck", "question": ["is there a side mirror ?", "is there the truck ?"], "prompt": "a side mirror is on the {}"}, {"index": 197, "image_id": 2394740, "entity": "truck", "caption": "Honda emblem on the back of a gry truck", "question": ["is there the back ?", "is there a gry truck ?"], "prompt": "Honda emblem on the back of a gry {}"}, {"index": 198, "image_id": 2394740, "entity": "truck", "caption": "the truck is a honda", "question": ["is there the truck ?"], "prompt": "the {} is a honda"}, {"index": 199, "image_id": 2394740, "entity": "truck", "caption": "the truck has 4wd", "question": ["is there the truck ?", "is there 4wd ?"], "prompt": "the {} has 4wd"}, {"index": 200, "image_id": 2394327, "entity": "truck", "caption": "metal ladder sitting beside truck", "question": ["is there metal ladder ?", "is there truck ?"], "prompt": "metal ladder sitting beside {}"}, {"index": 201, "image_id": 2394327, "entity": "truck", "caption": "bottom on red crane attached to back of truck", "question": ["is there bottom ?", "is there red crane ?", "is there truck ?"], "prompt": "bottom on red crane attached to back of {}"}, {"index": 202, "image_id": 2393999, "entity": "truck", "caption": "The front of the truck is yellow.", "question": ["is there the front ?", "is there the truck ?"], "prompt": "The front of the {} is yellow."}, {"index": 203, "image_id": 2393989, "entity": "truck", "caption": "End of truck where garbage enters.", "question": ["is there end ?", "is there truck ?", "is there garbage ?"], "prompt": "End of {} where garbage enters."}, {"index": 204, "image_id": 2393842, "entity": "truck", "caption": "The people are looking at the truck.", "question": ["are there the people ?", "is there the truck ?"], "prompt": "The people are looking at the {}."}, {"index": 205, "image_id": 2393686, "entity": "truck", "caption": "The fire trucks windshield.", "question": ["are there the fire trucks ?"], "prompt": "The fire {}s windshield."}, {"index": 206, "image_id": 2393686, "entity": "truck", "caption": "A license plate is on the truck", "question": ["is there a license plate ?", "is there the truck ?"], "prompt": "A license plate is on the {}"}, {"index": 207, "image_id": 2393686, "entity": "truck", "caption": "License plate on front of firetruck that reads S360 ATO", "question": ["is there license plate ?", "is there front ?", "is there firetruck ?"], "prompt": "License plate on front of fire{} that reads S360 ATO"}, {"index": 208, "image_id": 2393548, "entity": "truck", "caption": "The bucket is dumping dirt into the truck", "question": ["is there the bucket ?", "is there dirt ?", "is there the truck ?"], "prompt": "The bucket is dumping dirt into the {}"}, {"index": 209, "image_id": 2393548, "entity": "truck", "caption": "These are the trucks front wheels", "question": ["are there the trucks ?", "are there front wheels ?"], "prompt": "These are the {}s front wheels"}, {"index": 210, "image_id": 2393548, "entity": "truck", "caption": "This is the cab of the truck", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "This is the cab of the {}"}, {"index": 211, "image_id": 2393263, "entity": "truck", "caption": "Ribbons tied around the mirror of a utility truck", "question": ["are there ribbons ?", "is there the mirror ?", "is there a utility truck ?"], "prompt": "Ribbons tied around the mirror of a utility {}"}, {"index": 212, "image_id": 2392926, "entity": "truck", "caption": "man driving large truck", "question": ["is there man ?", "is there large truck ?"], "prompt": "man driving large {}"}, {"index": 213, "image_id": 2392536, "entity": "truck", "caption": "front wheel of truck is black", "question": ["is there front wheel ?", "is there truck ?"], "prompt": "front wheel of {} is black"}, {"index": 214, "image_id": 2392536, "entity": "truck", "caption": "back wheel of truck is big", "question": ["is there back wheel ?", "is there truck ?"], "prompt": "back wheel of {} is big"}, {"index": 215, "image_id": 2392536, "entity": "truck", "caption": "The truck has a lady painted on it", "question": ["is there the truck ?", "is there a lady ?"], "prompt": "The {} has a lady painted on it"}, {"index": 216, "image_id": 2392394, "entity": "truck", "caption": "the front headlight on the truck", "question": ["is there the front headlight ?", "is there the truck ?"], "prompt": "the front headlight on the {}"}, {"index": 217, "image_id": 2392394, "entity": "truck", "caption": "man standing behind the truck", "question": ["is there man ?", "is there the truck ?"], "prompt": "man standing behind the {}"}, {"index": 218, "image_id": 2392105, "entity": "truck", "caption": "The windhield wipers are on the truck.", "question": ["are there the windhield wipers ?", "is there the truck ?"], "prompt": "The windhield wipers are on the {}."}, {"index": 219, "image_id": 2391764, "entity": "truck", "caption": "tires on truck are black", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires on {} are black"}, {"index": 220, "image_id": 2391651, "entity": "truck", "caption": "the pickup truck is on the street", "question": ["is there the pickup truck ?", "is there the street ?"], "prompt": "the pickup {} is on the street"}, {"index": 221, "image_id": 2391651, "entity": "truck", "caption": "person seemingly trying to get into truck", "question": ["is there person ?", "is there truck ?"], "prompt": "person seemingly trying to get into {}"}, {"index": 222, "image_id": 2391651, "entity": "truck", "caption": "The right side view mirrors on the truck.", "question": ["are there the right side view mirrors ?", "is there the truck ?"], "prompt": "The right side view mirrors on the {}."}, {"index": 223, "image_id": 2391651, "entity": "truck", "caption": "The front tire on the side of the truck that the door is open.", "question": ["is there the front tire ?", "is there the side ?", "is there the truck ?", "is there the door ?"], "prompt": "The front tire on the side of the {} that the door is open."}, {"index": 224, "image_id": 2391651, "entity": "truck", "caption": "front left tire of green truck", "question": ["is there front left tire ?", "is there green truck ?"], "prompt": "front left tire of green {}"}, {"index": 225, "image_id": 2391128, "entity": "truck", "caption": "Dead tree branch hanging out of the truck.", "question": ["is there dead tree branch ?", "is there the truck ?"], "prompt": "Dead tree branch hanging out of the {}."}, {"index": 226, "image_id": 2391128, "entity": "truck", "caption": "Large truck driving down the road.", "question": ["is there large truck ?", "is there the road ?"], "prompt": "Large {} driving down the road."}, {"index": 227, "image_id": 2391063, "entity": "truck", "caption": "clear truck head light", "question": ["is there clear truck head light ?"], "prompt": "clear {} head light"}, {"index": 228, "image_id": 2390018, "entity": "truck", "caption": "Black woman painted on truck", "question": ["is there black woman ?", "is there truck ?"], "prompt": "Black woman painted on {}"}, {"index": 229, "image_id": 2390018, "entity": "truck", "caption": "female character painted on truck", "question": ["is there female character ?", "is there truck ?"], "prompt": "female character painted on {}"}, {"index": 230, "image_id": 2389846, "entity": "truck", "caption": "Driver's side window rolled up on truck", "question": ["is there driver's side window ?", "is there truck ?"], "prompt": "Driver's side window rolled up on {}"}, {"index": 231, "image_id": 2389498, "entity": "truck", "caption": "red pick up truck parked on a street", "question": ["is there truck ?", "is there a street ?"], "prompt": "red pick up {} parked on a street"}, {"index": 232, "image_id": 2389435, "entity": "truck", "caption": "ladder coming out of the truck", "question": ["is there ladder ?", "is there the truck ?"], "prompt": "ladder coming out of the {}"}, {"index": 233, "image_id": 2389435, "entity": "truck", "caption": "kid standing on truck.", "question": ["is there kid ?", "is there truck ?"], "prompt": "kid standing on {}."}, {"index": 234, "image_id": 2389256, "entity": "truck", "caption": "The dishes are on the truck.", "question": ["are there the dishes ?", "is there the truck ?"], "prompt": "The dishes are on the {}."}, {"index": 235, "image_id": 2389256, "entity": "truck", "caption": "Two dishes are on the truck.", "question": ["are there two dishes ?", "is there the truck ?"], "prompt": "Two dishes are on the {}."}, {"index": 236, "image_id": 2389256, "entity": "truck", "caption": "dark container next to truck", "question": ["is there dark container ?", "is there truck ?"], "prompt": "dark container next to {}"}, {"index": 237, "image_id": 2389232, "entity": "truck", "caption": "a black truck bed cover", "question": ["is there a black truck bed ?"], "prompt": "a black {} bed cover"}, {"index": 238, "image_id": 2389232, "entity": "truck", "caption": "the trucks name DUDE", "question": ["are there the trucks ?", "is there dude ?"], "prompt": "the {}s name DUDE"}, {"index": 239, "image_id": 2389232, "entity": "truck", "caption": "truck bed has a black cover", "question": ["is there truck bed ?", "is there a black cover ?"], "prompt": "{} bed has a black cover"}, {"index": 240, "image_id": 2389232, "entity": "truck", "caption": "Hood of truck is open.", "question": ["is there hood ?", "is there truck ?"], "prompt": "Hood of {} is open."}, {"index": 241, "image_id": 2388587, "entity": "truck", "caption": "person walking near massive truck", "question": ["is there person ?", "is there massive truck ?"], "prompt": "person walking near massive {}"}, {"index": 242, "image_id": 2388482, "entity": "truck", "caption": "two dogs are standing in the back of a truck", "question": ["are there two dogs ?", "is there the back ?", "is there a truck ?"], "prompt": "two dogs are standing in the back of a {}"}, {"index": 243, "image_id": 2388482, "entity": "truck", "caption": "two dogs are peering over a truck cab", "question": ["are there two dogs ?", "is there a truck cab ?"], "prompt": "two dogs are peering over a {} cab"}, {"index": 244, "image_id": 2388482, "entity": "truck", "caption": "SIERRA is on the back of truck", "question": ["is there the back ?", "is there truck ?"], "prompt": "SIERRA is on the back of {}"}, {"index": 245, "image_id": 2388482, "entity": "truck", "caption": "sierra make on truck", "question": ["is there truck ?"], "prompt": "sierra make on {}"}, {"index": 246, "image_id": 2388392, "entity": "truck", "caption": "People are standing by the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "People are standing by the {}"}, {"index": 247, "image_id": 2388286, "entity": "truck", "caption": "The ladder is on the truck.", "question": ["is there the ladder ?", "is there the truck ?"], "prompt": "The ladder is on the {}."}, {"index": 248, "image_id": 2388286, "entity": "truck", "caption": "The paper on the truck is white.", "question": ["is there the paper ?", "is there the truck ?"], "prompt": "The paper on the {} is white."}, {"index": 249, "image_id": 2388286, "entity": "truck", "caption": "The ladders are on top of the truck", "question": ["are there the ladders ?", "is there top ?", "is there the truck ?"], "prompt": "The ladders are on top of the {}"}, {"index": 250, "image_id": 2388153, "entity": "truck", "caption": "Steel bed cover on pickup truck", "question": ["is there steel bed cover ?", "is there pickup truck ?"], "prompt": "Steel bed cover on pickup {}"}, {"index": 251, "image_id": 2388153, "entity": "truck", "caption": "Manufacturer emblem of a pickup truck", "question": ["is there manufacturer emblem ?", "is there a pickup truck ?"], "prompt": "Manufacturer emblem of a pickup {}"}, {"index": 252, "image_id": 2388153, "entity": "truck", "caption": "the truck has a bed cover", "question": ["is there the truck ?", "is there a bed cover ?"], "prompt": "the {} has a bed cover"}, {"index": 253, "image_id": 2387414, "entity": "truck", "caption": "green grass growing beside truck", "question": ["is there green grass ?", "is there truck ?"], "prompt": "green grass growing beside {}"}, {"index": 254, "image_id": 2387347, "entity": "truck", "caption": "Leaveless branches hang down in front of the truck", "question": ["are there leaveless branches ?", "is there front ?", "is there the truck ?"], "prompt": "Leaveless branches hang down in front of the {}"}, {"index": 255, "image_id": 2387347, "entity": "truck", "caption": "God is love is painted across the truck's front bumper", "question": ["is there love ?", "is there the truck's front bumper ?"], "prompt": "God is love is painted across the {}'s front bumper"}, {"index": 256, "image_id": 2387056, "entity": "truck", "caption": "Name of company written on truck.", "question": ["is there name ?", "is there company ?", "is there truck ?"], "prompt": "Name of company written on {}."}, {"index": 257, "image_id": 2386762, "entity": "truck", "caption": "silver metal door handle on truck", "question": ["is there silver metal door ?", "is there truck ?"], "prompt": "silver metal door handle on {}"}, {"index": 258, "image_id": 2386762, "entity": "truck", "caption": "Trees are behind the truck.", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are behind the {}."}, {"index": 259, "image_id": 2386704, "entity": "truck", "caption": "a garbage can next to the truck", "question": ["is there a garbage ?", "is there the truck ?"], "prompt": "a garbage can next to the {}"}, {"index": 260, "image_id": 2386704, "entity": "truck", "caption": "A cooler is on the truck", "question": ["is there the truck ?"], "prompt": "A cooler is on the {}"}, {"index": 261, "image_id": 2386704, "entity": "truck", "caption": "A menu is on the side of the truck", "question": ["is there a menu ?", "is there the side ?", "is there the truck ?"], "prompt": "A menu is on the side of the {}"}, {"index": 262, "image_id": 2386704, "entity": "truck", "caption": "A trash can is beside the truck", "question": ["is there a trash can ?", "is there the truck ?"], "prompt": "A trash can is beside the {}"}, {"index": 263, "image_id": 2386704, "entity": "truck", "caption": "A sign is on top of the truck", "question": ["is there a sign ?", "is there top ?", "is there the truck ?"], "prompt": "A sign is on top of the {}"}, {"index": 264, "image_id": 2386704, "entity": "truck", "caption": "food truck parked next to sidewalk", "question": ["is there food truck ?"], "prompt": "food {} parked next to sidewalk"}, {"index": 265, "image_id": 2386704, "entity": "truck", "caption": "lined trash can leaning againt food truck", "question": ["is there trash ?", "is there againt food truck ?"], "prompt": "lined trash can leaning againt food {}"}, {"index": 266, "image_id": 2386704, "entity": "truck", "caption": "Trash can outside of truck", "question": ["is there truck ?"], "prompt": "Trash can outside of {}"}, {"index": 267, "image_id": 2386545, "entity": "truck", "caption": "dirt splashed on side of truck door", "question": ["is there dirt ?", "is there side ?", "is there truck ?"], "prompt": "dirt splashed on side of {} door"}, {"index": 268, "image_id": 2386451, "entity": "truck", "caption": "roof rack on top of pickup truck", "question": ["is there roof rack ?", "is there top ?", "is there pickup truck ?"], "prompt": "roof rack on top of pickup {}"}, {"index": 269, "image_id": 2386451, "entity": "truck", "caption": "The truck is towing a boat", "question": ["is there the truck ?", "is there a boat ?"], "prompt": "The {} is towing a boat"}, {"index": 270, "image_id": 2385966, "entity": "truck", "caption": "The truck has a red logo on it.", "question": ["is there the truck ?", "is there a red logo ?"], "prompt": "The {} has a red logo on it."}, {"index": 271, "image_id": 2385966, "entity": "truck", "caption": "the caution lights on a truck", "question": ["are there the caution lights ?", "is there a truck ?"], "prompt": "the caution lights on a {}"}, {"index": 272, "image_id": 2385580, "entity": "truck", "caption": "Couch is riding in truck bed", "question": ["is there couch ?", "is there truck bed ?"], "prompt": "Couch is riding in {} bed"}, {"index": 273, "image_id": 2385580, "entity": "truck", "caption": "power lines hang above truck", "question": ["are there power lines ?", "is there truck ?"], "prompt": "power lines hang above {}"}, {"index": 274, "image_id": 2385580, "entity": "truck", "caption": "the couch sits in the back of a pickup truck", "question": ["is there the couch ?", "is there the back ?", "is there a pickup truck ?"], "prompt": "the couch sits in the back of a pickup {}"}, {"index": 275, "image_id": 2385580, "entity": "truck", "caption": "door handle on the truck door", "question": ["is there door ?", "is there the truck door ?"], "prompt": "door handle on the {} door"}, {"index": 276, "image_id": 2385559, "entity": "truck", "caption": "Gold writing on the front of the fire truck", "question": ["is there gold writing ?", "is there the front ?", "is there the fire truck ?"], "prompt": "Gold writing on the front of the fire {}"}, {"index": 277, "image_id": 2385559, "entity": "truck", "caption": "A firetruck is on a road.", "question": ["is there a firetruck ?", "is there a road ?"], "prompt": "A fire{} is on a road."}, {"index": 278, "image_id": 2385559, "entity": "truck", "caption": "The word \" PLAINS \" is on the front of a firetruck.", "question": ["is there the word ?", "are there \" plains ?", "is there the front ?", "is there a firetruck ?"], "prompt": "The word \" PLAINS \" is on the front of a fire{}."}, {"index": 279, "image_id": 2385559, "entity": "truck", "caption": "A street sign is above a firetruck.", "question": ["is there a street sign ?", "is there a firetruck ?"], "prompt": "A street sign is above a fire{}."}, {"index": 280, "image_id": 2385527, "entity": "truck", "caption": "red chef stenciled on side of truck", "question": ["is there red chef ?", "is there side ?", "is there truck ?"], "prompt": "red chef stenciled on side of {}"}, {"index": 281, "image_id": 2384523, "entity": "truck", "caption": "tires of truck painted", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires of {} painted"}, {"index": 282, "image_id": 2384523, "entity": "truck", "caption": "red painted bible sign on truck", "question": ["is there bible sign ?", "is there truck ?"], "prompt": "red painted bible sign on {}"}, {"index": 283, "image_id": 2384073, "entity": "truck", "caption": "Ice hanging from the front of truck", "question": ["is there ice ?", "is there the front ?", "is there truck ?"], "prompt": "Ice hanging from the front of {}"}, {"index": 284, "image_id": 2383911, "entity": "truck", "caption": "The word Challenge on the truck.", "question": ["is there the word challenge ?", "is there the truck ?"], "prompt": "The word Challenge on the {}."}, {"index": 285, "image_id": 2383909, "entity": "truck", "caption": "The bananas are in the truck bed", "question": ["are there the bananas ?", "is there the truck bed ?"], "prompt": "The bananas are in the {} bed"}, {"index": 286, "image_id": 2383743, "entity": "truck", "caption": "A truck is carrying merchandise", "question": ["is there a truck ?", "is there merchandise ?"], "prompt": "A {} is carrying merchandise"}, {"index": 287, "image_id": 2383743, "entity": "truck", "caption": "lights hanging off the back of the truck", "question": ["are there lights ?", "is there the back ?", "is there the truck ?"], "prompt": "lights hanging off the back of the {}"}, {"index": 288, "image_id": 2383315, "entity": "truck", "caption": "The fire truck is on the street", "question": ["is there the fire truck ?", "is there the street ?"], "prompt": "The fire {} is on the street"}, {"index": 289, "image_id": 2382893, "entity": "truck", "caption": "big lugs encircle a rear truck tire", "question": ["are there big lugs ?", "is there a rear truck tire ?"], "prompt": "big lugs encircle a rear {} tire"}, {"index": 290, "image_id": 2382893, "entity": "truck", "caption": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow truck", "question": ["are there present viewers' line ?", "is there site ?", "is there end ?", "is there yellow truck ?"], "prompt": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow {}"}, {"index": 291, "image_id": 2382893, "entity": "truck", "caption": "truck has a cover on back", "question": ["is there truck ?", "is there a cover ?"], "prompt": "{} has a cover on back"}, {"index": 292, "image_id": 2382893, "entity": "truck", "caption": "the cover is on the back of a truck", "question": ["is there the cover ?", "is there the back ?", "is there a truck ?"], "prompt": "the cover is on the back of a {}"}, {"index": 293, "image_id": 2382893, "entity": "truck", "caption": "the truck has some black letters on it", "question": ["is there the truck ?", "are there some black letters ?"], "prompt": "the {} has some black letters on it"}, {"index": 294, "image_id": 2382779, "entity": "truck", "caption": "the spare tire is on the truck", "question": ["is there the spare tire ?", "is there the truck ?"], "prompt": "the spare tire is on the {}"}, {"index": 295, "image_id": 2382494, "entity": "truck", "caption": "the truck has a plate", "question": ["is there the truck ?", "is there a plate ?"], "prompt": "the {} has a plate"}, {"index": 296, "image_id": 2382494, "entity": "truck", "caption": "the truck has a bumper", "question": ["is there the truck ?", "is there a bumper ?"], "prompt": "the {} has a bumper"}, {"index": 297, "image_id": 2382494, "entity": "truck", "caption": "the truck has a wiper", "question": ["is there the truck ?", "is there a wiper ?"], "prompt": "the {} has a wiper"}, {"index": 298, "image_id": 2382494, "entity": "truck", "caption": "the truck has a window", "question": ["is there the truck ?", "is there a window ?"], "prompt": "the {} has a window"}, {"index": 299, "image_id": 2382494, "entity": "truck", "caption": "the chevy logo is on the truck", "question": ["is there the chevy logo ?", "is there the truck ?"], "prompt": "the chevy logo is on the {}"}, {"index": 300, "image_id": 2382494, "entity": "truck", "caption": "the truck has a silver grill", "question": ["is there the truck ?", "is there a silver grill ?"], "prompt": "the {} has a silver grill"}, {"index": 301, "image_id": 2382470, "entity": "truck", "caption": "Waste management truck is on the road", "question": ["is there waste management truck ?", "is there the road ?"], "prompt": "Waste management {} is on the road"}, {"index": 302, "image_id": 2382462, "entity": "truck", "caption": "man is standing behind truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is standing behind {}"}, {"index": 303, "image_id": 2382462, "entity": "truck", "caption": "truck has white door", "question": ["is there truck ?", "is there white door ?"], "prompt": "{} has white door"}, {"index": 304, "image_id": 2382454, "entity": "truck", "caption": "Lights are on in front of the truck.", "question": ["are there lights ?", "is there front ?", "is there the truck ?"], "prompt": "Lights are on in front of the {}."}, {"index": 305, "image_id": 2381035, "entity": "truck", "caption": "Woman standing on step of truck", "question": ["is there woman ?", "is there step ?", "is there truck ?"], "prompt": "Woman standing on step of {}"}, {"index": 306, "image_id": 2380908, "entity": "truck", "caption": "The door handle on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door handle on the {}"}, {"index": 307, "image_id": 2380866, "entity": "truck", "caption": "the truck has a mirror", "question": ["is there the truck ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 308, "image_id": 2380866, "entity": "truck", "caption": "the logo is on the back of the truck", "question": ["is there the logo ?", "is there the back ?", "is there the truck ?"], "prompt": "the logo is on the back of the {}"}, {"index": 309, "image_id": 2380866, "entity": "truck", "caption": "the billboard is infront of the truck", "question": ["is there the billboard ?", "is there the truck ?"], "prompt": "the billboard is infront of the {}"}, {"index": 310, "image_id": 2380592, "entity": "truck", "caption": "man standing at back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "man standing at back of {}"}, {"index": 311, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is black"}, {"index": 312, "image_id": 2380587, "entity": "truck", "caption": "the truck has an antenna", "question": ["is there the truck ?", "is there an antenna ?"], "prompt": "the {} has an antenna"}, {"index": 313, "image_id": 2380587, "entity": "truck", "caption": "black windshield wipers are on the truck", "question": ["are there black windshield wipers ?", "is there the truck ?"], "prompt": "black windshield wipers are on the {}"}, {"index": 314, "image_id": 2380587, "entity": "truck", "caption": "the truck has writing on the side", "question": ["is there the truck ?", "is there the side ?"], "prompt": "the {} has writing on the side"}, {"index": 315, "image_id": 2380587, "entity": "truck", "caption": "a rack is on the roof of the truck", "question": ["is there a rack ?", "is there the roof ?", "is there the truck ?"], "prompt": "a rack is on the roof of the {}"}, {"index": 316, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is flat black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is flat black"}, {"index": 317, "image_id": 2380587, "entity": "truck", "caption": "red lettering is on the side of the truck", "question": ["is there red lettering ?", "is there the side ?", "is there the truck ?"], "prompt": "red lettering is on the side of the {}"}, {"index": 318, "image_id": 2380587, "entity": "truck", "caption": "the headlight of the truck is off", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "the headlight of the {} is off"}, {"index": 319, "image_id": 2380587, "entity": "truck", "caption": "a rack is on top of the truck", "question": ["is there a rack ?", "is there top ?", "is there the truck ?"], "prompt": "a rack is on top of the {}"}, {"index": 320, "image_id": 2380587, "entity": "truck", "caption": "green hedges are behind the truck", "question": ["are there green hedges ?", "is there the truck ?"], "prompt": "green hedges are behind the {}"}, {"index": 321, "image_id": 2380273, "entity": "truck", "caption": "the truck has a long side mirror ", "question": ["is there the truck ?", "is there a long side mirror ?"], "prompt": "the {} has a long side mirror "}, {"index": 322, "image_id": 2380273, "entity": "truck", "caption": "The truck is on pavement. ", "question": ["is there the truck ?", "is there pavement ?"], "prompt": "The {} is on pavement. "}, {"index": 323, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting something.", "question": ["is there the truck ?", "is there something ?"], "prompt": "The {} is lifting something."}, {"index": 324, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting a small vehicle with a crane.", "question": ["is there the truck ?", "is there a small vehicle ?", "is there a crane ?"], "prompt": "The {} is lifting a small vehicle with a crane."}, {"index": 325, "image_id": 2380112, "entity": "truck", "caption": "Military truck loading a vehicle", "question": ["is there military truck ?", "is there a vehicle ?"], "prompt": "Military {} loading a vehicle"}, {"index": 326, "image_id": 2379690, "entity": "truck", "caption": "man driving a vintage truck", "question": ["is there man ?", "is there a vintage truck ?"], "prompt": "man driving a vintage {}"}, {"index": 327, "image_id": 2379397, "entity": "truck", "caption": "man climbing back of truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man climbing back of {}"}, {"index": 328, "image_id": 2379397, "entity": "truck", "caption": "boy in grey shirt standing on top of truck", "question": ["is there boy ?", "is there top ?", "is there truck ?"], "prompt": "boy in grey shirt standing on top of {}"}, {"index": 329, "image_id": 2379397, "entity": "truck", "caption": "young man climbing up back of truck", "question": ["is there young man ?", "is there truck ?"], "prompt": "young man climbing up back of {}"}, {"index": 330, "image_id": 2378872, "entity": "truck", "caption": "Dog standing on side of truck bed", "question": ["is there dog ?", "is there side ?", "is there truck ?", "is there bed ?"], "prompt": "Dog standing on side of {} bed"}, {"index": 331, "image_id": 2378626, "entity": "truck", "caption": "Car parked in front of pick-up truck", "question": ["is there car ?", "is there front ?", "is there pick-up truck ?"], "prompt": "Car parked in front of pick-up {}"}, {"index": 332, "image_id": 2378563, "entity": "truck", "caption": "The word Blow on the tail gate of the truck.", "question": ["is there the word ?", "is there the tail gate ?", "is there the truck ?"], "prompt": "The word Blow on the tail gate of the {}."}, {"index": 333, "image_id": 2378417, "entity": "truck", "caption": "Green writing on side of truck.", "question": ["is there green writing ?", "is there side ?", "is there truck ?"], "prompt": "Green writing on side of {}."}, {"index": 334, "image_id": 2378417, "entity": "truck", "caption": "Big tire leaning on truck.", "question": ["is there big tire ?", "is there truck ?"], "prompt": "Big tire leaning on {}."}, {"index": 335, "image_id": 2378417, "entity": "truck", "caption": "weeds are growing by the old truck", "question": ["are there weeds ?", "is there the old truck ?"], "prompt": "weeds are growing by the old {}"}, {"index": 336, "image_id": 2378218, "entity": "truck", "caption": "rope tied in truck", "question": ["is there rope ?", "is there truck ?"], "prompt": "rope tied in {}"}, {"index": 337, "image_id": 2378218, "entity": "truck", "caption": "the truck the cow is sitting on", "question": ["is there the truck ?", "is there the cow ?"], "prompt": "the {} the cow is sitting on"}, {"index": 338, "image_id": 2378035, "entity": "truck", "caption": "men driving an old time truck", "question": ["are there men ?", "is there an old time truck ?"], "prompt": "men driving an old time {}"}, {"index": 339, "image_id": 2377760, "entity": "truck", "caption": "a truck is driving down the road.", "question": ["is there a truck ?", "is there the road ?"], "prompt": "a {} is driving down the road."}, {"index": 340, "image_id": 2377333, "entity": "truck", "caption": "round headlight on truck", "question": ["is there headlight ?", "is there truck ?"], "prompt": "round headlight on {}"}, {"index": 341, "image_id": 2377333, "entity": "truck", "caption": "Tan truck has five visible tires", "question": ["is there tan truck ?", "are there five visible tires ?"], "prompt": "Tan {} has five visible tires"}, {"index": 342, "image_id": 2376346, "entity": "truck", "caption": "man in red vest standing in front of truck", "question": ["is there man ?", "is there red vest ?", "is there front ?", "is there truck ?"], "prompt": "man in red vest standing in front of {}"}, {"index": 343, "image_id": 2376063, "entity": "truck", "caption": "large tarps covering bed of red-orange truck", "question": ["are there large tarps ?", "is there bed ?", "is there red-orange truck ?"], "prompt": "large tarps covering bed of red-orange {}"}, {"index": 344, "image_id": 2376061, "entity": "truck", "caption": "a fire truck is driving down the street.", "question": ["is there a fire truck ?", "is there the street ?"], "prompt": "a fire {} is driving down the street."}, {"index": 345, "image_id": 2376061, "entity": "truck", "caption": "American flag hanging from the truck", "question": ["is there american flag ?", "is there the truck ?"], "prompt": "American flag hanging from the {}"}, {"index": 346, "image_id": 2376005, "entity": "truck", "caption": "the truck has lettering on the side", "question": ["is there the truck ?", "is there lettering ?", "is there the side ?"], "prompt": "the {} has lettering on the side"}, {"index": 347, "image_id": 2376005, "entity": "truck", "caption": "the truck has a metal fender in front", "question": ["is there the truck ?", "is there a metal fender ?", "is there front ?"], "prompt": "the {} has a metal fender in front"}, {"index": 348, "image_id": 2374981, "entity": "truck", "caption": "Person walking behind truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking behind {}."}, {"index": 349, "image_id": 2374981, "entity": "truck", "caption": "The truck is carrying jugs of water.", "question": ["is there the truck ?", "are there jugs ?", "is there water ?"], "prompt": "The {} is carrying jugs of water."}, {"index": 350, "image_id": 2374981, "entity": "truck", "caption": "The taxi is next to the truck.", "question": ["is there the taxi ?", "is there the truck ?"], "prompt": "The taxi is next to the {}."}, {"index": 351, "image_id": 2374981, "entity": "truck", "caption": "the truck is a water truck", "question": ["is there the truck ?", "is there a water truck ?"], "prompt": "the {} is a water {}"}, {"index": 352, "image_id": 2374218, "entity": "truck", "caption": "truck has grey tire", "question": ["is there truck ?", "is there grey tire ?"], "prompt": "{} has grey tire"}, {"index": 353, "image_id": 2374072, "entity": "truck", "caption": "Person standing near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person standing near {}."}, {"index": 354, "image_id": 2373789, "entity": "truck", "caption": "door of truck has a window", "question": ["is there door ?", "is there truck ?", "is there a window ?"], "prompt": "door of {} has a window"}, {"index": 355, "image_id": 2373559, "entity": "truck", "caption": "brick street the truck is on", "question": ["is there brick street ?", "is there the truck ?"], "prompt": "brick street the {} is on"}, {"index": 356, "image_id": 2373441, "entity": "truck", "caption": "Black shadows cast on the red side of a truck", "question": ["are there black shadows ?", "is there the red side ?", "is there a truck ?"], "prompt": "Black shadows cast on the red side of a {}"}, {"index": 357, "image_id": 2373441, "entity": "truck", "caption": "front wheel truck is big", "question": ["is there front wheel truck ?"], "prompt": "front wheel {} is big"}, {"index": 358, "image_id": 2372785, "entity": "truck", "caption": "it is the front tire of the truck", "question": ["is there the front tire ?", "is there the truck ?"], "prompt": "it is the front tire of the {}"}, {"index": 359, "image_id": 2372785, "entity": "truck", "caption": "is it the back tire of the white truck", "question": ["is there the back tire ?", "is there the white truck ?"], "prompt": "is it the back tire of the white {}"}, {"index": 360, "image_id": 2372785, "entity": "truck", "caption": "a person is sitting in the white truck", "question": ["is there a person ?", "is there the white truck ?"], "prompt": "a person is sitting in the white {}"}, {"index": 361, "image_id": 2372785, "entity": "truck", "caption": "door handle on delivery truck", "question": ["is there door ?", "is there delivery truck ?"], "prompt": "door handle on delivery {}"}, {"index": 362, "image_id": 2372670, "entity": "truck", "caption": "green pick up next to mack truck on the left", "question": ["is there mack truck ?"], "prompt": "green pick up next to mack {} on the left"}, {"index": 363, "image_id": 2372645, "entity": "truck", "caption": "a garbage can sitting next to a truck", "question": ["is there a garbage ?", "is there a truck ?"], "prompt": "a garbage can sitting next to a {}"}, {"index": 364, "image_id": 2372645, "entity": "truck", "caption": "Doll is in top of the truck.", "question": ["is there doll ?", "is there top ?", "is there the truck ?"], "prompt": "Doll is in top of the {}."}, {"index": 365, "image_id": 2372493, "entity": "truck", "caption": "dog is resting in shade of truck", "question": ["is there dog ?", "is there shade ?", "is there truck ?"], "prompt": "dog is resting in shade of {}"}, {"index": 366, "image_id": 2372487, "entity": "truck", "caption": "ford is in the grill of truck", "question": ["is there the grill ?", "is there truck ?"], "prompt": "ford is in the grill of {}"}, {"index": 367, "image_id": 2372487, "entity": "truck", "caption": "hood is black on the truck", "question": ["is there hood ?", "is there the truck ?"], "prompt": "hood is black on the {}"}, {"index": 368, "image_id": 2372487, "entity": "truck", "caption": "blue auto maker sign behind truck", "question": ["is there blue auto maker ?", "is there truck ?"], "prompt": "blue auto maker sign behind {}"}, {"index": 369, "image_id": 2372400, "entity": "truck", "caption": "Woman sitting on top of a truck", "question": ["is there woman ?", "is there top ?", "is there a truck ?"], "prompt": "Woman sitting on top of a {}"}, {"index": 370, "image_id": 2372385, "entity": "truck", "caption": "Man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "Man driving a {}"}, {"index": 371, "image_id": 2372385, "entity": "truck", "caption": "headlights in front of truck are off", "question": ["are there headlights ?", "is there front ?", "is there truck ?"], "prompt": "headlights in front of {} are off"}, {"index": 372, "image_id": 2372249, "entity": "truck", "caption": "it is the back tire of the truck", "question": ["is there the back tire ?", "is there the truck ?"], "prompt": "it is the back tire of the {}"}, {"index": 373, "image_id": 2372249, "entity": "truck", "caption": "it is the front head light of the truck", "question": ["is there the front head light ?", "is there the truck ?"], "prompt": "it is the front head light of the {}"}, {"index": 374, "image_id": 2372249, "entity": "truck", "caption": "it is the windshield of the truck", "question": ["is there the windshield ?", "is there the truck ?"], "prompt": "it is the windshield of the {}"}, {"index": 375, "image_id": 2372238, "entity": "truck", "caption": "A big truck is sitting in a parking lot.", "question": ["is there a big truck ?", "is there a parking lot ?"], "prompt": "A big {} is sitting in a parking lot."}, {"index": 376, "image_id": 2372063, "entity": "truck", "caption": "letters on truck says \"Budweiser\"", "question": ["are there letters ?", "is there truck ?", "is there budweiser ?"], "prompt": "letters on {} says \"Budweiser\""}, {"index": 377, "image_id": 2371995, "entity": "truck", "caption": "letter painted on truck", "question": ["is there letter ?", "is there truck ?"], "prompt": "letter painted on {}"}, {"index": 378, "image_id": 2371903, "entity": "truck", "caption": "stars are on the truck", "question": ["are there stars ?", "is there the truck ?"], "prompt": "stars are on the {}"}, {"index": 379, "image_id": 2371903, "entity": "truck", "caption": "USA painted on a truck", "question": ["is there a truck ?"], "prompt": "USA painted on a {}"}, {"index": 380, "image_id": 2371766, "entity": "truck", "caption": "this is the trucks windshield ", "question": ["are there the trucks ?"], "prompt": "this is the {}s windshield "}, {"index": 381, "image_id": 2371766, "entity": "truck", "caption": "truck window is open", "question": ["is there truck window ?"], "prompt": "{} window is open"}, {"index": 382, "image_id": 2371022, "entity": "truck", "caption": "a red truck parked", "question": ["is there a red truck ?"], "prompt": "a red {} parked"}, {"index": 383, "image_id": 2371022, "entity": "truck", "caption": "Tire splash guard of truck", "question": ["is there tire splash guard ?", "is there truck ?"], "prompt": "Tire splash guard of {}"}, {"index": 384, "image_id": 2369895, "entity": "truck", "caption": "The tire of the truck is black ", "question": ["is there the tire ?", "is there the truck ?"], "prompt": "The tire of the {} is black "}, {"index": 385, "image_id": 2369837, "entity": "truck", "caption": "A truck is on the street.", "question": ["is there a truck ?", "is there the street ?"], "prompt": "A {} is on the street."}, {"index": 386, "image_id": 2369837, "entity": "truck", "caption": "A canopy drapes over the truck.", "question": ["is there a canopy ?", "is there the truck ?"], "prompt": "A canopy drapes over the {}."}, {"index": 387, "image_id": 2369837, "entity": "truck", "caption": "The truck is missing the hood.", "question": ["is there the truck ?", "is there the hood ?"], "prompt": "The {} is missing the hood."}, {"index": 388, "image_id": 2369288, "entity": "truck", "caption": "bear is on truck bed", "question": ["is there truck bed ?"], "prompt": "bear is on {} bed"}, {"index": 389, "image_id": 2369089, "entity": "truck", "caption": "silver door handle on truck", "question": ["is there silver door ?", "is there truck ?"], "prompt": "silver door handle on {}"}, {"index": 390, "image_id": 2368262, "entity": "truck", "caption": "this truck has a backdoor", "question": ["is there this truck ?", "is there a backdoor ?"], "prompt": "this {} has a backdoor"}, {"index": 391, "image_id": 2368262, "entity": "truck", "caption": "the rear door handle to the truck is rusting", "question": ["is there the rear door ?", "is there the truck ?"], "prompt": "the rear door handle to the {} is rusting"}, {"index": 392, "image_id": 2368262, "entity": "truck", "caption": "latches are on the truck rear door", "question": ["are there latches ?", "is there the truck rear door ?"], "prompt": "latches are on the {} rear door"}, {"index": 393, "image_id": 2368262, "entity": "truck", "caption": "writing is visible on the side of the truck", "question": ["is there writing ?", "is there the side ?", "is there the truck ?"], "prompt": "writing is visible on the side of the {}"}, {"index": 394, "image_id": 2368262, "entity": "truck", "caption": "the side door of the truck has windows", "question": ["is there the side door ?", "is there the truck ?", "are there windows ?"], "prompt": "the side door of the {} has windows"}, {"index": 395, "image_id": 2368262, "entity": "truck", "caption": "Trees in front of truck have no leaves.", "question": ["are there trees ?", "is there front ?", "is there truck ?", "are there no leaves ?"], "prompt": "Trees in front of {} have no leaves."}, {"index": 396, "image_id": 2367654, "entity": "truck", "caption": "the trucks back license plate ", "question": ["are there the trucks ?", "is there license plate ?"], "prompt": "the {}s back license plate "}, {"index": 397, "image_id": 2367654, "entity": "truck", "caption": "truck is hauling circular objects", "question": ["is there truck ?", "are there circular objects ?"], "prompt": "{} is hauling circular objects"}, {"index": 398, "image_id": 2367654, "entity": "truck", "caption": "The truck has ten tubes.", "question": ["is there the truck ?", "are there ten tubes ?"], "prompt": "The {} has ten tubes."}, {"index": 399, "image_id": 2367654, "entity": "truck", "caption": "The truck has six red ligths.", "question": ["is there the truck ?", "are there six red ligths ?"], "prompt": "The {} has six red ligths."}, {"index": 400, "image_id": 2367556, "entity": "truck", "caption": "truck has red tail light", "question": ["is there truck ?", "is there red tail light ?"], "prompt": "{} has red tail light"}, {"index": 401, "image_id": 2367108, "entity": "truck", "caption": "the truck has words on it", "question": ["is there the truck ?", "are there words ?"], "prompt": "the {} has words on it"}, {"index": 402, "image_id": 2366931, "entity": "truck", "caption": "car door handle on truck", "question": ["is there car door ?", "is there truck ?"], "prompt": "car door handle on {}"}, {"index": 403, "image_id": 2366645, "entity": "truck", "caption": "A horse int he bed of a truck", "question": ["is there a truck ?"], "prompt": "A horse int he bed of a {}"}, {"index": 404, "image_id": 2366645, "entity": "truck", "caption": "the white wall rims on the truck tire", "question": ["are there the white wall rims ?", "is there the truck tire ?"], "prompt": "the white wall rims on the {} tire"}, {"index": 405, "image_id": 2366233, "entity": "truck", "caption": "A gray sedan parked very closely in front of the truck", "question": ["is there a gray sedan ?", "is there front ?", "is there the truck ?"], "prompt": "A gray sedan parked very closely in front of the {}"}, {"index": 406, "image_id": 2366156, "entity": "truck", "caption": "Horse standing next to a red truck", "question": ["is there horse ?", "is there a red truck ?"], "prompt": "Horse standing next to a red {}"}, {"index": 407, "image_id": 2365951, "entity": "truck", "caption": "The truck has lights on it's roof", "question": ["is there the truck ?", "are there lights ?", "is there it's roof ?"], "prompt": "The {} has lights on it's roof"}, {"index": 408, "image_id": 2365951, "entity": "truck", "caption": "red numbers painted on a truck", "question": ["are there red numbers ?", "is there a truck ?"], "prompt": "red numbers painted on a {}"}, {"index": 409, "image_id": 2365951, "entity": "truck", "caption": "The concrete truck is the color yellow ", "question": ["is there the concrete truck ?"], "prompt": "The concrete {} is the color yellow "}, {"index": 410, "image_id": 2365951, "entity": "truck", "caption": "This is a yellow truck", "question": ["is there a yellow truck ?"], "prompt": "This is a yellow {}"}, {"index": 411, "image_id": 2365691, "entity": "truck", "caption": "sideways spare tire mounted under the truck", "question": ["is there spare tire ?", "is there the truck ?"], "prompt": "sideways spare tire mounted under the {}"}, {"index": 412, "image_id": 2365570, "entity": "truck", "caption": "The cab of the truck is red", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "The cab of the {} is red"}, {"index": 413, "image_id": 2365570, "entity": "truck", "caption": "The dumping part of the truck is yellow", "question": ["is there the dumping part ?", "is there the truck ?"], "prompt": "The dumping part of the {} is yellow"}, {"index": 414, "image_id": 2365570, "entity": "truck", "caption": "This truck has gone through a lot of dirt", "question": ["is there this truck ?", "is there a lot ?", "is there dirt ?"], "prompt": "This {} has gone through a lot of dirt"}, {"index": 415, "image_id": 2365252, "entity": "truck", "caption": "man with long hair stands beside truck cab", "question": ["is there man ?", "is there long hair ?", "is there truck cab ?"], "prompt": "man with long hair stands beside {} cab"}, {"index": 416, "image_id": 2365252, "entity": "truck", "caption": "truck's front turn signal", "question": ["is there truck's front turn ?"], "prompt": "{}'s front turn signal"}, {"index": 417, "image_id": 2364632, "entity": "truck", "caption": "the truck's cab is blue", "question": ["is there the truck's cab ?"], "prompt": "the {}'s cab is blue"}, {"index": 418, "image_id": 2364512, "entity": "truck", "caption": "Top of the truck is white and green in color", "question": ["is there top ?", "is there the truck ?", "is there color ?"], "prompt": "Top of the {} is white and green in color"}, {"index": 419, "image_id": 2363920, "entity": "truck", "caption": "man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man driving a {}"}, {"index": 420, "image_id": 2362822, "entity": "truck", "caption": "gray ram sniffing a truck", "question": ["is there a truck ?"], "prompt": "gray ram sniffing a {}"}, {"index": 421, "image_id": 2362058, "entity": "truck", "caption": "it is a ladder on the side of the truck", "question": ["is there a ladder ?", "is there the side ?", "is there the truck ?"], "prompt": "it is a ladder on the side of the {}"}, {"index": 422, "image_id": 2362058, "entity": "truck", "caption": "it is the headlight of the truck", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "it is the headlight of the {}"}, {"index": 423, "image_id": 2361362, "entity": "truck", "caption": "garbage man running behing garabge truck", "question": ["is there garbage man ?", "is there behing garabge truck ?"], "prompt": "garbage man running behing garabge {}"}, {"index": 424, "image_id": 2361169, "entity": "truck", "caption": "cartoon character painted on truck", "question": ["is there cartoon character ?", "is there truck ?"], "prompt": "cartoon character painted on {}"}, {"index": 425, "image_id": 2360580, "entity": "truck", "caption": "The truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "The {} is on the road"}, {"index": 426, "image_id": 2360438, "entity": "truck", "caption": "a sign that says Signal on the side of the truck", "question": ["is there a sign ?", "is there signal ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign that says Signal on the side of the {}"}, {"index": 427, "image_id": 2360362, "entity": "truck", "caption": "Two people walking toward a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "Two people walking toward a {}"}, {"index": 428, "image_id": 2360185, "entity": "truck", "caption": "Man reflected in the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man reflected in the {}."}, {"index": 429, "image_id": 2359911, "entity": "truck", "caption": "Plymouth written on the truck", "question": ["is there the truck ?"], "prompt": "Plymouth written on the {}"}, {"index": 430, "image_id": 2359717, "entity": "truck", "caption": "united states flag on truck", "question": ["is there truck ?"], "prompt": "united states flag on {}"}, {"index": 431, "image_id": 2359708, "entity": "truck", "caption": "a firetruck headlight ", "question": ["is there a firetruck headlight ?"], "prompt": "a fire{} headlight "}, {"index": 432, "image_id": 2359307, "entity": "truck", "caption": "the truck is in the Forrest", "question": ["is there the truck ?", "is there the forrest ?"], "prompt": "the {} is in the Forrest"}, {"index": 433, "image_id": 2357815, "entity": "truck", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white car is behind the {}"}, {"index": 434, "image_id": 2357815, "entity": "truck", "caption": "A tarp is over the back of the truck", "question": ["is there a tarp ?", "is there the back ?", "is there the truck ?"], "prompt": "A tarp is over the back of the {}"}, {"index": 435, "image_id": 2357227, "entity": "truck", "caption": "white numbers are on the truck", "question": ["are there white numbers ?", "is there the truck ?"], "prompt": "white numbers are on the {}"}, {"index": 436, "image_id": 2357227, "entity": "truck", "caption": "a man straps the truck down", "question": ["is there a man ?", "is there the truck ?"], "prompt": "a man straps the {} down"}, {"index": 437, "image_id": 2357081, "entity": "truck", "caption": "The left front headlight on the truck", "question": ["is there the left front headlight ?", "is there the truck ?"], "prompt": "The left front headlight on the {}"}, {"index": 438, "image_id": 2356932, "entity": "truck", "caption": "The truck is casting a shadow. ", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow. "}, {"index": 439, "image_id": 2356932, "entity": "truck", "caption": "Person taking a picture of the truck. ", "question": ["is there person ?", "is there a picture ?", "is there the truck ?"], "prompt": "Person taking a picture of the {}. "}, {"index": 440, "image_id": 2356921, "entity": "truck", "caption": "GREAT TASTE written on the side of a truck. ", "question": ["is there great taste ?", "is there the side ?", "is there a truck ?"], "prompt": "GREAT TASTE written on the side of a {}. "}, {"index": 441, "image_id": 2355892, "entity": "truck", "caption": "it is the letter C on the truck ", "question": ["is there the letter ?", "is there c ?", "is there the truck ?"], "prompt": "it is the letter C on the {} "}, {"index": 442, "image_id": 2355892, "entity": "truck", "caption": "it is the letter O on the truck", "question": ["is there the letter ?", "is there o ?", "is there the truck ?"], "prompt": "it is the letter O on the {}"}, {"index": 443, "image_id": 2355892, "entity": "truck", "caption": "it is a light on the truck", "question": ["is there a light ?", "is there the truck ?"], "prompt": "it is a light on the {}"}, {"index": 444, "image_id": 2355892, "entity": "truck", "caption": "the truck has a black wheel", "question": ["is there the truck ?", "is there a black wheel ?"], "prompt": "the {} has a black wheel"}, {"index": 445, "image_id": 2355892, "entity": "truck", "caption": "the truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 446, "image_id": 2355892, "entity": "truck", "caption": "The truck has lights on it.", "question": ["is there the truck ?", "are there lights ?"], "prompt": "The {} has lights on it."}, {"index": 447, "image_id": 2355892, "entity": "truck", "caption": "The truck says coco", "question": ["is there the truck ?", "is there coco ?"], "prompt": "The {} says coco"}, {"index": 448, "image_id": 2355892, "entity": "truck", "caption": "The lettering is white on the truck", "question": ["is there the lettering ?", "is there the truck ?"], "prompt": "The lettering is white on the {}"}, {"index": 449, "image_id": 2355892, "entity": "truck", "caption": "The truck has tires.", "question": ["is there the truck ?", "are there tires ?"], "prompt": "The {} has tires."}, {"index": 450, "image_id": 2355741, "entity": "truck", "caption": "Woman standing next to the truck", "question": ["is there woman ?", "is there the truck ?"], "prompt": "Woman standing next to the {}"}, {"index": 451, "image_id": 2354584, "entity": "truck", "caption": "There is a symbol on this truck that says Fire Dept.", "question": ["is there a symbol ?", "is there this truck ?", "is there fire dept ?"], "prompt": "There is a symbol on this {} that says Fire Dept."}, {"index": 452, "image_id": 2354302, "entity": "truck", "caption": "rust covered truck shows it has some age", "question": ["is there rust covered truck ?", "is there some age ?"], "prompt": "rust covered {} shows it has some age"}, {"index": 453, "image_id": 2354302, "entity": "truck", "caption": "white hydrolic machinery on truck shows unprotected by weather", "question": ["is there white hydrolic machinery ?", "are there truck shows ?", "is there weather ?"], "prompt": "white hydrolic machinery on {} shows unprotected by weather"}, {"index": 454, "image_id": 2354302, "entity": "truck", "caption": "windshield on truck looks clean", "question": ["is there windshield ?", "is there truck ?"], "prompt": "windshield on {} looks clean"}, {"index": 455, "image_id": 2353824, "entity": "truck", "caption": "truck has four lights", "question": ["is there truck ?", "are there four lights ?"], "prompt": "{} has four lights"}, {"index": 456, "image_id": 2353824, "entity": "truck", "caption": "truck lights are lit", "question": ["are there truck lights ?"], "prompt": "{} lights are lit"}, {"index": 457, "image_id": 2353824, "entity": "truck", "caption": "truck has yellow arm", "question": ["is there truck ?", "is there yellow arm ?"], "prompt": "{} has yellow arm"}, {"index": 458, "image_id": 2353824, "entity": "truck", "caption": "Orange lit up light above truck.", "question": ["is there light ?", "is there truck ?"], "prompt": "Orange lit up light above {}."}, {"index": 459, "image_id": 2353075, "entity": "truck", "caption": "PX is on the top of the truck", "question": ["is there px ?", "is there the top ?", "is there the truck ?"], "prompt": "PX is on the top of the {}"}, {"index": 460, "image_id": 2353075, "entity": "truck", "caption": "mercedes emblem on truck ", "question": ["are there mercedes ?", "is there truck ?"], "prompt": "mercedes emblem on {} "}, {"index": 461, "image_id": 2352665, "entity": "truck", "caption": "door handle on white truck", "question": ["is there door ?", "is there white truck ?"], "prompt": "door handle on white {}"}, {"index": 462, "image_id": 2352260, "entity": "truck", "caption": "box spring on it's side in the back of a truck", "question": ["is there box spring ?", "is there it's side ?", "is there the back ?", "is there a truck ?"], "prompt": "box spring on it's side in the back of a {}"}, {"index": 463, "image_id": 2351947, "entity": "truck", "caption": "front left wheel of the fire truck", "question": ["is there front left wheel ?", "is there the fire truck ?"], "prompt": "front left wheel of the fire {}"}, {"index": 464, "image_id": 2351810, "entity": "truck", "caption": "man standing in back of windowless truck", "question": ["is there man ?", "is there windowless truck ?"], "prompt": "man standing in back of windowless {}"}, {"index": 465, "image_id": 2351290, "entity": "truck", "caption": "a striped blanket is on a truck", "question": ["is there a striped blanket ?", "is there a truck ?"], "prompt": "a striped blanket is on a {}"}, {"index": 466, "image_id": 2351290, "entity": "truck", "caption": "the wall behind the truck is silver", "question": ["is there the wall ?", "is there the truck ?"], "prompt": "the wall behind the {} is silver"}, {"index": 467, "image_id": 2351178, "entity": "truck", "caption": "The truck is carrying a surfboard", "question": ["is there the truck ?", "is there a surfboard ?"], "prompt": "The {} is carrying a surfboard"}, {"index": 468, "image_id": 2351178, "entity": "truck", "caption": "life saving device on truck", "question": ["is there device ?", "is there truck ?"], "prompt": "life saving device on {}"}, {"index": 469, "image_id": 2351178, "entity": "truck", "caption": "The left headlight on the truck.", "question": ["is there the left headlight ?", "is there the truck ?"], "prompt": "The left headlight on the {}."}, {"index": 470, "image_id": 2351131, "entity": "truck", "caption": "Trailer hitch on back of truck", "question": ["is there trailer hitch ?", "is there back ?", "is there truck ?"], "prompt": "Trailer hitch on back of {}"}, {"index": 471, "image_id": 2349773, "entity": "truck", "caption": "Two posts are near a truck.", "question": ["are there two posts ?", "is there a truck ?"], "prompt": "Two posts are near a {}."}, {"index": 472, "image_id": 2349620, "entity": "truck", "caption": "a metal pole is by the truck", "question": ["is there a metal pole ?", "is there the truck ?"], "prompt": "a metal pole is by the {}"}, {"index": 473, "image_id": 2349620, "entity": "truck", "caption": "the truck has a rearview mirror", "question": ["is there the truck ?", "is there a rearview mirror ?"], "prompt": "the {} has a rearview mirror"}, {"index": 474, "image_id": 2348945, "entity": "truck", "caption": "A large tube is on a truck.", "question": ["is there a large tube ?", "is there a truck ?"], "prompt": "A large tube is on a {}."}, {"index": 475, "image_id": 2348945, "entity": "truck", "caption": "A grey box is on a truck.", "question": ["is there a truck ?"], "prompt": "A grey box is on a {}."}, {"index": 476, "image_id": 2348945, "entity": "truck", "caption": "A man is standing next to a truck.", "question": ["is there a man ?", "is there a truck ?"], "prompt": "A man is standing next to a {}."}, {"index": 477, "image_id": 2348933, "entity": "truck", "caption": "logo painted on a truck", "question": ["is there logo ?", "is there a truck ?"], "prompt": "logo painted on a {}"}, {"index": 478, "image_id": 2348742, "entity": "truck", "caption": "cows hauled on top of truck", "question": ["are there cows ?", "is there top ?", "is there truck ?"], "prompt": "cows hauled on top of {}"}, {"index": 479, "image_id": 2348742, "entity": "truck", "caption": "sign in truck says \"mitsubishi\"", "question": ["is there sign ?", "is there truck ?"], "prompt": "sign in {} says \"mitsubishi\""}, {"index": 480, "image_id": 2348742, "entity": "truck", "caption": "windy road the truck is driving on ", "question": ["is there windy road ?", "is there the truck ?"], "prompt": "windy road the {} is driving on "}, {"index": 481, "image_id": 2348526, "entity": "truck", "caption": "machinery is on the truck", "question": ["is there machinery ?", "is there the truck ?"], "prompt": "machinery is on the {}"}, {"index": 482, "image_id": 2348526, "entity": "truck", "caption": "Back door is open on truck", "question": ["is there back door ?", "is there truck ?"], "prompt": "Back door is open on {}"}, {"index": 483, "image_id": 2347761, "entity": "truck", "caption": "a driver is inside the truck cab", "question": ["is there a driver ?", "is there the truck cab ?"], "prompt": "a driver is inside the {} cab"}, {"index": 484, "image_id": 2347750, "entity": "truck", "caption": "A person is by the truck", "question": ["is there a person ?", "is there the truck ?"], "prompt": "A person is by the {}"}, {"index": 485, "image_id": 2347690, "entity": "truck", "caption": "4x4 painted on the side of truck", "question": ["is there the side ?", "is there truck ?"], "prompt": "4x4 painted on the side of {}"}, {"index": 486, "image_id": 2347690, "entity": "truck", "caption": "tail gate is down on truck", "question": ["is there tail gate ?", "is there truck ?"], "prompt": "tail gate is down on {}"}, {"index": 487, "image_id": 2347487, "entity": "truck", "caption": "Rear left wheel of the truck", "question": ["is there rear left wheel ?", "is there the truck ?"], "prompt": "Rear left wheel of the {}"}, {"index": 488, "image_id": 2347487, "entity": "truck", "caption": "Front left wheel of the truck", "question": ["is there front left wheel ?", "is there the truck ?"], "prompt": "Front left wheel of the {}"}, {"index": 489, "image_id": 2347377, "entity": "truck", "caption": "Person sitting in a dark two tone truck", "question": ["is there person ?", "is there a dark two tone truck ?"], "prompt": "Person sitting in a dark two tone {}"}, {"index": 490, "image_id": 2346986, "entity": "truck", "caption": "the truck has a picture at the door", "question": ["is there the truck ?", "is there a picture ?", "is there the door ?"], "prompt": "the {} has a picture at the door"}, {"index": 491, "image_id": 2346214, "entity": "truck", "caption": "guy trying to get stuff out of a truck", "question": ["is there guy ?", "is there stuff ?", "is there a truck ?"], "prompt": "guy trying to get stuff out of a {}"}, {"index": 492, "image_id": 2345894, "entity": "truck", "caption": "the truck has No2 painted on it", "question": ["is there the truck ?", "are there no2 ?"], "prompt": "the {} has No2 painted on it"}, {"index": 493, "image_id": 2345381, "entity": "truck", "caption": "people are standing by the food truck", "question": ["are there people ?", "is there the food truck ?"], "prompt": "people are standing by the food {}"}, {"index": 494, "image_id": 2345381, "entity": "truck", "caption": "the food truck has red lights on it", "question": ["is there the food truck ?", "are there red lights ?"], "prompt": "the food {} has red lights on it"}, {"index": 495, "image_id": 2345314, "entity": "truck", "caption": "Yellow truck has hood opened", "question": ["is there yellow truck ?", "is there hood ?"], "prompt": "Yellow {} has hood opened"}, {"index": 496, "image_id": 2345314, "entity": "truck", "caption": "Pickup truck has hood opened", "question": ["is there pickup truck ?", "is there hood ?"], "prompt": "Pickup {} has hood opened"}, {"index": 497, "image_id": 2345212, "entity": "truck", "caption": "long carpets rolls at back of truck", "question": ["are there long carpets rolls ?", "is there back ?", "is there truck ?"], "prompt": "long carpets rolls at back of {}"}, {"index": 498, "image_id": 2345212, "entity": "truck", "caption": "gray car behing the truck", "question": ["is there gray car ?", "is there the truck ?"], "prompt": "gray car behing the {}"}, {"index": 499, "image_id": 2345212, "entity": "truck", "caption": "household furnishings strapped onto a truck bed", "question": ["are there household furnishings ?", "is there a truck bed ?"], "prompt": "household furnishings strapped onto a {} bed"}, {"index": 500, "image_id": 2345032, "entity": "truck", "caption": "The word SCANIA on the front of a truck. ", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there a truck ?"], "prompt": "The word SCANIA on the front of a {}. "}, {"index": 501, "image_id": 2344888, "entity": "truck", "caption": "antique truck stuck in the mud", "question": ["is there antique truck ?", "is there the mud ?"], "prompt": "antique {} stuck in the mud"}, {"index": 502, "image_id": 2343592, "entity": "truck", "caption": "Sign on truck is Avitat", "question": ["is there sign ?", "is there truck ?"], "prompt": "Sign on {} is Avitat"}, {"index": 503, "image_id": 2342746, "entity": "truck", "caption": "a cheverolet emblem is on the truck", "question": ["is there a cheverolet emblem ?", "is there the truck ?"], "prompt": "a cheverolet emblem is on the {}"}, {"index": 504, "image_id": 2342137, "entity": "truck", "caption": "vertical door handle on delivery truck", "question": ["is there vertical door ?", "is there delivery truck ?"], "prompt": "vertical door handle on delivery {}"}, {"index": 505, "image_id": 2341556, "entity": "truck", "caption": "a truck is outside", "question": ["is there a truck ?"], "prompt": "a {} is outside"}, {"index": 506, "image_id": 2341556, "entity": "truck", "caption": "the truck has a brand name painted on ", "question": ["is there the truck ?", "is there a brand name ?"], "prompt": "the {} has a brand name painted on "}, {"index": 507, "image_id": 2341337, "entity": "truck", "caption": "gravel is on the train trucks ", "question": ["is there gravel ?", "are there the train trucks ?"], "prompt": "gravel is on the train {}s "}, {"index": 508, "image_id": 2341077, "entity": "truck", "caption": "two people standing behind a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "two people standing behind a {}"}, {"index": 509, "image_id": 2340746, "entity": "truck", "caption": "truck has black wheels", "question": ["is there truck ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 510, "image_id": 2340746, "entity": "truck", "caption": "man shoving an animal into a truck", "question": ["is there man ?", "is there an animal ?", "is there a truck ?"], "prompt": "man shoving an animal into a {}"}, {"index": 511, "image_id": 2340595, "entity": "truck", "caption": "a wheel turned under the truck", "question": ["is there a wheel ?", "is there the truck ?"], "prompt": "a wheel turned under the {}"}, {"index": 512, "image_id": 2340429, "entity": "truck", "caption": "Person walking near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking near {}."}, {"index": 513, "image_id": 2340353, "entity": "truck", "caption": "a black shirt draped over a truck", "question": ["is there a black shirt ?", "is there a truck ?"], "prompt": "a black shirt draped over a {}"}, {"index": 514, "image_id": 2340353, "entity": "truck", "caption": "Tee shirt draped on side of truck", "question": ["is there tee shirt ?", "is there side ?", "is there truck ?"], "prompt": "Tee shirt draped on side of {}"}, {"index": 515, "image_id": 2339539, "entity": "truck", "caption": "person driving the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "person driving the {}"}, {"index": 516, "image_id": 2339539, "entity": "truck", "caption": "the truck has a black trailer bed ", "question": ["is there the truck ?", "is there a black trailer bed ?"], "prompt": "the {} has a black trailer bed "}, {"index": 517, "image_id": 2339539, "entity": "truck", "caption": "he is driving the truck ", "question": ["is there the truck ?"], "prompt": "he is driving the {} "}, {"index": 518, "image_id": 2339412, "entity": "truck", "caption": "The old truck has wood boards on it.", "question": ["is there the old truck ?", "are there wood boards ?"], "prompt": "The old {} has wood boards on it."}, {"index": 519, "image_id": 2339139, "entity": "truck", "caption": "Rear left tire on a tow truck", "question": ["is there rear left tire ?", "is there a tow truck ?"], "prompt": "Rear left tire on a tow {}"}, {"index": 520, "image_id": 2339139, "entity": "truck", "caption": "Front left head light on a truck", "question": ["is there front left head light ?", "is there a truck ?"], "prompt": "Front left head light on a {}"}, {"index": 521, "image_id": 2339139, "entity": "truck", "caption": "The door handle on a truck", "question": ["is there the door ?", "is there a truck ?"], "prompt": "The door handle on a {}"}, {"index": 522, "image_id": 2338619, "entity": "truck", "caption": "the guy is on top of the fire truck ", "question": ["is there the guy ?", "is there top ?", "is there the fire truck ?"], "prompt": "the guy is on top of the fire {} "}, {"index": 523, "image_id": 2337684, "entity": "truck", "caption": "the folgers container under the truck", "question": ["are there the folgers container ?", "is there the truck ?"], "prompt": "the folgers container under the {}"}, {"index": 524, "image_id": 2337628, "entity": "truck", "caption": "the truck is full of dogs", "question": ["is there the truck ?", "are there dogs ?"], "prompt": "the {} is full of dogs"}, {"index": 525, "image_id": 2337628, "entity": "truck", "caption": "the truck has photos of dogs", "question": ["is there the truck ?", "are there photos ?", "are there dogs ?"], "prompt": "the {} has photos of dogs"}, {"index": 526, "image_id": 2337628, "entity": "truck", "caption": "the truck has wheels", "question": ["is there the truck ?", "are there wheels ?"], "prompt": "the {} has wheels"}, {"index": 527, "image_id": 2336350, "entity": "truck", "caption": "the trees are behind the truck", "question": ["are there the trees ?", "is there the truck ?"], "prompt": "the trees are behind the {}"}, {"index": 528, "image_id": 2336187, "entity": "truck", "caption": "The word Mackinnon's on the front of a truck", "question": ["is there the word ?", "is there the front ?", "is there a truck ?"], "prompt": "The word Mackinnon's on the front of a {}"}, {"index": 529, "image_id": 2335976, "entity": "truck", "caption": "back door on truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "back door on {} is open"}, {"index": 530, "image_id": 2335976, "entity": "truck", "caption": "man is walking toward truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is walking toward {}"}, {"index": 531, "image_id": 2335976, "entity": "truck", "caption": "The door of the truck is open.", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door of the {} is open."}, {"index": 532, "image_id": 2335976, "entity": "truck", "caption": "Garbage can by the truck.", "question": ["is there garbage ?", "is there the truck ?"], "prompt": "Garbage can by the {}."}, {"index": 533, "image_id": 2335976, "entity": "truck", "caption": "food truck menu painted on side of truck", "question": ["is there food truck menu ?", "is there side ?", "is there truck ?"], "prompt": "food {} menu painted on side of {}"}, {"index": 534, "image_id": 2335337, "entity": "truck", "caption": "Menu written on side of truck.", "question": ["is there menu ?", "is there side ?", "is there truck ?"], "prompt": "Menu written on side of {}."}, {"index": 535, "image_id": 2335292, "entity": "truck", "caption": "The motorcycle is in front of the truck", "question": ["is there the motorcycle ?", "is there front ?", "is there the truck ?"], "prompt": "The motorcycle is in front of the {}"}, {"index": 536, "image_id": 2335292, "entity": "truck", "caption": "The truck has a cardboard box in the bed", "question": ["is there the truck ?", "is there a cardboard box ?", "is there the bed ?"], "prompt": "The {} has a cardboard box in the bed"}, {"index": 537, "image_id": 2333358, "entity": "truck", "caption": "woman waiting for food at truck window", "question": ["is there woman ?", "is there food ?", "is there truck window ?"], "prompt": "woman waiting for food at {} window"}, {"index": 538, "image_id": 2333358, "entity": "truck", "caption": "a food truck is on the street", "question": ["is there a food truck ?", "is there the street ?"], "prompt": "a food {} is on the street"}, {"index": 539, "image_id": 2333348, "entity": "truck", "caption": "two men standing next to each other in front of truck", "question": ["are there two men ?", "is there front ?", "is there truck ?"], "prompt": "two men standing next to each other in front of {}"}, {"index": 540, "image_id": 2332754, "entity": "truck", "caption": "A wooden pole is behind the truck", "question": ["is there a wooden pole ?", "is there the truck ?"], "prompt": "A wooden pole is behind the {}"}, {"index": 541, "image_id": 2332750, "entity": "truck", "caption": "A fold up chair stands next to the truck", "question": ["is there a fold up chair ?", "is there the truck ?"], "prompt": "A fold up chair stands next to the {}"}, {"index": 542, "image_id": 2331746, "entity": "truck", "caption": "a truck travels in front the beach", "question": ["is there a truck ?", "is there front ?"], "prompt": "a {} travels in front the beach"}, {"index": 543, "image_id": 2331430, "entity": "truck", "caption": "this guy is on the back of the truck", "question": ["is there this guy ?", "is there the back ?", "is there the truck ?"], "prompt": "this guy is on the back of the {}"}, {"index": 544, "image_id": 2330313, "entity": "truck", "caption": "A flap is visible on a truck.", "question": ["is there a flap ?", "is there a truck ?"], "prompt": "A flap is visible on a {}."}, {"index": 545, "image_id": 2329413, "entity": "truck", "caption": "Web URL painted in black letters on white truck", "question": ["is there web url ?", "are there black letters ?", "is there white truck ?"], "prompt": "Web URL painted in black letters on white {}"}, {"index": 546, "image_id": 2328751, "entity": "truck", "caption": "a person is driving the truck ", "question": ["is there a person ?", "is there the truck ?"], "prompt": "a person is driving the {} "}, {"index": 547, "image_id": 2328751, "entity": "truck", "caption": "The truck has a fire extinguisher.", "question": ["is there the truck ?", "is there a fire extinguisher ?"], "prompt": "The {} has a fire extinguisher."}, {"index": 548, "image_id": 2328751, "entity": "truck", "caption": "The truck has a horn.", "question": ["is there the truck ?", "is there a horn ?"], "prompt": "The {} has a horn."}, {"index": 549, "image_id": 2328751, "entity": "truck", "caption": "The horn is on the truck roof.", "question": ["is there the horn ?", "is there the truck roof ?"], "prompt": "The horn is on the {} roof."}, {"index": 550, "image_id": 2328751, "entity": "truck", "caption": "The truck has a white grill.", "question": ["is there the truck ?", "is there a white grill ?"], "prompt": "The {} has a white grill."}, {"index": 551, "image_id": 2328751, "entity": "truck", "caption": "The truck has an orange light.", "question": ["is there the truck ?", "is there an orange light ?"], "prompt": "The {} has an orange light."}, {"index": 552, "image_id": 2328751, "entity": "truck", "caption": "The truck has a headlight.", "question": ["is there the truck ?", "is there a headlight ?"], "prompt": "The {} has a headlight."}, {"index": 553, "image_id": 2328751, "entity": "truck", "caption": "The truck has a big tire.", "question": ["is there the truck ?", "is there a big tire ?"], "prompt": "The {} has a big tire."}, {"index": 554, "image_id": 2327911, "entity": "truck", "caption": "The truck has a black dump bed.", "question": ["is there the truck ?", "is there a black dump bed ?"], "prompt": "The {} has a black dump bed."}, {"index": 555, "image_id": 2327911, "entity": "truck", "caption": "The truck cab has orange lights.", "question": ["is there the truck cab ?", "are there orange lights ?"], "prompt": "The {} cab has orange lights."}, {"index": 556, "image_id": 2327911, "entity": "truck", "caption": "The truck has a tire.", "question": ["is there the truck ?", "is there a tire ?"], "prompt": "The {} has a tire."}, {"index": 557, "image_id": 2325925, "entity": "truck", "caption": "The truck has the number 20 on its side", "question": ["is there the truck ?", "is there the number ?", "is there its side ?"], "prompt": "The {} has the number 20 on its side"}, {"index": 558, "image_id": 2325611, "entity": "truck", "caption": "the truck has white writing", "question": ["is there the truck ?", "is there white writing ?"], "prompt": "the {} has white writing"}, {"index": 559, "image_id": 2324486, "entity": "truck", "caption": "The license plate is on the back of truck", "question": ["is there the license plate ?", "is there the back ?", "is there truck ?"], "prompt": "The license plate is on the back of {}"}, {"index": 560, "image_id": 2324486, "entity": "truck", "caption": "The word DIESEL on back of truck. ", "question": ["is there the word diesel ?", "is there back ?", "is there truck ?"], "prompt": "The word DIESEL on back of {}. "}, {"index": 561, "image_id": 2323321, "entity": "truck", "caption": "the graffiti on the truck is green", "question": ["is there the graffiti ?", "is there the truck ?"], "prompt": "the graffiti on the {} is green"}, {"index": 562, "image_id": 2323321, "entity": "truck", "caption": "the truck is on the street", "question": ["is there the truck ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 563, "image_id": 2323321, "entity": "truck", "caption": "a truck that has graffiti", "question": ["is there a truck ?"], "prompt": "a {} that has graffiti"}, {"index": 564, "image_id": 2323077, "entity": "truck", "caption": "Crane lowering truck onto truck", "question": ["is there truck ?", "is there truck ?"], "prompt": "Crane lowering {} onto {}"}, {"index": 565, "image_id": 2322225, "entity": "truck", "caption": "Mud flaps on a truck.", "question": ["are there mud flaps ?", "is there a truck ?"], "prompt": "Mud flaps on a {}."}, {"index": 566, "image_id": 2322197, "entity": "truck", "caption": "Ford emblem on a truck", "question": ["is there a truck ?"], "prompt": "Ford emblem on a {}"}, {"index": 567, "image_id": 2321380, "entity": "truck", "caption": "tarp covering back of truck", "question": ["is there tarp ?", "is there truck ?"], "prompt": "tarp covering back of {}"}, {"index": 568, "image_id": 2321380, "entity": "truck", "caption": "drivers side door of truck", "question": ["are there drivers ?", "is there door ?", "is there truck ?"], "prompt": "drivers side door of {}"}, {"index": 569, "image_id": 2320291, "entity": "truck", "caption": "man walking in front of red truck", "question": ["is there man ?", "is there front ?", "is there red truck ?"], "prompt": "man walking in front of red {}"}, {"index": 570, "image_id": 2319823, "entity": "truck", "caption": "the light on the truck is on ", "question": ["is there the light ?", "is there the truck ?"], "prompt": "the light on the {} is on "}, {"index": 571, "image_id": 2319676, "entity": "truck", "caption": "The truck has a white cab.", "question": ["is there the truck ?", "is there a white cab ?"], "prompt": "The {} has a white cab."}, {"index": 572, "image_id": 2319676, "entity": "truck", "caption": "The truck has a windshield wiper.", "question": ["is there the truck ?", "is there a windshield wiper ?"], "prompt": "The {} has a windshield wiper."}, {"index": 573, "image_id": 2319676, "entity": "truck", "caption": "The driver of the truck is a man.", "question": ["is there the driver ?", "is there the truck ?", "is there a man ?"], "prompt": "The driver of the {} is a man."}, {"index": 574, "image_id": 2319556, "entity": "truck", "caption": "Realistic strawberries painted on truck.", "question": ["are there realistic strawberries ?", "is there truck ?"], "prompt": "Realistic strawberries painted on {}."}, {"index": 575, "image_id": 2319556, "entity": "truck", "caption": "Realistic blackberries painted on truck", "question": ["are there realistic blackberries ?", "is there truck ?"], "prompt": "Realistic blackberries painted on {}"}, {"index": 576, "image_id": 2319556, "entity": "truck", "caption": "Very nice shades of purple painted on truck.", "question": ["are there very nice shades ?", "is there purple ?", "is there truck ?"], "prompt": "Very nice shades of purple painted on {}."}, {"index": 577, "image_id": 2319540, "entity": "truck", "caption": "wagon behind pick up truck", "question": ["is there wagon ?", "is there truck ?"], "prompt": "wagon behind pick up {}"}, {"index": 578, "image_id": 2319280, "entity": "truck", "caption": "PErson sitting in the cab of a truck", "question": ["is there person ?", "is there the cab ?", "is there a truck ?"], "prompt": "PErson sitting in the cab of a {}"}, {"index": 579, "image_id": 2319280, "entity": "truck", "caption": "three people part way under the truck", "question": ["are there three people ?", "is there the truck ?"], "prompt": "three people part way under the {}"}, {"index": 580, "image_id": 2318538, "entity": "truck", "caption": "the dirt piled in the bed of the truck", "question": ["is there the dirt ?", "is there the bed ?", "is there the truck ?"], "prompt": "the dirt piled in the bed of the {}"}, {"index": 581, "image_id": 2317984, "entity": "truck", "caption": "The truck has two plows on it.", "question": ["is there the truck ?", "are there two plows ?"], "prompt": "The {} has two plows on it."}, {"index": 582, "image_id": 2317934, "entity": "truck", "caption": "the company that built the firetruck", "question": ["is there the company ?", "is there the firetruck ?"], "prompt": "the company that built the fire{}"}, {"index": 583, "image_id": 2317726, "entity": "truck", "caption": "the people are climbing the truck", "question": ["are there the people ?", "is there the truck ?"], "prompt": "the people are climbing the {}"}, {"index": 584, "image_id": 2317513, "entity": "truck", "caption": "an old truck sits in a yard", "question": ["is there an old truck ?", "is there a yard ?"], "prompt": "an old {} sits in a yard"}, {"index": 585, "image_id": 2317513, "entity": "truck", "caption": "Grill work on front of truck.", "question": ["is there grill work ?", "is there front ?", "is there truck ?"], "prompt": "Grill work on front of {}."}, {"index": 586, "image_id": 2317513, "entity": "truck", "caption": "Old fashion headlight on front of truck.", "question": ["is there old fashion headlight ?", "is there front ?", "is there truck ?"], "prompt": "Old fashion headlight on front of {}."}, {"index": 587, "image_id": 2317513, "entity": "truck", "caption": "Front right tire flat on truck.", "question": ["is there right tire ?", "is there truck ?"], "prompt": "Front right tire flat on {}."}, {"index": 588, "image_id": 2317240, "entity": "truck", "caption": "White and black mud flaps on back of truck.", "question": ["are there white and black mud flaps ?", "is there back ?", "is there truck ?"], "prompt": "White and black mud flaps on back of {}."}, {"index": 589, "image_id": 2317240, "entity": "truck", "caption": "large black tire mounted behind truck cab", "question": ["is there large black tire ?", "is there truck cab ?"], "prompt": "large black tire mounted behind {} cab"}, {"index": 590, "image_id": 2316849, "entity": "truck", "caption": "he is leaning on the truck ", "question": ["is there the truck ?"], "prompt": "he is leaning on the {} "}, {"index": 591, "image_id": 2316849, "entity": "truck", "caption": "the truck grill is black", "question": ["is there the truck grill ?"], "prompt": "the {} grill is black"}, {"index": 592, "image_id": 2316663, "entity": "truck", "caption": "cord wrapped over items in truck and secured on sides", "question": ["is there cord ?", "are there items ?", "is there truck ?", "are there sides ?"], "prompt": "cord wrapped over items in {} and secured on sides"}, {"index": 593, "image_id": 2316663, "entity": "truck", "caption": "Trailer hitch on a truck", "question": ["is there trailer hitch ?", "is there a truck ?"], "prompt": "Trailer hitch on a {}"}, {"index": 594, "image_id": 2316538, "entity": "truck", "caption": "a rack mounted on top of the truck cab", "question": ["is there a rack ?", "is there top ?", "is there the truck cab ?"], "prompt": "a rack mounted on top of the {} cab"}, {"index": 595, "image_id": 2316538, "entity": "truck", "caption": "truck sits on a pockmarked street", "question": ["is there truck ?", "is there a pockmarked street ?"], "prompt": "{} sits on a pockmarked street"}, {"index": 596, "image_id": 2315863, "entity": "truck", "caption": "door handle on the truck", "question": ["is there door ?", "is there the truck ?"], "prompt": "door handle on the {}"}, {"index": 597, "image_id": 2315632, "entity": "truck", "caption": "a woman sititn gon truck", "question": ["is there a woman sititn ?", "is there truck ?"], "prompt": "a woman sititn gon {}"}, {"index": 598, "image_id": 2315484, "entity": "truck", "caption": "chrome plated grill on the front of a truck", "question": ["is there chrome plated grill ?", "is there the front ?", "is there a truck ?"], "prompt": "chrome plated grill on the front of a {}"}, {"index": 599, "image_id": 2414401, "entity": "truck", "caption": "the truck has a red brakelight", "question": ["is there the truck ?", "is there a red brakelight ?"], "prompt": "the {} has a red brakelight"}, {"index": 600, "image_id": 2414401, "entity": "truck", "caption": "the truck is carrying a ladder ", "question": ["is there the truck ?", "is there a ladder ?"], "prompt": "the {} is carrying a ladder "}, {"index": 601, "image_id": 2414213, "entity": "truck", "caption": "the door handle on the truck is silver", "question": ["is there the door ?", "is there the truck ?"], "prompt": "the door handle on the {} is silver"}, {"index": 602, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver mirror", "question": ["is there the blue truck ?", "is there a silver mirror ?"], "prompt": "the blue {} has a silver mirror"}, {"index": 603, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver stripe", "question": ["is there the blue truck ?", "is there a silver stripe ?"], "prompt": "the blue {} has a silver stripe"}, {"index": 604, "image_id": 2414213, "entity": "truck", "caption": "a dog is looking out truck window", "question": ["is there a dog ?"], "prompt": "a dog is looking out {} window"}, {"index": 605, "image_id": 2414213, "entity": "truck", "caption": "Silverado emblem on the side of the truck", "question": ["is there silverado emblem ?", "is there the side ?", "is there the truck ?"], "prompt": "Silverado emblem on the side of the {}"}, {"index": 606, "image_id": 2414213, "entity": "truck", "caption": "Door handle on the side of the truck", "question": ["is there door ?", "is there the side ?", "is there the truck ?"], "prompt": "Door handle on the side of the {}"}, {"index": 607, "image_id": 2414197, "entity": "truck", "caption": "The truck carries equipment. ", "question": ["is there the truck ?", "is there equipment ?"], "prompt": "The {} carries equipment. "}, {"index": 608, "image_id": 2414197, "entity": "truck", "caption": "The truck carries a hose.", "question": ["is there the truck ?", "is there a hose ?"], "prompt": "The {} carries a hose."}, {"index": 609, "image_id": 2414197, "entity": "truck", "caption": "The truck carries cables. ", "question": ["is there the truck ?", "are there cables ?"], "prompt": "The {} carries cables. "}, {"index": 610, "image_id": 2414197, "entity": "truck", "caption": "The truck's front has red stripes.", "question": ["is there the truck's front ?", "are there red stripes ?"], "prompt": "The {}'s front has red stripes."}, {"index": 611, "image_id": 2414197, "entity": "truck", "caption": "Three of the truck's tires are visible.", "question": ["are there the truck's tires ?"], "prompt": "Three of the {}'s tires are visible."}, {"index": 612, "image_id": 2414142, "entity": "truck", "caption": "the truck says brennstoffe on the back", "question": ["is there the truck ?", "is there the back ?"], "prompt": "the {} says brennstoffe on the back"}, {"index": 613, "image_id": 2414142, "entity": "truck", "caption": "a car is on the road in front of the truck", "question": ["is there a car ?", "is there the road ?", "is there front ?", "is there the truck ?"], "prompt": "a car is on the road in front of the {}"}, {"index": 614, "image_id": 2414142, "entity": "truck", "caption": "the back of the truck says man", "question": ["is there the back ?", "is there the truck ?", "is there man ?"], "prompt": "the back of the {} says man"}, {"index": 615, "image_id": 2413814, "entity": "truck", "caption": "Sign written in white on side of truck.", "question": ["is there sign ?", "is there side ?", "is there truck ?"], "prompt": "Sign written in white on side of {}."}, {"index": 616, "image_id": 2413814, "entity": "truck", "caption": "A white SUV is behind the truck ", "question": ["is there the truck ?"], "prompt": "A white SUV is behind the {} "}, {"index": 617, "image_id": 2413579, "entity": "truck", "caption": "truck has chrome wheelie bar on back", "question": ["is there truck ?", "is there chrome wheelie bar ?"], "prompt": "{} has chrome wheelie bar on back"}, {"index": 618, "image_id": 2413408, "entity": "truck", "caption": "The truck has yellow hubcaps.", "question": ["is there the truck ?", "are there yellow hubcaps ?"], "prompt": "The {} has yellow hubcaps."}, {"index": 619, "image_id": 2413408, "entity": "truck", "caption": "The truck has two headlights.", "question": ["is there the truck ?", "are there two headlights ?"], "prompt": "The {} has two headlights."}, {"index": 620, "image_id": 2413104, "entity": "truck", "caption": "a mechanical arm sits on top of a truck", "question": ["is there a mechanical arm ?", "is there top ?", "is there a truck ?"], "prompt": "a mechanical arm sits on top of a {}"}, {"index": 621, "image_id": 2413104, "entity": "truck", "caption": "This truck has 6 wheels", "question": ["is there this truck ?", "are there 6 wheels ?"], "prompt": "This {} has 6 wheels"}, {"index": 622, "image_id": 2413104, "entity": "truck", "caption": "This door enters the truck", "question": ["is there this door ?", "is there the truck ?"], "prompt": "This door enters the {}"}, {"index": 623, "image_id": 2413104, "entity": "truck", "caption": "Trees are next to the truck", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are next to the {}"}, {"index": 624, "image_id": 2413104, "entity": "truck", "caption": "man standing next to a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man standing next to a {}"}, {"index": 625, "image_id": 2412942, "entity": "truck", "caption": "the truck has large tyres", "question": ["is there the truck ?", "are there large tyres ?"], "prompt": "the {} has large tyres"}, {"index": 626, "image_id": 2412792, "entity": "truck", "caption": "the truck is casting a shadow underneath", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow underneath"}, {"index": 627, "image_id": 2412792, "entity": "truck", "caption": "the truck has a crane on it's back", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane on it's back"}, {"index": 628, "image_id": 2412792, "entity": "truck", "caption": "the side of the truck has Chinese lettering", "question": ["is there the side ?", "is there the truck ?", "is there chinese lettering ?"], "prompt": "the side of the {} has Chinese lettering"}, {"index": 629, "image_id": 2412792, "entity": "truck", "caption": "a palm tree is behind the truck", "question": ["is there a palm tree ?", "is there the truck ?"], "prompt": "a palm tree is behind the {}"}, {"index": 630, "image_id": 2412792, "entity": "truck", "caption": "a white column is on the right of the truck", "question": ["is there a white column ?", "is there the right ?", "is there the truck ?"], "prompt": "a white column is on the right of the {}"}, {"index": 631, "image_id": 2412792, "entity": "truck", "caption": "truck has a crane on back", "question": ["is there truck ?", "is there a crane ?"], "prompt": "{} has a crane on back"}, {"index": 632, "image_id": 2412792, "entity": "truck", "caption": "Roof of truck is red", "question": ["is there roof ?", "is there truck ?"], "prompt": "Roof of {} is red"}, {"index": 633, "image_id": 2412603, "entity": "truck", "caption": "Man is by a red Toyota truck", "question": ["is there man ?", "is there a red toyota truck ?"], "prompt": "Man is by a red Toyota {}"}, {"index": 634, "image_id": 2412488, "entity": "truck", "caption": "a person works on a truck", "question": ["is there a person ?", "is there a truck ?"], "prompt": "a person works on a {}"}, {"index": 635, "image_id": 2412483, "entity": "truck", "caption": "woman in purple shirt looking at truck", "question": ["is there woman ?", "is there purple shirt ?", "is there truck ?"], "prompt": "woman in purple shirt looking at {}"}, {"index": 636, "image_id": 2412483, "entity": "truck", "caption": "man in black shirt taking picture of truck", "question": ["is there man ?", "is there black shirt ?", "is there picture ?", "is there truck ?"], "prompt": "man in black shirt taking picture of {}"}, {"index": 637, "image_id": 2412186, "entity": "truck", "caption": "Front headlight on the red truck.", "question": ["is there front headlight ?", "is there the red truck ?"], "prompt": "Front headlight on the red {}."}, {"index": 638, "image_id": 2412186, "entity": "truck", "caption": "canoe tied on top of truck", "question": ["is there canoe ?", "is there top ?", "is there truck ?"], "prompt": "canoe tied on top of {}"}, {"index": 639, "image_id": 2412186, "entity": "truck", "caption": "truck logo painted on fender", "question": ["is there truck logo ?", "is there fender ?"], "prompt": "{} logo painted on fender"}, {"index": 640, "image_id": 2412161, "entity": "truck", "caption": "The truck has a side mirror.", "question": ["is there the truck ?", "is there a side mirror ?"], "prompt": "The {} has a side mirror."}, {"index": 641, "image_id": 2412161, "entity": "truck", "caption": "Rust surrounds truck headlight. ", "question": ["is there rust ?", "is there truck headlight ?"], "prompt": "Rust surrounds {} headlight. "}, {"index": 642, "image_id": 2415675, "entity": "truck", "caption": "these are truck wheels", "question": ["are there truck wheels ?"], "prompt": "these are {} wheels"}, {"index": 643, "image_id": 2416928, "entity": "truck", "caption": "Yellow truck has big wheels ", "question": ["is there yellow truck ?", "are there big wheels ?"], "prompt": "Yellow {} has big wheels "}, {"index": 644, "image_id": 2417877, "entity": "truck", "caption": "Strange artwork is on the truck ", "question": ["is there strange artwork ?", "is there the truck ?"], "prompt": "Strange artwork is on the {} "}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03447447.json b/data/imagenet/compositions/prompts/n03447447.json
new file mode 100644
index 0000000000000000000000000000000000000000..1091d72597600d36f049b579bcd37e9d0ad4df2a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03447447.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 815, "entity": "boat", "caption": "The boat has windows", "question": ["is there the boat ?", "are there windows ?"], "prompt": "The {} has windows"}, {"index": 1, "image_id": 1883, "entity": "boat", "caption": "The boat has empty seats.", "question": ["is there the boat ?", "are there empty seats ?"], "prompt": "The {} has empty seats."}, {"index": 2, "image_id": 1902, "entity": "boat", "caption": "woman with blue shirt standing on boat", "question": ["is there woman ?", "is there blue shirt ?", "is there boat ?"], "prompt": "woman with blue shirt standing on {}"}, {"index": 3, "image_id": 1904, "entity": "boat", "caption": "black letters and numbers painted on a boat", "question": ["are there black letters ?", "are there numbers ?", "is there a boat ?"], "prompt": "black letters and numbers painted on a {}"}, {"index": 4, "image_id": 2562, "entity": "boat", "caption": "white person is on a boat", "question": ["is there white person ?", "is there a boat ?"], "prompt": "white person is on a {}"}, {"index": 5, "image_id": 2562, "entity": "boat", "caption": "Life preserver on the boat", "question": ["is there life preserver ?", "is there the boat ?"], "prompt": "Life preserver on the {}"}, {"index": 6, "image_id": 4245, "entity": "boat", "caption": "white boat parked in the dock ", "question": ["is there white boat ?", "is there the dock ?"], "prompt": "white {} parked in the dock "}, {"index": 7, "image_id": 4245, "entity": "boat", "caption": "boat is tired to the pier", "question": ["is there boat ?", "is there the pier ?"], "prompt": "{} is tired to the pier"}, {"index": 8, "image_id": 4990, "entity": "boat", "caption": "personal floating device on the sailboats transom", "question": ["is there personal floating device ?", "are there the sailboats ?"], "prompt": "personal floating device on the sail{}s transom"}, {"index": 9, "image_id": 61552, "entity": "boat", "caption": "A man in a hat is on a small boat in the water", "question": ["is there a man ?", "is there a hat ?", "is there a small boat ?", "is there the water ?"], "prompt": "A man in a hat is on a small {} in the water"}, {"index": 10, "image_id": 61588, "entity": "boat", "caption": "blue letters painted on a boat", "question": ["are there blue letters ?", "is there a boat ?"], "prompt": "blue letters painted on a {}"}, {"index": 11, "image_id": 285605, "entity": "boat", "caption": "bottom of boat is blue in color", "question": ["is there bottom ?", "is there boat ?", "is there color ?"], "prompt": "bottom of {} is blue in color"}, {"index": 12, "image_id": 498166, "entity": "boat", "caption": "People rowing a boat", "question": ["are there people ?", "is there a boat ?"], "prompt": "People rowing a {}"}, {"index": 13, "image_id": 498166, "entity": "boat", "caption": "the boats have canopies", "question": ["are there the boats ?", "are there canopies ?"], "prompt": "the {}s have canopies"}, {"index": 14, "image_id": 498267, "entity": "boat", "caption": "the white buoy hanging off the boat", "question": ["is there the white buoy ?", "is there the boat ?"], "prompt": "the white buoy hanging off the {}"}, {"index": 15, "image_id": 498267, "entity": "boat", "caption": "The boat is in the water.", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is in the water."}, {"index": 16, "image_id": 713061, "entity": "boat", "caption": "American flag flying on boat", "question": ["is there american flag ?", "is there boat ?"], "prompt": "American flag flying on {}"}, {"index": 17, "image_id": 713156, "entity": "boat", "caption": "boat is next to boat in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is next to {} in water"}, {"index": 18, "image_id": 713162, "entity": "boat", "caption": "large boat docked by building", "question": ["is there large boat ?"], "prompt": "large {} docked by building"}, {"index": 19, "image_id": 713162, "entity": "boat", "caption": "the boat parked next to the red house", "question": ["is there the boat ?"], "prompt": "the {} parked next to the red house"}, {"index": 20, "image_id": 713470, "entity": "boat", "caption": "boat has wooden benched", "question": ["is there boat ?"], "prompt": "{} has wooden benched"}, {"index": 21, "image_id": 713832, "entity": "boat", "caption": "words are on the boat", "question": ["are there words ?", "is there the boat ?"], "prompt": "words are on the {}"}, {"index": 22, "image_id": 713832, "entity": "boat", "caption": "boat has a pole", "question": ["is there boat ?", "is there a pole ?"], "prompt": "{} has a pole"}, {"index": 23, "image_id": 713832, "entity": "boat", "caption": "boat has a window", "question": ["is there boat ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 24, "image_id": 1159573, "entity": "boat", "caption": "blue and white boat sitting in body of water", "question": ["is there blue and white boat ?", "is there body ?", "is there water ?"], "prompt": "blue and white {} sitting in body of water"}, {"index": 25, "image_id": 1159823, "entity": "boat", "caption": "two boats side by side", "question": ["are there two boats ?", "is there side ?"], "prompt": "two {}s side by side"}, {"index": 26, "image_id": 1159823, "entity": "boat", "caption": "\"RX60\" painted on boat with black paint", "question": ["is there boat ?", "is there black paint ?"], "prompt": "\"RX60\" painted on {} with black paint"}, {"index": 27, "image_id": 1160209, "entity": "boat", "caption": "Long blue rope tied to boat.", "question": ["is there long blue rope ?", "is there boat ?"], "prompt": "Long blue rope tied to {}."}, {"index": 28, "image_id": 1160209, "entity": "boat", "caption": "brown rope tied on the boat", "question": ["is there brown rope ?", "is there the boat ?"], "prompt": "brown rope tied on the {}"}, {"index": 29, "image_id": 1592080, "entity": "boat", "caption": "the bottom of the boat is red", "question": ["is there the bottom ?", "is there the boat ?"], "prompt": "the bottom of the {} is red"}, {"index": 30, "image_id": 1592080, "entity": "boat", "caption": "the tarp on the boat is blue", "question": ["is there the tarp ?", "is there the boat ?"], "prompt": "the tarp on the {} is blue"}, {"index": 31, "image_id": 1592464, "entity": "boat", "caption": "american flag flying from the boat", "question": ["is there american flag ?", "is there the boat ?"], "prompt": "american flag flying from the {}"}, {"index": 32, "image_id": 1592464, "entity": "boat", "caption": "water the boat is on", "question": ["is there the boat ?"], "prompt": "water the {} is on"}, {"index": 33, "image_id": 1592891, "entity": "boat", "caption": "White covers on yellow boat", "question": ["are there white covers ?", "is there yellow boat ?"], "prompt": "White covers on yellow {}"}, {"index": 34, "image_id": 1592891, "entity": "boat", "caption": "the boat has fabric stripe", "question": ["is there the boat ?", "is there fabric stripe ?"], "prompt": "the {} has fabric stripe"}, {"index": 35, "image_id": 1592892, "entity": "boat", "caption": "the man is on a boat", "question": ["is there the man ?", "is there a boat ?"], "prompt": "the man is on a {}"}, {"index": 36, "image_id": 1592892, "entity": "boat", "caption": "Man working on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man working on a {}"}, {"index": 37, "image_id": 1592951, "entity": "boat", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The truck on the {} is blue in color."}, {"index": 38, "image_id": 2414926, "entity": "boat", "caption": "The boat is in the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 39, "image_id": 2414334, "entity": "boat", "caption": "Large boat docked on water.", "question": ["is there large boat ?", "is there water ?"], "prompt": "Large {} docked on water."}, {"index": 40, "image_id": 2413907, "entity": "boat", "caption": "Man standing on a boat holding a hot dog.", "question": ["is there man ?", "is there a boat ?", "is there a hot dog ?"], "prompt": "Man standing on a {} holding a hot dog."}, {"index": 41, "image_id": 2413848, "entity": "boat", "caption": "boat has chinese letters", "question": ["is there boat ?", "are there chinese letters ?"], "prompt": "{} has chinese letters"}, {"index": 42, "image_id": 2413848, "entity": "boat", "caption": "boat has yellow floaters on the side", "question": ["is there boat ?", "are there yellow floaters ?", "is there the side ?"], "prompt": "{} has yellow floaters on the side"}, {"index": 43, "image_id": 2413848, "entity": "boat", "caption": "boat has orange bouys", "question": ["is there boat ?", "are there orange bouys ?"], "prompt": "{} has orange bouys"}, {"index": 44, "image_id": 2413848, "entity": "boat", "caption": "the inside of the boat is green", "question": ["is there the inside ?", "is there the boat ?"], "prompt": "the inside of the {} is green"}, {"index": 45, "image_id": 2413848, "entity": "boat", "caption": "wooden boat dock", "question": ["is there wooden boat ?"], "prompt": "wooden {} dock"}, {"index": 46, "image_id": 2413848, "entity": "boat", "caption": "the boat is at the dock", "question": ["is there the boat ?", "is there the dock ?"], "prompt": "the {} is at the dock"}, {"index": 47, "image_id": 2413564, "entity": "boat", "caption": "an orange life saver hangs on the boat", "question": ["is there an orange life saver ?", "is there the boat ?"], "prompt": "an orange life saver hangs on the {}"}, {"index": 48, "image_id": 2413564, "entity": "boat", "caption": "the boat in the front has a tall mast", "question": ["is there the boat ?", "is there the front ?", "is there a tall mast ?"], "prompt": "the {} in the front has a tall mast"}, {"index": 49, "image_id": 2413564, "entity": "boat", "caption": "the boats are on the bay", "question": ["are there the boats ?", "is there the bay ?"], "prompt": "the {}s are on the bay"}, {"index": 50, "image_id": 2412218, "entity": "boat", "caption": "a boat is in the photo", "question": ["is there a boat ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 51, "image_id": 2412218, "entity": "boat", "caption": "the boat is red with designs", "question": ["is there the boat ?", "are there designs ?"], "prompt": "the {} is red with designs"}, {"index": 52, "image_id": 2412218, "entity": "boat", "caption": "the boat is on the shore", "question": ["is there the boat ?", "is there the shore ?"], "prompt": "the {} is on the shore"}, {"index": 53, "image_id": 2412218, "entity": "boat", "caption": "the boat has a star of david", "question": ["is there the boat ?", "is there a star ?"], "prompt": "the {} has a star of david"}, {"index": 54, "image_id": 2412218, "entity": "boat", "caption": "the boat has a heart ", "question": ["is there the boat ?", "is there a heart ?"], "prompt": "the {} has a heart "}, {"index": 55, "image_id": 2412218, "entity": "boat", "caption": "the boat has a cloud design", "question": ["is there the boat ?", "is there a cloud design ?"], "prompt": "the {} has a cloud design"}, {"index": 56, "image_id": 2412218, "entity": "boat", "caption": "heart shapes window in side of boat", "question": ["is there heart ?", "is there side ?", "is there boat ?"], "prompt": "heart shapes window in side of {}"}, {"index": 57, "image_id": 2411489, "entity": "boat", "caption": "boat docked at pier", "question": ["is there boat ?", "is there pier ?"], "prompt": "{} docked at pier"}, {"index": 58, "image_id": 2411204, "entity": "boat", "caption": "An enormous amount of water on which people ride boats.", "question": ["is there an enormous amount ?", "is there water ?", "are there people ?", "are there boats ?"], "prompt": "An enormous amount of water on which people ride {}s."}, {"index": 59, "image_id": 2410909, "entity": "boat", "caption": "Two people sit on a boat", "question": ["are there two people ?", "is there a boat ?"], "prompt": "Two people sit on a {}"}, {"index": 60, "image_id": 2410909, "entity": "boat", "caption": "A person is steering the boat with the rudder", "question": ["is there a person ?", "is there the boat ?", "is there the rudder ?"], "prompt": "A person is steering the {} with the rudder"}, {"index": 61, "image_id": 2410850, "entity": "boat", "caption": "a sniper rifle anchored to the boat", "question": ["is there a sniper rifle ?", "is there the boat ?"], "prompt": "a sniper rifle anchored to the {}"}, {"index": 62, "image_id": 2410850, "entity": "boat", "caption": "U.S. Coast Guard painted on boat", "question": ["is there boat ?"], "prompt": "U.S. Coast Guard painted on {}"}, {"index": 63, "image_id": 2410850, "entity": "boat", "caption": "Honda outboard boat motor", "question": [], "prompt": "Honda outboard {} motor"}, {"index": 64, "image_id": 2410846, "entity": "boat", "caption": "life preserver mounted to side of boat", "question": ["is there life preserver ?", "is there side ?", "is there boat ?"], "prompt": "life preserver mounted to side of {}"}, {"index": 65, "image_id": 2410846, "entity": "boat", "caption": "Life saving ring on the boat", "question": ["is there life saving ring ?", "is there the boat ?"], "prompt": "Life saving ring on the {}"}, {"index": 66, "image_id": 2409599, "entity": "boat", "caption": "Several boats are in the water. ", "question": ["are there several boats ?", "is there the water ?"], "prompt": "Several {}s are in the water. "}, {"index": 67, "image_id": 2409599, "entity": "boat", "caption": "The boat has several windows. ", "question": ["is there the boat ?", "are there several windows ?"], "prompt": "The {} has several windows. "}, {"index": 68, "image_id": 2409599, "entity": "boat", "caption": "A rope secures the boat to the dock.", "question": ["is there a rope ?", "is there the boat ?", "is there the dock ?"], "prompt": "A rope secures the {} to the dock."}, {"index": 69, "image_id": 2409599, "entity": "boat", "caption": "rope securing a boat to the dock", "question": ["is there rope ?", "is there a boat ?", "is there the dock ?"], "prompt": "rope securing a {} to the dock"}, {"index": 70, "image_id": 2409535, "entity": "boat", "caption": "Cables attached to larger boat", "question": ["are there cables ?", "is there larger boat ?"], "prompt": "Cables attached to larger {}"}, {"index": 71, "image_id": 2409535, "entity": "boat", "caption": "Name written on side of smaller boat", "question": ["is there name ?", "is there side ?", "is there smaller boat ?"], "prompt": "Name written on side of smaller {}"}, {"index": 72, "image_id": 2409535, "entity": "boat", "caption": "name of a boat painted on", "question": ["is there name ?", "is there a boat ?"], "prompt": "name of a {} painted on"}, {"index": 73, "image_id": 2409264, "entity": "boat", "caption": "small boy standing in a boat", "question": ["is there small boy ?", "is there a boat ?"], "prompt": "small boy standing in a {}"}, {"index": 74, "image_id": 2409264, "entity": "boat", "caption": "asian boy standing in boat", "question": ["is there asian boy ?", "is there boat ?"], "prompt": "asian boy standing in {}"}, {"index": 75, "image_id": 2409264, "entity": "boat", "caption": "person standing in boat in backgroung", "question": ["is there person ?", "is there boat ?", "is there backgroung ?"], "prompt": "person standing in {} in backgroung"}, {"index": 76, "image_id": 2408406, "entity": "boat", "caption": "hand hangs over side of boat.", "question": ["is there hand ?", "is there side ?", "is there boat ?"], "prompt": "hand hangs over side of {}."}, {"index": 77, "image_id": 2408406, "entity": "boat", "caption": "two large umbrellas covering most of boat", "question": ["are there two large umbrellas ?", "is there boat ?"], "prompt": "two large umbrellas covering most of {}"}, {"index": 78, "image_id": 2408406, "entity": "boat", "caption": "The person has their hand out of the boat", "question": ["is there the person ?", "is there their hand ?", "is there the boat ?"], "prompt": "The person has their hand out of the {}"}, {"index": 79, "image_id": 2408406, "entity": "boat", "caption": "hand of person who is riding in the boat", "question": ["is there hand ?", "is there person ?", "is there the boat ?"], "prompt": "hand of person who is riding in the {}"}, {"index": 80, "image_id": 2408406, "entity": "boat", "caption": "The food and umbrellas are on a boat. ", "question": ["is there the food ?", "are there umbrellas ?", "is there a boat ?"], "prompt": "The food and umbrellas are on a {}. "}, {"index": 81, "image_id": 2408030, "entity": "boat", "caption": "people sitting in a boat waiting", "question": ["are there people ?", "is there a boat ?"], "prompt": "people sitting in a {} waiting"}, {"index": 82, "image_id": 2408030, "entity": "boat", "caption": "person climbing into or out of the boat", "question": ["is there person ?", "is there the boat ?"], "prompt": "person climbing into or out of the {}"}, {"index": 83, "image_id": 2407441, "entity": "boat", "caption": "Man standing on a boat. ", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man standing on a {}. "}, {"index": 84, "image_id": 2407441, "entity": "boat", "caption": "wooden boat with woman standing", "question": ["is there wooden boat ?", "is there woman ?"], "prompt": "wooden {} with woman standing"}, {"index": 85, "image_id": 2406902, "entity": "boat", "caption": "Orange life preserver on a white boat.", "question": ["is there orange life preserver ?", "is there a white boat ?"], "prompt": "Orange life preserver on a white {}."}, {"index": 86, "image_id": 2405871, "entity": "boat", "caption": "a bridge goes into the boat", "question": ["is there a bridge ?", "is there the boat ?"], "prompt": "a bridge goes into the {}"}, {"index": 87, "image_id": 2405602, "entity": "boat", "caption": "small boat going out to sea", "question": ["is there small boat ?", "is there sea ?"], "prompt": "small {} going out to sea"}, {"index": 88, "image_id": 2404841, "entity": "boat", "caption": "bamboo boats parked together", "question": ["are there bamboo boats ?"], "prompt": "bamboo {}s parked together"}, {"index": 89, "image_id": 2404841, "entity": "boat", "caption": "orange life preservers are hanging from the boat chairs", "question": ["are there orange life preservers ?", "are there the boat chairs ?"], "prompt": "orange life preservers are hanging from the {} chairs"}, {"index": 90, "image_id": 2404198, "entity": "boat", "caption": "The boat has two life boats on the right side", "question": ["is there the boat ?", "are there two life boats ?", "is there the right side ?"], "prompt": "The {} has two life {}s on the right side"}, {"index": 91, "image_id": 2404184, "entity": "boat", "caption": "These people are on a boat ride", "question": ["are there these people ?", "is there a boat ride ?"], "prompt": "These people are on a {} ride"}, {"index": 92, "image_id": 2404184, "entity": "boat", "caption": "The boat is creating waves", "question": ["is there the boat ?", "are there waves ?"], "prompt": "The {} is creating waves"}, {"index": 93, "image_id": 2403899, "entity": "boat", "caption": "three people are on the boat", "question": ["are there three people ?", "is there the boat ?"], "prompt": "three people are on the {}"}, {"index": 94, "image_id": 2403899, "entity": "boat", "caption": "a flag is in the front of the boat", "question": ["is there a flag ?", "is there the front ?", "is there the boat ?"], "prompt": "a flag is in the front of the {}"}, {"index": 95, "image_id": 2403899, "entity": "boat", "caption": "the boat travels on a river", "question": ["is there the boat ?", "is there a river ?"], "prompt": "the {} travels on a river"}, {"index": 96, "image_id": 2403899, "entity": "boat", "caption": "the boat is in the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is in the water"}, {"index": 97, "image_id": 2403899, "entity": "boat", "caption": "two fishing poles stick up out of the boat", "question": ["are there two fishing poles ?", "is there the boat ?"], "prompt": "two fishing poles stick up out of the {}"}, {"index": 98, "image_id": 2403899, "entity": "boat", "caption": "the flag is on the front of the boat", "question": ["is there the flag ?", "is there the front ?", "is there the boat ?"], "prompt": "the flag is on the front of the {}"}, {"index": 99, "image_id": 2403899, "entity": "boat", "caption": "three people are in the boat", "question": ["are there three people ?", "is there the boat ?"], "prompt": "three people are in the {}"}, {"index": 100, "image_id": 2403753, "entity": "boat", "caption": "Many of the boats have masts.", "question": ["are there the boats ?", "are there masts ?"], "prompt": "Many of the {}s have masts."}, {"index": 101, "image_id": 2403753, "entity": "boat", "caption": "A rope hanging over boat.", "question": ["is there a rope ?", "is there boat ?"], "prompt": "A rope hanging over {}."}, {"index": 102, "image_id": 2403753, "entity": "boat", "caption": "Paint of the boat is coming off", "question": ["is there paint ?", "is there the boat ?"], "prompt": "Paint of the {} is coming off"}, {"index": 103, "image_id": 2403753, "entity": "boat", "caption": "Two boats anchored to the dock", "question": ["are there two boats ?", "is there the dock ?"], "prompt": "Two {}s anchored to the dock"}, {"index": 104, "image_id": 2403753, "entity": "boat", "caption": "Rope attached the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "Rope attached the {}"}, {"index": 105, "image_id": 2403712, "entity": "boat", "caption": "Person riding bike on to boat.", "question": ["is there person ?", "is there bike ?", "is there boat ?"], "prompt": "Person riding bike on to {}."}, {"index": 106, "image_id": 2403147, "entity": "boat", "caption": "Black tarp covering part of boat", "question": ["is there black tarp ?", "is there part ?", "is there boat ?"], "prompt": "Black tarp covering part of {}"}, {"index": 107, "image_id": 2403147, "entity": "boat", "caption": "rope tied to the boat.", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied to the {}."}, {"index": 108, "image_id": 2402503, "entity": "boat", "caption": "Person stepping on boat", "question": ["is there person ?", "is there boat ?"], "prompt": "Person stepping on {}"}, {"index": 109, "image_id": 2402503, "entity": "boat", "caption": "Rope lying on a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "Rope lying on a {}"}, {"index": 110, "image_id": 2402107, "entity": "boat", "caption": "two men getting things off the boat", "question": ["are there two men ?", "are there things ?", "is there the boat ?"], "prompt": "two men getting things off the {}"}, {"index": 111, "image_id": 2402107, "entity": "boat", "caption": "boat coming to pick up the people", "question": ["is there boat ?", "are there the people ?"], "prompt": "{} coming to pick up the people"}, {"index": 112, "image_id": 2402067, "entity": "boat", "caption": "The water the boat is on", "question": ["is there the water ?", "is there the boat ?"], "prompt": "The water the {} is on"}, {"index": 113, "image_id": 2401739, "entity": "boat", "caption": "Woman sitting in wood boat.", "question": ["is there woman ?", "is there wood boat ?"], "prompt": "Woman sitting in wood {}."}, {"index": 114, "image_id": 2401739, "entity": "boat", "caption": "pole is in boat", "question": ["is there pole ?", "is there boat ?"], "prompt": "pole is in {}"}, {"index": 115, "image_id": 2401739, "entity": "boat", "caption": "two boats side by side in the water", "question": ["are there two boats ?", "is there side ?", "is there the water ?"], "prompt": "two {}s side by side in the water"}, {"index": 116, "image_id": 2401211, "entity": "boat", "caption": "Man fishing in boat.", "question": ["is there man ?", "is there boat ?"], "prompt": "Man fishing in {}."}, {"index": 117, "image_id": 2400731, "entity": "boat", "caption": "water the boat is floating on ", "question": ["is there water ?", "is there the boat ?"], "prompt": "water the {} is floating on "}, {"index": 118, "image_id": 2400731, "entity": "boat", "caption": "apples that are on the boat", "question": ["are there apples ?", "is there the boat ?"], "prompt": "apples that are on the {}"}, {"index": 119, "image_id": 2400487, "entity": "boat", "caption": "red toy boat is in the water", "question": ["is there red toy boat ?", "is there the water ?"], "prompt": "red toy {} is in the water"}, {"index": 120, "image_id": 2400487, "entity": "boat", "caption": "The toy boat is in the water.", "question": ["is there the toy boat ?", "is there the water ?"], "prompt": "The toy {} is in the water."}, {"index": 121, "image_id": 2400486, "entity": "boat", "caption": "water where the boats are", "question": ["is there water ?", "are there the boats ?"], "prompt": "water where the {}s are"}, {"index": 122, "image_id": 2400240, "entity": "boat", "caption": "a lawn hair sitting near a boat.", "question": ["is there a lawn hair ?", "is there a boat ?"], "prompt": "a lawn hair sitting near a {}."}, {"index": 123, "image_id": 2400066, "entity": "boat", "caption": "Steps lead up to the boat", "question": ["are there steps ?", "is there the boat ?"], "prompt": "Steps lead up to the {}"}, {"index": 124, "image_id": 2400066, "entity": "boat", "caption": "The front of the boat has black netting", "question": ["is there the front ?", "is there the boat ?", "is there black netting ?"], "prompt": "The front of the {} has black netting"}, {"index": 125, "image_id": 2400066, "entity": "boat", "caption": "White boat docked next to the red boat", "question": ["is there white boat ?", "is there the red boat ?"], "prompt": "White {} docked next to the red {}"}, {"index": 126, "image_id": 2399658, "entity": "boat", "caption": "white metal fencing around boat", "question": ["is there white metal fencing ?", "is there boat ?"], "prompt": "white metal fencing around {}"}, {"index": 127, "image_id": 2399658, "entity": "boat", "caption": "rope attatched to a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "rope attatched to a {}"}, {"index": 128, "image_id": 2399025, "entity": "boat", "caption": "these are four people on the boat", "question": ["are there four people ?", "is there the boat ?"], "prompt": "these are four people on the {}"}, {"index": 129, "image_id": 2399025, "entity": "boat", "caption": "man standing on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man standing on a {}"}, {"index": 130, "image_id": 2398909, "entity": "boat", "caption": "man selling potatoes on a boat ", "question": ["is there man ?", "are there potatoes ?", "is there a boat ?"], "prompt": "man selling potatoes on a {} "}, {"index": 131, "image_id": 2398909, "entity": "boat", "caption": "Man is on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man is on a {}"}, {"index": 132, "image_id": 2398909, "entity": "boat", "caption": "man on boat is selling food", "question": ["is there man ?", "is there boat ?", "is there food ?"], "prompt": "man on {} is selling food"}, {"index": 133, "image_id": 2398909, "entity": "boat", "caption": "boat is on the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is on the water"}, {"index": 134, "image_id": 2398909, "entity": "boat", "caption": "boat door is open", "question": ["is there boat door ?"], "prompt": "{} door is open"}, {"index": 135, "image_id": 2398862, "entity": "boat", "caption": "this is a boat", "question": ["is there a boat ?"], "prompt": "this is a {}"}, {"index": 136, "image_id": 2398735, "entity": "boat", "caption": "The boat has wood panels.", "question": ["is there the boat ?", "are there wood panels ?"], "prompt": "The {} has wood panels."}, {"index": 137, "image_id": 2398609, "entity": "boat", "caption": "a rope tied to a boat", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "a rope tied to a {}"}, {"index": 138, "image_id": 2398396, "entity": "boat", "caption": "long green boat is on water", "question": ["is there long green boat ?", "is there water ?"], "prompt": "long green {} is on water"}, {"index": 139, "image_id": 2398396, "entity": "boat", "caption": "empty plastic bottle is in middle of boat", "question": ["is there empty plastic bottle ?", "is there middle ?", "is there boat ?"], "prompt": "empty plastic bottle is in middle of {}"}, {"index": 140, "image_id": 2398396, "entity": "boat", "caption": "Water is reflecting boat", "question": ["is there water ?", "is there boat ?"], "prompt": "Water is reflecting {}"}, {"index": 141, "image_id": 2398176, "entity": "boat", "caption": "The boat has equipment on it.", "question": ["is there the boat ?", "is there equipment ?"], "prompt": "The {} has equipment on it."}, {"index": 142, "image_id": 2398032, "entity": "boat", "caption": "The boat is on the water.", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 143, "image_id": 2398032, "entity": "boat", "caption": "The people are on the boat.", "question": ["are there the people ?", "is there the boat ?"], "prompt": "The people are on the {}."}, {"index": 144, "image_id": 2397696, "entity": "boat", "caption": "Ladder leaning against a boat.", "question": ["is there ladder ?", "is there a boat ?"], "prompt": "Ladder leaning against a {}."}, {"index": 145, "image_id": 2397163, "entity": "boat", "caption": "teddy bear sits on a boat", "question": ["is there a boat ?"], "prompt": "teddy bear sits on a {}"}, {"index": 146, "image_id": 2397163, "entity": "boat", "caption": "the teddy bear is on a boat", "question": ["is there the teddy bear ?", "is there a boat ?"], "prompt": "the teddy bear is on a {}"}, {"index": 147, "image_id": 2397163, "entity": "boat", "caption": "the boat is on the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is on the water"}, {"index": 148, "image_id": 2397042, "entity": "boat", "caption": "The top of the boat is blue.", "question": ["is there the top ?", "is there the boat ?"], "prompt": "The top of the {} is blue."}, {"index": 149, "image_id": 2396771, "entity": "boat", "caption": "The boat has long wooden planks", "question": ["is there the boat ?", "are there long wooden planks ?"], "prompt": "The {} has long wooden planks"}, {"index": 150, "image_id": 2396771, "entity": "boat", "caption": "The boat is resting on grass", "question": ["is there the boat ?", "is there grass ?"], "prompt": "The {} is resting on grass"}, {"index": 151, "image_id": 2396668, "entity": "boat", "caption": "Life preservers on top of a boat", "question": ["are there life preservers ?", "is there top ?", "is there a boat ?"], "prompt": "Life preservers on top of a {}"}, {"index": 152, "image_id": 2396583, "entity": "boat", "caption": "Man drives duck boat.", "question": ["is there man ?", "is there duck boat ?"], "prompt": "Man drives duck {}."}, {"index": 153, "image_id": 2396583, "entity": "boat", "caption": "people are sitting in duck boat", "question": ["are there people ?", "is there duck boat ?"], "prompt": "people are sitting in duck {}"}, {"index": 154, "image_id": 2395255, "entity": "boat", "caption": "letter m on boat", "question": ["is there letter ?", "is there boat ?"], "prompt": "letter m on {}"}, {"index": 155, "image_id": 2395255, "entity": "boat", "caption": "Red life preserver on a boat", "question": ["is there red life preserver ?", "is there a boat ?"], "prompt": "Red life preserver on a {}"}, {"index": 156, "image_id": 2395255, "entity": "boat", "caption": "Water splashing up in front of a boat", "question": ["is there water ?", "is there front ?", "is there a boat ?"], "prompt": "Water splashing up in front of a {}"}, {"index": 157, "image_id": 2395073, "entity": "boat", "caption": "a woman sits on a boat", "question": ["is there a woman ?", "is there a boat ?"], "prompt": "a woman sits on a {}"}, {"index": 158, "image_id": 2393753, "entity": "boat", "caption": "speed boat creating ripples in water", "question": ["is there speed boat ?", "are there ripples ?", "is there water ?"], "prompt": "speed {} creating ripples in water"}, {"index": 159, "image_id": 2393753, "entity": "boat", "caption": "light green boat cover", "question": ["is there light green boat cover ?"], "prompt": "light green {} cover"}, {"index": 160, "image_id": 2393562, "entity": "boat", "caption": "The boat has many windows", "question": ["is there the boat ?", "are there many windows ?"], "prompt": "The {} has many windows"}, {"index": 161, "image_id": 2393150, "entity": "boat", "caption": "the boat is from los angeles", "question": ["is there the boat ?"], "prompt": "the {} is from los angeles"}, {"index": 162, "image_id": 2393150, "entity": "boat", "caption": "the boat number is 17", "question": ["is there the boat number ?"], "prompt": "the {} number is 17"}, {"index": 163, "image_id": 2393150, "entity": "boat", "caption": "the boat has a cabin", "question": ["is there the boat ?", "is there a cabin ?"], "prompt": "the {} has a cabin"}, {"index": 164, "image_id": 2393150, "entity": "boat", "caption": "Where the police boat is from", "question": ["is there the police boat ?"], "prompt": "Where the police {} is from"}, {"index": 165, "image_id": 2393150, "entity": "boat", "caption": "Police officer driving the boat", "question": ["is there police officer ?", "is there the boat ?"], "prompt": "Police officer driving the {}"}, {"index": 166, "image_id": 2392895, "entity": "boat", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "dog is on a {}"}, {"index": 167, "image_id": 2391231, "entity": "boat", "caption": "gas can inside orange and white boat", "question": ["is there gas ?", "is there orange and white boat ?"], "prompt": "gas can inside orange and white {}"}, {"index": 168, "image_id": 2391099, "entity": "boat", "caption": "flag painted on the boat", "question": ["is there flag ?", "is there the boat ?"], "prompt": "flag painted on the {}"}, {"index": 169, "image_id": 2391099, "entity": "boat", "caption": "achomraich is name on side of boat", "question": ["is there name ?", "is there side ?", "is there boat ?"], "prompt": "achomraich is name on side of {}"}, {"index": 170, "image_id": 2390472, "entity": "boat", "caption": "Metal chain coming off front of boat.", "question": ["is there metal chain ?", "is there front ?", "is there boat ?"], "prompt": "Metal chain coming off front of {}."}, {"index": 171, "image_id": 2390472, "entity": "boat", "caption": "Green leaves on branches near boat.", "question": ["are there green leaves ?", "are there branches ?", "is there boat ?"], "prompt": "Green leaves on branches near {}."}, {"index": 172, "image_id": 2390472, "entity": "boat", "caption": "Boat is blue next to green boat.", "question": ["is there boat ?", "is there green boat ?"], "prompt": "Boat is blue next to green {}."}, {"index": 173, "image_id": 2388743, "entity": "boat", "caption": "a boat that has a clear window.", "question": ["is there a boat ?", "is there a clear window ?"], "prompt": "a {} that has a clear window."}, {"index": 174, "image_id": 2388725, "entity": "boat", "caption": "the yellow painted outside of a boat", "question": ["is there the yellow ?", "is there a boat ?"], "prompt": "the yellow painted outside of a {}"}, {"index": 175, "image_id": 2388588, "entity": "boat", "caption": "boat has a white stripe", "question": ["is there boat ?", "is there a white stripe ?"], "prompt": "{} has a white stripe"}, {"index": 176, "image_id": 2388588, "entity": "boat", "caption": "anchor of the boat is black", "question": ["is there anchor ?", "is there the boat ?"], "prompt": "anchor of the {} is black"}, {"index": 177, "image_id": 2388588, "entity": "boat", "caption": "people are on the boat ", "question": ["are there people ?", "is there the boat ?"], "prompt": "people are on the {} "}, {"index": 178, "image_id": 2388309, "entity": "boat", "caption": "the man is steering the boat", "question": ["is there the man ?", "is there the boat ?"], "prompt": "the man is steering the {}"}, {"index": 179, "image_id": 2388309, "entity": "boat", "caption": "blue boat rules sign", "question": ["are there blue boat rules ?"], "prompt": "blue {} rules sign"}, {"index": 180, "image_id": 2388309, "entity": "boat", "caption": "boats wake in the water", "question": ["are there boats ?", "is there the water ?"], "prompt": "{}s wake in the water"}, {"index": 181, "image_id": 2387705, "entity": "boat", "caption": "mast of a boat is wood", "question": ["is there mast ?", "is there a boat ?", "is there wood ?"], "prompt": "mast of a {} is wood"}, {"index": 182, "image_id": 2387564, "entity": "boat", "caption": "life guard is in a boat ", "question": ["is there life guard ?", "is there a boat ?"], "prompt": "life guard is in a {} "}, {"index": 183, "image_id": 2387564, "entity": "boat", "caption": "woman stands in a boat", "question": ["is there woman ?", "is there a boat ?"], "prompt": "woman stands in a {}"}, {"index": 184, "image_id": 2387146, "entity": "boat", "caption": "a man stand on a boat", "question": ["is there a man ?", "is there a boat ?"], "prompt": "a man stand on a {}"}, {"index": 185, "image_id": 2387146, "entity": "boat", "caption": "A group of red boats docked at the shore", "question": ["is there a group ?", "are there red boats ?", "is there the shore ?"], "prompt": "A group of red {}s docked at the shore"}, {"index": 186, "image_id": 2387146, "entity": "boat", "caption": "Person standing on red boat.", "question": ["is there person ?", "is there red boat ?"], "prompt": "Person standing on red {}."}, {"index": 187, "image_id": 2387146, "entity": "boat", "caption": "Red boat sitting in water.", "question": ["is there red boat ?", "is there water ?"], "prompt": "Red {} sitting in water."}, {"index": 188, "image_id": 2387137, "entity": "boat", "caption": "the woman is on a boat", "question": ["is there the woman ?", "is there a boat ?"], "prompt": "the woman is on a {}"}, {"index": 189, "image_id": 2386500, "entity": "boat", "caption": "rope tied at front of boat", "question": ["is there rope ?", "is there front ?", "is there boat ?"], "prompt": "rope tied at front of {}"}, {"index": 190, "image_id": 2385578, "entity": "boat", "caption": "Hook and chain hoist above boat.", "question": ["is there hook ?", "is there chain ?", "is there hoist ?", "is there boat ?"], "prompt": "Hook and chain hoist above {}."}, {"index": 191, "image_id": 2384997, "entity": "boat", "caption": "metal crane attached to a boat", "question": ["is there metal crane ?", "is there a boat ?"], "prompt": "metal crane attached to a {}"}, {"index": 192, "image_id": 2384997, "entity": "boat", "caption": "Tower lift on back of boat", "question": ["is there tower ?", "is there back ?", "is there boat ?"], "prompt": "Tower lift on back of {}"}, {"index": 193, "image_id": 2384727, "entity": "boat", "caption": "red and black metal boat smoke stack", "question": ["is there red and black metal boat smoke ?"], "prompt": "red and black metal {} smoke stack"}, {"index": 194, "image_id": 2384036, "entity": "boat", "caption": "The boat moving in the water causing a wave.", "question": ["is there the boat ?", "is there the water ?", "is there a wave ?"], "prompt": "The {} moving in the water causing a wave."}, {"index": 195, "image_id": 2384036, "entity": "boat", "caption": "A search light mounted on a boat", "question": ["is there a search light ?", "is there a boat ?"], "prompt": "A search light mounted on a {}"}, {"index": 196, "image_id": 2384036, "entity": "boat", "caption": "A boat mounted bull horn", "question": ["is there a boat ?", "is there bull horn ?"], "prompt": "A {} mounted bull horn"}, {"index": 197, "image_id": 2383929, "entity": "boat", "caption": "SF3-3999 writing on boat", "question": ["is there boat ?"], "prompt": "SF3-3999 writing on {}"}, {"index": 198, "image_id": 2383555, "entity": "boat", "caption": "a wooden boat oar", "question": ["is there a wooden boat ?", "is there oar ?"], "prompt": "a wooden {} oar"}, {"index": 199, "image_id": 2383462, "entity": "boat", "caption": "The boat is on land", "question": ["is there the boat ?", "is there land ?"], "prompt": "The {} is on land"}, {"index": 200, "image_id": 2383399, "entity": "boat", "caption": "water the boat is in", "question": ["is there the boat ?"], "prompt": "water the {} is in"}, {"index": 201, "image_id": 2383399, "entity": "boat", "caption": "deck of the boat the couple is on", "question": ["is there deck ?", "is there the boat ?", "is there the couple ?"], "prompt": "deck of the {} the couple is on"}, {"index": 202, "image_id": 2383399, "entity": "boat", "caption": "two people are in boat.", "question": ["are there two people ?", "is there boat ?"], "prompt": "two people are in {}."}, {"index": 203, "image_id": 2383272, "entity": "boat", "caption": "MASEN written on the boat", "question": ["is there the boat ?"], "prompt": "MASEN written on the {}"}, {"index": 204, "image_id": 2383272, "entity": "boat", "caption": "door on the boat is wood slats", "question": ["is there door ?", "is there the boat ?", "are there wood slats ?"], "prompt": "door on the {} is wood slats"}, {"index": 205, "image_id": 2382463, "entity": "boat", "caption": "The boat has two sails", "question": ["is there the boat ?", "are there two sails ?"], "prompt": "The {} has two sails"}, {"index": 206, "image_id": 2382231, "entity": "boat", "caption": "the dog is on a boat", "question": ["is there the dog ?", "is there a boat ?"], "prompt": "the dog is on a {}"}, {"index": 207, "image_id": 2382219, "entity": "boat", "caption": "the inflatable boat is red ", "question": ["is there the inflatable boat ?"], "prompt": "the inflatable {} is red "}, {"index": 208, "image_id": 2382219, "entity": "boat", "caption": "Life saving boat is red color.", "question": ["is there life saving boat ?", "is there red color ?"], "prompt": "Life saving {} is red color."}, {"index": 209, "image_id": 2382219, "entity": "boat", "caption": "The man is driving the boat", "question": ["is there the man ?", "is there the boat ?"], "prompt": "The man is driving the {}"}, {"index": 210, "image_id": 2382219, "entity": "boat", "caption": "The boat has a brown and white seat", "question": ["is there the boat ?", "is there a brown and white seat ?"], "prompt": "The {} has a brown and white seat"}, {"index": 211, "image_id": 2382102, "entity": "boat", "caption": "Person is barefoot standing on edge of boat.", "question": ["is there person ?", "is there edge ?", "is there boat ?"], "prompt": "Person is barefoot standing on edge of {}."}, {"index": 212, "image_id": 2382102, "entity": "boat", "caption": "the man is on the side of the boat", "question": ["is there the man ?", "is there the side ?", "is there the boat ?"], "prompt": "the man is on the side of the {}"}, {"index": 213, "image_id": 2381922, "entity": "boat", "caption": "the boat has a shark", "question": ["is there the boat ?", "is there a shark ?"], "prompt": "the {} has a shark"}, {"index": 214, "image_id": 2381922, "entity": "boat", "caption": "the boat has people ", "question": ["is there the boat ?", "are there people ?"], "prompt": "the {} has people "}, {"index": 215, "image_id": 2381685, "entity": "boat", "caption": "small boat tied to another boat", "question": ["is there small boat ?", "is there another boat ?"], "prompt": "small {} tied to another {}"}, {"index": 216, "image_id": 2381433, "entity": "boat", "caption": "rope hanging on a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "rope hanging on a {}"}, {"index": 217, "image_id": 2381084, "entity": "boat", "caption": "Cushions on boat are white.", "question": ["are there cushions ?", "is there boat ?"], "prompt": "Cushions on {} are white."}, {"index": 218, "image_id": 2381084, "entity": "boat", "caption": "Dog is standing on back of boat.", "question": ["is there dog ?", "is there boat ?"], "prompt": "Dog is standing on back of {}."}, {"index": 219, "image_id": 2380882, "entity": "boat", "caption": "A woman sitting on a boat reading", "question": ["is there a woman ?", "is there a boat ?"], "prompt": "A woman sitting on a {} reading"}, {"index": 220, "image_id": 2380594, "entity": "boat", "caption": "the boat has two outboard motors", "question": ["is there the boat ?", "are there two outboard motors ?"], "prompt": "the {} has two outboard motors"}, {"index": 221, "image_id": 2380594, "entity": "boat", "caption": "the boat is in the water ", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 222, "image_id": 2379791, "entity": "boat", "caption": "boats docked along the shoreline", "question": ["are there boats ?", "is there the shoreline ?"], "prompt": "{}s docked along the shoreline"}, {"index": 223, "image_id": 2379774, "entity": "boat", "caption": "the body of water the boat is in", "question": ["is there the body ?", "is there water ?", "is there the boat ?"], "prompt": "the body of water the {} is in"}, {"index": 224, "image_id": 2379714, "entity": "boat", "caption": "boats say nice on them", "question": ["are there boats ?"], "prompt": "{}s say nice on them"}, {"index": 225, "image_id": 2379714, "entity": "boat", "caption": "boat with life preserver on it", "question": ["is there boat ?", "is there life preserver ?"], "prompt": "{} with life preserver on it"}, {"index": 226, "image_id": 2379714, "entity": "boat", "caption": "nets and lines hang off boat", "question": ["are there nets ?", "are there lines ?", "is there boat ?"], "prompt": "nets and lines hang off {}"}, {"index": 227, "image_id": 2379714, "entity": "boat", "caption": "tarp covers top of boat", "question": ["is there tarp ?", "is there top ?", "is there boat ?"], "prompt": "tarp covers top of {}"}, {"index": 228, "image_id": 2379714, "entity": "boat", "caption": "man sits on boat", "question": ["is there man ?", "is there boat ?"], "prompt": "man sits on {}"}, {"index": 229, "image_id": 2379714, "entity": "boat", "caption": "man standing beside a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man standing beside a {}"}, {"index": 230, "image_id": 2379304, "entity": "boat", "caption": "a boat is in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "a {} is in the water"}, {"index": 231, "image_id": 2378904, "entity": "boat", "caption": "three boats at a boat dock", "question": ["are there three boats ?", "is there a boat dock ?"], "prompt": "three {}s at a {} dock"}, {"index": 232, "image_id": 2378904, "entity": "boat", "caption": "the boat is on a boat lift", "question": ["is there the boat ?", "is there a boat lift ?"], "prompt": "the {} is on a {} lift"}, {"index": 233, "image_id": 2378904, "entity": "boat", "caption": "blue rope attached to the boat", "question": ["is there blue rope ?", "is there the boat ?"], "prompt": "blue rope attached to the {}"}, {"index": 234, "image_id": 2378904, "entity": "boat", "caption": "boat docked on pier", "question": ["is there boat ?", "is there pier ?"], "prompt": "{} docked on pier"}, {"index": 235, "image_id": 2378460, "entity": "boat", "caption": "Row is on the boat. ", "question": ["is there row ?", "is there the boat ?"], "prompt": "Row is on the {}. "}, {"index": 236, "image_id": 2378460, "entity": "boat", "caption": "fruit laid out neatly in the closest boat", "question": ["is there fruit ?", "is there the closest boat ?"], "prompt": "fruit laid out neatly in the closest {}"}, {"index": 237, "image_id": 2378110, "entity": "boat", "caption": "rope ties boat to dock", "question": [], "prompt": "rope ties {} to dock"}, {"index": 238, "image_id": 2378110, "entity": "boat", "caption": "A banner is on the back of the boat", "question": ["is there a banner ?", "is there the back ?", "is there the boat ?"], "prompt": "A banner is on the back of the {}"}, {"index": 239, "image_id": 2378110, "entity": "boat", "caption": "Buoys are hanging off the boat", "question": ["are there buoys ?", "is there the boat ?"], "prompt": "Buoys are hanging off the {}"}, {"index": 240, "image_id": 2377887, "entity": "boat", "caption": "the emergency boats are on the ship", "question": ["are there the emergency boats ?", "is there the ship ?"], "prompt": "the emergency {}s are on the ship"}, {"index": 241, "image_id": 2377380, "entity": "boat", "caption": "ropes suspended over boats", "question": ["are there ropes ?", "are there boats ?"], "prompt": "ropes suspended over {}s"}, {"index": 242, "image_id": 2377380, "entity": "boat", "caption": "tip of boat bow", "question": ["is there tip ?", "is there boat ?"], "prompt": "tip of {} bow"}, {"index": 243, "image_id": 2377380, "entity": "boat", "caption": "a boat docked on land.", "question": ["is there a boat ?", "is there land ?"], "prompt": "a {} docked on land."}, {"index": 244, "image_id": 2377083, "entity": "boat", "caption": "Cord coming out of back of paddle boat", "question": ["is there cord ?", "is there back ?", "is there paddle boat ?"], "prompt": "Cord coming out of back of paddle {}"}, {"index": 245, "image_id": 2376246, "entity": "boat", "caption": "small red boat docked in water ", "question": ["is there small red boat ?", "is there water ?"], "prompt": "small red {} docked in water "}, {"index": 246, "image_id": 2375980, "entity": "boat", "caption": "A sign is atop the boat", "question": ["is there a sign ?", "is there the boat ?"], "prompt": "A sign is atop the {}"}, {"index": 247, "image_id": 2375980, "entity": "boat", "caption": "house boat docked on river", "question": ["is there house boat ?", "is there river ?"], "prompt": "house {} docked on river"}, {"index": 248, "image_id": 2375980, "entity": "boat", "caption": "many bikes piled onto boat", "question": ["are there many bikes ?", "is there boat ?"], "prompt": "many bikes piled onto {}"}, {"index": 249, "image_id": 2375275, "entity": "boat", "caption": "rope to secure the boat", "question": ["is there the boat ?"], "prompt": "rope to secure the {}"}, {"index": 250, "image_id": 2375275, "entity": "boat", "caption": "the blue rope attached to the boat", "question": ["is there the blue rope ?", "is there the boat ?"], "prompt": "the blue rope attached to the {}"}, {"index": 251, "image_id": 2374451, "entity": "boat", "caption": "life boat hanging on a ship", "question": ["is there life boat ?", "is there a ship ?"], "prompt": "life {} hanging on a ship"}, {"index": 252, "image_id": 2374451, "entity": "boat", "caption": "wires that hold the life boat", "question": ["are there wires ?", "is there the life boat ?"], "prompt": "wires that hold the life {}"}, {"index": 253, "image_id": 2374088, "entity": "boat", "caption": "A rope attached to a boat", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "A rope attached to a {}"}, {"index": 254, "image_id": 2373499, "entity": "boat", "caption": "team of people rowing boat", "question": ["is there team ?", "are there people ?", "is there boat ?"], "prompt": "team of people rowing {}"}, {"index": 255, "image_id": 2373351, "entity": "boat", "caption": "Woman sitting at the back of a boat wearing a light blue shirt", "question": ["is there woman ?", "is there the back ?", "is there a boat ?", "is there a light blue shirt ?"], "prompt": "Woman sitting at the back of a {} wearing a light blue shirt"}, {"index": 256, "image_id": 2373351, "entity": "boat", "caption": "Frothy wake left behind in the water as a boat travels", "question": ["is there frothy wake ?", "is there the water ?", "is there a boat ?"], "prompt": "Frothy wake left behind in the water as a {} travels"}, {"index": 257, "image_id": 2373126, "entity": "boat", "caption": "white boats parked in dock", "question": ["are there white boats ?", "is there dock ?"], "prompt": "white {}s parked in dock"}, {"index": 258, "image_id": 2372837, "entity": "boat", "caption": "a boat docked in a harbor", "question": ["is there a boat ?", "is there a harbor ?"], "prompt": "a {} docked in a harbor"}, {"index": 259, "image_id": 2372480, "entity": "boat", "caption": "A boat docked under a tunnel.", "question": ["is there a boat ?", "is there a tunnel ?"], "prompt": "A {} docked under a tunnel."}, {"index": 260, "image_id": 2372480, "entity": "boat", "caption": "boat is in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is in water"}, {"index": 261, "image_id": 2372341, "entity": "boat", "caption": "Man with red hat leaning on boat", "question": ["is there man ?", "is there red hat ?", "is there boat ?"], "prompt": "Man with red hat leaning on {}"}, {"index": 262, "image_id": 2372106, "entity": "boat", "caption": "man is standing on the back of the boat", "question": ["is there man ?", "is there the back ?", "is there the boat ?"], "prompt": "man is standing on the back of the {}"}, {"index": 263, "image_id": 2371942, "entity": "boat", "caption": "Rope tied to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "Rope tied to {}"}, {"index": 264, "image_id": 2371644, "entity": "boat", "caption": "man standing on bow of boat", "question": ["is there man ?", "is there bow ?", "is there boat ?"], "prompt": "man standing on bow of {}"}, {"index": 265, "image_id": 2371644, "entity": "boat", "caption": "man standing at the hull of a boat", "question": ["is there man ?", "is there the hull ?", "is there a boat ?"], "prompt": "man standing at the hull of a {}"}, {"index": 266, "image_id": 2371288, "entity": "boat", "caption": "The birds are following the boat.", "question": ["are there the birds ?", "is there the boat ?"], "prompt": "The birds are following the {}."}, {"index": 267, "image_id": 2371288, "entity": "boat", "caption": "The people are standing on the boat.", "question": ["are there the people ?", "is there the boat ?"], "prompt": "The people are standing on the {}."}, {"index": 268, "image_id": 2371288, "entity": "boat", "caption": "birds flying around boat", "question": ["are there birds ?"], "prompt": "birds flying around {}"}, {"index": 269, "image_id": 2371288, "entity": "boat", "caption": "birds flying around shrimpers boat", "question": ["are there birds ?", "are there shrimpers ?"], "prompt": "birds flying around shrimpers {}"}, {"index": 270, "image_id": 2371288, "entity": "boat", "caption": "three men are visible on the boat", "question": ["are there three men ?", "is there the boat ?"], "prompt": "three men are visible on the {}"}, {"index": 271, "image_id": 2371288, "entity": "boat", "caption": "the boat has caused some waves in the water", "question": ["is there the boat ?", "are there some waves ?", "is there the water ?"], "prompt": "the {} has caused some waves in the water"}, {"index": 272, "image_id": 2371137, "entity": "boat", "caption": "The name says \" MAVIS\" on boat", "question": ["is there the name ?", "is there boat ?"], "prompt": "The name says \" MAVIS\" on {}"}, {"index": 273, "image_id": 2371004, "entity": "boat", "caption": "The sailboats all have tall masts", "question": ["are there the sailboats ?", "are there tall masts ?"], "prompt": "The sail{}s all have tall masts"}, {"index": 274, "image_id": 2370993, "entity": "boat", "caption": "boat has wooden floor", "question": ["is there boat ?", "is there wooden floor ?"], "prompt": "{} has wooden floor"}, {"index": 275, "image_id": 2370335, "entity": "boat", "caption": "MAMA written on side of boat", "question": ["is there mama ?", "is there side ?", "is there boat ?"], "prompt": "MAMA written on side of {}"}, {"index": 276, "image_id": 2370335, "entity": "boat", "caption": "boat is on a trailer", "question": ["is there boat ?", "is there a trailer ?"], "prompt": "{} is on a trailer"}, {"index": 277, "image_id": 2370335, "entity": "boat", "caption": "A boat is on a trailer", "question": ["is there a boat ?", "is there a trailer ?"], "prompt": "A {} is on a trailer"}, {"index": 278, "image_id": 2370335, "entity": "boat", "caption": "The boat is at somebody's home", "question": ["is there the boat ?", "is there somebody's home ?"], "prompt": "The {} is at somebody's home"}, {"index": 279, "image_id": 2369706, "entity": "boat", "caption": "boat docked at the harbor", "question": ["is there boat ?", "is there the harbor ?"], "prompt": "{} docked at the harbor"}, {"index": 280, "image_id": 2368857, "entity": "boat", "caption": "The boats have tall sails ", "question": ["are there the boats ?", "are there tall sails ?"], "prompt": "The {}s have tall sails "}, {"index": 281, "image_id": 2368689, "entity": "boat", "caption": "TGI painted on the side of the boat", "question": ["is there the side ?", "is there the boat ?"], "prompt": "TGI painted on the side of the {}"}, {"index": 282, "image_id": 2368436, "entity": "boat", "caption": "Bananas are in a boat", "question": ["are there bananas ?", "is there a boat ?"], "prompt": "Bananas are in a {}"}, {"index": 283, "image_id": 2368415, "entity": "boat", "caption": "dog that's standing on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "dog that's standing on a {}"}, {"index": 284, "image_id": 2368415, "entity": "boat", "caption": "water that boats are sitting in", "question": ["is there water ?", "are there boats ?"], "prompt": "water that {}s are sitting in"}, {"index": 285, "image_id": 2368415, "entity": "boat", "caption": "boat brown dog is standing on", "question": ["is there boat brown dog ?"], "prompt": "{} brown dog is standing on"}, {"index": 286, "image_id": 2368415, "entity": "boat", "caption": "metal loop hanging on boat", "question": ["is there metal loop ?", "is there boat ?"], "prompt": "metal loop hanging on {}"}, {"index": 287, "image_id": 2368054, "entity": "boat", "caption": "The dog feet is on the boat.", "question": ["are there the dog feet ?", "is there the boat ?"], "prompt": "The dog feet is on the {}."}, {"index": 288, "image_id": 2368009, "entity": "boat", "caption": "rope ties boat to the dock", "question": ["are there rope ties boat ?", "is there the dock ?"], "prompt": "rope ties {} to the dock"}, {"index": 289, "image_id": 2368009, "entity": "boat", "caption": "fire extinguishers on beard a boat", "question": ["are there fire extinguishers ?", "is there a boat ?"], "prompt": "fire extinguishers on beard a {}"}, {"index": 290, "image_id": 2367819, "entity": "boat", "caption": "two people are still on the boat", "question": ["are there two people ?", "is there the boat ?"], "prompt": "two people are still on the {}"}, {"index": 291, "image_id": 2367673, "entity": "boat", "caption": "a blue boat tied to a dock", "question": ["is there a blue boat ?", "is there a dock ?"], "prompt": "a blue {} tied to a dock"}, {"index": 292, "image_id": 2367673, "entity": "boat", "caption": "a white boat tied to a dock", "question": ["is there a white boat ?", "is there a dock ?"], "prompt": "a white {} tied to a dock"}, {"index": 293, "image_id": 2367655, "entity": "boat", "caption": "Blue and white boat floating in water", "question": ["is there blue and white boat ?", "is there water ?"], "prompt": "Blue and white {} floating in water"}, {"index": 294, "image_id": 2367655, "entity": "boat", "caption": "water pouring out the back of a boat.", "question": ["is there water ?", "is there the back ?", "is there a boat ?"], "prompt": "water pouring out the back of a {}."}, {"index": 295, "image_id": 2367579, "entity": "boat", "caption": "man driving a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man driving a {}"}, {"index": 296, "image_id": 2365612, "entity": "boat", "caption": "the bike is leaning on the boat ", "question": ["is there the bike ?", "is there the boat ?"], "prompt": "the bike is leaning on the {} "}, {"index": 297, "image_id": 2365530, "entity": "boat", "caption": "The white lettering of the word WAVE on the boat. ", "question": ["is there the white lettering ?", "is there the word wave ?", "is there the boat ?"], "prompt": "The white lettering of the word WAVE on the {}. "}, {"index": 298, "image_id": 2365530, "entity": "boat", "caption": "Grey hair on a man bent over the boat. ", "question": ["is there grey hair ?", "is there a man ?", "is there the boat ?"], "prompt": "Grey hair on a man bent over the {}. "}, {"index": 299, "image_id": 2365530, "entity": "boat", "caption": "The black and white side of a boat that says NEXT WAVE", "question": ["is there the black and white side ?", "is there a boat ?"], "prompt": "The black and white side of a {} that says NEXT WAVE"}, {"index": 300, "image_id": 2365530, "entity": "boat", "caption": "The boat says \"Next wave\"", "question": ["is there the boat ?", "is there next wave ?"], "prompt": "The {} says \"Next wave\""}, {"index": 301, "image_id": 2365530, "entity": "boat", "caption": "A rolled up mast on the boat", "question": ["is there a rolled up mast ?", "is there the boat ?"], "prompt": "A rolled up mast on the {}"}, {"index": 302, "image_id": 2365310, "entity": "boat", "caption": "lorries packed near the boats", "question": ["are there lorries ?", "are there the boats ?"], "prompt": "lorries packed near the {}s"}, {"index": 303, "image_id": 2365007, "entity": "boat", "caption": "water where boats are docks", "question": ["is there water ?", "are there boats ?", "are there docks ?"], "prompt": "water where {}s are docks"}, {"index": 304, "image_id": 2364291, "entity": "boat", "caption": "the tire is on the boat", "question": ["is there the tire ?", "is there the boat ?"], "prompt": "the tire is on the {}"}, {"index": 305, "image_id": 2364078, "entity": "boat", "caption": "White chain round a boat", "question": ["is there a boat ?"], "prompt": "White chain round a {}"}, {"index": 306, "image_id": 2364078, "entity": "boat", "caption": "The sailboat has a tall mast.", "question": ["is there the sailboat ?", "is there a tall mast ?"], "prompt": "The sail{} has a tall mast."}, {"index": 307, "image_id": 2364078, "entity": "boat", "caption": "A boat is moving in the water behind the boat.", "question": ["is there a boat ?", "is there the water ?", "is there the boat ?"], "prompt": "A {} is moving in the water behind the {}."}, {"index": 308, "image_id": 2362967, "entity": "boat", "caption": "a boat tied to shore", "question": ["is there a boat ?", "is there shore ?"], "prompt": "a {} tied to shore"}, {"index": 309, "image_id": 2362967, "entity": "boat", "caption": "boat docked on river", "question": ["is there boat ?", "is there river ?"], "prompt": "{} docked on river"}, {"index": 310, "image_id": 2362967, "entity": "boat", "caption": "ther boat is white in color ", "question": ["is there ther boat ?", "is there color ?"], "prompt": "ther {} is white in color "}, {"index": 311, "image_id": 2362967, "entity": "boat", "caption": "the boat is white in color", "question": ["is there the boat ?", "is there color ?"], "prompt": "the {} is white in color"}, {"index": 312, "image_id": 2362871, "entity": "boat", "caption": "blue boat hanging on side of ship", "question": ["is there blue boat ?", "is there side ?", "is there ship ?"], "prompt": "blue {} hanging on side of ship"}, {"index": 313, "image_id": 2362329, "entity": "boat", "caption": "front end of boat opened up", "question": ["is there front end ?", "is there boat ?"], "prompt": "front end of {} opened up"}, {"index": 314, "image_id": 2362280, "entity": "boat", "caption": "name of boat painted in white", "question": ["is there name ?", "is there boat ?", "is there white ?"], "prompt": "name of {} painted in white"}, {"index": 315, "image_id": 2362280, "entity": "boat", "caption": "two black rubber tires mounted on boat", "question": ["are there two black rubber tires ?", "is there boat ?"], "prompt": "two black rubber tires mounted on {}"}, {"index": 316, "image_id": 2362246, "entity": "boat", "caption": "a river with a lot of boats docked in it", "question": ["is there a river ?", "is there a lot ?", "are there boats ?"], "prompt": "a river with a lot of {}s docked in it"}, {"index": 317, "image_id": 2362239, "entity": "boat", "caption": "Man kneeling down on boat. ", "question": ["is there man ?", "is there boat ?"], "prompt": "Man kneeling down on {}. "}, {"index": 318, "image_id": 2361892, "entity": "boat", "caption": "the lady is in a boat", "question": ["is there the lady ?", "is there a boat ?"], "prompt": "the lady is in a {}"}, {"index": 319, "image_id": 2361892, "entity": "boat", "caption": "small boat sailing on water", "question": ["is there small boat ?", "is there water ?"], "prompt": "small {} sailing on water"}, {"index": 320, "image_id": 2361742, "entity": "boat", "caption": "Rope attached to front of boat", "question": ["is there rope ?", "is there front ?", "is there boat ?"], "prompt": "Rope attached to front of {}"}, {"index": 321, "image_id": 2361562, "entity": "boat", "caption": "the cat is on the boat", "question": ["is there the cat ?", "is there the boat ?"], "prompt": "the cat is on the {}"}, {"index": 322, "image_id": 2361562, "entity": "boat", "caption": "the boat is at a port", "question": ["is there the boat ?", "is there a port ?"], "prompt": "the {} is at a port"}, {"index": 323, "image_id": 2361562, "entity": "boat", "caption": "the cat stands on the boat", "question": ["is there the cat ?", "is there the boat ?"], "prompt": "the cat stands on the {}"}, {"index": 324, "image_id": 2361562, "entity": "boat", "caption": "Cat is standing on back of boat.", "question": ["is there cat ?", "is there boat ?"], "prompt": "Cat is standing on back of {}."}, {"index": 325, "image_id": 2361562, "entity": "boat", "caption": "boat capsized in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} capsized in water"}, {"index": 326, "image_id": 2361536, "entity": "boat", "caption": "cows are near a boat", "question": ["are there cows ?", "is there a boat ?"], "prompt": "cows are near a {}"}, {"index": 327, "image_id": 2361359, "entity": "boat", "caption": "A motor is on the boat", "question": ["is there a motor ?", "is there the boat ?"], "prompt": "A motor is on the {}"}, {"index": 328, "image_id": 2359602, "entity": "boat", "caption": "A log is keeping the boat off the ground.", "question": ["is there a log ?", "is there the boat ?", "is there the ground ?"], "prompt": "A log is keeping the {} off the ground."}, {"index": 329, "image_id": 2359008, "entity": "boat", "caption": "Sail boat docked at marina.", "question": ["is there sail boat ?", "is there marina ?"], "prompt": "Sail {} docked at marina."}, {"index": 330, "image_id": 2359008, "entity": "boat", "caption": "White sail boat docked in water.", "question": ["is there white sail boat ?", "is there water ?"], "prompt": "White sail {} docked in water."}, {"index": 331, "image_id": 2358936, "entity": "boat", "caption": "a dog is on the boat", "question": ["is there a dog ?", "is there the boat ?"], "prompt": "a dog is on the {}"}, {"index": 332, "image_id": 2358604, "entity": "boat", "caption": "people are on the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "people are on the {}"}, {"index": 333, "image_id": 2357802, "entity": "boat", "caption": "The people are on a boat on a lake", "question": ["are there the people ?", "is there a boat ?", "is there a lake ?"], "prompt": "The people are on a {} on a lake"}, {"index": 334, "image_id": 2357398, "entity": "boat", "caption": "two woman walking on a boat", "question": ["is there two woman ?", "is there a boat ?"], "prompt": "two woman walking on a {}"}, {"index": 335, "image_id": 2357398, "entity": "boat", "caption": "the top of the boat is wood", "question": ["is there the top ?", "is there the boat ?", "is there wood ?"], "prompt": "the top of the {} is wood"}, {"index": 336, "image_id": 2357118, "entity": "boat", "caption": "Person sitting inside of boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person sitting inside of {}."}, {"index": 337, "image_id": 2357118, "entity": "boat", "caption": "the sun is on the boat", "question": ["is there the sun ?", "is there the boat ?"], "prompt": "the sun is on the {}"}, {"index": 338, "image_id": 2355707, "entity": "boat", "caption": "The boat has 3 windows", "question": ["is there the boat ?", "are there 3 windows ?"], "prompt": "The {} has 3 windows"}, {"index": 339, "image_id": 2355505, "entity": "boat", "caption": "Box on a boat oar", "question": ["is there a boat ?"], "prompt": "Box on a {} oar"}, {"index": 340, "image_id": 2355505, "entity": "boat", "caption": "Flag hanging from a boat.", "question": ["is there flag ?", "is there a boat ?"], "prompt": "Flag hanging from a {}."}, {"index": 341, "image_id": 2355361, "entity": "boat", "caption": "two triangle shaped white sails on sailboat", "question": ["is there two triangle ?", "are there white sails ?", "is there sailboat ?"], "prompt": "two triangle shaped white sails on sail{}"}, {"index": 342, "image_id": 2355027, "entity": "boat", "caption": "boat pulled up to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled up to dock"}, {"index": 343, "image_id": 2355027, "entity": "boat", "caption": "boat has flagpole on back", "question": ["is there boat ?", "is there flagpole ?"], "prompt": "{} has flagpole on back"}, {"index": 344, "image_id": 2355027, "entity": "boat", "caption": "flag stuck into a boat", "question": ["is there flag ?", "is there a boat ?"], "prompt": "flag stuck into a {}"}, {"index": 345, "image_id": 2354959, "entity": "boat", "caption": "green moss growing on the side of the boat", "question": ["is there green moss ?", "is there the side ?", "is there the boat ?"], "prompt": "green moss growing on the side of the {}"}, {"index": 346, "image_id": 2354939, "entity": "boat", "caption": "the sailboat is white", "question": ["is there the sailboat ?"], "prompt": "the sail{} is white"}, {"index": 347, "image_id": 2354939, "entity": "boat", "caption": "a small boat sailing", "question": ["is there a small boat ?"], "prompt": "a small {} sailing"}, {"index": 348, "image_id": 2354714, "entity": "boat", "caption": "The life preserver on the front of the boat.", "question": ["is there the life preserver ?", "is there the front ?", "is there the boat ?"], "prompt": "The life preserver on the front of the {}."}, {"index": 349, "image_id": 2354714, "entity": "boat", "caption": "this is a boat ", "question": ["is there a boat ?"], "prompt": "this is a {} "}, {"index": 350, "image_id": 2354714, "entity": "boat", "caption": "waves stirred up by white boat", "question": ["are there waves ?", "is there white boat ?"], "prompt": "waves stirred up by white {}"}, {"index": 351, "image_id": 2354714, "entity": "boat", "caption": "red and white flag waving on boat", "question": ["is there red and white flag ?", "is there boat ?"], "prompt": "red and white flag waving on {}"}, {"index": 352, "image_id": 2354714, "entity": "boat", "caption": "tan rope hanging on rail of boat", "question": ["is there rail ?", "is there boat ?"], "prompt": "tan rope hanging on rail of {}"}, {"index": 353, "image_id": 2354458, "entity": "boat", "caption": "Tire hanging from boat", "question": ["is there tire ?", "is there boat ?"], "prompt": "Tire hanging from {}"}, {"index": 354, "image_id": 2354458, "entity": "boat", "caption": "Silva Lopes is the name of boat", "question": ["are there silva lopes ?", "is there the name ?", "is there boat ?"], "prompt": "Silva Lopes is the name of {}"}, {"index": 355, "image_id": 2354402, "entity": "boat", "caption": "woman sitting on boat bow", "question": ["is there woman ?", "is there boat bow ?"], "prompt": "woman sitting on {} bow"}, {"index": 356, "image_id": 2354402, "entity": "boat", "caption": "Person is barefoot on boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person is barefoot on {}."}, {"index": 357, "image_id": 2354402, "entity": "boat", "caption": "Person sitting on boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person sitting on {}."}, {"index": 358, "image_id": 2354402, "entity": "boat", "caption": "Wood boat floating in water.", "question": ["is there wood boat ?", "is there water ?"], "prompt": "Wood {} floating in water."}, {"index": 359, "image_id": 2354178, "entity": "boat", "caption": "a flag is on the boat", "question": ["is there a flag ?", "is there the boat ?"], "prompt": "a flag is on the {}"}, {"index": 360, "image_id": 2354178, "entity": "boat", "caption": "a small boat is on the water", "question": ["is there a small boat ?", "is there the water ?"], "prompt": "a small {} is on the water"}, {"index": 361, "image_id": 2354178, "entity": "boat", "caption": "people standing close to the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "people standing close to the {}"}, {"index": 362, "image_id": 2354017, "entity": "boat", "caption": "The rolled up sail of the boat.", "question": ["is there the rolled up sail ?", "is there the boat ?"], "prompt": "The rolled up sail of the {}."}, {"index": 363, "image_id": 2353866, "entity": "boat", "caption": "boat pulled at dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled at dock"}, {"index": 364, "image_id": 2353866, "entity": "boat", "caption": "boat has overhead tent", "question": ["is there boat ?", "is there overhead tent ?"], "prompt": "{} has overhead tent"}, {"index": 365, "image_id": 2353358, "entity": "boat", "caption": "red life save on boat", "question": ["is there red life ?", "is there boat ?"], "prompt": "red life save on {}"}, {"index": 366, "image_id": 2353358, "entity": "boat", "caption": "rope hanging from boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope hanging from {}"}, {"index": 367, "image_id": 2353358, "entity": "boat", "caption": "rope attached to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope attached to {}"}, {"index": 368, "image_id": 2353153, "entity": "boat", "caption": "the boat has a red covering", "question": ["is there the boat ?", "is there a red covering ?"], "prompt": "the {} has a red covering"}, {"index": 369, "image_id": 2352684, "entity": "boat", "caption": "metal post and boat reflected in the water", "question": ["is there metal post ?", "is there boat ?", "is there the water ?"], "prompt": "metal post and {} reflected in the water"}, {"index": 370, "image_id": 2352424, "entity": "boat", "caption": "yellow mast stick up out of a boat", "question": ["is there yellow mast ?", "is there a boat ?"], "prompt": "yellow mast stick up out of a {}"}, {"index": 371, "image_id": 2351791, "entity": "boat", "caption": "The man and woman are in a boat.", "question": ["is there the man ?", "is there woman ?", "is there a boat ?"], "prompt": "The man and woman are in a {}."}, {"index": 372, "image_id": 2351791, "entity": "boat", "caption": "Woman sitting on boat.", "question": ["is there woman ?", "is there boat ?"], "prompt": "Woman sitting on {}."}, {"index": 373, "image_id": 2351791, "entity": "boat", "caption": "handle of a boat oar", "question": ["is there handle ?", "is there a boat ?"], "prompt": "handle of a {} oar"}, {"index": 374, "image_id": 2351188, "entity": "boat", "caption": "People stand next to the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "People stand next to the {}"}, {"index": 375, "image_id": 2351188, "entity": "boat", "caption": "Bicycles are on the boat", "question": ["are there bicycles ?", "is there the boat ?"], "prompt": "Bicycles are on the {}"}, {"index": 376, "image_id": 2351016, "entity": "boat", "caption": "boat is floating in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is floating in water"}, {"index": 377, "image_id": 2351016, "entity": "boat", "caption": "rope tied to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope tied to {}"}, {"index": 378, "image_id": 2350876, "entity": "boat", "caption": "the rope hanging off of the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "the rope hanging off of the {}"}, {"index": 379, "image_id": 2350876, "entity": "boat", "caption": "boat docked on shore ", "question": ["is there boat ?", "is there shore ?"], "prompt": "{} docked on shore "}, {"index": 380, "image_id": 2350876, "entity": "boat", "caption": "red rope attached to boat ", "question": ["is there red rope ?", "is there boat ?"], "prompt": "red rope attached to {} "}, {"index": 381, "image_id": 2350876, "entity": "boat", "caption": "rope attached to boat ", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope attached to {} "}, {"index": 382, "image_id": 2350779, "entity": "boat", "caption": "rope tied to a small boat", "question": ["is there rope ?", "is there a small boat ?"], "prompt": "rope tied to a small {}"}, {"index": 383, "image_id": 2350779, "entity": "boat", "caption": "a floating tire mounted on boat", "question": ["is there a floating tire ?", "is there boat ?"], "prompt": "a floating tire mounted on {}"}, {"index": 384, "image_id": 2350779, "entity": "boat", "caption": "two boats mounted by a rope", "question": ["are there two boats ?", "is there a rope ?"], "prompt": "two {}s mounted by a rope"}, {"index": 385, "image_id": 2350779, "entity": "boat", "caption": "rope holding two boats", "question": ["is there rope ?", "are there two boats ?"], "prompt": "rope holding two {}s"}, {"index": 386, "image_id": 2350304, "entity": "boat", "caption": "A boat that has a lot of books on it. ", "question": ["is there a boat ?", "is there a lot ?", "are there books ?"], "prompt": "A {} that has a lot of books on it. "}, {"index": 387, "image_id": 2349748, "entity": "boat", "caption": "Man drivng a boat.", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man drivng a {}."}, {"index": 388, "image_id": 2349748, "entity": "boat", "caption": "Woman standing in the boat.", "question": ["is there woman ?", "is there the boat ?"], "prompt": "Woman standing in the {}."}, {"index": 389, "image_id": 2349440, "entity": "boat", "caption": "American flag hanging from the boat", "question": ["is there american flag ?", "is there the boat ?"], "prompt": "American flag hanging from the {}"}, {"index": 390, "image_id": 2349440, "entity": "boat", "caption": "The boat has a yellow logo on it ", "question": ["is there the boat ?", "is there a yellow logo ?"], "prompt": "The {} has a yellow logo on it "}, {"index": 391, "image_id": 2348095, "entity": "boat", "caption": "red rope budled on the boat", "question": ["is there red rope ?", "is there the boat ?"], "prompt": "red rope budled on the {}"}, {"index": 392, "image_id": 2348078, "entity": "boat", "caption": "the people are standing beside a boat", "question": ["are there the people ?", "is there a boat ?"], "prompt": "the people are standing beside a {}"}, {"index": 393, "image_id": 2347906, "entity": "boat", "caption": "boat pulled to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled to dock"}, {"index": 394, "image_id": 2347681, "entity": "boat", "caption": "the can next to the boat", "question": ["is there the boat ?"], "prompt": "the can next to the {}"}, {"index": 395, "image_id": 2347233, "entity": "boat", "caption": "the rope tied to the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "the rope tied to the {}"}, {"index": 396, "image_id": 2346193, "entity": "boat", "caption": "top of boat is white", "question": ["is there top ?", "is there boat ?"], "prompt": "top of {} is white"}, {"index": 397, "image_id": 2345781, "entity": "boat", "caption": "A thick rope attached to a boat", "question": ["is there a thick rope ?", "is there a boat ?"], "prompt": "A thick rope attached to a {}"}, {"index": 398, "image_id": 2345781, "entity": "boat", "caption": "boat is in the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is in the water"}, {"index": 399, "image_id": 2345272, "entity": "boat", "caption": "2 black dogs are on the boat", "question": ["are there 2 black dogs ?", "is there the boat ?"], "prompt": "2 black dogs are on the {}"}, {"index": 400, "image_id": 2345272, "entity": "boat", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the {} holding a dog with a leash"}, {"index": 401, "image_id": 2345019, "entity": "boat", "caption": "The man is standing in the boat.", "question": ["is there the man ?", "is there the boat ?"], "prompt": "The man is standing in the {}."}, {"index": 402, "image_id": 2344745, "entity": "boat", "caption": "Woman dumping water out of boat", "question": ["is there woman ?", "is there water ?", "is there boat ?"], "prompt": "Woman dumping water out of {}"}, {"index": 403, "image_id": 2344677, "entity": "boat", "caption": "An owner holding her dog over the boat so it can have a view of the water.", "question": ["is there an owner ?", "is there her dog ?", "is there the boat ?", "is there a view ?", "is there the water ?"], "prompt": "An owner holding her dog over the {} so it can have a view of the water."}, {"index": 404, "image_id": 2344627, "entity": "boat", "caption": "a boat is by the dock", "question": ["is there a boat ?", "is there the dock ?"], "prompt": "a {} is by the dock"}, {"index": 405, "image_id": 2344618, "entity": "boat", "caption": "a boat dock on the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "a {} dock on the water"}, {"index": 406, "image_id": 2343974, "entity": "boat", "caption": "tires attached to boat are black", "question": ["are there tires ?", "is there boat ?"], "prompt": "tires attached to {} are black"}, {"index": 407, "image_id": 2343968, "entity": "boat", "caption": "the boats are in water ", "question": ["are there the boats ?", "is there water ?"], "prompt": "the {}s are in water "}, {"index": 408, "image_id": 2343968, "entity": "boat", "caption": "the buskets are in the boat ", "question": ["are there the buskets ?", "is there the boat ?"], "prompt": "the buskets are in the {} "}, {"index": 409, "image_id": 2343968, "entity": "boat", "caption": "The kid on the large boat that is sitting down.", "question": ["is there the kid ?", "is there the large boat ?"], "prompt": "The kid on the large {} that is sitting down."}, {"index": 410, "image_id": 2343968, "entity": "boat", "caption": "The long boat the two kids are on.", "question": ["is there the long boat ?", "are there the two kids ?"], "prompt": "The long {} the two kids are on."}, {"index": 411, "image_id": 2343749, "entity": "boat", "caption": "boat docked at the shore", "question": ["is there boat ?", "is there the shore ?"], "prompt": "{} docked at the shore"}, {"index": 412, "image_id": 2343527, "entity": "boat", "caption": "water splashing on back of boat ", "question": ["is there back ?", "is there boat ?"], "prompt": "water splashing on back of {} "}, {"index": 413, "image_id": 2343527, "entity": "boat", "caption": "rudder is on the back of the boat", "question": ["is there rudder ?", "is there the back ?", "is there the boat ?"], "prompt": "rudder is on the back of the {}"}, {"index": 414, "image_id": 2343527, "entity": "boat", "caption": "a rubber tire is hanging on the side of the boat", "question": ["is there a rubber tire ?", "is there the side ?", "is there the boat ?"], "prompt": "a rubber tire is hanging on the side of the {}"}, {"index": 415, "image_id": 2343527, "entity": "boat", "caption": "a white cross is on the top of the boat", "question": ["is there the top ?", "is there the boat ?"], "prompt": "a white cross is on the top of the {}"}, {"index": 416, "image_id": 2343527, "entity": "boat", "caption": "a person is standing on the back of the boat", "question": ["is there a person ?", "is there the back ?", "is there the boat ?"], "prompt": "a person is standing on the back of the {}"}, {"index": 417, "image_id": 2342814, "entity": "boat", "caption": "two handles are on the back of the boat", "question": ["are there two handles ?", "is there the back ?", "is there the boat ?"], "prompt": "two handles are on the back of the {}"}, {"index": 418, "image_id": 2342814, "entity": "boat", "caption": "a blue box is on the boat", "question": ["is there a blue box ?", "is there the boat ?"], "prompt": "a blue box is on the {}"}, {"index": 419, "image_id": 2342814, "entity": "boat", "caption": "a first aid kit is on the boat", "question": ["is there a first aid kit ?", "is there the boat ?"], "prompt": "a first aid kit is on the {}"}, {"index": 420, "image_id": 2342814, "entity": "boat", "caption": "the boat has silver handles", "question": ["is there the boat ?", "are there silver handles ?"], "prompt": "the {} has silver handles"}, {"index": 421, "image_id": 2342814, "entity": "boat", "caption": "a white box is on the boat", "question": ["is there the boat ?"], "prompt": "a white box is on the {}"}, {"index": 422, "image_id": 2342814, "entity": "boat", "caption": "white handles are on the boat", "question": ["are there white handles ?", "is there the boat ?"], "prompt": "white handles are on the {}"}, {"index": 423, "image_id": 2342338, "entity": "boat", "caption": "man stands in a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man stands in a {}"}, {"index": 424, "image_id": 2342338, "entity": "boat", "caption": "they are sitting in the boat", "question": ["is there the boat ?"], "prompt": "they are sitting in the {}"}, {"index": 425, "image_id": 2341913, "entity": "boat", "caption": "boat is moving in the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is moving in the water"}, {"index": 426, "image_id": 2341403, "entity": "boat", "caption": "The boat has a red stripe.", "question": ["is there the boat ?", "is there a red stripe ?"], "prompt": "The {} has a red stripe."}, {"index": 427, "image_id": 2341403, "entity": "boat", "caption": "The boat has a red and green stripe.", "question": ["is there the boat ?", "is there a red and green stripe ?"], "prompt": "The {} has a red and green stripe."}, {"index": 428, "image_id": 2341403, "entity": "boat", "caption": "the boat is on sand", "question": ["is there the boat ?", "is there sand ?"], "prompt": "the {} is on sand"}, {"index": 429, "image_id": 2341403, "entity": "boat", "caption": "rope wound around the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope wound around the {}"}, {"index": 430, "image_id": 2341403, "entity": "boat", "caption": "the boat has a red stripe", "question": ["is there the boat ?", "is there a red stripe ?"], "prompt": "the {} has a red stripe"}, {"index": 431, "image_id": 2341403, "entity": "boat", "caption": "rope tied around the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied around the {}"}, {"index": 432, "image_id": 2341358, "entity": "boat", "caption": "the man is in a boat ", "question": ["is there the man ?", "is there a boat ?"], "prompt": "the man is in a {} "}, {"index": 433, "image_id": 2341331, "entity": "boat", "caption": "the boat has an inboard engine", "question": ["is there the boat ?", "is there an inboard engine ?"], "prompt": "the {} has an inboard engine"}, {"index": 434, "image_id": 2341331, "entity": "boat", "caption": "the steering wheel is in the boat", "question": ["is there the steering wheel ?", "is there the boat ?"], "prompt": "the steering wheel is in the {}"}, {"index": 435, "image_id": 2341331, "entity": "boat", "caption": "windows are on the boat", "question": ["are there windows ?", "is there the boat ?"], "prompt": "windows are on the {}"}, {"index": 436, "image_id": 2341331, "entity": "boat", "caption": "rope tied to the front of the boat", "question": ["is there rope ?", "is there the front ?", "is there the boat ?"], "prompt": "rope tied to the front of the {}"}, {"index": 437, "image_id": 2341331, "entity": "boat", "caption": "rope tied to back of the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied to back of the {}"}, {"index": 438, "image_id": 2340730, "entity": "boat", "caption": "hatches are on the bow of the boat", "question": ["are there hatches ?", "is there the bow ?", "is there the boat ?"], "prompt": "hatches are on the bow of the {}"}, {"index": 439, "image_id": 2339716, "entity": "boat", "caption": "Person in the background is standing on a boat", "question": ["is there person ?", "is there the background ?", "is there a boat ?"], "prompt": "Person in the background is standing on a {}"}, {"index": 440, "image_id": 2335633, "entity": "boat", "caption": "The family is safe on a boat", "question": ["is there the family ?", "is there a boat ?"], "prompt": "The family is safe on a {}"}, {"index": 441, "image_id": 2335557, "entity": "boat", "caption": "A boat is floating in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "A {} is floating in the water"}, {"index": 442, "image_id": 2335557, "entity": "boat", "caption": "A boat is carrying many people", "question": ["is there a boat ?", "are there many people ?"], "prompt": "A {} is carrying many people"}, {"index": 443, "image_id": 2335513, "entity": "boat", "caption": "dark water the boat is on", "question": ["is there dark water ?", "is there the boat ?"], "prompt": "dark water the {} is on"}, {"index": 444, "image_id": 2335383, "entity": "boat", "caption": "one old boat stuck on beach", "question": ["is there one old boat ?", "is there beach ?"], "prompt": "one old {} stuck on beach"}, {"index": 445, "image_id": 2335383, "entity": "boat", "caption": "Rope hanging from the bottom of a boat", "question": ["is there rope ?", "is there the bottom ?", "is there a boat ?"], "prompt": "Rope hanging from the bottom of a {}"}, {"index": 446, "image_id": 2335383, "entity": "boat", "caption": "A boat is sitting on a lot", "question": ["is there a boat ?", "is there a lot ?"], "prompt": "A {} is sitting on a lot"}, {"index": 447, "image_id": 2335383, "entity": "boat", "caption": "The boat is casting a shadow", "question": ["is there the boat ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow"}, {"index": 448, "image_id": 2335383, "entity": "boat", "caption": "The boat is close to the ocean", "question": ["is there the boat ?", "is there the ocean ?"], "prompt": "The {} is close to the ocean"}, {"index": 449, "image_id": 2335220, "entity": "boat", "caption": "small boat parked next to a dock", "question": ["is there small boat ?", "is there a dock ?"], "prompt": "small {} parked next to a dock"}, {"index": 450, "image_id": 2335207, "entity": "boat", "caption": "The boat has many windows.", "question": ["is there the boat ?", "are there many windows ?"], "prompt": "The {} has many windows."}, {"index": 451, "image_id": 2335104, "entity": "boat", "caption": "the dog is on the boat", "question": ["is there the dog ?", "is there the boat ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2335104, "entity": "boat", "caption": "a pillow is in on the boat", "question": ["is there a pillow ?", "is there the boat ?"], "prompt": "a pillow is in on the {}"}, {"index": 453, "image_id": 2334367, "entity": "boat", "caption": "The dog is on the boat ", "question": ["is there the dog ?", "is there the boat ?"], "prompt": "The dog is on the {} "}, {"index": 454, "image_id": 2334367, "entity": "boat", "caption": "Bubbley wake of the boat", "question": ["is there bubbley wake ?", "is there the boat ?"], "prompt": "Bubbley wake of the {}"}, {"index": 455, "image_id": 2334187, "entity": "boat", "caption": "the boat has pigeons", "question": ["is there the boat ?", "are there pigeons ?"], "prompt": "the {} has pigeons"}, {"index": 456, "image_id": 2334187, "entity": "boat", "caption": "the oars are in the boat", "question": ["are there the oars ?", "is there the boat ?"], "prompt": "the oars are in the {}"}, {"index": 457, "image_id": 2334187, "entity": "boat", "caption": "the boat has rope trim", "question": ["is there the boat ?", "is there rope ?"], "prompt": "the {} has rope trim"}, {"index": 458, "image_id": 2333973, "entity": "boat", "caption": "a silver oar to row a boat", "question": ["is there a silver oar ?", "is there a boat ?"], "prompt": "a silver oar to row a {}"}, {"index": 459, "image_id": 2333973, "entity": "boat", "caption": "Blue writing us out of the white boats", "question": ["are there the white boats ?"], "prompt": "Blue writing us out of the white {}s"}, {"index": 460, "image_id": 2333538, "entity": "boat", "caption": "a bridge connects to the boat", "question": ["is there a bridge ?", "is there the boat ?"], "prompt": "a bridge connects to the {}"}, {"index": 461, "image_id": 2332476, "entity": "boat", "caption": "boat carries three humans", "question": ["is there boat ?", "are there three humans ?"], "prompt": "{} carries three humans"}, {"index": 462, "image_id": 2332476, "entity": "boat", "caption": "life preserver attached to boat", "question": ["is there life preserver ?", "is there boat ?"], "prompt": "life preserver attached to {}"}, {"index": 463, "image_id": 2332444, "entity": "boat", "caption": "rope going down from the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope going down from the {}"}, {"index": 464, "image_id": 2331968, "entity": "boat", "caption": "man steering white boat", "question": ["is there man ?", "is there white boat ?"], "prompt": "man steering white {}"}, {"index": 465, "image_id": 2331968, "entity": "boat", "caption": "white rope attached to boat", "question": ["is there boat ?"], "prompt": "white rope attached to {}"}, {"index": 466, "image_id": 2331586, "entity": "boat", "caption": "the boat is tipping", "question": ["is there the boat ?"], "prompt": "the {} is tipping"}, {"index": 467, "image_id": 2330347, "entity": "boat", "caption": "The lady is sitting in the boat.", "question": ["is there the lady ?", "is there the boat ?"], "prompt": "The lady is sitting in the {}."}, {"index": 468, "image_id": 2330347, "entity": "boat", "caption": "People are on the boat.", "question": ["are there people ?", "is there the boat ?"], "prompt": "People are on the {}."}, {"index": 469, "image_id": 2329011, "entity": "boat", "caption": "white rope tied to a boat", "question": ["is there a boat ?"], "prompt": "white rope tied to a {}"}, {"index": 470, "image_id": 2328185, "entity": "boat", "caption": "food sits on boat", "question": ["is there food ?", "is there boat ?"], "prompt": "food sits on {}"}, {"index": 471, "image_id": 2328185, "entity": "boat", "caption": "human stands on boat", "question": ["is there human ?", "is there boat ?"], "prompt": "human stands on {}"}, {"index": 472, "image_id": 2328185, "entity": "boat", "caption": "a river boat painted red, white and blue", "question": ["is there a river boat ?"], "prompt": "a river {} painted red, white and blue"}, {"index": 473, "image_id": 2327815, "entity": "boat", "caption": "man standing in the front of a boat", "question": ["is there man ?", "is there the front ?", "is there a boat ?"], "prompt": "man standing in the front of a {}"}, {"index": 474, "image_id": 2327709, "entity": "boat", "caption": "boat that man is sitting in", "question": ["is there boat ?", "is there that man ?"], "prompt": "{} that man is sitting in"}, {"index": 475, "image_id": 2327444, "entity": "boat", "caption": "bushes are behind boat", "question": ["are there bushes ?", "is there boat ?"], "prompt": "bushes are behind {}"}, {"index": 476, "image_id": 2326620, "entity": "boat", "caption": "fruits are in the boat ", "question": ["are there fruits ?", "is there the boat ?"], "prompt": "fruits are in the {} "}, {"index": 477, "image_id": 2326389, "entity": "boat", "caption": "water boats are in", "question": ["are there water boats ?"], "prompt": "water {}s are in"}, {"index": 478, "image_id": 2325957, "entity": "boat", "caption": "life preserver hung on boat", "question": ["is there life preserver ?", "is there boat ?"], "prompt": "life preserver hung on {}"}, {"index": 479, "image_id": 2325634, "entity": "boat", "caption": "Red rope attached to metal boat.", "question": ["is there red rope ?", "is there metal boat ?"], "prompt": "Red rope attached to metal {}."}, {"index": 480, "image_id": 2325634, "entity": "boat", "caption": "Metal boat anchored with yellow rope.", "question": ["is there metal boat ?", "is there yellow rope ?"], "prompt": "Metal {} anchored with yellow rope."}, {"index": 481, "image_id": 2325522, "entity": "boat", "caption": "the boat is floating on the water ", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is floating on the water "}, {"index": 482, "image_id": 2325172, "entity": "boat", "caption": "the boat is on the sand", "question": ["is there the boat ?", "is there the sand ?"], "prompt": "the {} is on the sand"}, {"index": 483, "image_id": 2325172, "entity": "boat", "caption": "lettering is on the boat", "question": ["is there lettering ?", "is there the boat ?"], "prompt": "lettering is on the {}"}, {"index": 484, "image_id": 2325172, "entity": "boat", "caption": "a mast is on the boat", "question": ["is there a mast ?", "is there the boat ?"], "prompt": "a mast is on the {}"}, {"index": 485, "image_id": 2325172, "entity": "boat", "caption": "numbers are in the boat", "question": ["are there numbers ?", "is there the boat ?"], "prompt": "numbers are in the {}"}, {"index": 486, "image_id": 2324743, "entity": "boat", "caption": "The bottom of the boat is the color red ", "question": ["is there the bottom ?", "is there the boat ?", "is there the color red ?"], "prompt": "The bottom of the {} is the color red "}, {"index": 487, "image_id": 2324743, "entity": "boat", "caption": "dragon painted on the side of the boat", "question": ["is there dragon ?", "is there the side ?", "is there the boat ?"], "prompt": "dragon painted on the side of the {}"}, {"index": 488, "image_id": 2324603, "entity": "boat", "caption": "an old wooden boat dock on the side of the river", "question": ["is there the side ?", "is there the river ?"], "prompt": "an old wooden {} dock on the side of the river"}, {"index": 489, "image_id": 2324332, "entity": "boat", "caption": "Sand patches behind the boat", "question": ["are there sand patches ?", "is there the boat ?"], "prompt": "Sand patches behind the {}"}, {"index": 490, "image_id": 2324332, "entity": "boat", "caption": "The boat sits on the bank. ", "question": ["is there the boat ?", "is there the bank ?"], "prompt": "The {} sits on the bank. "}, {"index": 491, "image_id": 2324332, "entity": "boat", "caption": "The flowers next to the boat. ", "question": ["are there the flowers ?", "is there the boat ?"], "prompt": "The flowers next to the {}. "}, {"index": 492, "image_id": 2324332, "entity": "boat", "caption": "The boat sits in the rocks. ", "question": ["is there the boat ?", "are there the rocks ?"], "prompt": "The {} sits in the rocks. "}, {"index": 493, "image_id": 2323258, "entity": "boat", "caption": "Some boats are carrying oars for rowing", "question": ["are there some boats ?", "are there oars ?"], "prompt": "Some {}s are carrying oars for rowing"}, {"index": 494, "image_id": 2323258, "entity": "boat", "caption": "White boat with floats attached", "question": ["is there white boat ?", "are there floats ?"], "prompt": "White {} with floats attached"}, {"index": 495, "image_id": 2321960, "entity": "boat", "caption": "two boats parked at the dock", "question": ["are there two boats ?", "is there the dock ?"], "prompt": "two {}s parked at the dock"}, {"index": 496, "image_id": 2321105, "entity": "boat", "caption": "Sign on boat says Manon Manon.", "question": ["is there sign ?", "is there boat ?"], "prompt": "Sign on {} says Manon Manon."}, {"index": 497, "image_id": 2321105, "entity": "boat", "caption": "A grey barrel sits in an old boat.", "question": ["is there a grey barrel ?", "is there an old boat ?"], "prompt": "A grey barrel sits in an old {}."}, {"index": 498, "image_id": 2320922, "entity": "boat", "caption": "Water that boat sits on", "question": ["is there water ?", "is there that boat ?"], "prompt": "Water that {} sits on"}, {"index": 499, "image_id": 2320922, "entity": "boat", "caption": " some chains anchoring a boat", "question": ["are there some chains ?", "is there a boat ?"], "prompt": " some chains anchoring a {}"}, {"index": 500, "image_id": 2320922, "entity": "boat", "caption": "water boat is sitting in", "question": ["is there water boat ?"], "prompt": "water {} is sitting in"}, {"index": 501, "image_id": 2320922, "entity": "boat", "caption": "the boat is in a marina", "question": ["is there the boat ?", "is there a marina ?"], "prompt": "the {} is in a marina"}, {"index": 502, "image_id": 2320725, "entity": "boat", "caption": "The boat is on land.", "question": ["is there the boat ?", "is there land ?"], "prompt": "The {} is on land."}, {"index": 503, "image_id": 2319811, "entity": "boat", "caption": "the grey stripe on the boat", "question": ["is there the grey stripe ?", "is there the boat ?"], "prompt": "the grey stripe on the {}"}, {"index": 504, "image_id": 2318574, "entity": "boat", "caption": "the letter \"R\"on the boat", "question": ["is there the letter ?", "is there the boat ?"], "prompt": "the letter \"R\"on the {}"}, {"index": 505, "image_id": 2318574, "entity": "boat", "caption": "water for boats to sail", "question": ["is there water ?", "are there boats ?"], "prompt": "water for {}s to sail"}, {"index": 506, "image_id": 2318144, "entity": "boat", "caption": "crowd of people gathered around looking at the huge boat", "question": ["is there crowd ?", "are there people ?", "is there the huge boat ?"], "prompt": "crowd of people gathered around looking at the huge {}"}, {"index": 507, "image_id": 2318140, "entity": "boat", "caption": "white boat docked at the pier", "question": ["is there white boat ?", "is there the pier ?"], "prompt": "white {} docked at the pier"}, {"index": 508, "image_id": 2317528, "entity": "boat", "caption": "boats lined up side by side", "question": ["are there boats ?", "is there side ?", "is there side ?"], "prompt": "{}s lined up side by side"}, {"index": 509, "image_id": 2317528, "entity": "boat", "caption": "Yellow number 9 painted onto a blue square on a red boat", "question": ["is there yellow number ?", "is there a blue square ?", "is there a red boat ?"], "prompt": "Yellow number 9 painted onto a blue square on a red {}"}, {"index": 510, "image_id": 2317528, "entity": "boat", "caption": "Orange carved dragon head on a boat", "question": ["is there orange carved dragon head ?", "is there a boat ?"], "prompt": "Orange carved dragon head on a {}"}, {"index": 511, "image_id": 2317528, "entity": "boat", "caption": "Blue flower painted on a boat", "question": ["is there blue flower ?", "is there a boat ?"], "prompt": "Blue flower painted on a {}"}, {"index": 512, "image_id": 2317528, "entity": "boat", "caption": "Orange carved tail on a boat", "question": ["is there orange carved tail ?", "is there a boat ?"], "prompt": "Orange carved tail on a {}"}, {"index": 513, "image_id": 2317528, "entity": "boat", "caption": "Green carved tail on a boat", "question": ["is there green carved tail ?", "is there a boat ?"], "prompt": "Green carved tail on a {}"}, {"index": 514, "image_id": 2317472, "entity": "boat", "caption": "large metal rope pulleys on boat", "question": ["are there large metal rope pulleys ?", "is there boat ?"], "prompt": "large metal rope pulleys on {}"}, {"index": 515, "image_id": 2316999, "entity": "boat", "caption": "open deck are of boat", "question": ["is there open deck ?", "is there boat ?"], "prompt": "open deck are of {}"}, {"index": 516, "image_id": 2316999, "entity": "boat", "caption": "the deck of this boat is blue", "question": ["is there the deck ?", "is there this boat ?"], "prompt": "the deck of this {} is blue"}, {"index": 517, "image_id": 2316715, "entity": "boat", "caption": "large white boat casting reflection on water", "question": ["is there large white boat ?", "is there reflection ?", "is there water ?"], "prompt": "large white {} casting reflection on water"}, {"index": 518, "image_id": 2316663, "entity": "boat", "caption": "Rope tied across a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "Rope tied across a {}"}, {"index": 519, "image_id": 2316469, "entity": "boat", "caption": "the life ring is on a boat", "question": ["is there the life ring ?", "is there a boat ?"], "prompt": "the life ring is on a {}"}, {"index": 520, "image_id": 2316232, "entity": "boat", "caption": "row boat docked in water", "question": ["is there row boat ?", "is there water ?"], "prompt": "row {} docked in water"}, {"index": 521, "image_id": 2316232, "entity": "boat", "caption": "this is a row boat", "question": ["is there a row boat ?"], "prompt": "this is a row {}"}, {"index": 522, "image_id": 2316232, "entity": "boat", "caption": "The rope tied to the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "The rope tied to the {}"}, {"index": 523, "image_id": 2316232, "entity": "boat", "caption": "A boat that is sitting in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "A {} that is sitting in the water"}, {"index": 524, "image_id": 2316174, "entity": "boat", "caption": "The letter R on the boat.", "question": ["is there the letter r ?", "is there the boat ?"], "prompt": "The letter R on the {}."}, {"index": 525, "image_id": 2316174, "entity": "boat", "caption": "The word PLYMOUTH on the boat.", "question": ["is there the word ?", "is there plymouth ?", "is there the boat ?"], "prompt": "The word PLYMOUTH on the {}."}, {"index": 526, "image_id": 2316161, "entity": "boat", "caption": "The wooden boat the woman is sitting in.", "question": ["is there the wooden boat ?", "is there the woman ?"], "prompt": "The wooden {} the woman is sitting in."}, {"index": 527, "image_id": 2316161, "entity": "boat", "caption": "boat holds woman", "question": ["is there boat ?", "is there woman ?"], "prompt": "{} holds woman"}, {"index": 528, "image_id": 2316102, "entity": "boat", "caption": "number 33 painted on a boat.", "question": ["is there number ?", "is there a boat ?"], "prompt": "number 33 painted on a {}."}, {"index": 529, "image_id": 2315952, "entity": "boat", "caption": "Rope tied to the boat.", "question": ["is there rope ?", "is there the boat ?"], "prompt": "Rope tied to the {}."}, {"index": 530, "image_id": 2315952, "entity": "boat", "caption": "Chain tied to the boat.", "question": ["is there chain ?", "is there the boat ?"], "prompt": "Chain tied to the {}."}, {"index": 531, "image_id": 2315952, "entity": "boat", "caption": "red plastic buoys hanging from boat", "question": ["are there red plastic buoys ?", "is there boat ?"], "prompt": "red plastic buoys hanging from {}"}, {"index": 532, "image_id": 2315952, "entity": "boat", "caption": "black tire hanging from side of boat", "question": ["is there black tire ?", "is there side ?", "is there boat ?"], "prompt": "black tire hanging from side of {}"}, {"index": 533, "image_id": 2315952, "entity": "boat", "caption": "boueys attached to boat", "question": ["is there boat ?"], "prompt": "boueys attached to {}"}, {"index": 534, "image_id": 2315666, "entity": "boat", "caption": "red flag hanging from boat in water ", "question": ["is there red flag ?", "is there boat ?", "is there water ?"], "prompt": "red flag hanging from {} in water "}, {"index": 535, "image_id": 2414707, "entity": "boat", "caption": "man pushing a lifeboat", "question": ["is there man ?", "is there a lifeboat ?"], "prompt": "man pushing a life{}"}, {"index": 536, "image_id": 2414707, "entity": "boat", "caption": "Men pushing a boat", "question": ["are there men ?", "is there a boat ?"], "prompt": "Men pushing a {}"}, {"index": 537, "image_id": 2414285, "entity": "boat", "caption": "A bicycle is on the boat.", "question": ["is there a bicycle ?", "is there the boat ?"], "prompt": "A bicycle is on the {}."}, {"index": 538, "image_id": 2414285, "entity": "boat", "caption": "The bicycle is on the deck of a boat.", "question": ["is there the bicycle ?", "is there the deck ?", "is there a boat ?"], "prompt": "The bicycle is on the deck of a {}."}, {"index": 539, "image_id": 2414285, "entity": "boat", "caption": "This is part of the mast of the boat.", "question": ["is there part ?", "is there the mast ?", "is there the boat ?"], "prompt": "This is part of the mast of the {}."}, {"index": 540, "image_id": 2414285, "entity": "boat", "caption": "Rope is on the deck of the boat.", "question": ["is there rope ?", "is there the deck ?", "is there the boat ?"], "prompt": "Rope is on the deck of the {}."}, {"index": 541, "image_id": 2414285, "entity": "boat", "caption": "small boat with boat sitting on it", "question": ["is there small boat ?", "is there boat ?"], "prompt": "small {} with {} sitting on it"}, {"index": 542, "image_id": 2414285, "entity": "boat", "caption": "A rope tied to a boat.", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "A rope tied to a {}."}, {"index": 543, "image_id": 2414008, "entity": "boat", "caption": "Bottles made boats floating in the water.", "question": ["are there bottles ?", "are there boats ?", "is there the water ?"], "prompt": "Bottles made {}s floating in the water."}, {"index": 544, "image_id": 2413336, "entity": "boat", "caption": "the kid is standing on the boat", "question": ["is there the kid ?", "is there the boat ?"], "prompt": "the kid is standing on the {}"}, {"index": 545, "image_id": 2413281, "entity": "boat", "caption": "Two oars inside boat.", "question": ["are there two oars ?", "is there boat ?"], "prompt": "Two oars inside {}."}, {"index": 546, "image_id": 2413281, "entity": "boat", "caption": "Rope coiled inside boat.", "question": ["is there inside boat ?"], "prompt": "Rope coiled inside {}."}, {"index": 547, "image_id": 2413281, "entity": "boat", "caption": "boat tied to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} tied to dock"}, {"index": 548, "image_id": 2413281, "entity": "boat", "caption": "exposed wood where blue boat paint has worn away", "question": ["is there wood ?", "is there blue boat paint ?"], "prompt": "exposed wood where blue {} paint has worn away"}, {"index": 549, "image_id": 2412726, "entity": "boat", "caption": "The boats are on the water", "question": ["are there the boats ?", "is there the water ?"], "prompt": "The {}s are on the water"}, {"index": 550, "image_id": 2412726, "entity": "boat", "caption": "boats trimmed in light blue", "question": ["are there boats ?", "is there light blue ?"], "prompt": "{}s trimmed in light blue"}, {"index": 551, "image_id": 2412667, "entity": "boat", "caption": "woman painted on side of boat", "question": ["is there woman ?", "is there side ?", "is there boat ?"], "prompt": "woman painted on side of {}"}, {"index": 552, "image_id": 2412667, "entity": "boat", "caption": "Woman painted on large multi-colored boat", "question": ["is there woman ?", "is there large multi-colored boat ?"], "prompt": "Woman painted on large multi-colored {}"}, {"index": 553, "image_id": 2412667, "entity": "boat", "caption": "Woman painted on the boat", "question": ["is there woman ?", "is there the boat ?"], "prompt": "Woman painted on the {}"}, {"index": 554, "image_id": 2412272, "entity": "boat", "caption": "boats are in the water", "question": ["are there boats ?", "is there the water ?"], "prompt": "{}s are in the water"}, {"index": 555, "image_id": 2412272, "entity": "boat", "caption": "\"Intrepid\" painted on front of boat", "question": ["is there front ?", "is there boat ?"], "prompt": "\"Intrepid\" painted on front of {}"}, {"index": 556, "image_id": 2412205, "entity": "boat", "caption": "the man is riding ina boat", "question": ["is there the man ?", "is there ina boat ?"], "prompt": "the man is riding ina {}"}, {"index": 557, "image_id": 2412205, "entity": "boat", "caption": "a boat racing along a lake", "question": ["is there a boat ?", "is there a lake ?"], "prompt": "a {} racing along a lake"}, {"index": 558, "image_id": 2412205, "entity": "boat", "caption": "Man is in a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man is in a {}"}, {"index": 559, "image_id": 2412205, "entity": "boat", "caption": "Engine of boat is tan", "question": ["is there engine ?", "is there boat ?", "is there tan ?"], "prompt": "Engine of {} is tan"}, {"index": 560, "image_id": 2412205, "entity": "boat", "caption": "boat has wooden bench", "question": ["is there boat ?", "is there wooden bench ?"], "prompt": "{} has wooden bench"}, {"index": 561, "image_id": 2411896, "entity": "boat", "caption": "Large boat pulling containers", "question": ["is there large boat ?"], "prompt": "Large {} pulling containers"}, {"index": 562, "image_id": 2415372, "entity": "boat", "caption": "Rope attaching boat to boardwalk", "question": ["is there boat ?"], "prompt": "Rope attaching {} to boardwalk"}, {"index": 563, "image_id": 2415691, "entity": "boat", "caption": "boat and cabin reflected in clear smooth water", "question": ["is there boat ?", "is there cabin ?", "is there clear smooth water ?"], "prompt": "{} and cabin reflected in clear smooth water"}, {"index": 564, "image_id": 2416767, "entity": "boat", "caption": "2 identical boats are next to each other in the water ", "question": ["are there 2 identical boats ?", "is there the water ?"], "prompt": "2 identical {}s are next to each other in the water "}, {"index": 565, "image_id": 2416767, "entity": "boat", "caption": "ropes hang over the boat near the dock", "question": ["are there ropes ?", "is there the boat ?", "is there the dock ?"], "prompt": "ropes hang over the {} near the dock"}, {"index": 566, "image_id": 2417150, "entity": "boat", "caption": "man driving the boat", "question": ["is there man ?", "is there the boat ?"], "prompt": "man driving the {}"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03452741.json b/data/imagenet/compositions/prompts/n03452741.json
new file mode 100644
index 0000000000000000000000000000000000000000..2a15797b9fd375a4aa7008b4cf0854d44d470e7c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03452741.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2409382, "entity": "keyboard", "caption": "fovari snack box is next to keyboard", "question": ["is there fovari snack box ?"], "prompt": "fovari snack box is next to {}"}, {"index": 1, "image_id": 2407477, "entity": "keyboard", "caption": "letter keys on a keyboard", "question": ["are there letter keys ?", "is there a keyboard ?"], "prompt": "letter keys on a {}"}, {"index": 2, "image_id": 2407440, "entity": "keyboard", "caption": "function keys F9-F12 on keyboard", "question": ["are there function keys ?", "are there f9-f12 ?", "is there keyboard ?"], "prompt": "function keys F9-F12 on {}"}, {"index": 3, "image_id": 2407440, "entity": "keyboard", "caption": "the bird is on the keyboard", "question": ["is there the bird ?", "is there the keyboard ?"], "prompt": "the bird is on the {}"}, {"index": 4, "image_id": 2407440, "entity": "keyboard", "caption": "the bird is biting the keyboard", "question": ["is there the bird ?", "is there the keyboard ?"], "prompt": "the bird is biting the {}"}, {"index": 5, "image_id": 2407440, "entity": "keyboard", "caption": "the keyboard has arrow keys", "question": ["is there the keyboard ?", "are there arrow keys ?"], "prompt": "the {} has arrow keys"}, {"index": 6, "image_id": 2406440, "entity": "keyboard", "caption": "person making music on keyboard.", "question": ["is there person ?", "is there music ?", "is there keyboard ?"], "prompt": "person making music on {}."}, {"index": 7, "image_id": 2406440, "entity": "keyboard", "caption": "music keys on keyboard.", "question": ["are there music keys ?", "is there keyboard ?"], "prompt": "music keys on {}."}, {"index": 8, "image_id": 2401771, "entity": "keyboard", "caption": "these are keyboard beside the goggles", "question": ["is there keyboard ?", "are there the goggles ?"], "prompt": "these are {} beside the goggles"}, {"index": 9, "image_id": 2401768, "entity": "keyboard", "caption": "the keyboard is on a table.", "question": ["is there the keyboard ?", "is there a table ?"], "prompt": "the {} is on a table."}, {"index": 10, "image_id": 2398332, "entity": "keyboard", "caption": "The desk the keyboard is on", "question": ["is there the desk ?", "is there the keyboard ?"], "prompt": "The desk the {} is on"}, {"index": 11, "image_id": 2398332, "entity": "keyboard", "caption": "The arrow keys on the keyboard", "question": ["are there the arrow keys ?", "is there the keyboard ?"], "prompt": "The arrow keys on the {}"}, {"index": 12, "image_id": 2396627, "entity": "keyboard", "caption": "Light shines on the keyboard.", "question": ["is there light ?", "is there the keyboard ?"], "prompt": "Light shines on the {}."}, {"index": 13, "image_id": 2396627, "entity": "keyboard", "caption": "The keyboard has several keys. ", "question": ["is there the keyboard ?", "are there several keys ?"], "prompt": "The {} has several keys. "}, {"index": 14, "image_id": 2396627, "entity": "keyboard", "caption": "The keyboard is on a table.", "question": ["is there the keyboard ?", "is there a table ?"], "prompt": "The {} is on a table."}, {"index": 15, "image_id": 2396627, "entity": "keyboard", "caption": "The keyboard has keys.", "question": ["is there the keyboard ?", "are there keys ?"], "prompt": "The {} has keys."}, {"index": 16, "image_id": 2396627, "entity": "keyboard", "caption": "The keyboard is on the table.", "question": ["is there the keyboard ?", "is there the table ?"], "prompt": "The {} is on the table."}, {"index": 17, "image_id": 2396627, "entity": "keyboard", "caption": "Two shadows are on the keyboard.", "question": ["are there two shadows ?", "is there the keyboard ?"], "prompt": "Two shadows are on the {}."}, {"index": 18, "image_id": 2396627, "entity": "keyboard", "caption": "part of keyboard is in the dark", "question": ["is there part ?", "is there keyboard ?", "is there the dark ?"], "prompt": "part of {} is in the dark"}, {"index": 19, "image_id": 2396627, "entity": "keyboard", "caption": "keyboard is on a wood table", "question": ["is there keyboard ?", "is there a wood table ?"], "prompt": "{} is on a wood table"}, {"index": 20, "image_id": 2396627, "entity": "keyboard", "caption": "a shadow cast on keyboard", "question": ["is there a shadow ?", "is there keyboard ?"], "prompt": "a shadow cast on {}"}, {"index": 21, "image_id": 2393736, "entity": "keyboard", "caption": "black enter key on keyboard", "question": ["is there key ?", "is there keyboard ?"], "prompt": "black enter key on {}"}, {"index": 22, "image_id": 2392555, "entity": "keyboard", "caption": "Silver mouse is resting on keyboard.", "question": ["is there keyboard ?"], "prompt": "Silver mouse is resting on {}."}, {"index": 23, "image_id": 2392555, "entity": "keyboard", "caption": "silver mouse connected ot keyboard", "question": [], "prompt": "silver mouse connected ot {}"}, {"index": 24, "image_id": 2381716, "entity": "keyboard", "caption": "Arrow keys on a keyboard", "question": ["are there arrow keys ?", "is there a keyboard ?"], "prompt": "Arrow keys on a {}"}, {"index": 25, "image_id": 2376685, "entity": "keyboard", "caption": "The Dell label on the keyboard.", "question": ["is there the dell label ?", "is there the keyboard ?"], "prompt": "The Dell label on the {}."}, {"index": 26, "image_id": 2376685, "entity": "keyboard", "caption": "twelve function keys on the computer's keyboard", "question": ["are there twelve function keys ?", "is there the computer's keyboard ?"], "prompt": "twelve function keys on the computer's {}"}, {"index": 27, "image_id": 2376399, "entity": "keyboard", "caption": "home row keys on a black keyboard", "question": ["are there home row keys ?", "is there a black keyboard ?"], "prompt": "home row keys on a black {}"}, {"index": 28, "image_id": 2376399, "entity": "keyboard", "caption": "Three keys on a keyboard.", "question": ["are there three keys ?", "is there a keyboard ?"], "prompt": "Three keys on a {}."}, {"index": 29, "image_id": 2376399, "entity": "keyboard", "caption": "Eleven keys on a keyboard.", "question": ["are there eleven keys ?", "is there a keyboard ?"], "prompt": "Eleven keys on a {}."}, {"index": 30, "image_id": 2375765, "entity": "keyboard", "caption": "a can kept in the keyboard", "question": ["is there the keyboard ?"], "prompt": "a can kept in the {}"}, {"index": 31, "image_id": 2372147, "entity": "keyboard", "caption": "table keyboard and mouse are on", "question": ["is there table keyboard ?", "is there mouse ?"], "prompt": "table {} and mouse are on"}, {"index": 32, "image_id": 2364841, "entity": "keyboard", "caption": "white ctrl key on keyboard", "question": ["is there white ctrl key ?", "is there keyboard ?"], "prompt": "white ctrl key on {}"}, {"index": 33, "image_id": 2363501, "entity": "keyboard", "caption": "number keys in the keyboard", "question": ["are there number keys ?", "is there the keyboard ?"], "prompt": "number keys in the {}"}, {"index": 34, "image_id": 2363501, "entity": "keyboard", "caption": "logo engraved on keyboard", "question": ["is there logo ?", "is there keyboard ?"], "prompt": "logo engraved on {}"}, {"index": 35, "image_id": 2359476, "entity": "keyboard", "caption": "volume keys on the keyboard", "question": ["are there volume keys ?", "is there the keyboard ?"], "prompt": "volume keys on the {}"}, {"index": 36, "image_id": 2358269, "entity": "keyboard", "caption": "cord coming from a keyboard", "question": ["is there cord ?", "is there a keyboard ?"], "prompt": "cord coming from a {}"}, {"index": 37, "image_id": 2354353, "entity": "keyboard", "caption": "The dog's head is on the keyboard", "question": ["is there the dog's head ?", "is there the keyboard ?"], "prompt": "The dog's head is on the {}"}, {"index": 38, "image_id": 2354353, "entity": "keyboard", "caption": "Four arrow keys on the keyboard. ", "question": ["are there four arrow keys ?", "is there the keyboard ?"], "prompt": "Four arrow keys on the {}. "}, {"index": 39, "image_id": 2352254, "entity": "keyboard", "caption": "The letter U on a keyboard.", "question": ["is there the letter ?", "is there u ?", "is there a keyboard ?"], "prompt": "The letter U on a {}."}, {"index": 40, "image_id": 2352254, "entity": "keyboard", "caption": "number keys on a keyboard", "question": ["are there number keys ?", "is there a keyboard ?"], "prompt": "number keys on a {}"}, {"index": 41, "image_id": 2347831, "entity": "keyboard", "caption": "eight key on a keyboard turned sideways", "question": ["is there eight key ?", "is there a keyboard ?"], "prompt": "eight key on a {} turned sideways"}, {"index": 42, "image_id": 2347831, "entity": "keyboard", "caption": "two key on a keyboard turned sideways", "question": ["is there two key ?", "is there a keyboard ?"], "prompt": "two key on a {} turned sideways"}, {"index": 43, "image_id": 2342072, "entity": "keyboard", "caption": "the remote is on the keyboard", "question": ["is there the remote ?", "is there the keyboard ?"], "prompt": "the remote is on the {}"}, {"index": 44, "image_id": 2338836, "entity": "keyboard", "caption": "wood table keyboard is sitting on", "question": ["is there wood table keyboard ?"], "prompt": "wood table {} is sitting on"}, {"index": 45, "image_id": 2336330, "entity": "keyboard", "caption": "keyboard kept in the table", "question": ["is there keyboard ?", "is there the table ?"], "prompt": "{} kept in the table"}, {"index": 46, "image_id": 2336330, "entity": "keyboard", "caption": "alphabet keys in the keyboard", "question": ["are there alphabet keys ?", "is there the keyboard ?"], "prompt": "alphabet keys in the {}"}, {"index": 47, "image_id": 2336330, "entity": "keyboard", "caption": "number keys on keyboard", "question": ["are there number keys ?", "is there keyboard ?"], "prompt": "number keys on {}"}, {"index": 48, "image_id": 2333487, "entity": "keyboard", "caption": "Mouse and keyboard are on the table", "question": ["is there mouse ?", "is there keyboard ?", "is there the table ?"], "prompt": "Mouse and {} are on the table"}, {"index": 49, "image_id": 2331520, "entity": "keyboard", "caption": "This is a keyboard", "question": ["is there a keyboard ?"], "prompt": "This is a {}"}, {"index": 50, "image_id": 2331520, "entity": "keyboard", "caption": "The keyboard and mouse are on a desk", "question": ["is there the keyboard ?", "is there mouse ?", "is there a desk ?"], "prompt": "The {} and mouse are on a desk"}, {"index": 51, "image_id": 2328733, "entity": "keyboard", "caption": "computer keyboard sits on desk", "question": ["is there computer keyboard ?", "is there desk ?"], "prompt": "computer {} sits on desk"}, {"index": 52, "image_id": 2328733, "entity": "keyboard", "caption": "desk has keyboard on it", "question": ["is there desk ?", "is there keyboard ?"], "prompt": "desk has {} on it"}, {"index": 53, "image_id": 2325677, "entity": "keyboard", "caption": "The keyboard has a \"shuffle\" button", "question": ["is there the keyboard ?", "is there a \"shuffle\" button ?"], "prompt": "The {} has a \"shuffle\" button"}, {"index": 54, "image_id": 2325677, "entity": "keyboard", "caption": "The keyboard is on a white surface", "question": ["is there the keyboard ?", "is there a white surface ?"], "prompt": "The {} is on a white surface"}, {"index": 55, "image_id": 2325670, "entity": "keyboard", "caption": "key is part of keyboard", "question": ["is there key ?", "is there part ?", "is there keyboard ?"], "prompt": "key is part of {}"}, {"index": 56, "image_id": 2325094, "entity": "keyboard", "caption": "the ipod is in front of the keyboard ", "question": ["is there front ?", "is there the keyboard ?"], "prompt": "the ipod is in front of the {} "}, {"index": 57, "image_id": 2323334, "entity": "keyboard", "caption": "Arrow pointing up on a keyboard", "question": ["is there arrow ?", "is there a keyboard ?"], "prompt": "Arrow pointing up on a {}"}, {"index": 58, "image_id": 2323334, "entity": "keyboard", "caption": "a black mouse resting on a keyboard", "question": ["is there a black mouse ?", "is there a keyboard ?"], "prompt": "a black mouse resting on a {}"}, {"index": 59, "image_id": 2323334, "entity": "keyboard", "caption": "the windows key on bottom of the keyboard", "question": ["are there the windows ?", "is there bottom ?", "is there the keyboard ?"], "prompt": "the windows key on bottom of the {}"}, {"index": 60, "image_id": 2317168, "entity": "keyboard", "caption": "Silver keys on a keyboard.", "question": ["are there silver keys ?", "is there a keyboard ?"], "prompt": "Silver keys on a {}."}, {"index": 61, "image_id": 2413188, "entity": "keyboard", "caption": "the bracket keys on the keyboard", "question": ["are there the bracket keys ?", "is there the keyboard ?"], "prompt": "the bracket keys on the {}"}, {"index": 62, "image_id": 2413188, "entity": "keyboard", "caption": "the 9 and the 0 keys on the keyboard", "question": ["are there the 0 keys ?", "is there the keyboard ?"], "prompt": "the 9 and the 0 keys on the {}"}, {"index": 63, "image_id": 2413188, "entity": "keyboard", "caption": "Grasshopper standing in between the F 8 in the F9 key on the computer keyboard", "question": ["is there grasshopper ?", "is there the f9 key ?", "is there the computer keyboard ?"], "prompt": "Grasshopper standing in between the F 8 in the F9 key on the computer {}"}, {"index": 64, "image_id": 2413188, "entity": "keyboard", "caption": "The letter I keyboard key barely visible the photo", "question": ["is there the letter ?", "is there the photo ?"], "prompt": "The letter I {} key barely visible the photo"}, {"index": 65, "image_id": 2413188, "entity": "keyboard", "caption": "Letter keys of a keyboard.", "question": ["are there letter keys ?", "is there a keyboard ?"], "prompt": "Letter keys of a {}."}, {"index": 66, "image_id": 2417261, "entity": "keyboard", "caption": "black caps lock button on keyboard", "question": ["are there black caps lock button ?", "is there keyboard ?"], "prompt": "black caps lock button on {}"}, {"index": 67, "image_id": 2417261, "entity": "keyboard", "caption": "PrntScr key on a keyboard", "question": ["is there prntscr key ?", "is there a keyboard ?"], "prompt": "PrntScr key on a {}"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03485407.json b/data/imagenet/compositions/prompts/n03485407.json
new file mode 100644
index 0000000000000000000000000000000000000000..eb6f3cc340447bec06e9d0d2e41c4e6a28c4ebc4
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03485407.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 1670, "entity": "computer", "caption": "the computer is sitting on a white desk", "question": ["is there the computer ?", "is there a white desk ?"], "prompt": "the {} is sitting on a white desk"}, {"index": 1, "image_id": 2413614, "entity": "computer", "caption": "Audio input on laptop computer.", "question": ["is there audio input ?", "is there laptop computer ?"], "prompt": "Audio input on laptop {}."}, {"index": 2, "image_id": 2411787, "entity": "computer", "caption": "Mouse of computer is black and tan", "question": ["is there computer ?"], "prompt": "Mouse of {} is black and tan"}, {"index": 3, "image_id": 2411787, "entity": "computer", "caption": "Screen of computer is purple and white", "question": ["is there screen ?", "is there computer ?"], "prompt": "Screen of {} is purple and white"}, {"index": 4, "image_id": 2411787, "entity": "computer", "caption": "The computer sits on a table. ", "question": ["is there the computer ?", "is there a table ?"], "prompt": "The {} sits on a table. "}, {"index": 5, "image_id": 2411787, "entity": "computer", "caption": "The computer has the Apple logo.", "question": ["is there the computer ?", "is there the apple logo ?"], "prompt": "The {} has the Apple logo."}, {"index": 6, "image_id": 2411787, "entity": "computer", "caption": "The computer has two monitors. ", "question": ["is there the computer ?", "are there two monitors ?"], "prompt": "The {} has two monitors. "}, {"index": 7, "image_id": 2411787, "entity": "computer", "caption": "The computer has speakers. ", "question": ["is there the computer ?", "are there speakers ?"], "prompt": "The {} has speakers. "}, {"index": 8, "image_id": 2411787, "entity": "computer", "caption": "The computer has a mouse.", "question": ["is there the computer ?", "is there a mouse ?"], "prompt": "The {} has a mouse."}, {"index": 9, "image_id": 2409573, "entity": "computer", "caption": "The computer screen is on", "question": ["is there the computer screen ?"], "prompt": "The {} screen is on"}, {"index": 10, "image_id": 2409573, "entity": "computer", "caption": "The giant can next to the computer", "question": ["is there the giant ?", "is there the computer ?"], "prompt": "The giant can next to the {}"}, {"index": 11, "image_id": 2407218, "entity": "computer", "caption": "This is a smartphone that this man has attached to his computer.", "question": ["is there a smartphone ?", "is there this man ?", "is there his computer ?"], "prompt": "This is a smartphone that this man has attached to his {}."}, {"index": 12, "image_id": 2404050, "entity": "computer", "caption": "The computer has a silver bolt", "question": ["is there the computer ?", "is there a silver bolt ?"], "prompt": "The {} has a silver bolt"}, {"index": 13, "image_id": 2397913, "entity": "computer", "caption": "Man is looking at the computer", "question": ["is there man ?", "is there the computer ?"], "prompt": "Man is looking at the {}"}, {"index": 14, "image_id": 2396611, "entity": "computer", "caption": "a cat resting it's head on a computer.", "question": ["is there a cat ?", "is there head ?", "is there a computer ?"], "prompt": "a cat resting it's head on a {}."}, {"index": 15, "image_id": 2396611, "entity": "computer", "caption": "a cats paw on a computer.", "question": ["are there a cats ?", "is there a computer ?"], "prompt": "a cats paw on a {}."}, {"index": 16, "image_id": 2391965, "entity": "computer", "caption": "computer set up with monitor", "question": ["is there computer ?", "is there monitor ?"], "prompt": "{} set up with monitor"}, {"index": 17, "image_id": 2389431, "entity": "computer", "caption": "wires pluged on computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires pluged on {}"}, {"index": 18, "image_id": 2388062, "entity": "computer", "caption": "Power cord plugged into the computer.", "question": ["is there power cord ?", "is there the computer ?"], "prompt": "Power cord plugged into the {}."}, {"index": 19, "image_id": 2384108, "entity": "computer", "caption": "computer speaker laying sidways", "question": ["is there computer speaker ?"], "prompt": "{} speaker laying sidways"}, {"index": 20, "image_id": 2380641, "entity": "computer", "caption": "mouse of computer is ergonomic", "question": ["is there computer ?"], "prompt": "mouse of {} is ergonomic"}, {"index": 21, "image_id": 2380272, "entity": "computer", "caption": "computer mouse sitting next to laptop computer", "question": ["is there computer mouse ?", "is there laptop computer ?"], "prompt": "{} mouse sitting next to laptop {}"}, {"index": 22, "image_id": 2377814, "entity": "computer", "caption": "The computer the cat is standing on", "question": ["is there the computer ?", "is there the cat ?"], "prompt": "The {} the cat is standing on"}, {"index": 23, "image_id": 2375150, "entity": "computer", "caption": "the girl is typing on the computer", "question": ["is there the girl ?", "is there the computer ?"], "prompt": "the girl is typing on the {}"}, {"index": 24, "image_id": 2372868, "entity": "computer", "caption": "Cord plug ins for computer.", "question": ["are there cord plug ins ?", "is there computer ?"], "prompt": "Cord plug ins for {}."}, {"index": 25, "image_id": 2371612, "entity": "computer", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The dog is using the {} "}, {"index": 26, "image_id": 2371612, "entity": "computer", "caption": "The mouse pad is the middle of the computer ", "question": ["is there the mouse pad ?", "is there the middle ?", "is there the computer ?"], "prompt": "The mouse pad is the middle of the {} "}, {"index": 27, "image_id": 2370068, "entity": "computer", "caption": "tree leaves on computer screen", "question": ["is there tree ?", "is there computer screen ?"], "prompt": "tree leaves on {} screen"}, {"index": 28, "image_id": 2364993, "entity": "computer", "caption": "Indicator lights on a laptop computer", "question": ["are there indicator lights ?", "is there a laptop computer ?"], "prompt": "Indicator lights on a laptop {}"}, {"index": 29, "image_id": 2364841, "entity": "computer", "caption": "wires blurry behind computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires blurry behind {}"}, {"index": 30, "image_id": 2364534, "entity": "computer", "caption": "The computer stand so the computer isn't falling over.", "question": ["is there the computer ?", "is there the computer ?"], "prompt": "The {} stand so the {} isn't falling over."}, {"index": 31, "image_id": 2361519, "entity": "computer", "caption": "number keypad for computer", "question": ["is there number keypad ?", "is there computer ?"], "prompt": "number keypad for {}"}, {"index": 32, "image_id": 2359377, "entity": "computer", "caption": "Papers sit next to computer", "question": ["are there papers ?", "is there computer ?"], "prompt": "Papers sit next to {}"}, {"index": 33, "image_id": 2358048, "entity": "computer", "caption": "The computer is on the log in screen.", "question": ["is there the computer ?", "is there the log ?", "is there screen ?"], "prompt": "The {} is on the log in screen."}, {"index": 34, "image_id": 2357136, "entity": "computer", "caption": "multiple objects are open on computer screen", "question": ["are there multiple objects ?", "is there computer screen ?"], "prompt": "multiple objects are open on {} screen"}, {"index": 35, "image_id": 2353879, "entity": "computer", "caption": "power wire plugged into computer", "question": ["is there power wire ?", "is there computer ?"], "prompt": "power wire plugged into {}"}, {"index": 36, "image_id": 2353456, "entity": "computer", "caption": "plug plugged into computer", "question": ["is there plug ?", "is there computer ?"], "prompt": "plug plugged into {}"}, {"index": 37, "image_id": 2351707, "entity": "computer", "caption": "the keyboard of the computer that which the cat is sitting on", "question": ["is there the keyboard ?", "is there the computer ?", "is there the cat ?"], "prompt": "the keyboard of the {} that which the cat is sitting on"}, {"index": 38, "image_id": 2348719, "entity": "computer", "caption": "White USB cord hanging from the computer.", "question": ["is there white usb cord ?", "is there the computer ?"], "prompt": "White USB cord hanging from the {}."}, {"index": 39, "image_id": 2347801, "entity": "computer", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The dog is next to a laptop {}"}, {"index": 40, "image_id": 2347039, "entity": "computer", "caption": "the plugs going into the computer", "question": ["are there the plugs ?", "is there the computer ?"], "prompt": "the plugs going into the {}"}, {"index": 41, "image_id": 2346356, "entity": "computer", "caption": "computer on table is open", "question": ["is there computer ?", "is there table ?"], "prompt": "{} on table is open"}, {"index": 42, "image_id": 2345231, "entity": "computer", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the dogs paws on on the {}"}, {"index": 43, "image_id": 2342983, "entity": "computer", "caption": "Cord plugged into the computer", "question": ["is there cord ?", "is there the computer ?"], "prompt": "Cord plugged into the {}"}, {"index": 44, "image_id": 2330099, "entity": "computer", "caption": "person is looking at the computer", "question": ["is there person ?", "is there the computer ?"], "prompt": "person is looking at the {}"}, {"index": 45, "image_id": 2326900, "entity": "computer", "caption": "a computer screen turned on", "question": ["is there a computer screen ?"], "prompt": "a {} screen turned on"}, {"index": 46, "image_id": 2326148, "entity": "computer", "caption": "Cat hiding behind a computer screen", "question": ["is there cat ?", "is there a computer screen ?"], "prompt": "Cat hiding behind a {} screen"}, {"index": 47, "image_id": 2322592, "entity": "computer", "caption": "white wire coming out of the nearest computer", "question": ["is there white wire ?", "is there the nearest computer ?"], "prompt": "white wire coming out of the nearest {}"}, {"index": 48, "image_id": 2317168, "entity": "computer", "caption": "objects piled up behind the computer", "question": ["are there objects ?", "is there the computer ?"], "prompt": "objects piled up behind the {}"}, {"index": 49, "image_id": 2414391, "entity": "computer", "caption": "the computer is sitting on a desk", "question": ["is there the computer ?", "is there a desk ?"], "prompt": "the {} is sitting on a desk"}, {"index": 50, "image_id": 2413201, "entity": "computer", "caption": "smooth wood table hold a computer", "question": ["is there smooth wood table ?", "is there a computer ?"], "prompt": "smooth wood table hold a {}"}, {"index": 51, "image_id": 2415366, "entity": "computer", "caption": "A computer is on a white desk", "question": ["is there a computer ?", "is there a white desk ?"], "prompt": "A {} is on a white desk"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03594945.json b/data/imagenet/compositions/prompts/n03594945.json
new file mode 100644
index 0000000000000000000000000000000000000000..2381f38921c9ad56862e92e8fc850617008827e1
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03594945.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 65, "entity": "car", "caption": "License plate placed on black car", "question": ["is there license plate ?", "is there black car ?"], "prompt": "License plate placed on black {}"}, {"index": 1, "image_id": 316, "entity": "car", "caption": "the seats are in the car", "question": ["are there the seats ?", "is there the car ?"], "prompt": "the seats are in the {}"}, {"index": 2, "image_id": 692, "entity": "car", "caption": "A man is sitting in a car.", "question": ["is there a man ?", "is there a car ?"], "prompt": "A man is sitting in a {}."}, {"index": 3, "image_id": 692, "entity": "car", "caption": "A rear view mirror is in the car.", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "A rear view mirror is in the {}."}, {"index": 4, "image_id": 1029, "entity": "car", "caption": "man is sitting in tan car", "question": ["is there man ?", "is there tan car ?"], "prompt": "man is sitting in tan {}"}, {"index": 5, "image_id": 1710, "entity": "car", "caption": "silver trim on car", "question": ["is there silver trim ?", "is there car ?"], "prompt": "silver trim on {}"}, {"index": 6, "image_id": 2889, "entity": "car", "caption": "rear left tire of the white car", "question": ["is there rear left tire ?", "is there the white car ?"], "prompt": "rear left tire of the white {}"}, {"index": 7, "image_id": 2889, "entity": "car", "caption": "front left tire of the white car", "question": ["is there front left tire ?", "is there the white car ?"], "prompt": "front left tire of the white {}"}, {"index": 8, "image_id": 3288, "entity": "car", "caption": "the white car has doors", "question": ["is there the white car ?", "are there doors ?"], "prompt": "the white {} has doors"}, {"index": 9, "image_id": 3288, "entity": "car", "caption": "the tail light is red on the back of the car", "question": ["is there the tail light ?", "is there the back ?", "is there the car ?"], "prompt": "the tail light is red on the back of the {}"}, {"index": 10, "image_id": 3378, "entity": "car", "caption": "red car parked streetside", "question": ["is there red car ?"], "prompt": "red {} parked streetside"}, {"index": 11, "image_id": 3378, "entity": "car", "caption": "door handle on black car", "question": ["is there door ?", "is there black car ?"], "prompt": "door handle on black {}"}, {"index": 12, "image_id": 3493, "entity": "car", "caption": "car has a front light", "question": ["is there car ?", "is there a front light ?"], "prompt": "{} has a front light"}, {"index": 13, "image_id": 3493, "entity": "car", "caption": "car has front light", "question": ["is there car ?", "is there front light ?"], "prompt": "{} has front light"}, {"index": 14, "image_id": 3493, "entity": "car", "caption": "car has grey trim", "question": ["is there car ?"], "prompt": "{} has grey trim"}, {"index": 15, "image_id": 3493, "entity": "car", "caption": "red car has blue and white plate", "question": ["is there red car ?", "is there blue and white plate ?"], "prompt": "red {} has blue and white plate"}, {"index": 16, "image_id": 3493, "entity": "car", "caption": "sidewalk is next to car", "question": ["is there sidewalk ?"], "prompt": "sidewalk is next to {}"}, {"index": 17, "image_id": 3493, "entity": "car", "caption": "car has two headlights", "question": ["is there car ?", "are there two headlights ?"], "prompt": "{} has two headlights"}, {"index": 18, "image_id": 3764, "entity": "car", "caption": "mannequins are behind car", "question": ["are there mannequins ?", "is there car ?"], "prompt": "mannequins are behind {}"}, {"index": 19, "image_id": 3997, "entity": "car", "caption": "a red and black seat belt latch in a car", "question": ["is there a red and black seat belt latch ?", "is there a car ?"], "prompt": "a red and black seat belt latch in a {}"}, {"index": 20, "image_id": 3997, "entity": "car", "caption": "a black head rest in a car", "question": ["is there a black head ?", "is there a car ?"], "prompt": "a black head rest in a {}"}, {"index": 21, "image_id": 3997, "entity": "car", "caption": "a silver and red door handle in a car", "question": ["is there a silver and red door handle ?", "is there a car ?"], "prompt": "a silver and red door handle in a {}"}, {"index": 22, "image_id": 4526, "entity": "car", "caption": "a car front headlight", "question": ["is there a car front headlight ?"], "prompt": "a {} front headlight"}, {"index": 23, "image_id": 4526, "entity": "car", "caption": "the right front tire of the purple car is black in color.", "question": ["is there the right front tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the right front tire of the purple {} is black in color."}, {"index": 24, "image_id": 4526, "entity": "car", "caption": "the back right tire of the purple car is black in color.", "question": ["is there the back right tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the back right tire of the purple {} is black in color."}, {"index": 25, "image_id": 4526, "entity": "car", "caption": "the right front light of the purple car is round in shape.", "question": ["is there the right front light ?", "is there the purple car ?", "is there shape ?"], "prompt": "the right front light of the purple {} is round in shape."}, {"index": 26, "image_id": 2415144, "entity": "car", "caption": "police car in front of fire hydrant", "question": ["is there police car ?", "is there front ?", "is there fire hydrant ?"], "prompt": "police {} in front of fire hydrant"}, {"index": 27, "image_id": 497921, "entity": "car", "caption": "Seat belt coming from the side of car.", "question": ["is there seat belt ?", "is there the side ?", "is there car ?"], "prompt": "Seat belt coming from the side of {}."}, {"index": 28, "image_id": 713086, "entity": "car", "caption": "car has an antenna", "question": ["is there car ?", "is there an antenna ?"], "prompt": "{} has an antenna"}, {"index": 29, "image_id": 713093, "entity": "car", "caption": "Person in black coat standing next to vintage green car", "question": ["is there person ?", "is there black coat ?", "is there vintage green car ?"], "prompt": "Person in black coat standing next to vintage green {}"}, {"index": 30, "image_id": 713101, "entity": "car", "caption": "car has a window", "question": ["is there car ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 31, "image_id": 1592605, "entity": "car", "caption": "A grey car passes by", "question": ["is there a grey car ?"], "prompt": "A grey {} passes by"}, {"index": 32, "image_id": 2414932, "entity": "car", "caption": "The cat sits on the car.", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat sits on the {}."}, {"index": 33, "image_id": 2414470, "entity": "car", "caption": "A car's door handle", "question": ["is there a car's door ?"], "prompt": "A {}'s door handle"}, {"index": 34, "image_id": 2414470, "entity": "car", "caption": "Door handle on a car door.", "question": ["is there door ?", "is there a car door ?"], "prompt": "Door handle on a {} door."}, {"index": 35, "image_id": 2414470, "entity": "car", "caption": "The man is sitting in the car's driver seat.", "question": ["is there the man ?", "is there the car's driver seat ?"], "prompt": "The man is sitting in the {}'s driver seat."}, {"index": 36, "image_id": 2412607, "entity": "car", "caption": "Automobile seats inside the car are gray", "question": ["are there automobile seats ?", "is there the car ?"], "prompt": "Automobile seats inside the {} are gray"}, {"index": 37, "image_id": 2412607, "entity": "car", "caption": "silver door handle on car", "question": ["is there silver door ?", "is there car ?"], "prompt": "silver door handle on {}"}, {"index": 38, "image_id": 2412101, "entity": "car", "caption": "Red car parked on right side of street ", "question": ["is there red car ?", "is there right side ?", "is there street ?"], "prompt": "Red {} parked on right side of street "}, {"index": 39, "image_id": 2412101, "entity": "car", "caption": "Front left tire on gray car.", "question": ["is there front ?", "is there tire ?", "is there gray car ?"], "prompt": "Front left tire on gray {}."}, {"index": 40, "image_id": 2411491, "entity": "car", "caption": "car door is unlocked", "question": ["is there car door ?"], "prompt": "{} door is unlocked"}, {"index": 41, "image_id": 2410940, "entity": "car", "caption": "Hood of car is big", "question": ["is there hood ?", "is there car ?"], "prompt": "Hood of {} is big"}, {"index": 42, "image_id": 2410404, "entity": "car", "caption": "Hood popped open on car in background.", "question": ["is there hood ?", "is there car ?", "is there background ?"], "prompt": "Hood popped open on {} in background."}, {"index": 43, "image_id": 2410319, "entity": "car", "caption": "woman is inside of car", "question": ["is there woman ?", "is there car ?"], "prompt": "woman is inside of {}"}, {"index": 44, "image_id": 2410303, "entity": "car", "caption": "dark car the dog is sitting in", "question": ["is there dark car ?", "is there the dog ?"], "prompt": "dark {} the dog is sitting in"}, {"index": 45, "image_id": 2410034, "entity": "car", "caption": "Strap of car sit", "question": ["is there strap ?", "is there car ?"], "prompt": "Strap of {} sit"}, {"index": 46, "image_id": 2409981, "entity": "car", "caption": "Flags are on top of the car", "question": ["are there flags ?", "is there top ?", "is there the car ?"], "prompt": "Flags are on top of the {}"}, {"index": 47, "image_id": 2409288, "entity": "car", "caption": "car is ordering food", "question": ["is there car ?", "is there food ?"], "prompt": "{} is ordering food"}, {"index": 48, "image_id": 2409288, "entity": "car", "caption": "Silver door lock on a car", "question": ["is there silver door ?", "is there a car ?"], "prompt": "Silver door lock on a {}"}, {"index": 49, "image_id": 2408616, "entity": "car", "caption": "road the car is driving on", "question": ["is there road ?", "is there the car ?"], "prompt": "road the {} is driving on"}, {"index": 50, "image_id": 2408935, "entity": "car", "caption": "Cat sitting on a car.", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat sitting on a {}."}, {"index": 51, "image_id": 2408590, "entity": "car", "caption": "Front of car is red", "question": ["is there front ?", "is there car ?"], "prompt": "Front of {} is red"}, {"index": 52, "image_id": 2408413, "entity": "car", "caption": "Bamper of car is black", "question": ["is there car ?"], "prompt": "Bamper of {} is black"}, {"index": 53, "image_id": 2408413, "entity": "car", "caption": "Front headlight on a car. ", "question": ["is there front headlight ?", "is there a car ?"], "prompt": "Front headlight on a {}. "}, {"index": 54, "image_id": 2408413, "entity": "car", "caption": "Front turn signal light on a car. ", "question": ["is there front turn signal light ?", "is there a car ?"], "prompt": "Front turn signal light on a {}. "}, {"index": 55, "image_id": 2408413, "entity": "car", "caption": "the side of the front headlight on the car", "question": ["is there the side ?", "is there the front headlight ?", "is there the car ?"], "prompt": "the side of the front headlight on the {}"}, {"index": 56, "image_id": 2408016, "entity": "car", "caption": "The word Jazz written on back of car", "question": ["is there the word jazz ?", "is there car ?"], "prompt": "The word Jazz written on back of {}"}, {"index": 57, "image_id": 2408012, "entity": "car", "caption": "the car has a black underneth", "question": ["is there the car ?", "is there a black underneth ?"], "prompt": "the {} has a black underneth"}, {"index": 58, "image_id": 2407776, "entity": "car", "caption": "a parking meter is next to the car", "question": ["is there a parking meter ?", "is there the car ?"], "prompt": "a parking meter is next to the {}"}, {"index": 59, "image_id": 2407740, "entity": "car", "caption": "both cars tail lights are on", "question": ["are there both cars tail lights ?"], "prompt": "both {}s tail lights are on"}, {"index": 60, "image_id": 2407740, "entity": "car", "caption": "A red light is on a second car. ", "question": ["is there a red light ?", "is there a second car ?"], "prompt": "A red light is on a second {}. "}, {"index": 61, "image_id": 2407740, "entity": "car", "caption": "rain drops on car windshield", "question": ["is there rain ?", "is there car windshield ?"], "prompt": "rain drops on {} windshield"}, {"index": 62, "image_id": 2407600, "entity": "car", "caption": "white cup placed on roof of car", "question": ["is there roof ?", "is there car ?"], "prompt": "white cup placed on roof of {}"}, {"index": 63, "image_id": 2407600, "entity": "car", "caption": "The back tire of the car where the man is sitting.", "question": ["is there the back tire ?", "is there the car ?", "is there the man ?"], "prompt": "The back tire of the {} where the man is sitting."}, {"index": 64, "image_id": 2407600, "entity": "car", "caption": "The front tire of the car where the man is sitting.", "question": ["is there the front tire ?", "is there the car ?", "is there the man ?"], "prompt": "The front tire of the {} where the man is sitting."}, {"index": 65, "image_id": 2407181, "entity": "car", "caption": "Man sitting on car ", "question": ["is there man ?", "is there car ?"], "prompt": "Man sitting on {} "}, {"index": 66, "image_id": 2407181, "entity": "car", "caption": "The man is sitting inside a car.", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is sitting inside a {}."}, {"index": 67, "image_id": 2406983, "entity": "car", "caption": "The car has a Mercedes emblem", "question": ["is there the car ?", "are there a mercedes emblem ?"], "prompt": "The {} has a Mercedes emblem"}, {"index": 68, "image_id": 2406983, "entity": "car", "caption": "the car has 55000000 on the trunk", "question": ["is there the car ?", "is there the trunk ?"], "prompt": "the {} has 55000000 on the trunk"}, {"index": 69, "image_id": 2406229, "entity": "car", "caption": "door handle on a car", "question": ["is there door ?", "is there a car ?"], "prompt": "door handle on a {}"}, {"index": 70, "image_id": 2405945, "entity": "car", "caption": "the side view mirror is on the car", "question": ["is there the side view mirror ?", "is there the car ?"], "prompt": "the side view mirror is on the {}"}, {"index": 71, "image_id": 2405945, "entity": "car", "caption": "the dog is inside the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is inside the {}"}, {"index": 72, "image_id": 2405945, "entity": "car", "caption": "the windshield is on the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "the windshield is on the {}"}, {"index": 73, "image_id": 2405130, "entity": "car", "caption": "this is a car ", "question": ["is there a car ?"], "prompt": "this is a {} "}, {"index": 74, "image_id": 2405042, "entity": "car", "caption": "this is the car's hindlight", "question": ["is there the car's hindlight ?"], "prompt": "this is the {}'s hindlight"}, {"index": 75, "image_id": 2405042, "entity": "car", "caption": "the car beside the meter is blue", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} beside the meter is blue"}, {"index": 76, "image_id": 2405042, "entity": "car", "caption": "the car behind the meter is white", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} behind the meter is white"}, {"index": 77, "image_id": 2405042, "entity": "car", "caption": "the blue car has a red tail light", "question": ["is there the blue car ?", "is there a red tail light ?"], "prompt": "the blue {} has a red tail light"}, {"index": 78, "image_id": 2404709, "entity": "car", "caption": "door handle on a gray car", "question": ["is there door ?", "is there a gray car ?"], "prompt": "door handle on a gray {}"}, {"index": 79, "image_id": 2404508, "entity": "car", "caption": "a cat is on the car", "question": ["is there a cat ?", "is there the car ?"], "prompt": "a cat is on the {}"}, {"index": 80, "image_id": 2404508, "entity": "car", "caption": "the car is dark inside", "question": ["is there the car ?"], "prompt": "the {} is dark inside"}, {"index": 81, "image_id": 2404508, "entity": "car", "caption": "White car, visible through car window. ", "question": ["is there white car ?", "is there car window ?"], "prompt": "White {}, visible through {} window. "}, {"index": 82, "image_id": 2404508, "entity": "car", "caption": "the cat is in the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is in the {}"}, {"index": 83, "image_id": 2404223, "entity": "car", "caption": "black car behind bush and fire hydrant", "question": ["is there black car ?", "is there fire hydrant ?"], "prompt": "black {} behind bush and fire hydrant"}, {"index": 84, "image_id": 2404223, "entity": "car", "caption": "The car has rims on", "question": ["is there the car ?", "are there rims ?"], "prompt": "The {} has rims on"}, {"index": 85, "image_id": 2403996, "entity": "car", "caption": "The dog is laying in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is laying in the {}."}, {"index": 86, "image_id": 2403996, "entity": "car", "caption": "this is a car air freshner", "question": ["is there a car air freshner ?"], "prompt": "this is a {} air freshner"}, {"index": 87, "image_id": 2403274, "entity": "car", "caption": "antenna attached to car", "question": ["is there antenna ?", "is there car ?"], "prompt": "antenna attached to {}"}, {"index": 88, "image_id": 2402657, "entity": "car", "caption": "side car mirror with sky reflected ", "question": ["is there side car mirror ?", "is there sky ?"], "prompt": "side {} mirror with sky reflected "}, {"index": 89, "image_id": 2402628, "entity": "car", "caption": "a car head light", "question": ["is there a car head ?"], "prompt": "a {} head light"}, {"index": 90, "image_id": 2401935, "entity": "car", "caption": "a car's door handle", "question": ["is there a car's door ?"], "prompt": "a {}'s door handle"}, {"index": 91, "image_id": 2401222, "entity": "car", "caption": "the woman is in a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "the woman is in a {}"}, {"index": 92, "image_id": 2401204, "entity": "car", "caption": "A cat is sitting on top of a car", "question": ["is there a cat ?", "is there top ?", "is there a car ?"], "prompt": "A cat is sitting on top of a {}"}, {"index": 93, "image_id": 2401204, "entity": "car", "caption": "cat is on the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is on the {}"}, {"index": 94, "image_id": 2401017, "entity": "car", "caption": "The car is silver.", "question": ["is there the car ?"], "prompt": "The {} is silver."}, {"index": 95, "image_id": 2401017, "entity": "car", "caption": "reflection shines on the door of the car", "question": ["is there reflection ?", "is there the door ?", "is there the car ?"], "prompt": "reflection shines on the door of the {}"}, {"index": 96, "image_id": 2400948, "entity": "car", "caption": "Surf board on a car", "question": ["is there surf board ?", "is there a car ?"], "prompt": "Surf board on a {}"}, {"index": 97, "image_id": 2400948, "entity": "car", "caption": "surfboards are on top of the car", "question": ["are there surfboards ?", "is there top ?", "is there the car ?"], "prompt": "surfboards are on top of the {}"}, {"index": 98, "image_id": 2400948, "entity": "car", "caption": "a steering wheel statue is on the middle of car", "question": ["is there a steering wheel statue ?", "is there the middle ?", "is there car ?"], "prompt": "a steering wheel statue is on the middle of {}"}, {"index": 99, "image_id": 2400948, "entity": "car", "caption": "people are standing behind car", "question": ["are there people ?", "is there car ?"], "prompt": "people are standing behind {}"}, {"index": 100, "image_id": 2400860, "entity": "car", "caption": "black door handles on white car", "question": ["is there black door ?", "is there white car ?"], "prompt": "black door handles on white {}"}, {"index": 101, "image_id": 2400860, "entity": "car", "caption": "a door handle on a car", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}"}, {"index": 102, "image_id": 2400806, "entity": "car", "caption": "a red suitcase is next to the car", "question": ["is there a red suitcase ?", "is there the car ?"], "prompt": "a red suitcase is next to the {}"}, {"index": 103, "image_id": 2400490, "entity": "car", "caption": "front door handle on car", "question": ["is there front door ?", "is there car ?"], "prompt": "front door handle on {}"}, {"index": 104, "image_id": 2400490, "entity": "car", "caption": "a car door handle", "question": ["is there a car door ?"], "prompt": "a {} door handle"}, {"index": 105, "image_id": 2400490, "entity": "car", "caption": "parked car is dark gray with four doors", "question": ["is there parked car ?", "are there four doors ?"], "prompt": "parked {} is dark gray with four doors"}, {"index": 106, "image_id": 2400490, "entity": "car", "caption": "a door handle on a car.", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}."}, {"index": 107, "image_id": 2400490, "entity": "car", "caption": "front left fender of a car.", "question": ["is there front left fender ?", "is there a car ?"], "prompt": "front left fender of a {}."}, {"index": 108, "image_id": 2400275, "entity": "car", "caption": "A person barely visible in the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "A person barely visible in the {}"}, {"index": 109, "image_id": 2400275, "entity": "car", "caption": "The window of the car the dog is sticking his head out of", "question": ["is there the window ?", "is there the car ?", "is there the dog ?", "is there his head ?"], "prompt": "The window of the {} the dog is sticking his head out of"}, {"index": 110, "image_id": 2400275, "entity": "car", "caption": "Dogs is in a car", "question": ["are there dogs ?", "is there a car ?"], "prompt": "Dogs is in a {}"}, {"index": 111, "image_id": 2399913, "entity": "car", "caption": "handle that helps you getting out of car", "question": ["is there car ?"], "prompt": "handle that helps you getting out of {}"}, {"index": 112, "image_id": 2399740, "entity": "car", "caption": "This mirror belongs to a car.", "question": ["is there this mirror ?", "is there a car ?"], "prompt": "This mirror belongs to a {}."}, {"index": 113, "image_id": 2399146, "entity": "car", "caption": "this is a car", "question": ["is there a car ?"], "prompt": "this is a {}"}, {"index": 114, "image_id": 2398786, "entity": "car", "caption": "Door handle on the driver side of a black car. ", "question": ["is there door ?", "is there the driver side ?", "is there a black car ?"], "prompt": "Door handle on the driver side of a black {}. "}, {"index": 115, "image_id": 2398088, "entity": "car", "caption": "seat buckle part in car", "question": ["is there seat buckle part ?", "is there car ?"], "prompt": "seat buckle part in {}"}, {"index": 116, "image_id": 2398088, "entity": "car", "caption": "A window is in the car.", "question": ["is there a window ?", "is there the car ?"], "prompt": "A window is in the {}."}, {"index": 117, "image_id": 2398030, "entity": "car", "caption": "Trees are behind the cars.", "question": ["are there trees ?", "are there the cars ?"], "prompt": "Trees are behind the {}s."}, {"index": 118, "image_id": 2398030, "entity": "car", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice {}s and trucks lined up"}, {"index": 119, "image_id": 2398030, "entity": "car", "caption": "car with hood that opens backwards ", "question": ["is there car ?", "is there hood ?"], "prompt": "{} with hood that opens backwards "}, {"index": 120, "image_id": 2397686, "entity": "car", "caption": "Person is inside car.", "question": ["is there person ?", "is there inside car ?"], "prompt": "Person is inside {}."}, {"index": 121, "image_id": 2396173, "entity": "car", "caption": "the zebra is near a car", "question": ["is there a car ?"], "prompt": "the zebra is near a {}"}, {"index": 122, "image_id": 2396020, "entity": "car", "caption": "grass next to car is dry ", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is dry "}, {"index": 123, "image_id": 2396020, "entity": "car", "caption": "grass next to car is color brown", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is color brown"}, {"index": 124, "image_id": 2396018, "entity": "car", "caption": "White car is behind meter", "question": ["is there white car ?", "is there meter ?"], "prompt": "White {} is behind meter"}, {"index": 125, "image_id": 2395874, "entity": "car", "caption": "air went inside car", "question": ["is there air ?", "is there car ?"], "prompt": "air went inside {}"}, {"index": 126, "image_id": 2395874, "entity": "car", "caption": "The zebra is in the car.", "question": ["is there the car ?"], "prompt": "The zebra is in the {}."}, {"index": 127, "image_id": 2395874, "entity": "car", "caption": "zebra's head pokes into car window", "question": ["is there zebra's head ?", "is there car window ?"], "prompt": "zebra's head pokes into {} window"}, {"index": 128, "image_id": 2395759, "entity": "car", "caption": "cows surround the car", "question": ["are there cows ?", "is there the car ?"], "prompt": "cows surround the {}"}, {"index": 129, "image_id": 2395759, "entity": "car", "caption": "animal going to bathroom beside car", "question": ["is there animal ?", "is there car ?"], "prompt": "animal going to bathroom beside {}"}, {"index": 130, "image_id": 2395588, "entity": "car", "caption": "two more cows wait in line to taste different parts of car, perhaps c[h]ow down", "question": ["are there two more cows ?", "is there line ?", "are there different parts ?", "is there car ?"], "prompt": "two more cows wait in line to taste different parts of {}, perhaps c[h]ow down"}, {"index": 131, "image_id": 2395338, "entity": "car", "caption": "teddy bear on a red car", "question": ["is there a red car ?"], "prompt": "teddy bear on a red {}"}, {"index": 132, "image_id": 2395338, "entity": "car", "caption": "The teddy bear is sitting on the car.", "question": ["is there the car ?"], "prompt": "The teddy bear is sitting on the {}."}, {"index": 133, "image_id": 2395338, "entity": "car", "caption": "The seats in the car is tan.", "question": ["are there the seats ?", "is there the car ?", "is there tan ?"], "prompt": "The seats in the {} is tan."}, {"index": 134, "image_id": 2395338, "entity": "car", "caption": "The bear is sitting by the side mirror of the car.", "question": ["is there the bear ?", "is there the side mirror ?", "is there the car ?"], "prompt": "The bear is sitting by the side mirror of the {}."}, {"index": 135, "image_id": 2395338, "entity": "car", "caption": "The car has windshield wipers.", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "The {} has windshield wipers."}, {"index": 136, "image_id": 2395338, "entity": "car", "caption": "brown teddy bear sitting on car", "question": ["is there car ?"], "prompt": "brown teddy bear sitting on {}"}, {"index": 137, "image_id": 2395338, "entity": "car", "caption": "little teddy bear sitting on car", "question": ["is there car ?"], "prompt": "little teddy bear sitting on {}"}, {"index": 138, "image_id": 2395208, "entity": "car", "caption": "front left light of a car", "question": ["is there front ?", "is there light ?", "is there a car ?"], "prompt": "front left light of a {}"}, {"index": 139, "image_id": 2394987, "entity": "car", "caption": "the fence is behind the car", "question": ["is there the fence ?", "is there the car ?"], "prompt": "the fence is behind the {}"}, {"index": 140, "image_id": 2394987, "entity": "car", "caption": "the cars says coca-cola", "question": ["are there the cars ?"], "prompt": "the {}s says coca-cola"}, {"index": 141, "image_id": 2393712, "entity": "car", "caption": "The car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "The {} has a mirror"}, {"index": 142, "image_id": 2393712, "entity": "car", "caption": "the car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 143, "image_id": 2391973, "entity": "car", "caption": "the cars control panel", "question": ["are there the cars control panel ?"], "prompt": "the {}s control panel"}, {"index": 144, "image_id": 2390809, "entity": "car", "caption": "this is a car tire", "question": ["is there a car tire ?"], "prompt": "this is a {} tire"}, {"index": 145, "image_id": 2390710, "entity": "car", "caption": "the cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is on the {}"}, {"index": 146, "image_id": 2390710, "entity": "car", "caption": "cat sitting and crouching on hood of car", "question": ["is there cat ?", "is there hood ?", "is there car ?"], "prompt": "cat sitting and crouching on hood of {}"}, {"index": 147, "image_id": 2390672, "entity": "car", "caption": "The dog is in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is in the {}."}, {"index": 148, "image_id": 2390672, "entity": "car", "caption": "a German shepard alone inside a car with the windows rolled up", "question": ["is there a german shepard ?", "is there a car ?", "are there the windows ?"], "prompt": "a German shepard alone inside a {} with the windows rolled up"}, {"index": 149, "image_id": 2390553, "entity": "car", "caption": "the dash in the car is black", "question": ["is there the dash ?", "is there the car ?"], "prompt": "the dash in the {} is black"}, {"index": 150, "image_id": 2390177, "entity": "car", "caption": "shiny roof rack on red car", "question": ["is there shiny roof rack ?", "is there red car ?"], "prompt": "shiny roof rack on red {}"}, {"index": 151, "image_id": 2389910, "entity": "car", "caption": "a slipstream sports car has bikes on it.", "question": ["are there a slipstream sports car ?", "are there bikes ?"], "prompt": "a slipstream sports {} has bikes on it."}, {"index": 152, "image_id": 2389614, "entity": "car", "caption": "Dog hanging out of car. ", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog hanging out of {}. "}, {"index": 153, "image_id": 2389485, "entity": "car", "caption": "Woman watching animals in the car.", "question": ["is there woman ?", "are there animals ?", "is there the car ?"], "prompt": "Woman watching animals in the {}."}, {"index": 154, "image_id": 2389479, "entity": "car", "caption": "a car with several bicycles mounted on top of it", "question": ["is there a car ?", "are there several bicycles ?", "is there top ?"], "prompt": "a {} with several bicycles mounted on top of it"}, {"index": 155, "image_id": 2389474, "entity": "car", "caption": "The dog is looking out the car window.", "question": ["is there the dog ?", "is there the car window ?"], "prompt": "The dog is looking out the {} window."}, {"index": 156, "image_id": 2388774, "entity": "car", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the bird is in the {} "}, {"index": 157, "image_id": 2388733, "entity": "car", "caption": "bicycles mounted on car", "question": ["are there bicycles ?", "is there car ?"], "prompt": "bicycles mounted on {}"}, {"index": 158, "image_id": 2388584, "entity": "car", "caption": "A doll head in a car.", "question": ["is there a doll head ?", "is there a car ?"], "prompt": "A doll head in a {}."}, {"index": 159, "image_id": 2388584, "entity": "car", "caption": "Another doll head inside a car.", "question": ["is there another doll head ?", "is there a car ?"], "prompt": "Another doll head inside a {}."}, {"index": 160, "image_id": 2388584, "entity": "car", "caption": "empty tube of toothpaste taped to top of car", "question": ["is there empty tube ?", "is there toothpaste ?", "is there top ?", "is there car ?"], "prompt": "empty tube of toothpaste taped to top of {}"}, {"index": 161, "image_id": 2388584, "entity": "car", "caption": "two toothbrushes taped to top of car", "question": ["are there two toothbrushes ?", "is there top ?", "is there car ?"], "prompt": "two toothbrushes taped to top of {}"}, {"index": 162, "image_id": 2388052, "entity": "car", "caption": "roof of car is blue and yellow", "question": ["is there roof ?", "is there car ?"], "prompt": "roof of {} is blue and yellow"}, {"index": 163, "image_id": 2388052, "entity": "car", "caption": "door of car is yellow", "question": ["is there door ?", "is there car ?"], "prompt": "door of {} is yellow"}, {"index": 164, "image_id": 2388010, "entity": "car", "caption": "white car pulled off on side of road", "question": ["is there white car ?", "is there side ?", "is there road ?"], "prompt": "white {} pulled off on side of road"}, {"index": 165, "image_id": 2388010, "entity": "car", "caption": "a door handle ona car", "question": ["is there a door ?"], "prompt": "a door handle ona {}"}, {"index": 166, "image_id": 2387950, "entity": "car", "caption": "dog is resting on green car", "question": ["is there dog ?", "is there green car ?"], "prompt": "dog is resting on green {}"}, {"index": 167, "image_id": 2387327, "entity": "car", "caption": "The dogs are in a car.", "question": ["are there the dogs ?", "is there a car ?"], "prompt": "The dogs are in a {}."}, {"index": 168, "image_id": 2386114, "entity": "car", "caption": "white car door handle", "question": ["is there white car door ?"], "prompt": "white {} door handle"}, {"index": 169, "image_id": 2385961, "entity": "car", "caption": "a kitty cat is sleeping under a car", "question": ["is there a kitty cat ?", "is there a car ?"], "prompt": "a kitty cat is sleeping under a {}"}, {"index": 170, "image_id": 2385697, "entity": "car", "caption": "the surfboards are sticking out of the car", "question": ["are there the surfboards ?", "is there the car ?"], "prompt": "the surfboards are sticking out of the {}"}, {"index": 171, "image_id": 2385697, "entity": "car", "caption": "the tag is on the back of the car", "question": ["is there the tag ?", "is there the back ?", "is there the car ?"], "prompt": "the tag is on the back of the {}"}, {"index": 172, "image_id": 2385697, "entity": "car", "caption": "the surfboards are on the roof of the car", "question": ["are there the surfboards ?", "is there the roof ?", "is there the car ?"], "prompt": "the surfboards are on the roof of the {}"}, {"index": 173, "image_id": 2385466, "entity": "car", "caption": "Dog is inside car", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog is inside {}"}, {"index": 174, "image_id": 2385251, "entity": "car", "caption": "fence is in front of car", "question": ["is there fence ?", "is there front ?", "is there car ?"], "prompt": "fence is in front of {}"}, {"index": 175, "image_id": 2384917, "entity": "car", "caption": "Light on the car is on. ", "question": ["is there light ?", "is there the car ?"], "prompt": "Light on the {} is on. "}, {"index": 176, "image_id": 2383569, "entity": "car", "caption": "Three bicycles lined up behind a green car.", "question": ["are there three bicycles ?", "is there a green car ?"], "prompt": "Three bicycles lined up behind a green {}."}, {"index": 177, "image_id": 2383096, "entity": "car", "caption": "the car has wood grain", "question": ["is there the car ?", "is there wood grain ?"], "prompt": "the {} has wood grain"}, {"index": 178, "image_id": 2383016, "entity": "car", "caption": "Front left tire of car", "question": ["is there front left tire ?", "is there car ?"], "prompt": "Front left tire of {}"}, {"index": 179, "image_id": 2382637, "entity": "car", "caption": "rails surround roof of green car", "question": ["are there rails ?", "is there surround roof ?", "is there green car ?"], "prompt": "rails surround roof of green {}"}, {"index": 180, "image_id": 2382494, "entity": "car", "caption": "A woman looks into the white car", "question": ["is there a woman ?", "is there the white car ?"], "prompt": "A woman looks into the white {}"}, {"index": 181, "image_id": 2382257, "entity": "car", "caption": "car front passenger side handle", "question": ["is there car front passenger side handle ?"], "prompt": "{} front passenger side handle"}, {"index": 182, "image_id": 2382257, "entity": "car", "caption": "car rear passenger side handle", "question": ["is there car rear passenger side handle ?"], "prompt": "{} rear passenger side handle"}, {"index": 183, "image_id": 2382257, "entity": "car", "caption": "The car door handles", "question": ["is there the car door ?"], "prompt": "The {} door handles"}, {"index": 184, "image_id": 2381937, "entity": "car", "caption": "the driver of the toy car is piggy", "question": ["is there the driver ?", "is there the toy car ?", "is there piggy ?"], "prompt": "the driver of the toy {} is piggy"}, {"index": 185, "image_id": 2381832, "entity": "car", "caption": "Jeep parked next to car", "question": ["is there jeep ?", "is there car ?"], "prompt": "Jeep parked next to {}"}, {"index": 186, "image_id": 2381810, "entity": "car", "caption": "Person is driving a car.", "question": ["is there person ?", "is there a car ?"], "prompt": "Person is driving a {}."}, {"index": 187, "image_id": 2381447, "entity": "car", "caption": "the tag on the car has letters and numbers on it", "question": ["is there the tag ?", "is there the car ?", "are there letters ?", "are there numbers ?"], "prompt": "the tag on the {} has letters and numbers on it"}, {"index": 188, "image_id": 2381447, "entity": "car", "caption": "the car is a CX-7", "question": ["is there the car ?", "is there a cx-7 ?"], "prompt": "the {} is a CX-7"}, {"index": 189, "image_id": 2381447, "entity": "car", "caption": "Cat standing near a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat standing near a {}"}, {"index": 190, "image_id": 2381315, "entity": "car", "caption": "back end of a woman's car is open", "question": ["is there back end ?", "is there a woman's car ?"], "prompt": "back end of a woman's {} is open"}, {"index": 191, "image_id": 2381315, "entity": "car", "caption": "The woman is standing behind a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "The woman is standing behind a {}"}, {"index": 192, "image_id": 2381118, "entity": "car", "caption": "car has a sticker on the windshield ", "question": ["is there car ?", "is there a sticker ?", "is there the windshield ?"], "prompt": "{} has a sticker on the windshield "}, {"index": 193, "image_id": 2381101, "entity": "car", "caption": "back window of car with sunshine coming through", "question": ["is there back window ?", "is there car ?", "is there sunshine ?"], "prompt": "back window of {} with sunshine coming through"}, {"index": 194, "image_id": 2381051, "entity": "car", "caption": "car top tie down rack", "question": ["is there car top tie ?"], "prompt": "{} top tie down rack"}, {"index": 195, "image_id": 2380669, "entity": "car", "caption": "a car headlight ", "question": ["is there a car headlight ?"], "prompt": "a {} headlight "}, {"index": 196, "image_id": 2380293, "entity": "car", "caption": "speedometer showing the car is going 0 MPH", "question": ["is there speedometer ?", "is there the car ?"], "prompt": "speedometer showing the {} is going 0 MPH"}, {"index": 197, "image_id": 2380171, "entity": "car", "caption": "black door handle on car", "question": ["is there black door ?", "is there car ?"], "prompt": "black door handle on {}"}, {"index": 198, "image_id": 2379398, "entity": "car", "caption": "The lamb is next to the car", "question": ["is there the car ?"], "prompt": "The lamb is next to the {}"}, {"index": 199, "image_id": 2379398, "entity": "car", "caption": "The car is on top of gravel", "question": ["is there the car ?", "is there top ?", "is there gravel ?"], "prompt": "The {} is on top of gravel"}, {"index": 200, "image_id": 2379270, "entity": "car", "caption": "the people are in the car", "question": ["are there the people ?", "is there the car ?"], "prompt": "the people are in the {}"}, {"index": 201, "image_id": 2378437, "entity": "car", "caption": "window of car is semi-open", "question": ["is there window ?", "is there car ?"], "prompt": "window of {} is semi-open"}, {"index": 202, "image_id": 2377492, "entity": "car", "caption": "He is next to the car.", "question": ["is there the car ?"], "prompt": "He is next to the {}."}, {"index": 203, "image_id": 2377281, "entity": "car", "caption": "headlights of car are white", "question": ["are there headlights ?", "is there car ?"], "prompt": "headlights of {} are white"}, {"index": 204, "image_id": 2377134, "entity": "car", "caption": "Leather suitcase is strapped to the trunk of the car", "question": ["is there leather suitcase ?", "is there the trunk ?", "is there the car ?"], "prompt": "Leather suitcase is strapped to the trunk of the {}"}, {"index": 205, "image_id": 2377065, "entity": "car", "caption": "The cat is laying on a car.", "question": ["is there the cat ?", "is there a car ?"], "prompt": "The cat is laying on a {}."}, {"index": 206, "image_id": 2376812, "entity": "car", "caption": "man standing in front of a parked car", "question": ["is there man ?", "is there front ?", "is there a parked car ?"], "prompt": "man standing in front of a parked {}"}, {"index": 207, "image_id": 2376666, "entity": "car", "caption": "Two cars driving down the road.", "question": ["are there two cars ?", "is there the road ?"], "prompt": "Two {}s driving down the road."}, {"index": 208, "image_id": 2376189, "entity": "car", "caption": "The baby is in the car.", "question": ["is there the baby ?", "is there the car ?"], "prompt": "The baby is in the {}."}, {"index": 209, "image_id": 2374963, "entity": "car", "caption": "man standing next to car", "question": ["is there man ?", "is there car ?"], "prompt": "man standing next to {}"}, {"index": 210, "image_id": 2374891, "entity": "car", "caption": "A dog popping outa a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog popping outa a {}"}, {"index": 211, "image_id": 2374500, "entity": "car", "caption": "A cat is laying on a car", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is laying on a {}"}, {"index": 212, "image_id": 2374500, "entity": "car", "caption": "The cat is on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "The cat is on top of a {}"}, {"index": 213, "image_id": 2374500, "entity": "car", "caption": "The cat is on a white car", "question": ["is there the cat ?", "is there a white car ?"], "prompt": "The cat is on a white {}"}, {"index": 214, "image_id": 2374500, "entity": "car", "caption": "the tabby cat is laying on the car", "question": ["is there the tabby cat ?", "is there the car ?"], "prompt": "the tabby cat is laying on the {}"}, {"index": 215, "image_id": 2374203, "entity": "car", "caption": "The blue car has an open window", "question": ["is there the blue car ?", "is there an open window ?"], "prompt": "The blue {} has an open window"}, {"index": 216, "image_id": 2374203, "entity": "car", "caption": "A man is sitting in the blue car", "question": ["is there a man ?", "is there the blue car ?"], "prompt": "A man is sitting in the blue {}"}, {"index": 217, "image_id": 2374203, "entity": "car", "caption": "man driving a blue car", "question": ["is there man ?", "is there a blue car ?"], "prompt": "man driving a blue {}"}, {"index": 218, "image_id": 2374072, "entity": "car", "caption": "Gas pump behind car.", "question": ["is there gas pump ?", "is there car ?"], "prompt": "Gas pump behind {}."}, {"index": 219, "image_id": 2372618, "entity": "car", "caption": "Dog is inside the car.", "question": ["is there dog ?", "is there the car ?"], "prompt": "Dog is inside the {}."}, {"index": 220, "image_id": 2372618, "entity": "car", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog is riding in a {}"}, {"index": 221, "image_id": 2372618, "entity": "car", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A dog is in its master's {}"}, {"index": 222, "image_id": 2372618, "entity": "car", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog likes riding in a {}"}, {"index": 223, "image_id": 2372587, "entity": "car", "caption": "Classic car headlight", "question": ["is there classic car headlight ?"], "prompt": "Classic {} headlight"}, {"index": 224, "image_id": 2372587, "entity": "car", "caption": "Two surfboards attach to classic car roof", "question": ["are there two surfboards ?", "is there classic car roof ?"], "prompt": "Two surfboards attach to classic {} roof"}, {"index": 225, "image_id": 2372550, "entity": "car", "caption": "Mud flaps on a blue car", "question": ["are there mud flaps ?", "is there a blue car ?"], "prompt": "Mud flaps on a blue {}"}, {"index": 226, "image_id": 2372422, "entity": "car", "caption": "A back car door handle", "question": ["is there a back car door ?"], "prompt": "A back {} door handle"}, {"index": 227, "image_id": 2371952, "entity": "car", "caption": "seat belt hanging inside a car", "question": ["is there seat belt ?", "is there a car ?"], "prompt": "seat belt hanging inside a {}"}, {"index": 228, "image_id": 2371950, "entity": "car", "caption": "the cat is in a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is in a {}"}, {"index": 229, "image_id": 2371208, "entity": "car", "caption": "a chrome door handle on a car", "question": ["is there a chrome door ?", "is there a car ?"], "prompt": "a chrome door handle on a {}"}, {"index": 230, "image_id": 2371208, "entity": "car", "caption": "Silver door handle on green car", "question": ["is there silver door ?", "is there green car ?"], "prompt": "Silver door handle on green {}"}, {"index": 231, "image_id": 2370927, "entity": "car", "caption": "the elephant is close to the car ", "question": ["is there the elephant ?", "is there the car ?"], "prompt": "the elephant is close to the {} "}, {"index": 232, "image_id": 2370584, "entity": "car", "caption": "hood of the car is up", "question": ["is there hood ?", "is there the car ?"], "prompt": "hood of the {} is up"}, {"index": 233, "image_id": 2370584, "entity": "car", "caption": "several people standing away from the cars", "question": ["are there several people ?", "are there the cars ?"], "prompt": "several people standing away from the {}s"}, {"index": 234, "image_id": 2370584, "entity": "car", "caption": "trees located behind place where car show is", "question": ["are there trees ?", "is there place ?", "is there car show ?"], "prompt": "trees located behind place where {} show is"}, {"index": 235, "image_id": 2370246, "entity": "car", "caption": "the cat is lying on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is lying on the {}"}, {"index": 236, "image_id": 2369015, "entity": "car", "caption": "Surfboard is on top of car", "question": ["is there surfboard ?", "is there top ?", "is there car ?"], "prompt": "Surfboard is on top of {}"}, {"index": 237, "image_id": 2368457, "entity": "car", "caption": "baby looking out the window of the car", "question": ["is there baby ?", "is there the window ?", "is there the car ?"], "prompt": "baby looking out the window of the {}"}, {"index": 238, "image_id": 2368457, "entity": "car", "caption": "old style car driving down the road", "question": ["is there old style car ?", "is there the road ?"], "prompt": "old style {} driving down the road"}, {"index": 239, "image_id": 2368457, "entity": "car", "caption": "advertisement is on the door of the car", "question": ["is there advertisement ?", "is there the door ?", "is there the car ?"], "prompt": "advertisement is on the door of the {}"}, {"index": 240, "image_id": 2368457, "entity": "car", "caption": "a person is driving the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "a person is driving the {}"}, {"index": 241, "image_id": 2368457, "entity": "car", "caption": "a rack with straps is on the car", "question": ["is there a rack ?", "are there straps ?", "is there the car ?"], "prompt": "a rack with straps is on the {}"}, {"index": 242, "image_id": 2367648, "entity": "car", "caption": "A car is at an auto show", "question": ["is there a car ?", "is there an auto show ?"], "prompt": "A {} is at an auto show"}, {"index": 243, "image_id": 2367406, "entity": "car", "caption": "The curb is next to the cars.", "question": ["is there the curb ?", "are there the cars ?"], "prompt": "The curb is next to the {}s."}, {"index": 244, "image_id": 2367276, "entity": "car", "caption": "the car handle on the passenger door", "question": ["is there the car handle ?", "is there the passenger door ?"], "prompt": "the {} handle on the passenger door"}, {"index": 245, "image_id": 2367258, "entity": "car", "caption": "giraffe peeking in the car", "question": ["is there the car ?"], "prompt": "giraffe peeking in the {}"}, {"index": 246, "image_id": 2367258, "entity": "car", "caption": "the scene is inside the car ", "question": ["is there the scene ?", "is there the car ?"], "prompt": "the scene is inside the {} "}, {"index": 247, "image_id": 2367258, "entity": "car", "caption": "cars sunroof protective seal", "question": ["are there cars ?", "is there protective seal ?"], "prompt": "{}s sunroof protective seal"}, {"index": 248, "image_id": 2367033, "entity": "car", "caption": "the silver car door handle", "question": ["is there the silver car door ?"], "prompt": "the silver {} door handle"}, {"index": 249, "image_id": 2365787, "entity": "car", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th edog is in the {} "}, {"index": 250, "image_id": 2365750, "entity": "car", "caption": "This is a car mirror", "question": ["is there a car mirror ?"], "prompt": "This is a {} mirror"}, {"index": 251, "image_id": 2365750, "entity": "car", "caption": "This is a car window", "question": ["is there a car window ?"], "prompt": "This is a {} window"}, {"index": 252, "image_id": 2365458, "entity": "car", "caption": "one headlight on front of car", "question": ["is there one headlight ?", "is there front ?", "is there car ?"], "prompt": "one headlight on front of {}"}, {"index": 253, "image_id": 2364504, "entity": "car", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One dog is sitting in the {}."}, {"index": 254, "image_id": 2364504, "entity": "car", "caption": "Buildings are outside the car.", "question": ["are there buildings ?", "is there the car ?"], "prompt": "Buildings are outside the {}."}, {"index": 255, "image_id": 2364109, "entity": "car", "caption": "front dashboard of car where a rider took the photo", "question": ["is there front dashboard ?", "is there car ?", "is there a rider ?", "is there the photo ?"], "prompt": "front dashboard of {} where a rider took the photo"}, {"index": 256, "image_id": 2363425, "entity": "car", "caption": "the door handle on a car", "question": ["is there the door ?", "is there a car ?"], "prompt": "the door handle on a {}"}, {"index": 257, "image_id": 2363424, "entity": "car", "caption": "several people standing behind car", "question": ["are there several people ?", "is there car ?"], "prompt": "several people standing behind {}"}, {"index": 258, "image_id": 2363415, "entity": "car", "caption": "black car door handle on a white car", "question": ["is there black car door ?", "is there a white car ?"], "prompt": "black {} door handle on a white {}"}, {"index": 259, "image_id": 2363359, "entity": "car", "caption": "the writing on the car appears to be chinese", "question": ["is there the writing ?", "is there the car ?"], "prompt": "the writing on the {} appears to be chinese"}, {"index": 260, "image_id": 2363195, "entity": "car", "caption": "Ontario plates are on the car", "question": ["are there ontario plates ?", "is there the car ?"], "prompt": "Ontario plates are on the {}"}, {"index": 261, "image_id": 2363195, "entity": "car", "caption": "The cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}"}, {"index": 262, "image_id": 2362213, "entity": "car", "caption": "feline resting in car", "question": ["is there car ?"], "prompt": "feline resting in {}"}, {"index": 263, "image_id": 2362071, "entity": "car", "caption": "it is the windshield of the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "it is the windshield of the {}"}, {"index": 264, "image_id": 2362050, "entity": "car", "caption": "A Mercedes emblem is on the car.", "question": ["are there a mercedes emblem ?", "is there the car ?"], "prompt": "A Mercedes emblem is on the {}."}, {"index": 265, "image_id": 2361191, "entity": "car", "caption": "a red bird is on the car's mirror", "question": ["is there a red bird ?", "is there the car's mirror ?"], "prompt": "a red bird is on the {}'s mirror"}, {"index": 266, "image_id": 2360825, "entity": "car", "caption": "A car door is open.", "question": ["is there a car door ?"], "prompt": "A {} door is open."}, {"index": 267, "image_id": 2360825, "entity": "car", "caption": "A person is sitting in back of a car.", "question": ["is there a person ?", "is there a car ?"], "prompt": "A person is sitting in back of a {}."}, {"index": 268, "image_id": 2360521, "entity": "car", "caption": "this car has it's tail lights on", "question": ["is there this car ?", "are there it's tail lights ?"], "prompt": "this {} has it's tail lights on"}, {"index": 269, "image_id": 2360370, "entity": "car", "caption": "the man is standing by the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "the man is standing by the {}"}, {"index": 270, "image_id": 2360370, "entity": "car", "caption": "the bananas are in the car", "question": ["are there the bananas ?", "is there the car ?"], "prompt": "the bananas are in the {}"}, {"index": 271, "image_id": 2360146, "entity": "car", "caption": "Teddy bears in the car", "question": ["is there the car ?"], "prompt": "Teddy bears in the {}"}, {"index": 272, "image_id": 2359127, "entity": "car", "caption": "numbers on car are 2 and 08", "question": ["are there numbers ?", "is there car ?"], "prompt": "numbers on {} are 2 and 08"}, {"index": 273, "image_id": 2358763, "entity": "car", "caption": "This is a car hood", "question": ["is there a car hood ?"], "prompt": "This is a {} hood"}, {"index": 274, "image_id": 2358763, "entity": "car", "caption": "This is a car door", "question": ["is there a car door ?"], "prompt": "This is a {} door"}, {"index": 275, "image_id": 2358763, "entity": "car", "caption": "Water is on the car", "question": ["is there water ?", "is there the car ?"], "prompt": "Water is on the {}"}, {"index": 276, "image_id": 2358763, "entity": "car", "caption": "The car is next to trees", "question": ["is there the car ?", "are there trees ?"], "prompt": "The {} is next to trees"}, {"index": 277, "image_id": 2358763, "entity": "car", "caption": "The car has a steering wheel", "question": ["is there the car ?", "is there a steering wheel ?"], "prompt": "The {} has a steering wheel"}, {"index": 278, "image_id": 2358763, "entity": "car", "caption": "A car's reflection is in the window", "question": ["is there a car's reflection ?", "is there the window ?"], "prompt": "A {}'s reflection is in the window"}, {"index": 279, "image_id": 2357815, "entity": "car", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white {} is behind the truck"}, {"index": 280, "image_id": 2357637, "entity": "car", "caption": "the cat is sitting on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "the cat is sitting on top of a {}"}, {"index": 281, "image_id": 2357540, "entity": "car", "caption": "car has yellow license plate", "question": ["is there car ?", "is there yellow license plate ?"], "prompt": "{} has yellow license plate"}, {"index": 282, "image_id": 2357435, "entity": "car", "caption": "Suit cases in car packed", "question": ["are there suit cases ?"], "prompt": "Suit cases in {} packed"}, {"index": 283, "image_id": 2357435, "entity": "car", "caption": "user car controls black switch", "question": ["is there user car ?", "is there black switch ?"], "prompt": "user {} controls black switch"}, {"index": 284, "image_id": 2357435, "entity": "car", "caption": "back door of car is open", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is open"}, {"index": 285, "image_id": 2357435, "entity": "car", "caption": "back door of car is up", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is up"}, {"index": 286, "image_id": 2357227, "entity": "car", "caption": "people stand by a car", "question": ["are there people ?", "is there a car ?"], "prompt": "people stand by a {}"}, {"index": 287, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the gray car.", "question": ["is there the left front headlight ?", "is there the gray car ?"], "prompt": "The left front headlight of the gray {}."}, {"index": 288, "image_id": 2356915, "entity": "car", "caption": "The right front headlight on the black car.", "question": ["is there the right front headlight ?", "is there the black car ?"], "prompt": "The right front headlight on the black {}."}, {"index": 289, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the black car.", "question": ["is there the left front headlight ?", "is there the black car ?"], "prompt": "The left front headlight of the black {}."}, {"index": 290, "image_id": 2356554, "entity": "car", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "dog is sitting in side {}"}, {"index": 291, "image_id": 2355930, "entity": "car", "caption": "the cat is on top of the car", "question": ["is there the cat ?", "is there top ?", "is there the car ?"], "prompt": "the cat is on top of the {}"}, {"index": 292, "image_id": 2355930, "entity": "car", "caption": "the car has a license plate", "question": ["is there the car ?", "is there a license plate ?"], "prompt": "the {} has a license plate"}, {"index": 293, "image_id": 2355930, "entity": "car", "caption": "the wood is beside the car", "question": ["is there the wood ?", "is there the car ?"], "prompt": "the wood is beside the {}"}, {"index": 294, "image_id": 2355930, "entity": "car", "caption": "the car has seats", "question": ["is there the car ?", "are there seats ?"], "prompt": "the {} has seats"}, {"index": 295, "image_id": 2355512, "entity": "car", "caption": "the cat is under the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is under the {}"}, {"index": 296, "image_id": 2354802, "entity": "car", "caption": "side of the car is gray", "question": ["is there side ?", "is there the car ?"], "prompt": "side of the {} is gray"}, {"index": 297, "image_id": 2354802, "entity": "car", "caption": "car has advertisements all over paint job", "question": ["is there car ?", "are there advertisements ?", "is there paint job ?"], "prompt": "{} has advertisements all over paint job"}, {"index": 298, "image_id": 2354519, "entity": "car", "caption": "the shoes next to the car", "question": ["are there the shoes ?", "is there the car ?"], "prompt": "the shoes next to the {}"}, {"index": 299, "image_id": 2353437, "entity": "car", "caption": "a cat is on the car hood", "question": ["is there a cat ?", "is there the car hood ?"], "prompt": "a cat is on the {} hood"}, {"index": 300, "image_id": 2353208, "entity": "car", "caption": "the cat is sitting on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is sitting on the {}"}, {"index": 301, "image_id": 2353208, "entity": "car", "caption": "the car has windshield wipers", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "the {} has windshield wipers"}, {"index": 302, "image_id": 2353208, "entity": "car", "caption": "A cat is sitting on a car. ", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is sitting on a {}. "}, {"index": 303, "image_id": 2353208, "entity": "car", "caption": "A car has black windshield wipers. ", "question": ["is there a car ?", "are there black windshield wipers ?"], "prompt": "A {} has black windshield wipers. "}, {"index": 304, "image_id": 2353208, "entity": "car", "caption": "A car is under a cat. ", "question": ["is there a car ?", "is there a cat ?"], "prompt": "A {} is under a cat. "}, {"index": 305, "image_id": 2353125, "entity": "car", "caption": "a bicycle is on the car roof", "question": ["is there a bicycle ?", "is there the car roof ?"], "prompt": "a bicycle is on the {} roof"}, {"index": 306, "image_id": 2353125, "entity": "car", "caption": "the car has a carrier", "question": ["is there the car ?", "is there a carrier ?"], "prompt": "the {} has a {}rier"}, {"index": 307, "image_id": 2353125, "entity": "car", "caption": "Door handle on the car.", "question": ["is there door ?", "is there the car ?"], "prompt": "Door handle on the {}."}, {"index": 308, "image_id": 2352313, "entity": "car", "caption": "car door handle", "question": ["is there car door ?"], "prompt": "{} door handle"}, {"index": 309, "image_id": 2352313, "entity": "car", "caption": "door handle on a black car", "question": ["is there door ?", "is there a black car ?"], "prompt": "door handle on a black {}"}, {"index": 310, "image_id": 2352195, "entity": "car", "caption": "Blue and white bus parked next to the red car.", "question": ["is there blue and white bus ?", "is there the red car ?"], "prompt": "Blue and white bus parked next to the red {}."}, {"index": 311, "image_id": 2351364, "entity": "car", "caption": "She is next to the car.", "question": ["is there the car ?"], "prompt": "She is next to the {}."}, {"index": 312, "image_id": 2350995, "entity": "car", "caption": "A dog and man are riding in a white car.", "question": ["is there a dog ?", "is there man ?", "is there a white car ?"], "prompt": "A dog and man are riding in a white {}."}, {"index": 313, "image_id": 2350974, "entity": "car", "caption": "boy reflected in the car's window", "question": ["is there boy ?", "is there the car's window ?"], "prompt": "boy reflected in the {}'s window"}, {"index": 314, "image_id": 2350933, "entity": "car", "caption": "A car is in the window's reflection", "question": ["is there a car ?", "is there the window's reflection ?"], "prompt": "A {} is in the window's reflection"}, {"index": 315, "image_id": 2350869, "entity": "car", "caption": "line of cars stopped at intersection", "question": ["is there line ?", "are there cars ?", "is there intersection ?"], "prompt": "line of {}s stopped at intersection"}, {"index": 316, "image_id": 2350581, "entity": "car", "caption": "rear left tire on car", "question": ["is there rear left tire ?", "is there car ?"], "prompt": "rear left tire on {}"}, {"index": 317, "image_id": 2350581, "entity": "car", "caption": "front left tire on car", "question": ["is there front ?", "is there tire ?", "is there car ?"], "prompt": "front left tire on {}"}, {"index": 318, "image_id": 2350002, "entity": "car", "caption": "A car is on the road", "question": ["is there a car ?", "is there the road ?"], "prompt": "A {} is on the road"}, {"index": 319, "image_id": 2350002, "entity": "car", "caption": "A dog is sitting inside the car", "question": ["is there a dog ?", "is there the car ?"], "prompt": "A dog is sitting inside the {}"}, {"index": 320, "image_id": 2349972, "entity": "car", "caption": "a car having bags", "question": ["is there a car ?", "are there bags ?"], "prompt": "a {} having bags"}, {"index": 321, "image_id": 2349597, "entity": "car", "caption": "a car is by the dog", "question": ["is there a car ?", "is there the dog ?"], "prompt": "a {} is by the dog"}, {"index": 322, "image_id": 2348921, "entity": "car", "caption": "the child is in a car", "question": ["is there the child ?", "is there a car ?"], "prompt": "the child is in a {}"}, {"index": 323, "image_id": 2348625, "entity": "car", "caption": "this car has its break lights on ", "question": ["is there this car ?", "are there its break lights ?"], "prompt": "this {} has its break lights on "}, {"index": 324, "image_id": 2348416, "entity": "car", "caption": "indicator lights on the rear of a car", "question": ["are there indicator lights ?", "is there the rear ?", "is there a car ?"], "prompt": "indicator lights on the rear of a {}"}, {"index": 325, "image_id": 2348408, "entity": "car", "caption": "the window is down on the car", "question": ["is there the window ?", "is there the car ?"], "prompt": "the window is down on the {}"}, {"index": 326, "image_id": 2347190, "entity": "car", "caption": "the car front is grey in color", "question": ["is there the car front ?", "is there color ?"], "prompt": "the {} front is grey in color"}, {"index": 327, "image_id": 2347190, "entity": "car", "caption": "the car windscreen are black in color", "question": ["is there the car windscreen ?", "is there color ?"], "prompt": "the {} windscreen are black in color"}, {"index": 328, "image_id": 2347179, "entity": "car", "caption": "shadow os the cat is on the car ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "shadow os the cat is on the {} "}, {"index": 329, "image_id": 2347179, "entity": "car", "caption": "cat sits on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat sits on {}"}, {"index": 330, "image_id": 2347027, "entity": "car", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {}"}, {"index": 331, "image_id": 2346677, "entity": "car", "caption": "Man pushing suitcases in car", "question": ["is there man ?", "are there suitcases ?", "is there car ?"], "prompt": "Man pushing suitcases in {}"}, {"index": 332, "image_id": 2346677, "entity": "car", "caption": "Woman sitting in front seat of car", "question": ["is there woman ?", "is there front seat ?", "is there car ?"], "prompt": "Woman sitting in front seat of {}"}, {"index": 333, "image_id": 2345608, "entity": "car", "caption": "motorcycle is next to car", "question": ["is there motorcycle ?"], "prompt": "motorcycle is next to {}"}, {"index": 334, "image_id": 2345314, "entity": "car", "caption": "car window is down", "question": ["is there car window ?"], "prompt": "{} window is down"}, {"index": 335, "image_id": 2345219, "entity": "car", "caption": "car has red tail lights", "question": ["is there car ?", "are there red tail lights ?"], "prompt": "{} has red tail lights"}, {"index": 336, "image_id": 2345219, "entity": "car", "caption": "car trunk is open", "question": ["is there car trunk ?"], "prompt": "{} trunk is open"}, {"index": 337, "image_id": 2344729, "entity": "car", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is in the {}"}, {"index": 338, "image_id": 2344729, "entity": "car", "caption": "this is in a car", "question": ["is there a car ?"], "prompt": "this is in a {}"}, {"index": 339, "image_id": 2344713, "entity": "car", "caption": "black cat shaped car decal ", "question": ["is there black cat shaped car decal ?"], "prompt": "black cat shaped {} decal "}, {"index": 340, "image_id": 2344274, "entity": "car", "caption": "the car has no numberplates ", "question": ["is there the car ?"], "prompt": "the {} has no numberplates "}, {"index": 341, "image_id": 2344274, "entity": "car", "caption": "Silver car stopped at a light", "question": ["is there silver car ?", "is there a light ?"], "prompt": "Silver {} stopped at a light"}, {"index": 342, "image_id": 2343856, "entity": "car", "caption": "the plane is on the car ", "question": ["is there the plane ?", "is there the car ?"], "prompt": "the plane is on the {} "}, {"index": 343, "image_id": 2343756, "entity": "car", "caption": "A car's driver side headlight", "question": ["is there a car's driver side headlight ?"], "prompt": "A {}'s driver side headlight"}, {"index": 344, "image_id": 2343756, "entity": "car", "caption": "car make logo on front of car", "question": ["is there car ?", "is there logo ?", "is there front ?", "is there car ?"], "prompt": "{} make logo on front of {}"}, {"index": 345, "image_id": 2343756, "entity": "car", "caption": "silver care parked with surfboard on roof", "question": ["is there silver care ?", "is there surfboard ?", "is there roof ?"], "prompt": "silver {}e parked with surfboard on roof"}, {"index": 346, "image_id": 2343756, "entity": "car", "caption": "Surfboard attached to car rack", "question": ["is there surfboard ?", "is there car rack ?"], "prompt": "Surfboard attached to {} rack"}, {"index": 347, "image_id": 2343665, "entity": "car", "caption": "Various cars occupy city street", "question": ["are there various cars ?", "is there city street ?"], "prompt": "Various {}s occupy city street"}, {"index": 348, "image_id": 2343324, "entity": "car", "caption": "A lady travels inside the car", "question": ["is there a lady ?", "is there the car ?"], "prompt": "A lady travels inside the {}"}, {"index": 349, "image_id": 2343324, "entity": "car", "caption": "Besides the car vehicles are on the road", "question": ["are there the car vehicles ?", "is there the road ?"], "prompt": "Besides the {} vehicles are on the road"}, {"index": 350, "image_id": 2343324, "entity": "car", "caption": "A lady is riding her car ", "question": ["is there a lady ?", "is there her car ?"], "prompt": "A lady is riding her {} "}, {"index": 351, "image_id": 2343321, "entity": "car", "caption": "the car has tires", "question": ["is there the car ?", "are there tires ?"], "prompt": "the {} has tires"}, {"index": 352, "image_id": 2343098, "entity": "car", "caption": "a sign is on the front of the car", "question": ["is there a sign ?", "is there the front ?", "is there the car ?"], "prompt": "a sign is on the front of the {}"}, {"index": 353, "image_id": 2343098, "entity": "car", "caption": "a tire is on the car", "question": ["is there a tire ?", "is there the car ?"], "prompt": "a tire is on the {}"}, {"index": 354, "image_id": 2343098, "entity": "car", "caption": "the car's taillights are off ", "question": ["are there the car's taillights ?"], "prompt": "the {}'s taillights are off "}, {"index": 355, "image_id": 2342975, "entity": "car", "caption": "A surfboard is on the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}."}, {"index": 356, "image_id": 2342809, "entity": "car", "caption": "the car is reflecting the seat", "question": ["is there the car ?", "is there the seat ?"], "prompt": "the {} is reflecting the seat"}, {"index": 357, "image_id": 2342672, "entity": "car", "caption": "person driving the car", "question": ["is there person ?", "is there the car ?"], "prompt": "person driving the {}"}, {"index": 358, "image_id": 2342493, "entity": "car", "caption": "the cars have lights on", "question": ["are there the cars ?", "are there lights ?"], "prompt": "the {}s have lights on"}, {"index": 359, "image_id": 2341390, "entity": "car", "caption": "a large black dog sits in the back of a car", "question": ["is there a large black dog ?", "is there the back ?", "is there a car ?"], "prompt": "a large black dog sits in the back of a {}"}, {"index": 360, "image_id": 2341390, "entity": "car", "caption": "The dog is sitting in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is sitting in the {}."}, {"index": 361, "image_id": 2341390, "entity": "car", "caption": "The car have scratches", "question": ["is there the car ?", "are there scratches ?"], "prompt": "The {} have scratches"}, {"index": 362, "image_id": 2341390, "entity": "car", "caption": "a _very_ serious black dog sits in a scraped silver car", "question": ["is there a _very_ serious black dog ?", "is there a scraped silver car ?"], "prompt": "a _very_ serious black dog sits in a scraped silver {}"}, {"index": 363, "image_id": 2341390, "entity": "car", "caption": "car looks spraypainted silver, has a minor mess' worth of scrapes & scratches", "question": ["is there car ?", "is there spraypainted silver ?", "is there a minor mess' worth ?", "are there scrapes ?", "are there scratches ?"], "prompt": "{} looks spraypainted silver, has a minor mess' worth of scrapes & scratches"}, {"index": 364, "image_id": 2341302, "entity": "car", "caption": "woman is looking at the car", "question": ["is there woman ?", "is there the car ?"], "prompt": "woman is looking at the {}"}, {"index": 365, "image_id": 2341044, "entity": "car", "caption": "front left window of a black car", "question": ["is there front left window ?", "is there a black car ?"], "prompt": "front left window of a black {}"}, {"index": 366, "image_id": 2340693, "entity": "car", "caption": "cats are under car", "question": ["are there cats ?", "is there car ?"], "prompt": "cats are under {}"}, {"index": 367, "image_id": 2339803, "entity": "car", "caption": "The window is down in the car.", "question": ["is there the window ?", "is there the car ?"], "prompt": "The window is down in the {}."}, {"index": 368, "image_id": 2338847, "entity": "car", "caption": "Roof of car is black.", "question": ["is there roof ?", "is there car ?"], "prompt": "Roof of {} is black."}, {"index": 369, "image_id": 2338847, "entity": "car", "caption": "the car has wooden panels ", "question": ["is there the car ?", "are there wooden panels ?"], "prompt": "the {} has wooden panels "}, {"index": 370, "image_id": 2338254, "entity": "car", "caption": "surfbords are on the car", "question": ["are there surfbords ?", "is there the car ?"], "prompt": "surfbords are on the {}"}, {"index": 371, "image_id": 2338234, "entity": "car", "caption": "the model of car is ford ", "question": ["is there the model ?", "is there car ?"], "prompt": "the model of {} is ford "}, {"index": 372, "image_id": 2337797, "entity": "car", "caption": "the car has a red light", "question": ["is there the car ?", "is there a red light ?"], "prompt": "the {} has a red light"}, {"index": 373, "image_id": 2337385, "entity": "car", "caption": "window is apart of the car", "question": ["is there window ?", "is there the car ?"], "prompt": "window is apart of the {}"}, {"index": 374, "image_id": 2337324, "entity": "car", "caption": "a doggy has his head out the car window", "question": ["is there a doggy ?", "is there his head ?", "is there the car window ?"], "prompt": "a doggy has his head out the {} window"}, {"index": 375, "image_id": 2336747, "entity": "car", "caption": "black door handle on sliver car door", "question": ["is there black door ?", "is there sliver car door ?"], "prompt": "black door handle on sliver {} door"}, {"index": 376, "image_id": 2336235, "entity": "car", "caption": "the car the cat is lying on ", "question": ["is there the car ?", "is there the cat ?"], "prompt": "the {} the cat is lying on "}, {"index": 377, "image_id": 2336067, "entity": "car", "caption": "Cat is inside a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is inside a {}"}, {"index": 378, "image_id": 2336067, "entity": "car", "caption": "Cat is in the car's backseats", "question": ["is there cat ?", "are there the car's backseats ?"], "prompt": "Cat is in the {}'s backseats"}, {"index": 379, "image_id": 2336016, "entity": "car", "caption": "the man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "the man is in a {}"}, {"index": 380, "image_id": 2336016, "entity": "car", "caption": "Black car parked at the curb.", "question": ["is there black car ?", "is there the curb ?"], "prompt": "Black {} parked at the curb."}, {"index": 381, "image_id": 2335764, "entity": "car", "caption": "This car has a clear windshield", "question": ["is there this car ?", "is there a clear windshield ?"], "prompt": "This {} has a clear windshield"}, {"index": 382, "image_id": 2335683, "entity": "car", "caption": "it is car in the street ", "question": ["is there car ?", "is there the street ?"], "prompt": "it is {} in the street "}, {"index": 383, "image_id": 2335683, "entity": "car", "caption": "a white car stopped in street", "question": ["is there a white car ?", "is there street ?"], "prompt": "a white {} stopped in street"}, {"index": 384, "image_id": 2335292, "entity": "car", "caption": "The car is in front of the motorcycle", "question": ["is there the car ?", "is there front ?", "is there the motorcycle ?"], "prompt": "The {} is in front of the motorcycle"}, {"index": 385, "image_id": 2335292, "entity": "car", "caption": "The white car has red tail lights", "question": ["is there the white car ?", "are there red tail lights ?"], "prompt": "The white {} has red tail lights"}, {"index": 386, "image_id": 2335189, "entity": "car", "caption": "A old man standing behind a car.", "question": ["is there a old man ?", "is there a car ?"], "prompt": "A old man standing behind a {}."}, {"index": 387, "image_id": 2334957, "entity": "car", "caption": "right front headlight on car", "question": ["is there right front headlight ?", "is there car ?"], "prompt": "right front headlight on {}"}, {"index": 388, "image_id": 2334957, "entity": "car", "caption": "blue rusted door on car", "question": ["is there blue rusted door ?", "is there car ?"], "prompt": "blue rusted door on {}"}, {"index": 389, "image_id": 2333614, "entity": "car", "caption": "a rear view mirror is on the car", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "a rear view mirror is on the {}"}, {"index": 390, "image_id": 2333614, "entity": "car", "caption": "the car is on the street", "question": ["is there the car ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 391, "image_id": 2333466, "entity": "car", "caption": "license plate is on car", "question": ["is there license plate ?", "is there car ?"], "prompt": "license plate is on {}"}, {"index": 392, "image_id": 2332912, "entity": "car", "caption": "a white teddy bear sitting on a car", "question": ["is there a car ?"], "prompt": "a white teddy bear sitting on a {}"}, {"index": 393, "image_id": 2332110, "entity": "car", "caption": "wheel belongs to car", "question": ["is there wheel ?", "is there car ?"], "prompt": "wheel belongs to {}"}, {"index": 394, "image_id": 2332110, "entity": "car", "caption": "bumper belongs to car", "question": ["is there bumper ?", "is there car ?"], "prompt": "bumper belongs to {}"}, {"index": 395, "image_id": 2332110, "entity": "car", "caption": "headlight belongs to car", "question": ["is there headlight ?", "is there car ?"], "prompt": "headlight belongs to {}"}, {"index": 396, "image_id": 2332110, "entity": "car", "caption": "window belongs to car", "question": ["is there window ?", "is there car ?"], "prompt": "window belongs to {}"}, {"index": 397, "image_id": 2332110, "entity": "car", "caption": "car travels down street", "question": ["is there car ?"], "prompt": "{} travels down street"}, {"index": 398, "image_id": 2331977, "entity": "car", "caption": "he is sitting in a car ", "question": ["is there a car ?"], "prompt": "he is sitting in a {} "}, {"index": 399, "image_id": 2331977, "entity": "car", "caption": "the person is inside the car ", "question": ["is there the person ?", "is there the car ?"], "prompt": "the person is inside the {} "}, {"index": 400, "image_id": 2330180, "entity": "car", "caption": "cat sits on sidewalk looking at car", "question": ["is there cat ?", "is there sidewalk ?", "is there car ?"], "prompt": "cat sits on sidewalk looking at {}"}, {"index": 401, "image_id": 2330066, "entity": "car", "caption": "a red car is beside the blue car", "question": ["is there a red car ?", "is there the blue car ?"], "prompt": "a red {} is beside the blue {}"}, {"index": 402, "image_id": 2330005, "entity": "car", "caption": "Car painted red white and blue with elephant cartoon on hood", "question": ["is there car ?", "is there elephant cartoon ?", "is there hood ?"], "prompt": "Car painted red white and blue with elephant {}toon on hood"}, {"index": 403, "image_id": 2330005, "entity": "car", "caption": "man is driving the car", "question": ["is there man ?", "is there the car ?"], "prompt": "man is driving the {}"}, {"index": 404, "image_id": 2329079, "entity": "car", "caption": "car has a wheel on it", "question": ["is there car ?", "is there a wheel ?"], "prompt": "{} has a wheel on it"}, {"index": 405, "image_id": 2329079, "entity": "car", "caption": "a door handle on the car", "question": ["is there a door ?", "is there the car ?"], "prompt": "a door handle on the {}"}, {"index": 406, "image_id": 2328443, "entity": "car", "caption": "A car that is driving in the street", "question": ["is there a car ?", "is there the street ?"], "prompt": "A {} that is driving in the street"}, {"index": 407, "image_id": 2328324, "entity": "car", "caption": "the cat is on a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is on a {}"}, {"index": 408, "image_id": 2328094, "entity": "car", "caption": "the bear is in the grill of the car ", "question": ["is there the bear ?", "is there the grill ?", "is there the car ?"], "prompt": "the bear is in the grill of the {} "}, {"index": 409, "image_id": 2328094, "entity": "car", "caption": "it appears as if the car is eating the bear ", "question": ["is there the car ?", "is there the bear ?"], "prompt": "it appears as if the {} is eating the bear "}, {"index": 410, "image_id": 2327968, "entity": "car", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {} "}, {"index": 411, "image_id": 2327874, "entity": "car", "caption": "white surfboard leaned against car", "question": ["is there car ?"], "prompt": "white surfboard leaned against {}"}, {"index": 412, "image_id": 2327874, "entity": "car", "caption": "A surfboard is on the car. ", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}. "}, {"index": 413, "image_id": 2327874, "entity": "car", "caption": "Plants are next to the car. ", "question": ["are there plants ?", "is there the car ?"], "prompt": "Plants are next to the {}. "}, {"index": 414, "image_id": 2327874, "entity": "car", "caption": "A white surfboard is behind the car.", "question": ["is there a white surfboard ?", "is there the car ?"], "prompt": "A white surfboard is behind the {}."}, {"index": 415, "image_id": 2327688, "entity": "car", "caption": "door handle on the car", "question": ["is there door ?", "is there the car ?"], "prompt": "door handle on the {}"}, {"index": 416, "image_id": 2327454, "entity": "car", "caption": "Person driving a car", "question": ["is there person ?", "is there a car ?"], "prompt": "Person driving a {}"}, {"index": 417, "image_id": 2326951, "entity": "car", "caption": "poster is in the car", "question": ["is there poster ?", "is there the car ?"], "prompt": "poster is in the {}"}, {"index": 418, "image_id": 2326921, "entity": "car", "caption": "Volvo emblem on a car", "question": ["is there a car ?"], "prompt": "Volvo emblem on a {}"}, {"index": 419, "image_id": 2326884, "entity": "car", "caption": "this is a car windscreen", "question": ["is there a car windscreen ?"], "prompt": "this is a {} windscreen"}, {"index": 420, "image_id": 2326583, "entity": "car", "caption": "letter i on car", "question": ["is there letter ?", "is there car ?"], "prompt": "letter i on {}"}, {"index": 421, "image_id": 2325723, "entity": "car", "caption": "Cat is on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is on a {}"}, {"index": 422, "image_id": 2325460, "entity": "car", "caption": "Front end on a black car", "question": ["is there front end ?", "is there a black car ?"], "prompt": "Front end on a black {}"}, {"index": 423, "image_id": 2324926, "entity": "car", "caption": "the car has a face on it", "question": ["is there the car ?", "is there a face ?"], "prompt": "the {} has a face on it"}, {"index": 424, "image_id": 2323124, "entity": "car", "caption": "Cat is on the hood of car", "question": ["is there cat ?", "is there the hood ?", "is there car ?"], "prompt": "Cat is on the hood of {}"}, {"index": 425, "image_id": 2323124, "entity": "car", "caption": "Cat laying on the hood of the car", "question": ["is there cat ?", "is there the hood ?", "is there the car ?"], "prompt": "Cat laying on the hood of the {}"}, {"index": 426, "image_id": 2323124, "entity": "car", "caption": "Cat is laying on the hood of a car", "question": ["is there cat ?", "is there the hood ?", "is there a car ?"], "prompt": "Cat is laying on the hood of a {}"}, {"index": 427, "image_id": 2323088, "entity": "car", "caption": "The giraffes are walking around the cars", "question": ["are there the giraffes ?", "are there the cars ?"], "prompt": "The giraffes are walking around the {}s"}, {"index": 428, "image_id": 2322886, "entity": "car", "caption": "cars have rail on top of it ", "question": ["are there cars ?", "is there rail ?", "is there top ?"], "prompt": "{}s have rail on top of it "}, {"index": 429, "image_id": 2322886, "entity": "car", "caption": "cars have red light on back ", "question": ["are there cars ?", "is there red light ?"], "prompt": "{}s have red light on back "}, {"index": 430, "image_id": 2321836, "entity": "car", "caption": "Trunk of the car is open. ", "question": ["is there trunk ?", "is there the car ?"], "prompt": "Trunk of the {} is open. "}, {"index": 431, "image_id": 2321807, "entity": "car", "caption": "cat is meowing on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is meowing on {}"}, {"index": 432, "image_id": 2321807, "entity": "car", "caption": "Antenna is attache to the car", "question": ["is there antenna ?", "is there attache ?", "is there the car ?"], "prompt": "Antenna is attache to the {}"}, {"index": 433, "image_id": 2321807, "entity": "car", "caption": "Trees are in front of the car", "question": ["are there trees ?", "is there front ?", "is there the car ?"], "prompt": "Trees are in front of the {}"}, {"index": 434, "image_id": 2321807, "entity": "car", "caption": "Cat is sitting on the trunk of the car", "question": ["is there cat ?", "is there the trunk ?", "is there the car ?"], "prompt": "Cat is sitting on the trunk of the {}"}, {"index": 435, "image_id": 2321807, "entity": "car", "caption": "The cat is on the car. ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}. "}, {"index": 436, "image_id": 2320893, "entity": "car", "caption": "the car has a headlamp", "question": ["is there the car ?", "is there a headlamp ?"], "prompt": "the {} has a headlamp"}, {"index": 437, "image_id": 2320893, "entity": "car", "caption": "The left headlight on the car. ", "question": ["is there the left headlight ?", "is there the car ?"], "prompt": "The left headlight on the {}. "}, {"index": 438, "image_id": 2320741, "entity": "car", "caption": "car has black door", "question": ["is there car ?", "is there black door ?"], "prompt": "{} has black door"}, {"index": 439, "image_id": 2320741, "entity": "car", "caption": "car has black wheels", "question": ["is there car ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 440, "image_id": 2320741, "entity": "car", "caption": "The man is sitting in the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "The man is sitting in the {}"}, {"index": 441, "image_id": 2320741, "entity": "car", "caption": "The car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "The {} has a windshield"}, {"index": 442, "image_id": 2320741, "entity": "car", "caption": "man driving the black car", "question": ["is there man ?", "is there the black car ?"], "prompt": "man driving the black {}"}, {"index": 443, "image_id": 2320710, "entity": "car", "caption": "the car has a black tire", "question": ["is there the car ?", "is there a black tire ?"], "prompt": "the {} has a black tire"}, {"index": 444, "image_id": 2320662, "entity": "car", "caption": "man walking behind a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man walking behind a {}"}, {"index": 445, "image_id": 2320327, "entity": "car", "caption": "a round headlight on the car", "question": ["is there a round headlight ?", "is there the car ?"], "prompt": "a round headlight on the {}"}, {"index": 446, "image_id": 2319795, "entity": "car", "caption": "cat stands on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "cat stands on a {}"}, {"index": 447, "image_id": 2319480, "entity": "car", "caption": "Bird hanging from a rope in a car.", "question": ["is there bird ?", "is there a rope ?", "is there a car ?"], "prompt": "Bird hanging from a rope in a {}."}, {"index": 448, "image_id": 2319480, "entity": "car", "caption": "man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man driving a {}"}, {"index": 449, "image_id": 2319480, "entity": "car", "caption": "Man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "Man driving a {}"}, {"index": 450, "image_id": 2319164, "entity": "car", "caption": "white car rear with red stop lights", "question": ["is there white car rear ?", "are there red stop lights ?"], "prompt": "white {} rear with red stop lights"}, {"index": 451, "image_id": 2318890, "entity": "car", "caption": "the dog is on the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2318848, "entity": "car", "caption": "Black car parked next to the police vehicle", "question": ["is there black car ?", "is there the police vehicle ?"], "prompt": "Black {} parked next to the police vehicle"}, {"index": 453, "image_id": 2318441, "entity": "car", "caption": "the car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 454, "image_id": 2318441, "entity": "car", "caption": "A yellow car a dog is riding in", "question": ["is there a yellow car ?", "is there a dog ?"], "prompt": "A yellow {} a dog is riding in"}, {"index": 455, "image_id": 2318030, "entity": "car", "caption": "There is a red stripe that is on the car", "question": ["is there a red stripe ?", "is there the car ?"], "prompt": "There is a red stripe that is on the {}"}, {"index": 456, "image_id": 2318015, "entity": "car", "caption": "The man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is in a {}"}, {"index": 457, "image_id": 2317640, "entity": "car", "caption": "silver headlight on car", "question": ["is there silver headlight ?", "is there car ?"], "prompt": "silver headlight on {}"}, {"index": 458, "image_id": 2317640, "entity": "car", "caption": "company emblem on front of car", "question": ["is there company ?", "is there front ?", "is there car ?"], "prompt": "company emblem on front of {}"}, {"index": 459, "image_id": 2317566, "entity": "car", "caption": "a hose is on the roof of the car", "question": ["is there a hose ?", "is there the roof ?", "is there the car ?"], "prompt": "a hose is on the roof of the {}"}, {"index": 460, "image_id": 2317283, "entity": "car", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog is in a {}."}, {"index": 461, "image_id": 2317142, "entity": "car", "caption": "The car is on a rack.", "question": ["is there the car ?", "is there a rack ?"], "prompt": "The {} is on a rack."}, {"index": 462, "image_id": 2317029, "entity": "car", "caption": "console controls on a car", "question": ["is there console ?", "is there a car ?"], "prompt": "console controls on a {}"}, {"index": 463, "image_id": 2317029, "entity": "car", "caption": "front of car is blue", "question": ["is there front ?", "is there car ?"], "prompt": "front of {} is blue"}, {"index": 464, "image_id": 2317029, "entity": "car", "caption": "the teddy bear is in the car", "question": ["is there the teddy bear ?", "is there the car ?"], "prompt": "the teddy bear is in the {}"}, {"index": 465, "image_id": 2316404, "entity": "car", "caption": "This is a black car tire", "question": ["is there a black car tire ?"], "prompt": "This is a black {} tire"}, {"index": 466, "image_id": 2316376, "entity": "car", "caption": "yellow light is on the car", "question": ["is there yellow light ?", "is there the car ?"], "prompt": "yellow light is on the {}"}, {"index": 467, "image_id": 2316376, "entity": "car", "caption": "two men digging a car out of the mud", "question": ["are there two men ?", "is there a car ?", "is there the mud ?"], "prompt": "two men digging a {} out of the mud"}, {"index": 468, "image_id": 2316376, "entity": "car", "caption": "roof rack on a car", "question": ["is there roof rack ?", "is there a car ?"], "prompt": "roof rack on a {}"}, {"index": 469, "image_id": 2315981, "entity": "car", "caption": "Cay laying on a car ", "question": ["is there a car ?"], "prompt": "Cay laying on a {} "}, {"index": 470, "image_id": 2315981, "entity": "car", "caption": "Cat laying on car hood ", "question": ["is there cat ?", "is there car hood ?"], "prompt": "Cat laying on {} hood "}, {"index": 471, "image_id": 2315743, "entity": "car", "caption": "blue car behind moped", "question": ["is there blue car ?"], "prompt": "blue {} behind moped"}, {"index": 472, "image_id": 2315500, "entity": "car", "caption": "glass headlight on sports car", "question": ["is there glass headlight ?", "are there sports car ?"], "prompt": "glass headlight on sports {}"}, {"index": 473, "image_id": 2414288, "entity": "car", "caption": "a cat is laying on the hood of a car", "question": ["is there a cat ?", "is there the hood ?", "is there a car ?"], "prompt": "a cat is laying on the hood of a {}"}, {"index": 474, "image_id": 2414288, "entity": "car", "caption": "fuzzy cat is laying on the hood of a car", "question": ["is there fuzzy cat ?", "is there the hood ?", "is there a car ?"], "prompt": "fuzzy cat is laying on the hood of a {}"}, {"index": 475, "image_id": 2414288, "entity": "car", "caption": "cat is laying on a dark grey car", "question": ["is there cat ?", "is there a dark grey car ?"], "prompt": "cat is laying on a dark grey {}"}, {"index": 476, "image_id": 2414288, "entity": "car", "caption": "car has a small roof rack for luggage", "question": ["is there car ?", "is there a small roof rack ?", "is there luggage ?"], "prompt": "{} has a small roof rack for luggage"}, {"index": 477, "image_id": 2414273, "entity": "car", "caption": "cat is in the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is in the {}"}, {"index": 478, "image_id": 2414273, "entity": "car", "caption": "one cat is in the car", "question": ["is there one cat ?", "is there the car ?"], "prompt": "one cat is in the {}"}, {"index": 479, "image_id": 2413841, "entity": "car", "caption": "Diamond shaped light with numbers on the black car.", "question": ["is there light ?", "are there numbers ?", "is there the black car ?"], "prompt": "Diamond shaped light with numbers on the black {}."}, {"index": 480, "image_id": 2413841, "entity": "car", "caption": "Door handle on black car.", "question": ["is there door ?", "is there black car ?"], "prompt": "Door handle on black {}."}, {"index": 481, "image_id": 2413755, "entity": "car", "caption": "Trees growing behind car.", "question": ["are there trees ?", "is there car ?"], "prompt": "Trees growing behind {}."}, {"index": 482, "image_id": 2413755, "entity": "car", "caption": "The car has a red underglow", "question": ["is there the car ?", "is there a red underglow ?"], "prompt": "The {} has a red underglow"}, {"index": 483, "image_id": 2413755, "entity": "car", "caption": "a car is in the photo", "question": ["is there a car ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 484, "image_id": 2413755, "entity": "car", "caption": "a surfboard is on the car", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "a surfboard is on the {}"}, {"index": 485, "image_id": 2413755, "entity": "car", "caption": "the car is on the road", "question": ["is there the car ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 486, "image_id": 2413755, "entity": "car", "caption": "Red highlight lights accentuate the car", "question": ["are there red highlight lights ?", "is there the car ?"], "prompt": "Red highlight lights accentuate the {}"}, {"index": 487, "image_id": 2412424, "entity": "car", "caption": "the car windows are transparent", "question": ["are there the car windows ?"], "prompt": "the {} windows are transparent"}, {"index": 488, "image_id": 2412234, "entity": "car", "caption": "cat is under car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is under {}"}, {"index": 489, "image_id": 2412234, "entity": "car", "caption": "Cat is under the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "Cat is under the {}"}, {"index": 490, "image_id": 2411616, "entity": "car", "caption": "Surfboard tied to car", "question": ["is there surfboard ?", "is there car ?"], "prompt": "Surfboard tied to {}"}, {"index": 491, "image_id": 2411616, "entity": "car", "caption": "live christmas tree tied on car", "question": ["is there live christmas tree ?", "is there car ?"], "prompt": "live christmas tree tied on {}"}, {"index": 492, "image_id": 2411616, "entity": "car", "caption": "orange break light on black car ", "question": ["is there black car ?"], "prompt": "orange break light on black {} "}, {"index": 493, "image_id": 2411616, "entity": "car", "caption": "This car is hauling trees", "question": ["is there this car ?", "are there trees ?"], "prompt": "This {} is hauling trees"}, {"index": 494, "image_id": 2416074, "entity": "car", "caption": "The car has a red door.", "question": ["is there the car ?", "is there a red door ?"], "prompt": "The {} has a red door."}, {"index": 495, "image_id": 2416074, "entity": "car", "caption": "A surfboard is in the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is in the {}."}, {"index": 496, "image_id": 2417544, "entity": "car", "caption": "A car has dark rims.", "question": ["is there a car ?", "are there dark rims ?"], "prompt": "A {} has dark rims."}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03642806.json b/data/imagenet/compositions/prompts/n03642806.json
new file mode 100644
index 0000000000000000000000000000000000000000..eb6f3cc340447bec06e9d0d2e41c4e6a28c4ebc4
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03642806.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 1670, "entity": "computer", "caption": "the computer is sitting on a white desk", "question": ["is there the computer ?", "is there a white desk ?"], "prompt": "the {} is sitting on a white desk"}, {"index": 1, "image_id": 2413614, "entity": "computer", "caption": "Audio input on laptop computer.", "question": ["is there audio input ?", "is there laptop computer ?"], "prompt": "Audio input on laptop {}."}, {"index": 2, "image_id": 2411787, "entity": "computer", "caption": "Mouse of computer is black and tan", "question": ["is there computer ?"], "prompt": "Mouse of {} is black and tan"}, {"index": 3, "image_id": 2411787, "entity": "computer", "caption": "Screen of computer is purple and white", "question": ["is there screen ?", "is there computer ?"], "prompt": "Screen of {} is purple and white"}, {"index": 4, "image_id": 2411787, "entity": "computer", "caption": "The computer sits on a table. ", "question": ["is there the computer ?", "is there a table ?"], "prompt": "The {} sits on a table. "}, {"index": 5, "image_id": 2411787, "entity": "computer", "caption": "The computer has the Apple logo.", "question": ["is there the computer ?", "is there the apple logo ?"], "prompt": "The {} has the Apple logo."}, {"index": 6, "image_id": 2411787, "entity": "computer", "caption": "The computer has two monitors. ", "question": ["is there the computer ?", "are there two monitors ?"], "prompt": "The {} has two monitors. "}, {"index": 7, "image_id": 2411787, "entity": "computer", "caption": "The computer has speakers. ", "question": ["is there the computer ?", "are there speakers ?"], "prompt": "The {} has speakers. "}, {"index": 8, "image_id": 2411787, "entity": "computer", "caption": "The computer has a mouse.", "question": ["is there the computer ?", "is there a mouse ?"], "prompt": "The {} has a mouse."}, {"index": 9, "image_id": 2409573, "entity": "computer", "caption": "The computer screen is on", "question": ["is there the computer screen ?"], "prompt": "The {} screen is on"}, {"index": 10, "image_id": 2409573, "entity": "computer", "caption": "The giant can next to the computer", "question": ["is there the giant ?", "is there the computer ?"], "prompt": "The giant can next to the {}"}, {"index": 11, "image_id": 2407218, "entity": "computer", "caption": "This is a smartphone that this man has attached to his computer.", "question": ["is there a smartphone ?", "is there this man ?", "is there his computer ?"], "prompt": "This is a smartphone that this man has attached to his {}."}, {"index": 12, "image_id": 2404050, "entity": "computer", "caption": "The computer has a silver bolt", "question": ["is there the computer ?", "is there a silver bolt ?"], "prompt": "The {} has a silver bolt"}, {"index": 13, "image_id": 2397913, "entity": "computer", "caption": "Man is looking at the computer", "question": ["is there man ?", "is there the computer ?"], "prompt": "Man is looking at the {}"}, {"index": 14, "image_id": 2396611, "entity": "computer", "caption": "a cat resting it's head on a computer.", "question": ["is there a cat ?", "is there head ?", "is there a computer ?"], "prompt": "a cat resting it's head on a {}."}, {"index": 15, "image_id": 2396611, "entity": "computer", "caption": "a cats paw on a computer.", "question": ["are there a cats ?", "is there a computer ?"], "prompt": "a cats paw on a {}."}, {"index": 16, "image_id": 2391965, "entity": "computer", "caption": "computer set up with monitor", "question": ["is there computer ?", "is there monitor ?"], "prompt": "{} set up with monitor"}, {"index": 17, "image_id": 2389431, "entity": "computer", "caption": "wires pluged on computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires pluged on {}"}, {"index": 18, "image_id": 2388062, "entity": "computer", "caption": "Power cord plugged into the computer.", "question": ["is there power cord ?", "is there the computer ?"], "prompt": "Power cord plugged into the {}."}, {"index": 19, "image_id": 2384108, "entity": "computer", "caption": "computer speaker laying sidways", "question": ["is there computer speaker ?"], "prompt": "{} speaker laying sidways"}, {"index": 20, "image_id": 2380641, "entity": "computer", "caption": "mouse of computer is ergonomic", "question": ["is there computer ?"], "prompt": "mouse of {} is ergonomic"}, {"index": 21, "image_id": 2380272, "entity": "computer", "caption": "computer mouse sitting next to laptop computer", "question": ["is there computer mouse ?", "is there laptop computer ?"], "prompt": "{} mouse sitting next to laptop {}"}, {"index": 22, "image_id": 2377814, "entity": "computer", "caption": "The computer the cat is standing on", "question": ["is there the computer ?", "is there the cat ?"], "prompt": "The {} the cat is standing on"}, {"index": 23, "image_id": 2375150, "entity": "computer", "caption": "the girl is typing on the computer", "question": ["is there the girl ?", "is there the computer ?"], "prompt": "the girl is typing on the {}"}, {"index": 24, "image_id": 2372868, "entity": "computer", "caption": "Cord plug ins for computer.", "question": ["are there cord plug ins ?", "is there computer ?"], "prompt": "Cord plug ins for {}."}, {"index": 25, "image_id": 2371612, "entity": "computer", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The dog is using the {} "}, {"index": 26, "image_id": 2371612, "entity": "computer", "caption": "The mouse pad is the middle of the computer ", "question": ["is there the mouse pad ?", "is there the middle ?", "is there the computer ?"], "prompt": "The mouse pad is the middle of the {} "}, {"index": 27, "image_id": 2370068, "entity": "computer", "caption": "tree leaves on computer screen", "question": ["is there tree ?", "is there computer screen ?"], "prompt": "tree leaves on {} screen"}, {"index": 28, "image_id": 2364993, "entity": "computer", "caption": "Indicator lights on a laptop computer", "question": ["are there indicator lights ?", "is there a laptop computer ?"], "prompt": "Indicator lights on a laptop {}"}, {"index": 29, "image_id": 2364841, "entity": "computer", "caption": "wires blurry behind computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires blurry behind {}"}, {"index": 30, "image_id": 2364534, "entity": "computer", "caption": "The computer stand so the computer isn't falling over.", "question": ["is there the computer ?", "is there the computer ?"], "prompt": "The {} stand so the {} isn't falling over."}, {"index": 31, "image_id": 2361519, "entity": "computer", "caption": "number keypad for computer", "question": ["is there number keypad ?", "is there computer ?"], "prompt": "number keypad for {}"}, {"index": 32, "image_id": 2359377, "entity": "computer", "caption": "Papers sit next to computer", "question": ["are there papers ?", "is there computer ?"], "prompt": "Papers sit next to {}"}, {"index": 33, "image_id": 2358048, "entity": "computer", "caption": "The computer is on the log in screen.", "question": ["is there the computer ?", "is there the log ?", "is there screen ?"], "prompt": "The {} is on the log in screen."}, {"index": 34, "image_id": 2357136, "entity": "computer", "caption": "multiple objects are open on computer screen", "question": ["are there multiple objects ?", "is there computer screen ?"], "prompt": "multiple objects are open on {} screen"}, {"index": 35, "image_id": 2353879, "entity": "computer", "caption": "power wire plugged into computer", "question": ["is there power wire ?", "is there computer ?"], "prompt": "power wire plugged into {}"}, {"index": 36, "image_id": 2353456, "entity": "computer", "caption": "plug plugged into computer", "question": ["is there plug ?", "is there computer ?"], "prompt": "plug plugged into {}"}, {"index": 37, "image_id": 2351707, "entity": "computer", "caption": "the keyboard of the computer that which the cat is sitting on", "question": ["is there the keyboard ?", "is there the computer ?", "is there the cat ?"], "prompt": "the keyboard of the {} that which the cat is sitting on"}, {"index": 38, "image_id": 2348719, "entity": "computer", "caption": "White USB cord hanging from the computer.", "question": ["is there white usb cord ?", "is there the computer ?"], "prompt": "White USB cord hanging from the {}."}, {"index": 39, "image_id": 2347801, "entity": "computer", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The dog is next to a laptop {}"}, {"index": 40, "image_id": 2347039, "entity": "computer", "caption": "the plugs going into the computer", "question": ["are there the plugs ?", "is there the computer ?"], "prompt": "the plugs going into the {}"}, {"index": 41, "image_id": 2346356, "entity": "computer", "caption": "computer on table is open", "question": ["is there computer ?", "is there table ?"], "prompt": "{} on table is open"}, {"index": 42, "image_id": 2345231, "entity": "computer", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the dogs paws on on the {}"}, {"index": 43, "image_id": 2342983, "entity": "computer", "caption": "Cord plugged into the computer", "question": ["is there cord ?", "is there the computer ?"], "prompt": "Cord plugged into the {}"}, {"index": 44, "image_id": 2330099, "entity": "computer", "caption": "person is looking at the computer", "question": ["is there person ?", "is there the computer ?"], "prompt": "person is looking at the {}"}, {"index": 45, "image_id": 2326900, "entity": "computer", "caption": "a computer screen turned on", "question": ["is there a computer screen ?"], "prompt": "a {} screen turned on"}, {"index": 46, "image_id": 2326148, "entity": "computer", "caption": "Cat hiding behind a computer screen", "question": ["is there cat ?", "is there a computer screen ?"], "prompt": "Cat hiding behind a {} screen"}, {"index": 47, "image_id": 2322592, "entity": "computer", "caption": "white wire coming out of the nearest computer", "question": ["is there white wire ?", "is there the nearest computer ?"], "prompt": "white wire coming out of the nearest {}"}, {"index": 48, "image_id": 2317168, "entity": "computer", "caption": "objects piled up behind the computer", "question": ["are there objects ?", "is there the computer ?"], "prompt": "objects piled up behind the {}"}, {"index": 49, "image_id": 2414391, "entity": "computer", "caption": "the computer is sitting on a desk", "question": ["is there the computer ?", "is there a desk ?"], "prompt": "the {} is sitting on a desk"}, {"index": 50, "image_id": 2413201, "entity": "computer", "caption": "smooth wood table hold a computer", "question": ["is there smooth wood table ?", "is there a computer ?"], "prompt": "smooth wood table hold a {}"}, {"index": 51, "image_id": 2415366, "entity": "computer", "caption": "A computer is on a white desk", "question": ["is there a computer ?", "is there a white desk ?"], "prompt": "A {} is on a white desk"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03658185.json b/data/imagenet/compositions/prompts/n03658185.json
new file mode 100644
index 0000000000000000000000000000000000000000..775a098b73fbbe9b4cce1899495001edccdbcbc6
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03658185.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2410601, "entity": "knife", "caption": "a knife is on the apple", "question": ["is there a knife ?", "is there the apple ?"], "prompt": "a {} is on the apple"}, {"index": 1, "image_id": 2410601, "entity": "knife", "caption": "knife slicing through apple", "question": ["is there knife slicing ?", "is there apple ?"], "prompt": "{} slicing through apple"}, {"index": 2, "image_id": 2403832, "entity": "knife", "caption": "knife has black handle", "question": ["is there knife ?", "is there black handle ?"], "prompt": "{} has black handle"}, {"index": 3, "image_id": 2403832, "entity": "knife", "caption": "bolt holding a knife together.", "question": ["is there a knife ?"], "prompt": "bolt holding a {} together."}, {"index": 4, "image_id": 2402771, "entity": "knife", "caption": "Blade of knife is dirty", "question": ["is there blade ?", "is there knife ?"], "prompt": "Blade of {} is dirty"}, {"index": 5, "image_id": 2402771, "entity": "knife", "caption": "Blade of knife is pointy", "question": ["is there blade ?", "is there knife ?"], "prompt": "Blade of {} is pointy"}, {"index": 6, "image_id": 2400506, "entity": "knife", "caption": "A knife is in the dish.", "question": ["is there a knife ?", "is there the dish ?"], "prompt": "A {} is in the dish."}, {"index": 7, "image_id": 2396733, "entity": "knife", "caption": "homemade black knife is on the table", "question": ["is there homemade black knife ?", "is there the table ?"], "prompt": "homemade black {} is on the table"}, {"index": 8, "image_id": 2396733, "entity": "knife", "caption": "this is a knife ", "question": ["is there a knife ?"], "prompt": "this is a {} "}, {"index": 9, "image_id": 2395610, "entity": "knife", "caption": "the knife stabbed in the cake", "question": ["is there the knife ?", "is there the cake ?"], "prompt": "the {} stabbed in the cake"}, {"index": 10, "image_id": 2394061, "entity": "knife", "caption": "A hand is holding a large knife.", "question": ["is there a hand ?", "is there a large knife ?"], "prompt": "A hand is holding a large {}."}, {"index": 11, "image_id": 2392048, "entity": "knife", "caption": "man holds a knife", "question": ["is there man ?", "is there a knife ?"], "prompt": "man holds a {}"}, {"index": 12, "image_id": 2380448, "entity": "knife", "caption": "the knife is next to the carrot", "question": ["is there the knife ?", "is there the carrot ?"], "prompt": "the {} is next to the carrot"}, {"index": 13, "image_id": 2380448, "entity": "knife", "caption": "the knife is on the cutting board", "question": ["is there the knife ?", "is there the cutting board ?"], "prompt": "the {} is on the cutting board"}, {"index": 14, "image_id": 2379177, "entity": "knife", "caption": "The knife is on the cutting board.", "question": ["is there the knife ?", "is there the cutting board ?"], "prompt": "The {} is on the cutting board."}, {"index": 15, "image_id": 2378708, "entity": "knife", "caption": "a knife propped on a plate ", "question": ["is there a knife ?", "is there a plate ?"], "prompt": "a {} propped on a plate "}, {"index": 16, "image_id": 2373189, "entity": "knife", "caption": "a butter knife is in the sink", "question": ["is there a butter knife ?", "is there the sink ?"], "prompt": "a butter {} is in the sink"}, {"index": 17, "image_id": 2364647, "entity": "knife", "caption": "stainless steel knife cutting carrot", "question": ["is there stainless steel knife ?", "is there carrot ?"], "prompt": "stainless steel {} cutting carrot"}, {"index": 18, "image_id": 2349999, "entity": "knife", "caption": "long knife used to cut brownies", "question": ["is there long knife ?", "are there brownies ?"], "prompt": "long {} used to cut brownies"}, {"index": 19, "image_id": 2347800, "entity": "knife", "caption": "Man's hand holding a knife", "question": ["is there man's hand ?", "is there a knife ?"], "prompt": "Man's hand holding a {}"}, {"index": 20, "image_id": 2347800, "entity": "knife", "caption": "guy is holding a large kitchen knife", "question": ["is there guy ?", "is there a large kitchen knife ?"], "prompt": "guy is holding a large kitchen {}"}, {"index": 21, "image_id": 2344692, "entity": "knife", "caption": "the hand that is holding the knife", "question": ["is there the hand ?", "is there the knife ?"], "prompt": "the hand that is holding the {}"}, {"index": 22, "image_id": 2344692, "entity": "knife", "caption": "hand holds a black knife", "question": ["is there hand ?", "is there a black knife ?"], "prompt": "hand holds a black {}"}, {"index": 23, "image_id": 2344692, "entity": "knife", "caption": "the screws in the knifes handle", "question": ["are there the screws ?", "are there the knifes ?"], "prompt": "the screws in the {}s handle"}, {"index": 24, "image_id": 2342976, "entity": "knife", "caption": "a knife is on the plate", "question": ["is there a knife ?", "is there the plate ?"], "prompt": "a {} is on the plate"}, {"index": 25, "image_id": 2341202, "entity": "knife", "caption": "The knife has a black and silver handle.", "question": ["is there the knife ?", "is there a black and silver handle ?"], "prompt": "The {} has a black and silver handle."}, {"index": 26, "image_id": 2337924, "entity": "knife", "caption": "chees rements on the knife", "question": ["are there chees rements ?", "is there the knife ?"], "prompt": "chees rements on the {}"}, {"index": 27, "image_id": 2327696, "entity": "knife", "caption": "the knife is on the table", "question": ["is there the knife ?", "is there the table ?"], "prompt": "the {} is on the table"}, {"index": 28, "image_id": 2320803, "entity": "knife", "caption": "knife is cutting the cake", "question": ["is there knife ?", "is there the cake ?"], "prompt": "{} is cutting the cake"}, {"index": 29, "image_id": 2319412, "entity": "knife", "caption": "line is the shadow of the knife ", "question": ["is there line ?", "is there the shadow ?", "is there the knife ?"], "prompt": "line is the shadow of the {} "}, {"index": 30, "image_id": 2414271, "entity": "knife", "caption": "knife is sitting on the edge of the plate", "question": ["is there knife ?", "is there the edge ?", "is there the plate ?"], "prompt": "{} is sitting on the edge of the plate"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03662601.json b/data/imagenet/compositions/prompts/n03662601.json
new file mode 100644
index 0000000000000000000000000000000000000000..1091d72597600d36f049b579bcd37e9d0ad4df2a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03662601.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 815, "entity": "boat", "caption": "The boat has windows", "question": ["is there the boat ?", "are there windows ?"], "prompt": "The {} has windows"}, {"index": 1, "image_id": 1883, "entity": "boat", "caption": "The boat has empty seats.", "question": ["is there the boat ?", "are there empty seats ?"], "prompt": "The {} has empty seats."}, {"index": 2, "image_id": 1902, "entity": "boat", "caption": "woman with blue shirt standing on boat", "question": ["is there woman ?", "is there blue shirt ?", "is there boat ?"], "prompt": "woman with blue shirt standing on {}"}, {"index": 3, "image_id": 1904, "entity": "boat", "caption": "black letters and numbers painted on a boat", "question": ["are there black letters ?", "are there numbers ?", "is there a boat ?"], "prompt": "black letters and numbers painted on a {}"}, {"index": 4, "image_id": 2562, "entity": "boat", "caption": "white person is on a boat", "question": ["is there white person ?", "is there a boat ?"], "prompt": "white person is on a {}"}, {"index": 5, "image_id": 2562, "entity": "boat", "caption": "Life preserver on the boat", "question": ["is there life preserver ?", "is there the boat ?"], "prompt": "Life preserver on the {}"}, {"index": 6, "image_id": 4245, "entity": "boat", "caption": "white boat parked in the dock ", "question": ["is there white boat ?", "is there the dock ?"], "prompt": "white {} parked in the dock "}, {"index": 7, "image_id": 4245, "entity": "boat", "caption": "boat is tired to the pier", "question": ["is there boat ?", "is there the pier ?"], "prompt": "{} is tired to the pier"}, {"index": 8, "image_id": 4990, "entity": "boat", "caption": "personal floating device on the sailboats transom", "question": ["is there personal floating device ?", "are there the sailboats ?"], "prompt": "personal floating device on the sail{}s transom"}, {"index": 9, "image_id": 61552, "entity": "boat", "caption": "A man in a hat is on a small boat in the water", "question": ["is there a man ?", "is there a hat ?", "is there a small boat ?", "is there the water ?"], "prompt": "A man in a hat is on a small {} in the water"}, {"index": 10, "image_id": 61588, "entity": "boat", "caption": "blue letters painted on a boat", "question": ["are there blue letters ?", "is there a boat ?"], "prompt": "blue letters painted on a {}"}, {"index": 11, "image_id": 285605, "entity": "boat", "caption": "bottom of boat is blue in color", "question": ["is there bottom ?", "is there boat ?", "is there color ?"], "prompt": "bottom of {} is blue in color"}, {"index": 12, "image_id": 498166, "entity": "boat", "caption": "People rowing a boat", "question": ["are there people ?", "is there a boat ?"], "prompt": "People rowing a {}"}, {"index": 13, "image_id": 498166, "entity": "boat", "caption": "the boats have canopies", "question": ["are there the boats ?", "are there canopies ?"], "prompt": "the {}s have canopies"}, {"index": 14, "image_id": 498267, "entity": "boat", "caption": "the white buoy hanging off the boat", "question": ["is there the white buoy ?", "is there the boat ?"], "prompt": "the white buoy hanging off the {}"}, {"index": 15, "image_id": 498267, "entity": "boat", "caption": "The boat is in the water.", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is in the water."}, {"index": 16, "image_id": 713061, "entity": "boat", "caption": "American flag flying on boat", "question": ["is there american flag ?", "is there boat ?"], "prompt": "American flag flying on {}"}, {"index": 17, "image_id": 713156, "entity": "boat", "caption": "boat is next to boat in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is next to {} in water"}, {"index": 18, "image_id": 713162, "entity": "boat", "caption": "large boat docked by building", "question": ["is there large boat ?"], "prompt": "large {} docked by building"}, {"index": 19, "image_id": 713162, "entity": "boat", "caption": "the boat parked next to the red house", "question": ["is there the boat ?"], "prompt": "the {} parked next to the red house"}, {"index": 20, "image_id": 713470, "entity": "boat", "caption": "boat has wooden benched", "question": ["is there boat ?"], "prompt": "{} has wooden benched"}, {"index": 21, "image_id": 713832, "entity": "boat", "caption": "words are on the boat", "question": ["are there words ?", "is there the boat ?"], "prompt": "words are on the {}"}, {"index": 22, "image_id": 713832, "entity": "boat", "caption": "boat has a pole", "question": ["is there boat ?", "is there a pole ?"], "prompt": "{} has a pole"}, {"index": 23, "image_id": 713832, "entity": "boat", "caption": "boat has a window", "question": ["is there boat ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 24, "image_id": 1159573, "entity": "boat", "caption": "blue and white boat sitting in body of water", "question": ["is there blue and white boat ?", "is there body ?", "is there water ?"], "prompt": "blue and white {} sitting in body of water"}, {"index": 25, "image_id": 1159823, "entity": "boat", "caption": "two boats side by side", "question": ["are there two boats ?", "is there side ?"], "prompt": "two {}s side by side"}, {"index": 26, "image_id": 1159823, "entity": "boat", "caption": "\"RX60\" painted on boat with black paint", "question": ["is there boat ?", "is there black paint ?"], "prompt": "\"RX60\" painted on {} with black paint"}, {"index": 27, "image_id": 1160209, "entity": "boat", "caption": "Long blue rope tied to boat.", "question": ["is there long blue rope ?", "is there boat ?"], "prompt": "Long blue rope tied to {}."}, {"index": 28, "image_id": 1160209, "entity": "boat", "caption": "brown rope tied on the boat", "question": ["is there brown rope ?", "is there the boat ?"], "prompt": "brown rope tied on the {}"}, {"index": 29, "image_id": 1592080, "entity": "boat", "caption": "the bottom of the boat is red", "question": ["is there the bottom ?", "is there the boat ?"], "prompt": "the bottom of the {} is red"}, {"index": 30, "image_id": 1592080, "entity": "boat", "caption": "the tarp on the boat is blue", "question": ["is there the tarp ?", "is there the boat ?"], "prompt": "the tarp on the {} is blue"}, {"index": 31, "image_id": 1592464, "entity": "boat", "caption": "american flag flying from the boat", "question": ["is there american flag ?", "is there the boat ?"], "prompt": "american flag flying from the {}"}, {"index": 32, "image_id": 1592464, "entity": "boat", "caption": "water the boat is on", "question": ["is there the boat ?"], "prompt": "water the {} is on"}, {"index": 33, "image_id": 1592891, "entity": "boat", "caption": "White covers on yellow boat", "question": ["are there white covers ?", "is there yellow boat ?"], "prompt": "White covers on yellow {}"}, {"index": 34, "image_id": 1592891, "entity": "boat", "caption": "the boat has fabric stripe", "question": ["is there the boat ?", "is there fabric stripe ?"], "prompt": "the {} has fabric stripe"}, {"index": 35, "image_id": 1592892, "entity": "boat", "caption": "the man is on a boat", "question": ["is there the man ?", "is there a boat ?"], "prompt": "the man is on a {}"}, {"index": 36, "image_id": 1592892, "entity": "boat", "caption": "Man working on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man working on a {}"}, {"index": 37, "image_id": 1592951, "entity": "boat", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The truck on the {} is blue in color."}, {"index": 38, "image_id": 2414926, "entity": "boat", "caption": "The boat is in the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 39, "image_id": 2414334, "entity": "boat", "caption": "Large boat docked on water.", "question": ["is there large boat ?", "is there water ?"], "prompt": "Large {} docked on water."}, {"index": 40, "image_id": 2413907, "entity": "boat", "caption": "Man standing on a boat holding a hot dog.", "question": ["is there man ?", "is there a boat ?", "is there a hot dog ?"], "prompt": "Man standing on a {} holding a hot dog."}, {"index": 41, "image_id": 2413848, "entity": "boat", "caption": "boat has chinese letters", "question": ["is there boat ?", "are there chinese letters ?"], "prompt": "{} has chinese letters"}, {"index": 42, "image_id": 2413848, "entity": "boat", "caption": "boat has yellow floaters on the side", "question": ["is there boat ?", "are there yellow floaters ?", "is there the side ?"], "prompt": "{} has yellow floaters on the side"}, {"index": 43, "image_id": 2413848, "entity": "boat", "caption": "boat has orange bouys", "question": ["is there boat ?", "are there orange bouys ?"], "prompt": "{} has orange bouys"}, {"index": 44, "image_id": 2413848, "entity": "boat", "caption": "the inside of the boat is green", "question": ["is there the inside ?", "is there the boat ?"], "prompt": "the inside of the {} is green"}, {"index": 45, "image_id": 2413848, "entity": "boat", "caption": "wooden boat dock", "question": ["is there wooden boat ?"], "prompt": "wooden {} dock"}, {"index": 46, "image_id": 2413848, "entity": "boat", "caption": "the boat is at the dock", "question": ["is there the boat ?", "is there the dock ?"], "prompt": "the {} is at the dock"}, {"index": 47, "image_id": 2413564, "entity": "boat", "caption": "an orange life saver hangs on the boat", "question": ["is there an orange life saver ?", "is there the boat ?"], "prompt": "an orange life saver hangs on the {}"}, {"index": 48, "image_id": 2413564, "entity": "boat", "caption": "the boat in the front has a tall mast", "question": ["is there the boat ?", "is there the front ?", "is there a tall mast ?"], "prompt": "the {} in the front has a tall mast"}, {"index": 49, "image_id": 2413564, "entity": "boat", "caption": "the boats are on the bay", "question": ["are there the boats ?", "is there the bay ?"], "prompt": "the {}s are on the bay"}, {"index": 50, "image_id": 2412218, "entity": "boat", "caption": "a boat is in the photo", "question": ["is there a boat ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 51, "image_id": 2412218, "entity": "boat", "caption": "the boat is red with designs", "question": ["is there the boat ?", "are there designs ?"], "prompt": "the {} is red with designs"}, {"index": 52, "image_id": 2412218, "entity": "boat", "caption": "the boat is on the shore", "question": ["is there the boat ?", "is there the shore ?"], "prompt": "the {} is on the shore"}, {"index": 53, "image_id": 2412218, "entity": "boat", "caption": "the boat has a star of david", "question": ["is there the boat ?", "is there a star ?"], "prompt": "the {} has a star of david"}, {"index": 54, "image_id": 2412218, "entity": "boat", "caption": "the boat has a heart ", "question": ["is there the boat ?", "is there a heart ?"], "prompt": "the {} has a heart "}, {"index": 55, "image_id": 2412218, "entity": "boat", "caption": "the boat has a cloud design", "question": ["is there the boat ?", "is there a cloud design ?"], "prompt": "the {} has a cloud design"}, {"index": 56, "image_id": 2412218, "entity": "boat", "caption": "heart shapes window in side of boat", "question": ["is there heart ?", "is there side ?", "is there boat ?"], "prompt": "heart shapes window in side of {}"}, {"index": 57, "image_id": 2411489, "entity": "boat", "caption": "boat docked at pier", "question": ["is there boat ?", "is there pier ?"], "prompt": "{} docked at pier"}, {"index": 58, "image_id": 2411204, "entity": "boat", "caption": "An enormous amount of water on which people ride boats.", "question": ["is there an enormous amount ?", "is there water ?", "are there people ?", "are there boats ?"], "prompt": "An enormous amount of water on which people ride {}s."}, {"index": 59, "image_id": 2410909, "entity": "boat", "caption": "Two people sit on a boat", "question": ["are there two people ?", "is there a boat ?"], "prompt": "Two people sit on a {}"}, {"index": 60, "image_id": 2410909, "entity": "boat", "caption": "A person is steering the boat with the rudder", "question": ["is there a person ?", "is there the boat ?", "is there the rudder ?"], "prompt": "A person is steering the {} with the rudder"}, {"index": 61, "image_id": 2410850, "entity": "boat", "caption": "a sniper rifle anchored to the boat", "question": ["is there a sniper rifle ?", "is there the boat ?"], "prompt": "a sniper rifle anchored to the {}"}, {"index": 62, "image_id": 2410850, "entity": "boat", "caption": "U.S. Coast Guard painted on boat", "question": ["is there boat ?"], "prompt": "U.S. Coast Guard painted on {}"}, {"index": 63, "image_id": 2410850, "entity": "boat", "caption": "Honda outboard boat motor", "question": [], "prompt": "Honda outboard {} motor"}, {"index": 64, "image_id": 2410846, "entity": "boat", "caption": "life preserver mounted to side of boat", "question": ["is there life preserver ?", "is there side ?", "is there boat ?"], "prompt": "life preserver mounted to side of {}"}, {"index": 65, "image_id": 2410846, "entity": "boat", "caption": "Life saving ring on the boat", "question": ["is there life saving ring ?", "is there the boat ?"], "prompt": "Life saving ring on the {}"}, {"index": 66, "image_id": 2409599, "entity": "boat", "caption": "Several boats are in the water. ", "question": ["are there several boats ?", "is there the water ?"], "prompt": "Several {}s are in the water. "}, {"index": 67, "image_id": 2409599, "entity": "boat", "caption": "The boat has several windows. ", "question": ["is there the boat ?", "are there several windows ?"], "prompt": "The {} has several windows. "}, {"index": 68, "image_id": 2409599, "entity": "boat", "caption": "A rope secures the boat to the dock.", "question": ["is there a rope ?", "is there the boat ?", "is there the dock ?"], "prompt": "A rope secures the {} to the dock."}, {"index": 69, "image_id": 2409599, "entity": "boat", "caption": "rope securing a boat to the dock", "question": ["is there rope ?", "is there a boat ?", "is there the dock ?"], "prompt": "rope securing a {} to the dock"}, {"index": 70, "image_id": 2409535, "entity": "boat", "caption": "Cables attached to larger boat", "question": ["are there cables ?", "is there larger boat ?"], "prompt": "Cables attached to larger {}"}, {"index": 71, "image_id": 2409535, "entity": "boat", "caption": "Name written on side of smaller boat", "question": ["is there name ?", "is there side ?", "is there smaller boat ?"], "prompt": "Name written on side of smaller {}"}, {"index": 72, "image_id": 2409535, "entity": "boat", "caption": "name of a boat painted on", "question": ["is there name ?", "is there a boat ?"], "prompt": "name of a {} painted on"}, {"index": 73, "image_id": 2409264, "entity": "boat", "caption": "small boy standing in a boat", "question": ["is there small boy ?", "is there a boat ?"], "prompt": "small boy standing in a {}"}, {"index": 74, "image_id": 2409264, "entity": "boat", "caption": "asian boy standing in boat", "question": ["is there asian boy ?", "is there boat ?"], "prompt": "asian boy standing in {}"}, {"index": 75, "image_id": 2409264, "entity": "boat", "caption": "person standing in boat in backgroung", "question": ["is there person ?", "is there boat ?", "is there backgroung ?"], "prompt": "person standing in {} in backgroung"}, {"index": 76, "image_id": 2408406, "entity": "boat", "caption": "hand hangs over side of boat.", "question": ["is there hand ?", "is there side ?", "is there boat ?"], "prompt": "hand hangs over side of {}."}, {"index": 77, "image_id": 2408406, "entity": "boat", "caption": "two large umbrellas covering most of boat", "question": ["are there two large umbrellas ?", "is there boat ?"], "prompt": "two large umbrellas covering most of {}"}, {"index": 78, "image_id": 2408406, "entity": "boat", "caption": "The person has their hand out of the boat", "question": ["is there the person ?", "is there their hand ?", "is there the boat ?"], "prompt": "The person has their hand out of the {}"}, {"index": 79, "image_id": 2408406, "entity": "boat", "caption": "hand of person who is riding in the boat", "question": ["is there hand ?", "is there person ?", "is there the boat ?"], "prompt": "hand of person who is riding in the {}"}, {"index": 80, "image_id": 2408406, "entity": "boat", "caption": "The food and umbrellas are on a boat. ", "question": ["is there the food ?", "are there umbrellas ?", "is there a boat ?"], "prompt": "The food and umbrellas are on a {}. "}, {"index": 81, "image_id": 2408030, "entity": "boat", "caption": "people sitting in a boat waiting", "question": ["are there people ?", "is there a boat ?"], "prompt": "people sitting in a {} waiting"}, {"index": 82, "image_id": 2408030, "entity": "boat", "caption": "person climbing into or out of the boat", "question": ["is there person ?", "is there the boat ?"], "prompt": "person climbing into or out of the {}"}, {"index": 83, "image_id": 2407441, "entity": "boat", "caption": "Man standing on a boat. ", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man standing on a {}. "}, {"index": 84, "image_id": 2407441, "entity": "boat", "caption": "wooden boat with woman standing", "question": ["is there wooden boat ?", "is there woman ?"], "prompt": "wooden {} with woman standing"}, {"index": 85, "image_id": 2406902, "entity": "boat", "caption": "Orange life preserver on a white boat.", "question": ["is there orange life preserver ?", "is there a white boat ?"], "prompt": "Orange life preserver on a white {}."}, {"index": 86, "image_id": 2405871, "entity": "boat", "caption": "a bridge goes into the boat", "question": ["is there a bridge ?", "is there the boat ?"], "prompt": "a bridge goes into the {}"}, {"index": 87, "image_id": 2405602, "entity": "boat", "caption": "small boat going out to sea", "question": ["is there small boat ?", "is there sea ?"], "prompt": "small {} going out to sea"}, {"index": 88, "image_id": 2404841, "entity": "boat", "caption": "bamboo boats parked together", "question": ["are there bamboo boats ?"], "prompt": "bamboo {}s parked together"}, {"index": 89, "image_id": 2404841, "entity": "boat", "caption": "orange life preservers are hanging from the boat chairs", "question": ["are there orange life preservers ?", "are there the boat chairs ?"], "prompt": "orange life preservers are hanging from the {} chairs"}, {"index": 90, "image_id": 2404198, "entity": "boat", "caption": "The boat has two life boats on the right side", "question": ["is there the boat ?", "are there two life boats ?", "is there the right side ?"], "prompt": "The {} has two life {}s on the right side"}, {"index": 91, "image_id": 2404184, "entity": "boat", "caption": "These people are on a boat ride", "question": ["are there these people ?", "is there a boat ride ?"], "prompt": "These people are on a {} ride"}, {"index": 92, "image_id": 2404184, "entity": "boat", "caption": "The boat is creating waves", "question": ["is there the boat ?", "are there waves ?"], "prompt": "The {} is creating waves"}, {"index": 93, "image_id": 2403899, "entity": "boat", "caption": "three people are on the boat", "question": ["are there three people ?", "is there the boat ?"], "prompt": "three people are on the {}"}, {"index": 94, "image_id": 2403899, "entity": "boat", "caption": "a flag is in the front of the boat", "question": ["is there a flag ?", "is there the front ?", "is there the boat ?"], "prompt": "a flag is in the front of the {}"}, {"index": 95, "image_id": 2403899, "entity": "boat", "caption": "the boat travels on a river", "question": ["is there the boat ?", "is there a river ?"], "prompt": "the {} travels on a river"}, {"index": 96, "image_id": 2403899, "entity": "boat", "caption": "the boat is in the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is in the water"}, {"index": 97, "image_id": 2403899, "entity": "boat", "caption": "two fishing poles stick up out of the boat", "question": ["are there two fishing poles ?", "is there the boat ?"], "prompt": "two fishing poles stick up out of the {}"}, {"index": 98, "image_id": 2403899, "entity": "boat", "caption": "the flag is on the front of the boat", "question": ["is there the flag ?", "is there the front ?", "is there the boat ?"], "prompt": "the flag is on the front of the {}"}, {"index": 99, "image_id": 2403899, "entity": "boat", "caption": "three people are in the boat", "question": ["are there three people ?", "is there the boat ?"], "prompt": "three people are in the {}"}, {"index": 100, "image_id": 2403753, "entity": "boat", "caption": "Many of the boats have masts.", "question": ["are there the boats ?", "are there masts ?"], "prompt": "Many of the {}s have masts."}, {"index": 101, "image_id": 2403753, "entity": "boat", "caption": "A rope hanging over boat.", "question": ["is there a rope ?", "is there boat ?"], "prompt": "A rope hanging over {}."}, {"index": 102, "image_id": 2403753, "entity": "boat", "caption": "Paint of the boat is coming off", "question": ["is there paint ?", "is there the boat ?"], "prompt": "Paint of the {} is coming off"}, {"index": 103, "image_id": 2403753, "entity": "boat", "caption": "Two boats anchored to the dock", "question": ["are there two boats ?", "is there the dock ?"], "prompt": "Two {}s anchored to the dock"}, {"index": 104, "image_id": 2403753, "entity": "boat", "caption": "Rope attached the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "Rope attached the {}"}, {"index": 105, "image_id": 2403712, "entity": "boat", "caption": "Person riding bike on to boat.", "question": ["is there person ?", "is there bike ?", "is there boat ?"], "prompt": "Person riding bike on to {}."}, {"index": 106, "image_id": 2403147, "entity": "boat", "caption": "Black tarp covering part of boat", "question": ["is there black tarp ?", "is there part ?", "is there boat ?"], "prompt": "Black tarp covering part of {}"}, {"index": 107, "image_id": 2403147, "entity": "boat", "caption": "rope tied to the boat.", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied to the {}."}, {"index": 108, "image_id": 2402503, "entity": "boat", "caption": "Person stepping on boat", "question": ["is there person ?", "is there boat ?"], "prompt": "Person stepping on {}"}, {"index": 109, "image_id": 2402503, "entity": "boat", "caption": "Rope lying on a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "Rope lying on a {}"}, {"index": 110, "image_id": 2402107, "entity": "boat", "caption": "two men getting things off the boat", "question": ["are there two men ?", "are there things ?", "is there the boat ?"], "prompt": "two men getting things off the {}"}, {"index": 111, "image_id": 2402107, "entity": "boat", "caption": "boat coming to pick up the people", "question": ["is there boat ?", "are there the people ?"], "prompt": "{} coming to pick up the people"}, {"index": 112, "image_id": 2402067, "entity": "boat", "caption": "The water the boat is on", "question": ["is there the water ?", "is there the boat ?"], "prompt": "The water the {} is on"}, {"index": 113, "image_id": 2401739, "entity": "boat", "caption": "Woman sitting in wood boat.", "question": ["is there woman ?", "is there wood boat ?"], "prompt": "Woman sitting in wood {}."}, {"index": 114, "image_id": 2401739, "entity": "boat", "caption": "pole is in boat", "question": ["is there pole ?", "is there boat ?"], "prompt": "pole is in {}"}, {"index": 115, "image_id": 2401739, "entity": "boat", "caption": "two boats side by side in the water", "question": ["are there two boats ?", "is there side ?", "is there the water ?"], "prompt": "two {}s side by side in the water"}, {"index": 116, "image_id": 2401211, "entity": "boat", "caption": "Man fishing in boat.", "question": ["is there man ?", "is there boat ?"], "prompt": "Man fishing in {}."}, {"index": 117, "image_id": 2400731, "entity": "boat", "caption": "water the boat is floating on ", "question": ["is there water ?", "is there the boat ?"], "prompt": "water the {} is floating on "}, {"index": 118, "image_id": 2400731, "entity": "boat", "caption": "apples that are on the boat", "question": ["are there apples ?", "is there the boat ?"], "prompt": "apples that are on the {}"}, {"index": 119, "image_id": 2400487, "entity": "boat", "caption": "red toy boat is in the water", "question": ["is there red toy boat ?", "is there the water ?"], "prompt": "red toy {} is in the water"}, {"index": 120, "image_id": 2400487, "entity": "boat", "caption": "The toy boat is in the water.", "question": ["is there the toy boat ?", "is there the water ?"], "prompt": "The toy {} is in the water."}, {"index": 121, "image_id": 2400486, "entity": "boat", "caption": "water where the boats are", "question": ["is there water ?", "are there the boats ?"], "prompt": "water where the {}s are"}, {"index": 122, "image_id": 2400240, "entity": "boat", "caption": "a lawn hair sitting near a boat.", "question": ["is there a lawn hair ?", "is there a boat ?"], "prompt": "a lawn hair sitting near a {}."}, {"index": 123, "image_id": 2400066, "entity": "boat", "caption": "Steps lead up to the boat", "question": ["are there steps ?", "is there the boat ?"], "prompt": "Steps lead up to the {}"}, {"index": 124, "image_id": 2400066, "entity": "boat", "caption": "The front of the boat has black netting", "question": ["is there the front ?", "is there the boat ?", "is there black netting ?"], "prompt": "The front of the {} has black netting"}, {"index": 125, "image_id": 2400066, "entity": "boat", "caption": "White boat docked next to the red boat", "question": ["is there white boat ?", "is there the red boat ?"], "prompt": "White {} docked next to the red {}"}, {"index": 126, "image_id": 2399658, "entity": "boat", "caption": "white metal fencing around boat", "question": ["is there white metal fencing ?", "is there boat ?"], "prompt": "white metal fencing around {}"}, {"index": 127, "image_id": 2399658, "entity": "boat", "caption": "rope attatched to a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "rope attatched to a {}"}, {"index": 128, "image_id": 2399025, "entity": "boat", "caption": "these are four people on the boat", "question": ["are there four people ?", "is there the boat ?"], "prompt": "these are four people on the {}"}, {"index": 129, "image_id": 2399025, "entity": "boat", "caption": "man standing on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man standing on a {}"}, {"index": 130, "image_id": 2398909, "entity": "boat", "caption": "man selling potatoes on a boat ", "question": ["is there man ?", "are there potatoes ?", "is there a boat ?"], "prompt": "man selling potatoes on a {} "}, {"index": 131, "image_id": 2398909, "entity": "boat", "caption": "Man is on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man is on a {}"}, {"index": 132, "image_id": 2398909, "entity": "boat", "caption": "man on boat is selling food", "question": ["is there man ?", "is there boat ?", "is there food ?"], "prompt": "man on {} is selling food"}, {"index": 133, "image_id": 2398909, "entity": "boat", "caption": "boat is on the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is on the water"}, {"index": 134, "image_id": 2398909, "entity": "boat", "caption": "boat door is open", "question": ["is there boat door ?"], "prompt": "{} door is open"}, {"index": 135, "image_id": 2398862, "entity": "boat", "caption": "this is a boat", "question": ["is there a boat ?"], "prompt": "this is a {}"}, {"index": 136, "image_id": 2398735, "entity": "boat", "caption": "The boat has wood panels.", "question": ["is there the boat ?", "are there wood panels ?"], "prompt": "The {} has wood panels."}, {"index": 137, "image_id": 2398609, "entity": "boat", "caption": "a rope tied to a boat", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "a rope tied to a {}"}, {"index": 138, "image_id": 2398396, "entity": "boat", "caption": "long green boat is on water", "question": ["is there long green boat ?", "is there water ?"], "prompt": "long green {} is on water"}, {"index": 139, "image_id": 2398396, "entity": "boat", "caption": "empty plastic bottle is in middle of boat", "question": ["is there empty plastic bottle ?", "is there middle ?", "is there boat ?"], "prompt": "empty plastic bottle is in middle of {}"}, {"index": 140, "image_id": 2398396, "entity": "boat", "caption": "Water is reflecting boat", "question": ["is there water ?", "is there boat ?"], "prompt": "Water is reflecting {}"}, {"index": 141, "image_id": 2398176, "entity": "boat", "caption": "The boat has equipment on it.", "question": ["is there the boat ?", "is there equipment ?"], "prompt": "The {} has equipment on it."}, {"index": 142, "image_id": 2398032, "entity": "boat", "caption": "The boat is on the water.", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 143, "image_id": 2398032, "entity": "boat", "caption": "The people are on the boat.", "question": ["are there the people ?", "is there the boat ?"], "prompt": "The people are on the {}."}, {"index": 144, "image_id": 2397696, "entity": "boat", "caption": "Ladder leaning against a boat.", "question": ["is there ladder ?", "is there a boat ?"], "prompt": "Ladder leaning against a {}."}, {"index": 145, "image_id": 2397163, "entity": "boat", "caption": "teddy bear sits on a boat", "question": ["is there a boat ?"], "prompt": "teddy bear sits on a {}"}, {"index": 146, "image_id": 2397163, "entity": "boat", "caption": "the teddy bear is on a boat", "question": ["is there the teddy bear ?", "is there a boat ?"], "prompt": "the teddy bear is on a {}"}, {"index": 147, "image_id": 2397163, "entity": "boat", "caption": "the boat is on the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is on the water"}, {"index": 148, "image_id": 2397042, "entity": "boat", "caption": "The top of the boat is blue.", "question": ["is there the top ?", "is there the boat ?"], "prompt": "The top of the {} is blue."}, {"index": 149, "image_id": 2396771, "entity": "boat", "caption": "The boat has long wooden planks", "question": ["is there the boat ?", "are there long wooden planks ?"], "prompt": "The {} has long wooden planks"}, {"index": 150, "image_id": 2396771, "entity": "boat", "caption": "The boat is resting on grass", "question": ["is there the boat ?", "is there grass ?"], "prompt": "The {} is resting on grass"}, {"index": 151, "image_id": 2396668, "entity": "boat", "caption": "Life preservers on top of a boat", "question": ["are there life preservers ?", "is there top ?", "is there a boat ?"], "prompt": "Life preservers on top of a {}"}, {"index": 152, "image_id": 2396583, "entity": "boat", "caption": "Man drives duck boat.", "question": ["is there man ?", "is there duck boat ?"], "prompt": "Man drives duck {}."}, {"index": 153, "image_id": 2396583, "entity": "boat", "caption": "people are sitting in duck boat", "question": ["are there people ?", "is there duck boat ?"], "prompt": "people are sitting in duck {}"}, {"index": 154, "image_id": 2395255, "entity": "boat", "caption": "letter m on boat", "question": ["is there letter ?", "is there boat ?"], "prompt": "letter m on {}"}, {"index": 155, "image_id": 2395255, "entity": "boat", "caption": "Red life preserver on a boat", "question": ["is there red life preserver ?", "is there a boat ?"], "prompt": "Red life preserver on a {}"}, {"index": 156, "image_id": 2395255, "entity": "boat", "caption": "Water splashing up in front of a boat", "question": ["is there water ?", "is there front ?", "is there a boat ?"], "prompt": "Water splashing up in front of a {}"}, {"index": 157, "image_id": 2395073, "entity": "boat", "caption": "a woman sits on a boat", "question": ["is there a woman ?", "is there a boat ?"], "prompt": "a woman sits on a {}"}, {"index": 158, "image_id": 2393753, "entity": "boat", "caption": "speed boat creating ripples in water", "question": ["is there speed boat ?", "are there ripples ?", "is there water ?"], "prompt": "speed {} creating ripples in water"}, {"index": 159, "image_id": 2393753, "entity": "boat", "caption": "light green boat cover", "question": ["is there light green boat cover ?"], "prompt": "light green {} cover"}, {"index": 160, "image_id": 2393562, "entity": "boat", "caption": "The boat has many windows", "question": ["is there the boat ?", "are there many windows ?"], "prompt": "The {} has many windows"}, {"index": 161, "image_id": 2393150, "entity": "boat", "caption": "the boat is from los angeles", "question": ["is there the boat ?"], "prompt": "the {} is from los angeles"}, {"index": 162, "image_id": 2393150, "entity": "boat", "caption": "the boat number is 17", "question": ["is there the boat number ?"], "prompt": "the {} number is 17"}, {"index": 163, "image_id": 2393150, "entity": "boat", "caption": "the boat has a cabin", "question": ["is there the boat ?", "is there a cabin ?"], "prompt": "the {} has a cabin"}, {"index": 164, "image_id": 2393150, "entity": "boat", "caption": "Where the police boat is from", "question": ["is there the police boat ?"], "prompt": "Where the police {} is from"}, {"index": 165, "image_id": 2393150, "entity": "boat", "caption": "Police officer driving the boat", "question": ["is there police officer ?", "is there the boat ?"], "prompt": "Police officer driving the {}"}, {"index": 166, "image_id": 2392895, "entity": "boat", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "dog is on a {}"}, {"index": 167, "image_id": 2391231, "entity": "boat", "caption": "gas can inside orange and white boat", "question": ["is there gas ?", "is there orange and white boat ?"], "prompt": "gas can inside orange and white {}"}, {"index": 168, "image_id": 2391099, "entity": "boat", "caption": "flag painted on the boat", "question": ["is there flag ?", "is there the boat ?"], "prompt": "flag painted on the {}"}, {"index": 169, "image_id": 2391099, "entity": "boat", "caption": "achomraich is name on side of boat", "question": ["is there name ?", "is there side ?", "is there boat ?"], "prompt": "achomraich is name on side of {}"}, {"index": 170, "image_id": 2390472, "entity": "boat", "caption": "Metal chain coming off front of boat.", "question": ["is there metal chain ?", "is there front ?", "is there boat ?"], "prompt": "Metal chain coming off front of {}."}, {"index": 171, "image_id": 2390472, "entity": "boat", "caption": "Green leaves on branches near boat.", "question": ["are there green leaves ?", "are there branches ?", "is there boat ?"], "prompt": "Green leaves on branches near {}."}, {"index": 172, "image_id": 2390472, "entity": "boat", "caption": "Boat is blue next to green boat.", "question": ["is there boat ?", "is there green boat ?"], "prompt": "Boat is blue next to green {}."}, {"index": 173, "image_id": 2388743, "entity": "boat", "caption": "a boat that has a clear window.", "question": ["is there a boat ?", "is there a clear window ?"], "prompt": "a {} that has a clear window."}, {"index": 174, "image_id": 2388725, "entity": "boat", "caption": "the yellow painted outside of a boat", "question": ["is there the yellow ?", "is there a boat ?"], "prompt": "the yellow painted outside of a {}"}, {"index": 175, "image_id": 2388588, "entity": "boat", "caption": "boat has a white stripe", "question": ["is there boat ?", "is there a white stripe ?"], "prompt": "{} has a white stripe"}, {"index": 176, "image_id": 2388588, "entity": "boat", "caption": "anchor of the boat is black", "question": ["is there anchor ?", "is there the boat ?"], "prompt": "anchor of the {} is black"}, {"index": 177, "image_id": 2388588, "entity": "boat", "caption": "people are on the boat ", "question": ["are there people ?", "is there the boat ?"], "prompt": "people are on the {} "}, {"index": 178, "image_id": 2388309, "entity": "boat", "caption": "the man is steering the boat", "question": ["is there the man ?", "is there the boat ?"], "prompt": "the man is steering the {}"}, {"index": 179, "image_id": 2388309, "entity": "boat", "caption": "blue boat rules sign", "question": ["are there blue boat rules ?"], "prompt": "blue {} rules sign"}, {"index": 180, "image_id": 2388309, "entity": "boat", "caption": "boats wake in the water", "question": ["are there boats ?", "is there the water ?"], "prompt": "{}s wake in the water"}, {"index": 181, "image_id": 2387705, "entity": "boat", "caption": "mast of a boat is wood", "question": ["is there mast ?", "is there a boat ?", "is there wood ?"], "prompt": "mast of a {} is wood"}, {"index": 182, "image_id": 2387564, "entity": "boat", "caption": "life guard is in a boat ", "question": ["is there life guard ?", "is there a boat ?"], "prompt": "life guard is in a {} "}, {"index": 183, "image_id": 2387564, "entity": "boat", "caption": "woman stands in a boat", "question": ["is there woman ?", "is there a boat ?"], "prompt": "woman stands in a {}"}, {"index": 184, "image_id": 2387146, "entity": "boat", "caption": "a man stand on a boat", "question": ["is there a man ?", "is there a boat ?"], "prompt": "a man stand on a {}"}, {"index": 185, "image_id": 2387146, "entity": "boat", "caption": "A group of red boats docked at the shore", "question": ["is there a group ?", "are there red boats ?", "is there the shore ?"], "prompt": "A group of red {}s docked at the shore"}, {"index": 186, "image_id": 2387146, "entity": "boat", "caption": "Person standing on red boat.", "question": ["is there person ?", "is there red boat ?"], "prompt": "Person standing on red {}."}, {"index": 187, "image_id": 2387146, "entity": "boat", "caption": "Red boat sitting in water.", "question": ["is there red boat ?", "is there water ?"], "prompt": "Red {} sitting in water."}, {"index": 188, "image_id": 2387137, "entity": "boat", "caption": "the woman is on a boat", "question": ["is there the woman ?", "is there a boat ?"], "prompt": "the woman is on a {}"}, {"index": 189, "image_id": 2386500, "entity": "boat", "caption": "rope tied at front of boat", "question": ["is there rope ?", "is there front ?", "is there boat ?"], "prompt": "rope tied at front of {}"}, {"index": 190, "image_id": 2385578, "entity": "boat", "caption": "Hook and chain hoist above boat.", "question": ["is there hook ?", "is there chain ?", "is there hoist ?", "is there boat ?"], "prompt": "Hook and chain hoist above {}."}, {"index": 191, "image_id": 2384997, "entity": "boat", "caption": "metal crane attached to a boat", "question": ["is there metal crane ?", "is there a boat ?"], "prompt": "metal crane attached to a {}"}, {"index": 192, "image_id": 2384997, "entity": "boat", "caption": "Tower lift on back of boat", "question": ["is there tower ?", "is there back ?", "is there boat ?"], "prompt": "Tower lift on back of {}"}, {"index": 193, "image_id": 2384727, "entity": "boat", "caption": "red and black metal boat smoke stack", "question": ["is there red and black metal boat smoke ?"], "prompt": "red and black metal {} smoke stack"}, {"index": 194, "image_id": 2384036, "entity": "boat", "caption": "The boat moving in the water causing a wave.", "question": ["is there the boat ?", "is there the water ?", "is there a wave ?"], "prompt": "The {} moving in the water causing a wave."}, {"index": 195, "image_id": 2384036, "entity": "boat", "caption": "A search light mounted on a boat", "question": ["is there a search light ?", "is there a boat ?"], "prompt": "A search light mounted on a {}"}, {"index": 196, "image_id": 2384036, "entity": "boat", "caption": "A boat mounted bull horn", "question": ["is there a boat ?", "is there bull horn ?"], "prompt": "A {} mounted bull horn"}, {"index": 197, "image_id": 2383929, "entity": "boat", "caption": "SF3-3999 writing on boat", "question": ["is there boat ?"], "prompt": "SF3-3999 writing on {}"}, {"index": 198, "image_id": 2383555, "entity": "boat", "caption": "a wooden boat oar", "question": ["is there a wooden boat ?", "is there oar ?"], "prompt": "a wooden {} oar"}, {"index": 199, "image_id": 2383462, "entity": "boat", "caption": "The boat is on land", "question": ["is there the boat ?", "is there land ?"], "prompt": "The {} is on land"}, {"index": 200, "image_id": 2383399, "entity": "boat", "caption": "water the boat is in", "question": ["is there the boat ?"], "prompt": "water the {} is in"}, {"index": 201, "image_id": 2383399, "entity": "boat", "caption": "deck of the boat the couple is on", "question": ["is there deck ?", "is there the boat ?", "is there the couple ?"], "prompt": "deck of the {} the couple is on"}, {"index": 202, "image_id": 2383399, "entity": "boat", "caption": "two people are in boat.", "question": ["are there two people ?", "is there boat ?"], "prompt": "two people are in {}."}, {"index": 203, "image_id": 2383272, "entity": "boat", "caption": "MASEN written on the boat", "question": ["is there the boat ?"], "prompt": "MASEN written on the {}"}, {"index": 204, "image_id": 2383272, "entity": "boat", "caption": "door on the boat is wood slats", "question": ["is there door ?", "is there the boat ?", "are there wood slats ?"], "prompt": "door on the {} is wood slats"}, {"index": 205, "image_id": 2382463, "entity": "boat", "caption": "The boat has two sails", "question": ["is there the boat ?", "are there two sails ?"], "prompt": "The {} has two sails"}, {"index": 206, "image_id": 2382231, "entity": "boat", "caption": "the dog is on a boat", "question": ["is there the dog ?", "is there a boat ?"], "prompt": "the dog is on a {}"}, {"index": 207, "image_id": 2382219, "entity": "boat", "caption": "the inflatable boat is red ", "question": ["is there the inflatable boat ?"], "prompt": "the inflatable {} is red "}, {"index": 208, "image_id": 2382219, "entity": "boat", "caption": "Life saving boat is red color.", "question": ["is there life saving boat ?", "is there red color ?"], "prompt": "Life saving {} is red color."}, {"index": 209, "image_id": 2382219, "entity": "boat", "caption": "The man is driving the boat", "question": ["is there the man ?", "is there the boat ?"], "prompt": "The man is driving the {}"}, {"index": 210, "image_id": 2382219, "entity": "boat", "caption": "The boat has a brown and white seat", "question": ["is there the boat ?", "is there a brown and white seat ?"], "prompt": "The {} has a brown and white seat"}, {"index": 211, "image_id": 2382102, "entity": "boat", "caption": "Person is barefoot standing on edge of boat.", "question": ["is there person ?", "is there edge ?", "is there boat ?"], "prompt": "Person is barefoot standing on edge of {}."}, {"index": 212, "image_id": 2382102, "entity": "boat", "caption": "the man is on the side of the boat", "question": ["is there the man ?", "is there the side ?", "is there the boat ?"], "prompt": "the man is on the side of the {}"}, {"index": 213, "image_id": 2381922, "entity": "boat", "caption": "the boat has a shark", "question": ["is there the boat ?", "is there a shark ?"], "prompt": "the {} has a shark"}, {"index": 214, "image_id": 2381922, "entity": "boat", "caption": "the boat has people ", "question": ["is there the boat ?", "are there people ?"], "prompt": "the {} has people "}, {"index": 215, "image_id": 2381685, "entity": "boat", "caption": "small boat tied to another boat", "question": ["is there small boat ?", "is there another boat ?"], "prompt": "small {} tied to another {}"}, {"index": 216, "image_id": 2381433, "entity": "boat", "caption": "rope hanging on a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "rope hanging on a {}"}, {"index": 217, "image_id": 2381084, "entity": "boat", "caption": "Cushions on boat are white.", "question": ["are there cushions ?", "is there boat ?"], "prompt": "Cushions on {} are white."}, {"index": 218, "image_id": 2381084, "entity": "boat", "caption": "Dog is standing on back of boat.", "question": ["is there dog ?", "is there boat ?"], "prompt": "Dog is standing on back of {}."}, {"index": 219, "image_id": 2380882, "entity": "boat", "caption": "A woman sitting on a boat reading", "question": ["is there a woman ?", "is there a boat ?"], "prompt": "A woman sitting on a {} reading"}, {"index": 220, "image_id": 2380594, "entity": "boat", "caption": "the boat has two outboard motors", "question": ["is there the boat ?", "are there two outboard motors ?"], "prompt": "the {} has two outboard motors"}, {"index": 221, "image_id": 2380594, "entity": "boat", "caption": "the boat is in the water ", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 222, "image_id": 2379791, "entity": "boat", "caption": "boats docked along the shoreline", "question": ["are there boats ?", "is there the shoreline ?"], "prompt": "{}s docked along the shoreline"}, {"index": 223, "image_id": 2379774, "entity": "boat", "caption": "the body of water the boat is in", "question": ["is there the body ?", "is there water ?", "is there the boat ?"], "prompt": "the body of water the {} is in"}, {"index": 224, "image_id": 2379714, "entity": "boat", "caption": "boats say nice on them", "question": ["are there boats ?"], "prompt": "{}s say nice on them"}, {"index": 225, "image_id": 2379714, "entity": "boat", "caption": "boat with life preserver on it", "question": ["is there boat ?", "is there life preserver ?"], "prompt": "{} with life preserver on it"}, {"index": 226, "image_id": 2379714, "entity": "boat", "caption": "nets and lines hang off boat", "question": ["are there nets ?", "are there lines ?", "is there boat ?"], "prompt": "nets and lines hang off {}"}, {"index": 227, "image_id": 2379714, "entity": "boat", "caption": "tarp covers top of boat", "question": ["is there tarp ?", "is there top ?", "is there boat ?"], "prompt": "tarp covers top of {}"}, {"index": 228, "image_id": 2379714, "entity": "boat", "caption": "man sits on boat", "question": ["is there man ?", "is there boat ?"], "prompt": "man sits on {}"}, {"index": 229, "image_id": 2379714, "entity": "boat", "caption": "man standing beside a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man standing beside a {}"}, {"index": 230, "image_id": 2379304, "entity": "boat", "caption": "a boat is in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "a {} is in the water"}, {"index": 231, "image_id": 2378904, "entity": "boat", "caption": "three boats at a boat dock", "question": ["are there three boats ?", "is there a boat dock ?"], "prompt": "three {}s at a {} dock"}, {"index": 232, "image_id": 2378904, "entity": "boat", "caption": "the boat is on a boat lift", "question": ["is there the boat ?", "is there a boat lift ?"], "prompt": "the {} is on a {} lift"}, {"index": 233, "image_id": 2378904, "entity": "boat", "caption": "blue rope attached to the boat", "question": ["is there blue rope ?", "is there the boat ?"], "prompt": "blue rope attached to the {}"}, {"index": 234, "image_id": 2378904, "entity": "boat", "caption": "boat docked on pier", "question": ["is there boat ?", "is there pier ?"], "prompt": "{} docked on pier"}, {"index": 235, "image_id": 2378460, "entity": "boat", "caption": "Row is on the boat. ", "question": ["is there row ?", "is there the boat ?"], "prompt": "Row is on the {}. "}, {"index": 236, "image_id": 2378460, "entity": "boat", "caption": "fruit laid out neatly in the closest boat", "question": ["is there fruit ?", "is there the closest boat ?"], "prompt": "fruit laid out neatly in the closest {}"}, {"index": 237, "image_id": 2378110, "entity": "boat", "caption": "rope ties boat to dock", "question": [], "prompt": "rope ties {} to dock"}, {"index": 238, "image_id": 2378110, "entity": "boat", "caption": "A banner is on the back of the boat", "question": ["is there a banner ?", "is there the back ?", "is there the boat ?"], "prompt": "A banner is on the back of the {}"}, {"index": 239, "image_id": 2378110, "entity": "boat", "caption": "Buoys are hanging off the boat", "question": ["are there buoys ?", "is there the boat ?"], "prompt": "Buoys are hanging off the {}"}, {"index": 240, "image_id": 2377887, "entity": "boat", "caption": "the emergency boats are on the ship", "question": ["are there the emergency boats ?", "is there the ship ?"], "prompt": "the emergency {}s are on the ship"}, {"index": 241, "image_id": 2377380, "entity": "boat", "caption": "ropes suspended over boats", "question": ["are there ropes ?", "are there boats ?"], "prompt": "ropes suspended over {}s"}, {"index": 242, "image_id": 2377380, "entity": "boat", "caption": "tip of boat bow", "question": ["is there tip ?", "is there boat ?"], "prompt": "tip of {} bow"}, {"index": 243, "image_id": 2377380, "entity": "boat", "caption": "a boat docked on land.", "question": ["is there a boat ?", "is there land ?"], "prompt": "a {} docked on land."}, {"index": 244, "image_id": 2377083, "entity": "boat", "caption": "Cord coming out of back of paddle boat", "question": ["is there cord ?", "is there back ?", "is there paddle boat ?"], "prompt": "Cord coming out of back of paddle {}"}, {"index": 245, "image_id": 2376246, "entity": "boat", "caption": "small red boat docked in water ", "question": ["is there small red boat ?", "is there water ?"], "prompt": "small red {} docked in water "}, {"index": 246, "image_id": 2375980, "entity": "boat", "caption": "A sign is atop the boat", "question": ["is there a sign ?", "is there the boat ?"], "prompt": "A sign is atop the {}"}, {"index": 247, "image_id": 2375980, "entity": "boat", "caption": "house boat docked on river", "question": ["is there house boat ?", "is there river ?"], "prompt": "house {} docked on river"}, {"index": 248, "image_id": 2375980, "entity": "boat", "caption": "many bikes piled onto boat", "question": ["are there many bikes ?", "is there boat ?"], "prompt": "many bikes piled onto {}"}, {"index": 249, "image_id": 2375275, "entity": "boat", "caption": "rope to secure the boat", "question": ["is there the boat ?"], "prompt": "rope to secure the {}"}, {"index": 250, "image_id": 2375275, "entity": "boat", "caption": "the blue rope attached to the boat", "question": ["is there the blue rope ?", "is there the boat ?"], "prompt": "the blue rope attached to the {}"}, {"index": 251, "image_id": 2374451, "entity": "boat", "caption": "life boat hanging on a ship", "question": ["is there life boat ?", "is there a ship ?"], "prompt": "life {} hanging on a ship"}, {"index": 252, "image_id": 2374451, "entity": "boat", "caption": "wires that hold the life boat", "question": ["are there wires ?", "is there the life boat ?"], "prompt": "wires that hold the life {}"}, {"index": 253, "image_id": 2374088, "entity": "boat", "caption": "A rope attached to a boat", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "A rope attached to a {}"}, {"index": 254, "image_id": 2373499, "entity": "boat", "caption": "team of people rowing boat", "question": ["is there team ?", "are there people ?", "is there boat ?"], "prompt": "team of people rowing {}"}, {"index": 255, "image_id": 2373351, "entity": "boat", "caption": "Woman sitting at the back of a boat wearing a light blue shirt", "question": ["is there woman ?", "is there the back ?", "is there a boat ?", "is there a light blue shirt ?"], "prompt": "Woman sitting at the back of a {} wearing a light blue shirt"}, {"index": 256, "image_id": 2373351, "entity": "boat", "caption": "Frothy wake left behind in the water as a boat travels", "question": ["is there frothy wake ?", "is there the water ?", "is there a boat ?"], "prompt": "Frothy wake left behind in the water as a {} travels"}, {"index": 257, "image_id": 2373126, "entity": "boat", "caption": "white boats parked in dock", "question": ["are there white boats ?", "is there dock ?"], "prompt": "white {}s parked in dock"}, {"index": 258, "image_id": 2372837, "entity": "boat", "caption": "a boat docked in a harbor", "question": ["is there a boat ?", "is there a harbor ?"], "prompt": "a {} docked in a harbor"}, {"index": 259, "image_id": 2372480, "entity": "boat", "caption": "A boat docked under a tunnel.", "question": ["is there a boat ?", "is there a tunnel ?"], "prompt": "A {} docked under a tunnel."}, {"index": 260, "image_id": 2372480, "entity": "boat", "caption": "boat is in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is in water"}, {"index": 261, "image_id": 2372341, "entity": "boat", "caption": "Man with red hat leaning on boat", "question": ["is there man ?", "is there red hat ?", "is there boat ?"], "prompt": "Man with red hat leaning on {}"}, {"index": 262, "image_id": 2372106, "entity": "boat", "caption": "man is standing on the back of the boat", "question": ["is there man ?", "is there the back ?", "is there the boat ?"], "prompt": "man is standing on the back of the {}"}, {"index": 263, "image_id": 2371942, "entity": "boat", "caption": "Rope tied to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "Rope tied to {}"}, {"index": 264, "image_id": 2371644, "entity": "boat", "caption": "man standing on bow of boat", "question": ["is there man ?", "is there bow ?", "is there boat ?"], "prompt": "man standing on bow of {}"}, {"index": 265, "image_id": 2371644, "entity": "boat", "caption": "man standing at the hull of a boat", "question": ["is there man ?", "is there the hull ?", "is there a boat ?"], "prompt": "man standing at the hull of a {}"}, {"index": 266, "image_id": 2371288, "entity": "boat", "caption": "The birds are following the boat.", "question": ["are there the birds ?", "is there the boat ?"], "prompt": "The birds are following the {}."}, {"index": 267, "image_id": 2371288, "entity": "boat", "caption": "The people are standing on the boat.", "question": ["are there the people ?", "is there the boat ?"], "prompt": "The people are standing on the {}."}, {"index": 268, "image_id": 2371288, "entity": "boat", "caption": "birds flying around boat", "question": ["are there birds ?"], "prompt": "birds flying around {}"}, {"index": 269, "image_id": 2371288, "entity": "boat", "caption": "birds flying around shrimpers boat", "question": ["are there birds ?", "are there shrimpers ?"], "prompt": "birds flying around shrimpers {}"}, {"index": 270, "image_id": 2371288, "entity": "boat", "caption": "three men are visible on the boat", "question": ["are there three men ?", "is there the boat ?"], "prompt": "three men are visible on the {}"}, {"index": 271, "image_id": 2371288, "entity": "boat", "caption": "the boat has caused some waves in the water", "question": ["is there the boat ?", "are there some waves ?", "is there the water ?"], "prompt": "the {} has caused some waves in the water"}, {"index": 272, "image_id": 2371137, "entity": "boat", "caption": "The name says \" MAVIS\" on boat", "question": ["is there the name ?", "is there boat ?"], "prompt": "The name says \" MAVIS\" on {}"}, {"index": 273, "image_id": 2371004, "entity": "boat", "caption": "The sailboats all have tall masts", "question": ["are there the sailboats ?", "are there tall masts ?"], "prompt": "The sail{}s all have tall masts"}, {"index": 274, "image_id": 2370993, "entity": "boat", "caption": "boat has wooden floor", "question": ["is there boat ?", "is there wooden floor ?"], "prompt": "{} has wooden floor"}, {"index": 275, "image_id": 2370335, "entity": "boat", "caption": "MAMA written on side of boat", "question": ["is there mama ?", "is there side ?", "is there boat ?"], "prompt": "MAMA written on side of {}"}, {"index": 276, "image_id": 2370335, "entity": "boat", "caption": "boat is on a trailer", "question": ["is there boat ?", "is there a trailer ?"], "prompt": "{} is on a trailer"}, {"index": 277, "image_id": 2370335, "entity": "boat", "caption": "A boat is on a trailer", "question": ["is there a boat ?", "is there a trailer ?"], "prompt": "A {} is on a trailer"}, {"index": 278, "image_id": 2370335, "entity": "boat", "caption": "The boat is at somebody's home", "question": ["is there the boat ?", "is there somebody's home ?"], "prompt": "The {} is at somebody's home"}, {"index": 279, "image_id": 2369706, "entity": "boat", "caption": "boat docked at the harbor", "question": ["is there boat ?", "is there the harbor ?"], "prompt": "{} docked at the harbor"}, {"index": 280, "image_id": 2368857, "entity": "boat", "caption": "The boats have tall sails ", "question": ["are there the boats ?", "are there tall sails ?"], "prompt": "The {}s have tall sails "}, {"index": 281, "image_id": 2368689, "entity": "boat", "caption": "TGI painted on the side of the boat", "question": ["is there the side ?", "is there the boat ?"], "prompt": "TGI painted on the side of the {}"}, {"index": 282, "image_id": 2368436, "entity": "boat", "caption": "Bananas are in a boat", "question": ["are there bananas ?", "is there a boat ?"], "prompt": "Bananas are in a {}"}, {"index": 283, "image_id": 2368415, "entity": "boat", "caption": "dog that's standing on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "dog that's standing on a {}"}, {"index": 284, "image_id": 2368415, "entity": "boat", "caption": "water that boats are sitting in", "question": ["is there water ?", "are there boats ?"], "prompt": "water that {}s are sitting in"}, {"index": 285, "image_id": 2368415, "entity": "boat", "caption": "boat brown dog is standing on", "question": ["is there boat brown dog ?"], "prompt": "{} brown dog is standing on"}, {"index": 286, "image_id": 2368415, "entity": "boat", "caption": "metal loop hanging on boat", "question": ["is there metal loop ?", "is there boat ?"], "prompt": "metal loop hanging on {}"}, {"index": 287, "image_id": 2368054, "entity": "boat", "caption": "The dog feet is on the boat.", "question": ["are there the dog feet ?", "is there the boat ?"], "prompt": "The dog feet is on the {}."}, {"index": 288, "image_id": 2368009, "entity": "boat", "caption": "rope ties boat to the dock", "question": ["are there rope ties boat ?", "is there the dock ?"], "prompt": "rope ties {} to the dock"}, {"index": 289, "image_id": 2368009, "entity": "boat", "caption": "fire extinguishers on beard a boat", "question": ["are there fire extinguishers ?", "is there a boat ?"], "prompt": "fire extinguishers on beard a {}"}, {"index": 290, "image_id": 2367819, "entity": "boat", "caption": "two people are still on the boat", "question": ["are there two people ?", "is there the boat ?"], "prompt": "two people are still on the {}"}, {"index": 291, "image_id": 2367673, "entity": "boat", "caption": "a blue boat tied to a dock", "question": ["is there a blue boat ?", "is there a dock ?"], "prompt": "a blue {} tied to a dock"}, {"index": 292, "image_id": 2367673, "entity": "boat", "caption": "a white boat tied to a dock", "question": ["is there a white boat ?", "is there a dock ?"], "prompt": "a white {} tied to a dock"}, {"index": 293, "image_id": 2367655, "entity": "boat", "caption": "Blue and white boat floating in water", "question": ["is there blue and white boat ?", "is there water ?"], "prompt": "Blue and white {} floating in water"}, {"index": 294, "image_id": 2367655, "entity": "boat", "caption": "water pouring out the back of a boat.", "question": ["is there water ?", "is there the back ?", "is there a boat ?"], "prompt": "water pouring out the back of a {}."}, {"index": 295, "image_id": 2367579, "entity": "boat", "caption": "man driving a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man driving a {}"}, {"index": 296, "image_id": 2365612, "entity": "boat", "caption": "the bike is leaning on the boat ", "question": ["is there the bike ?", "is there the boat ?"], "prompt": "the bike is leaning on the {} "}, {"index": 297, "image_id": 2365530, "entity": "boat", "caption": "The white lettering of the word WAVE on the boat. ", "question": ["is there the white lettering ?", "is there the word wave ?", "is there the boat ?"], "prompt": "The white lettering of the word WAVE on the {}. "}, {"index": 298, "image_id": 2365530, "entity": "boat", "caption": "Grey hair on a man bent over the boat. ", "question": ["is there grey hair ?", "is there a man ?", "is there the boat ?"], "prompt": "Grey hair on a man bent over the {}. "}, {"index": 299, "image_id": 2365530, "entity": "boat", "caption": "The black and white side of a boat that says NEXT WAVE", "question": ["is there the black and white side ?", "is there a boat ?"], "prompt": "The black and white side of a {} that says NEXT WAVE"}, {"index": 300, "image_id": 2365530, "entity": "boat", "caption": "The boat says \"Next wave\"", "question": ["is there the boat ?", "is there next wave ?"], "prompt": "The {} says \"Next wave\""}, {"index": 301, "image_id": 2365530, "entity": "boat", "caption": "A rolled up mast on the boat", "question": ["is there a rolled up mast ?", "is there the boat ?"], "prompt": "A rolled up mast on the {}"}, {"index": 302, "image_id": 2365310, "entity": "boat", "caption": "lorries packed near the boats", "question": ["are there lorries ?", "are there the boats ?"], "prompt": "lorries packed near the {}s"}, {"index": 303, "image_id": 2365007, "entity": "boat", "caption": "water where boats are docks", "question": ["is there water ?", "are there boats ?", "are there docks ?"], "prompt": "water where {}s are docks"}, {"index": 304, "image_id": 2364291, "entity": "boat", "caption": "the tire is on the boat", "question": ["is there the tire ?", "is there the boat ?"], "prompt": "the tire is on the {}"}, {"index": 305, "image_id": 2364078, "entity": "boat", "caption": "White chain round a boat", "question": ["is there a boat ?"], "prompt": "White chain round a {}"}, {"index": 306, "image_id": 2364078, "entity": "boat", "caption": "The sailboat has a tall mast.", "question": ["is there the sailboat ?", "is there a tall mast ?"], "prompt": "The sail{} has a tall mast."}, {"index": 307, "image_id": 2364078, "entity": "boat", "caption": "A boat is moving in the water behind the boat.", "question": ["is there a boat ?", "is there the water ?", "is there the boat ?"], "prompt": "A {} is moving in the water behind the {}."}, {"index": 308, "image_id": 2362967, "entity": "boat", "caption": "a boat tied to shore", "question": ["is there a boat ?", "is there shore ?"], "prompt": "a {} tied to shore"}, {"index": 309, "image_id": 2362967, "entity": "boat", "caption": "boat docked on river", "question": ["is there boat ?", "is there river ?"], "prompt": "{} docked on river"}, {"index": 310, "image_id": 2362967, "entity": "boat", "caption": "ther boat is white in color ", "question": ["is there ther boat ?", "is there color ?"], "prompt": "ther {} is white in color "}, {"index": 311, "image_id": 2362967, "entity": "boat", "caption": "the boat is white in color", "question": ["is there the boat ?", "is there color ?"], "prompt": "the {} is white in color"}, {"index": 312, "image_id": 2362871, "entity": "boat", "caption": "blue boat hanging on side of ship", "question": ["is there blue boat ?", "is there side ?", "is there ship ?"], "prompt": "blue {} hanging on side of ship"}, {"index": 313, "image_id": 2362329, "entity": "boat", "caption": "front end of boat opened up", "question": ["is there front end ?", "is there boat ?"], "prompt": "front end of {} opened up"}, {"index": 314, "image_id": 2362280, "entity": "boat", "caption": "name of boat painted in white", "question": ["is there name ?", "is there boat ?", "is there white ?"], "prompt": "name of {} painted in white"}, {"index": 315, "image_id": 2362280, "entity": "boat", "caption": "two black rubber tires mounted on boat", "question": ["are there two black rubber tires ?", "is there boat ?"], "prompt": "two black rubber tires mounted on {}"}, {"index": 316, "image_id": 2362246, "entity": "boat", "caption": "a river with a lot of boats docked in it", "question": ["is there a river ?", "is there a lot ?", "are there boats ?"], "prompt": "a river with a lot of {}s docked in it"}, {"index": 317, "image_id": 2362239, "entity": "boat", "caption": "Man kneeling down on boat. ", "question": ["is there man ?", "is there boat ?"], "prompt": "Man kneeling down on {}. "}, {"index": 318, "image_id": 2361892, "entity": "boat", "caption": "the lady is in a boat", "question": ["is there the lady ?", "is there a boat ?"], "prompt": "the lady is in a {}"}, {"index": 319, "image_id": 2361892, "entity": "boat", "caption": "small boat sailing on water", "question": ["is there small boat ?", "is there water ?"], "prompt": "small {} sailing on water"}, {"index": 320, "image_id": 2361742, "entity": "boat", "caption": "Rope attached to front of boat", "question": ["is there rope ?", "is there front ?", "is there boat ?"], "prompt": "Rope attached to front of {}"}, {"index": 321, "image_id": 2361562, "entity": "boat", "caption": "the cat is on the boat", "question": ["is there the cat ?", "is there the boat ?"], "prompt": "the cat is on the {}"}, {"index": 322, "image_id": 2361562, "entity": "boat", "caption": "the boat is at a port", "question": ["is there the boat ?", "is there a port ?"], "prompt": "the {} is at a port"}, {"index": 323, "image_id": 2361562, "entity": "boat", "caption": "the cat stands on the boat", "question": ["is there the cat ?", "is there the boat ?"], "prompt": "the cat stands on the {}"}, {"index": 324, "image_id": 2361562, "entity": "boat", "caption": "Cat is standing on back of boat.", "question": ["is there cat ?", "is there boat ?"], "prompt": "Cat is standing on back of {}."}, {"index": 325, "image_id": 2361562, "entity": "boat", "caption": "boat capsized in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} capsized in water"}, {"index": 326, "image_id": 2361536, "entity": "boat", "caption": "cows are near a boat", "question": ["are there cows ?", "is there a boat ?"], "prompt": "cows are near a {}"}, {"index": 327, "image_id": 2361359, "entity": "boat", "caption": "A motor is on the boat", "question": ["is there a motor ?", "is there the boat ?"], "prompt": "A motor is on the {}"}, {"index": 328, "image_id": 2359602, "entity": "boat", "caption": "A log is keeping the boat off the ground.", "question": ["is there a log ?", "is there the boat ?", "is there the ground ?"], "prompt": "A log is keeping the {} off the ground."}, {"index": 329, "image_id": 2359008, "entity": "boat", "caption": "Sail boat docked at marina.", "question": ["is there sail boat ?", "is there marina ?"], "prompt": "Sail {} docked at marina."}, {"index": 330, "image_id": 2359008, "entity": "boat", "caption": "White sail boat docked in water.", "question": ["is there white sail boat ?", "is there water ?"], "prompt": "White sail {} docked in water."}, {"index": 331, "image_id": 2358936, "entity": "boat", "caption": "a dog is on the boat", "question": ["is there a dog ?", "is there the boat ?"], "prompt": "a dog is on the {}"}, {"index": 332, "image_id": 2358604, "entity": "boat", "caption": "people are on the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "people are on the {}"}, {"index": 333, "image_id": 2357802, "entity": "boat", "caption": "The people are on a boat on a lake", "question": ["are there the people ?", "is there a boat ?", "is there a lake ?"], "prompt": "The people are on a {} on a lake"}, {"index": 334, "image_id": 2357398, "entity": "boat", "caption": "two woman walking on a boat", "question": ["is there two woman ?", "is there a boat ?"], "prompt": "two woman walking on a {}"}, {"index": 335, "image_id": 2357398, "entity": "boat", "caption": "the top of the boat is wood", "question": ["is there the top ?", "is there the boat ?", "is there wood ?"], "prompt": "the top of the {} is wood"}, {"index": 336, "image_id": 2357118, "entity": "boat", "caption": "Person sitting inside of boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person sitting inside of {}."}, {"index": 337, "image_id": 2357118, "entity": "boat", "caption": "the sun is on the boat", "question": ["is there the sun ?", "is there the boat ?"], "prompt": "the sun is on the {}"}, {"index": 338, "image_id": 2355707, "entity": "boat", "caption": "The boat has 3 windows", "question": ["is there the boat ?", "are there 3 windows ?"], "prompt": "The {} has 3 windows"}, {"index": 339, "image_id": 2355505, "entity": "boat", "caption": "Box on a boat oar", "question": ["is there a boat ?"], "prompt": "Box on a {} oar"}, {"index": 340, "image_id": 2355505, "entity": "boat", "caption": "Flag hanging from a boat.", "question": ["is there flag ?", "is there a boat ?"], "prompt": "Flag hanging from a {}."}, {"index": 341, "image_id": 2355361, "entity": "boat", "caption": "two triangle shaped white sails on sailboat", "question": ["is there two triangle ?", "are there white sails ?", "is there sailboat ?"], "prompt": "two triangle shaped white sails on sail{}"}, {"index": 342, "image_id": 2355027, "entity": "boat", "caption": "boat pulled up to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled up to dock"}, {"index": 343, "image_id": 2355027, "entity": "boat", "caption": "boat has flagpole on back", "question": ["is there boat ?", "is there flagpole ?"], "prompt": "{} has flagpole on back"}, {"index": 344, "image_id": 2355027, "entity": "boat", "caption": "flag stuck into a boat", "question": ["is there flag ?", "is there a boat ?"], "prompt": "flag stuck into a {}"}, {"index": 345, "image_id": 2354959, "entity": "boat", "caption": "green moss growing on the side of the boat", "question": ["is there green moss ?", "is there the side ?", "is there the boat ?"], "prompt": "green moss growing on the side of the {}"}, {"index": 346, "image_id": 2354939, "entity": "boat", "caption": "the sailboat is white", "question": ["is there the sailboat ?"], "prompt": "the sail{} is white"}, {"index": 347, "image_id": 2354939, "entity": "boat", "caption": "a small boat sailing", "question": ["is there a small boat ?"], "prompt": "a small {} sailing"}, {"index": 348, "image_id": 2354714, "entity": "boat", "caption": "The life preserver on the front of the boat.", "question": ["is there the life preserver ?", "is there the front ?", "is there the boat ?"], "prompt": "The life preserver on the front of the {}."}, {"index": 349, "image_id": 2354714, "entity": "boat", "caption": "this is a boat ", "question": ["is there a boat ?"], "prompt": "this is a {} "}, {"index": 350, "image_id": 2354714, "entity": "boat", "caption": "waves stirred up by white boat", "question": ["are there waves ?", "is there white boat ?"], "prompt": "waves stirred up by white {}"}, {"index": 351, "image_id": 2354714, "entity": "boat", "caption": "red and white flag waving on boat", "question": ["is there red and white flag ?", "is there boat ?"], "prompt": "red and white flag waving on {}"}, {"index": 352, "image_id": 2354714, "entity": "boat", "caption": "tan rope hanging on rail of boat", "question": ["is there rail ?", "is there boat ?"], "prompt": "tan rope hanging on rail of {}"}, {"index": 353, "image_id": 2354458, "entity": "boat", "caption": "Tire hanging from boat", "question": ["is there tire ?", "is there boat ?"], "prompt": "Tire hanging from {}"}, {"index": 354, "image_id": 2354458, "entity": "boat", "caption": "Silva Lopes is the name of boat", "question": ["are there silva lopes ?", "is there the name ?", "is there boat ?"], "prompt": "Silva Lopes is the name of {}"}, {"index": 355, "image_id": 2354402, "entity": "boat", "caption": "woman sitting on boat bow", "question": ["is there woman ?", "is there boat bow ?"], "prompt": "woman sitting on {} bow"}, {"index": 356, "image_id": 2354402, "entity": "boat", "caption": "Person is barefoot on boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person is barefoot on {}."}, {"index": 357, "image_id": 2354402, "entity": "boat", "caption": "Person sitting on boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person sitting on {}."}, {"index": 358, "image_id": 2354402, "entity": "boat", "caption": "Wood boat floating in water.", "question": ["is there wood boat ?", "is there water ?"], "prompt": "Wood {} floating in water."}, {"index": 359, "image_id": 2354178, "entity": "boat", "caption": "a flag is on the boat", "question": ["is there a flag ?", "is there the boat ?"], "prompt": "a flag is on the {}"}, {"index": 360, "image_id": 2354178, "entity": "boat", "caption": "a small boat is on the water", "question": ["is there a small boat ?", "is there the water ?"], "prompt": "a small {} is on the water"}, {"index": 361, "image_id": 2354178, "entity": "boat", "caption": "people standing close to the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "people standing close to the {}"}, {"index": 362, "image_id": 2354017, "entity": "boat", "caption": "The rolled up sail of the boat.", "question": ["is there the rolled up sail ?", "is there the boat ?"], "prompt": "The rolled up sail of the {}."}, {"index": 363, "image_id": 2353866, "entity": "boat", "caption": "boat pulled at dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled at dock"}, {"index": 364, "image_id": 2353866, "entity": "boat", "caption": "boat has overhead tent", "question": ["is there boat ?", "is there overhead tent ?"], "prompt": "{} has overhead tent"}, {"index": 365, "image_id": 2353358, "entity": "boat", "caption": "red life save on boat", "question": ["is there red life ?", "is there boat ?"], "prompt": "red life save on {}"}, {"index": 366, "image_id": 2353358, "entity": "boat", "caption": "rope hanging from boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope hanging from {}"}, {"index": 367, "image_id": 2353358, "entity": "boat", "caption": "rope attached to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope attached to {}"}, {"index": 368, "image_id": 2353153, "entity": "boat", "caption": "the boat has a red covering", "question": ["is there the boat ?", "is there a red covering ?"], "prompt": "the {} has a red covering"}, {"index": 369, "image_id": 2352684, "entity": "boat", "caption": "metal post and boat reflected in the water", "question": ["is there metal post ?", "is there boat ?", "is there the water ?"], "prompt": "metal post and {} reflected in the water"}, {"index": 370, "image_id": 2352424, "entity": "boat", "caption": "yellow mast stick up out of a boat", "question": ["is there yellow mast ?", "is there a boat ?"], "prompt": "yellow mast stick up out of a {}"}, {"index": 371, "image_id": 2351791, "entity": "boat", "caption": "The man and woman are in a boat.", "question": ["is there the man ?", "is there woman ?", "is there a boat ?"], "prompt": "The man and woman are in a {}."}, {"index": 372, "image_id": 2351791, "entity": "boat", "caption": "Woman sitting on boat.", "question": ["is there woman ?", "is there boat ?"], "prompt": "Woman sitting on {}."}, {"index": 373, "image_id": 2351791, "entity": "boat", "caption": "handle of a boat oar", "question": ["is there handle ?", "is there a boat ?"], "prompt": "handle of a {} oar"}, {"index": 374, "image_id": 2351188, "entity": "boat", "caption": "People stand next to the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "People stand next to the {}"}, {"index": 375, "image_id": 2351188, "entity": "boat", "caption": "Bicycles are on the boat", "question": ["are there bicycles ?", "is there the boat ?"], "prompt": "Bicycles are on the {}"}, {"index": 376, "image_id": 2351016, "entity": "boat", "caption": "boat is floating in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is floating in water"}, {"index": 377, "image_id": 2351016, "entity": "boat", "caption": "rope tied to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope tied to {}"}, {"index": 378, "image_id": 2350876, "entity": "boat", "caption": "the rope hanging off of the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "the rope hanging off of the {}"}, {"index": 379, "image_id": 2350876, "entity": "boat", "caption": "boat docked on shore ", "question": ["is there boat ?", "is there shore ?"], "prompt": "{} docked on shore "}, {"index": 380, "image_id": 2350876, "entity": "boat", "caption": "red rope attached to boat ", "question": ["is there red rope ?", "is there boat ?"], "prompt": "red rope attached to {} "}, {"index": 381, "image_id": 2350876, "entity": "boat", "caption": "rope attached to boat ", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope attached to {} "}, {"index": 382, "image_id": 2350779, "entity": "boat", "caption": "rope tied to a small boat", "question": ["is there rope ?", "is there a small boat ?"], "prompt": "rope tied to a small {}"}, {"index": 383, "image_id": 2350779, "entity": "boat", "caption": "a floating tire mounted on boat", "question": ["is there a floating tire ?", "is there boat ?"], "prompt": "a floating tire mounted on {}"}, {"index": 384, "image_id": 2350779, "entity": "boat", "caption": "two boats mounted by a rope", "question": ["are there two boats ?", "is there a rope ?"], "prompt": "two {}s mounted by a rope"}, {"index": 385, "image_id": 2350779, "entity": "boat", "caption": "rope holding two boats", "question": ["is there rope ?", "are there two boats ?"], "prompt": "rope holding two {}s"}, {"index": 386, "image_id": 2350304, "entity": "boat", "caption": "A boat that has a lot of books on it. ", "question": ["is there a boat ?", "is there a lot ?", "are there books ?"], "prompt": "A {} that has a lot of books on it. "}, {"index": 387, "image_id": 2349748, "entity": "boat", "caption": "Man drivng a boat.", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man drivng a {}."}, {"index": 388, "image_id": 2349748, "entity": "boat", "caption": "Woman standing in the boat.", "question": ["is there woman ?", "is there the boat ?"], "prompt": "Woman standing in the {}."}, {"index": 389, "image_id": 2349440, "entity": "boat", "caption": "American flag hanging from the boat", "question": ["is there american flag ?", "is there the boat ?"], "prompt": "American flag hanging from the {}"}, {"index": 390, "image_id": 2349440, "entity": "boat", "caption": "The boat has a yellow logo on it ", "question": ["is there the boat ?", "is there a yellow logo ?"], "prompt": "The {} has a yellow logo on it "}, {"index": 391, "image_id": 2348095, "entity": "boat", "caption": "red rope budled on the boat", "question": ["is there red rope ?", "is there the boat ?"], "prompt": "red rope budled on the {}"}, {"index": 392, "image_id": 2348078, "entity": "boat", "caption": "the people are standing beside a boat", "question": ["are there the people ?", "is there a boat ?"], "prompt": "the people are standing beside a {}"}, {"index": 393, "image_id": 2347906, "entity": "boat", "caption": "boat pulled to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled to dock"}, {"index": 394, "image_id": 2347681, "entity": "boat", "caption": "the can next to the boat", "question": ["is there the boat ?"], "prompt": "the can next to the {}"}, {"index": 395, "image_id": 2347233, "entity": "boat", "caption": "the rope tied to the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "the rope tied to the {}"}, {"index": 396, "image_id": 2346193, "entity": "boat", "caption": "top of boat is white", "question": ["is there top ?", "is there boat ?"], "prompt": "top of {} is white"}, {"index": 397, "image_id": 2345781, "entity": "boat", "caption": "A thick rope attached to a boat", "question": ["is there a thick rope ?", "is there a boat ?"], "prompt": "A thick rope attached to a {}"}, {"index": 398, "image_id": 2345781, "entity": "boat", "caption": "boat is in the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is in the water"}, {"index": 399, "image_id": 2345272, "entity": "boat", "caption": "2 black dogs are on the boat", "question": ["are there 2 black dogs ?", "is there the boat ?"], "prompt": "2 black dogs are on the {}"}, {"index": 400, "image_id": 2345272, "entity": "boat", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the {} holding a dog with a leash"}, {"index": 401, "image_id": 2345019, "entity": "boat", "caption": "The man is standing in the boat.", "question": ["is there the man ?", "is there the boat ?"], "prompt": "The man is standing in the {}."}, {"index": 402, "image_id": 2344745, "entity": "boat", "caption": "Woman dumping water out of boat", "question": ["is there woman ?", "is there water ?", "is there boat ?"], "prompt": "Woman dumping water out of {}"}, {"index": 403, "image_id": 2344677, "entity": "boat", "caption": "An owner holding her dog over the boat so it can have a view of the water.", "question": ["is there an owner ?", "is there her dog ?", "is there the boat ?", "is there a view ?", "is there the water ?"], "prompt": "An owner holding her dog over the {} so it can have a view of the water."}, {"index": 404, "image_id": 2344627, "entity": "boat", "caption": "a boat is by the dock", "question": ["is there a boat ?", "is there the dock ?"], "prompt": "a {} is by the dock"}, {"index": 405, "image_id": 2344618, "entity": "boat", "caption": "a boat dock on the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "a {} dock on the water"}, {"index": 406, "image_id": 2343974, "entity": "boat", "caption": "tires attached to boat are black", "question": ["are there tires ?", "is there boat ?"], "prompt": "tires attached to {} are black"}, {"index": 407, "image_id": 2343968, "entity": "boat", "caption": "the boats are in water ", "question": ["are there the boats ?", "is there water ?"], "prompt": "the {}s are in water "}, {"index": 408, "image_id": 2343968, "entity": "boat", "caption": "the buskets are in the boat ", "question": ["are there the buskets ?", "is there the boat ?"], "prompt": "the buskets are in the {} "}, {"index": 409, "image_id": 2343968, "entity": "boat", "caption": "The kid on the large boat that is sitting down.", "question": ["is there the kid ?", "is there the large boat ?"], "prompt": "The kid on the large {} that is sitting down."}, {"index": 410, "image_id": 2343968, "entity": "boat", "caption": "The long boat the two kids are on.", "question": ["is there the long boat ?", "are there the two kids ?"], "prompt": "The long {} the two kids are on."}, {"index": 411, "image_id": 2343749, "entity": "boat", "caption": "boat docked at the shore", "question": ["is there boat ?", "is there the shore ?"], "prompt": "{} docked at the shore"}, {"index": 412, "image_id": 2343527, "entity": "boat", "caption": "water splashing on back of boat ", "question": ["is there back ?", "is there boat ?"], "prompt": "water splashing on back of {} "}, {"index": 413, "image_id": 2343527, "entity": "boat", "caption": "rudder is on the back of the boat", "question": ["is there rudder ?", "is there the back ?", "is there the boat ?"], "prompt": "rudder is on the back of the {}"}, {"index": 414, "image_id": 2343527, "entity": "boat", "caption": "a rubber tire is hanging on the side of the boat", "question": ["is there a rubber tire ?", "is there the side ?", "is there the boat ?"], "prompt": "a rubber tire is hanging on the side of the {}"}, {"index": 415, "image_id": 2343527, "entity": "boat", "caption": "a white cross is on the top of the boat", "question": ["is there the top ?", "is there the boat ?"], "prompt": "a white cross is on the top of the {}"}, {"index": 416, "image_id": 2343527, "entity": "boat", "caption": "a person is standing on the back of the boat", "question": ["is there a person ?", "is there the back ?", "is there the boat ?"], "prompt": "a person is standing on the back of the {}"}, {"index": 417, "image_id": 2342814, "entity": "boat", "caption": "two handles are on the back of the boat", "question": ["are there two handles ?", "is there the back ?", "is there the boat ?"], "prompt": "two handles are on the back of the {}"}, {"index": 418, "image_id": 2342814, "entity": "boat", "caption": "a blue box is on the boat", "question": ["is there a blue box ?", "is there the boat ?"], "prompt": "a blue box is on the {}"}, {"index": 419, "image_id": 2342814, "entity": "boat", "caption": "a first aid kit is on the boat", "question": ["is there a first aid kit ?", "is there the boat ?"], "prompt": "a first aid kit is on the {}"}, {"index": 420, "image_id": 2342814, "entity": "boat", "caption": "the boat has silver handles", "question": ["is there the boat ?", "are there silver handles ?"], "prompt": "the {} has silver handles"}, {"index": 421, "image_id": 2342814, "entity": "boat", "caption": "a white box is on the boat", "question": ["is there the boat ?"], "prompt": "a white box is on the {}"}, {"index": 422, "image_id": 2342814, "entity": "boat", "caption": "white handles are on the boat", "question": ["are there white handles ?", "is there the boat ?"], "prompt": "white handles are on the {}"}, {"index": 423, "image_id": 2342338, "entity": "boat", "caption": "man stands in a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man stands in a {}"}, {"index": 424, "image_id": 2342338, "entity": "boat", "caption": "they are sitting in the boat", "question": ["is there the boat ?"], "prompt": "they are sitting in the {}"}, {"index": 425, "image_id": 2341913, "entity": "boat", "caption": "boat is moving in the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is moving in the water"}, {"index": 426, "image_id": 2341403, "entity": "boat", "caption": "The boat has a red stripe.", "question": ["is there the boat ?", "is there a red stripe ?"], "prompt": "The {} has a red stripe."}, {"index": 427, "image_id": 2341403, "entity": "boat", "caption": "The boat has a red and green stripe.", "question": ["is there the boat ?", "is there a red and green stripe ?"], "prompt": "The {} has a red and green stripe."}, {"index": 428, "image_id": 2341403, "entity": "boat", "caption": "the boat is on sand", "question": ["is there the boat ?", "is there sand ?"], "prompt": "the {} is on sand"}, {"index": 429, "image_id": 2341403, "entity": "boat", "caption": "rope wound around the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope wound around the {}"}, {"index": 430, "image_id": 2341403, "entity": "boat", "caption": "the boat has a red stripe", "question": ["is there the boat ?", "is there a red stripe ?"], "prompt": "the {} has a red stripe"}, {"index": 431, "image_id": 2341403, "entity": "boat", "caption": "rope tied around the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied around the {}"}, {"index": 432, "image_id": 2341358, "entity": "boat", "caption": "the man is in a boat ", "question": ["is there the man ?", "is there a boat ?"], "prompt": "the man is in a {} "}, {"index": 433, "image_id": 2341331, "entity": "boat", "caption": "the boat has an inboard engine", "question": ["is there the boat ?", "is there an inboard engine ?"], "prompt": "the {} has an inboard engine"}, {"index": 434, "image_id": 2341331, "entity": "boat", "caption": "the steering wheel is in the boat", "question": ["is there the steering wheel ?", "is there the boat ?"], "prompt": "the steering wheel is in the {}"}, {"index": 435, "image_id": 2341331, "entity": "boat", "caption": "windows are on the boat", "question": ["are there windows ?", "is there the boat ?"], "prompt": "windows are on the {}"}, {"index": 436, "image_id": 2341331, "entity": "boat", "caption": "rope tied to the front of the boat", "question": ["is there rope ?", "is there the front ?", "is there the boat ?"], "prompt": "rope tied to the front of the {}"}, {"index": 437, "image_id": 2341331, "entity": "boat", "caption": "rope tied to back of the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied to back of the {}"}, {"index": 438, "image_id": 2340730, "entity": "boat", "caption": "hatches are on the bow of the boat", "question": ["are there hatches ?", "is there the bow ?", "is there the boat ?"], "prompt": "hatches are on the bow of the {}"}, {"index": 439, "image_id": 2339716, "entity": "boat", "caption": "Person in the background is standing on a boat", "question": ["is there person ?", "is there the background ?", "is there a boat ?"], "prompt": "Person in the background is standing on a {}"}, {"index": 440, "image_id": 2335633, "entity": "boat", "caption": "The family is safe on a boat", "question": ["is there the family ?", "is there a boat ?"], "prompt": "The family is safe on a {}"}, {"index": 441, "image_id": 2335557, "entity": "boat", "caption": "A boat is floating in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "A {} is floating in the water"}, {"index": 442, "image_id": 2335557, "entity": "boat", "caption": "A boat is carrying many people", "question": ["is there a boat ?", "are there many people ?"], "prompt": "A {} is carrying many people"}, {"index": 443, "image_id": 2335513, "entity": "boat", "caption": "dark water the boat is on", "question": ["is there dark water ?", "is there the boat ?"], "prompt": "dark water the {} is on"}, {"index": 444, "image_id": 2335383, "entity": "boat", "caption": "one old boat stuck on beach", "question": ["is there one old boat ?", "is there beach ?"], "prompt": "one old {} stuck on beach"}, {"index": 445, "image_id": 2335383, "entity": "boat", "caption": "Rope hanging from the bottom of a boat", "question": ["is there rope ?", "is there the bottom ?", "is there a boat ?"], "prompt": "Rope hanging from the bottom of a {}"}, {"index": 446, "image_id": 2335383, "entity": "boat", "caption": "A boat is sitting on a lot", "question": ["is there a boat ?", "is there a lot ?"], "prompt": "A {} is sitting on a lot"}, {"index": 447, "image_id": 2335383, "entity": "boat", "caption": "The boat is casting a shadow", "question": ["is there the boat ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow"}, {"index": 448, "image_id": 2335383, "entity": "boat", "caption": "The boat is close to the ocean", "question": ["is there the boat ?", "is there the ocean ?"], "prompt": "The {} is close to the ocean"}, {"index": 449, "image_id": 2335220, "entity": "boat", "caption": "small boat parked next to a dock", "question": ["is there small boat ?", "is there a dock ?"], "prompt": "small {} parked next to a dock"}, {"index": 450, "image_id": 2335207, "entity": "boat", "caption": "The boat has many windows.", "question": ["is there the boat ?", "are there many windows ?"], "prompt": "The {} has many windows."}, {"index": 451, "image_id": 2335104, "entity": "boat", "caption": "the dog is on the boat", "question": ["is there the dog ?", "is there the boat ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2335104, "entity": "boat", "caption": "a pillow is in on the boat", "question": ["is there a pillow ?", "is there the boat ?"], "prompt": "a pillow is in on the {}"}, {"index": 453, "image_id": 2334367, "entity": "boat", "caption": "The dog is on the boat ", "question": ["is there the dog ?", "is there the boat ?"], "prompt": "The dog is on the {} "}, {"index": 454, "image_id": 2334367, "entity": "boat", "caption": "Bubbley wake of the boat", "question": ["is there bubbley wake ?", "is there the boat ?"], "prompt": "Bubbley wake of the {}"}, {"index": 455, "image_id": 2334187, "entity": "boat", "caption": "the boat has pigeons", "question": ["is there the boat ?", "are there pigeons ?"], "prompt": "the {} has pigeons"}, {"index": 456, "image_id": 2334187, "entity": "boat", "caption": "the oars are in the boat", "question": ["are there the oars ?", "is there the boat ?"], "prompt": "the oars are in the {}"}, {"index": 457, "image_id": 2334187, "entity": "boat", "caption": "the boat has rope trim", "question": ["is there the boat ?", "is there rope ?"], "prompt": "the {} has rope trim"}, {"index": 458, "image_id": 2333973, "entity": "boat", "caption": "a silver oar to row a boat", "question": ["is there a silver oar ?", "is there a boat ?"], "prompt": "a silver oar to row a {}"}, {"index": 459, "image_id": 2333973, "entity": "boat", "caption": "Blue writing us out of the white boats", "question": ["are there the white boats ?"], "prompt": "Blue writing us out of the white {}s"}, {"index": 460, "image_id": 2333538, "entity": "boat", "caption": "a bridge connects to the boat", "question": ["is there a bridge ?", "is there the boat ?"], "prompt": "a bridge connects to the {}"}, {"index": 461, "image_id": 2332476, "entity": "boat", "caption": "boat carries three humans", "question": ["is there boat ?", "are there three humans ?"], "prompt": "{} carries three humans"}, {"index": 462, "image_id": 2332476, "entity": "boat", "caption": "life preserver attached to boat", "question": ["is there life preserver ?", "is there boat ?"], "prompt": "life preserver attached to {}"}, {"index": 463, "image_id": 2332444, "entity": "boat", "caption": "rope going down from the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope going down from the {}"}, {"index": 464, "image_id": 2331968, "entity": "boat", "caption": "man steering white boat", "question": ["is there man ?", "is there white boat ?"], "prompt": "man steering white {}"}, {"index": 465, "image_id": 2331968, "entity": "boat", "caption": "white rope attached to boat", "question": ["is there boat ?"], "prompt": "white rope attached to {}"}, {"index": 466, "image_id": 2331586, "entity": "boat", "caption": "the boat is tipping", "question": ["is there the boat ?"], "prompt": "the {} is tipping"}, {"index": 467, "image_id": 2330347, "entity": "boat", "caption": "The lady is sitting in the boat.", "question": ["is there the lady ?", "is there the boat ?"], "prompt": "The lady is sitting in the {}."}, {"index": 468, "image_id": 2330347, "entity": "boat", "caption": "People are on the boat.", "question": ["are there people ?", "is there the boat ?"], "prompt": "People are on the {}."}, {"index": 469, "image_id": 2329011, "entity": "boat", "caption": "white rope tied to a boat", "question": ["is there a boat ?"], "prompt": "white rope tied to a {}"}, {"index": 470, "image_id": 2328185, "entity": "boat", "caption": "food sits on boat", "question": ["is there food ?", "is there boat ?"], "prompt": "food sits on {}"}, {"index": 471, "image_id": 2328185, "entity": "boat", "caption": "human stands on boat", "question": ["is there human ?", "is there boat ?"], "prompt": "human stands on {}"}, {"index": 472, "image_id": 2328185, "entity": "boat", "caption": "a river boat painted red, white and blue", "question": ["is there a river boat ?"], "prompt": "a river {} painted red, white and blue"}, {"index": 473, "image_id": 2327815, "entity": "boat", "caption": "man standing in the front of a boat", "question": ["is there man ?", "is there the front ?", "is there a boat ?"], "prompt": "man standing in the front of a {}"}, {"index": 474, "image_id": 2327709, "entity": "boat", "caption": "boat that man is sitting in", "question": ["is there boat ?", "is there that man ?"], "prompt": "{} that man is sitting in"}, {"index": 475, "image_id": 2327444, "entity": "boat", "caption": "bushes are behind boat", "question": ["are there bushes ?", "is there boat ?"], "prompt": "bushes are behind {}"}, {"index": 476, "image_id": 2326620, "entity": "boat", "caption": "fruits are in the boat ", "question": ["are there fruits ?", "is there the boat ?"], "prompt": "fruits are in the {} "}, {"index": 477, "image_id": 2326389, "entity": "boat", "caption": "water boats are in", "question": ["are there water boats ?"], "prompt": "water {}s are in"}, {"index": 478, "image_id": 2325957, "entity": "boat", "caption": "life preserver hung on boat", "question": ["is there life preserver ?", "is there boat ?"], "prompt": "life preserver hung on {}"}, {"index": 479, "image_id": 2325634, "entity": "boat", "caption": "Red rope attached to metal boat.", "question": ["is there red rope ?", "is there metal boat ?"], "prompt": "Red rope attached to metal {}."}, {"index": 480, "image_id": 2325634, "entity": "boat", "caption": "Metal boat anchored with yellow rope.", "question": ["is there metal boat ?", "is there yellow rope ?"], "prompt": "Metal {} anchored with yellow rope."}, {"index": 481, "image_id": 2325522, "entity": "boat", "caption": "the boat is floating on the water ", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is floating on the water "}, {"index": 482, "image_id": 2325172, "entity": "boat", "caption": "the boat is on the sand", "question": ["is there the boat ?", "is there the sand ?"], "prompt": "the {} is on the sand"}, {"index": 483, "image_id": 2325172, "entity": "boat", "caption": "lettering is on the boat", "question": ["is there lettering ?", "is there the boat ?"], "prompt": "lettering is on the {}"}, {"index": 484, "image_id": 2325172, "entity": "boat", "caption": "a mast is on the boat", "question": ["is there a mast ?", "is there the boat ?"], "prompt": "a mast is on the {}"}, {"index": 485, "image_id": 2325172, "entity": "boat", "caption": "numbers are in the boat", "question": ["are there numbers ?", "is there the boat ?"], "prompt": "numbers are in the {}"}, {"index": 486, "image_id": 2324743, "entity": "boat", "caption": "The bottom of the boat is the color red ", "question": ["is there the bottom ?", "is there the boat ?", "is there the color red ?"], "prompt": "The bottom of the {} is the color red "}, {"index": 487, "image_id": 2324743, "entity": "boat", "caption": "dragon painted on the side of the boat", "question": ["is there dragon ?", "is there the side ?", "is there the boat ?"], "prompt": "dragon painted on the side of the {}"}, {"index": 488, "image_id": 2324603, "entity": "boat", "caption": "an old wooden boat dock on the side of the river", "question": ["is there the side ?", "is there the river ?"], "prompt": "an old wooden {} dock on the side of the river"}, {"index": 489, "image_id": 2324332, "entity": "boat", "caption": "Sand patches behind the boat", "question": ["are there sand patches ?", "is there the boat ?"], "prompt": "Sand patches behind the {}"}, {"index": 490, "image_id": 2324332, "entity": "boat", "caption": "The boat sits on the bank. ", "question": ["is there the boat ?", "is there the bank ?"], "prompt": "The {} sits on the bank. "}, {"index": 491, "image_id": 2324332, "entity": "boat", "caption": "The flowers next to the boat. ", "question": ["are there the flowers ?", "is there the boat ?"], "prompt": "The flowers next to the {}. "}, {"index": 492, "image_id": 2324332, "entity": "boat", "caption": "The boat sits in the rocks. ", "question": ["is there the boat ?", "are there the rocks ?"], "prompt": "The {} sits in the rocks. "}, {"index": 493, "image_id": 2323258, "entity": "boat", "caption": "Some boats are carrying oars for rowing", "question": ["are there some boats ?", "are there oars ?"], "prompt": "Some {}s are carrying oars for rowing"}, {"index": 494, "image_id": 2323258, "entity": "boat", "caption": "White boat with floats attached", "question": ["is there white boat ?", "are there floats ?"], "prompt": "White {} with floats attached"}, {"index": 495, "image_id": 2321960, "entity": "boat", "caption": "two boats parked at the dock", "question": ["are there two boats ?", "is there the dock ?"], "prompt": "two {}s parked at the dock"}, {"index": 496, "image_id": 2321105, "entity": "boat", "caption": "Sign on boat says Manon Manon.", "question": ["is there sign ?", "is there boat ?"], "prompt": "Sign on {} says Manon Manon."}, {"index": 497, "image_id": 2321105, "entity": "boat", "caption": "A grey barrel sits in an old boat.", "question": ["is there a grey barrel ?", "is there an old boat ?"], "prompt": "A grey barrel sits in an old {}."}, {"index": 498, "image_id": 2320922, "entity": "boat", "caption": "Water that boat sits on", "question": ["is there water ?", "is there that boat ?"], "prompt": "Water that {} sits on"}, {"index": 499, "image_id": 2320922, "entity": "boat", "caption": " some chains anchoring a boat", "question": ["are there some chains ?", "is there a boat ?"], "prompt": " some chains anchoring a {}"}, {"index": 500, "image_id": 2320922, "entity": "boat", "caption": "water boat is sitting in", "question": ["is there water boat ?"], "prompt": "water {} is sitting in"}, {"index": 501, "image_id": 2320922, "entity": "boat", "caption": "the boat is in a marina", "question": ["is there the boat ?", "is there a marina ?"], "prompt": "the {} is in a marina"}, {"index": 502, "image_id": 2320725, "entity": "boat", "caption": "The boat is on land.", "question": ["is there the boat ?", "is there land ?"], "prompt": "The {} is on land."}, {"index": 503, "image_id": 2319811, "entity": "boat", "caption": "the grey stripe on the boat", "question": ["is there the grey stripe ?", "is there the boat ?"], "prompt": "the grey stripe on the {}"}, {"index": 504, "image_id": 2318574, "entity": "boat", "caption": "the letter \"R\"on the boat", "question": ["is there the letter ?", "is there the boat ?"], "prompt": "the letter \"R\"on the {}"}, {"index": 505, "image_id": 2318574, "entity": "boat", "caption": "water for boats to sail", "question": ["is there water ?", "are there boats ?"], "prompt": "water for {}s to sail"}, {"index": 506, "image_id": 2318144, "entity": "boat", "caption": "crowd of people gathered around looking at the huge boat", "question": ["is there crowd ?", "are there people ?", "is there the huge boat ?"], "prompt": "crowd of people gathered around looking at the huge {}"}, {"index": 507, "image_id": 2318140, "entity": "boat", "caption": "white boat docked at the pier", "question": ["is there white boat ?", "is there the pier ?"], "prompt": "white {} docked at the pier"}, {"index": 508, "image_id": 2317528, "entity": "boat", "caption": "boats lined up side by side", "question": ["are there boats ?", "is there side ?", "is there side ?"], "prompt": "{}s lined up side by side"}, {"index": 509, "image_id": 2317528, "entity": "boat", "caption": "Yellow number 9 painted onto a blue square on a red boat", "question": ["is there yellow number ?", "is there a blue square ?", "is there a red boat ?"], "prompt": "Yellow number 9 painted onto a blue square on a red {}"}, {"index": 510, "image_id": 2317528, "entity": "boat", "caption": "Orange carved dragon head on a boat", "question": ["is there orange carved dragon head ?", "is there a boat ?"], "prompt": "Orange carved dragon head on a {}"}, {"index": 511, "image_id": 2317528, "entity": "boat", "caption": "Blue flower painted on a boat", "question": ["is there blue flower ?", "is there a boat ?"], "prompt": "Blue flower painted on a {}"}, {"index": 512, "image_id": 2317528, "entity": "boat", "caption": "Orange carved tail on a boat", "question": ["is there orange carved tail ?", "is there a boat ?"], "prompt": "Orange carved tail on a {}"}, {"index": 513, "image_id": 2317528, "entity": "boat", "caption": "Green carved tail on a boat", "question": ["is there green carved tail ?", "is there a boat ?"], "prompt": "Green carved tail on a {}"}, {"index": 514, "image_id": 2317472, "entity": "boat", "caption": "large metal rope pulleys on boat", "question": ["are there large metal rope pulleys ?", "is there boat ?"], "prompt": "large metal rope pulleys on {}"}, {"index": 515, "image_id": 2316999, "entity": "boat", "caption": "open deck are of boat", "question": ["is there open deck ?", "is there boat ?"], "prompt": "open deck are of {}"}, {"index": 516, "image_id": 2316999, "entity": "boat", "caption": "the deck of this boat is blue", "question": ["is there the deck ?", "is there this boat ?"], "prompt": "the deck of this {} is blue"}, {"index": 517, "image_id": 2316715, "entity": "boat", "caption": "large white boat casting reflection on water", "question": ["is there large white boat ?", "is there reflection ?", "is there water ?"], "prompt": "large white {} casting reflection on water"}, {"index": 518, "image_id": 2316663, "entity": "boat", "caption": "Rope tied across a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "Rope tied across a {}"}, {"index": 519, "image_id": 2316469, "entity": "boat", "caption": "the life ring is on a boat", "question": ["is there the life ring ?", "is there a boat ?"], "prompt": "the life ring is on a {}"}, {"index": 520, "image_id": 2316232, "entity": "boat", "caption": "row boat docked in water", "question": ["is there row boat ?", "is there water ?"], "prompt": "row {} docked in water"}, {"index": 521, "image_id": 2316232, "entity": "boat", "caption": "this is a row boat", "question": ["is there a row boat ?"], "prompt": "this is a row {}"}, {"index": 522, "image_id": 2316232, "entity": "boat", "caption": "The rope tied to the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "The rope tied to the {}"}, {"index": 523, "image_id": 2316232, "entity": "boat", "caption": "A boat that is sitting in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "A {} that is sitting in the water"}, {"index": 524, "image_id": 2316174, "entity": "boat", "caption": "The letter R on the boat.", "question": ["is there the letter r ?", "is there the boat ?"], "prompt": "The letter R on the {}."}, {"index": 525, "image_id": 2316174, "entity": "boat", "caption": "The word PLYMOUTH on the boat.", "question": ["is there the word ?", "is there plymouth ?", "is there the boat ?"], "prompt": "The word PLYMOUTH on the {}."}, {"index": 526, "image_id": 2316161, "entity": "boat", "caption": "The wooden boat the woman is sitting in.", "question": ["is there the wooden boat ?", "is there the woman ?"], "prompt": "The wooden {} the woman is sitting in."}, {"index": 527, "image_id": 2316161, "entity": "boat", "caption": "boat holds woman", "question": ["is there boat ?", "is there woman ?"], "prompt": "{} holds woman"}, {"index": 528, "image_id": 2316102, "entity": "boat", "caption": "number 33 painted on a boat.", "question": ["is there number ?", "is there a boat ?"], "prompt": "number 33 painted on a {}."}, {"index": 529, "image_id": 2315952, "entity": "boat", "caption": "Rope tied to the boat.", "question": ["is there rope ?", "is there the boat ?"], "prompt": "Rope tied to the {}."}, {"index": 530, "image_id": 2315952, "entity": "boat", "caption": "Chain tied to the boat.", "question": ["is there chain ?", "is there the boat ?"], "prompt": "Chain tied to the {}."}, {"index": 531, "image_id": 2315952, "entity": "boat", "caption": "red plastic buoys hanging from boat", "question": ["are there red plastic buoys ?", "is there boat ?"], "prompt": "red plastic buoys hanging from {}"}, {"index": 532, "image_id": 2315952, "entity": "boat", "caption": "black tire hanging from side of boat", "question": ["is there black tire ?", "is there side ?", "is there boat ?"], "prompt": "black tire hanging from side of {}"}, {"index": 533, "image_id": 2315952, "entity": "boat", "caption": "boueys attached to boat", "question": ["is there boat ?"], "prompt": "boueys attached to {}"}, {"index": 534, "image_id": 2315666, "entity": "boat", "caption": "red flag hanging from boat in water ", "question": ["is there red flag ?", "is there boat ?", "is there water ?"], "prompt": "red flag hanging from {} in water "}, {"index": 535, "image_id": 2414707, "entity": "boat", "caption": "man pushing a lifeboat", "question": ["is there man ?", "is there a lifeboat ?"], "prompt": "man pushing a life{}"}, {"index": 536, "image_id": 2414707, "entity": "boat", "caption": "Men pushing a boat", "question": ["are there men ?", "is there a boat ?"], "prompt": "Men pushing a {}"}, {"index": 537, "image_id": 2414285, "entity": "boat", "caption": "A bicycle is on the boat.", "question": ["is there a bicycle ?", "is there the boat ?"], "prompt": "A bicycle is on the {}."}, {"index": 538, "image_id": 2414285, "entity": "boat", "caption": "The bicycle is on the deck of a boat.", "question": ["is there the bicycle ?", "is there the deck ?", "is there a boat ?"], "prompt": "The bicycle is on the deck of a {}."}, {"index": 539, "image_id": 2414285, "entity": "boat", "caption": "This is part of the mast of the boat.", "question": ["is there part ?", "is there the mast ?", "is there the boat ?"], "prompt": "This is part of the mast of the {}."}, {"index": 540, "image_id": 2414285, "entity": "boat", "caption": "Rope is on the deck of the boat.", "question": ["is there rope ?", "is there the deck ?", "is there the boat ?"], "prompt": "Rope is on the deck of the {}."}, {"index": 541, "image_id": 2414285, "entity": "boat", "caption": "small boat with boat sitting on it", "question": ["is there small boat ?", "is there boat ?"], "prompt": "small {} with {} sitting on it"}, {"index": 542, "image_id": 2414285, "entity": "boat", "caption": "A rope tied to a boat.", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "A rope tied to a {}."}, {"index": 543, "image_id": 2414008, "entity": "boat", "caption": "Bottles made boats floating in the water.", "question": ["are there bottles ?", "are there boats ?", "is there the water ?"], "prompt": "Bottles made {}s floating in the water."}, {"index": 544, "image_id": 2413336, "entity": "boat", "caption": "the kid is standing on the boat", "question": ["is there the kid ?", "is there the boat ?"], "prompt": "the kid is standing on the {}"}, {"index": 545, "image_id": 2413281, "entity": "boat", "caption": "Two oars inside boat.", "question": ["are there two oars ?", "is there boat ?"], "prompt": "Two oars inside {}."}, {"index": 546, "image_id": 2413281, "entity": "boat", "caption": "Rope coiled inside boat.", "question": ["is there inside boat ?"], "prompt": "Rope coiled inside {}."}, {"index": 547, "image_id": 2413281, "entity": "boat", "caption": "boat tied to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} tied to dock"}, {"index": 548, "image_id": 2413281, "entity": "boat", "caption": "exposed wood where blue boat paint has worn away", "question": ["is there wood ?", "is there blue boat paint ?"], "prompt": "exposed wood where blue {} paint has worn away"}, {"index": 549, "image_id": 2412726, "entity": "boat", "caption": "The boats are on the water", "question": ["are there the boats ?", "is there the water ?"], "prompt": "The {}s are on the water"}, {"index": 550, "image_id": 2412726, "entity": "boat", "caption": "boats trimmed in light blue", "question": ["are there boats ?", "is there light blue ?"], "prompt": "{}s trimmed in light blue"}, {"index": 551, "image_id": 2412667, "entity": "boat", "caption": "woman painted on side of boat", "question": ["is there woman ?", "is there side ?", "is there boat ?"], "prompt": "woman painted on side of {}"}, {"index": 552, "image_id": 2412667, "entity": "boat", "caption": "Woman painted on large multi-colored boat", "question": ["is there woman ?", "is there large multi-colored boat ?"], "prompt": "Woman painted on large multi-colored {}"}, {"index": 553, "image_id": 2412667, "entity": "boat", "caption": "Woman painted on the boat", "question": ["is there woman ?", "is there the boat ?"], "prompt": "Woman painted on the {}"}, {"index": 554, "image_id": 2412272, "entity": "boat", "caption": "boats are in the water", "question": ["are there boats ?", "is there the water ?"], "prompt": "{}s are in the water"}, {"index": 555, "image_id": 2412272, "entity": "boat", "caption": "\"Intrepid\" painted on front of boat", "question": ["is there front ?", "is there boat ?"], "prompt": "\"Intrepid\" painted on front of {}"}, {"index": 556, "image_id": 2412205, "entity": "boat", "caption": "the man is riding ina boat", "question": ["is there the man ?", "is there ina boat ?"], "prompt": "the man is riding ina {}"}, {"index": 557, "image_id": 2412205, "entity": "boat", "caption": "a boat racing along a lake", "question": ["is there a boat ?", "is there a lake ?"], "prompt": "a {} racing along a lake"}, {"index": 558, "image_id": 2412205, "entity": "boat", "caption": "Man is in a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man is in a {}"}, {"index": 559, "image_id": 2412205, "entity": "boat", "caption": "Engine of boat is tan", "question": ["is there engine ?", "is there boat ?", "is there tan ?"], "prompt": "Engine of {} is tan"}, {"index": 560, "image_id": 2412205, "entity": "boat", "caption": "boat has wooden bench", "question": ["is there boat ?", "is there wooden bench ?"], "prompt": "{} has wooden bench"}, {"index": 561, "image_id": 2411896, "entity": "boat", "caption": "Large boat pulling containers", "question": ["is there large boat ?"], "prompt": "Large {} pulling containers"}, {"index": 562, "image_id": 2415372, "entity": "boat", "caption": "Rope attaching boat to boardwalk", "question": ["is there boat ?"], "prompt": "Rope attaching {} to boardwalk"}, {"index": 563, "image_id": 2415691, "entity": "boat", "caption": "boat and cabin reflected in clear smooth water", "question": ["is there boat ?", "is there cabin ?", "is there clear smooth water ?"], "prompt": "{} and cabin reflected in clear smooth water"}, {"index": 564, "image_id": 2416767, "entity": "boat", "caption": "2 identical boats are next to each other in the water ", "question": ["are there 2 identical boats ?", "is there the water ?"], "prompt": "2 identical {}s are next to each other in the water "}, {"index": 565, "image_id": 2416767, "entity": "boat", "caption": "ropes hang over the boat near the dock", "question": ["are there ropes ?", "is there the boat ?", "is there the dock ?"], "prompt": "ropes hang over the {} near the dock"}, {"index": 566, "image_id": 2417150, "entity": "boat", "caption": "man driving the boat", "question": ["is there man ?", "is there the boat ?"], "prompt": "man driving the {}"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03670208.json b/data/imagenet/compositions/prompts/n03670208.json
new file mode 100644
index 0000000000000000000000000000000000000000..2381f38921c9ad56862e92e8fc850617008827e1
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03670208.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 65, "entity": "car", "caption": "License plate placed on black car", "question": ["is there license plate ?", "is there black car ?"], "prompt": "License plate placed on black {}"}, {"index": 1, "image_id": 316, "entity": "car", "caption": "the seats are in the car", "question": ["are there the seats ?", "is there the car ?"], "prompt": "the seats are in the {}"}, {"index": 2, "image_id": 692, "entity": "car", "caption": "A man is sitting in a car.", "question": ["is there a man ?", "is there a car ?"], "prompt": "A man is sitting in a {}."}, {"index": 3, "image_id": 692, "entity": "car", "caption": "A rear view mirror is in the car.", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "A rear view mirror is in the {}."}, {"index": 4, "image_id": 1029, "entity": "car", "caption": "man is sitting in tan car", "question": ["is there man ?", "is there tan car ?"], "prompt": "man is sitting in tan {}"}, {"index": 5, "image_id": 1710, "entity": "car", "caption": "silver trim on car", "question": ["is there silver trim ?", "is there car ?"], "prompt": "silver trim on {}"}, {"index": 6, "image_id": 2889, "entity": "car", "caption": "rear left tire of the white car", "question": ["is there rear left tire ?", "is there the white car ?"], "prompt": "rear left tire of the white {}"}, {"index": 7, "image_id": 2889, "entity": "car", "caption": "front left tire of the white car", "question": ["is there front left tire ?", "is there the white car ?"], "prompt": "front left tire of the white {}"}, {"index": 8, "image_id": 3288, "entity": "car", "caption": "the white car has doors", "question": ["is there the white car ?", "are there doors ?"], "prompt": "the white {} has doors"}, {"index": 9, "image_id": 3288, "entity": "car", "caption": "the tail light is red on the back of the car", "question": ["is there the tail light ?", "is there the back ?", "is there the car ?"], "prompt": "the tail light is red on the back of the {}"}, {"index": 10, "image_id": 3378, "entity": "car", "caption": "red car parked streetside", "question": ["is there red car ?"], "prompt": "red {} parked streetside"}, {"index": 11, "image_id": 3378, "entity": "car", "caption": "door handle on black car", "question": ["is there door ?", "is there black car ?"], "prompt": "door handle on black {}"}, {"index": 12, "image_id": 3493, "entity": "car", "caption": "car has a front light", "question": ["is there car ?", "is there a front light ?"], "prompt": "{} has a front light"}, {"index": 13, "image_id": 3493, "entity": "car", "caption": "car has front light", "question": ["is there car ?", "is there front light ?"], "prompt": "{} has front light"}, {"index": 14, "image_id": 3493, "entity": "car", "caption": "car has grey trim", "question": ["is there car ?"], "prompt": "{} has grey trim"}, {"index": 15, "image_id": 3493, "entity": "car", "caption": "red car has blue and white plate", "question": ["is there red car ?", "is there blue and white plate ?"], "prompt": "red {} has blue and white plate"}, {"index": 16, "image_id": 3493, "entity": "car", "caption": "sidewalk is next to car", "question": ["is there sidewalk ?"], "prompt": "sidewalk is next to {}"}, {"index": 17, "image_id": 3493, "entity": "car", "caption": "car has two headlights", "question": ["is there car ?", "are there two headlights ?"], "prompt": "{} has two headlights"}, {"index": 18, "image_id": 3764, "entity": "car", "caption": "mannequins are behind car", "question": ["are there mannequins ?", "is there car ?"], "prompt": "mannequins are behind {}"}, {"index": 19, "image_id": 3997, "entity": "car", "caption": "a red and black seat belt latch in a car", "question": ["is there a red and black seat belt latch ?", "is there a car ?"], "prompt": "a red and black seat belt latch in a {}"}, {"index": 20, "image_id": 3997, "entity": "car", "caption": "a black head rest in a car", "question": ["is there a black head ?", "is there a car ?"], "prompt": "a black head rest in a {}"}, {"index": 21, "image_id": 3997, "entity": "car", "caption": "a silver and red door handle in a car", "question": ["is there a silver and red door handle ?", "is there a car ?"], "prompt": "a silver and red door handle in a {}"}, {"index": 22, "image_id": 4526, "entity": "car", "caption": "a car front headlight", "question": ["is there a car front headlight ?"], "prompt": "a {} front headlight"}, {"index": 23, "image_id": 4526, "entity": "car", "caption": "the right front tire of the purple car is black in color.", "question": ["is there the right front tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the right front tire of the purple {} is black in color."}, {"index": 24, "image_id": 4526, "entity": "car", "caption": "the back right tire of the purple car is black in color.", "question": ["is there the back right tire ?", "is there the purple car ?", "is there color ?"], "prompt": "the back right tire of the purple {} is black in color."}, {"index": 25, "image_id": 4526, "entity": "car", "caption": "the right front light of the purple car is round in shape.", "question": ["is there the right front light ?", "is there the purple car ?", "is there shape ?"], "prompt": "the right front light of the purple {} is round in shape."}, {"index": 26, "image_id": 2415144, "entity": "car", "caption": "police car in front of fire hydrant", "question": ["is there police car ?", "is there front ?", "is there fire hydrant ?"], "prompt": "police {} in front of fire hydrant"}, {"index": 27, "image_id": 497921, "entity": "car", "caption": "Seat belt coming from the side of car.", "question": ["is there seat belt ?", "is there the side ?", "is there car ?"], "prompt": "Seat belt coming from the side of {}."}, {"index": 28, "image_id": 713086, "entity": "car", "caption": "car has an antenna", "question": ["is there car ?", "is there an antenna ?"], "prompt": "{} has an antenna"}, {"index": 29, "image_id": 713093, "entity": "car", "caption": "Person in black coat standing next to vintage green car", "question": ["is there person ?", "is there black coat ?", "is there vintage green car ?"], "prompt": "Person in black coat standing next to vintage green {}"}, {"index": 30, "image_id": 713101, "entity": "car", "caption": "car has a window", "question": ["is there car ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 31, "image_id": 1592605, "entity": "car", "caption": "A grey car passes by", "question": ["is there a grey car ?"], "prompt": "A grey {} passes by"}, {"index": 32, "image_id": 2414932, "entity": "car", "caption": "The cat sits on the car.", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat sits on the {}."}, {"index": 33, "image_id": 2414470, "entity": "car", "caption": "A car's door handle", "question": ["is there a car's door ?"], "prompt": "A {}'s door handle"}, {"index": 34, "image_id": 2414470, "entity": "car", "caption": "Door handle on a car door.", "question": ["is there door ?", "is there a car door ?"], "prompt": "Door handle on a {} door."}, {"index": 35, "image_id": 2414470, "entity": "car", "caption": "The man is sitting in the car's driver seat.", "question": ["is there the man ?", "is there the car's driver seat ?"], "prompt": "The man is sitting in the {}'s driver seat."}, {"index": 36, "image_id": 2412607, "entity": "car", "caption": "Automobile seats inside the car are gray", "question": ["are there automobile seats ?", "is there the car ?"], "prompt": "Automobile seats inside the {} are gray"}, {"index": 37, "image_id": 2412607, "entity": "car", "caption": "silver door handle on car", "question": ["is there silver door ?", "is there car ?"], "prompt": "silver door handle on {}"}, {"index": 38, "image_id": 2412101, "entity": "car", "caption": "Red car parked on right side of street ", "question": ["is there red car ?", "is there right side ?", "is there street ?"], "prompt": "Red {} parked on right side of street "}, {"index": 39, "image_id": 2412101, "entity": "car", "caption": "Front left tire on gray car.", "question": ["is there front ?", "is there tire ?", "is there gray car ?"], "prompt": "Front left tire on gray {}."}, {"index": 40, "image_id": 2411491, "entity": "car", "caption": "car door is unlocked", "question": ["is there car door ?"], "prompt": "{} door is unlocked"}, {"index": 41, "image_id": 2410940, "entity": "car", "caption": "Hood of car is big", "question": ["is there hood ?", "is there car ?"], "prompt": "Hood of {} is big"}, {"index": 42, "image_id": 2410404, "entity": "car", "caption": "Hood popped open on car in background.", "question": ["is there hood ?", "is there car ?", "is there background ?"], "prompt": "Hood popped open on {} in background."}, {"index": 43, "image_id": 2410319, "entity": "car", "caption": "woman is inside of car", "question": ["is there woman ?", "is there car ?"], "prompt": "woman is inside of {}"}, {"index": 44, "image_id": 2410303, "entity": "car", "caption": "dark car the dog is sitting in", "question": ["is there dark car ?", "is there the dog ?"], "prompt": "dark {} the dog is sitting in"}, {"index": 45, "image_id": 2410034, "entity": "car", "caption": "Strap of car sit", "question": ["is there strap ?", "is there car ?"], "prompt": "Strap of {} sit"}, {"index": 46, "image_id": 2409981, "entity": "car", "caption": "Flags are on top of the car", "question": ["are there flags ?", "is there top ?", "is there the car ?"], "prompt": "Flags are on top of the {}"}, {"index": 47, "image_id": 2409288, "entity": "car", "caption": "car is ordering food", "question": ["is there car ?", "is there food ?"], "prompt": "{} is ordering food"}, {"index": 48, "image_id": 2409288, "entity": "car", "caption": "Silver door lock on a car", "question": ["is there silver door ?", "is there a car ?"], "prompt": "Silver door lock on a {}"}, {"index": 49, "image_id": 2408616, "entity": "car", "caption": "road the car is driving on", "question": ["is there road ?", "is there the car ?"], "prompt": "road the {} is driving on"}, {"index": 50, "image_id": 2408935, "entity": "car", "caption": "Cat sitting on a car.", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat sitting on a {}."}, {"index": 51, "image_id": 2408590, "entity": "car", "caption": "Front of car is red", "question": ["is there front ?", "is there car ?"], "prompt": "Front of {} is red"}, {"index": 52, "image_id": 2408413, "entity": "car", "caption": "Bamper of car is black", "question": ["is there car ?"], "prompt": "Bamper of {} is black"}, {"index": 53, "image_id": 2408413, "entity": "car", "caption": "Front headlight on a car. ", "question": ["is there front headlight ?", "is there a car ?"], "prompt": "Front headlight on a {}. "}, {"index": 54, "image_id": 2408413, "entity": "car", "caption": "Front turn signal light on a car. ", "question": ["is there front turn signal light ?", "is there a car ?"], "prompt": "Front turn signal light on a {}. "}, {"index": 55, "image_id": 2408413, "entity": "car", "caption": "the side of the front headlight on the car", "question": ["is there the side ?", "is there the front headlight ?", "is there the car ?"], "prompt": "the side of the front headlight on the {}"}, {"index": 56, "image_id": 2408016, "entity": "car", "caption": "The word Jazz written on back of car", "question": ["is there the word jazz ?", "is there car ?"], "prompt": "The word Jazz written on back of {}"}, {"index": 57, "image_id": 2408012, "entity": "car", "caption": "the car has a black underneth", "question": ["is there the car ?", "is there a black underneth ?"], "prompt": "the {} has a black underneth"}, {"index": 58, "image_id": 2407776, "entity": "car", "caption": "a parking meter is next to the car", "question": ["is there a parking meter ?", "is there the car ?"], "prompt": "a parking meter is next to the {}"}, {"index": 59, "image_id": 2407740, "entity": "car", "caption": "both cars tail lights are on", "question": ["are there both cars tail lights ?"], "prompt": "both {}s tail lights are on"}, {"index": 60, "image_id": 2407740, "entity": "car", "caption": "A red light is on a second car. ", "question": ["is there a red light ?", "is there a second car ?"], "prompt": "A red light is on a second {}. "}, {"index": 61, "image_id": 2407740, "entity": "car", "caption": "rain drops on car windshield", "question": ["is there rain ?", "is there car windshield ?"], "prompt": "rain drops on {} windshield"}, {"index": 62, "image_id": 2407600, "entity": "car", "caption": "white cup placed on roof of car", "question": ["is there roof ?", "is there car ?"], "prompt": "white cup placed on roof of {}"}, {"index": 63, "image_id": 2407600, "entity": "car", "caption": "The back tire of the car where the man is sitting.", "question": ["is there the back tire ?", "is there the car ?", "is there the man ?"], "prompt": "The back tire of the {} where the man is sitting."}, {"index": 64, "image_id": 2407600, "entity": "car", "caption": "The front tire of the car where the man is sitting.", "question": ["is there the front tire ?", "is there the car ?", "is there the man ?"], "prompt": "The front tire of the {} where the man is sitting."}, {"index": 65, "image_id": 2407181, "entity": "car", "caption": "Man sitting on car ", "question": ["is there man ?", "is there car ?"], "prompt": "Man sitting on {} "}, {"index": 66, "image_id": 2407181, "entity": "car", "caption": "The man is sitting inside a car.", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is sitting inside a {}."}, {"index": 67, "image_id": 2406983, "entity": "car", "caption": "The car has a Mercedes emblem", "question": ["is there the car ?", "are there a mercedes emblem ?"], "prompt": "The {} has a Mercedes emblem"}, {"index": 68, "image_id": 2406983, "entity": "car", "caption": "the car has 55000000 on the trunk", "question": ["is there the car ?", "is there the trunk ?"], "prompt": "the {} has 55000000 on the trunk"}, {"index": 69, "image_id": 2406229, "entity": "car", "caption": "door handle on a car", "question": ["is there door ?", "is there a car ?"], "prompt": "door handle on a {}"}, {"index": 70, "image_id": 2405945, "entity": "car", "caption": "the side view mirror is on the car", "question": ["is there the side view mirror ?", "is there the car ?"], "prompt": "the side view mirror is on the {}"}, {"index": 71, "image_id": 2405945, "entity": "car", "caption": "the dog is inside the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is inside the {}"}, {"index": 72, "image_id": 2405945, "entity": "car", "caption": "the windshield is on the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "the windshield is on the {}"}, {"index": 73, "image_id": 2405130, "entity": "car", "caption": "this is a car ", "question": ["is there a car ?"], "prompt": "this is a {} "}, {"index": 74, "image_id": 2405042, "entity": "car", "caption": "this is the car's hindlight", "question": ["is there the car's hindlight ?"], "prompt": "this is the {}'s hindlight"}, {"index": 75, "image_id": 2405042, "entity": "car", "caption": "the car beside the meter is blue", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} beside the meter is blue"}, {"index": 76, "image_id": 2405042, "entity": "car", "caption": "the car behind the meter is white", "question": ["is there the car ?", "is there the meter ?"], "prompt": "the {} behind the meter is white"}, {"index": 77, "image_id": 2405042, "entity": "car", "caption": "the blue car has a red tail light", "question": ["is there the blue car ?", "is there a red tail light ?"], "prompt": "the blue {} has a red tail light"}, {"index": 78, "image_id": 2404709, "entity": "car", "caption": "door handle on a gray car", "question": ["is there door ?", "is there a gray car ?"], "prompt": "door handle on a gray {}"}, {"index": 79, "image_id": 2404508, "entity": "car", "caption": "a cat is on the car", "question": ["is there a cat ?", "is there the car ?"], "prompt": "a cat is on the {}"}, {"index": 80, "image_id": 2404508, "entity": "car", "caption": "the car is dark inside", "question": ["is there the car ?"], "prompt": "the {} is dark inside"}, {"index": 81, "image_id": 2404508, "entity": "car", "caption": "White car, visible through car window. ", "question": ["is there white car ?", "is there car window ?"], "prompt": "White {}, visible through {} window. "}, {"index": 82, "image_id": 2404508, "entity": "car", "caption": "the cat is in the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is in the {}"}, {"index": 83, "image_id": 2404223, "entity": "car", "caption": "black car behind bush and fire hydrant", "question": ["is there black car ?", "is there fire hydrant ?"], "prompt": "black {} behind bush and fire hydrant"}, {"index": 84, "image_id": 2404223, "entity": "car", "caption": "The car has rims on", "question": ["is there the car ?", "are there rims ?"], "prompt": "The {} has rims on"}, {"index": 85, "image_id": 2403996, "entity": "car", "caption": "The dog is laying in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is laying in the {}."}, {"index": 86, "image_id": 2403996, "entity": "car", "caption": "this is a car air freshner", "question": ["is there a car air freshner ?"], "prompt": "this is a {} air freshner"}, {"index": 87, "image_id": 2403274, "entity": "car", "caption": "antenna attached to car", "question": ["is there antenna ?", "is there car ?"], "prompt": "antenna attached to {}"}, {"index": 88, "image_id": 2402657, "entity": "car", "caption": "side car mirror with sky reflected ", "question": ["is there side car mirror ?", "is there sky ?"], "prompt": "side {} mirror with sky reflected "}, {"index": 89, "image_id": 2402628, "entity": "car", "caption": "a car head light", "question": ["is there a car head ?"], "prompt": "a {} head light"}, {"index": 90, "image_id": 2401935, "entity": "car", "caption": "a car's door handle", "question": ["is there a car's door ?"], "prompt": "a {}'s door handle"}, {"index": 91, "image_id": 2401222, "entity": "car", "caption": "the woman is in a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "the woman is in a {}"}, {"index": 92, "image_id": 2401204, "entity": "car", "caption": "A cat is sitting on top of a car", "question": ["is there a cat ?", "is there top ?", "is there a car ?"], "prompt": "A cat is sitting on top of a {}"}, {"index": 93, "image_id": 2401204, "entity": "car", "caption": "cat is on the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is on the {}"}, {"index": 94, "image_id": 2401017, "entity": "car", "caption": "The car is silver.", "question": ["is there the car ?"], "prompt": "The {} is silver."}, {"index": 95, "image_id": 2401017, "entity": "car", "caption": "reflection shines on the door of the car", "question": ["is there reflection ?", "is there the door ?", "is there the car ?"], "prompt": "reflection shines on the door of the {}"}, {"index": 96, "image_id": 2400948, "entity": "car", "caption": "Surf board on a car", "question": ["is there surf board ?", "is there a car ?"], "prompt": "Surf board on a {}"}, {"index": 97, "image_id": 2400948, "entity": "car", "caption": "surfboards are on top of the car", "question": ["are there surfboards ?", "is there top ?", "is there the car ?"], "prompt": "surfboards are on top of the {}"}, {"index": 98, "image_id": 2400948, "entity": "car", "caption": "a steering wheel statue is on the middle of car", "question": ["is there a steering wheel statue ?", "is there the middle ?", "is there car ?"], "prompt": "a steering wheel statue is on the middle of {}"}, {"index": 99, "image_id": 2400948, "entity": "car", "caption": "people are standing behind car", "question": ["are there people ?", "is there car ?"], "prompt": "people are standing behind {}"}, {"index": 100, "image_id": 2400860, "entity": "car", "caption": "black door handles on white car", "question": ["is there black door ?", "is there white car ?"], "prompt": "black door handles on white {}"}, {"index": 101, "image_id": 2400860, "entity": "car", "caption": "a door handle on a car", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}"}, {"index": 102, "image_id": 2400806, "entity": "car", "caption": "a red suitcase is next to the car", "question": ["is there a red suitcase ?", "is there the car ?"], "prompt": "a red suitcase is next to the {}"}, {"index": 103, "image_id": 2400490, "entity": "car", "caption": "front door handle on car", "question": ["is there front door ?", "is there car ?"], "prompt": "front door handle on {}"}, {"index": 104, "image_id": 2400490, "entity": "car", "caption": "a car door handle", "question": ["is there a car door ?"], "prompt": "a {} door handle"}, {"index": 105, "image_id": 2400490, "entity": "car", "caption": "parked car is dark gray with four doors", "question": ["is there parked car ?", "are there four doors ?"], "prompt": "parked {} is dark gray with four doors"}, {"index": 106, "image_id": 2400490, "entity": "car", "caption": "a door handle on a car.", "question": ["is there a door ?", "is there a car ?"], "prompt": "a door handle on a {}."}, {"index": 107, "image_id": 2400490, "entity": "car", "caption": "front left fender of a car.", "question": ["is there front left fender ?", "is there a car ?"], "prompt": "front left fender of a {}."}, {"index": 108, "image_id": 2400275, "entity": "car", "caption": "A person barely visible in the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "A person barely visible in the {}"}, {"index": 109, "image_id": 2400275, "entity": "car", "caption": "The window of the car the dog is sticking his head out of", "question": ["is there the window ?", "is there the car ?", "is there the dog ?", "is there his head ?"], "prompt": "The window of the {} the dog is sticking his head out of"}, {"index": 110, "image_id": 2400275, "entity": "car", "caption": "Dogs is in a car", "question": ["are there dogs ?", "is there a car ?"], "prompt": "Dogs is in a {}"}, {"index": 111, "image_id": 2399913, "entity": "car", "caption": "handle that helps you getting out of car", "question": ["is there car ?"], "prompt": "handle that helps you getting out of {}"}, {"index": 112, "image_id": 2399740, "entity": "car", "caption": "This mirror belongs to a car.", "question": ["is there this mirror ?", "is there a car ?"], "prompt": "This mirror belongs to a {}."}, {"index": 113, "image_id": 2399146, "entity": "car", "caption": "this is a car", "question": ["is there a car ?"], "prompt": "this is a {}"}, {"index": 114, "image_id": 2398786, "entity": "car", "caption": "Door handle on the driver side of a black car. ", "question": ["is there door ?", "is there the driver side ?", "is there a black car ?"], "prompt": "Door handle on the driver side of a black {}. "}, {"index": 115, "image_id": 2398088, "entity": "car", "caption": "seat buckle part in car", "question": ["is there seat buckle part ?", "is there car ?"], "prompt": "seat buckle part in {}"}, {"index": 116, "image_id": 2398088, "entity": "car", "caption": "A window is in the car.", "question": ["is there a window ?", "is there the car ?"], "prompt": "A window is in the {}."}, {"index": 117, "image_id": 2398030, "entity": "car", "caption": "Trees are behind the cars.", "question": ["are there trees ?", "are there the cars ?"], "prompt": "Trees are behind the {}s."}, {"index": 118, "image_id": 2398030, "entity": "car", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice {}s and trucks lined up"}, {"index": 119, "image_id": 2398030, "entity": "car", "caption": "car with hood that opens backwards ", "question": ["is there car ?", "is there hood ?"], "prompt": "{} with hood that opens backwards "}, {"index": 120, "image_id": 2397686, "entity": "car", "caption": "Person is inside car.", "question": ["is there person ?", "is there inside car ?"], "prompt": "Person is inside {}."}, {"index": 121, "image_id": 2396173, "entity": "car", "caption": "the zebra is near a car", "question": ["is there a car ?"], "prompt": "the zebra is near a {}"}, {"index": 122, "image_id": 2396020, "entity": "car", "caption": "grass next to car is dry ", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is dry "}, {"index": 123, "image_id": 2396020, "entity": "car", "caption": "grass next to car is color brown", "question": ["is there grass ?", "is there car ?"], "prompt": "grass next to {} is color brown"}, {"index": 124, "image_id": 2396018, "entity": "car", "caption": "White car is behind meter", "question": ["is there white car ?", "is there meter ?"], "prompt": "White {} is behind meter"}, {"index": 125, "image_id": 2395874, "entity": "car", "caption": "air went inside car", "question": ["is there air ?", "is there car ?"], "prompt": "air went inside {}"}, {"index": 126, "image_id": 2395874, "entity": "car", "caption": "The zebra is in the car.", "question": ["is there the car ?"], "prompt": "The zebra is in the {}."}, {"index": 127, "image_id": 2395874, "entity": "car", "caption": "zebra's head pokes into car window", "question": ["is there zebra's head ?", "is there car window ?"], "prompt": "zebra's head pokes into {} window"}, {"index": 128, "image_id": 2395759, "entity": "car", "caption": "cows surround the car", "question": ["are there cows ?", "is there the car ?"], "prompt": "cows surround the {}"}, {"index": 129, "image_id": 2395759, "entity": "car", "caption": "animal going to bathroom beside car", "question": ["is there animal ?", "is there car ?"], "prompt": "animal going to bathroom beside {}"}, {"index": 130, "image_id": 2395588, "entity": "car", "caption": "two more cows wait in line to taste different parts of car, perhaps c[h]ow down", "question": ["are there two more cows ?", "is there line ?", "are there different parts ?", "is there car ?"], "prompt": "two more cows wait in line to taste different parts of {}, perhaps c[h]ow down"}, {"index": 131, "image_id": 2395338, "entity": "car", "caption": "teddy bear on a red car", "question": ["is there a red car ?"], "prompt": "teddy bear on a red {}"}, {"index": 132, "image_id": 2395338, "entity": "car", "caption": "The teddy bear is sitting on the car.", "question": ["is there the car ?"], "prompt": "The teddy bear is sitting on the {}."}, {"index": 133, "image_id": 2395338, "entity": "car", "caption": "The seats in the car is tan.", "question": ["are there the seats ?", "is there the car ?", "is there tan ?"], "prompt": "The seats in the {} is tan."}, {"index": 134, "image_id": 2395338, "entity": "car", "caption": "The bear is sitting by the side mirror of the car.", "question": ["is there the bear ?", "is there the side mirror ?", "is there the car ?"], "prompt": "The bear is sitting by the side mirror of the {}."}, {"index": 135, "image_id": 2395338, "entity": "car", "caption": "The car has windshield wipers.", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "The {} has windshield wipers."}, {"index": 136, "image_id": 2395338, "entity": "car", "caption": "brown teddy bear sitting on car", "question": ["is there car ?"], "prompt": "brown teddy bear sitting on {}"}, {"index": 137, "image_id": 2395338, "entity": "car", "caption": "little teddy bear sitting on car", "question": ["is there car ?"], "prompt": "little teddy bear sitting on {}"}, {"index": 138, "image_id": 2395208, "entity": "car", "caption": "front left light of a car", "question": ["is there front ?", "is there light ?", "is there a car ?"], "prompt": "front left light of a {}"}, {"index": 139, "image_id": 2394987, "entity": "car", "caption": "the fence is behind the car", "question": ["is there the fence ?", "is there the car ?"], "prompt": "the fence is behind the {}"}, {"index": 140, "image_id": 2394987, "entity": "car", "caption": "the cars says coca-cola", "question": ["are there the cars ?"], "prompt": "the {}s says coca-cola"}, {"index": 141, "image_id": 2393712, "entity": "car", "caption": "The car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "The {} has a mirror"}, {"index": 142, "image_id": 2393712, "entity": "car", "caption": "the car has a mirror", "question": ["is there the car ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 143, "image_id": 2391973, "entity": "car", "caption": "the cars control panel", "question": ["are there the cars control panel ?"], "prompt": "the {}s control panel"}, {"index": 144, "image_id": 2390809, "entity": "car", "caption": "this is a car tire", "question": ["is there a car tire ?"], "prompt": "this is a {} tire"}, {"index": 145, "image_id": 2390710, "entity": "car", "caption": "the cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is on the {}"}, {"index": 146, "image_id": 2390710, "entity": "car", "caption": "cat sitting and crouching on hood of car", "question": ["is there cat ?", "is there hood ?", "is there car ?"], "prompt": "cat sitting and crouching on hood of {}"}, {"index": 147, "image_id": 2390672, "entity": "car", "caption": "The dog is in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is in the {}."}, {"index": 148, "image_id": 2390672, "entity": "car", "caption": "a German shepard alone inside a car with the windows rolled up", "question": ["is there a german shepard ?", "is there a car ?", "are there the windows ?"], "prompt": "a German shepard alone inside a {} with the windows rolled up"}, {"index": 149, "image_id": 2390553, "entity": "car", "caption": "the dash in the car is black", "question": ["is there the dash ?", "is there the car ?"], "prompt": "the dash in the {} is black"}, {"index": 150, "image_id": 2390177, "entity": "car", "caption": "shiny roof rack on red car", "question": ["is there shiny roof rack ?", "is there red car ?"], "prompt": "shiny roof rack on red {}"}, {"index": 151, "image_id": 2389910, "entity": "car", "caption": "a slipstream sports car has bikes on it.", "question": ["are there a slipstream sports car ?", "are there bikes ?"], "prompt": "a slipstream sports {} has bikes on it."}, {"index": 152, "image_id": 2389614, "entity": "car", "caption": "Dog hanging out of car. ", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog hanging out of {}. "}, {"index": 153, "image_id": 2389485, "entity": "car", "caption": "Woman watching animals in the car.", "question": ["is there woman ?", "are there animals ?", "is there the car ?"], "prompt": "Woman watching animals in the {}."}, {"index": 154, "image_id": 2389479, "entity": "car", "caption": "a car with several bicycles mounted on top of it", "question": ["is there a car ?", "are there several bicycles ?", "is there top ?"], "prompt": "a {} with several bicycles mounted on top of it"}, {"index": 155, "image_id": 2389474, "entity": "car", "caption": "The dog is looking out the car window.", "question": ["is there the dog ?", "is there the car window ?"], "prompt": "The dog is looking out the {} window."}, {"index": 156, "image_id": 2388774, "entity": "car", "caption": "the bird is in the car ", "question": ["is there the bird ?", "is there the car ?"], "prompt": "the bird is in the {} "}, {"index": 157, "image_id": 2388733, "entity": "car", "caption": "bicycles mounted on car", "question": ["are there bicycles ?", "is there car ?"], "prompt": "bicycles mounted on {}"}, {"index": 158, "image_id": 2388584, "entity": "car", "caption": "A doll head in a car.", "question": ["is there a doll head ?", "is there a car ?"], "prompt": "A doll head in a {}."}, {"index": 159, "image_id": 2388584, "entity": "car", "caption": "Another doll head inside a car.", "question": ["is there another doll head ?", "is there a car ?"], "prompt": "Another doll head inside a {}."}, {"index": 160, "image_id": 2388584, "entity": "car", "caption": "empty tube of toothpaste taped to top of car", "question": ["is there empty tube ?", "is there toothpaste ?", "is there top ?", "is there car ?"], "prompt": "empty tube of toothpaste taped to top of {}"}, {"index": 161, "image_id": 2388584, "entity": "car", "caption": "two toothbrushes taped to top of car", "question": ["are there two toothbrushes ?", "is there top ?", "is there car ?"], "prompt": "two toothbrushes taped to top of {}"}, {"index": 162, "image_id": 2388052, "entity": "car", "caption": "roof of car is blue and yellow", "question": ["is there roof ?", "is there car ?"], "prompt": "roof of {} is blue and yellow"}, {"index": 163, "image_id": 2388052, "entity": "car", "caption": "door of car is yellow", "question": ["is there door ?", "is there car ?"], "prompt": "door of {} is yellow"}, {"index": 164, "image_id": 2388010, "entity": "car", "caption": "white car pulled off on side of road", "question": ["is there white car ?", "is there side ?", "is there road ?"], "prompt": "white {} pulled off on side of road"}, {"index": 165, "image_id": 2388010, "entity": "car", "caption": "a door handle ona car", "question": ["is there a door ?"], "prompt": "a door handle ona {}"}, {"index": 166, "image_id": 2387950, "entity": "car", "caption": "dog is resting on green car", "question": ["is there dog ?", "is there green car ?"], "prompt": "dog is resting on green {}"}, {"index": 167, "image_id": 2387327, "entity": "car", "caption": "The dogs are in a car.", "question": ["are there the dogs ?", "is there a car ?"], "prompt": "The dogs are in a {}."}, {"index": 168, "image_id": 2386114, "entity": "car", "caption": "white car door handle", "question": ["is there white car door ?"], "prompt": "white {} door handle"}, {"index": 169, "image_id": 2385961, "entity": "car", "caption": "a kitty cat is sleeping under a car", "question": ["is there a kitty cat ?", "is there a car ?"], "prompt": "a kitty cat is sleeping under a {}"}, {"index": 170, "image_id": 2385697, "entity": "car", "caption": "the surfboards are sticking out of the car", "question": ["are there the surfboards ?", "is there the car ?"], "prompt": "the surfboards are sticking out of the {}"}, {"index": 171, "image_id": 2385697, "entity": "car", "caption": "the tag is on the back of the car", "question": ["is there the tag ?", "is there the back ?", "is there the car ?"], "prompt": "the tag is on the back of the {}"}, {"index": 172, "image_id": 2385697, "entity": "car", "caption": "the surfboards are on the roof of the car", "question": ["are there the surfboards ?", "is there the roof ?", "is there the car ?"], "prompt": "the surfboards are on the roof of the {}"}, {"index": 173, "image_id": 2385466, "entity": "car", "caption": "Dog is inside car", "question": ["is there dog ?", "is there car ?"], "prompt": "Dog is inside {}"}, {"index": 174, "image_id": 2385251, "entity": "car", "caption": "fence is in front of car", "question": ["is there fence ?", "is there front ?", "is there car ?"], "prompt": "fence is in front of {}"}, {"index": 175, "image_id": 2384917, "entity": "car", "caption": "Light on the car is on. ", "question": ["is there light ?", "is there the car ?"], "prompt": "Light on the {} is on. "}, {"index": 176, "image_id": 2383569, "entity": "car", "caption": "Three bicycles lined up behind a green car.", "question": ["are there three bicycles ?", "is there a green car ?"], "prompt": "Three bicycles lined up behind a green {}."}, {"index": 177, "image_id": 2383096, "entity": "car", "caption": "the car has wood grain", "question": ["is there the car ?", "is there wood grain ?"], "prompt": "the {} has wood grain"}, {"index": 178, "image_id": 2383016, "entity": "car", "caption": "Front left tire of car", "question": ["is there front left tire ?", "is there car ?"], "prompt": "Front left tire of {}"}, {"index": 179, "image_id": 2382637, "entity": "car", "caption": "rails surround roof of green car", "question": ["are there rails ?", "is there surround roof ?", "is there green car ?"], "prompt": "rails surround roof of green {}"}, {"index": 180, "image_id": 2382494, "entity": "car", "caption": "A woman looks into the white car", "question": ["is there a woman ?", "is there the white car ?"], "prompt": "A woman looks into the white {}"}, {"index": 181, "image_id": 2382257, "entity": "car", "caption": "car front passenger side handle", "question": ["is there car front passenger side handle ?"], "prompt": "{} front passenger side handle"}, {"index": 182, "image_id": 2382257, "entity": "car", "caption": "car rear passenger side handle", "question": ["is there car rear passenger side handle ?"], "prompt": "{} rear passenger side handle"}, {"index": 183, "image_id": 2382257, "entity": "car", "caption": "The car door handles", "question": ["is there the car door ?"], "prompt": "The {} door handles"}, {"index": 184, "image_id": 2381937, "entity": "car", "caption": "the driver of the toy car is piggy", "question": ["is there the driver ?", "is there the toy car ?", "is there piggy ?"], "prompt": "the driver of the toy {} is piggy"}, {"index": 185, "image_id": 2381832, "entity": "car", "caption": "Jeep parked next to car", "question": ["is there jeep ?", "is there car ?"], "prompt": "Jeep parked next to {}"}, {"index": 186, "image_id": 2381810, "entity": "car", "caption": "Person is driving a car.", "question": ["is there person ?", "is there a car ?"], "prompt": "Person is driving a {}."}, {"index": 187, "image_id": 2381447, "entity": "car", "caption": "the tag on the car has letters and numbers on it", "question": ["is there the tag ?", "is there the car ?", "are there letters ?", "are there numbers ?"], "prompt": "the tag on the {} has letters and numbers on it"}, {"index": 188, "image_id": 2381447, "entity": "car", "caption": "the car is a CX-7", "question": ["is there the car ?", "is there a cx-7 ?"], "prompt": "the {} is a CX-7"}, {"index": 189, "image_id": 2381447, "entity": "car", "caption": "Cat standing near a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat standing near a {}"}, {"index": 190, "image_id": 2381315, "entity": "car", "caption": "back end of a woman's car is open", "question": ["is there back end ?", "is there a woman's car ?"], "prompt": "back end of a woman's {} is open"}, {"index": 191, "image_id": 2381315, "entity": "car", "caption": "The woman is standing behind a car", "question": ["is there the woman ?", "is there a car ?"], "prompt": "The woman is standing behind a {}"}, {"index": 192, "image_id": 2381118, "entity": "car", "caption": "car has a sticker on the windshield ", "question": ["is there car ?", "is there a sticker ?", "is there the windshield ?"], "prompt": "{} has a sticker on the windshield "}, {"index": 193, "image_id": 2381101, "entity": "car", "caption": "back window of car with sunshine coming through", "question": ["is there back window ?", "is there car ?", "is there sunshine ?"], "prompt": "back window of {} with sunshine coming through"}, {"index": 194, "image_id": 2381051, "entity": "car", "caption": "car top tie down rack", "question": ["is there car top tie ?"], "prompt": "{} top tie down rack"}, {"index": 195, "image_id": 2380669, "entity": "car", "caption": "a car headlight ", "question": ["is there a car headlight ?"], "prompt": "a {} headlight "}, {"index": 196, "image_id": 2380293, "entity": "car", "caption": "speedometer showing the car is going 0 MPH", "question": ["is there speedometer ?", "is there the car ?"], "prompt": "speedometer showing the {} is going 0 MPH"}, {"index": 197, "image_id": 2380171, "entity": "car", "caption": "black door handle on car", "question": ["is there black door ?", "is there car ?"], "prompt": "black door handle on {}"}, {"index": 198, "image_id": 2379398, "entity": "car", "caption": "The lamb is next to the car", "question": ["is there the car ?"], "prompt": "The lamb is next to the {}"}, {"index": 199, "image_id": 2379398, "entity": "car", "caption": "The car is on top of gravel", "question": ["is there the car ?", "is there top ?", "is there gravel ?"], "prompt": "The {} is on top of gravel"}, {"index": 200, "image_id": 2379270, "entity": "car", "caption": "the people are in the car", "question": ["are there the people ?", "is there the car ?"], "prompt": "the people are in the {}"}, {"index": 201, "image_id": 2378437, "entity": "car", "caption": "window of car is semi-open", "question": ["is there window ?", "is there car ?"], "prompt": "window of {} is semi-open"}, {"index": 202, "image_id": 2377492, "entity": "car", "caption": "He is next to the car.", "question": ["is there the car ?"], "prompt": "He is next to the {}."}, {"index": 203, "image_id": 2377281, "entity": "car", "caption": "headlights of car are white", "question": ["are there headlights ?", "is there car ?"], "prompt": "headlights of {} are white"}, {"index": 204, "image_id": 2377134, "entity": "car", "caption": "Leather suitcase is strapped to the trunk of the car", "question": ["is there leather suitcase ?", "is there the trunk ?", "is there the car ?"], "prompt": "Leather suitcase is strapped to the trunk of the {}"}, {"index": 205, "image_id": 2377065, "entity": "car", "caption": "The cat is laying on a car.", "question": ["is there the cat ?", "is there a car ?"], "prompt": "The cat is laying on a {}."}, {"index": 206, "image_id": 2376812, "entity": "car", "caption": "man standing in front of a parked car", "question": ["is there man ?", "is there front ?", "is there a parked car ?"], "prompt": "man standing in front of a parked {}"}, {"index": 207, "image_id": 2376666, "entity": "car", "caption": "Two cars driving down the road.", "question": ["are there two cars ?", "is there the road ?"], "prompt": "Two {}s driving down the road."}, {"index": 208, "image_id": 2376189, "entity": "car", "caption": "The baby is in the car.", "question": ["is there the baby ?", "is there the car ?"], "prompt": "The baby is in the {}."}, {"index": 209, "image_id": 2374963, "entity": "car", "caption": "man standing next to car", "question": ["is there man ?", "is there car ?"], "prompt": "man standing next to {}"}, {"index": 210, "image_id": 2374891, "entity": "car", "caption": "A dog popping outa a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog popping outa a {}"}, {"index": 211, "image_id": 2374500, "entity": "car", "caption": "A cat is laying on a car", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is laying on a {}"}, {"index": 212, "image_id": 2374500, "entity": "car", "caption": "The cat is on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "The cat is on top of a {}"}, {"index": 213, "image_id": 2374500, "entity": "car", "caption": "The cat is on a white car", "question": ["is there the cat ?", "is there a white car ?"], "prompt": "The cat is on a white {}"}, {"index": 214, "image_id": 2374500, "entity": "car", "caption": "the tabby cat is laying on the car", "question": ["is there the tabby cat ?", "is there the car ?"], "prompt": "the tabby cat is laying on the {}"}, {"index": 215, "image_id": 2374203, "entity": "car", "caption": "The blue car has an open window", "question": ["is there the blue car ?", "is there an open window ?"], "prompt": "The blue {} has an open window"}, {"index": 216, "image_id": 2374203, "entity": "car", "caption": "A man is sitting in the blue car", "question": ["is there a man ?", "is there the blue car ?"], "prompt": "A man is sitting in the blue {}"}, {"index": 217, "image_id": 2374203, "entity": "car", "caption": "man driving a blue car", "question": ["is there man ?", "is there a blue car ?"], "prompt": "man driving a blue {}"}, {"index": 218, "image_id": 2374072, "entity": "car", "caption": "Gas pump behind car.", "question": ["is there gas pump ?", "is there car ?"], "prompt": "Gas pump behind {}."}, {"index": 219, "image_id": 2372618, "entity": "car", "caption": "Dog is inside the car.", "question": ["is there dog ?", "is there the car ?"], "prompt": "Dog is inside the {}."}, {"index": 220, "image_id": 2372618, "entity": "car", "caption": "A dog is riding in a car", "question": ["is there a dog ?", "is there a car ?"], "prompt": "A dog is riding in a {}"}, {"index": 221, "image_id": 2372618, "entity": "car", "caption": "A dog is in its master's car", "question": ["is there a dog ?", "is there its master's car ?"], "prompt": "A dog is in its master's {}"}, {"index": 222, "image_id": 2372618, "entity": "car", "caption": "The dog likes riding in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog likes riding in a {}"}, {"index": 223, "image_id": 2372587, "entity": "car", "caption": "Classic car headlight", "question": ["is there classic car headlight ?"], "prompt": "Classic {} headlight"}, {"index": 224, "image_id": 2372587, "entity": "car", "caption": "Two surfboards attach to classic car roof", "question": ["are there two surfboards ?", "is there classic car roof ?"], "prompt": "Two surfboards attach to classic {} roof"}, {"index": 225, "image_id": 2372550, "entity": "car", "caption": "Mud flaps on a blue car", "question": ["are there mud flaps ?", "is there a blue car ?"], "prompt": "Mud flaps on a blue {}"}, {"index": 226, "image_id": 2372422, "entity": "car", "caption": "A back car door handle", "question": ["is there a back car door ?"], "prompt": "A back {} door handle"}, {"index": 227, "image_id": 2371952, "entity": "car", "caption": "seat belt hanging inside a car", "question": ["is there seat belt ?", "is there a car ?"], "prompt": "seat belt hanging inside a {}"}, {"index": 228, "image_id": 2371950, "entity": "car", "caption": "the cat is in a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is in a {}"}, {"index": 229, "image_id": 2371208, "entity": "car", "caption": "a chrome door handle on a car", "question": ["is there a chrome door ?", "is there a car ?"], "prompt": "a chrome door handle on a {}"}, {"index": 230, "image_id": 2371208, "entity": "car", "caption": "Silver door handle on green car", "question": ["is there silver door ?", "is there green car ?"], "prompt": "Silver door handle on green {}"}, {"index": 231, "image_id": 2370927, "entity": "car", "caption": "the elephant is close to the car ", "question": ["is there the elephant ?", "is there the car ?"], "prompt": "the elephant is close to the {} "}, {"index": 232, "image_id": 2370584, "entity": "car", "caption": "hood of the car is up", "question": ["is there hood ?", "is there the car ?"], "prompt": "hood of the {} is up"}, {"index": 233, "image_id": 2370584, "entity": "car", "caption": "several people standing away from the cars", "question": ["are there several people ?", "are there the cars ?"], "prompt": "several people standing away from the {}s"}, {"index": 234, "image_id": 2370584, "entity": "car", "caption": "trees located behind place where car show is", "question": ["are there trees ?", "is there place ?", "is there car show ?"], "prompt": "trees located behind place where {} show is"}, {"index": 235, "image_id": 2370246, "entity": "car", "caption": "the cat is lying on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is lying on the {}"}, {"index": 236, "image_id": 2369015, "entity": "car", "caption": "Surfboard is on top of car", "question": ["is there surfboard ?", "is there top ?", "is there car ?"], "prompt": "Surfboard is on top of {}"}, {"index": 237, "image_id": 2368457, "entity": "car", "caption": "baby looking out the window of the car", "question": ["is there baby ?", "is there the window ?", "is there the car ?"], "prompt": "baby looking out the window of the {}"}, {"index": 238, "image_id": 2368457, "entity": "car", "caption": "old style car driving down the road", "question": ["is there old style car ?", "is there the road ?"], "prompt": "old style {} driving down the road"}, {"index": 239, "image_id": 2368457, "entity": "car", "caption": "advertisement is on the door of the car", "question": ["is there advertisement ?", "is there the door ?", "is there the car ?"], "prompt": "advertisement is on the door of the {}"}, {"index": 240, "image_id": 2368457, "entity": "car", "caption": "a person is driving the car", "question": ["is there a person ?", "is there the car ?"], "prompt": "a person is driving the {}"}, {"index": 241, "image_id": 2368457, "entity": "car", "caption": "a rack with straps is on the car", "question": ["is there a rack ?", "are there straps ?", "is there the car ?"], "prompt": "a rack with straps is on the {}"}, {"index": 242, "image_id": 2367648, "entity": "car", "caption": "A car is at an auto show", "question": ["is there a car ?", "is there an auto show ?"], "prompt": "A {} is at an auto show"}, {"index": 243, "image_id": 2367406, "entity": "car", "caption": "The curb is next to the cars.", "question": ["is there the curb ?", "are there the cars ?"], "prompt": "The curb is next to the {}s."}, {"index": 244, "image_id": 2367276, "entity": "car", "caption": "the car handle on the passenger door", "question": ["is there the car handle ?", "is there the passenger door ?"], "prompt": "the {} handle on the passenger door"}, {"index": 245, "image_id": 2367258, "entity": "car", "caption": "giraffe peeking in the car", "question": ["is there the car ?"], "prompt": "giraffe peeking in the {}"}, {"index": 246, "image_id": 2367258, "entity": "car", "caption": "the scene is inside the car ", "question": ["is there the scene ?", "is there the car ?"], "prompt": "the scene is inside the {} "}, {"index": 247, "image_id": 2367258, "entity": "car", "caption": "cars sunroof protective seal", "question": ["are there cars ?", "is there protective seal ?"], "prompt": "{}s sunroof protective seal"}, {"index": 248, "image_id": 2367033, "entity": "car", "caption": "the silver car door handle", "question": ["is there the silver car door ?"], "prompt": "the silver {} door handle"}, {"index": 249, "image_id": 2365787, "entity": "car", "caption": "th edog is in the car ", "question": ["is there the car ?"], "prompt": "th edog is in the {} "}, {"index": 250, "image_id": 2365750, "entity": "car", "caption": "This is a car mirror", "question": ["is there a car mirror ?"], "prompt": "This is a {} mirror"}, {"index": 251, "image_id": 2365750, "entity": "car", "caption": "This is a car window", "question": ["is there a car window ?"], "prompt": "This is a {} window"}, {"index": 252, "image_id": 2365458, "entity": "car", "caption": "one headlight on front of car", "question": ["is there one headlight ?", "is there front ?", "is there car ?"], "prompt": "one headlight on front of {}"}, {"index": 253, "image_id": 2364504, "entity": "car", "caption": "One dog is sitting in the car.", "question": ["is there one dog ?", "is there the car ?"], "prompt": "One dog is sitting in the {}."}, {"index": 254, "image_id": 2364504, "entity": "car", "caption": "Buildings are outside the car.", "question": ["are there buildings ?", "is there the car ?"], "prompt": "Buildings are outside the {}."}, {"index": 255, "image_id": 2364109, "entity": "car", "caption": "front dashboard of car where a rider took the photo", "question": ["is there front dashboard ?", "is there car ?", "is there a rider ?", "is there the photo ?"], "prompt": "front dashboard of {} where a rider took the photo"}, {"index": 256, "image_id": 2363425, "entity": "car", "caption": "the door handle on a car", "question": ["is there the door ?", "is there a car ?"], "prompt": "the door handle on a {}"}, {"index": 257, "image_id": 2363424, "entity": "car", "caption": "several people standing behind car", "question": ["are there several people ?", "is there car ?"], "prompt": "several people standing behind {}"}, {"index": 258, "image_id": 2363415, "entity": "car", "caption": "black car door handle on a white car", "question": ["is there black car door ?", "is there a white car ?"], "prompt": "black {} door handle on a white {}"}, {"index": 259, "image_id": 2363359, "entity": "car", "caption": "the writing on the car appears to be chinese", "question": ["is there the writing ?", "is there the car ?"], "prompt": "the writing on the {} appears to be chinese"}, {"index": 260, "image_id": 2363195, "entity": "car", "caption": "Ontario plates are on the car", "question": ["are there ontario plates ?", "is there the car ?"], "prompt": "Ontario plates are on the {}"}, {"index": 261, "image_id": 2363195, "entity": "car", "caption": "The cat is on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}"}, {"index": 262, "image_id": 2362213, "entity": "car", "caption": "feline resting in car", "question": ["is there car ?"], "prompt": "feline resting in {}"}, {"index": 263, "image_id": 2362071, "entity": "car", "caption": "it is the windshield of the car", "question": ["is there the windshield ?", "is there the car ?"], "prompt": "it is the windshield of the {}"}, {"index": 264, "image_id": 2362050, "entity": "car", "caption": "A Mercedes emblem is on the car.", "question": ["are there a mercedes emblem ?", "is there the car ?"], "prompt": "A Mercedes emblem is on the {}."}, {"index": 265, "image_id": 2361191, "entity": "car", "caption": "a red bird is on the car's mirror", "question": ["is there a red bird ?", "is there the car's mirror ?"], "prompt": "a red bird is on the {}'s mirror"}, {"index": 266, "image_id": 2360825, "entity": "car", "caption": "A car door is open.", "question": ["is there a car door ?"], "prompt": "A {} door is open."}, {"index": 267, "image_id": 2360825, "entity": "car", "caption": "A person is sitting in back of a car.", "question": ["is there a person ?", "is there a car ?"], "prompt": "A person is sitting in back of a {}."}, {"index": 268, "image_id": 2360521, "entity": "car", "caption": "this car has it's tail lights on", "question": ["is there this car ?", "are there it's tail lights ?"], "prompt": "this {} has it's tail lights on"}, {"index": 269, "image_id": 2360370, "entity": "car", "caption": "the man is standing by the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "the man is standing by the {}"}, {"index": 270, "image_id": 2360370, "entity": "car", "caption": "the bananas are in the car", "question": ["are there the bananas ?", "is there the car ?"], "prompt": "the bananas are in the {}"}, {"index": 271, "image_id": 2360146, "entity": "car", "caption": "Teddy bears in the car", "question": ["is there the car ?"], "prompt": "Teddy bears in the {}"}, {"index": 272, "image_id": 2359127, "entity": "car", "caption": "numbers on car are 2 and 08", "question": ["are there numbers ?", "is there car ?"], "prompt": "numbers on {} are 2 and 08"}, {"index": 273, "image_id": 2358763, "entity": "car", "caption": "This is a car hood", "question": ["is there a car hood ?"], "prompt": "This is a {} hood"}, {"index": 274, "image_id": 2358763, "entity": "car", "caption": "This is a car door", "question": ["is there a car door ?"], "prompt": "This is a {} door"}, {"index": 275, "image_id": 2358763, "entity": "car", "caption": "Water is on the car", "question": ["is there water ?", "is there the car ?"], "prompt": "Water is on the {}"}, {"index": 276, "image_id": 2358763, "entity": "car", "caption": "The car is next to trees", "question": ["is there the car ?", "are there trees ?"], "prompt": "The {} is next to trees"}, {"index": 277, "image_id": 2358763, "entity": "car", "caption": "The car has a steering wheel", "question": ["is there the car ?", "is there a steering wheel ?"], "prompt": "The {} has a steering wheel"}, {"index": 278, "image_id": 2358763, "entity": "car", "caption": "A car's reflection is in the window", "question": ["is there a car's reflection ?", "is there the window ?"], "prompt": "A {}'s reflection is in the window"}, {"index": 279, "image_id": 2357815, "entity": "car", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white {} is behind the truck"}, {"index": 280, "image_id": 2357637, "entity": "car", "caption": "the cat is sitting on top of a car", "question": ["is there the cat ?", "is there top ?", "is there a car ?"], "prompt": "the cat is sitting on top of a {}"}, {"index": 281, "image_id": 2357540, "entity": "car", "caption": "car has yellow license plate", "question": ["is there car ?", "is there yellow license plate ?"], "prompt": "{} has yellow license plate"}, {"index": 282, "image_id": 2357435, "entity": "car", "caption": "Suit cases in car packed", "question": ["are there suit cases ?"], "prompt": "Suit cases in {} packed"}, {"index": 283, "image_id": 2357435, "entity": "car", "caption": "user car controls black switch", "question": ["is there user car ?", "is there black switch ?"], "prompt": "user {} controls black switch"}, {"index": 284, "image_id": 2357435, "entity": "car", "caption": "back door of car is open", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is open"}, {"index": 285, "image_id": 2357435, "entity": "car", "caption": "back door of car is up", "question": ["is there door ?", "is there car ?"], "prompt": "back door of {} is up"}, {"index": 286, "image_id": 2357227, "entity": "car", "caption": "people stand by a car", "question": ["are there people ?", "is there a car ?"], "prompt": "people stand by a {}"}, {"index": 287, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the gray car.", "question": ["is there the left front headlight ?", "is there the gray car ?"], "prompt": "The left front headlight of the gray {}."}, {"index": 288, "image_id": 2356915, "entity": "car", "caption": "The right front headlight on the black car.", "question": ["is there the right front headlight ?", "is there the black car ?"], "prompt": "The right front headlight on the black {}."}, {"index": 289, "image_id": 2356915, "entity": "car", "caption": "The left front headlight of the black car.", "question": ["is there the left front headlight ?", "is there the black car ?"], "prompt": "The left front headlight of the black {}."}, {"index": 290, "image_id": 2356554, "entity": "car", "caption": "dog is sitting in side car", "question": ["is there dog ?", "is there side car ?"], "prompt": "dog is sitting in side {}"}, {"index": 291, "image_id": 2355930, "entity": "car", "caption": "the cat is on top of the car", "question": ["is there the cat ?", "is there top ?", "is there the car ?"], "prompt": "the cat is on top of the {}"}, {"index": 292, "image_id": 2355930, "entity": "car", "caption": "the car has a license plate", "question": ["is there the car ?", "is there a license plate ?"], "prompt": "the {} has a license plate"}, {"index": 293, "image_id": 2355930, "entity": "car", "caption": "the wood is beside the car", "question": ["is there the wood ?", "is there the car ?"], "prompt": "the wood is beside the {}"}, {"index": 294, "image_id": 2355930, "entity": "car", "caption": "the car has seats", "question": ["is there the car ?", "are there seats ?"], "prompt": "the {} has seats"}, {"index": 295, "image_id": 2355512, "entity": "car", "caption": "the cat is under the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is under the {}"}, {"index": 296, "image_id": 2354802, "entity": "car", "caption": "side of the car is gray", "question": ["is there side ?", "is there the car ?"], "prompt": "side of the {} is gray"}, {"index": 297, "image_id": 2354802, "entity": "car", "caption": "car has advertisements all over paint job", "question": ["is there car ?", "are there advertisements ?", "is there paint job ?"], "prompt": "{} has advertisements all over paint job"}, {"index": 298, "image_id": 2354519, "entity": "car", "caption": "the shoes next to the car", "question": ["are there the shoes ?", "is there the car ?"], "prompt": "the shoes next to the {}"}, {"index": 299, "image_id": 2353437, "entity": "car", "caption": "a cat is on the car hood", "question": ["is there a cat ?", "is there the car hood ?"], "prompt": "a cat is on the {} hood"}, {"index": 300, "image_id": 2353208, "entity": "car", "caption": "the cat is sitting on the car", "question": ["is there the cat ?", "is there the car ?"], "prompt": "the cat is sitting on the {}"}, {"index": 301, "image_id": 2353208, "entity": "car", "caption": "the car has windshield wipers", "question": ["is there the car ?", "are there windshield wipers ?"], "prompt": "the {} has windshield wipers"}, {"index": 302, "image_id": 2353208, "entity": "car", "caption": "A cat is sitting on a car. ", "question": ["is there a cat ?", "is there a car ?"], "prompt": "A cat is sitting on a {}. "}, {"index": 303, "image_id": 2353208, "entity": "car", "caption": "A car has black windshield wipers. ", "question": ["is there a car ?", "are there black windshield wipers ?"], "prompt": "A {} has black windshield wipers. "}, {"index": 304, "image_id": 2353208, "entity": "car", "caption": "A car is under a cat. ", "question": ["is there a car ?", "is there a cat ?"], "prompt": "A {} is under a cat. "}, {"index": 305, "image_id": 2353125, "entity": "car", "caption": "a bicycle is on the car roof", "question": ["is there a bicycle ?", "is there the car roof ?"], "prompt": "a bicycle is on the {} roof"}, {"index": 306, "image_id": 2353125, "entity": "car", "caption": "the car has a carrier", "question": ["is there the car ?", "is there a carrier ?"], "prompt": "the {} has a {}rier"}, {"index": 307, "image_id": 2353125, "entity": "car", "caption": "Door handle on the car.", "question": ["is there door ?", "is there the car ?"], "prompt": "Door handle on the {}."}, {"index": 308, "image_id": 2352313, "entity": "car", "caption": "car door handle", "question": ["is there car door ?"], "prompt": "{} door handle"}, {"index": 309, "image_id": 2352313, "entity": "car", "caption": "door handle on a black car", "question": ["is there door ?", "is there a black car ?"], "prompt": "door handle on a black {}"}, {"index": 310, "image_id": 2352195, "entity": "car", "caption": "Blue and white bus parked next to the red car.", "question": ["is there blue and white bus ?", "is there the red car ?"], "prompt": "Blue and white bus parked next to the red {}."}, {"index": 311, "image_id": 2351364, "entity": "car", "caption": "She is next to the car.", "question": ["is there the car ?"], "prompt": "She is next to the {}."}, {"index": 312, "image_id": 2350995, "entity": "car", "caption": "A dog and man are riding in a white car.", "question": ["is there a dog ?", "is there man ?", "is there a white car ?"], "prompt": "A dog and man are riding in a white {}."}, {"index": 313, "image_id": 2350974, "entity": "car", "caption": "boy reflected in the car's window", "question": ["is there boy ?", "is there the car's window ?"], "prompt": "boy reflected in the {}'s window"}, {"index": 314, "image_id": 2350933, "entity": "car", "caption": "A car is in the window's reflection", "question": ["is there a car ?", "is there the window's reflection ?"], "prompt": "A {} is in the window's reflection"}, {"index": 315, "image_id": 2350869, "entity": "car", "caption": "line of cars stopped at intersection", "question": ["is there line ?", "are there cars ?", "is there intersection ?"], "prompt": "line of {}s stopped at intersection"}, {"index": 316, "image_id": 2350581, "entity": "car", "caption": "rear left tire on car", "question": ["is there rear left tire ?", "is there car ?"], "prompt": "rear left tire on {}"}, {"index": 317, "image_id": 2350581, "entity": "car", "caption": "front left tire on car", "question": ["is there front ?", "is there tire ?", "is there car ?"], "prompt": "front left tire on {}"}, {"index": 318, "image_id": 2350002, "entity": "car", "caption": "A car is on the road", "question": ["is there a car ?", "is there the road ?"], "prompt": "A {} is on the road"}, {"index": 319, "image_id": 2350002, "entity": "car", "caption": "A dog is sitting inside the car", "question": ["is there a dog ?", "is there the car ?"], "prompt": "A dog is sitting inside the {}"}, {"index": 320, "image_id": 2349972, "entity": "car", "caption": "a car having bags", "question": ["is there a car ?", "are there bags ?"], "prompt": "a {} having bags"}, {"index": 321, "image_id": 2349597, "entity": "car", "caption": "a car is by the dog", "question": ["is there a car ?", "is there the dog ?"], "prompt": "a {} is by the dog"}, {"index": 322, "image_id": 2348921, "entity": "car", "caption": "the child is in a car", "question": ["is there the child ?", "is there a car ?"], "prompt": "the child is in a {}"}, {"index": 323, "image_id": 2348625, "entity": "car", "caption": "this car has its break lights on ", "question": ["is there this car ?", "are there its break lights ?"], "prompt": "this {} has its break lights on "}, {"index": 324, "image_id": 2348416, "entity": "car", "caption": "indicator lights on the rear of a car", "question": ["are there indicator lights ?", "is there the rear ?", "is there a car ?"], "prompt": "indicator lights on the rear of a {}"}, {"index": 325, "image_id": 2348408, "entity": "car", "caption": "the window is down on the car", "question": ["is there the window ?", "is there the car ?"], "prompt": "the window is down on the {}"}, {"index": 326, "image_id": 2347190, "entity": "car", "caption": "the car front is grey in color", "question": ["is there the car front ?", "is there color ?"], "prompt": "the {} front is grey in color"}, {"index": 327, "image_id": 2347190, "entity": "car", "caption": "the car windscreen are black in color", "question": ["is there the car windscreen ?", "is there color ?"], "prompt": "the {} windscreen are black in color"}, {"index": 328, "image_id": 2347179, "entity": "car", "caption": "shadow os the cat is on the car ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "shadow os the cat is on the {} "}, {"index": 329, "image_id": 2347179, "entity": "car", "caption": "cat sits on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat sits on {}"}, {"index": 330, "image_id": 2347027, "entity": "car", "caption": "the dog is in a car", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {}"}, {"index": 331, "image_id": 2346677, "entity": "car", "caption": "Man pushing suitcases in car", "question": ["is there man ?", "are there suitcases ?", "is there car ?"], "prompt": "Man pushing suitcases in {}"}, {"index": 332, "image_id": 2346677, "entity": "car", "caption": "Woman sitting in front seat of car", "question": ["is there woman ?", "is there front seat ?", "is there car ?"], "prompt": "Woman sitting in front seat of {}"}, {"index": 333, "image_id": 2345608, "entity": "car", "caption": "motorcycle is next to car", "question": ["is there motorcycle ?"], "prompt": "motorcycle is next to {}"}, {"index": 334, "image_id": 2345314, "entity": "car", "caption": "car window is down", "question": ["is there car window ?"], "prompt": "{} window is down"}, {"index": 335, "image_id": 2345219, "entity": "car", "caption": "car has red tail lights", "question": ["is there car ?", "are there red tail lights ?"], "prompt": "{} has red tail lights"}, {"index": 336, "image_id": 2345219, "entity": "car", "caption": "car trunk is open", "question": ["is there car trunk ?"], "prompt": "{} trunk is open"}, {"index": 337, "image_id": 2344729, "entity": "car", "caption": "the dog is in the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is in the {}"}, {"index": 338, "image_id": 2344729, "entity": "car", "caption": "this is in a car", "question": ["is there a car ?"], "prompt": "this is in a {}"}, {"index": 339, "image_id": 2344713, "entity": "car", "caption": "black cat shaped car decal ", "question": ["is there black cat shaped car decal ?"], "prompt": "black cat shaped {} decal "}, {"index": 340, "image_id": 2344274, "entity": "car", "caption": "the car has no numberplates ", "question": ["is there the car ?"], "prompt": "the {} has no numberplates "}, {"index": 341, "image_id": 2344274, "entity": "car", "caption": "Silver car stopped at a light", "question": ["is there silver car ?", "is there a light ?"], "prompt": "Silver {} stopped at a light"}, {"index": 342, "image_id": 2343856, "entity": "car", "caption": "the plane is on the car ", "question": ["is there the plane ?", "is there the car ?"], "prompt": "the plane is on the {} "}, {"index": 343, "image_id": 2343756, "entity": "car", "caption": "A car's driver side headlight", "question": ["is there a car's driver side headlight ?"], "prompt": "A {}'s driver side headlight"}, {"index": 344, "image_id": 2343756, "entity": "car", "caption": "car make logo on front of car", "question": ["is there car ?", "is there logo ?", "is there front ?", "is there car ?"], "prompt": "{} make logo on front of {}"}, {"index": 345, "image_id": 2343756, "entity": "car", "caption": "silver care parked with surfboard on roof", "question": ["is there silver care ?", "is there surfboard ?", "is there roof ?"], "prompt": "silver {}e parked with surfboard on roof"}, {"index": 346, "image_id": 2343756, "entity": "car", "caption": "Surfboard attached to car rack", "question": ["is there surfboard ?", "is there car rack ?"], "prompt": "Surfboard attached to {} rack"}, {"index": 347, "image_id": 2343665, "entity": "car", "caption": "Various cars occupy city street", "question": ["are there various cars ?", "is there city street ?"], "prompt": "Various {}s occupy city street"}, {"index": 348, "image_id": 2343324, "entity": "car", "caption": "A lady travels inside the car", "question": ["is there a lady ?", "is there the car ?"], "prompt": "A lady travels inside the {}"}, {"index": 349, "image_id": 2343324, "entity": "car", "caption": "Besides the car vehicles are on the road", "question": ["are there the car vehicles ?", "is there the road ?"], "prompt": "Besides the {} vehicles are on the road"}, {"index": 350, "image_id": 2343324, "entity": "car", "caption": "A lady is riding her car ", "question": ["is there a lady ?", "is there her car ?"], "prompt": "A lady is riding her {} "}, {"index": 351, "image_id": 2343321, "entity": "car", "caption": "the car has tires", "question": ["is there the car ?", "are there tires ?"], "prompt": "the {} has tires"}, {"index": 352, "image_id": 2343098, "entity": "car", "caption": "a sign is on the front of the car", "question": ["is there a sign ?", "is there the front ?", "is there the car ?"], "prompt": "a sign is on the front of the {}"}, {"index": 353, "image_id": 2343098, "entity": "car", "caption": "a tire is on the car", "question": ["is there a tire ?", "is there the car ?"], "prompt": "a tire is on the {}"}, {"index": 354, "image_id": 2343098, "entity": "car", "caption": "the car's taillights are off ", "question": ["are there the car's taillights ?"], "prompt": "the {}'s taillights are off "}, {"index": 355, "image_id": 2342975, "entity": "car", "caption": "A surfboard is on the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}."}, {"index": 356, "image_id": 2342809, "entity": "car", "caption": "the car is reflecting the seat", "question": ["is there the car ?", "is there the seat ?"], "prompt": "the {} is reflecting the seat"}, {"index": 357, "image_id": 2342672, "entity": "car", "caption": "person driving the car", "question": ["is there person ?", "is there the car ?"], "prompt": "person driving the {}"}, {"index": 358, "image_id": 2342493, "entity": "car", "caption": "the cars have lights on", "question": ["are there the cars ?", "are there lights ?"], "prompt": "the {}s have lights on"}, {"index": 359, "image_id": 2341390, "entity": "car", "caption": "a large black dog sits in the back of a car", "question": ["is there a large black dog ?", "is there the back ?", "is there a car ?"], "prompt": "a large black dog sits in the back of a {}"}, {"index": 360, "image_id": 2341390, "entity": "car", "caption": "The dog is sitting in the car.", "question": ["is there the dog ?", "is there the car ?"], "prompt": "The dog is sitting in the {}."}, {"index": 361, "image_id": 2341390, "entity": "car", "caption": "The car have scratches", "question": ["is there the car ?", "are there scratches ?"], "prompt": "The {} have scratches"}, {"index": 362, "image_id": 2341390, "entity": "car", "caption": "a _very_ serious black dog sits in a scraped silver car", "question": ["is there a _very_ serious black dog ?", "is there a scraped silver car ?"], "prompt": "a _very_ serious black dog sits in a scraped silver {}"}, {"index": 363, "image_id": 2341390, "entity": "car", "caption": "car looks spraypainted silver, has a minor mess' worth of scrapes & scratches", "question": ["is there car ?", "is there spraypainted silver ?", "is there a minor mess' worth ?", "are there scrapes ?", "are there scratches ?"], "prompt": "{} looks spraypainted silver, has a minor mess' worth of scrapes & scratches"}, {"index": 364, "image_id": 2341302, "entity": "car", "caption": "woman is looking at the car", "question": ["is there woman ?", "is there the car ?"], "prompt": "woman is looking at the {}"}, {"index": 365, "image_id": 2341044, "entity": "car", "caption": "front left window of a black car", "question": ["is there front left window ?", "is there a black car ?"], "prompt": "front left window of a black {}"}, {"index": 366, "image_id": 2340693, "entity": "car", "caption": "cats are under car", "question": ["are there cats ?", "is there car ?"], "prompt": "cats are under {}"}, {"index": 367, "image_id": 2339803, "entity": "car", "caption": "The window is down in the car.", "question": ["is there the window ?", "is there the car ?"], "prompt": "The window is down in the {}."}, {"index": 368, "image_id": 2338847, "entity": "car", "caption": "Roof of car is black.", "question": ["is there roof ?", "is there car ?"], "prompt": "Roof of {} is black."}, {"index": 369, "image_id": 2338847, "entity": "car", "caption": "the car has wooden panels ", "question": ["is there the car ?", "are there wooden panels ?"], "prompt": "the {} has wooden panels "}, {"index": 370, "image_id": 2338254, "entity": "car", "caption": "surfbords are on the car", "question": ["are there surfbords ?", "is there the car ?"], "prompt": "surfbords are on the {}"}, {"index": 371, "image_id": 2338234, "entity": "car", "caption": "the model of car is ford ", "question": ["is there the model ?", "is there car ?"], "prompt": "the model of {} is ford "}, {"index": 372, "image_id": 2337797, "entity": "car", "caption": "the car has a red light", "question": ["is there the car ?", "is there a red light ?"], "prompt": "the {} has a red light"}, {"index": 373, "image_id": 2337385, "entity": "car", "caption": "window is apart of the car", "question": ["is there window ?", "is there the car ?"], "prompt": "window is apart of the {}"}, {"index": 374, "image_id": 2337324, "entity": "car", "caption": "a doggy has his head out the car window", "question": ["is there a doggy ?", "is there his head ?", "is there the car window ?"], "prompt": "a doggy has his head out the {} window"}, {"index": 375, "image_id": 2336747, "entity": "car", "caption": "black door handle on sliver car door", "question": ["is there black door ?", "is there sliver car door ?"], "prompt": "black door handle on sliver {} door"}, {"index": 376, "image_id": 2336235, "entity": "car", "caption": "the car the cat is lying on ", "question": ["is there the car ?", "is there the cat ?"], "prompt": "the {} the cat is lying on "}, {"index": 377, "image_id": 2336067, "entity": "car", "caption": "Cat is inside a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is inside a {}"}, {"index": 378, "image_id": 2336067, "entity": "car", "caption": "Cat is in the car's backseats", "question": ["is there cat ?", "are there the car's backseats ?"], "prompt": "Cat is in the {}'s backseats"}, {"index": 379, "image_id": 2336016, "entity": "car", "caption": "the man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "the man is in a {}"}, {"index": 380, "image_id": 2336016, "entity": "car", "caption": "Black car parked at the curb.", "question": ["is there black car ?", "is there the curb ?"], "prompt": "Black {} parked at the curb."}, {"index": 381, "image_id": 2335764, "entity": "car", "caption": "This car has a clear windshield", "question": ["is there this car ?", "is there a clear windshield ?"], "prompt": "This {} has a clear windshield"}, {"index": 382, "image_id": 2335683, "entity": "car", "caption": "it is car in the street ", "question": ["is there car ?", "is there the street ?"], "prompt": "it is {} in the street "}, {"index": 383, "image_id": 2335683, "entity": "car", "caption": "a white car stopped in street", "question": ["is there a white car ?", "is there street ?"], "prompt": "a white {} stopped in street"}, {"index": 384, "image_id": 2335292, "entity": "car", "caption": "The car is in front of the motorcycle", "question": ["is there the car ?", "is there front ?", "is there the motorcycle ?"], "prompt": "The {} is in front of the motorcycle"}, {"index": 385, "image_id": 2335292, "entity": "car", "caption": "The white car has red tail lights", "question": ["is there the white car ?", "are there red tail lights ?"], "prompt": "The white {} has red tail lights"}, {"index": 386, "image_id": 2335189, "entity": "car", "caption": "A old man standing behind a car.", "question": ["is there a old man ?", "is there a car ?"], "prompt": "A old man standing behind a {}."}, {"index": 387, "image_id": 2334957, "entity": "car", "caption": "right front headlight on car", "question": ["is there right front headlight ?", "is there car ?"], "prompt": "right front headlight on {}"}, {"index": 388, "image_id": 2334957, "entity": "car", "caption": "blue rusted door on car", "question": ["is there blue rusted door ?", "is there car ?"], "prompt": "blue rusted door on {}"}, {"index": 389, "image_id": 2333614, "entity": "car", "caption": "a rear view mirror is on the car", "question": ["is there a rear view mirror ?", "is there the car ?"], "prompt": "a rear view mirror is on the {}"}, {"index": 390, "image_id": 2333614, "entity": "car", "caption": "the car is on the street", "question": ["is there the car ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 391, "image_id": 2333466, "entity": "car", "caption": "license plate is on car", "question": ["is there license plate ?", "is there car ?"], "prompt": "license plate is on {}"}, {"index": 392, "image_id": 2332912, "entity": "car", "caption": "a white teddy bear sitting on a car", "question": ["is there a car ?"], "prompt": "a white teddy bear sitting on a {}"}, {"index": 393, "image_id": 2332110, "entity": "car", "caption": "wheel belongs to car", "question": ["is there wheel ?", "is there car ?"], "prompt": "wheel belongs to {}"}, {"index": 394, "image_id": 2332110, "entity": "car", "caption": "bumper belongs to car", "question": ["is there bumper ?", "is there car ?"], "prompt": "bumper belongs to {}"}, {"index": 395, "image_id": 2332110, "entity": "car", "caption": "headlight belongs to car", "question": ["is there headlight ?", "is there car ?"], "prompt": "headlight belongs to {}"}, {"index": 396, "image_id": 2332110, "entity": "car", "caption": "window belongs to car", "question": ["is there window ?", "is there car ?"], "prompt": "window belongs to {}"}, {"index": 397, "image_id": 2332110, "entity": "car", "caption": "car travels down street", "question": ["is there car ?"], "prompt": "{} travels down street"}, {"index": 398, "image_id": 2331977, "entity": "car", "caption": "he is sitting in a car ", "question": ["is there a car ?"], "prompt": "he is sitting in a {} "}, {"index": 399, "image_id": 2331977, "entity": "car", "caption": "the person is inside the car ", "question": ["is there the person ?", "is there the car ?"], "prompt": "the person is inside the {} "}, {"index": 400, "image_id": 2330180, "entity": "car", "caption": "cat sits on sidewalk looking at car", "question": ["is there cat ?", "is there sidewalk ?", "is there car ?"], "prompt": "cat sits on sidewalk looking at {}"}, {"index": 401, "image_id": 2330066, "entity": "car", "caption": "a red car is beside the blue car", "question": ["is there a red car ?", "is there the blue car ?"], "prompt": "a red {} is beside the blue {}"}, {"index": 402, "image_id": 2330005, "entity": "car", "caption": "Car painted red white and blue with elephant cartoon on hood", "question": ["is there car ?", "is there elephant cartoon ?", "is there hood ?"], "prompt": "Car painted red white and blue with elephant {}toon on hood"}, {"index": 403, "image_id": 2330005, "entity": "car", "caption": "man is driving the car", "question": ["is there man ?", "is there the car ?"], "prompt": "man is driving the {}"}, {"index": 404, "image_id": 2329079, "entity": "car", "caption": "car has a wheel on it", "question": ["is there car ?", "is there a wheel ?"], "prompt": "{} has a wheel on it"}, {"index": 405, "image_id": 2329079, "entity": "car", "caption": "a door handle on the car", "question": ["is there a door ?", "is there the car ?"], "prompt": "a door handle on the {}"}, {"index": 406, "image_id": 2328443, "entity": "car", "caption": "A car that is driving in the street", "question": ["is there a car ?", "is there the street ?"], "prompt": "A {} that is driving in the street"}, {"index": 407, "image_id": 2328324, "entity": "car", "caption": "the cat is on a car", "question": ["is there the cat ?", "is there a car ?"], "prompt": "the cat is on a {}"}, {"index": 408, "image_id": 2328094, "entity": "car", "caption": "the bear is in the grill of the car ", "question": ["is there the bear ?", "is there the grill ?", "is there the car ?"], "prompt": "the bear is in the grill of the {} "}, {"index": 409, "image_id": 2328094, "entity": "car", "caption": "it appears as if the car is eating the bear ", "question": ["is there the car ?", "is there the bear ?"], "prompt": "it appears as if the {} is eating the bear "}, {"index": 410, "image_id": 2327968, "entity": "car", "caption": "the dog is in a car ", "question": ["is there the dog ?", "is there a car ?"], "prompt": "the dog is in a {} "}, {"index": 411, "image_id": 2327874, "entity": "car", "caption": "white surfboard leaned against car", "question": ["is there car ?"], "prompt": "white surfboard leaned against {}"}, {"index": 412, "image_id": 2327874, "entity": "car", "caption": "A surfboard is on the car. ", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is on the {}. "}, {"index": 413, "image_id": 2327874, "entity": "car", "caption": "Plants are next to the car. ", "question": ["are there plants ?", "is there the car ?"], "prompt": "Plants are next to the {}. "}, {"index": 414, "image_id": 2327874, "entity": "car", "caption": "A white surfboard is behind the car.", "question": ["is there a white surfboard ?", "is there the car ?"], "prompt": "A white surfboard is behind the {}."}, {"index": 415, "image_id": 2327688, "entity": "car", "caption": "door handle on the car", "question": ["is there door ?", "is there the car ?"], "prompt": "door handle on the {}"}, {"index": 416, "image_id": 2327454, "entity": "car", "caption": "Person driving a car", "question": ["is there person ?", "is there a car ?"], "prompt": "Person driving a {}"}, {"index": 417, "image_id": 2326951, "entity": "car", "caption": "poster is in the car", "question": ["is there poster ?", "is there the car ?"], "prompt": "poster is in the {}"}, {"index": 418, "image_id": 2326921, "entity": "car", "caption": "Volvo emblem on a car", "question": ["is there a car ?"], "prompt": "Volvo emblem on a {}"}, {"index": 419, "image_id": 2326884, "entity": "car", "caption": "this is a car windscreen", "question": ["is there a car windscreen ?"], "prompt": "this is a {} windscreen"}, {"index": 420, "image_id": 2326583, "entity": "car", "caption": "letter i on car", "question": ["is there letter ?", "is there car ?"], "prompt": "letter i on {}"}, {"index": 421, "image_id": 2325723, "entity": "car", "caption": "Cat is on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "Cat is on a {}"}, {"index": 422, "image_id": 2325460, "entity": "car", "caption": "Front end on a black car", "question": ["is there front end ?", "is there a black car ?"], "prompt": "Front end on a black {}"}, {"index": 423, "image_id": 2324926, "entity": "car", "caption": "the car has a face on it", "question": ["is there the car ?", "is there a face ?"], "prompt": "the {} has a face on it"}, {"index": 424, "image_id": 2323124, "entity": "car", "caption": "Cat is on the hood of car", "question": ["is there cat ?", "is there the hood ?", "is there car ?"], "prompt": "Cat is on the hood of {}"}, {"index": 425, "image_id": 2323124, "entity": "car", "caption": "Cat laying on the hood of the car", "question": ["is there cat ?", "is there the hood ?", "is there the car ?"], "prompt": "Cat laying on the hood of the {}"}, {"index": 426, "image_id": 2323124, "entity": "car", "caption": "Cat is laying on the hood of a car", "question": ["is there cat ?", "is there the hood ?", "is there a car ?"], "prompt": "Cat is laying on the hood of a {}"}, {"index": 427, "image_id": 2323088, "entity": "car", "caption": "The giraffes are walking around the cars", "question": ["are there the giraffes ?", "are there the cars ?"], "prompt": "The giraffes are walking around the {}s"}, {"index": 428, "image_id": 2322886, "entity": "car", "caption": "cars have rail on top of it ", "question": ["are there cars ?", "is there rail ?", "is there top ?"], "prompt": "{}s have rail on top of it "}, {"index": 429, "image_id": 2322886, "entity": "car", "caption": "cars have red light on back ", "question": ["are there cars ?", "is there red light ?"], "prompt": "{}s have red light on back "}, {"index": 430, "image_id": 2321836, "entity": "car", "caption": "Trunk of the car is open. ", "question": ["is there trunk ?", "is there the car ?"], "prompt": "Trunk of the {} is open. "}, {"index": 431, "image_id": 2321807, "entity": "car", "caption": "cat is meowing on car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is meowing on {}"}, {"index": 432, "image_id": 2321807, "entity": "car", "caption": "Antenna is attache to the car", "question": ["is there antenna ?", "is there attache ?", "is there the car ?"], "prompt": "Antenna is attache to the {}"}, {"index": 433, "image_id": 2321807, "entity": "car", "caption": "Trees are in front of the car", "question": ["are there trees ?", "is there front ?", "is there the car ?"], "prompt": "Trees are in front of the {}"}, {"index": 434, "image_id": 2321807, "entity": "car", "caption": "Cat is sitting on the trunk of the car", "question": ["is there cat ?", "is there the trunk ?", "is there the car ?"], "prompt": "Cat is sitting on the trunk of the {}"}, {"index": 435, "image_id": 2321807, "entity": "car", "caption": "The cat is on the car. ", "question": ["is there the cat ?", "is there the car ?"], "prompt": "The cat is on the {}. "}, {"index": 436, "image_id": 2320893, "entity": "car", "caption": "the car has a headlamp", "question": ["is there the car ?", "is there a headlamp ?"], "prompt": "the {} has a headlamp"}, {"index": 437, "image_id": 2320893, "entity": "car", "caption": "The left headlight on the car. ", "question": ["is there the left headlight ?", "is there the car ?"], "prompt": "The left headlight on the {}. "}, {"index": 438, "image_id": 2320741, "entity": "car", "caption": "car has black door", "question": ["is there car ?", "is there black door ?"], "prompt": "{} has black door"}, {"index": 439, "image_id": 2320741, "entity": "car", "caption": "car has black wheels", "question": ["is there car ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 440, "image_id": 2320741, "entity": "car", "caption": "The man is sitting in the car", "question": ["is there the man ?", "is there the car ?"], "prompt": "The man is sitting in the {}"}, {"index": 441, "image_id": 2320741, "entity": "car", "caption": "The car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "The {} has a windshield"}, {"index": 442, "image_id": 2320741, "entity": "car", "caption": "man driving the black car", "question": ["is there man ?", "is there the black car ?"], "prompt": "man driving the black {}"}, {"index": 443, "image_id": 2320710, "entity": "car", "caption": "the car has a black tire", "question": ["is there the car ?", "is there a black tire ?"], "prompt": "the {} has a black tire"}, {"index": 444, "image_id": 2320662, "entity": "car", "caption": "man walking behind a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man walking behind a {}"}, {"index": 445, "image_id": 2320327, "entity": "car", "caption": "a round headlight on the car", "question": ["is there a round headlight ?", "is there the car ?"], "prompt": "a round headlight on the {}"}, {"index": 446, "image_id": 2319795, "entity": "car", "caption": "cat stands on a car", "question": ["is there cat ?", "is there a car ?"], "prompt": "cat stands on a {}"}, {"index": 447, "image_id": 2319480, "entity": "car", "caption": "Bird hanging from a rope in a car.", "question": ["is there bird ?", "is there a rope ?", "is there a car ?"], "prompt": "Bird hanging from a rope in a {}."}, {"index": 448, "image_id": 2319480, "entity": "car", "caption": "man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "man driving a {}"}, {"index": 449, "image_id": 2319480, "entity": "car", "caption": "Man driving a car", "question": ["is there man ?", "is there a car ?"], "prompt": "Man driving a {}"}, {"index": 450, "image_id": 2319164, "entity": "car", "caption": "white car rear with red stop lights", "question": ["is there white car rear ?", "are there red stop lights ?"], "prompt": "white {} rear with red stop lights"}, {"index": 451, "image_id": 2318890, "entity": "car", "caption": "the dog is on the car", "question": ["is there the dog ?", "is there the car ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2318848, "entity": "car", "caption": "Black car parked next to the police vehicle", "question": ["is there black car ?", "is there the police vehicle ?"], "prompt": "Black {} parked next to the police vehicle"}, {"index": 453, "image_id": 2318441, "entity": "car", "caption": "the car has a windshield", "question": ["is there the car ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 454, "image_id": 2318441, "entity": "car", "caption": "A yellow car a dog is riding in", "question": ["is there a yellow car ?", "is there a dog ?"], "prompt": "A yellow {} a dog is riding in"}, {"index": 455, "image_id": 2318030, "entity": "car", "caption": "There is a red stripe that is on the car", "question": ["is there a red stripe ?", "is there the car ?"], "prompt": "There is a red stripe that is on the {}"}, {"index": 456, "image_id": 2318015, "entity": "car", "caption": "The man is in a car", "question": ["is there the man ?", "is there a car ?"], "prompt": "The man is in a {}"}, {"index": 457, "image_id": 2317640, "entity": "car", "caption": "silver headlight on car", "question": ["is there silver headlight ?", "is there car ?"], "prompt": "silver headlight on {}"}, {"index": 458, "image_id": 2317640, "entity": "car", "caption": "company emblem on front of car", "question": ["is there company ?", "is there front ?", "is there car ?"], "prompt": "company emblem on front of {}"}, {"index": 459, "image_id": 2317566, "entity": "car", "caption": "a hose is on the roof of the car", "question": ["is there a hose ?", "is there the roof ?", "is there the car ?"], "prompt": "a hose is on the roof of the {}"}, {"index": 460, "image_id": 2317283, "entity": "car", "caption": "The dog is in a car.", "question": ["is there the dog ?", "is there a car ?"], "prompt": "The dog is in a {}."}, {"index": 461, "image_id": 2317142, "entity": "car", "caption": "The car is on a rack.", "question": ["is there the car ?", "is there a rack ?"], "prompt": "The {} is on a rack."}, {"index": 462, "image_id": 2317029, "entity": "car", "caption": "console controls on a car", "question": ["is there console ?", "is there a car ?"], "prompt": "console controls on a {}"}, {"index": 463, "image_id": 2317029, "entity": "car", "caption": "front of car is blue", "question": ["is there front ?", "is there car ?"], "prompt": "front of {} is blue"}, {"index": 464, "image_id": 2317029, "entity": "car", "caption": "the teddy bear is in the car", "question": ["is there the teddy bear ?", "is there the car ?"], "prompt": "the teddy bear is in the {}"}, {"index": 465, "image_id": 2316404, "entity": "car", "caption": "This is a black car tire", "question": ["is there a black car tire ?"], "prompt": "This is a black {} tire"}, {"index": 466, "image_id": 2316376, "entity": "car", "caption": "yellow light is on the car", "question": ["is there yellow light ?", "is there the car ?"], "prompt": "yellow light is on the {}"}, {"index": 467, "image_id": 2316376, "entity": "car", "caption": "two men digging a car out of the mud", "question": ["are there two men ?", "is there a car ?", "is there the mud ?"], "prompt": "two men digging a {} out of the mud"}, {"index": 468, "image_id": 2316376, "entity": "car", "caption": "roof rack on a car", "question": ["is there roof rack ?", "is there a car ?"], "prompt": "roof rack on a {}"}, {"index": 469, "image_id": 2315981, "entity": "car", "caption": "Cay laying on a car ", "question": ["is there a car ?"], "prompt": "Cay laying on a {} "}, {"index": 470, "image_id": 2315981, "entity": "car", "caption": "Cat laying on car hood ", "question": ["is there cat ?", "is there car hood ?"], "prompt": "Cat laying on {} hood "}, {"index": 471, "image_id": 2315743, "entity": "car", "caption": "blue car behind moped", "question": ["is there blue car ?"], "prompt": "blue {} behind moped"}, {"index": 472, "image_id": 2315500, "entity": "car", "caption": "glass headlight on sports car", "question": ["is there glass headlight ?", "are there sports car ?"], "prompt": "glass headlight on sports {}"}, {"index": 473, "image_id": 2414288, "entity": "car", "caption": "a cat is laying on the hood of a car", "question": ["is there a cat ?", "is there the hood ?", "is there a car ?"], "prompt": "a cat is laying on the hood of a {}"}, {"index": 474, "image_id": 2414288, "entity": "car", "caption": "fuzzy cat is laying on the hood of a car", "question": ["is there fuzzy cat ?", "is there the hood ?", "is there a car ?"], "prompt": "fuzzy cat is laying on the hood of a {}"}, {"index": 475, "image_id": 2414288, "entity": "car", "caption": "cat is laying on a dark grey car", "question": ["is there cat ?", "is there a dark grey car ?"], "prompt": "cat is laying on a dark grey {}"}, {"index": 476, "image_id": 2414288, "entity": "car", "caption": "car has a small roof rack for luggage", "question": ["is there car ?", "is there a small roof rack ?", "is there luggage ?"], "prompt": "{} has a small roof rack for luggage"}, {"index": 477, "image_id": 2414273, "entity": "car", "caption": "cat is in the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "cat is in the {}"}, {"index": 478, "image_id": 2414273, "entity": "car", "caption": "one cat is in the car", "question": ["is there one cat ?", "is there the car ?"], "prompt": "one cat is in the {}"}, {"index": 479, "image_id": 2413841, "entity": "car", "caption": "Diamond shaped light with numbers on the black car.", "question": ["is there light ?", "are there numbers ?", "is there the black car ?"], "prompt": "Diamond shaped light with numbers on the black {}."}, {"index": 480, "image_id": 2413841, "entity": "car", "caption": "Door handle on black car.", "question": ["is there door ?", "is there black car ?"], "prompt": "Door handle on black {}."}, {"index": 481, "image_id": 2413755, "entity": "car", "caption": "Trees growing behind car.", "question": ["are there trees ?", "is there car ?"], "prompt": "Trees growing behind {}."}, {"index": 482, "image_id": 2413755, "entity": "car", "caption": "The car has a red underglow", "question": ["is there the car ?", "is there a red underglow ?"], "prompt": "The {} has a red underglow"}, {"index": 483, "image_id": 2413755, "entity": "car", "caption": "a car is in the photo", "question": ["is there a car ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 484, "image_id": 2413755, "entity": "car", "caption": "a surfboard is on the car", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "a surfboard is on the {}"}, {"index": 485, "image_id": 2413755, "entity": "car", "caption": "the car is on the road", "question": ["is there the car ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 486, "image_id": 2413755, "entity": "car", "caption": "Red highlight lights accentuate the car", "question": ["are there red highlight lights ?", "is there the car ?"], "prompt": "Red highlight lights accentuate the {}"}, {"index": 487, "image_id": 2412424, "entity": "car", "caption": "the car windows are transparent", "question": ["are there the car windows ?"], "prompt": "the {} windows are transparent"}, {"index": 488, "image_id": 2412234, "entity": "car", "caption": "cat is under car", "question": ["is there cat ?", "is there car ?"], "prompt": "cat is under {}"}, {"index": 489, "image_id": 2412234, "entity": "car", "caption": "Cat is under the car", "question": ["is there cat ?", "is there the car ?"], "prompt": "Cat is under the {}"}, {"index": 490, "image_id": 2411616, "entity": "car", "caption": "Surfboard tied to car", "question": ["is there surfboard ?", "is there car ?"], "prompt": "Surfboard tied to {}"}, {"index": 491, "image_id": 2411616, "entity": "car", "caption": "live christmas tree tied on car", "question": ["is there live christmas tree ?", "is there car ?"], "prompt": "live christmas tree tied on {}"}, {"index": 492, "image_id": 2411616, "entity": "car", "caption": "orange break light on black car ", "question": ["is there black car ?"], "prompt": "orange break light on black {} "}, {"index": 493, "image_id": 2411616, "entity": "car", "caption": "This car is hauling trees", "question": ["is there this car ?", "are there trees ?"], "prompt": "This {} is hauling trees"}, {"index": 494, "image_id": 2416074, "entity": "car", "caption": "The car has a red door.", "question": ["is there the car ?", "is there a red door ?"], "prompt": "The {} has a red door."}, {"index": 495, "image_id": 2416074, "entity": "car", "caption": "A surfboard is in the car.", "question": ["is there a surfboard ?", "is there the car ?"], "prompt": "A surfboard is in the {}."}, {"index": 496, "image_id": 2417544, "entity": "car", "caption": "A car has dark rims.", "question": ["is there a car ?", "are there dark rims ?"], "prompt": "A {} has dark rims."}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03796401.json b/data/imagenet/compositions/prompts/n03796401.json
new file mode 100644
index 0000000000000000000000000000000000000000..b6fe830b8c58bb2e880bf19ab5e0170da455ebed
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03796401.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 107967, "entity": "truck", "caption": "A window is open on the truck", "question": ["is there a window ?", "is there the truck ?"], "prompt": "A window is open on the {}"}, {"index": 1, "image_id": 150364, "entity": "truck", "caption": "front left wheel of tow truck", "question": ["is there front left wheel ?", "is there tow truck ?"], "prompt": "front left wheel of tow {}"}, {"index": 2, "image_id": 150393, "entity": "truck", "caption": "A truck that probably sells seafood", "question": ["is there a truck ?", "is there seafood ?"], "prompt": "A {} that probably sells seafood"}, {"index": 3, "image_id": 150486, "entity": "truck", "caption": "This is a basket on a bucket truck.", "question": ["is there a basket ?", "is there a bucket truck ?"], "prompt": "This is a basket on a bucket {}."}, {"index": 4, "image_id": 150497, "entity": "truck", "caption": "Firetruck parked in garage", "question": ["is there firetruck ?", "is there garage ?"], "prompt": "Fire{} parked in garage"}, {"index": 5, "image_id": 285972, "entity": "truck", "caption": "a gas station pump by truck", "question": ["is there a gas station pump ?", "is there truck ?"], "prompt": "a gas station pump by {}"}, {"index": 6, "image_id": 498093, "entity": "truck", "caption": "green face painted on a truck", "question": ["is there green face ?", "is there a truck ?"], "prompt": "green face painted on a {}"}, {"index": 7, "image_id": 498093, "entity": "truck", "caption": "Blue painted letters on the side of truck.", "question": ["are there blue painted letters ?", "is there the side ?", "is there truck ?"], "prompt": "Blue painted letters on the side of {}."}, {"index": 8, "image_id": 713062, "entity": "truck", "caption": "black door handle on the truck", "question": ["is there black door ?", "is there the truck ?"], "prompt": "black door handle on the {}"}, {"index": 9, "image_id": 713419, "entity": "truck", "caption": "Woman standing next to truck ", "question": ["is there woman ?", "is there truck ?"], "prompt": "Woman standing next to {} "}, {"index": 10, "image_id": 713503, "entity": "truck", "caption": "A blue rope tied to a truck", "question": ["is there a blue rope ?", "is there a truck ?"], "prompt": "A blue rope tied to a {}"}, {"index": 11, "image_id": 713614, "entity": "truck", "caption": "container on truck has pink flowers painted on it", "question": ["is there container ?", "is there truck ?", "are there pink flowers ?"], "prompt": "container on {} has pink flowers painted on it"}, {"index": 12, "image_id": 713614, "entity": "truck", "caption": "large white sack that is full is hung from back of truck ", "question": ["is there large white sack ?", "is there truck ?"], "prompt": "large white sack that is full is hung from back of {} "}, {"index": 13, "image_id": 713614, "entity": "truck", "caption": "Lotus Flower painted on back of garbage truck", "question": ["is there lotus flower ?", "is there garbage truck ?"], "prompt": "Lotus Flower painted on back of garbage {}"}, {"index": 14, "image_id": 1159845, "entity": "truck", "caption": "bright colored star painted on the back of the truck", "question": ["is there bright colored star ?", "is there the back ?", "is there the truck ?"], "prompt": "bright colored star painted on the back of the {}"}, {"index": 15, "image_id": 1159845, "entity": "truck", "caption": "two grey tarp covered bundles on the back of the truck", "question": ["is there two grey tarp ?", "are there bundles ?", "is there the back ?", "is there the truck ?"], "prompt": "two grey tarp covered bundles on the back of the {}"}, {"index": 16, "image_id": 1160061, "entity": "truck", "caption": "The person standing in the open door of the blue truck.", "question": ["is there the person ?", "is there the open door ?", "is there the blue truck ?"], "prompt": "The person standing in the open door of the blue {}."}, {"index": 17, "image_id": 1160061, "entity": "truck", "caption": "The white shirt the person is wearing at the door of the truck.", "question": ["is there the white shirt ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The white shirt the person is wearing at the door of the {}."}, {"index": 18, "image_id": 1160061, "entity": "truck", "caption": "The pants the person standing in the door of the truck is wearing.", "question": ["are there the pants ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The pants the person standing in the door of the {} is wearing."}, {"index": 19, "image_id": 1592126, "entity": "truck", "caption": "Potatoes are on the back of a truck", "question": ["are there potatoes ?", "is there the back ?", "is there a truck ?"], "prompt": "Potatoes are on the back of a {}"}, {"index": 20, "image_id": 1592126, "entity": "truck", "caption": "Bags of potatoes are on back of a truck", "question": ["are there bags ?", "are there potatoes ?", "is there a truck ?"], "prompt": "Bags of potatoes are on back of a {}"}, {"index": 21, "image_id": 1592160, "entity": "truck", "caption": "an orange pick up truck with an open hood", "question": ["is there an orange pick ?", "is there truck ?", "is there an open hood ?"], "prompt": "an orange pick up {} with an open hood"}, {"index": 22, "image_id": 1592291, "entity": "truck", "caption": "bird painted on the side of the truck", "question": ["is there bird ?", "is there the side ?", "is there the truck ?"], "prompt": "bird painted on the side of the {}"}, {"index": 23, "image_id": 1592584, "entity": "truck", "caption": "An orange cone is on the white truck", "question": ["is there an orange cone ?", "is there the white truck ?"], "prompt": "An orange cone is on the white {}"}, {"index": 24, "image_id": 1592584, "entity": "truck", "caption": "The truck has a license plate", "question": ["is there the truck ?", "is there a license plate ?"], "prompt": "The {} has a license plate"}, {"index": 25, "image_id": 1592584, "entity": "truck", "caption": "Red letters on the trucks grill", "question": ["are there red letters ?", "are there the trucks ?"], "prompt": "Red letters on the {}s grill"}, {"index": 26, "image_id": 1592584, "entity": "truck", "caption": "The truck has a windsheild ", "question": ["is there the truck ?", "is there a windsheild ?"], "prompt": "The {} has a windsheild "}, {"index": 27, "image_id": 1592951, "entity": "truck", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The {} on the boat is blue in color."}, {"index": 28, "image_id": 2413810, "entity": "truck", "caption": "The truck has a tall exhaust pipe", "question": ["is there the truck ?", "is there a tall exhaust pipe ?"], "prompt": "The {} has a tall exhaust pipe"}, {"index": 29, "image_id": 2413318, "entity": "truck", "caption": "Some packet kept on the deck of the truck", "question": ["is there some packet ?", "is there the deck ?", "is there the truck ?"], "prompt": "Some packet kept on the deck of the {}"}, {"index": 30, "image_id": 2413318, "entity": "truck", "caption": "people are riding the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are riding the {}"}, {"index": 31, "image_id": 2413114, "entity": "truck", "caption": "group of young men ride the front of truck", "question": ["is there group ?", "are there young men ?", "is there the front ?", "is there truck ?"], "prompt": "group of young men ride the front of {}"}, {"index": 32, "image_id": 2413114, "entity": "truck", "caption": "seated person watches truck drive by", "question": ["is there seated person ?"], "prompt": "seated person watches {} drive by"}, {"index": 33, "image_id": 2413114, "entity": "truck", "caption": "person of motorbike trails the truck", "question": ["is there person ?", "are there motorbike trails ?"], "prompt": "person of motorbike trails the {}"}, {"index": 34, "image_id": 2413114, "entity": "truck", "caption": "\"Three men rides on the front of a truck\"", "question": ["are there three men ?", "is there the front ?", "is there a truck ?"], "prompt": "\"Three men rides on the front of a {}\""}, {"index": 35, "image_id": 2413114, "entity": "truck", "caption": "Side view mirrors on dump truck.", "question": ["are there side view mirrors ?", "is there dump truck ?"], "prompt": "Side view mirrors on dump {}."}, {"index": 36, "image_id": 2413114, "entity": "truck", "caption": "Front left tire of dump truck.", "question": ["is there front left tire ?", "is there dump truck ?"], "prompt": "Front left tire of dump {}."}, {"index": 37, "image_id": 2410247, "entity": "truck", "caption": "Man driving the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man driving the {}."}, {"index": 38, "image_id": 2410156, "entity": "truck", "caption": "D I is on side of truck", "question": ["is there side ?", "is there truck ?"], "prompt": "D I is on side of {}"}, {"index": 39, "image_id": 2410114, "entity": "truck", "caption": "front head light on a fire truck", "question": ["is there front head light ?", "is there a fire truck ?"], "prompt": "front head light on a fire {}"}, {"index": 40, "image_id": 2409987, "entity": "truck", "caption": "the truck has windows", "question": ["is there the truck ?", "are there windows ?"], "prompt": "the {} has windows"}, {"index": 41, "image_id": 2409644, "entity": "truck", "caption": "Motorcycle parked next to semi truck.", "question": ["is there motorcycle ?", "is there semi truck ?"], "prompt": "Motorcycle parked next to semi {}."}, {"index": 42, "image_id": 2409644, "entity": "truck", "caption": "Woman standing next to semi truck.", "question": ["is there woman ?", "is there semi truck ?"], "prompt": "Woman standing next to semi {}."}, {"index": 43, "image_id": 2409644, "entity": "truck", "caption": "a woman is reaching into a truck compartment", "question": ["is there a woman ?", "is there a truck compartment ?"], "prompt": "a woman is reaching into a {} compartment"}, {"index": 44, "image_id": 2409644, "entity": "truck", "caption": "a kw grill cover on truck", "question": ["is there a kw grill cover ?", "is there truck ?"], "prompt": "a kw grill cover on {}"}, {"index": 45, "image_id": 2409644, "entity": "truck", "caption": "american flag painted truck", "question": ["is there truck ?"], "prompt": "american flag painted {}"}, {"index": 46, "image_id": 2409642, "entity": "truck", "caption": "the truck has a crane", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane"}, {"index": 47, "image_id": 2409642, "entity": "truck", "caption": "these are truck tires", "question": ["are there truck tires ?"], "prompt": "these are {} tires"}, {"index": 48, "image_id": 2409608, "entity": "truck", "caption": "Road in front of truck is gravel.", "question": ["is there road ?", "is there front ?", "is there truck ?", "is there gravel ?"], "prompt": "Road in front of {} is gravel."}, {"index": 49, "image_id": 2409326, "entity": "truck", "caption": "man bent over truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man bent over {}"}, {"index": 50, "image_id": 2409188, "entity": "truck", "caption": "The truck has a siren and lights on it.", "question": ["is there the truck ?", "is there a siren ?", "are there lights ?"], "prompt": "The {} has a siren and lights on it."}, {"index": 51, "image_id": 2409176, "entity": "truck", "caption": "Sedans are behind truck", "question": ["are there sedans ?", "is there truck ?"], "prompt": "Sedans are behind {}"}, {"index": 52, "image_id": 2408016, "entity": "truck", "caption": "The head lights on a truck", "question": ["is there the head ?", "is there a truck ?"], "prompt": "The head lights on a {}"}, {"index": 53, "image_id": 2408016, "entity": "truck", "caption": "Toyota sign in the front of the truck", "question": ["is there toyota sign ?", "is there the front ?", "is there the truck ?"], "prompt": "Toyota sign in the front of the {}"}, {"index": 54, "image_id": 2408016, "entity": "truck", "caption": "Gold writing on front of truck", "question": ["is there gold writing ?", "is there front ?", "is there truck ?"], "prompt": "Gold writing on front of {}"}, {"index": 55, "image_id": 2408012, "entity": "truck", "caption": "the truck has a headlight on the side", "question": ["is there the truck ?", "is there a headlight ?", "is there the side ?"], "prompt": "the {} has a headlight on the side"}, {"index": 56, "image_id": 2408003, "entity": "truck", "caption": "Two side view mirrors on the food truck.", "question": ["are there two side view mirrors ?", "is there the food truck ?"], "prompt": "Two side view mirrors on the food {}."}, {"index": 57, "image_id": 2407996, "entity": "truck", "caption": "two d's on a transfer truck", "question": ["is there two d ?", "is there a transfer truck ?"], "prompt": "two d's on a transfer {}"}, {"index": 58, "image_id": 2407996, "entity": "truck", "caption": "Name of the company written on the side of the truck", "question": ["is there name ?", "is there the company ?", "is there the side ?", "is there the truck ?"], "prompt": "Name of the company written on the side of the {}"}, {"index": 59, "image_id": 2407996, "entity": "truck", "caption": "Parking lights lit up on the truck", "question": ["are there parking lights ?", "is there the truck ?"], "prompt": "Parking lights lit up on the {}"}, {"index": 60, "image_id": 2407996, "entity": "truck", "caption": "Person standing next to the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "Person standing next to the {}"}, {"index": 61, "image_id": 2407996, "entity": "truck", "caption": "the truck has headlights", "question": ["is there the truck ?", "are there headlights ?"], "prompt": "the {} has headlights"}, {"index": 62, "image_id": 2407996, "entity": "truck", "caption": "the truck says \"Eddie Stobart\"", "question": ["is there the truck ?"], "prompt": "the {} says \"Eddie Stobart\""}, {"index": 63, "image_id": 2407879, "entity": "truck", "caption": "the word scania is on the front of the truck", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there the truck ?"], "prompt": "the word scania is on the front of the {}"}, {"index": 64, "image_id": 2407879, "entity": "truck", "caption": "emblem on truck says scania", "question": ["is there emblem ?", "is there truck ?"], "prompt": "emblem on {} says scania"}, {"index": 65, "image_id": 2407871, "entity": "truck", "caption": "The truck is on grass", "question": ["is there the truck ?", "is there grass ?"], "prompt": "The {} is on grass"}, {"index": 66, "image_id": 2407871, "entity": "truck", "caption": "a metal dog ornament on the truck", "question": ["is there a metal dog ornament ?", "is there the truck ?"], "prompt": "a metal dog ornament on the {}"}, {"index": 67, "image_id": 2407871, "entity": "truck", "caption": "old truck is beside a road", "question": ["is there old truck ?", "is there a road ?"], "prompt": "old {} is beside a road"}, {"index": 68, "image_id": 2407871, "entity": "truck", "caption": "truck is sitting in grass", "question": ["is there truck ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 69, "image_id": 2407871, "entity": "truck", "caption": "grass growing around truck", "question": ["is there grass ?", "is there truck ?"], "prompt": "grass growing around {}"}, {"index": 70, "image_id": 2407871, "entity": "truck", "caption": "truck has a red cab", "question": ["is there truck ?", "is there a red cab ?"], "prompt": "{} has a red cab"}, {"index": 71, "image_id": 2407871, "entity": "truck", "caption": "truck says mack on side", "question": ["is there truck ?", "is there side ?"], "prompt": "{} says mack on side"}, {"index": 72, "image_id": 2407871, "entity": "truck", "caption": "truck has headlights", "question": ["is there truck ?", "are there headlights ?"], "prompt": "{} has headlights"}, {"index": 73, "image_id": 2407784, "entity": "truck", "caption": "passer bys walking behind truck", "question": ["is there truck ?"], "prompt": "passer bys walking behind {}"}, {"index": 74, "image_id": 2407760, "entity": "truck", "caption": "the truck is red in color", "question": ["is there the truck ?", "is there color ?"], "prompt": "the {} is red in color"}, {"index": 75, "image_id": 2407760, "entity": "truck", "caption": "the truck is metallic", "question": ["is there the truck ?"], "prompt": "the {} is metallic"}, {"index": 76, "image_id": 2407551, "entity": "truck", "caption": "Makers logo on the truck nearest the camera", "question": ["are there makers ?", "is there the truck ?", "is there the camera ?"], "prompt": "Makers logo on the {} nearest the camera"}, {"index": 77, "image_id": 2407551, "entity": "truck", "caption": "chrome lettering front of truck", "question": ["is there chrome lettering front ?", "is there truck ?"], "prompt": "chrome lettering front of {}"}, {"index": 78, "image_id": 2407551, "entity": "truck", "caption": "truck has multiple wheels", "question": ["is there truck ?", "are there multiple wheels ?"], "prompt": "{} has multiple wheels"}, {"index": 79, "image_id": 2407551, "entity": "truck", "caption": "front bumper on truck is clean", "question": ["is there front bumper ?", "is there truck ?"], "prompt": "front bumper on {} is clean"}, {"index": 80, "image_id": 2407241, "entity": "truck", "caption": "Red stripe painted on the truck", "question": ["is there red stripe ?", "is there the truck ?"], "prompt": "Red stripe painted on the {}"}, {"index": 81, "image_id": 2407128, "entity": "truck", "caption": "trucks parked side to side", "question": ["are there trucks ?"], "prompt": "{}s parked side to side"}, {"index": 82, "image_id": 2407128, "entity": "truck", "caption": "fabric pulled over the tops of trucks", "question": ["is there fabric ?", "are there the tops ?", "are there trucks ?"], "prompt": "fabric pulled over the tops of {}s"}, {"index": 83, "image_id": 2407128, "entity": "truck", "caption": "sign on rope hanging off front of truck", "question": ["is there rope ?", "is there front ?", "is there truck ?"], "prompt": "sign on rope hanging off front of {}"}, {"index": 84, "image_id": 2407128, "entity": "truck", "caption": "Two trucks are on the grass.", "question": ["are there two trucks ?", "is there the grass ?"], "prompt": "Two {}s are on the grass."}, {"index": 85, "image_id": 2407128, "entity": "truck", "caption": "The number 9 is on the truck.", "question": ["is there the number ?", "is there the truck ?"], "prompt": "The number 9 is on the {}."}, {"index": 86, "image_id": 2407128, "entity": "truck", "caption": "The truck has a spare tire under the bed.", "question": ["is there the truck ?", "is there a spare tire ?", "is there the bed ?"], "prompt": "The {} has a spare tire under the bed."}, {"index": 87, "image_id": 2407128, "entity": "truck", "caption": "The truck has a fabric cover on the back.", "question": ["is there the truck ?", "is there a fabric cover ?", "is there the back ?"], "prompt": "The {} has a fabric cover on the back."}, {"index": 88, "image_id": 2407128, "entity": "truck", "caption": "A yellow and white sign is on a truck.", "question": ["is there a yellow and white sign ?", "is there a truck ?"], "prompt": "A yellow and white sign is on a {}."}, {"index": 89, "image_id": 2405965, "entity": "truck", "caption": "the side of the truck has lettering on it", "question": ["is there the side ?", "is there the truck ?"], "prompt": "the side of the {} has lettering on it"}, {"index": 90, "image_id": 2405965, "entity": "truck", "caption": "the truck is casting a shadow", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow"}, {"index": 91, "image_id": 2405965, "entity": "truck", "caption": "palm trees are behind the truck", "question": ["are there palm trees ?", "is there the truck ?"], "prompt": "palm trees are behind the {}"}, {"index": 92, "image_id": 2404753, "entity": "truck", "caption": "Window of truck is open", "question": ["is there window ?", "is there truck ?"], "prompt": "Window of {} is open"}, {"index": 93, "image_id": 2404626, "entity": "truck", "caption": "the flatbed truck is black", "question": ["is there the flatbed truck ?"], "prompt": "the flatbed {} is black"}, {"index": 94, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of a house", "question": ["is there the truck ?", "is there front ?", "is there a house ?"], "prompt": "the {} is in front of a house"}, {"index": 95, "image_id": 2404602, "entity": "truck", "caption": "the truck has a black bumper", "question": ["is there the truck ?", "is there a black bumper ?"], "prompt": "the {} has a black bumper"}, {"index": 96, "image_id": 2404602, "entity": "truck", "caption": "the truck has a logo on the back of it", "question": ["is there the truck ?", "is there a logo ?", "is there the back ?"], "prompt": "the {} has a logo on the back of it"}, {"index": 97, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of the house", "question": ["is there the truck ?", "is there front ?", "is there the house ?"], "prompt": "the {} is in front of the house"}, {"index": 98, "image_id": 2404338, "entity": "truck", "caption": "Person is on top of a truck", "question": ["is there person ?", "is there top ?", "is there a truck ?"], "prompt": "Person is on top of a {}"}, {"index": 99, "image_id": 2404315, "entity": "truck", "caption": "the bed of the truck has steel rails", "question": ["is there the bed ?", "is there the truck ?", "are there steel rails ?"], "prompt": "the bed of the {} has steel rails"}, {"index": 100, "image_id": 2404315, "entity": "truck", "caption": "the truck has mud flaps", "question": ["is there the truck ?", "are there mud flaps ?"], "prompt": "the {} has mud flaps"}, {"index": 101, "image_id": 2404315, "entity": "truck", "caption": "The back of the truck is holding an object", "question": ["is there the back ?", "is there the truck ?", "is there an object ?"], "prompt": "The back of the {} is holding an object"}, {"index": 102, "image_id": 2404315, "entity": "truck", "caption": "green grass growing around the truck", "question": ["is there green grass ?", "is there the truck ?"], "prompt": "green grass growing around the {}"}, {"index": 103, "image_id": 2403558, "entity": "truck", "caption": "road that truck is on", "question": ["is there road ?", "is there that truck ?"], "prompt": "road that {} is on"}, {"index": 104, "image_id": 2403322, "entity": "truck", "caption": "the wheels are on truck", "question": ["are there the wheels ?", "is there truck ?"], "prompt": "the wheels are on {}"}, {"index": 105, "image_id": 2403322, "entity": "truck", "caption": "mirror is on truck", "question": ["is there mirror ?", "is there truck ?"], "prompt": "mirror is on {}"}, {"index": 106, "image_id": 2402597, "entity": "truck", "caption": "Woman sits on border of truck", "question": ["is there woman ?", "is there border ?", "is there truck ?"], "prompt": "Woman sits on border of {}"}, {"index": 107, "image_id": 2402597, "entity": "truck", "caption": "Man sits in back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "Man sits in back of {}"}, {"index": 108, "image_id": 2402433, "entity": "truck", "caption": "A German shepherd is sitting in the back of a truck.", "question": ["is there a german shepherd ?", "is there the back ?", "is there a truck ?"], "prompt": "A German shepherd is sitting in the back of a {}."}, {"index": 109, "image_id": 2402276, "entity": "truck", "caption": "Kiddie fire truck merry go round", "question": ["is there kiddie fire truck merry ?"], "prompt": "Kiddie fire {} merry go round"}, {"index": 110, "image_id": 2402096, "entity": "truck", "caption": "Leaves painted onto a truck", "question": ["are there leaves ?", "is there a truck ?"], "prompt": "Leaves painted onto a {}"}, {"index": 111, "image_id": 2401997, "entity": "truck", "caption": "metal truck bed lid", "question": ["is there metal truck bed lid ?"], "prompt": "metal {} bed lid"}, {"index": 112, "image_id": 2401580, "entity": "truck", "caption": "flag mounted on the front of a truck", "question": ["is there flag ?", "is there the front ?", "is there a truck ?"], "prompt": "flag mounted on the front of a {}"}, {"index": 113, "image_id": 2401327, "entity": "truck", "caption": "the truck has a chalkboard", "question": ["is there the truck ?", "is there a chalkboard ?"], "prompt": "the {} has a chalkboard"}, {"index": 114, "image_id": 2401327, "entity": "truck", "caption": "the man is inside of the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "the man is inside of the {}"}, {"index": 115, "image_id": 2401327, "entity": "truck", "caption": "the truck's tire is black and red", "question": ["is there the truck's tire ?"], "prompt": "the {}'s tire is black and red"}, {"index": 116, "image_id": 2401207, "entity": "truck", "caption": "the truck is blue", "question": ["is there the truck ?"], "prompt": "the {} is blue"}, {"index": 117, "image_id": 2401207, "entity": "truck", "caption": "White head lights on truck.", "question": ["are there white head lights ?", "is there truck ?"], "prompt": "White head lights on {}."}, {"index": 118, "image_id": 2401199, "entity": "truck", "caption": "a round headlight on a truck", "question": ["is there a round headlight ?", "is there a truck ?"], "prompt": "a round headlight on a {}"}, {"index": 119, "image_id": 2401199, "entity": "truck", "caption": "Old red truck with a license plate that says HENRE.", "question": ["is there old red truck ?", "is there a license plate ?", "is there henre ?"], "prompt": "Old red {} with a license plate that says HENRE."}, {"index": 120, "image_id": 2400775, "entity": "truck", "caption": "camo armored pick up truck", "question": ["is there truck ?"], "prompt": "camo armored pick up {}"}, {"index": 121, "image_id": 2400775, "entity": "truck", "caption": "white skull painted on truck", "question": ["is there white skull ?", "is there truck ?"], "prompt": "white skull painted on {}"}, {"index": 122, "image_id": 2400768, "entity": "truck", "caption": "the truck has huge tires", "question": ["is there the truck ?", "are there huge tires ?"], "prompt": "the {} has huge tires"}, {"index": 123, "image_id": 2400768, "entity": "truck", "caption": "people are watching the truck go by", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are watching the {} go by"}, {"index": 124, "image_id": 2400768, "entity": "truck", "caption": "the truck has yellow lights", "question": ["is there the truck ?", "are there yellow lights ?"], "prompt": "the {} has yellow lights"}, {"index": 125, "image_id": 2400768, "entity": "truck", "caption": "Military truck driving down street.", "question": ["is there military truck ?", "is there street ?"], "prompt": "Military {} driving down street."}, {"index": 126, "image_id": 2400633, "entity": "truck", "caption": "the engine compartment on a truck.", "question": ["is there the engine compartment ?", "is there a truck ?"], "prompt": "the engine compartment on a {}."}, {"index": 127, "image_id": 2400633, "entity": "truck", "caption": "silver spot on the truck where paint has faded ", "question": ["is there silver spot ?", "is there the truck ?", "is there paint ?"], "prompt": "silver spot on the {} where paint has faded "}, {"index": 128, "image_id": 2400606, "entity": "truck", "caption": "a silver right headlight on an old truck", "question": ["is there a silver right headlight ?", "is there an old truck ?"], "prompt": "a silver right headlight on an old {}"}, {"index": 129, "image_id": 2400606, "entity": "truck", "caption": "the truck has 2 lights on front of it", "question": ["is there the truck ?", "are there 2 lights ?", "is there front ?"], "prompt": "the {} has 2 lights on front of it"}, {"index": 130, "image_id": 2400606, "entity": "truck", "caption": "straw is under the truck", "question": ["is there straw ?", "is there the truck ?"], "prompt": "straw is under the {}"}, {"index": 131, "image_id": 2400606, "entity": "truck", "caption": "the truck's bumper is falling off", "question": ["is there the truck's bumper ?"], "prompt": "the {}'s bumper is falling off"}, {"index": 132, "image_id": 2400599, "entity": "truck", "caption": "Side of truck is blue", "question": ["is there side ?", "is there truck ?"], "prompt": "Side of {} is blue"}, {"index": 133, "image_id": 2400599, "entity": "truck", "caption": "blue car parked behind a truck", "question": ["is there blue car ?", "is there a truck ?"], "prompt": "blue car parked behind a {}"}, {"index": 134, "image_id": 2400509, "entity": "truck", "caption": "front left tire on the truck", "question": ["is there front left tire ?", "is there the truck ?"], "prompt": "front left tire on the {}"}, {"index": 135, "image_id": 2400509, "entity": "truck", "caption": "front left mirror on the truck", "question": ["is there front left mirror ?", "is there the truck ?"], "prompt": "front left mirror on the {}"}, {"index": 136, "image_id": 2400509, "entity": "truck", "caption": "the man has a white truck", "question": ["is there the man ?", "is there a white truck ?"], "prompt": "the man has a white {}"}, {"index": 137, "image_id": 2400346, "entity": "truck", "caption": "man driving a pick-up truck", "question": ["is there man ?", "is there a pick-up truck ?"], "prompt": "man driving a pick-up {}"}, {"index": 138, "image_id": 2400346, "entity": "truck", "caption": "man is driving a bluish gray truck", "question": ["is there man ?", "is there a bluish gray truck ?"], "prompt": "man is driving a bluish gray {}"}, {"index": 139, "image_id": 2400304, "entity": "truck", "caption": "Man on street looking at truck", "question": ["is there man ?", "is there street ?", "is there truck ?"], "prompt": "Man on street looking at {}"}, {"index": 140, "image_id": 2400304, "entity": "truck", "caption": "Blue shirt on man looking at truck", "question": ["is there blue shirt ?", "is there man ?", "is there truck ?"], "prompt": "Blue shirt on man looking at {}"}, {"index": 141, "image_id": 2400304, "entity": "truck", "caption": "Black hat on man looking at truck", "question": ["is there black hat ?", "is there man ?", "is there truck ?"], "prompt": "Black hat on man looking at {}"}, {"index": 142, "image_id": 2400304, "entity": "truck", "caption": "Watch on man looking at truck", "question": ["is there man ?", "is there truck ?"], "prompt": "Watch on man looking at {}"}, {"index": 143, "image_id": 2400304, "entity": "truck", "caption": "The man standing next to the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "The man standing next to the {}"}, {"index": 144, "image_id": 2400304, "entity": "truck", "caption": "The women reflected on the truck", "question": ["are there the women ?", "is there the truck ?"], "prompt": "The women reflected on the {}"}, {"index": 145, "image_id": 2400304, "entity": "truck", "caption": "Tall man is looking at truck", "question": ["is there tall man ?", "is there truck ?"], "prompt": "Tall man is looking at {}"}, {"index": 146, "image_id": 2399870, "entity": "truck", "caption": "a sign is on the side of the truck", "question": ["is there a sign ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign is on the side of the {}"}, {"index": 147, "image_id": 2399870, "entity": "truck", "caption": "a number is on the side of the truck", "question": ["is there a number ?", "is there the side ?", "is there the truck ?"], "prompt": "a number is on the side of the {}"}, {"index": 148, "image_id": 2399870, "entity": "truck", "caption": "an exhaust system is on the side of the truck", "question": ["is there an exhaust system ?", "is there the side ?", "is there the truck ?"], "prompt": "an exhaust system is on the side of the {}"}, {"index": 149, "image_id": 2399764, "entity": "truck", "caption": "A truck is in the background.", "question": ["is there a truck ?", "is there the background ?"], "prompt": "A {} is in the background."}, {"index": 150, "image_id": 2398894, "entity": "truck", "caption": "black truck with hard bed cover", "question": ["is there black truck ?", "is there hard bed ?"], "prompt": "black {} with hard bed cover"}, {"index": 151, "image_id": 2398630, "entity": "truck", "caption": "a bus that has collided with truck", "question": ["is there a bus ?", "is there truck ?"], "prompt": "a bus that has collided with {}"}, {"index": 152, "image_id": 2398143, "entity": "truck", "caption": "transfer trucks windshield", "question": ["are there trucks ?"], "prompt": "transfer {}s windshield"}, {"index": 153, "image_id": 2398143, "entity": "truck", "caption": "the front left tire of a truck", "question": ["is there tire ?", "is there a truck ?"], "prompt": "the front left tire of a {}"}, {"index": 154, "image_id": 2398143, "entity": "truck", "caption": "front of truck is red", "question": ["is there front ?", "is there truck ?"], "prompt": "front of {} is red"}, {"index": 155, "image_id": 2398143, "entity": "truck", "caption": "lights on truck are orange", "question": ["are there lights ?", "is there truck ?"], "prompt": "lights on {} are orange"}, {"index": 156, "image_id": 2398143, "entity": "truck", "caption": "truck has gray stripes", "question": ["is there truck ?", "are there gray stripes ?"], "prompt": "{} has gray stripes"}, {"index": 157, "image_id": 2398143, "entity": "truck", "caption": "two silver stripes painted on the front of the truck", "question": ["are there two silver stripes ?", "is there the front ?", "is there the truck ?"], "prompt": "two silver stripes painted on the front of the {}"}, {"index": 158, "image_id": 2398030, "entity": "truck", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice cars and {}s lined up"}, {"index": 159, "image_id": 2397835, "entity": "truck", "caption": "the sculpture is in the bed of a truck", "question": ["is there the sculpture ?", "is there the bed ?", "is there a truck ?"], "prompt": "the sculpture is in the bed of a {}"}, {"index": 160, "image_id": 2397835, "entity": "truck", "caption": "WILD IN ART is on the back of the truck", "question": ["is there art ?", "is there the back ?", "is there the truck ?"], "prompt": "WILD IN ART is on the back of the {}"}, {"index": 161, "image_id": 2397058, "entity": "truck", "caption": "cardboard boxes piled high on truck", "question": ["are there cardboard boxes ?", "is there truck ?"], "prompt": "cardboard boxes piled high on {}"}, {"index": 162, "image_id": 2397058, "entity": "truck", "caption": "man in plaid shirt leaning over truck", "question": ["is there man ?", "is there plaid shirt ?", "is there truck ?"], "prompt": "man in plaid shirt leaning over {}"}, {"index": 163, "image_id": 2397049, "entity": "truck", "caption": "Teddy bear on front of truck", "question": ["is there front ?", "is there truck ?"], "prompt": "Teddy bear on front of {}"}, {"index": 164, "image_id": 2397049, "entity": "truck", "caption": "Head lights front of truck", "question": ["are there head lights ?", "is there truck ?"], "prompt": "Head lights front of {}"}, {"index": 165, "image_id": 2396831, "entity": "truck", "caption": "the trucks headlights are off", "question": ["are there the trucks headlights ?"], "prompt": "the {}s headlights are off"}, {"index": 166, "image_id": 2396726, "entity": "truck", "caption": "truck tires have two different types of white hubcaps", "question": ["are there truck tires ?", "are there two different types ?", "are there white hubcaps ?"], "prompt": "{} tires have two different types of white hubcaps"}, {"index": 167, "image_id": 2396726, "entity": "truck", "caption": "sedan behind truck has obama '08 poster on front above license plate", "question": ["is there truck ?", "is there obama '08 poster ?", "is there front ?", "is there license plate ?"], "prompt": "sedan behind {} has obama '08 poster on front above license plate"}, {"index": 168, "image_id": 2396726, "entity": "truck", "caption": "drivers side truck headlight", "question": ["are there drivers ?"], "prompt": "drivers side {} headlight"}, {"index": 169, "image_id": 2396433, "entity": "truck", "caption": "A man spray paints the truck.", "question": ["is there a man ?", "is there the truck ?"], "prompt": "A man spray paints the {}."}, {"index": 170, "image_id": 2396312, "entity": "truck", "caption": "the truck rim is red", "question": ["is there the truck rim ?"], "prompt": "the {} rim is red"}, {"index": 171, "image_id": 2396312, "entity": "truck", "caption": "it is the door on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "it is the door on the {}"}, {"index": 172, "image_id": 2396121, "entity": "truck", "caption": "Gigi writing on truck.", "question": ["is there truck ?"], "prompt": "Gigi writing on {}."}, {"index": 173, "image_id": 2396121, "entity": "truck", "caption": "Menu hanging from truck.", "question": ["is there menu ?", "is there truck ?"], "prompt": "Menu hanging from {}."}, {"index": 174, "image_id": 2395929, "entity": "truck", "caption": "the horse is on a truck", "question": ["is there the horse ?", "is there a truck ?"], "prompt": "the horse is on a {}"}, {"index": 175, "image_id": 2395902, "entity": "truck", "caption": "Big blue parked truck.", "question": ["is there big blue parked truck ?"], "prompt": "Big blue parked {}."}, {"index": 176, "image_id": 2395902, "entity": "truck", "caption": "Long white truck parked.", "question": ["is there long white truck ?"], "prompt": "Long white {} parked."}, {"index": 177, "image_id": 2395835, "entity": "truck", "caption": "passenger handle inside truck", "question": ["is there passenger handle ?", "is there truck ?"], "prompt": "passenger handle inside {}"}, {"index": 178, "image_id": 2395835, "entity": "truck", "caption": "a man in the truck is wearing red", "question": ["is there a man ?", "is there the truck ?", "is there red ?"], "prompt": "a man in the {} is wearing red"}, {"index": 179, "image_id": 2395835, "entity": "truck", "caption": "two people are in the truck", "question": ["are there two people ?", "is there the truck ?"], "prompt": "two people are in the {}"}, {"index": 180, "image_id": 2395411, "entity": "truck", "caption": "emergency lights are on top of the truck", "question": ["are there emergency lights ?", "is there top ?", "is there the truck ?"], "prompt": "emergency lights are on top of the {}"}, {"index": 181, "image_id": 2395408, "entity": "truck", "caption": "headlights of food truck are off", "question": ["are there headlights ?", "is there food truck ?"], "prompt": "headlights of food {} are off"}, {"index": 182, "image_id": 2395292, "entity": "truck", "caption": "wheels of the truck are red and chrome", "question": ["are there wheels ?", "is there the truck ?"], "prompt": "wheels of the {} are red and chrome"}, {"index": 183, "image_id": 2395292, "entity": "truck", "caption": "bed of truck is wooden", "question": ["is there bed ?", "is there truck ?"], "prompt": "bed of {} is wooden"}, {"index": 184, "image_id": 2395292, "entity": "truck", "caption": "truck has a side mirror", "question": ["is there truck ?", "is there a side mirror ?"], "prompt": "{} has a side mirror"}, {"index": 185, "image_id": 2395292, "entity": "truck", "caption": "truck door has no handle", "question": ["is there truck door ?", "is there no handle ?"], "prompt": "{} door has no handle"}, {"index": 186, "image_id": 2395042, "entity": "truck", "caption": "The truck door is open. ", "question": ["is there the truck door ?"], "prompt": "The {} door is open. "}, {"index": 187, "image_id": 2395042, "entity": "truck", "caption": "The driver is getting into the truck. ", "question": ["is there the driver ?", "is there the truck ?"], "prompt": "The driver is getting into the {}. "}, {"index": 188, "image_id": 2395042, "entity": "truck", "caption": "The truck is carrying cattle. ", "question": ["is there the truck ?", "are there cattle ?"], "prompt": "The {} is carrying cattle. "}, {"index": 189, "image_id": 2395042, "entity": "truck", "caption": "The truck's shadow is on the street.", "question": ["is there the truck's shadow ?", "is there the street ?"], "prompt": "The {}'s shadow is on the street."}, {"index": 190, "image_id": 2395042, "entity": "truck", "caption": "door of truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "door of {} is open"}, {"index": 191, "image_id": 2394987, "entity": "truck", "caption": "a sign on the side of a truck that says Drink Coca-Cola", "question": ["is there a sign ?", "is there the side ?", "is there a truck ?"], "prompt": "a sign on the side of a {} that says Drink Coca-Cola"}, {"index": 192, "image_id": 2394972, "entity": "truck", "caption": "the truck has a light", "question": ["is there the truck ?", "is there a light ?"], "prompt": "the {} has a light"}, {"index": 193, "image_id": 2394972, "entity": "truck", "caption": "the truck has a windshield", "question": ["is there the truck ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 194, "image_id": 2394854, "entity": "truck", "caption": "the truck has a green logo", "question": ["is there the truck ?", "is there a green logo ?"], "prompt": "the {} has a green logo"}, {"index": 195, "image_id": 2394854, "entity": "truck", "caption": "emergency lights are on the truck", "question": ["are there emergency lights ?", "is there the truck ?"], "prompt": "emergency lights are on the {}"}, {"index": 196, "image_id": 2394854, "entity": "truck", "caption": "a side mirror is on the truck", "question": ["is there a side mirror ?", "is there the truck ?"], "prompt": "a side mirror is on the {}"}, {"index": 197, "image_id": 2394740, "entity": "truck", "caption": "Honda emblem on the back of a gry truck", "question": ["is there the back ?", "is there a gry truck ?"], "prompt": "Honda emblem on the back of a gry {}"}, {"index": 198, "image_id": 2394740, "entity": "truck", "caption": "the truck is a honda", "question": ["is there the truck ?"], "prompt": "the {} is a honda"}, {"index": 199, "image_id": 2394740, "entity": "truck", "caption": "the truck has 4wd", "question": ["is there the truck ?", "is there 4wd ?"], "prompt": "the {} has 4wd"}, {"index": 200, "image_id": 2394327, "entity": "truck", "caption": "metal ladder sitting beside truck", "question": ["is there metal ladder ?", "is there truck ?"], "prompt": "metal ladder sitting beside {}"}, {"index": 201, "image_id": 2394327, "entity": "truck", "caption": "bottom on red crane attached to back of truck", "question": ["is there bottom ?", "is there red crane ?", "is there truck ?"], "prompt": "bottom on red crane attached to back of {}"}, {"index": 202, "image_id": 2393999, "entity": "truck", "caption": "The front of the truck is yellow.", "question": ["is there the front ?", "is there the truck ?"], "prompt": "The front of the {} is yellow."}, {"index": 203, "image_id": 2393989, "entity": "truck", "caption": "End of truck where garbage enters.", "question": ["is there end ?", "is there truck ?", "is there garbage ?"], "prompt": "End of {} where garbage enters."}, {"index": 204, "image_id": 2393842, "entity": "truck", "caption": "The people are looking at the truck.", "question": ["are there the people ?", "is there the truck ?"], "prompt": "The people are looking at the {}."}, {"index": 205, "image_id": 2393686, "entity": "truck", "caption": "The fire trucks windshield.", "question": ["are there the fire trucks ?"], "prompt": "The fire {}s windshield."}, {"index": 206, "image_id": 2393686, "entity": "truck", "caption": "A license plate is on the truck", "question": ["is there a license plate ?", "is there the truck ?"], "prompt": "A license plate is on the {}"}, {"index": 207, "image_id": 2393686, "entity": "truck", "caption": "License plate on front of firetruck that reads S360 ATO", "question": ["is there license plate ?", "is there front ?", "is there firetruck ?"], "prompt": "License plate on front of fire{} that reads S360 ATO"}, {"index": 208, "image_id": 2393548, "entity": "truck", "caption": "The bucket is dumping dirt into the truck", "question": ["is there the bucket ?", "is there dirt ?", "is there the truck ?"], "prompt": "The bucket is dumping dirt into the {}"}, {"index": 209, "image_id": 2393548, "entity": "truck", "caption": "These are the trucks front wheels", "question": ["are there the trucks ?", "are there front wheels ?"], "prompt": "These are the {}s front wheels"}, {"index": 210, "image_id": 2393548, "entity": "truck", "caption": "This is the cab of the truck", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "This is the cab of the {}"}, {"index": 211, "image_id": 2393263, "entity": "truck", "caption": "Ribbons tied around the mirror of a utility truck", "question": ["are there ribbons ?", "is there the mirror ?", "is there a utility truck ?"], "prompt": "Ribbons tied around the mirror of a utility {}"}, {"index": 212, "image_id": 2392926, "entity": "truck", "caption": "man driving large truck", "question": ["is there man ?", "is there large truck ?"], "prompt": "man driving large {}"}, {"index": 213, "image_id": 2392536, "entity": "truck", "caption": "front wheel of truck is black", "question": ["is there front wheel ?", "is there truck ?"], "prompt": "front wheel of {} is black"}, {"index": 214, "image_id": 2392536, "entity": "truck", "caption": "back wheel of truck is big", "question": ["is there back wheel ?", "is there truck ?"], "prompt": "back wheel of {} is big"}, {"index": 215, "image_id": 2392536, "entity": "truck", "caption": "The truck has a lady painted on it", "question": ["is there the truck ?", "is there a lady ?"], "prompt": "The {} has a lady painted on it"}, {"index": 216, "image_id": 2392394, "entity": "truck", "caption": "the front headlight on the truck", "question": ["is there the front headlight ?", "is there the truck ?"], "prompt": "the front headlight on the {}"}, {"index": 217, "image_id": 2392394, "entity": "truck", "caption": "man standing behind the truck", "question": ["is there man ?", "is there the truck ?"], "prompt": "man standing behind the {}"}, {"index": 218, "image_id": 2392105, "entity": "truck", "caption": "The windhield wipers are on the truck.", "question": ["are there the windhield wipers ?", "is there the truck ?"], "prompt": "The windhield wipers are on the {}."}, {"index": 219, "image_id": 2391764, "entity": "truck", "caption": "tires on truck are black", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires on {} are black"}, {"index": 220, "image_id": 2391651, "entity": "truck", "caption": "the pickup truck is on the street", "question": ["is there the pickup truck ?", "is there the street ?"], "prompt": "the pickup {} is on the street"}, {"index": 221, "image_id": 2391651, "entity": "truck", "caption": "person seemingly trying to get into truck", "question": ["is there person ?", "is there truck ?"], "prompt": "person seemingly trying to get into {}"}, {"index": 222, "image_id": 2391651, "entity": "truck", "caption": "The right side view mirrors on the truck.", "question": ["are there the right side view mirrors ?", "is there the truck ?"], "prompt": "The right side view mirrors on the {}."}, {"index": 223, "image_id": 2391651, "entity": "truck", "caption": "The front tire on the side of the truck that the door is open.", "question": ["is there the front tire ?", "is there the side ?", "is there the truck ?", "is there the door ?"], "prompt": "The front tire on the side of the {} that the door is open."}, {"index": 224, "image_id": 2391651, "entity": "truck", "caption": "front left tire of green truck", "question": ["is there front left tire ?", "is there green truck ?"], "prompt": "front left tire of green {}"}, {"index": 225, "image_id": 2391128, "entity": "truck", "caption": "Dead tree branch hanging out of the truck.", "question": ["is there dead tree branch ?", "is there the truck ?"], "prompt": "Dead tree branch hanging out of the {}."}, {"index": 226, "image_id": 2391128, "entity": "truck", "caption": "Large truck driving down the road.", "question": ["is there large truck ?", "is there the road ?"], "prompt": "Large {} driving down the road."}, {"index": 227, "image_id": 2391063, "entity": "truck", "caption": "clear truck head light", "question": ["is there clear truck head light ?"], "prompt": "clear {} head light"}, {"index": 228, "image_id": 2390018, "entity": "truck", "caption": "Black woman painted on truck", "question": ["is there black woman ?", "is there truck ?"], "prompt": "Black woman painted on {}"}, {"index": 229, "image_id": 2390018, "entity": "truck", "caption": "female character painted on truck", "question": ["is there female character ?", "is there truck ?"], "prompt": "female character painted on {}"}, {"index": 230, "image_id": 2389846, "entity": "truck", "caption": "Driver's side window rolled up on truck", "question": ["is there driver's side window ?", "is there truck ?"], "prompt": "Driver's side window rolled up on {}"}, {"index": 231, "image_id": 2389498, "entity": "truck", "caption": "red pick up truck parked on a street", "question": ["is there truck ?", "is there a street ?"], "prompt": "red pick up {} parked on a street"}, {"index": 232, "image_id": 2389435, "entity": "truck", "caption": "ladder coming out of the truck", "question": ["is there ladder ?", "is there the truck ?"], "prompt": "ladder coming out of the {}"}, {"index": 233, "image_id": 2389435, "entity": "truck", "caption": "kid standing on truck.", "question": ["is there kid ?", "is there truck ?"], "prompt": "kid standing on {}."}, {"index": 234, "image_id": 2389256, "entity": "truck", "caption": "The dishes are on the truck.", "question": ["are there the dishes ?", "is there the truck ?"], "prompt": "The dishes are on the {}."}, {"index": 235, "image_id": 2389256, "entity": "truck", "caption": "Two dishes are on the truck.", "question": ["are there two dishes ?", "is there the truck ?"], "prompt": "Two dishes are on the {}."}, {"index": 236, "image_id": 2389256, "entity": "truck", "caption": "dark container next to truck", "question": ["is there dark container ?", "is there truck ?"], "prompt": "dark container next to {}"}, {"index": 237, "image_id": 2389232, "entity": "truck", "caption": "a black truck bed cover", "question": ["is there a black truck bed ?"], "prompt": "a black {} bed cover"}, {"index": 238, "image_id": 2389232, "entity": "truck", "caption": "the trucks name DUDE", "question": ["are there the trucks ?", "is there dude ?"], "prompt": "the {}s name DUDE"}, {"index": 239, "image_id": 2389232, "entity": "truck", "caption": "truck bed has a black cover", "question": ["is there truck bed ?", "is there a black cover ?"], "prompt": "{} bed has a black cover"}, {"index": 240, "image_id": 2389232, "entity": "truck", "caption": "Hood of truck is open.", "question": ["is there hood ?", "is there truck ?"], "prompt": "Hood of {} is open."}, {"index": 241, "image_id": 2388587, "entity": "truck", "caption": "person walking near massive truck", "question": ["is there person ?", "is there massive truck ?"], "prompt": "person walking near massive {}"}, {"index": 242, "image_id": 2388482, "entity": "truck", "caption": "two dogs are standing in the back of a truck", "question": ["are there two dogs ?", "is there the back ?", "is there a truck ?"], "prompt": "two dogs are standing in the back of a {}"}, {"index": 243, "image_id": 2388482, "entity": "truck", "caption": "two dogs are peering over a truck cab", "question": ["are there two dogs ?", "is there a truck cab ?"], "prompt": "two dogs are peering over a {} cab"}, {"index": 244, "image_id": 2388482, "entity": "truck", "caption": "SIERRA is on the back of truck", "question": ["is there the back ?", "is there truck ?"], "prompt": "SIERRA is on the back of {}"}, {"index": 245, "image_id": 2388482, "entity": "truck", "caption": "sierra make on truck", "question": ["is there truck ?"], "prompt": "sierra make on {}"}, {"index": 246, "image_id": 2388392, "entity": "truck", "caption": "People are standing by the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "People are standing by the {}"}, {"index": 247, "image_id": 2388286, "entity": "truck", "caption": "The ladder is on the truck.", "question": ["is there the ladder ?", "is there the truck ?"], "prompt": "The ladder is on the {}."}, {"index": 248, "image_id": 2388286, "entity": "truck", "caption": "The paper on the truck is white.", "question": ["is there the paper ?", "is there the truck ?"], "prompt": "The paper on the {} is white."}, {"index": 249, "image_id": 2388286, "entity": "truck", "caption": "The ladders are on top of the truck", "question": ["are there the ladders ?", "is there top ?", "is there the truck ?"], "prompt": "The ladders are on top of the {}"}, {"index": 250, "image_id": 2388153, "entity": "truck", "caption": "Steel bed cover on pickup truck", "question": ["is there steel bed cover ?", "is there pickup truck ?"], "prompt": "Steel bed cover on pickup {}"}, {"index": 251, "image_id": 2388153, "entity": "truck", "caption": "Manufacturer emblem of a pickup truck", "question": ["is there manufacturer emblem ?", "is there a pickup truck ?"], "prompt": "Manufacturer emblem of a pickup {}"}, {"index": 252, "image_id": 2388153, "entity": "truck", "caption": "the truck has a bed cover", "question": ["is there the truck ?", "is there a bed cover ?"], "prompt": "the {} has a bed cover"}, {"index": 253, "image_id": 2387414, "entity": "truck", "caption": "green grass growing beside truck", "question": ["is there green grass ?", "is there truck ?"], "prompt": "green grass growing beside {}"}, {"index": 254, "image_id": 2387347, "entity": "truck", "caption": "Leaveless branches hang down in front of the truck", "question": ["are there leaveless branches ?", "is there front ?", "is there the truck ?"], "prompt": "Leaveless branches hang down in front of the {}"}, {"index": 255, "image_id": 2387347, "entity": "truck", "caption": "God is love is painted across the truck's front bumper", "question": ["is there love ?", "is there the truck's front bumper ?"], "prompt": "God is love is painted across the {}'s front bumper"}, {"index": 256, "image_id": 2387056, "entity": "truck", "caption": "Name of company written on truck.", "question": ["is there name ?", "is there company ?", "is there truck ?"], "prompt": "Name of company written on {}."}, {"index": 257, "image_id": 2386762, "entity": "truck", "caption": "silver metal door handle on truck", "question": ["is there silver metal door ?", "is there truck ?"], "prompt": "silver metal door handle on {}"}, {"index": 258, "image_id": 2386762, "entity": "truck", "caption": "Trees are behind the truck.", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are behind the {}."}, {"index": 259, "image_id": 2386704, "entity": "truck", "caption": "a garbage can next to the truck", "question": ["is there a garbage ?", "is there the truck ?"], "prompt": "a garbage can next to the {}"}, {"index": 260, "image_id": 2386704, "entity": "truck", "caption": "A cooler is on the truck", "question": ["is there the truck ?"], "prompt": "A cooler is on the {}"}, {"index": 261, "image_id": 2386704, "entity": "truck", "caption": "A menu is on the side of the truck", "question": ["is there a menu ?", "is there the side ?", "is there the truck ?"], "prompt": "A menu is on the side of the {}"}, {"index": 262, "image_id": 2386704, "entity": "truck", "caption": "A trash can is beside the truck", "question": ["is there a trash can ?", "is there the truck ?"], "prompt": "A trash can is beside the {}"}, {"index": 263, "image_id": 2386704, "entity": "truck", "caption": "A sign is on top of the truck", "question": ["is there a sign ?", "is there top ?", "is there the truck ?"], "prompt": "A sign is on top of the {}"}, {"index": 264, "image_id": 2386704, "entity": "truck", "caption": "food truck parked next to sidewalk", "question": ["is there food truck ?"], "prompt": "food {} parked next to sidewalk"}, {"index": 265, "image_id": 2386704, "entity": "truck", "caption": "lined trash can leaning againt food truck", "question": ["is there trash ?", "is there againt food truck ?"], "prompt": "lined trash can leaning againt food {}"}, {"index": 266, "image_id": 2386704, "entity": "truck", "caption": "Trash can outside of truck", "question": ["is there truck ?"], "prompt": "Trash can outside of {}"}, {"index": 267, "image_id": 2386545, "entity": "truck", "caption": "dirt splashed on side of truck door", "question": ["is there dirt ?", "is there side ?", "is there truck ?"], "prompt": "dirt splashed on side of {} door"}, {"index": 268, "image_id": 2386451, "entity": "truck", "caption": "roof rack on top of pickup truck", "question": ["is there roof rack ?", "is there top ?", "is there pickup truck ?"], "prompt": "roof rack on top of pickup {}"}, {"index": 269, "image_id": 2386451, "entity": "truck", "caption": "The truck is towing a boat", "question": ["is there the truck ?", "is there a boat ?"], "prompt": "The {} is towing a boat"}, {"index": 270, "image_id": 2385966, "entity": "truck", "caption": "The truck has a red logo on it.", "question": ["is there the truck ?", "is there a red logo ?"], "prompt": "The {} has a red logo on it."}, {"index": 271, "image_id": 2385966, "entity": "truck", "caption": "the caution lights on a truck", "question": ["are there the caution lights ?", "is there a truck ?"], "prompt": "the caution lights on a {}"}, {"index": 272, "image_id": 2385580, "entity": "truck", "caption": "Couch is riding in truck bed", "question": ["is there couch ?", "is there truck bed ?"], "prompt": "Couch is riding in {} bed"}, {"index": 273, "image_id": 2385580, "entity": "truck", "caption": "power lines hang above truck", "question": ["are there power lines ?", "is there truck ?"], "prompt": "power lines hang above {}"}, {"index": 274, "image_id": 2385580, "entity": "truck", "caption": "the couch sits in the back of a pickup truck", "question": ["is there the couch ?", "is there the back ?", "is there a pickup truck ?"], "prompt": "the couch sits in the back of a pickup {}"}, {"index": 275, "image_id": 2385580, "entity": "truck", "caption": "door handle on the truck door", "question": ["is there door ?", "is there the truck door ?"], "prompt": "door handle on the {} door"}, {"index": 276, "image_id": 2385559, "entity": "truck", "caption": "Gold writing on the front of the fire truck", "question": ["is there gold writing ?", "is there the front ?", "is there the fire truck ?"], "prompt": "Gold writing on the front of the fire {}"}, {"index": 277, "image_id": 2385559, "entity": "truck", "caption": "A firetruck is on a road.", "question": ["is there a firetruck ?", "is there a road ?"], "prompt": "A fire{} is on a road."}, {"index": 278, "image_id": 2385559, "entity": "truck", "caption": "The word \" PLAINS \" is on the front of a firetruck.", "question": ["is there the word ?", "are there \" plains ?", "is there the front ?", "is there a firetruck ?"], "prompt": "The word \" PLAINS \" is on the front of a fire{}."}, {"index": 279, "image_id": 2385559, "entity": "truck", "caption": "A street sign is above a firetruck.", "question": ["is there a street sign ?", "is there a firetruck ?"], "prompt": "A street sign is above a fire{}."}, {"index": 280, "image_id": 2385527, "entity": "truck", "caption": "red chef stenciled on side of truck", "question": ["is there red chef ?", "is there side ?", "is there truck ?"], "prompt": "red chef stenciled on side of {}"}, {"index": 281, "image_id": 2384523, "entity": "truck", "caption": "tires of truck painted", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires of {} painted"}, {"index": 282, "image_id": 2384523, "entity": "truck", "caption": "red painted bible sign on truck", "question": ["is there bible sign ?", "is there truck ?"], "prompt": "red painted bible sign on {}"}, {"index": 283, "image_id": 2384073, "entity": "truck", "caption": "Ice hanging from the front of truck", "question": ["is there ice ?", "is there the front ?", "is there truck ?"], "prompt": "Ice hanging from the front of {}"}, {"index": 284, "image_id": 2383911, "entity": "truck", "caption": "The word Challenge on the truck.", "question": ["is there the word challenge ?", "is there the truck ?"], "prompt": "The word Challenge on the {}."}, {"index": 285, "image_id": 2383909, "entity": "truck", "caption": "The bananas are in the truck bed", "question": ["are there the bananas ?", "is there the truck bed ?"], "prompt": "The bananas are in the {} bed"}, {"index": 286, "image_id": 2383743, "entity": "truck", "caption": "A truck is carrying merchandise", "question": ["is there a truck ?", "is there merchandise ?"], "prompt": "A {} is carrying merchandise"}, {"index": 287, "image_id": 2383743, "entity": "truck", "caption": "lights hanging off the back of the truck", "question": ["are there lights ?", "is there the back ?", "is there the truck ?"], "prompt": "lights hanging off the back of the {}"}, {"index": 288, "image_id": 2383315, "entity": "truck", "caption": "The fire truck is on the street", "question": ["is there the fire truck ?", "is there the street ?"], "prompt": "The fire {} is on the street"}, {"index": 289, "image_id": 2382893, "entity": "truck", "caption": "big lugs encircle a rear truck tire", "question": ["are there big lugs ?", "is there a rear truck tire ?"], "prompt": "big lugs encircle a rear {} tire"}, {"index": 290, "image_id": 2382893, "entity": "truck", "caption": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow truck", "question": ["are there present viewers' line ?", "is there site ?", "is there end ?", "is there yellow truck ?"], "prompt": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow {}"}, {"index": 291, "image_id": 2382893, "entity": "truck", "caption": "truck has a cover on back", "question": ["is there truck ?", "is there a cover ?"], "prompt": "{} has a cover on back"}, {"index": 292, "image_id": 2382893, "entity": "truck", "caption": "the cover is on the back of a truck", "question": ["is there the cover ?", "is there the back ?", "is there a truck ?"], "prompt": "the cover is on the back of a {}"}, {"index": 293, "image_id": 2382893, "entity": "truck", "caption": "the truck has some black letters on it", "question": ["is there the truck ?", "are there some black letters ?"], "prompt": "the {} has some black letters on it"}, {"index": 294, "image_id": 2382779, "entity": "truck", "caption": "the spare tire is on the truck", "question": ["is there the spare tire ?", "is there the truck ?"], "prompt": "the spare tire is on the {}"}, {"index": 295, "image_id": 2382494, "entity": "truck", "caption": "the truck has a plate", "question": ["is there the truck ?", "is there a plate ?"], "prompt": "the {} has a plate"}, {"index": 296, "image_id": 2382494, "entity": "truck", "caption": "the truck has a bumper", "question": ["is there the truck ?", "is there a bumper ?"], "prompt": "the {} has a bumper"}, {"index": 297, "image_id": 2382494, "entity": "truck", "caption": "the truck has a wiper", "question": ["is there the truck ?", "is there a wiper ?"], "prompt": "the {} has a wiper"}, {"index": 298, "image_id": 2382494, "entity": "truck", "caption": "the truck has a window", "question": ["is there the truck ?", "is there a window ?"], "prompt": "the {} has a window"}, {"index": 299, "image_id": 2382494, "entity": "truck", "caption": "the chevy logo is on the truck", "question": ["is there the chevy logo ?", "is there the truck ?"], "prompt": "the chevy logo is on the {}"}, {"index": 300, "image_id": 2382494, "entity": "truck", "caption": "the truck has a silver grill", "question": ["is there the truck ?", "is there a silver grill ?"], "prompt": "the {} has a silver grill"}, {"index": 301, "image_id": 2382470, "entity": "truck", "caption": "Waste management truck is on the road", "question": ["is there waste management truck ?", "is there the road ?"], "prompt": "Waste management {} is on the road"}, {"index": 302, "image_id": 2382462, "entity": "truck", "caption": "man is standing behind truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is standing behind {}"}, {"index": 303, "image_id": 2382462, "entity": "truck", "caption": "truck has white door", "question": ["is there truck ?", "is there white door ?"], "prompt": "{} has white door"}, {"index": 304, "image_id": 2382454, "entity": "truck", "caption": "Lights are on in front of the truck.", "question": ["are there lights ?", "is there front ?", "is there the truck ?"], "prompt": "Lights are on in front of the {}."}, {"index": 305, "image_id": 2381035, "entity": "truck", "caption": "Woman standing on step of truck", "question": ["is there woman ?", "is there step ?", "is there truck ?"], "prompt": "Woman standing on step of {}"}, {"index": 306, "image_id": 2380908, "entity": "truck", "caption": "The door handle on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door handle on the {}"}, {"index": 307, "image_id": 2380866, "entity": "truck", "caption": "the truck has a mirror", "question": ["is there the truck ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 308, "image_id": 2380866, "entity": "truck", "caption": "the logo is on the back of the truck", "question": ["is there the logo ?", "is there the back ?", "is there the truck ?"], "prompt": "the logo is on the back of the {}"}, {"index": 309, "image_id": 2380866, "entity": "truck", "caption": "the billboard is infront of the truck", "question": ["is there the billboard ?", "is there the truck ?"], "prompt": "the billboard is infront of the {}"}, {"index": 310, "image_id": 2380592, "entity": "truck", "caption": "man standing at back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "man standing at back of {}"}, {"index": 311, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is black"}, {"index": 312, "image_id": 2380587, "entity": "truck", "caption": "the truck has an antenna", "question": ["is there the truck ?", "is there an antenna ?"], "prompt": "the {} has an antenna"}, {"index": 313, "image_id": 2380587, "entity": "truck", "caption": "black windshield wipers are on the truck", "question": ["are there black windshield wipers ?", "is there the truck ?"], "prompt": "black windshield wipers are on the {}"}, {"index": 314, "image_id": 2380587, "entity": "truck", "caption": "the truck has writing on the side", "question": ["is there the truck ?", "is there the side ?"], "prompt": "the {} has writing on the side"}, {"index": 315, "image_id": 2380587, "entity": "truck", "caption": "a rack is on the roof of the truck", "question": ["is there a rack ?", "is there the roof ?", "is there the truck ?"], "prompt": "a rack is on the roof of the {}"}, {"index": 316, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is flat black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is flat black"}, {"index": 317, "image_id": 2380587, "entity": "truck", "caption": "red lettering is on the side of the truck", "question": ["is there red lettering ?", "is there the side ?", "is there the truck ?"], "prompt": "red lettering is on the side of the {}"}, {"index": 318, "image_id": 2380587, "entity": "truck", "caption": "the headlight of the truck is off", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "the headlight of the {} is off"}, {"index": 319, "image_id": 2380587, "entity": "truck", "caption": "a rack is on top of the truck", "question": ["is there a rack ?", "is there top ?", "is there the truck ?"], "prompt": "a rack is on top of the {}"}, {"index": 320, "image_id": 2380587, "entity": "truck", "caption": "green hedges are behind the truck", "question": ["are there green hedges ?", "is there the truck ?"], "prompt": "green hedges are behind the {}"}, {"index": 321, "image_id": 2380273, "entity": "truck", "caption": "the truck has a long side mirror ", "question": ["is there the truck ?", "is there a long side mirror ?"], "prompt": "the {} has a long side mirror "}, {"index": 322, "image_id": 2380273, "entity": "truck", "caption": "The truck is on pavement. ", "question": ["is there the truck ?", "is there pavement ?"], "prompt": "The {} is on pavement. "}, {"index": 323, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting something.", "question": ["is there the truck ?", "is there something ?"], "prompt": "The {} is lifting something."}, {"index": 324, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting a small vehicle with a crane.", "question": ["is there the truck ?", "is there a small vehicle ?", "is there a crane ?"], "prompt": "The {} is lifting a small vehicle with a crane."}, {"index": 325, "image_id": 2380112, "entity": "truck", "caption": "Military truck loading a vehicle", "question": ["is there military truck ?", "is there a vehicle ?"], "prompt": "Military {} loading a vehicle"}, {"index": 326, "image_id": 2379690, "entity": "truck", "caption": "man driving a vintage truck", "question": ["is there man ?", "is there a vintage truck ?"], "prompt": "man driving a vintage {}"}, {"index": 327, "image_id": 2379397, "entity": "truck", "caption": "man climbing back of truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man climbing back of {}"}, {"index": 328, "image_id": 2379397, "entity": "truck", "caption": "boy in grey shirt standing on top of truck", "question": ["is there boy ?", "is there top ?", "is there truck ?"], "prompt": "boy in grey shirt standing on top of {}"}, {"index": 329, "image_id": 2379397, "entity": "truck", "caption": "young man climbing up back of truck", "question": ["is there young man ?", "is there truck ?"], "prompt": "young man climbing up back of {}"}, {"index": 330, "image_id": 2378872, "entity": "truck", "caption": "Dog standing on side of truck bed", "question": ["is there dog ?", "is there side ?", "is there truck ?", "is there bed ?"], "prompt": "Dog standing on side of {} bed"}, {"index": 331, "image_id": 2378626, "entity": "truck", "caption": "Car parked in front of pick-up truck", "question": ["is there car ?", "is there front ?", "is there pick-up truck ?"], "prompt": "Car parked in front of pick-up {}"}, {"index": 332, "image_id": 2378563, "entity": "truck", "caption": "The word Blow on the tail gate of the truck.", "question": ["is there the word ?", "is there the tail gate ?", "is there the truck ?"], "prompt": "The word Blow on the tail gate of the {}."}, {"index": 333, "image_id": 2378417, "entity": "truck", "caption": "Green writing on side of truck.", "question": ["is there green writing ?", "is there side ?", "is there truck ?"], "prompt": "Green writing on side of {}."}, {"index": 334, "image_id": 2378417, "entity": "truck", "caption": "Big tire leaning on truck.", "question": ["is there big tire ?", "is there truck ?"], "prompt": "Big tire leaning on {}."}, {"index": 335, "image_id": 2378417, "entity": "truck", "caption": "weeds are growing by the old truck", "question": ["are there weeds ?", "is there the old truck ?"], "prompt": "weeds are growing by the old {}"}, {"index": 336, "image_id": 2378218, "entity": "truck", "caption": "rope tied in truck", "question": ["is there rope ?", "is there truck ?"], "prompt": "rope tied in {}"}, {"index": 337, "image_id": 2378218, "entity": "truck", "caption": "the truck the cow is sitting on", "question": ["is there the truck ?", "is there the cow ?"], "prompt": "the {} the cow is sitting on"}, {"index": 338, "image_id": 2378035, "entity": "truck", "caption": "men driving an old time truck", "question": ["are there men ?", "is there an old time truck ?"], "prompt": "men driving an old time {}"}, {"index": 339, "image_id": 2377760, "entity": "truck", "caption": "a truck is driving down the road.", "question": ["is there a truck ?", "is there the road ?"], "prompt": "a {} is driving down the road."}, {"index": 340, "image_id": 2377333, "entity": "truck", "caption": "round headlight on truck", "question": ["is there headlight ?", "is there truck ?"], "prompt": "round headlight on {}"}, {"index": 341, "image_id": 2377333, "entity": "truck", "caption": "Tan truck has five visible tires", "question": ["is there tan truck ?", "are there five visible tires ?"], "prompt": "Tan {} has five visible tires"}, {"index": 342, "image_id": 2376346, "entity": "truck", "caption": "man in red vest standing in front of truck", "question": ["is there man ?", "is there red vest ?", "is there front ?", "is there truck ?"], "prompt": "man in red vest standing in front of {}"}, {"index": 343, "image_id": 2376063, "entity": "truck", "caption": "large tarps covering bed of red-orange truck", "question": ["are there large tarps ?", "is there bed ?", "is there red-orange truck ?"], "prompt": "large tarps covering bed of red-orange {}"}, {"index": 344, "image_id": 2376061, "entity": "truck", "caption": "a fire truck is driving down the street.", "question": ["is there a fire truck ?", "is there the street ?"], "prompt": "a fire {} is driving down the street."}, {"index": 345, "image_id": 2376061, "entity": "truck", "caption": "American flag hanging from the truck", "question": ["is there american flag ?", "is there the truck ?"], "prompt": "American flag hanging from the {}"}, {"index": 346, "image_id": 2376005, "entity": "truck", "caption": "the truck has lettering on the side", "question": ["is there the truck ?", "is there lettering ?", "is there the side ?"], "prompt": "the {} has lettering on the side"}, {"index": 347, "image_id": 2376005, "entity": "truck", "caption": "the truck has a metal fender in front", "question": ["is there the truck ?", "is there a metal fender ?", "is there front ?"], "prompt": "the {} has a metal fender in front"}, {"index": 348, "image_id": 2374981, "entity": "truck", "caption": "Person walking behind truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking behind {}."}, {"index": 349, "image_id": 2374981, "entity": "truck", "caption": "The truck is carrying jugs of water.", "question": ["is there the truck ?", "are there jugs ?", "is there water ?"], "prompt": "The {} is carrying jugs of water."}, {"index": 350, "image_id": 2374981, "entity": "truck", "caption": "The taxi is next to the truck.", "question": ["is there the taxi ?", "is there the truck ?"], "prompt": "The taxi is next to the {}."}, {"index": 351, "image_id": 2374981, "entity": "truck", "caption": "the truck is a water truck", "question": ["is there the truck ?", "is there a water truck ?"], "prompt": "the {} is a water {}"}, {"index": 352, "image_id": 2374218, "entity": "truck", "caption": "truck has grey tire", "question": ["is there truck ?", "is there grey tire ?"], "prompt": "{} has grey tire"}, {"index": 353, "image_id": 2374072, "entity": "truck", "caption": "Person standing near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person standing near {}."}, {"index": 354, "image_id": 2373789, "entity": "truck", "caption": "door of truck has a window", "question": ["is there door ?", "is there truck ?", "is there a window ?"], "prompt": "door of {} has a window"}, {"index": 355, "image_id": 2373559, "entity": "truck", "caption": "brick street the truck is on", "question": ["is there brick street ?", "is there the truck ?"], "prompt": "brick street the {} is on"}, {"index": 356, "image_id": 2373441, "entity": "truck", "caption": "Black shadows cast on the red side of a truck", "question": ["are there black shadows ?", "is there the red side ?", "is there a truck ?"], "prompt": "Black shadows cast on the red side of a {}"}, {"index": 357, "image_id": 2373441, "entity": "truck", "caption": "front wheel truck is big", "question": ["is there front wheel truck ?"], "prompt": "front wheel {} is big"}, {"index": 358, "image_id": 2372785, "entity": "truck", "caption": "it is the front tire of the truck", "question": ["is there the front tire ?", "is there the truck ?"], "prompt": "it is the front tire of the {}"}, {"index": 359, "image_id": 2372785, "entity": "truck", "caption": "is it the back tire of the white truck", "question": ["is there the back tire ?", "is there the white truck ?"], "prompt": "is it the back tire of the white {}"}, {"index": 360, "image_id": 2372785, "entity": "truck", "caption": "a person is sitting in the white truck", "question": ["is there a person ?", "is there the white truck ?"], "prompt": "a person is sitting in the white {}"}, {"index": 361, "image_id": 2372785, "entity": "truck", "caption": "door handle on delivery truck", "question": ["is there door ?", "is there delivery truck ?"], "prompt": "door handle on delivery {}"}, {"index": 362, "image_id": 2372670, "entity": "truck", "caption": "green pick up next to mack truck on the left", "question": ["is there mack truck ?"], "prompt": "green pick up next to mack {} on the left"}, {"index": 363, "image_id": 2372645, "entity": "truck", "caption": "a garbage can sitting next to a truck", "question": ["is there a garbage ?", "is there a truck ?"], "prompt": "a garbage can sitting next to a {}"}, {"index": 364, "image_id": 2372645, "entity": "truck", "caption": "Doll is in top of the truck.", "question": ["is there doll ?", "is there top ?", "is there the truck ?"], "prompt": "Doll is in top of the {}."}, {"index": 365, "image_id": 2372493, "entity": "truck", "caption": "dog is resting in shade of truck", "question": ["is there dog ?", "is there shade ?", "is there truck ?"], "prompt": "dog is resting in shade of {}"}, {"index": 366, "image_id": 2372487, "entity": "truck", "caption": "ford is in the grill of truck", "question": ["is there the grill ?", "is there truck ?"], "prompt": "ford is in the grill of {}"}, {"index": 367, "image_id": 2372487, "entity": "truck", "caption": "hood is black on the truck", "question": ["is there hood ?", "is there the truck ?"], "prompt": "hood is black on the {}"}, {"index": 368, "image_id": 2372487, "entity": "truck", "caption": "blue auto maker sign behind truck", "question": ["is there blue auto maker ?", "is there truck ?"], "prompt": "blue auto maker sign behind {}"}, {"index": 369, "image_id": 2372400, "entity": "truck", "caption": "Woman sitting on top of a truck", "question": ["is there woman ?", "is there top ?", "is there a truck ?"], "prompt": "Woman sitting on top of a {}"}, {"index": 370, "image_id": 2372385, "entity": "truck", "caption": "Man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "Man driving a {}"}, {"index": 371, "image_id": 2372385, "entity": "truck", "caption": "headlights in front of truck are off", "question": ["are there headlights ?", "is there front ?", "is there truck ?"], "prompt": "headlights in front of {} are off"}, {"index": 372, "image_id": 2372249, "entity": "truck", "caption": "it is the back tire of the truck", "question": ["is there the back tire ?", "is there the truck ?"], "prompt": "it is the back tire of the {}"}, {"index": 373, "image_id": 2372249, "entity": "truck", "caption": "it is the front head light of the truck", "question": ["is there the front head light ?", "is there the truck ?"], "prompt": "it is the front head light of the {}"}, {"index": 374, "image_id": 2372249, "entity": "truck", "caption": "it is the windshield of the truck", "question": ["is there the windshield ?", "is there the truck ?"], "prompt": "it is the windshield of the {}"}, {"index": 375, "image_id": 2372238, "entity": "truck", "caption": "A big truck is sitting in a parking lot.", "question": ["is there a big truck ?", "is there a parking lot ?"], "prompt": "A big {} is sitting in a parking lot."}, {"index": 376, "image_id": 2372063, "entity": "truck", "caption": "letters on truck says \"Budweiser\"", "question": ["are there letters ?", "is there truck ?", "is there budweiser ?"], "prompt": "letters on {} says \"Budweiser\""}, {"index": 377, "image_id": 2371995, "entity": "truck", "caption": "letter painted on truck", "question": ["is there letter ?", "is there truck ?"], "prompt": "letter painted on {}"}, {"index": 378, "image_id": 2371903, "entity": "truck", "caption": "stars are on the truck", "question": ["are there stars ?", "is there the truck ?"], "prompt": "stars are on the {}"}, {"index": 379, "image_id": 2371903, "entity": "truck", "caption": "USA painted on a truck", "question": ["is there a truck ?"], "prompt": "USA painted on a {}"}, {"index": 380, "image_id": 2371766, "entity": "truck", "caption": "this is the trucks windshield ", "question": ["are there the trucks ?"], "prompt": "this is the {}s windshield "}, {"index": 381, "image_id": 2371766, "entity": "truck", "caption": "truck window is open", "question": ["is there truck window ?"], "prompt": "{} window is open"}, {"index": 382, "image_id": 2371022, "entity": "truck", "caption": "a red truck parked", "question": ["is there a red truck ?"], "prompt": "a red {} parked"}, {"index": 383, "image_id": 2371022, "entity": "truck", "caption": "Tire splash guard of truck", "question": ["is there tire splash guard ?", "is there truck ?"], "prompt": "Tire splash guard of {}"}, {"index": 384, "image_id": 2369895, "entity": "truck", "caption": "The tire of the truck is black ", "question": ["is there the tire ?", "is there the truck ?"], "prompt": "The tire of the {} is black "}, {"index": 385, "image_id": 2369837, "entity": "truck", "caption": "A truck is on the street.", "question": ["is there a truck ?", "is there the street ?"], "prompt": "A {} is on the street."}, {"index": 386, "image_id": 2369837, "entity": "truck", "caption": "A canopy drapes over the truck.", "question": ["is there a canopy ?", "is there the truck ?"], "prompt": "A canopy drapes over the {}."}, {"index": 387, "image_id": 2369837, "entity": "truck", "caption": "The truck is missing the hood.", "question": ["is there the truck ?", "is there the hood ?"], "prompt": "The {} is missing the hood."}, {"index": 388, "image_id": 2369288, "entity": "truck", "caption": "bear is on truck bed", "question": ["is there truck bed ?"], "prompt": "bear is on {} bed"}, {"index": 389, "image_id": 2369089, "entity": "truck", "caption": "silver door handle on truck", "question": ["is there silver door ?", "is there truck ?"], "prompt": "silver door handle on {}"}, {"index": 390, "image_id": 2368262, "entity": "truck", "caption": "this truck has a backdoor", "question": ["is there this truck ?", "is there a backdoor ?"], "prompt": "this {} has a backdoor"}, {"index": 391, "image_id": 2368262, "entity": "truck", "caption": "the rear door handle to the truck is rusting", "question": ["is there the rear door ?", "is there the truck ?"], "prompt": "the rear door handle to the {} is rusting"}, {"index": 392, "image_id": 2368262, "entity": "truck", "caption": "latches are on the truck rear door", "question": ["are there latches ?", "is there the truck rear door ?"], "prompt": "latches are on the {} rear door"}, {"index": 393, "image_id": 2368262, "entity": "truck", "caption": "writing is visible on the side of the truck", "question": ["is there writing ?", "is there the side ?", "is there the truck ?"], "prompt": "writing is visible on the side of the {}"}, {"index": 394, "image_id": 2368262, "entity": "truck", "caption": "the side door of the truck has windows", "question": ["is there the side door ?", "is there the truck ?", "are there windows ?"], "prompt": "the side door of the {} has windows"}, {"index": 395, "image_id": 2368262, "entity": "truck", "caption": "Trees in front of truck have no leaves.", "question": ["are there trees ?", "is there front ?", "is there truck ?", "are there no leaves ?"], "prompt": "Trees in front of {} have no leaves."}, {"index": 396, "image_id": 2367654, "entity": "truck", "caption": "the trucks back license plate ", "question": ["are there the trucks ?", "is there license plate ?"], "prompt": "the {}s back license plate "}, {"index": 397, "image_id": 2367654, "entity": "truck", "caption": "truck is hauling circular objects", "question": ["is there truck ?", "are there circular objects ?"], "prompt": "{} is hauling circular objects"}, {"index": 398, "image_id": 2367654, "entity": "truck", "caption": "The truck has ten tubes.", "question": ["is there the truck ?", "are there ten tubes ?"], "prompt": "The {} has ten tubes."}, {"index": 399, "image_id": 2367654, "entity": "truck", "caption": "The truck has six red ligths.", "question": ["is there the truck ?", "are there six red ligths ?"], "prompt": "The {} has six red ligths."}, {"index": 400, "image_id": 2367556, "entity": "truck", "caption": "truck has red tail light", "question": ["is there truck ?", "is there red tail light ?"], "prompt": "{} has red tail light"}, {"index": 401, "image_id": 2367108, "entity": "truck", "caption": "the truck has words on it", "question": ["is there the truck ?", "are there words ?"], "prompt": "the {} has words on it"}, {"index": 402, "image_id": 2366931, "entity": "truck", "caption": "car door handle on truck", "question": ["is there car door ?", "is there truck ?"], "prompt": "car door handle on {}"}, {"index": 403, "image_id": 2366645, "entity": "truck", "caption": "A horse int he bed of a truck", "question": ["is there a truck ?"], "prompt": "A horse int he bed of a {}"}, {"index": 404, "image_id": 2366645, "entity": "truck", "caption": "the white wall rims on the truck tire", "question": ["are there the white wall rims ?", "is there the truck tire ?"], "prompt": "the white wall rims on the {} tire"}, {"index": 405, "image_id": 2366233, "entity": "truck", "caption": "A gray sedan parked very closely in front of the truck", "question": ["is there a gray sedan ?", "is there front ?", "is there the truck ?"], "prompt": "A gray sedan parked very closely in front of the {}"}, {"index": 406, "image_id": 2366156, "entity": "truck", "caption": "Horse standing next to a red truck", "question": ["is there horse ?", "is there a red truck ?"], "prompt": "Horse standing next to a red {}"}, {"index": 407, "image_id": 2365951, "entity": "truck", "caption": "The truck has lights on it's roof", "question": ["is there the truck ?", "are there lights ?", "is there it's roof ?"], "prompt": "The {} has lights on it's roof"}, {"index": 408, "image_id": 2365951, "entity": "truck", "caption": "red numbers painted on a truck", "question": ["are there red numbers ?", "is there a truck ?"], "prompt": "red numbers painted on a {}"}, {"index": 409, "image_id": 2365951, "entity": "truck", "caption": "The concrete truck is the color yellow ", "question": ["is there the concrete truck ?"], "prompt": "The concrete {} is the color yellow "}, {"index": 410, "image_id": 2365951, "entity": "truck", "caption": "This is a yellow truck", "question": ["is there a yellow truck ?"], "prompt": "This is a yellow {}"}, {"index": 411, "image_id": 2365691, "entity": "truck", "caption": "sideways spare tire mounted under the truck", "question": ["is there spare tire ?", "is there the truck ?"], "prompt": "sideways spare tire mounted under the {}"}, {"index": 412, "image_id": 2365570, "entity": "truck", "caption": "The cab of the truck is red", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "The cab of the {} is red"}, {"index": 413, "image_id": 2365570, "entity": "truck", "caption": "The dumping part of the truck is yellow", "question": ["is there the dumping part ?", "is there the truck ?"], "prompt": "The dumping part of the {} is yellow"}, {"index": 414, "image_id": 2365570, "entity": "truck", "caption": "This truck has gone through a lot of dirt", "question": ["is there this truck ?", "is there a lot ?", "is there dirt ?"], "prompt": "This {} has gone through a lot of dirt"}, {"index": 415, "image_id": 2365252, "entity": "truck", "caption": "man with long hair stands beside truck cab", "question": ["is there man ?", "is there long hair ?", "is there truck cab ?"], "prompt": "man with long hair stands beside {} cab"}, {"index": 416, "image_id": 2365252, "entity": "truck", "caption": "truck's front turn signal", "question": ["is there truck's front turn ?"], "prompt": "{}'s front turn signal"}, {"index": 417, "image_id": 2364632, "entity": "truck", "caption": "the truck's cab is blue", "question": ["is there the truck's cab ?"], "prompt": "the {}'s cab is blue"}, {"index": 418, "image_id": 2364512, "entity": "truck", "caption": "Top of the truck is white and green in color", "question": ["is there top ?", "is there the truck ?", "is there color ?"], "prompt": "Top of the {} is white and green in color"}, {"index": 419, "image_id": 2363920, "entity": "truck", "caption": "man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man driving a {}"}, {"index": 420, "image_id": 2362822, "entity": "truck", "caption": "gray ram sniffing a truck", "question": ["is there a truck ?"], "prompt": "gray ram sniffing a {}"}, {"index": 421, "image_id": 2362058, "entity": "truck", "caption": "it is a ladder on the side of the truck", "question": ["is there a ladder ?", "is there the side ?", "is there the truck ?"], "prompt": "it is a ladder on the side of the {}"}, {"index": 422, "image_id": 2362058, "entity": "truck", "caption": "it is the headlight of the truck", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "it is the headlight of the {}"}, {"index": 423, "image_id": 2361362, "entity": "truck", "caption": "garbage man running behing garabge truck", "question": ["is there garbage man ?", "is there behing garabge truck ?"], "prompt": "garbage man running behing garabge {}"}, {"index": 424, "image_id": 2361169, "entity": "truck", "caption": "cartoon character painted on truck", "question": ["is there cartoon character ?", "is there truck ?"], "prompt": "cartoon character painted on {}"}, {"index": 425, "image_id": 2360580, "entity": "truck", "caption": "The truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "The {} is on the road"}, {"index": 426, "image_id": 2360438, "entity": "truck", "caption": "a sign that says Signal on the side of the truck", "question": ["is there a sign ?", "is there signal ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign that says Signal on the side of the {}"}, {"index": 427, "image_id": 2360362, "entity": "truck", "caption": "Two people walking toward a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "Two people walking toward a {}"}, {"index": 428, "image_id": 2360185, "entity": "truck", "caption": "Man reflected in the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man reflected in the {}."}, {"index": 429, "image_id": 2359911, "entity": "truck", "caption": "Plymouth written on the truck", "question": ["is there the truck ?"], "prompt": "Plymouth written on the {}"}, {"index": 430, "image_id": 2359717, "entity": "truck", "caption": "united states flag on truck", "question": ["is there truck ?"], "prompt": "united states flag on {}"}, {"index": 431, "image_id": 2359708, "entity": "truck", "caption": "a firetruck headlight ", "question": ["is there a firetruck headlight ?"], "prompt": "a fire{} headlight "}, {"index": 432, "image_id": 2359307, "entity": "truck", "caption": "the truck is in the Forrest", "question": ["is there the truck ?", "is there the forrest ?"], "prompt": "the {} is in the Forrest"}, {"index": 433, "image_id": 2357815, "entity": "truck", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white car is behind the {}"}, {"index": 434, "image_id": 2357815, "entity": "truck", "caption": "A tarp is over the back of the truck", "question": ["is there a tarp ?", "is there the back ?", "is there the truck ?"], "prompt": "A tarp is over the back of the {}"}, {"index": 435, "image_id": 2357227, "entity": "truck", "caption": "white numbers are on the truck", "question": ["are there white numbers ?", "is there the truck ?"], "prompt": "white numbers are on the {}"}, {"index": 436, "image_id": 2357227, "entity": "truck", "caption": "a man straps the truck down", "question": ["is there a man ?", "is there the truck ?"], "prompt": "a man straps the {} down"}, {"index": 437, "image_id": 2357081, "entity": "truck", "caption": "The left front headlight on the truck", "question": ["is there the left front headlight ?", "is there the truck ?"], "prompt": "The left front headlight on the {}"}, {"index": 438, "image_id": 2356932, "entity": "truck", "caption": "The truck is casting a shadow. ", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow. "}, {"index": 439, "image_id": 2356932, "entity": "truck", "caption": "Person taking a picture of the truck. ", "question": ["is there person ?", "is there a picture ?", "is there the truck ?"], "prompt": "Person taking a picture of the {}. "}, {"index": 440, "image_id": 2356921, "entity": "truck", "caption": "GREAT TASTE written on the side of a truck. ", "question": ["is there great taste ?", "is there the side ?", "is there a truck ?"], "prompt": "GREAT TASTE written on the side of a {}. "}, {"index": 441, "image_id": 2355892, "entity": "truck", "caption": "it is the letter C on the truck ", "question": ["is there the letter ?", "is there c ?", "is there the truck ?"], "prompt": "it is the letter C on the {} "}, {"index": 442, "image_id": 2355892, "entity": "truck", "caption": "it is the letter O on the truck", "question": ["is there the letter ?", "is there o ?", "is there the truck ?"], "prompt": "it is the letter O on the {}"}, {"index": 443, "image_id": 2355892, "entity": "truck", "caption": "it is a light on the truck", "question": ["is there a light ?", "is there the truck ?"], "prompt": "it is a light on the {}"}, {"index": 444, "image_id": 2355892, "entity": "truck", "caption": "the truck has a black wheel", "question": ["is there the truck ?", "is there a black wheel ?"], "prompt": "the {} has a black wheel"}, {"index": 445, "image_id": 2355892, "entity": "truck", "caption": "the truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 446, "image_id": 2355892, "entity": "truck", "caption": "The truck has lights on it.", "question": ["is there the truck ?", "are there lights ?"], "prompt": "The {} has lights on it."}, {"index": 447, "image_id": 2355892, "entity": "truck", "caption": "The truck says coco", "question": ["is there the truck ?", "is there coco ?"], "prompt": "The {} says coco"}, {"index": 448, "image_id": 2355892, "entity": "truck", "caption": "The lettering is white on the truck", "question": ["is there the lettering ?", "is there the truck ?"], "prompt": "The lettering is white on the {}"}, {"index": 449, "image_id": 2355892, "entity": "truck", "caption": "The truck has tires.", "question": ["is there the truck ?", "are there tires ?"], "prompt": "The {} has tires."}, {"index": 450, "image_id": 2355741, "entity": "truck", "caption": "Woman standing next to the truck", "question": ["is there woman ?", "is there the truck ?"], "prompt": "Woman standing next to the {}"}, {"index": 451, "image_id": 2354584, "entity": "truck", "caption": "There is a symbol on this truck that says Fire Dept.", "question": ["is there a symbol ?", "is there this truck ?", "is there fire dept ?"], "prompt": "There is a symbol on this {} that says Fire Dept."}, {"index": 452, "image_id": 2354302, "entity": "truck", "caption": "rust covered truck shows it has some age", "question": ["is there rust covered truck ?", "is there some age ?"], "prompt": "rust covered {} shows it has some age"}, {"index": 453, "image_id": 2354302, "entity": "truck", "caption": "white hydrolic machinery on truck shows unprotected by weather", "question": ["is there white hydrolic machinery ?", "are there truck shows ?", "is there weather ?"], "prompt": "white hydrolic machinery on {} shows unprotected by weather"}, {"index": 454, "image_id": 2354302, "entity": "truck", "caption": "windshield on truck looks clean", "question": ["is there windshield ?", "is there truck ?"], "prompt": "windshield on {} looks clean"}, {"index": 455, "image_id": 2353824, "entity": "truck", "caption": "truck has four lights", "question": ["is there truck ?", "are there four lights ?"], "prompt": "{} has four lights"}, {"index": 456, "image_id": 2353824, "entity": "truck", "caption": "truck lights are lit", "question": ["are there truck lights ?"], "prompt": "{} lights are lit"}, {"index": 457, "image_id": 2353824, "entity": "truck", "caption": "truck has yellow arm", "question": ["is there truck ?", "is there yellow arm ?"], "prompt": "{} has yellow arm"}, {"index": 458, "image_id": 2353824, "entity": "truck", "caption": "Orange lit up light above truck.", "question": ["is there light ?", "is there truck ?"], "prompt": "Orange lit up light above {}."}, {"index": 459, "image_id": 2353075, "entity": "truck", "caption": "PX is on the top of the truck", "question": ["is there px ?", "is there the top ?", "is there the truck ?"], "prompt": "PX is on the top of the {}"}, {"index": 460, "image_id": 2353075, "entity": "truck", "caption": "mercedes emblem on truck ", "question": ["are there mercedes ?", "is there truck ?"], "prompt": "mercedes emblem on {} "}, {"index": 461, "image_id": 2352665, "entity": "truck", "caption": "door handle on white truck", "question": ["is there door ?", "is there white truck ?"], "prompt": "door handle on white {}"}, {"index": 462, "image_id": 2352260, "entity": "truck", "caption": "box spring on it's side in the back of a truck", "question": ["is there box spring ?", "is there it's side ?", "is there the back ?", "is there a truck ?"], "prompt": "box spring on it's side in the back of a {}"}, {"index": 463, "image_id": 2351947, "entity": "truck", "caption": "front left wheel of the fire truck", "question": ["is there front left wheel ?", "is there the fire truck ?"], "prompt": "front left wheel of the fire {}"}, {"index": 464, "image_id": 2351810, "entity": "truck", "caption": "man standing in back of windowless truck", "question": ["is there man ?", "is there windowless truck ?"], "prompt": "man standing in back of windowless {}"}, {"index": 465, "image_id": 2351290, "entity": "truck", "caption": "a striped blanket is on a truck", "question": ["is there a striped blanket ?", "is there a truck ?"], "prompt": "a striped blanket is on a {}"}, {"index": 466, "image_id": 2351290, "entity": "truck", "caption": "the wall behind the truck is silver", "question": ["is there the wall ?", "is there the truck ?"], "prompt": "the wall behind the {} is silver"}, {"index": 467, "image_id": 2351178, "entity": "truck", "caption": "The truck is carrying a surfboard", "question": ["is there the truck ?", "is there a surfboard ?"], "prompt": "The {} is carrying a surfboard"}, {"index": 468, "image_id": 2351178, "entity": "truck", "caption": "life saving device on truck", "question": ["is there device ?", "is there truck ?"], "prompt": "life saving device on {}"}, {"index": 469, "image_id": 2351178, "entity": "truck", "caption": "The left headlight on the truck.", "question": ["is there the left headlight ?", "is there the truck ?"], "prompt": "The left headlight on the {}."}, {"index": 470, "image_id": 2351131, "entity": "truck", "caption": "Trailer hitch on back of truck", "question": ["is there trailer hitch ?", "is there back ?", "is there truck ?"], "prompt": "Trailer hitch on back of {}"}, {"index": 471, "image_id": 2349773, "entity": "truck", "caption": "Two posts are near a truck.", "question": ["are there two posts ?", "is there a truck ?"], "prompt": "Two posts are near a {}."}, {"index": 472, "image_id": 2349620, "entity": "truck", "caption": "a metal pole is by the truck", "question": ["is there a metal pole ?", "is there the truck ?"], "prompt": "a metal pole is by the {}"}, {"index": 473, "image_id": 2349620, "entity": "truck", "caption": "the truck has a rearview mirror", "question": ["is there the truck ?", "is there a rearview mirror ?"], "prompt": "the {} has a rearview mirror"}, {"index": 474, "image_id": 2348945, "entity": "truck", "caption": "A large tube is on a truck.", "question": ["is there a large tube ?", "is there a truck ?"], "prompt": "A large tube is on a {}."}, {"index": 475, "image_id": 2348945, "entity": "truck", "caption": "A grey box is on a truck.", "question": ["is there a truck ?"], "prompt": "A grey box is on a {}."}, {"index": 476, "image_id": 2348945, "entity": "truck", "caption": "A man is standing next to a truck.", "question": ["is there a man ?", "is there a truck ?"], "prompt": "A man is standing next to a {}."}, {"index": 477, "image_id": 2348933, "entity": "truck", "caption": "logo painted on a truck", "question": ["is there logo ?", "is there a truck ?"], "prompt": "logo painted on a {}"}, {"index": 478, "image_id": 2348742, "entity": "truck", "caption": "cows hauled on top of truck", "question": ["are there cows ?", "is there top ?", "is there truck ?"], "prompt": "cows hauled on top of {}"}, {"index": 479, "image_id": 2348742, "entity": "truck", "caption": "sign in truck says \"mitsubishi\"", "question": ["is there sign ?", "is there truck ?"], "prompt": "sign in {} says \"mitsubishi\""}, {"index": 480, "image_id": 2348742, "entity": "truck", "caption": "windy road the truck is driving on ", "question": ["is there windy road ?", "is there the truck ?"], "prompt": "windy road the {} is driving on "}, {"index": 481, "image_id": 2348526, "entity": "truck", "caption": "machinery is on the truck", "question": ["is there machinery ?", "is there the truck ?"], "prompt": "machinery is on the {}"}, {"index": 482, "image_id": 2348526, "entity": "truck", "caption": "Back door is open on truck", "question": ["is there back door ?", "is there truck ?"], "prompt": "Back door is open on {}"}, {"index": 483, "image_id": 2347761, "entity": "truck", "caption": "a driver is inside the truck cab", "question": ["is there a driver ?", "is there the truck cab ?"], "prompt": "a driver is inside the {} cab"}, {"index": 484, "image_id": 2347750, "entity": "truck", "caption": "A person is by the truck", "question": ["is there a person ?", "is there the truck ?"], "prompt": "A person is by the {}"}, {"index": 485, "image_id": 2347690, "entity": "truck", "caption": "4x4 painted on the side of truck", "question": ["is there the side ?", "is there truck ?"], "prompt": "4x4 painted on the side of {}"}, {"index": 486, "image_id": 2347690, "entity": "truck", "caption": "tail gate is down on truck", "question": ["is there tail gate ?", "is there truck ?"], "prompt": "tail gate is down on {}"}, {"index": 487, "image_id": 2347487, "entity": "truck", "caption": "Rear left wheel of the truck", "question": ["is there rear left wheel ?", "is there the truck ?"], "prompt": "Rear left wheel of the {}"}, {"index": 488, "image_id": 2347487, "entity": "truck", "caption": "Front left wheel of the truck", "question": ["is there front left wheel ?", "is there the truck ?"], "prompt": "Front left wheel of the {}"}, {"index": 489, "image_id": 2347377, "entity": "truck", "caption": "Person sitting in a dark two tone truck", "question": ["is there person ?", "is there a dark two tone truck ?"], "prompt": "Person sitting in a dark two tone {}"}, {"index": 490, "image_id": 2346986, "entity": "truck", "caption": "the truck has a picture at the door", "question": ["is there the truck ?", "is there a picture ?", "is there the door ?"], "prompt": "the {} has a picture at the door"}, {"index": 491, "image_id": 2346214, "entity": "truck", "caption": "guy trying to get stuff out of a truck", "question": ["is there guy ?", "is there stuff ?", "is there a truck ?"], "prompt": "guy trying to get stuff out of a {}"}, {"index": 492, "image_id": 2345894, "entity": "truck", "caption": "the truck has No2 painted on it", "question": ["is there the truck ?", "are there no2 ?"], "prompt": "the {} has No2 painted on it"}, {"index": 493, "image_id": 2345381, "entity": "truck", "caption": "people are standing by the food truck", "question": ["are there people ?", "is there the food truck ?"], "prompt": "people are standing by the food {}"}, {"index": 494, "image_id": 2345381, "entity": "truck", "caption": "the food truck has red lights on it", "question": ["is there the food truck ?", "are there red lights ?"], "prompt": "the food {} has red lights on it"}, {"index": 495, "image_id": 2345314, "entity": "truck", "caption": "Yellow truck has hood opened", "question": ["is there yellow truck ?", "is there hood ?"], "prompt": "Yellow {} has hood opened"}, {"index": 496, "image_id": 2345314, "entity": "truck", "caption": "Pickup truck has hood opened", "question": ["is there pickup truck ?", "is there hood ?"], "prompt": "Pickup {} has hood opened"}, {"index": 497, "image_id": 2345212, "entity": "truck", "caption": "long carpets rolls at back of truck", "question": ["are there long carpets rolls ?", "is there back ?", "is there truck ?"], "prompt": "long carpets rolls at back of {}"}, {"index": 498, "image_id": 2345212, "entity": "truck", "caption": "gray car behing the truck", "question": ["is there gray car ?", "is there the truck ?"], "prompt": "gray car behing the {}"}, {"index": 499, "image_id": 2345212, "entity": "truck", "caption": "household furnishings strapped onto a truck bed", "question": ["are there household furnishings ?", "is there a truck bed ?"], "prompt": "household furnishings strapped onto a {} bed"}, {"index": 500, "image_id": 2345032, "entity": "truck", "caption": "The word SCANIA on the front of a truck. ", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there a truck ?"], "prompt": "The word SCANIA on the front of a {}. "}, {"index": 501, "image_id": 2344888, "entity": "truck", "caption": "antique truck stuck in the mud", "question": ["is there antique truck ?", "is there the mud ?"], "prompt": "antique {} stuck in the mud"}, {"index": 502, "image_id": 2343592, "entity": "truck", "caption": "Sign on truck is Avitat", "question": ["is there sign ?", "is there truck ?"], "prompt": "Sign on {} is Avitat"}, {"index": 503, "image_id": 2342746, "entity": "truck", "caption": "a cheverolet emblem is on the truck", "question": ["is there a cheverolet emblem ?", "is there the truck ?"], "prompt": "a cheverolet emblem is on the {}"}, {"index": 504, "image_id": 2342137, "entity": "truck", "caption": "vertical door handle on delivery truck", "question": ["is there vertical door ?", "is there delivery truck ?"], "prompt": "vertical door handle on delivery {}"}, {"index": 505, "image_id": 2341556, "entity": "truck", "caption": "a truck is outside", "question": ["is there a truck ?"], "prompt": "a {} is outside"}, {"index": 506, "image_id": 2341556, "entity": "truck", "caption": "the truck has a brand name painted on ", "question": ["is there the truck ?", "is there a brand name ?"], "prompt": "the {} has a brand name painted on "}, {"index": 507, "image_id": 2341337, "entity": "truck", "caption": "gravel is on the train trucks ", "question": ["is there gravel ?", "are there the train trucks ?"], "prompt": "gravel is on the train {}s "}, {"index": 508, "image_id": 2341077, "entity": "truck", "caption": "two people standing behind a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "two people standing behind a {}"}, {"index": 509, "image_id": 2340746, "entity": "truck", "caption": "truck has black wheels", "question": ["is there truck ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 510, "image_id": 2340746, "entity": "truck", "caption": "man shoving an animal into a truck", "question": ["is there man ?", "is there an animal ?", "is there a truck ?"], "prompt": "man shoving an animal into a {}"}, {"index": 511, "image_id": 2340595, "entity": "truck", "caption": "a wheel turned under the truck", "question": ["is there a wheel ?", "is there the truck ?"], "prompt": "a wheel turned under the {}"}, {"index": 512, "image_id": 2340429, "entity": "truck", "caption": "Person walking near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking near {}."}, {"index": 513, "image_id": 2340353, "entity": "truck", "caption": "a black shirt draped over a truck", "question": ["is there a black shirt ?", "is there a truck ?"], "prompt": "a black shirt draped over a {}"}, {"index": 514, "image_id": 2340353, "entity": "truck", "caption": "Tee shirt draped on side of truck", "question": ["is there tee shirt ?", "is there side ?", "is there truck ?"], "prompt": "Tee shirt draped on side of {}"}, {"index": 515, "image_id": 2339539, "entity": "truck", "caption": "person driving the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "person driving the {}"}, {"index": 516, "image_id": 2339539, "entity": "truck", "caption": "the truck has a black trailer bed ", "question": ["is there the truck ?", "is there a black trailer bed ?"], "prompt": "the {} has a black trailer bed "}, {"index": 517, "image_id": 2339539, "entity": "truck", "caption": "he is driving the truck ", "question": ["is there the truck ?"], "prompt": "he is driving the {} "}, {"index": 518, "image_id": 2339412, "entity": "truck", "caption": "The old truck has wood boards on it.", "question": ["is there the old truck ?", "are there wood boards ?"], "prompt": "The old {} has wood boards on it."}, {"index": 519, "image_id": 2339139, "entity": "truck", "caption": "Rear left tire on a tow truck", "question": ["is there rear left tire ?", "is there a tow truck ?"], "prompt": "Rear left tire on a tow {}"}, {"index": 520, "image_id": 2339139, "entity": "truck", "caption": "Front left head light on a truck", "question": ["is there front left head light ?", "is there a truck ?"], "prompt": "Front left head light on a {}"}, {"index": 521, "image_id": 2339139, "entity": "truck", "caption": "The door handle on a truck", "question": ["is there the door ?", "is there a truck ?"], "prompt": "The door handle on a {}"}, {"index": 522, "image_id": 2338619, "entity": "truck", "caption": "the guy is on top of the fire truck ", "question": ["is there the guy ?", "is there top ?", "is there the fire truck ?"], "prompt": "the guy is on top of the fire {} "}, {"index": 523, "image_id": 2337684, "entity": "truck", "caption": "the folgers container under the truck", "question": ["are there the folgers container ?", "is there the truck ?"], "prompt": "the folgers container under the {}"}, {"index": 524, "image_id": 2337628, "entity": "truck", "caption": "the truck is full of dogs", "question": ["is there the truck ?", "are there dogs ?"], "prompt": "the {} is full of dogs"}, {"index": 525, "image_id": 2337628, "entity": "truck", "caption": "the truck has photos of dogs", "question": ["is there the truck ?", "are there photos ?", "are there dogs ?"], "prompt": "the {} has photos of dogs"}, {"index": 526, "image_id": 2337628, "entity": "truck", "caption": "the truck has wheels", "question": ["is there the truck ?", "are there wheels ?"], "prompt": "the {} has wheels"}, {"index": 527, "image_id": 2336350, "entity": "truck", "caption": "the trees are behind the truck", "question": ["are there the trees ?", "is there the truck ?"], "prompt": "the trees are behind the {}"}, {"index": 528, "image_id": 2336187, "entity": "truck", "caption": "The word Mackinnon's on the front of a truck", "question": ["is there the word ?", "is there the front ?", "is there a truck ?"], "prompt": "The word Mackinnon's on the front of a {}"}, {"index": 529, "image_id": 2335976, "entity": "truck", "caption": "back door on truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "back door on {} is open"}, {"index": 530, "image_id": 2335976, "entity": "truck", "caption": "man is walking toward truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is walking toward {}"}, {"index": 531, "image_id": 2335976, "entity": "truck", "caption": "The door of the truck is open.", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door of the {} is open."}, {"index": 532, "image_id": 2335976, "entity": "truck", "caption": "Garbage can by the truck.", "question": ["is there garbage ?", "is there the truck ?"], "prompt": "Garbage can by the {}."}, {"index": 533, "image_id": 2335976, "entity": "truck", "caption": "food truck menu painted on side of truck", "question": ["is there food truck menu ?", "is there side ?", "is there truck ?"], "prompt": "food {} menu painted on side of {}"}, {"index": 534, "image_id": 2335337, "entity": "truck", "caption": "Menu written on side of truck.", "question": ["is there menu ?", "is there side ?", "is there truck ?"], "prompt": "Menu written on side of {}."}, {"index": 535, "image_id": 2335292, "entity": "truck", "caption": "The motorcycle is in front of the truck", "question": ["is there the motorcycle ?", "is there front ?", "is there the truck ?"], "prompt": "The motorcycle is in front of the {}"}, {"index": 536, "image_id": 2335292, "entity": "truck", "caption": "The truck has a cardboard box in the bed", "question": ["is there the truck ?", "is there a cardboard box ?", "is there the bed ?"], "prompt": "The {} has a cardboard box in the bed"}, {"index": 537, "image_id": 2333358, "entity": "truck", "caption": "woman waiting for food at truck window", "question": ["is there woman ?", "is there food ?", "is there truck window ?"], "prompt": "woman waiting for food at {} window"}, {"index": 538, "image_id": 2333358, "entity": "truck", "caption": "a food truck is on the street", "question": ["is there a food truck ?", "is there the street ?"], "prompt": "a food {} is on the street"}, {"index": 539, "image_id": 2333348, "entity": "truck", "caption": "two men standing next to each other in front of truck", "question": ["are there two men ?", "is there front ?", "is there truck ?"], "prompt": "two men standing next to each other in front of {}"}, {"index": 540, "image_id": 2332754, "entity": "truck", "caption": "A wooden pole is behind the truck", "question": ["is there a wooden pole ?", "is there the truck ?"], "prompt": "A wooden pole is behind the {}"}, {"index": 541, "image_id": 2332750, "entity": "truck", "caption": "A fold up chair stands next to the truck", "question": ["is there a fold up chair ?", "is there the truck ?"], "prompt": "A fold up chair stands next to the {}"}, {"index": 542, "image_id": 2331746, "entity": "truck", "caption": "a truck travels in front the beach", "question": ["is there a truck ?", "is there front ?"], "prompt": "a {} travels in front the beach"}, {"index": 543, "image_id": 2331430, "entity": "truck", "caption": "this guy is on the back of the truck", "question": ["is there this guy ?", "is there the back ?", "is there the truck ?"], "prompt": "this guy is on the back of the {}"}, {"index": 544, "image_id": 2330313, "entity": "truck", "caption": "A flap is visible on a truck.", "question": ["is there a flap ?", "is there a truck ?"], "prompt": "A flap is visible on a {}."}, {"index": 545, "image_id": 2329413, "entity": "truck", "caption": "Web URL painted in black letters on white truck", "question": ["is there web url ?", "are there black letters ?", "is there white truck ?"], "prompt": "Web URL painted in black letters on white {}"}, {"index": 546, "image_id": 2328751, "entity": "truck", "caption": "a person is driving the truck ", "question": ["is there a person ?", "is there the truck ?"], "prompt": "a person is driving the {} "}, {"index": 547, "image_id": 2328751, "entity": "truck", "caption": "The truck has a fire extinguisher.", "question": ["is there the truck ?", "is there a fire extinguisher ?"], "prompt": "The {} has a fire extinguisher."}, {"index": 548, "image_id": 2328751, "entity": "truck", "caption": "The truck has a horn.", "question": ["is there the truck ?", "is there a horn ?"], "prompt": "The {} has a horn."}, {"index": 549, "image_id": 2328751, "entity": "truck", "caption": "The horn is on the truck roof.", "question": ["is there the horn ?", "is there the truck roof ?"], "prompt": "The horn is on the {} roof."}, {"index": 550, "image_id": 2328751, "entity": "truck", "caption": "The truck has a white grill.", "question": ["is there the truck ?", "is there a white grill ?"], "prompt": "The {} has a white grill."}, {"index": 551, "image_id": 2328751, "entity": "truck", "caption": "The truck has an orange light.", "question": ["is there the truck ?", "is there an orange light ?"], "prompt": "The {} has an orange light."}, {"index": 552, "image_id": 2328751, "entity": "truck", "caption": "The truck has a headlight.", "question": ["is there the truck ?", "is there a headlight ?"], "prompt": "The {} has a headlight."}, {"index": 553, "image_id": 2328751, "entity": "truck", "caption": "The truck has a big tire.", "question": ["is there the truck ?", "is there a big tire ?"], "prompt": "The {} has a big tire."}, {"index": 554, "image_id": 2327911, "entity": "truck", "caption": "The truck has a black dump bed.", "question": ["is there the truck ?", "is there a black dump bed ?"], "prompt": "The {} has a black dump bed."}, {"index": 555, "image_id": 2327911, "entity": "truck", "caption": "The truck cab has orange lights.", "question": ["is there the truck cab ?", "are there orange lights ?"], "prompt": "The {} cab has orange lights."}, {"index": 556, "image_id": 2327911, "entity": "truck", "caption": "The truck has a tire.", "question": ["is there the truck ?", "is there a tire ?"], "prompt": "The {} has a tire."}, {"index": 557, "image_id": 2325925, "entity": "truck", "caption": "The truck has the number 20 on its side", "question": ["is there the truck ?", "is there the number ?", "is there its side ?"], "prompt": "The {} has the number 20 on its side"}, {"index": 558, "image_id": 2325611, "entity": "truck", "caption": "the truck has white writing", "question": ["is there the truck ?", "is there white writing ?"], "prompt": "the {} has white writing"}, {"index": 559, "image_id": 2324486, "entity": "truck", "caption": "The license plate is on the back of truck", "question": ["is there the license plate ?", "is there the back ?", "is there truck ?"], "prompt": "The license plate is on the back of {}"}, {"index": 560, "image_id": 2324486, "entity": "truck", "caption": "The word DIESEL on back of truck. ", "question": ["is there the word diesel ?", "is there back ?", "is there truck ?"], "prompt": "The word DIESEL on back of {}. "}, {"index": 561, "image_id": 2323321, "entity": "truck", "caption": "the graffiti on the truck is green", "question": ["is there the graffiti ?", "is there the truck ?"], "prompt": "the graffiti on the {} is green"}, {"index": 562, "image_id": 2323321, "entity": "truck", "caption": "the truck is on the street", "question": ["is there the truck ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 563, "image_id": 2323321, "entity": "truck", "caption": "a truck that has graffiti", "question": ["is there a truck ?"], "prompt": "a {} that has graffiti"}, {"index": 564, "image_id": 2323077, "entity": "truck", "caption": "Crane lowering truck onto truck", "question": ["is there truck ?", "is there truck ?"], "prompt": "Crane lowering {} onto {}"}, {"index": 565, "image_id": 2322225, "entity": "truck", "caption": "Mud flaps on a truck.", "question": ["are there mud flaps ?", "is there a truck ?"], "prompt": "Mud flaps on a {}."}, {"index": 566, "image_id": 2322197, "entity": "truck", "caption": "Ford emblem on a truck", "question": ["is there a truck ?"], "prompt": "Ford emblem on a {}"}, {"index": 567, "image_id": 2321380, "entity": "truck", "caption": "tarp covering back of truck", "question": ["is there tarp ?", "is there truck ?"], "prompt": "tarp covering back of {}"}, {"index": 568, "image_id": 2321380, "entity": "truck", "caption": "drivers side door of truck", "question": ["are there drivers ?", "is there door ?", "is there truck ?"], "prompt": "drivers side door of {}"}, {"index": 569, "image_id": 2320291, "entity": "truck", "caption": "man walking in front of red truck", "question": ["is there man ?", "is there front ?", "is there red truck ?"], "prompt": "man walking in front of red {}"}, {"index": 570, "image_id": 2319823, "entity": "truck", "caption": "the light on the truck is on ", "question": ["is there the light ?", "is there the truck ?"], "prompt": "the light on the {} is on "}, {"index": 571, "image_id": 2319676, "entity": "truck", "caption": "The truck has a white cab.", "question": ["is there the truck ?", "is there a white cab ?"], "prompt": "The {} has a white cab."}, {"index": 572, "image_id": 2319676, "entity": "truck", "caption": "The truck has a windshield wiper.", "question": ["is there the truck ?", "is there a windshield wiper ?"], "prompt": "The {} has a windshield wiper."}, {"index": 573, "image_id": 2319676, "entity": "truck", "caption": "The driver of the truck is a man.", "question": ["is there the driver ?", "is there the truck ?", "is there a man ?"], "prompt": "The driver of the {} is a man."}, {"index": 574, "image_id": 2319556, "entity": "truck", "caption": "Realistic strawberries painted on truck.", "question": ["are there realistic strawberries ?", "is there truck ?"], "prompt": "Realistic strawberries painted on {}."}, {"index": 575, "image_id": 2319556, "entity": "truck", "caption": "Realistic blackberries painted on truck", "question": ["are there realistic blackberries ?", "is there truck ?"], "prompt": "Realistic blackberries painted on {}"}, {"index": 576, "image_id": 2319556, "entity": "truck", "caption": "Very nice shades of purple painted on truck.", "question": ["are there very nice shades ?", "is there purple ?", "is there truck ?"], "prompt": "Very nice shades of purple painted on {}."}, {"index": 577, "image_id": 2319540, "entity": "truck", "caption": "wagon behind pick up truck", "question": ["is there wagon ?", "is there truck ?"], "prompt": "wagon behind pick up {}"}, {"index": 578, "image_id": 2319280, "entity": "truck", "caption": "PErson sitting in the cab of a truck", "question": ["is there person ?", "is there the cab ?", "is there a truck ?"], "prompt": "PErson sitting in the cab of a {}"}, {"index": 579, "image_id": 2319280, "entity": "truck", "caption": "three people part way under the truck", "question": ["are there three people ?", "is there the truck ?"], "prompt": "three people part way under the {}"}, {"index": 580, "image_id": 2318538, "entity": "truck", "caption": "the dirt piled in the bed of the truck", "question": ["is there the dirt ?", "is there the bed ?", "is there the truck ?"], "prompt": "the dirt piled in the bed of the {}"}, {"index": 581, "image_id": 2317984, "entity": "truck", "caption": "The truck has two plows on it.", "question": ["is there the truck ?", "are there two plows ?"], "prompt": "The {} has two plows on it."}, {"index": 582, "image_id": 2317934, "entity": "truck", "caption": "the company that built the firetruck", "question": ["is there the company ?", "is there the firetruck ?"], "prompt": "the company that built the fire{}"}, {"index": 583, "image_id": 2317726, "entity": "truck", "caption": "the people are climbing the truck", "question": ["are there the people ?", "is there the truck ?"], "prompt": "the people are climbing the {}"}, {"index": 584, "image_id": 2317513, "entity": "truck", "caption": "an old truck sits in a yard", "question": ["is there an old truck ?", "is there a yard ?"], "prompt": "an old {} sits in a yard"}, {"index": 585, "image_id": 2317513, "entity": "truck", "caption": "Grill work on front of truck.", "question": ["is there grill work ?", "is there front ?", "is there truck ?"], "prompt": "Grill work on front of {}."}, {"index": 586, "image_id": 2317513, "entity": "truck", "caption": "Old fashion headlight on front of truck.", "question": ["is there old fashion headlight ?", "is there front ?", "is there truck ?"], "prompt": "Old fashion headlight on front of {}."}, {"index": 587, "image_id": 2317513, "entity": "truck", "caption": "Front right tire flat on truck.", "question": ["is there right tire ?", "is there truck ?"], "prompt": "Front right tire flat on {}."}, {"index": 588, "image_id": 2317240, "entity": "truck", "caption": "White and black mud flaps on back of truck.", "question": ["are there white and black mud flaps ?", "is there back ?", "is there truck ?"], "prompt": "White and black mud flaps on back of {}."}, {"index": 589, "image_id": 2317240, "entity": "truck", "caption": "large black tire mounted behind truck cab", "question": ["is there large black tire ?", "is there truck cab ?"], "prompt": "large black tire mounted behind {} cab"}, {"index": 590, "image_id": 2316849, "entity": "truck", "caption": "he is leaning on the truck ", "question": ["is there the truck ?"], "prompt": "he is leaning on the {} "}, {"index": 591, "image_id": 2316849, "entity": "truck", "caption": "the truck grill is black", "question": ["is there the truck grill ?"], "prompt": "the {} grill is black"}, {"index": 592, "image_id": 2316663, "entity": "truck", "caption": "cord wrapped over items in truck and secured on sides", "question": ["is there cord ?", "are there items ?", "is there truck ?", "are there sides ?"], "prompt": "cord wrapped over items in {} and secured on sides"}, {"index": 593, "image_id": 2316663, "entity": "truck", "caption": "Trailer hitch on a truck", "question": ["is there trailer hitch ?", "is there a truck ?"], "prompt": "Trailer hitch on a {}"}, {"index": 594, "image_id": 2316538, "entity": "truck", "caption": "a rack mounted on top of the truck cab", "question": ["is there a rack ?", "is there top ?", "is there the truck cab ?"], "prompt": "a rack mounted on top of the {} cab"}, {"index": 595, "image_id": 2316538, "entity": "truck", "caption": "truck sits on a pockmarked street", "question": ["is there truck ?", "is there a pockmarked street ?"], "prompt": "{} sits on a pockmarked street"}, {"index": 596, "image_id": 2315863, "entity": "truck", "caption": "door handle on the truck", "question": ["is there door ?", "is there the truck ?"], "prompt": "door handle on the {}"}, {"index": 597, "image_id": 2315632, "entity": "truck", "caption": "a woman sititn gon truck", "question": ["is there a woman sititn ?", "is there truck ?"], "prompt": "a woman sititn gon {}"}, {"index": 598, "image_id": 2315484, "entity": "truck", "caption": "chrome plated grill on the front of a truck", "question": ["is there chrome plated grill ?", "is there the front ?", "is there a truck ?"], "prompt": "chrome plated grill on the front of a {}"}, {"index": 599, "image_id": 2414401, "entity": "truck", "caption": "the truck has a red brakelight", "question": ["is there the truck ?", "is there a red brakelight ?"], "prompt": "the {} has a red brakelight"}, {"index": 600, "image_id": 2414401, "entity": "truck", "caption": "the truck is carrying a ladder ", "question": ["is there the truck ?", "is there a ladder ?"], "prompt": "the {} is carrying a ladder "}, {"index": 601, "image_id": 2414213, "entity": "truck", "caption": "the door handle on the truck is silver", "question": ["is there the door ?", "is there the truck ?"], "prompt": "the door handle on the {} is silver"}, {"index": 602, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver mirror", "question": ["is there the blue truck ?", "is there a silver mirror ?"], "prompt": "the blue {} has a silver mirror"}, {"index": 603, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver stripe", "question": ["is there the blue truck ?", "is there a silver stripe ?"], "prompt": "the blue {} has a silver stripe"}, {"index": 604, "image_id": 2414213, "entity": "truck", "caption": "a dog is looking out truck window", "question": ["is there a dog ?"], "prompt": "a dog is looking out {} window"}, {"index": 605, "image_id": 2414213, "entity": "truck", "caption": "Silverado emblem on the side of the truck", "question": ["is there silverado emblem ?", "is there the side ?", "is there the truck ?"], "prompt": "Silverado emblem on the side of the {}"}, {"index": 606, "image_id": 2414213, "entity": "truck", "caption": "Door handle on the side of the truck", "question": ["is there door ?", "is there the side ?", "is there the truck ?"], "prompt": "Door handle on the side of the {}"}, {"index": 607, "image_id": 2414197, "entity": "truck", "caption": "The truck carries equipment. ", "question": ["is there the truck ?", "is there equipment ?"], "prompt": "The {} carries equipment. "}, {"index": 608, "image_id": 2414197, "entity": "truck", "caption": "The truck carries a hose.", "question": ["is there the truck ?", "is there a hose ?"], "prompt": "The {} carries a hose."}, {"index": 609, "image_id": 2414197, "entity": "truck", "caption": "The truck carries cables. ", "question": ["is there the truck ?", "are there cables ?"], "prompt": "The {} carries cables. "}, {"index": 610, "image_id": 2414197, "entity": "truck", "caption": "The truck's front has red stripes.", "question": ["is there the truck's front ?", "are there red stripes ?"], "prompt": "The {}'s front has red stripes."}, {"index": 611, "image_id": 2414197, "entity": "truck", "caption": "Three of the truck's tires are visible.", "question": ["are there the truck's tires ?"], "prompt": "Three of the {}'s tires are visible."}, {"index": 612, "image_id": 2414142, "entity": "truck", "caption": "the truck says brennstoffe on the back", "question": ["is there the truck ?", "is there the back ?"], "prompt": "the {} says brennstoffe on the back"}, {"index": 613, "image_id": 2414142, "entity": "truck", "caption": "a car is on the road in front of the truck", "question": ["is there a car ?", "is there the road ?", "is there front ?", "is there the truck ?"], "prompt": "a car is on the road in front of the {}"}, {"index": 614, "image_id": 2414142, "entity": "truck", "caption": "the back of the truck says man", "question": ["is there the back ?", "is there the truck ?", "is there man ?"], "prompt": "the back of the {} says man"}, {"index": 615, "image_id": 2413814, "entity": "truck", "caption": "Sign written in white on side of truck.", "question": ["is there sign ?", "is there side ?", "is there truck ?"], "prompt": "Sign written in white on side of {}."}, {"index": 616, "image_id": 2413814, "entity": "truck", "caption": "A white SUV is behind the truck ", "question": ["is there the truck ?"], "prompt": "A white SUV is behind the {} "}, {"index": 617, "image_id": 2413579, "entity": "truck", "caption": "truck has chrome wheelie bar on back", "question": ["is there truck ?", "is there chrome wheelie bar ?"], "prompt": "{} has chrome wheelie bar on back"}, {"index": 618, "image_id": 2413408, "entity": "truck", "caption": "The truck has yellow hubcaps.", "question": ["is there the truck ?", "are there yellow hubcaps ?"], "prompt": "The {} has yellow hubcaps."}, {"index": 619, "image_id": 2413408, "entity": "truck", "caption": "The truck has two headlights.", "question": ["is there the truck ?", "are there two headlights ?"], "prompt": "The {} has two headlights."}, {"index": 620, "image_id": 2413104, "entity": "truck", "caption": "a mechanical arm sits on top of a truck", "question": ["is there a mechanical arm ?", "is there top ?", "is there a truck ?"], "prompt": "a mechanical arm sits on top of a {}"}, {"index": 621, "image_id": 2413104, "entity": "truck", "caption": "This truck has 6 wheels", "question": ["is there this truck ?", "are there 6 wheels ?"], "prompt": "This {} has 6 wheels"}, {"index": 622, "image_id": 2413104, "entity": "truck", "caption": "This door enters the truck", "question": ["is there this door ?", "is there the truck ?"], "prompt": "This door enters the {}"}, {"index": 623, "image_id": 2413104, "entity": "truck", "caption": "Trees are next to the truck", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are next to the {}"}, {"index": 624, "image_id": 2413104, "entity": "truck", "caption": "man standing next to a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man standing next to a {}"}, {"index": 625, "image_id": 2412942, "entity": "truck", "caption": "the truck has large tyres", "question": ["is there the truck ?", "are there large tyres ?"], "prompt": "the {} has large tyres"}, {"index": 626, "image_id": 2412792, "entity": "truck", "caption": "the truck is casting a shadow underneath", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow underneath"}, {"index": 627, "image_id": 2412792, "entity": "truck", "caption": "the truck has a crane on it's back", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane on it's back"}, {"index": 628, "image_id": 2412792, "entity": "truck", "caption": "the side of the truck has Chinese lettering", "question": ["is there the side ?", "is there the truck ?", "is there chinese lettering ?"], "prompt": "the side of the {} has Chinese lettering"}, {"index": 629, "image_id": 2412792, "entity": "truck", "caption": "a palm tree is behind the truck", "question": ["is there a palm tree ?", "is there the truck ?"], "prompt": "a palm tree is behind the {}"}, {"index": 630, "image_id": 2412792, "entity": "truck", "caption": "a white column is on the right of the truck", "question": ["is there a white column ?", "is there the right ?", "is there the truck ?"], "prompt": "a white column is on the right of the {}"}, {"index": 631, "image_id": 2412792, "entity": "truck", "caption": "truck has a crane on back", "question": ["is there truck ?", "is there a crane ?"], "prompt": "{} has a crane on back"}, {"index": 632, "image_id": 2412792, "entity": "truck", "caption": "Roof of truck is red", "question": ["is there roof ?", "is there truck ?"], "prompt": "Roof of {} is red"}, {"index": 633, "image_id": 2412603, "entity": "truck", "caption": "Man is by a red Toyota truck", "question": ["is there man ?", "is there a red toyota truck ?"], "prompt": "Man is by a red Toyota {}"}, {"index": 634, "image_id": 2412488, "entity": "truck", "caption": "a person works on a truck", "question": ["is there a person ?", "is there a truck ?"], "prompt": "a person works on a {}"}, {"index": 635, "image_id": 2412483, "entity": "truck", "caption": "woman in purple shirt looking at truck", "question": ["is there woman ?", "is there purple shirt ?", "is there truck ?"], "prompt": "woman in purple shirt looking at {}"}, {"index": 636, "image_id": 2412483, "entity": "truck", "caption": "man in black shirt taking picture of truck", "question": ["is there man ?", "is there black shirt ?", "is there picture ?", "is there truck ?"], "prompt": "man in black shirt taking picture of {}"}, {"index": 637, "image_id": 2412186, "entity": "truck", "caption": "Front headlight on the red truck.", "question": ["is there front headlight ?", "is there the red truck ?"], "prompt": "Front headlight on the red {}."}, {"index": 638, "image_id": 2412186, "entity": "truck", "caption": "canoe tied on top of truck", "question": ["is there canoe ?", "is there top ?", "is there truck ?"], "prompt": "canoe tied on top of {}"}, {"index": 639, "image_id": 2412186, "entity": "truck", "caption": "truck logo painted on fender", "question": ["is there truck logo ?", "is there fender ?"], "prompt": "{} logo painted on fender"}, {"index": 640, "image_id": 2412161, "entity": "truck", "caption": "The truck has a side mirror.", "question": ["is there the truck ?", "is there a side mirror ?"], "prompt": "The {} has a side mirror."}, {"index": 641, "image_id": 2412161, "entity": "truck", "caption": "Rust surrounds truck headlight. ", "question": ["is there rust ?", "is there truck headlight ?"], "prompt": "Rust surrounds {} headlight. "}, {"index": 642, "image_id": 2415675, "entity": "truck", "caption": "these are truck wheels", "question": ["are there truck wheels ?"], "prompt": "these are {} wheels"}, {"index": 643, "image_id": 2416928, "entity": "truck", "caption": "Yellow truck has big wheels ", "question": ["is there yellow truck ?", "are there big wheels ?"], "prompt": "Yellow {} has big wheels "}, {"index": 644, "image_id": 2417877, "entity": "truck", "caption": "Strange artwork is on the truck ", "question": ["is there strange artwork ?", "is there the truck ?"], "prompt": "Strange artwork is on the {} "}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03832673.json b/data/imagenet/compositions/prompts/n03832673.json
new file mode 100644
index 0000000000000000000000000000000000000000..eb6f3cc340447bec06e9d0d2e41c4e6a28c4ebc4
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03832673.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 1670, "entity": "computer", "caption": "the computer is sitting on a white desk", "question": ["is there the computer ?", "is there a white desk ?"], "prompt": "the {} is sitting on a white desk"}, {"index": 1, "image_id": 2413614, "entity": "computer", "caption": "Audio input on laptop computer.", "question": ["is there audio input ?", "is there laptop computer ?"], "prompt": "Audio input on laptop {}."}, {"index": 2, "image_id": 2411787, "entity": "computer", "caption": "Mouse of computer is black and tan", "question": ["is there computer ?"], "prompt": "Mouse of {} is black and tan"}, {"index": 3, "image_id": 2411787, "entity": "computer", "caption": "Screen of computer is purple and white", "question": ["is there screen ?", "is there computer ?"], "prompt": "Screen of {} is purple and white"}, {"index": 4, "image_id": 2411787, "entity": "computer", "caption": "The computer sits on a table. ", "question": ["is there the computer ?", "is there a table ?"], "prompt": "The {} sits on a table. "}, {"index": 5, "image_id": 2411787, "entity": "computer", "caption": "The computer has the Apple logo.", "question": ["is there the computer ?", "is there the apple logo ?"], "prompt": "The {} has the Apple logo."}, {"index": 6, "image_id": 2411787, "entity": "computer", "caption": "The computer has two monitors. ", "question": ["is there the computer ?", "are there two monitors ?"], "prompt": "The {} has two monitors. "}, {"index": 7, "image_id": 2411787, "entity": "computer", "caption": "The computer has speakers. ", "question": ["is there the computer ?", "are there speakers ?"], "prompt": "The {} has speakers. "}, {"index": 8, "image_id": 2411787, "entity": "computer", "caption": "The computer has a mouse.", "question": ["is there the computer ?", "is there a mouse ?"], "prompt": "The {} has a mouse."}, {"index": 9, "image_id": 2409573, "entity": "computer", "caption": "The computer screen is on", "question": ["is there the computer screen ?"], "prompt": "The {} screen is on"}, {"index": 10, "image_id": 2409573, "entity": "computer", "caption": "The giant can next to the computer", "question": ["is there the giant ?", "is there the computer ?"], "prompt": "The giant can next to the {}"}, {"index": 11, "image_id": 2407218, "entity": "computer", "caption": "This is a smartphone that this man has attached to his computer.", "question": ["is there a smartphone ?", "is there this man ?", "is there his computer ?"], "prompt": "This is a smartphone that this man has attached to his {}."}, {"index": 12, "image_id": 2404050, "entity": "computer", "caption": "The computer has a silver bolt", "question": ["is there the computer ?", "is there a silver bolt ?"], "prompt": "The {} has a silver bolt"}, {"index": 13, "image_id": 2397913, "entity": "computer", "caption": "Man is looking at the computer", "question": ["is there man ?", "is there the computer ?"], "prompt": "Man is looking at the {}"}, {"index": 14, "image_id": 2396611, "entity": "computer", "caption": "a cat resting it's head on a computer.", "question": ["is there a cat ?", "is there head ?", "is there a computer ?"], "prompt": "a cat resting it's head on a {}."}, {"index": 15, "image_id": 2396611, "entity": "computer", "caption": "a cats paw on a computer.", "question": ["are there a cats ?", "is there a computer ?"], "prompt": "a cats paw on a {}."}, {"index": 16, "image_id": 2391965, "entity": "computer", "caption": "computer set up with monitor", "question": ["is there computer ?", "is there monitor ?"], "prompt": "{} set up with monitor"}, {"index": 17, "image_id": 2389431, "entity": "computer", "caption": "wires pluged on computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires pluged on {}"}, {"index": 18, "image_id": 2388062, "entity": "computer", "caption": "Power cord plugged into the computer.", "question": ["is there power cord ?", "is there the computer ?"], "prompt": "Power cord plugged into the {}."}, {"index": 19, "image_id": 2384108, "entity": "computer", "caption": "computer speaker laying sidways", "question": ["is there computer speaker ?"], "prompt": "{} speaker laying sidways"}, {"index": 20, "image_id": 2380641, "entity": "computer", "caption": "mouse of computer is ergonomic", "question": ["is there computer ?"], "prompt": "mouse of {} is ergonomic"}, {"index": 21, "image_id": 2380272, "entity": "computer", "caption": "computer mouse sitting next to laptop computer", "question": ["is there computer mouse ?", "is there laptop computer ?"], "prompt": "{} mouse sitting next to laptop {}"}, {"index": 22, "image_id": 2377814, "entity": "computer", "caption": "The computer the cat is standing on", "question": ["is there the computer ?", "is there the cat ?"], "prompt": "The {} the cat is standing on"}, {"index": 23, "image_id": 2375150, "entity": "computer", "caption": "the girl is typing on the computer", "question": ["is there the girl ?", "is there the computer ?"], "prompt": "the girl is typing on the {}"}, {"index": 24, "image_id": 2372868, "entity": "computer", "caption": "Cord plug ins for computer.", "question": ["are there cord plug ins ?", "is there computer ?"], "prompt": "Cord plug ins for {}."}, {"index": 25, "image_id": 2371612, "entity": "computer", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The dog is using the {} "}, {"index": 26, "image_id": 2371612, "entity": "computer", "caption": "The mouse pad is the middle of the computer ", "question": ["is there the mouse pad ?", "is there the middle ?", "is there the computer ?"], "prompt": "The mouse pad is the middle of the {} "}, {"index": 27, "image_id": 2370068, "entity": "computer", "caption": "tree leaves on computer screen", "question": ["is there tree ?", "is there computer screen ?"], "prompt": "tree leaves on {} screen"}, {"index": 28, "image_id": 2364993, "entity": "computer", "caption": "Indicator lights on a laptop computer", "question": ["are there indicator lights ?", "is there a laptop computer ?"], "prompt": "Indicator lights on a laptop {}"}, {"index": 29, "image_id": 2364841, "entity": "computer", "caption": "wires blurry behind computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires blurry behind {}"}, {"index": 30, "image_id": 2364534, "entity": "computer", "caption": "The computer stand so the computer isn't falling over.", "question": ["is there the computer ?", "is there the computer ?"], "prompt": "The {} stand so the {} isn't falling over."}, {"index": 31, "image_id": 2361519, "entity": "computer", "caption": "number keypad for computer", "question": ["is there number keypad ?", "is there computer ?"], "prompt": "number keypad for {}"}, {"index": 32, "image_id": 2359377, "entity": "computer", "caption": "Papers sit next to computer", "question": ["are there papers ?", "is there computer ?"], "prompt": "Papers sit next to {}"}, {"index": 33, "image_id": 2358048, "entity": "computer", "caption": "The computer is on the log in screen.", "question": ["is there the computer ?", "is there the log ?", "is there screen ?"], "prompt": "The {} is on the log in screen."}, {"index": 34, "image_id": 2357136, "entity": "computer", "caption": "multiple objects are open on computer screen", "question": ["are there multiple objects ?", "is there computer screen ?"], "prompt": "multiple objects are open on {} screen"}, {"index": 35, "image_id": 2353879, "entity": "computer", "caption": "power wire plugged into computer", "question": ["is there power wire ?", "is there computer ?"], "prompt": "power wire plugged into {}"}, {"index": 36, "image_id": 2353456, "entity": "computer", "caption": "plug plugged into computer", "question": ["is there plug ?", "is there computer ?"], "prompt": "plug plugged into {}"}, {"index": 37, "image_id": 2351707, "entity": "computer", "caption": "the keyboard of the computer that which the cat is sitting on", "question": ["is there the keyboard ?", "is there the computer ?", "is there the cat ?"], "prompt": "the keyboard of the {} that which the cat is sitting on"}, {"index": 38, "image_id": 2348719, "entity": "computer", "caption": "White USB cord hanging from the computer.", "question": ["is there white usb cord ?", "is there the computer ?"], "prompt": "White USB cord hanging from the {}."}, {"index": 39, "image_id": 2347801, "entity": "computer", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The dog is next to a laptop {}"}, {"index": 40, "image_id": 2347039, "entity": "computer", "caption": "the plugs going into the computer", "question": ["are there the plugs ?", "is there the computer ?"], "prompt": "the plugs going into the {}"}, {"index": 41, "image_id": 2346356, "entity": "computer", "caption": "computer on table is open", "question": ["is there computer ?", "is there table ?"], "prompt": "{} on table is open"}, {"index": 42, "image_id": 2345231, "entity": "computer", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the dogs paws on on the {}"}, {"index": 43, "image_id": 2342983, "entity": "computer", "caption": "Cord plugged into the computer", "question": ["is there cord ?", "is there the computer ?"], "prompt": "Cord plugged into the {}"}, {"index": 44, "image_id": 2330099, "entity": "computer", "caption": "person is looking at the computer", "question": ["is there person ?", "is there the computer ?"], "prompt": "person is looking at the {}"}, {"index": 45, "image_id": 2326900, "entity": "computer", "caption": "a computer screen turned on", "question": ["is there a computer screen ?"], "prompt": "a {} screen turned on"}, {"index": 46, "image_id": 2326148, "entity": "computer", "caption": "Cat hiding behind a computer screen", "question": ["is there cat ?", "is there a computer screen ?"], "prompt": "Cat hiding behind a {} screen"}, {"index": 47, "image_id": 2322592, "entity": "computer", "caption": "white wire coming out of the nearest computer", "question": ["is there white wire ?", "is there the nearest computer ?"], "prompt": "white wire coming out of the nearest {}"}, {"index": 48, "image_id": 2317168, "entity": "computer", "caption": "objects piled up behind the computer", "question": ["are there objects ?", "is there the computer ?"], "prompt": "objects piled up behind the {}"}, {"index": 49, "image_id": 2414391, "entity": "computer", "caption": "the computer is sitting on a desk", "question": ["is there the computer ?", "is there a desk ?"], "prompt": "the {} is sitting on a desk"}, {"index": 50, "image_id": 2413201, "entity": "computer", "caption": "smooth wood table hold a computer", "question": ["is there smooth wood table ?", "is there a computer ?"], "prompt": "smooth wood table hold a {}"}, {"index": 51, "image_id": 2415366, "entity": "computer", "caption": "A computer is on a white desk", "question": ["is there a computer ?", "is there a white desk ?"], "prompt": "A {} is on a white desk"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03854065.json b/data/imagenet/compositions/prompts/n03854065.json
new file mode 100644
index 0000000000000000000000000000000000000000..2a15797b9fd375a4aa7008b4cf0854d44d470e7c
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03854065.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2409382, "entity": "keyboard", "caption": "fovari snack box is next to keyboard", "question": ["is there fovari snack box ?"], "prompt": "fovari snack box is next to {}"}, {"index": 1, "image_id": 2407477, "entity": "keyboard", "caption": "letter keys on a keyboard", "question": ["are there letter keys ?", "is there a keyboard ?"], "prompt": "letter keys on a {}"}, {"index": 2, "image_id": 2407440, "entity": "keyboard", "caption": "function keys F9-F12 on keyboard", "question": ["are there function keys ?", "are there f9-f12 ?", "is there keyboard ?"], "prompt": "function keys F9-F12 on {}"}, {"index": 3, "image_id": 2407440, "entity": "keyboard", "caption": "the bird is on the keyboard", "question": ["is there the bird ?", "is there the keyboard ?"], "prompt": "the bird is on the {}"}, {"index": 4, "image_id": 2407440, "entity": "keyboard", "caption": "the bird is biting the keyboard", "question": ["is there the bird ?", "is there the keyboard ?"], "prompt": "the bird is biting the {}"}, {"index": 5, "image_id": 2407440, "entity": "keyboard", "caption": "the keyboard has arrow keys", "question": ["is there the keyboard ?", "are there arrow keys ?"], "prompt": "the {} has arrow keys"}, {"index": 6, "image_id": 2406440, "entity": "keyboard", "caption": "person making music on keyboard.", "question": ["is there person ?", "is there music ?", "is there keyboard ?"], "prompt": "person making music on {}."}, {"index": 7, "image_id": 2406440, "entity": "keyboard", "caption": "music keys on keyboard.", "question": ["are there music keys ?", "is there keyboard ?"], "prompt": "music keys on {}."}, {"index": 8, "image_id": 2401771, "entity": "keyboard", "caption": "these are keyboard beside the goggles", "question": ["is there keyboard ?", "are there the goggles ?"], "prompt": "these are {} beside the goggles"}, {"index": 9, "image_id": 2401768, "entity": "keyboard", "caption": "the keyboard is on a table.", "question": ["is there the keyboard ?", "is there a table ?"], "prompt": "the {} is on a table."}, {"index": 10, "image_id": 2398332, "entity": "keyboard", "caption": "The desk the keyboard is on", "question": ["is there the desk ?", "is there the keyboard ?"], "prompt": "The desk the {} is on"}, {"index": 11, "image_id": 2398332, "entity": "keyboard", "caption": "The arrow keys on the keyboard", "question": ["are there the arrow keys ?", "is there the keyboard ?"], "prompt": "The arrow keys on the {}"}, {"index": 12, "image_id": 2396627, "entity": "keyboard", "caption": "Light shines on the keyboard.", "question": ["is there light ?", "is there the keyboard ?"], "prompt": "Light shines on the {}."}, {"index": 13, "image_id": 2396627, "entity": "keyboard", "caption": "The keyboard has several keys. ", "question": ["is there the keyboard ?", "are there several keys ?"], "prompt": "The {} has several keys. "}, {"index": 14, "image_id": 2396627, "entity": "keyboard", "caption": "The keyboard is on a table.", "question": ["is there the keyboard ?", "is there a table ?"], "prompt": "The {} is on a table."}, {"index": 15, "image_id": 2396627, "entity": "keyboard", "caption": "The keyboard has keys.", "question": ["is there the keyboard ?", "are there keys ?"], "prompt": "The {} has keys."}, {"index": 16, "image_id": 2396627, "entity": "keyboard", "caption": "The keyboard is on the table.", "question": ["is there the keyboard ?", "is there the table ?"], "prompt": "The {} is on the table."}, {"index": 17, "image_id": 2396627, "entity": "keyboard", "caption": "Two shadows are on the keyboard.", "question": ["are there two shadows ?", "is there the keyboard ?"], "prompt": "Two shadows are on the {}."}, {"index": 18, "image_id": 2396627, "entity": "keyboard", "caption": "part of keyboard is in the dark", "question": ["is there part ?", "is there keyboard ?", "is there the dark ?"], "prompt": "part of {} is in the dark"}, {"index": 19, "image_id": 2396627, "entity": "keyboard", "caption": "keyboard is on a wood table", "question": ["is there keyboard ?", "is there a wood table ?"], "prompt": "{} is on a wood table"}, {"index": 20, "image_id": 2396627, "entity": "keyboard", "caption": "a shadow cast on keyboard", "question": ["is there a shadow ?", "is there keyboard ?"], "prompt": "a shadow cast on {}"}, {"index": 21, "image_id": 2393736, "entity": "keyboard", "caption": "black enter key on keyboard", "question": ["is there key ?", "is there keyboard ?"], "prompt": "black enter key on {}"}, {"index": 22, "image_id": 2392555, "entity": "keyboard", "caption": "Silver mouse is resting on keyboard.", "question": ["is there keyboard ?"], "prompt": "Silver mouse is resting on {}."}, {"index": 23, "image_id": 2392555, "entity": "keyboard", "caption": "silver mouse connected ot keyboard", "question": [], "prompt": "silver mouse connected ot {}"}, {"index": 24, "image_id": 2381716, "entity": "keyboard", "caption": "Arrow keys on a keyboard", "question": ["are there arrow keys ?", "is there a keyboard ?"], "prompt": "Arrow keys on a {}"}, {"index": 25, "image_id": 2376685, "entity": "keyboard", "caption": "The Dell label on the keyboard.", "question": ["is there the dell label ?", "is there the keyboard ?"], "prompt": "The Dell label on the {}."}, {"index": 26, "image_id": 2376685, "entity": "keyboard", "caption": "twelve function keys on the computer's keyboard", "question": ["are there twelve function keys ?", "is there the computer's keyboard ?"], "prompt": "twelve function keys on the computer's {}"}, {"index": 27, "image_id": 2376399, "entity": "keyboard", "caption": "home row keys on a black keyboard", "question": ["are there home row keys ?", "is there a black keyboard ?"], "prompt": "home row keys on a black {}"}, {"index": 28, "image_id": 2376399, "entity": "keyboard", "caption": "Three keys on a keyboard.", "question": ["are there three keys ?", "is there a keyboard ?"], "prompt": "Three keys on a {}."}, {"index": 29, "image_id": 2376399, "entity": "keyboard", "caption": "Eleven keys on a keyboard.", "question": ["are there eleven keys ?", "is there a keyboard ?"], "prompt": "Eleven keys on a {}."}, {"index": 30, "image_id": 2375765, "entity": "keyboard", "caption": "a can kept in the keyboard", "question": ["is there the keyboard ?"], "prompt": "a can kept in the {}"}, {"index": 31, "image_id": 2372147, "entity": "keyboard", "caption": "table keyboard and mouse are on", "question": ["is there table keyboard ?", "is there mouse ?"], "prompt": "table {} and mouse are on"}, {"index": 32, "image_id": 2364841, "entity": "keyboard", "caption": "white ctrl key on keyboard", "question": ["is there white ctrl key ?", "is there keyboard ?"], "prompt": "white ctrl key on {}"}, {"index": 33, "image_id": 2363501, "entity": "keyboard", "caption": "number keys in the keyboard", "question": ["are there number keys ?", "is there the keyboard ?"], "prompt": "number keys in the {}"}, {"index": 34, "image_id": 2363501, "entity": "keyboard", "caption": "logo engraved on keyboard", "question": ["is there logo ?", "is there keyboard ?"], "prompt": "logo engraved on {}"}, {"index": 35, "image_id": 2359476, "entity": "keyboard", "caption": "volume keys on the keyboard", "question": ["are there volume keys ?", "is there the keyboard ?"], "prompt": "volume keys on the {}"}, {"index": 36, "image_id": 2358269, "entity": "keyboard", "caption": "cord coming from a keyboard", "question": ["is there cord ?", "is there a keyboard ?"], "prompt": "cord coming from a {}"}, {"index": 37, "image_id": 2354353, "entity": "keyboard", "caption": "The dog's head is on the keyboard", "question": ["is there the dog's head ?", "is there the keyboard ?"], "prompt": "The dog's head is on the {}"}, {"index": 38, "image_id": 2354353, "entity": "keyboard", "caption": "Four arrow keys on the keyboard. ", "question": ["are there four arrow keys ?", "is there the keyboard ?"], "prompt": "Four arrow keys on the {}. "}, {"index": 39, "image_id": 2352254, "entity": "keyboard", "caption": "The letter U on a keyboard.", "question": ["is there the letter ?", "is there u ?", "is there a keyboard ?"], "prompt": "The letter U on a {}."}, {"index": 40, "image_id": 2352254, "entity": "keyboard", "caption": "number keys on a keyboard", "question": ["are there number keys ?", "is there a keyboard ?"], "prompt": "number keys on a {}"}, {"index": 41, "image_id": 2347831, "entity": "keyboard", "caption": "eight key on a keyboard turned sideways", "question": ["is there eight key ?", "is there a keyboard ?"], "prompt": "eight key on a {} turned sideways"}, {"index": 42, "image_id": 2347831, "entity": "keyboard", "caption": "two key on a keyboard turned sideways", "question": ["is there two key ?", "is there a keyboard ?"], "prompt": "two key on a {} turned sideways"}, {"index": 43, "image_id": 2342072, "entity": "keyboard", "caption": "the remote is on the keyboard", "question": ["is there the remote ?", "is there the keyboard ?"], "prompt": "the remote is on the {}"}, {"index": 44, "image_id": 2338836, "entity": "keyboard", "caption": "wood table keyboard is sitting on", "question": ["is there wood table keyboard ?"], "prompt": "wood table {} is sitting on"}, {"index": 45, "image_id": 2336330, "entity": "keyboard", "caption": "keyboard kept in the table", "question": ["is there keyboard ?", "is there the table ?"], "prompt": "{} kept in the table"}, {"index": 46, "image_id": 2336330, "entity": "keyboard", "caption": "alphabet keys in the keyboard", "question": ["are there alphabet keys ?", "is there the keyboard ?"], "prompt": "alphabet keys in the {}"}, {"index": 47, "image_id": 2336330, "entity": "keyboard", "caption": "number keys on keyboard", "question": ["are there number keys ?", "is there keyboard ?"], "prompt": "number keys on {}"}, {"index": 48, "image_id": 2333487, "entity": "keyboard", "caption": "Mouse and keyboard are on the table", "question": ["is there mouse ?", "is there keyboard ?", "is there the table ?"], "prompt": "Mouse and {} are on the table"}, {"index": 49, "image_id": 2331520, "entity": "keyboard", "caption": "This is a keyboard", "question": ["is there a keyboard ?"], "prompt": "This is a {}"}, {"index": 50, "image_id": 2331520, "entity": "keyboard", "caption": "The keyboard and mouse are on a desk", "question": ["is there the keyboard ?", "is there mouse ?", "is there a desk ?"], "prompt": "The {} and mouse are on a desk"}, {"index": 51, "image_id": 2328733, "entity": "keyboard", "caption": "computer keyboard sits on desk", "question": ["is there computer keyboard ?", "is there desk ?"], "prompt": "computer {} sits on desk"}, {"index": 52, "image_id": 2328733, "entity": "keyboard", "caption": "desk has keyboard on it", "question": ["is there desk ?", "is there keyboard ?"], "prompt": "desk has {} on it"}, {"index": 53, "image_id": 2325677, "entity": "keyboard", "caption": "The keyboard has a \"shuffle\" button", "question": ["is there the keyboard ?", "is there a \"shuffle\" button ?"], "prompt": "The {} has a \"shuffle\" button"}, {"index": 54, "image_id": 2325677, "entity": "keyboard", "caption": "The keyboard is on a white surface", "question": ["is there the keyboard ?", "is there a white surface ?"], "prompt": "The {} is on a white surface"}, {"index": 55, "image_id": 2325670, "entity": "keyboard", "caption": "key is part of keyboard", "question": ["is there key ?", "is there part ?", "is there keyboard ?"], "prompt": "key is part of {}"}, {"index": 56, "image_id": 2325094, "entity": "keyboard", "caption": "the ipod is in front of the keyboard ", "question": ["is there front ?", "is there the keyboard ?"], "prompt": "the ipod is in front of the {} "}, {"index": 57, "image_id": 2323334, "entity": "keyboard", "caption": "Arrow pointing up on a keyboard", "question": ["is there arrow ?", "is there a keyboard ?"], "prompt": "Arrow pointing up on a {}"}, {"index": 58, "image_id": 2323334, "entity": "keyboard", "caption": "a black mouse resting on a keyboard", "question": ["is there a black mouse ?", "is there a keyboard ?"], "prompt": "a black mouse resting on a {}"}, {"index": 59, "image_id": 2323334, "entity": "keyboard", "caption": "the windows key on bottom of the keyboard", "question": ["are there the windows ?", "is there bottom ?", "is there the keyboard ?"], "prompt": "the windows key on bottom of the {}"}, {"index": 60, "image_id": 2317168, "entity": "keyboard", "caption": "Silver keys on a keyboard.", "question": ["are there silver keys ?", "is there a keyboard ?"], "prompt": "Silver keys on a {}."}, {"index": 61, "image_id": 2413188, "entity": "keyboard", "caption": "the bracket keys on the keyboard", "question": ["are there the bracket keys ?", "is there the keyboard ?"], "prompt": "the bracket keys on the {}"}, {"index": 62, "image_id": 2413188, "entity": "keyboard", "caption": "the 9 and the 0 keys on the keyboard", "question": ["are there the 0 keys ?", "is there the keyboard ?"], "prompt": "the 9 and the 0 keys on the {}"}, {"index": 63, "image_id": 2413188, "entity": "keyboard", "caption": "Grasshopper standing in between the F 8 in the F9 key on the computer keyboard", "question": ["is there grasshopper ?", "is there the f9 key ?", "is there the computer keyboard ?"], "prompt": "Grasshopper standing in between the F 8 in the F9 key on the computer {}"}, {"index": 64, "image_id": 2413188, "entity": "keyboard", "caption": "The letter I keyboard key barely visible the photo", "question": ["is there the letter ?", "is there the photo ?"], "prompt": "The letter I {} key barely visible the photo"}, {"index": 65, "image_id": 2413188, "entity": "keyboard", "caption": "Letter keys of a keyboard.", "question": ["are there letter keys ?", "is there a keyboard ?"], "prompt": "Letter keys of a {}."}, {"index": 66, "image_id": 2417261, "entity": "keyboard", "caption": "black caps lock button on keyboard", "question": ["are there black caps lock button ?", "is there keyboard ?"], "prompt": "black caps lock button on {}"}, {"index": 67, "image_id": 2417261, "entity": "keyboard", "caption": "PrntScr key on a keyboard", "question": ["is there prntscr key ?", "is there a keyboard ?"], "prompt": "PrntScr key on a {}"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03930630.json b/data/imagenet/compositions/prompts/n03930630.json
new file mode 100644
index 0000000000000000000000000000000000000000..b6fe830b8c58bb2e880bf19ab5e0170da455ebed
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03930630.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 107967, "entity": "truck", "caption": "A window is open on the truck", "question": ["is there a window ?", "is there the truck ?"], "prompt": "A window is open on the {}"}, {"index": 1, "image_id": 150364, "entity": "truck", "caption": "front left wheel of tow truck", "question": ["is there front left wheel ?", "is there tow truck ?"], "prompt": "front left wheel of tow {}"}, {"index": 2, "image_id": 150393, "entity": "truck", "caption": "A truck that probably sells seafood", "question": ["is there a truck ?", "is there seafood ?"], "prompt": "A {} that probably sells seafood"}, {"index": 3, "image_id": 150486, "entity": "truck", "caption": "This is a basket on a bucket truck.", "question": ["is there a basket ?", "is there a bucket truck ?"], "prompt": "This is a basket on a bucket {}."}, {"index": 4, "image_id": 150497, "entity": "truck", "caption": "Firetruck parked in garage", "question": ["is there firetruck ?", "is there garage ?"], "prompt": "Fire{} parked in garage"}, {"index": 5, "image_id": 285972, "entity": "truck", "caption": "a gas station pump by truck", "question": ["is there a gas station pump ?", "is there truck ?"], "prompt": "a gas station pump by {}"}, {"index": 6, "image_id": 498093, "entity": "truck", "caption": "green face painted on a truck", "question": ["is there green face ?", "is there a truck ?"], "prompt": "green face painted on a {}"}, {"index": 7, "image_id": 498093, "entity": "truck", "caption": "Blue painted letters on the side of truck.", "question": ["are there blue painted letters ?", "is there the side ?", "is there truck ?"], "prompt": "Blue painted letters on the side of {}."}, {"index": 8, "image_id": 713062, "entity": "truck", "caption": "black door handle on the truck", "question": ["is there black door ?", "is there the truck ?"], "prompt": "black door handle on the {}"}, {"index": 9, "image_id": 713419, "entity": "truck", "caption": "Woman standing next to truck ", "question": ["is there woman ?", "is there truck ?"], "prompt": "Woman standing next to {} "}, {"index": 10, "image_id": 713503, "entity": "truck", "caption": "A blue rope tied to a truck", "question": ["is there a blue rope ?", "is there a truck ?"], "prompt": "A blue rope tied to a {}"}, {"index": 11, "image_id": 713614, "entity": "truck", "caption": "container on truck has pink flowers painted on it", "question": ["is there container ?", "is there truck ?", "are there pink flowers ?"], "prompt": "container on {} has pink flowers painted on it"}, {"index": 12, "image_id": 713614, "entity": "truck", "caption": "large white sack that is full is hung from back of truck ", "question": ["is there large white sack ?", "is there truck ?"], "prompt": "large white sack that is full is hung from back of {} "}, {"index": 13, "image_id": 713614, "entity": "truck", "caption": "Lotus Flower painted on back of garbage truck", "question": ["is there lotus flower ?", "is there garbage truck ?"], "prompt": "Lotus Flower painted on back of garbage {}"}, {"index": 14, "image_id": 1159845, "entity": "truck", "caption": "bright colored star painted on the back of the truck", "question": ["is there bright colored star ?", "is there the back ?", "is there the truck ?"], "prompt": "bright colored star painted on the back of the {}"}, {"index": 15, "image_id": 1159845, "entity": "truck", "caption": "two grey tarp covered bundles on the back of the truck", "question": ["is there two grey tarp ?", "are there bundles ?", "is there the back ?", "is there the truck ?"], "prompt": "two grey tarp covered bundles on the back of the {}"}, {"index": 16, "image_id": 1160061, "entity": "truck", "caption": "The person standing in the open door of the blue truck.", "question": ["is there the person ?", "is there the open door ?", "is there the blue truck ?"], "prompt": "The person standing in the open door of the blue {}."}, {"index": 17, "image_id": 1160061, "entity": "truck", "caption": "The white shirt the person is wearing at the door of the truck.", "question": ["is there the white shirt ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The white shirt the person is wearing at the door of the {}."}, {"index": 18, "image_id": 1160061, "entity": "truck", "caption": "The pants the person standing in the door of the truck is wearing.", "question": ["are there the pants ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The pants the person standing in the door of the {} is wearing."}, {"index": 19, "image_id": 1592126, "entity": "truck", "caption": "Potatoes are on the back of a truck", "question": ["are there potatoes ?", "is there the back ?", "is there a truck ?"], "prompt": "Potatoes are on the back of a {}"}, {"index": 20, "image_id": 1592126, "entity": "truck", "caption": "Bags of potatoes are on back of a truck", "question": ["are there bags ?", "are there potatoes ?", "is there a truck ?"], "prompt": "Bags of potatoes are on back of a {}"}, {"index": 21, "image_id": 1592160, "entity": "truck", "caption": "an orange pick up truck with an open hood", "question": ["is there an orange pick ?", "is there truck ?", "is there an open hood ?"], "prompt": "an orange pick up {} with an open hood"}, {"index": 22, "image_id": 1592291, "entity": "truck", "caption": "bird painted on the side of the truck", "question": ["is there bird ?", "is there the side ?", "is there the truck ?"], "prompt": "bird painted on the side of the {}"}, {"index": 23, "image_id": 1592584, "entity": "truck", "caption": "An orange cone is on the white truck", "question": ["is there an orange cone ?", "is there the white truck ?"], "prompt": "An orange cone is on the white {}"}, {"index": 24, "image_id": 1592584, "entity": "truck", "caption": "The truck has a license plate", "question": ["is there the truck ?", "is there a license plate ?"], "prompt": "The {} has a license plate"}, {"index": 25, "image_id": 1592584, "entity": "truck", "caption": "Red letters on the trucks grill", "question": ["are there red letters ?", "are there the trucks ?"], "prompt": "Red letters on the {}s grill"}, {"index": 26, "image_id": 1592584, "entity": "truck", "caption": "The truck has a windsheild ", "question": ["is there the truck ?", "is there a windsheild ?"], "prompt": "The {} has a windsheild "}, {"index": 27, "image_id": 1592951, "entity": "truck", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The {} on the boat is blue in color."}, {"index": 28, "image_id": 2413810, "entity": "truck", "caption": "The truck has a tall exhaust pipe", "question": ["is there the truck ?", "is there a tall exhaust pipe ?"], "prompt": "The {} has a tall exhaust pipe"}, {"index": 29, "image_id": 2413318, "entity": "truck", "caption": "Some packet kept on the deck of the truck", "question": ["is there some packet ?", "is there the deck ?", "is there the truck ?"], "prompt": "Some packet kept on the deck of the {}"}, {"index": 30, "image_id": 2413318, "entity": "truck", "caption": "people are riding the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are riding the {}"}, {"index": 31, "image_id": 2413114, "entity": "truck", "caption": "group of young men ride the front of truck", "question": ["is there group ?", "are there young men ?", "is there the front ?", "is there truck ?"], "prompt": "group of young men ride the front of {}"}, {"index": 32, "image_id": 2413114, "entity": "truck", "caption": "seated person watches truck drive by", "question": ["is there seated person ?"], "prompt": "seated person watches {} drive by"}, {"index": 33, "image_id": 2413114, "entity": "truck", "caption": "person of motorbike trails the truck", "question": ["is there person ?", "are there motorbike trails ?"], "prompt": "person of motorbike trails the {}"}, {"index": 34, "image_id": 2413114, "entity": "truck", "caption": "\"Three men rides on the front of a truck\"", "question": ["are there three men ?", "is there the front ?", "is there a truck ?"], "prompt": "\"Three men rides on the front of a {}\""}, {"index": 35, "image_id": 2413114, "entity": "truck", "caption": "Side view mirrors on dump truck.", "question": ["are there side view mirrors ?", "is there dump truck ?"], "prompt": "Side view mirrors on dump {}."}, {"index": 36, "image_id": 2413114, "entity": "truck", "caption": "Front left tire of dump truck.", "question": ["is there front left tire ?", "is there dump truck ?"], "prompt": "Front left tire of dump {}."}, {"index": 37, "image_id": 2410247, "entity": "truck", "caption": "Man driving the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man driving the {}."}, {"index": 38, "image_id": 2410156, "entity": "truck", "caption": "D I is on side of truck", "question": ["is there side ?", "is there truck ?"], "prompt": "D I is on side of {}"}, {"index": 39, "image_id": 2410114, "entity": "truck", "caption": "front head light on a fire truck", "question": ["is there front head light ?", "is there a fire truck ?"], "prompt": "front head light on a fire {}"}, {"index": 40, "image_id": 2409987, "entity": "truck", "caption": "the truck has windows", "question": ["is there the truck ?", "are there windows ?"], "prompt": "the {} has windows"}, {"index": 41, "image_id": 2409644, "entity": "truck", "caption": "Motorcycle parked next to semi truck.", "question": ["is there motorcycle ?", "is there semi truck ?"], "prompt": "Motorcycle parked next to semi {}."}, {"index": 42, "image_id": 2409644, "entity": "truck", "caption": "Woman standing next to semi truck.", "question": ["is there woman ?", "is there semi truck ?"], "prompt": "Woman standing next to semi {}."}, {"index": 43, "image_id": 2409644, "entity": "truck", "caption": "a woman is reaching into a truck compartment", "question": ["is there a woman ?", "is there a truck compartment ?"], "prompt": "a woman is reaching into a {} compartment"}, {"index": 44, "image_id": 2409644, "entity": "truck", "caption": "a kw grill cover on truck", "question": ["is there a kw grill cover ?", "is there truck ?"], "prompt": "a kw grill cover on {}"}, {"index": 45, "image_id": 2409644, "entity": "truck", "caption": "american flag painted truck", "question": ["is there truck ?"], "prompt": "american flag painted {}"}, {"index": 46, "image_id": 2409642, "entity": "truck", "caption": "the truck has a crane", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane"}, {"index": 47, "image_id": 2409642, "entity": "truck", "caption": "these are truck tires", "question": ["are there truck tires ?"], "prompt": "these are {} tires"}, {"index": 48, "image_id": 2409608, "entity": "truck", "caption": "Road in front of truck is gravel.", "question": ["is there road ?", "is there front ?", "is there truck ?", "is there gravel ?"], "prompt": "Road in front of {} is gravel."}, {"index": 49, "image_id": 2409326, "entity": "truck", "caption": "man bent over truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man bent over {}"}, {"index": 50, "image_id": 2409188, "entity": "truck", "caption": "The truck has a siren and lights on it.", "question": ["is there the truck ?", "is there a siren ?", "are there lights ?"], "prompt": "The {} has a siren and lights on it."}, {"index": 51, "image_id": 2409176, "entity": "truck", "caption": "Sedans are behind truck", "question": ["are there sedans ?", "is there truck ?"], "prompt": "Sedans are behind {}"}, {"index": 52, "image_id": 2408016, "entity": "truck", "caption": "The head lights on a truck", "question": ["is there the head ?", "is there a truck ?"], "prompt": "The head lights on a {}"}, {"index": 53, "image_id": 2408016, "entity": "truck", "caption": "Toyota sign in the front of the truck", "question": ["is there toyota sign ?", "is there the front ?", "is there the truck ?"], "prompt": "Toyota sign in the front of the {}"}, {"index": 54, "image_id": 2408016, "entity": "truck", "caption": "Gold writing on front of truck", "question": ["is there gold writing ?", "is there front ?", "is there truck ?"], "prompt": "Gold writing on front of {}"}, {"index": 55, "image_id": 2408012, "entity": "truck", "caption": "the truck has a headlight on the side", "question": ["is there the truck ?", "is there a headlight ?", "is there the side ?"], "prompt": "the {} has a headlight on the side"}, {"index": 56, "image_id": 2408003, "entity": "truck", "caption": "Two side view mirrors on the food truck.", "question": ["are there two side view mirrors ?", "is there the food truck ?"], "prompt": "Two side view mirrors on the food {}."}, {"index": 57, "image_id": 2407996, "entity": "truck", "caption": "two d's on a transfer truck", "question": ["is there two d ?", "is there a transfer truck ?"], "prompt": "two d's on a transfer {}"}, {"index": 58, "image_id": 2407996, "entity": "truck", "caption": "Name of the company written on the side of the truck", "question": ["is there name ?", "is there the company ?", "is there the side ?", "is there the truck ?"], "prompt": "Name of the company written on the side of the {}"}, {"index": 59, "image_id": 2407996, "entity": "truck", "caption": "Parking lights lit up on the truck", "question": ["are there parking lights ?", "is there the truck ?"], "prompt": "Parking lights lit up on the {}"}, {"index": 60, "image_id": 2407996, "entity": "truck", "caption": "Person standing next to the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "Person standing next to the {}"}, {"index": 61, "image_id": 2407996, "entity": "truck", "caption": "the truck has headlights", "question": ["is there the truck ?", "are there headlights ?"], "prompt": "the {} has headlights"}, {"index": 62, "image_id": 2407996, "entity": "truck", "caption": "the truck says \"Eddie Stobart\"", "question": ["is there the truck ?"], "prompt": "the {} says \"Eddie Stobart\""}, {"index": 63, "image_id": 2407879, "entity": "truck", "caption": "the word scania is on the front of the truck", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there the truck ?"], "prompt": "the word scania is on the front of the {}"}, {"index": 64, "image_id": 2407879, "entity": "truck", "caption": "emblem on truck says scania", "question": ["is there emblem ?", "is there truck ?"], "prompt": "emblem on {} says scania"}, {"index": 65, "image_id": 2407871, "entity": "truck", "caption": "The truck is on grass", "question": ["is there the truck ?", "is there grass ?"], "prompt": "The {} is on grass"}, {"index": 66, "image_id": 2407871, "entity": "truck", "caption": "a metal dog ornament on the truck", "question": ["is there a metal dog ornament ?", "is there the truck ?"], "prompt": "a metal dog ornament on the {}"}, {"index": 67, "image_id": 2407871, "entity": "truck", "caption": "old truck is beside a road", "question": ["is there old truck ?", "is there a road ?"], "prompt": "old {} is beside a road"}, {"index": 68, "image_id": 2407871, "entity": "truck", "caption": "truck is sitting in grass", "question": ["is there truck ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 69, "image_id": 2407871, "entity": "truck", "caption": "grass growing around truck", "question": ["is there grass ?", "is there truck ?"], "prompt": "grass growing around {}"}, {"index": 70, "image_id": 2407871, "entity": "truck", "caption": "truck has a red cab", "question": ["is there truck ?", "is there a red cab ?"], "prompt": "{} has a red cab"}, {"index": 71, "image_id": 2407871, "entity": "truck", "caption": "truck says mack on side", "question": ["is there truck ?", "is there side ?"], "prompt": "{} says mack on side"}, {"index": 72, "image_id": 2407871, "entity": "truck", "caption": "truck has headlights", "question": ["is there truck ?", "are there headlights ?"], "prompt": "{} has headlights"}, {"index": 73, "image_id": 2407784, "entity": "truck", "caption": "passer bys walking behind truck", "question": ["is there truck ?"], "prompt": "passer bys walking behind {}"}, {"index": 74, "image_id": 2407760, "entity": "truck", "caption": "the truck is red in color", "question": ["is there the truck ?", "is there color ?"], "prompt": "the {} is red in color"}, {"index": 75, "image_id": 2407760, "entity": "truck", "caption": "the truck is metallic", "question": ["is there the truck ?"], "prompt": "the {} is metallic"}, {"index": 76, "image_id": 2407551, "entity": "truck", "caption": "Makers logo on the truck nearest the camera", "question": ["are there makers ?", "is there the truck ?", "is there the camera ?"], "prompt": "Makers logo on the {} nearest the camera"}, {"index": 77, "image_id": 2407551, "entity": "truck", "caption": "chrome lettering front of truck", "question": ["is there chrome lettering front ?", "is there truck ?"], "prompt": "chrome lettering front of {}"}, {"index": 78, "image_id": 2407551, "entity": "truck", "caption": "truck has multiple wheels", "question": ["is there truck ?", "are there multiple wheels ?"], "prompt": "{} has multiple wheels"}, {"index": 79, "image_id": 2407551, "entity": "truck", "caption": "front bumper on truck is clean", "question": ["is there front bumper ?", "is there truck ?"], "prompt": "front bumper on {} is clean"}, {"index": 80, "image_id": 2407241, "entity": "truck", "caption": "Red stripe painted on the truck", "question": ["is there red stripe ?", "is there the truck ?"], "prompt": "Red stripe painted on the {}"}, {"index": 81, "image_id": 2407128, "entity": "truck", "caption": "trucks parked side to side", "question": ["are there trucks ?"], "prompt": "{}s parked side to side"}, {"index": 82, "image_id": 2407128, "entity": "truck", "caption": "fabric pulled over the tops of trucks", "question": ["is there fabric ?", "are there the tops ?", "are there trucks ?"], "prompt": "fabric pulled over the tops of {}s"}, {"index": 83, "image_id": 2407128, "entity": "truck", "caption": "sign on rope hanging off front of truck", "question": ["is there rope ?", "is there front ?", "is there truck ?"], "prompt": "sign on rope hanging off front of {}"}, {"index": 84, "image_id": 2407128, "entity": "truck", "caption": "Two trucks are on the grass.", "question": ["are there two trucks ?", "is there the grass ?"], "prompt": "Two {}s are on the grass."}, {"index": 85, "image_id": 2407128, "entity": "truck", "caption": "The number 9 is on the truck.", "question": ["is there the number ?", "is there the truck ?"], "prompt": "The number 9 is on the {}."}, {"index": 86, "image_id": 2407128, "entity": "truck", "caption": "The truck has a spare tire under the bed.", "question": ["is there the truck ?", "is there a spare tire ?", "is there the bed ?"], "prompt": "The {} has a spare tire under the bed."}, {"index": 87, "image_id": 2407128, "entity": "truck", "caption": "The truck has a fabric cover on the back.", "question": ["is there the truck ?", "is there a fabric cover ?", "is there the back ?"], "prompt": "The {} has a fabric cover on the back."}, {"index": 88, "image_id": 2407128, "entity": "truck", "caption": "A yellow and white sign is on a truck.", "question": ["is there a yellow and white sign ?", "is there a truck ?"], "prompt": "A yellow and white sign is on a {}."}, {"index": 89, "image_id": 2405965, "entity": "truck", "caption": "the side of the truck has lettering on it", "question": ["is there the side ?", "is there the truck ?"], "prompt": "the side of the {} has lettering on it"}, {"index": 90, "image_id": 2405965, "entity": "truck", "caption": "the truck is casting a shadow", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow"}, {"index": 91, "image_id": 2405965, "entity": "truck", "caption": "palm trees are behind the truck", "question": ["are there palm trees ?", "is there the truck ?"], "prompt": "palm trees are behind the {}"}, {"index": 92, "image_id": 2404753, "entity": "truck", "caption": "Window of truck is open", "question": ["is there window ?", "is there truck ?"], "prompt": "Window of {} is open"}, {"index": 93, "image_id": 2404626, "entity": "truck", "caption": "the flatbed truck is black", "question": ["is there the flatbed truck ?"], "prompt": "the flatbed {} is black"}, {"index": 94, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of a house", "question": ["is there the truck ?", "is there front ?", "is there a house ?"], "prompt": "the {} is in front of a house"}, {"index": 95, "image_id": 2404602, "entity": "truck", "caption": "the truck has a black bumper", "question": ["is there the truck ?", "is there a black bumper ?"], "prompt": "the {} has a black bumper"}, {"index": 96, "image_id": 2404602, "entity": "truck", "caption": "the truck has a logo on the back of it", "question": ["is there the truck ?", "is there a logo ?", "is there the back ?"], "prompt": "the {} has a logo on the back of it"}, {"index": 97, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of the house", "question": ["is there the truck ?", "is there front ?", "is there the house ?"], "prompt": "the {} is in front of the house"}, {"index": 98, "image_id": 2404338, "entity": "truck", "caption": "Person is on top of a truck", "question": ["is there person ?", "is there top ?", "is there a truck ?"], "prompt": "Person is on top of a {}"}, {"index": 99, "image_id": 2404315, "entity": "truck", "caption": "the bed of the truck has steel rails", "question": ["is there the bed ?", "is there the truck ?", "are there steel rails ?"], "prompt": "the bed of the {} has steel rails"}, {"index": 100, "image_id": 2404315, "entity": "truck", "caption": "the truck has mud flaps", "question": ["is there the truck ?", "are there mud flaps ?"], "prompt": "the {} has mud flaps"}, {"index": 101, "image_id": 2404315, "entity": "truck", "caption": "The back of the truck is holding an object", "question": ["is there the back ?", "is there the truck ?", "is there an object ?"], "prompt": "The back of the {} is holding an object"}, {"index": 102, "image_id": 2404315, "entity": "truck", "caption": "green grass growing around the truck", "question": ["is there green grass ?", "is there the truck ?"], "prompt": "green grass growing around the {}"}, {"index": 103, "image_id": 2403558, "entity": "truck", "caption": "road that truck is on", "question": ["is there road ?", "is there that truck ?"], "prompt": "road that {} is on"}, {"index": 104, "image_id": 2403322, "entity": "truck", "caption": "the wheels are on truck", "question": ["are there the wheels ?", "is there truck ?"], "prompt": "the wheels are on {}"}, {"index": 105, "image_id": 2403322, "entity": "truck", "caption": "mirror is on truck", "question": ["is there mirror ?", "is there truck ?"], "prompt": "mirror is on {}"}, {"index": 106, "image_id": 2402597, "entity": "truck", "caption": "Woman sits on border of truck", "question": ["is there woman ?", "is there border ?", "is there truck ?"], "prompt": "Woman sits on border of {}"}, {"index": 107, "image_id": 2402597, "entity": "truck", "caption": "Man sits in back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "Man sits in back of {}"}, {"index": 108, "image_id": 2402433, "entity": "truck", "caption": "A German shepherd is sitting in the back of a truck.", "question": ["is there a german shepherd ?", "is there the back ?", "is there a truck ?"], "prompt": "A German shepherd is sitting in the back of a {}."}, {"index": 109, "image_id": 2402276, "entity": "truck", "caption": "Kiddie fire truck merry go round", "question": ["is there kiddie fire truck merry ?"], "prompt": "Kiddie fire {} merry go round"}, {"index": 110, "image_id": 2402096, "entity": "truck", "caption": "Leaves painted onto a truck", "question": ["are there leaves ?", "is there a truck ?"], "prompt": "Leaves painted onto a {}"}, {"index": 111, "image_id": 2401997, "entity": "truck", "caption": "metal truck bed lid", "question": ["is there metal truck bed lid ?"], "prompt": "metal {} bed lid"}, {"index": 112, "image_id": 2401580, "entity": "truck", "caption": "flag mounted on the front of a truck", "question": ["is there flag ?", "is there the front ?", "is there a truck ?"], "prompt": "flag mounted on the front of a {}"}, {"index": 113, "image_id": 2401327, "entity": "truck", "caption": "the truck has a chalkboard", "question": ["is there the truck ?", "is there a chalkboard ?"], "prompt": "the {} has a chalkboard"}, {"index": 114, "image_id": 2401327, "entity": "truck", "caption": "the man is inside of the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "the man is inside of the {}"}, {"index": 115, "image_id": 2401327, "entity": "truck", "caption": "the truck's tire is black and red", "question": ["is there the truck's tire ?"], "prompt": "the {}'s tire is black and red"}, {"index": 116, "image_id": 2401207, "entity": "truck", "caption": "the truck is blue", "question": ["is there the truck ?"], "prompt": "the {} is blue"}, {"index": 117, "image_id": 2401207, "entity": "truck", "caption": "White head lights on truck.", "question": ["are there white head lights ?", "is there truck ?"], "prompt": "White head lights on {}."}, {"index": 118, "image_id": 2401199, "entity": "truck", "caption": "a round headlight on a truck", "question": ["is there a round headlight ?", "is there a truck ?"], "prompt": "a round headlight on a {}"}, {"index": 119, "image_id": 2401199, "entity": "truck", "caption": "Old red truck with a license plate that says HENRE.", "question": ["is there old red truck ?", "is there a license plate ?", "is there henre ?"], "prompt": "Old red {} with a license plate that says HENRE."}, {"index": 120, "image_id": 2400775, "entity": "truck", "caption": "camo armored pick up truck", "question": ["is there truck ?"], "prompt": "camo armored pick up {}"}, {"index": 121, "image_id": 2400775, "entity": "truck", "caption": "white skull painted on truck", "question": ["is there white skull ?", "is there truck ?"], "prompt": "white skull painted on {}"}, {"index": 122, "image_id": 2400768, "entity": "truck", "caption": "the truck has huge tires", "question": ["is there the truck ?", "are there huge tires ?"], "prompt": "the {} has huge tires"}, {"index": 123, "image_id": 2400768, "entity": "truck", "caption": "people are watching the truck go by", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are watching the {} go by"}, {"index": 124, "image_id": 2400768, "entity": "truck", "caption": "the truck has yellow lights", "question": ["is there the truck ?", "are there yellow lights ?"], "prompt": "the {} has yellow lights"}, {"index": 125, "image_id": 2400768, "entity": "truck", "caption": "Military truck driving down street.", "question": ["is there military truck ?", "is there street ?"], "prompt": "Military {} driving down street."}, {"index": 126, "image_id": 2400633, "entity": "truck", "caption": "the engine compartment on a truck.", "question": ["is there the engine compartment ?", "is there a truck ?"], "prompt": "the engine compartment on a {}."}, {"index": 127, "image_id": 2400633, "entity": "truck", "caption": "silver spot on the truck where paint has faded ", "question": ["is there silver spot ?", "is there the truck ?", "is there paint ?"], "prompt": "silver spot on the {} where paint has faded "}, {"index": 128, "image_id": 2400606, "entity": "truck", "caption": "a silver right headlight on an old truck", "question": ["is there a silver right headlight ?", "is there an old truck ?"], "prompt": "a silver right headlight on an old {}"}, {"index": 129, "image_id": 2400606, "entity": "truck", "caption": "the truck has 2 lights on front of it", "question": ["is there the truck ?", "are there 2 lights ?", "is there front ?"], "prompt": "the {} has 2 lights on front of it"}, {"index": 130, "image_id": 2400606, "entity": "truck", "caption": "straw is under the truck", "question": ["is there straw ?", "is there the truck ?"], "prompt": "straw is under the {}"}, {"index": 131, "image_id": 2400606, "entity": "truck", "caption": "the truck's bumper is falling off", "question": ["is there the truck's bumper ?"], "prompt": "the {}'s bumper is falling off"}, {"index": 132, "image_id": 2400599, "entity": "truck", "caption": "Side of truck is blue", "question": ["is there side ?", "is there truck ?"], "prompt": "Side of {} is blue"}, {"index": 133, "image_id": 2400599, "entity": "truck", "caption": "blue car parked behind a truck", "question": ["is there blue car ?", "is there a truck ?"], "prompt": "blue car parked behind a {}"}, {"index": 134, "image_id": 2400509, "entity": "truck", "caption": "front left tire on the truck", "question": ["is there front left tire ?", "is there the truck ?"], "prompt": "front left tire on the {}"}, {"index": 135, "image_id": 2400509, "entity": "truck", "caption": "front left mirror on the truck", "question": ["is there front left mirror ?", "is there the truck ?"], "prompt": "front left mirror on the {}"}, {"index": 136, "image_id": 2400509, "entity": "truck", "caption": "the man has a white truck", "question": ["is there the man ?", "is there a white truck ?"], "prompt": "the man has a white {}"}, {"index": 137, "image_id": 2400346, "entity": "truck", "caption": "man driving a pick-up truck", "question": ["is there man ?", "is there a pick-up truck ?"], "prompt": "man driving a pick-up {}"}, {"index": 138, "image_id": 2400346, "entity": "truck", "caption": "man is driving a bluish gray truck", "question": ["is there man ?", "is there a bluish gray truck ?"], "prompt": "man is driving a bluish gray {}"}, {"index": 139, "image_id": 2400304, "entity": "truck", "caption": "Man on street looking at truck", "question": ["is there man ?", "is there street ?", "is there truck ?"], "prompt": "Man on street looking at {}"}, {"index": 140, "image_id": 2400304, "entity": "truck", "caption": "Blue shirt on man looking at truck", "question": ["is there blue shirt ?", "is there man ?", "is there truck ?"], "prompt": "Blue shirt on man looking at {}"}, {"index": 141, "image_id": 2400304, "entity": "truck", "caption": "Black hat on man looking at truck", "question": ["is there black hat ?", "is there man ?", "is there truck ?"], "prompt": "Black hat on man looking at {}"}, {"index": 142, "image_id": 2400304, "entity": "truck", "caption": "Watch on man looking at truck", "question": ["is there man ?", "is there truck ?"], "prompt": "Watch on man looking at {}"}, {"index": 143, "image_id": 2400304, "entity": "truck", "caption": "The man standing next to the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "The man standing next to the {}"}, {"index": 144, "image_id": 2400304, "entity": "truck", "caption": "The women reflected on the truck", "question": ["are there the women ?", "is there the truck ?"], "prompt": "The women reflected on the {}"}, {"index": 145, "image_id": 2400304, "entity": "truck", "caption": "Tall man is looking at truck", "question": ["is there tall man ?", "is there truck ?"], "prompt": "Tall man is looking at {}"}, {"index": 146, "image_id": 2399870, "entity": "truck", "caption": "a sign is on the side of the truck", "question": ["is there a sign ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign is on the side of the {}"}, {"index": 147, "image_id": 2399870, "entity": "truck", "caption": "a number is on the side of the truck", "question": ["is there a number ?", "is there the side ?", "is there the truck ?"], "prompt": "a number is on the side of the {}"}, {"index": 148, "image_id": 2399870, "entity": "truck", "caption": "an exhaust system is on the side of the truck", "question": ["is there an exhaust system ?", "is there the side ?", "is there the truck ?"], "prompt": "an exhaust system is on the side of the {}"}, {"index": 149, "image_id": 2399764, "entity": "truck", "caption": "A truck is in the background.", "question": ["is there a truck ?", "is there the background ?"], "prompt": "A {} is in the background."}, {"index": 150, "image_id": 2398894, "entity": "truck", "caption": "black truck with hard bed cover", "question": ["is there black truck ?", "is there hard bed ?"], "prompt": "black {} with hard bed cover"}, {"index": 151, "image_id": 2398630, "entity": "truck", "caption": "a bus that has collided with truck", "question": ["is there a bus ?", "is there truck ?"], "prompt": "a bus that has collided with {}"}, {"index": 152, "image_id": 2398143, "entity": "truck", "caption": "transfer trucks windshield", "question": ["are there trucks ?"], "prompt": "transfer {}s windshield"}, {"index": 153, "image_id": 2398143, "entity": "truck", "caption": "the front left tire of a truck", "question": ["is there tire ?", "is there a truck ?"], "prompt": "the front left tire of a {}"}, {"index": 154, "image_id": 2398143, "entity": "truck", "caption": "front of truck is red", "question": ["is there front ?", "is there truck ?"], "prompt": "front of {} is red"}, {"index": 155, "image_id": 2398143, "entity": "truck", "caption": "lights on truck are orange", "question": ["are there lights ?", "is there truck ?"], "prompt": "lights on {} are orange"}, {"index": 156, "image_id": 2398143, "entity": "truck", "caption": "truck has gray stripes", "question": ["is there truck ?", "are there gray stripes ?"], "prompt": "{} has gray stripes"}, {"index": 157, "image_id": 2398143, "entity": "truck", "caption": "two silver stripes painted on the front of the truck", "question": ["are there two silver stripes ?", "is there the front ?", "is there the truck ?"], "prompt": "two silver stripes painted on the front of the {}"}, {"index": 158, "image_id": 2398030, "entity": "truck", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice cars and {}s lined up"}, {"index": 159, "image_id": 2397835, "entity": "truck", "caption": "the sculpture is in the bed of a truck", "question": ["is there the sculpture ?", "is there the bed ?", "is there a truck ?"], "prompt": "the sculpture is in the bed of a {}"}, {"index": 160, "image_id": 2397835, "entity": "truck", "caption": "WILD IN ART is on the back of the truck", "question": ["is there art ?", "is there the back ?", "is there the truck ?"], "prompt": "WILD IN ART is on the back of the {}"}, {"index": 161, "image_id": 2397058, "entity": "truck", "caption": "cardboard boxes piled high on truck", "question": ["are there cardboard boxes ?", "is there truck ?"], "prompt": "cardboard boxes piled high on {}"}, {"index": 162, "image_id": 2397058, "entity": "truck", "caption": "man in plaid shirt leaning over truck", "question": ["is there man ?", "is there plaid shirt ?", "is there truck ?"], "prompt": "man in plaid shirt leaning over {}"}, {"index": 163, "image_id": 2397049, "entity": "truck", "caption": "Teddy bear on front of truck", "question": ["is there front ?", "is there truck ?"], "prompt": "Teddy bear on front of {}"}, {"index": 164, "image_id": 2397049, "entity": "truck", "caption": "Head lights front of truck", "question": ["are there head lights ?", "is there truck ?"], "prompt": "Head lights front of {}"}, {"index": 165, "image_id": 2396831, "entity": "truck", "caption": "the trucks headlights are off", "question": ["are there the trucks headlights ?"], "prompt": "the {}s headlights are off"}, {"index": 166, "image_id": 2396726, "entity": "truck", "caption": "truck tires have two different types of white hubcaps", "question": ["are there truck tires ?", "are there two different types ?", "are there white hubcaps ?"], "prompt": "{} tires have two different types of white hubcaps"}, {"index": 167, "image_id": 2396726, "entity": "truck", "caption": "sedan behind truck has obama '08 poster on front above license plate", "question": ["is there truck ?", "is there obama '08 poster ?", "is there front ?", "is there license plate ?"], "prompt": "sedan behind {} has obama '08 poster on front above license plate"}, {"index": 168, "image_id": 2396726, "entity": "truck", "caption": "drivers side truck headlight", "question": ["are there drivers ?"], "prompt": "drivers side {} headlight"}, {"index": 169, "image_id": 2396433, "entity": "truck", "caption": "A man spray paints the truck.", "question": ["is there a man ?", "is there the truck ?"], "prompt": "A man spray paints the {}."}, {"index": 170, "image_id": 2396312, "entity": "truck", "caption": "the truck rim is red", "question": ["is there the truck rim ?"], "prompt": "the {} rim is red"}, {"index": 171, "image_id": 2396312, "entity": "truck", "caption": "it is the door on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "it is the door on the {}"}, {"index": 172, "image_id": 2396121, "entity": "truck", "caption": "Gigi writing on truck.", "question": ["is there truck ?"], "prompt": "Gigi writing on {}."}, {"index": 173, "image_id": 2396121, "entity": "truck", "caption": "Menu hanging from truck.", "question": ["is there menu ?", "is there truck ?"], "prompt": "Menu hanging from {}."}, {"index": 174, "image_id": 2395929, "entity": "truck", "caption": "the horse is on a truck", "question": ["is there the horse ?", "is there a truck ?"], "prompt": "the horse is on a {}"}, {"index": 175, "image_id": 2395902, "entity": "truck", "caption": "Big blue parked truck.", "question": ["is there big blue parked truck ?"], "prompt": "Big blue parked {}."}, {"index": 176, "image_id": 2395902, "entity": "truck", "caption": "Long white truck parked.", "question": ["is there long white truck ?"], "prompt": "Long white {} parked."}, {"index": 177, "image_id": 2395835, "entity": "truck", "caption": "passenger handle inside truck", "question": ["is there passenger handle ?", "is there truck ?"], "prompt": "passenger handle inside {}"}, {"index": 178, "image_id": 2395835, "entity": "truck", "caption": "a man in the truck is wearing red", "question": ["is there a man ?", "is there the truck ?", "is there red ?"], "prompt": "a man in the {} is wearing red"}, {"index": 179, "image_id": 2395835, "entity": "truck", "caption": "two people are in the truck", "question": ["are there two people ?", "is there the truck ?"], "prompt": "two people are in the {}"}, {"index": 180, "image_id": 2395411, "entity": "truck", "caption": "emergency lights are on top of the truck", "question": ["are there emergency lights ?", "is there top ?", "is there the truck ?"], "prompt": "emergency lights are on top of the {}"}, {"index": 181, "image_id": 2395408, "entity": "truck", "caption": "headlights of food truck are off", "question": ["are there headlights ?", "is there food truck ?"], "prompt": "headlights of food {} are off"}, {"index": 182, "image_id": 2395292, "entity": "truck", "caption": "wheels of the truck are red and chrome", "question": ["are there wheels ?", "is there the truck ?"], "prompt": "wheels of the {} are red and chrome"}, {"index": 183, "image_id": 2395292, "entity": "truck", "caption": "bed of truck is wooden", "question": ["is there bed ?", "is there truck ?"], "prompt": "bed of {} is wooden"}, {"index": 184, "image_id": 2395292, "entity": "truck", "caption": "truck has a side mirror", "question": ["is there truck ?", "is there a side mirror ?"], "prompt": "{} has a side mirror"}, {"index": 185, "image_id": 2395292, "entity": "truck", "caption": "truck door has no handle", "question": ["is there truck door ?", "is there no handle ?"], "prompt": "{} door has no handle"}, {"index": 186, "image_id": 2395042, "entity": "truck", "caption": "The truck door is open. ", "question": ["is there the truck door ?"], "prompt": "The {} door is open. "}, {"index": 187, "image_id": 2395042, "entity": "truck", "caption": "The driver is getting into the truck. ", "question": ["is there the driver ?", "is there the truck ?"], "prompt": "The driver is getting into the {}. "}, {"index": 188, "image_id": 2395042, "entity": "truck", "caption": "The truck is carrying cattle. ", "question": ["is there the truck ?", "are there cattle ?"], "prompt": "The {} is carrying cattle. "}, {"index": 189, "image_id": 2395042, "entity": "truck", "caption": "The truck's shadow is on the street.", "question": ["is there the truck's shadow ?", "is there the street ?"], "prompt": "The {}'s shadow is on the street."}, {"index": 190, "image_id": 2395042, "entity": "truck", "caption": "door of truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "door of {} is open"}, {"index": 191, "image_id": 2394987, "entity": "truck", "caption": "a sign on the side of a truck that says Drink Coca-Cola", "question": ["is there a sign ?", "is there the side ?", "is there a truck ?"], "prompt": "a sign on the side of a {} that says Drink Coca-Cola"}, {"index": 192, "image_id": 2394972, "entity": "truck", "caption": "the truck has a light", "question": ["is there the truck ?", "is there a light ?"], "prompt": "the {} has a light"}, {"index": 193, "image_id": 2394972, "entity": "truck", "caption": "the truck has a windshield", "question": ["is there the truck ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 194, "image_id": 2394854, "entity": "truck", "caption": "the truck has a green logo", "question": ["is there the truck ?", "is there a green logo ?"], "prompt": "the {} has a green logo"}, {"index": 195, "image_id": 2394854, "entity": "truck", "caption": "emergency lights are on the truck", "question": ["are there emergency lights ?", "is there the truck ?"], "prompt": "emergency lights are on the {}"}, {"index": 196, "image_id": 2394854, "entity": "truck", "caption": "a side mirror is on the truck", "question": ["is there a side mirror ?", "is there the truck ?"], "prompt": "a side mirror is on the {}"}, {"index": 197, "image_id": 2394740, "entity": "truck", "caption": "Honda emblem on the back of a gry truck", "question": ["is there the back ?", "is there a gry truck ?"], "prompt": "Honda emblem on the back of a gry {}"}, {"index": 198, "image_id": 2394740, "entity": "truck", "caption": "the truck is a honda", "question": ["is there the truck ?"], "prompt": "the {} is a honda"}, {"index": 199, "image_id": 2394740, "entity": "truck", "caption": "the truck has 4wd", "question": ["is there the truck ?", "is there 4wd ?"], "prompt": "the {} has 4wd"}, {"index": 200, "image_id": 2394327, "entity": "truck", "caption": "metal ladder sitting beside truck", "question": ["is there metal ladder ?", "is there truck ?"], "prompt": "metal ladder sitting beside {}"}, {"index": 201, "image_id": 2394327, "entity": "truck", "caption": "bottom on red crane attached to back of truck", "question": ["is there bottom ?", "is there red crane ?", "is there truck ?"], "prompt": "bottom on red crane attached to back of {}"}, {"index": 202, "image_id": 2393999, "entity": "truck", "caption": "The front of the truck is yellow.", "question": ["is there the front ?", "is there the truck ?"], "prompt": "The front of the {} is yellow."}, {"index": 203, "image_id": 2393989, "entity": "truck", "caption": "End of truck where garbage enters.", "question": ["is there end ?", "is there truck ?", "is there garbage ?"], "prompt": "End of {} where garbage enters."}, {"index": 204, "image_id": 2393842, "entity": "truck", "caption": "The people are looking at the truck.", "question": ["are there the people ?", "is there the truck ?"], "prompt": "The people are looking at the {}."}, {"index": 205, "image_id": 2393686, "entity": "truck", "caption": "The fire trucks windshield.", "question": ["are there the fire trucks ?"], "prompt": "The fire {}s windshield."}, {"index": 206, "image_id": 2393686, "entity": "truck", "caption": "A license plate is on the truck", "question": ["is there a license plate ?", "is there the truck ?"], "prompt": "A license plate is on the {}"}, {"index": 207, "image_id": 2393686, "entity": "truck", "caption": "License plate on front of firetruck that reads S360 ATO", "question": ["is there license plate ?", "is there front ?", "is there firetruck ?"], "prompt": "License plate on front of fire{} that reads S360 ATO"}, {"index": 208, "image_id": 2393548, "entity": "truck", "caption": "The bucket is dumping dirt into the truck", "question": ["is there the bucket ?", "is there dirt ?", "is there the truck ?"], "prompt": "The bucket is dumping dirt into the {}"}, {"index": 209, "image_id": 2393548, "entity": "truck", "caption": "These are the trucks front wheels", "question": ["are there the trucks ?", "are there front wheels ?"], "prompt": "These are the {}s front wheels"}, {"index": 210, "image_id": 2393548, "entity": "truck", "caption": "This is the cab of the truck", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "This is the cab of the {}"}, {"index": 211, "image_id": 2393263, "entity": "truck", "caption": "Ribbons tied around the mirror of a utility truck", "question": ["are there ribbons ?", "is there the mirror ?", "is there a utility truck ?"], "prompt": "Ribbons tied around the mirror of a utility {}"}, {"index": 212, "image_id": 2392926, "entity": "truck", "caption": "man driving large truck", "question": ["is there man ?", "is there large truck ?"], "prompt": "man driving large {}"}, {"index": 213, "image_id": 2392536, "entity": "truck", "caption": "front wheel of truck is black", "question": ["is there front wheel ?", "is there truck ?"], "prompt": "front wheel of {} is black"}, {"index": 214, "image_id": 2392536, "entity": "truck", "caption": "back wheel of truck is big", "question": ["is there back wheel ?", "is there truck ?"], "prompt": "back wheel of {} is big"}, {"index": 215, "image_id": 2392536, "entity": "truck", "caption": "The truck has a lady painted on it", "question": ["is there the truck ?", "is there a lady ?"], "prompt": "The {} has a lady painted on it"}, {"index": 216, "image_id": 2392394, "entity": "truck", "caption": "the front headlight on the truck", "question": ["is there the front headlight ?", "is there the truck ?"], "prompt": "the front headlight on the {}"}, {"index": 217, "image_id": 2392394, "entity": "truck", "caption": "man standing behind the truck", "question": ["is there man ?", "is there the truck ?"], "prompt": "man standing behind the {}"}, {"index": 218, "image_id": 2392105, "entity": "truck", "caption": "The windhield wipers are on the truck.", "question": ["are there the windhield wipers ?", "is there the truck ?"], "prompt": "The windhield wipers are on the {}."}, {"index": 219, "image_id": 2391764, "entity": "truck", "caption": "tires on truck are black", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires on {} are black"}, {"index": 220, "image_id": 2391651, "entity": "truck", "caption": "the pickup truck is on the street", "question": ["is there the pickup truck ?", "is there the street ?"], "prompt": "the pickup {} is on the street"}, {"index": 221, "image_id": 2391651, "entity": "truck", "caption": "person seemingly trying to get into truck", "question": ["is there person ?", "is there truck ?"], "prompt": "person seemingly trying to get into {}"}, {"index": 222, "image_id": 2391651, "entity": "truck", "caption": "The right side view mirrors on the truck.", "question": ["are there the right side view mirrors ?", "is there the truck ?"], "prompt": "The right side view mirrors on the {}."}, {"index": 223, "image_id": 2391651, "entity": "truck", "caption": "The front tire on the side of the truck that the door is open.", "question": ["is there the front tire ?", "is there the side ?", "is there the truck ?", "is there the door ?"], "prompt": "The front tire on the side of the {} that the door is open."}, {"index": 224, "image_id": 2391651, "entity": "truck", "caption": "front left tire of green truck", "question": ["is there front left tire ?", "is there green truck ?"], "prompt": "front left tire of green {}"}, {"index": 225, "image_id": 2391128, "entity": "truck", "caption": "Dead tree branch hanging out of the truck.", "question": ["is there dead tree branch ?", "is there the truck ?"], "prompt": "Dead tree branch hanging out of the {}."}, {"index": 226, "image_id": 2391128, "entity": "truck", "caption": "Large truck driving down the road.", "question": ["is there large truck ?", "is there the road ?"], "prompt": "Large {} driving down the road."}, {"index": 227, "image_id": 2391063, "entity": "truck", "caption": "clear truck head light", "question": ["is there clear truck head light ?"], "prompt": "clear {} head light"}, {"index": 228, "image_id": 2390018, "entity": "truck", "caption": "Black woman painted on truck", "question": ["is there black woman ?", "is there truck ?"], "prompt": "Black woman painted on {}"}, {"index": 229, "image_id": 2390018, "entity": "truck", "caption": "female character painted on truck", "question": ["is there female character ?", "is there truck ?"], "prompt": "female character painted on {}"}, {"index": 230, "image_id": 2389846, "entity": "truck", "caption": "Driver's side window rolled up on truck", "question": ["is there driver's side window ?", "is there truck ?"], "prompt": "Driver's side window rolled up on {}"}, {"index": 231, "image_id": 2389498, "entity": "truck", "caption": "red pick up truck parked on a street", "question": ["is there truck ?", "is there a street ?"], "prompt": "red pick up {} parked on a street"}, {"index": 232, "image_id": 2389435, "entity": "truck", "caption": "ladder coming out of the truck", "question": ["is there ladder ?", "is there the truck ?"], "prompt": "ladder coming out of the {}"}, {"index": 233, "image_id": 2389435, "entity": "truck", "caption": "kid standing on truck.", "question": ["is there kid ?", "is there truck ?"], "prompt": "kid standing on {}."}, {"index": 234, "image_id": 2389256, "entity": "truck", "caption": "The dishes are on the truck.", "question": ["are there the dishes ?", "is there the truck ?"], "prompt": "The dishes are on the {}."}, {"index": 235, "image_id": 2389256, "entity": "truck", "caption": "Two dishes are on the truck.", "question": ["are there two dishes ?", "is there the truck ?"], "prompt": "Two dishes are on the {}."}, {"index": 236, "image_id": 2389256, "entity": "truck", "caption": "dark container next to truck", "question": ["is there dark container ?", "is there truck ?"], "prompt": "dark container next to {}"}, {"index": 237, "image_id": 2389232, "entity": "truck", "caption": "a black truck bed cover", "question": ["is there a black truck bed ?"], "prompt": "a black {} bed cover"}, {"index": 238, "image_id": 2389232, "entity": "truck", "caption": "the trucks name DUDE", "question": ["are there the trucks ?", "is there dude ?"], "prompt": "the {}s name DUDE"}, {"index": 239, "image_id": 2389232, "entity": "truck", "caption": "truck bed has a black cover", "question": ["is there truck bed ?", "is there a black cover ?"], "prompt": "{} bed has a black cover"}, {"index": 240, "image_id": 2389232, "entity": "truck", "caption": "Hood of truck is open.", "question": ["is there hood ?", "is there truck ?"], "prompt": "Hood of {} is open."}, {"index": 241, "image_id": 2388587, "entity": "truck", "caption": "person walking near massive truck", "question": ["is there person ?", "is there massive truck ?"], "prompt": "person walking near massive {}"}, {"index": 242, "image_id": 2388482, "entity": "truck", "caption": "two dogs are standing in the back of a truck", "question": ["are there two dogs ?", "is there the back ?", "is there a truck ?"], "prompt": "two dogs are standing in the back of a {}"}, {"index": 243, "image_id": 2388482, "entity": "truck", "caption": "two dogs are peering over a truck cab", "question": ["are there two dogs ?", "is there a truck cab ?"], "prompt": "two dogs are peering over a {} cab"}, {"index": 244, "image_id": 2388482, "entity": "truck", "caption": "SIERRA is on the back of truck", "question": ["is there the back ?", "is there truck ?"], "prompt": "SIERRA is on the back of {}"}, {"index": 245, "image_id": 2388482, "entity": "truck", "caption": "sierra make on truck", "question": ["is there truck ?"], "prompt": "sierra make on {}"}, {"index": 246, "image_id": 2388392, "entity": "truck", "caption": "People are standing by the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "People are standing by the {}"}, {"index": 247, "image_id": 2388286, "entity": "truck", "caption": "The ladder is on the truck.", "question": ["is there the ladder ?", "is there the truck ?"], "prompt": "The ladder is on the {}."}, {"index": 248, "image_id": 2388286, "entity": "truck", "caption": "The paper on the truck is white.", "question": ["is there the paper ?", "is there the truck ?"], "prompt": "The paper on the {} is white."}, {"index": 249, "image_id": 2388286, "entity": "truck", "caption": "The ladders are on top of the truck", "question": ["are there the ladders ?", "is there top ?", "is there the truck ?"], "prompt": "The ladders are on top of the {}"}, {"index": 250, "image_id": 2388153, "entity": "truck", "caption": "Steel bed cover on pickup truck", "question": ["is there steel bed cover ?", "is there pickup truck ?"], "prompt": "Steel bed cover on pickup {}"}, {"index": 251, "image_id": 2388153, "entity": "truck", "caption": "Manufacturer emblem of a pickup truck", "question": ["is there manufacturer emblem ?", "is there a pickup truck ?"], "prompt": "Manufacturer emblem of a pickup {}"}, {"index": 252, "image_id": 2388153, "entity": "truck", "caption": "the truck has a bed cover", "question": ["is there the truck ?", "is there a bed cover ?"], "prompt": "the {} has a bed cover"}, {"index": 253, "image_id": 2387414, "entity": "truck", "caption": "green grass growing beside truck", "question": ["is there green grass ?", "is there truck ?"], "prompt": "green grass growing beside {}"}, {"index": 254, "image_id": 2387347, "entity": "truck", "caption": "Leaveless branches hang down in front of the truck", "question": ["are there leaveless branches ?", "is there front ?", "is there the truck ?"], "prompt": "Leaveless branches hang down in front of the {}"}, {"index": 255, "image_id": 2387347, "entity": "truck", "caption": "God is love is painted across the truck's front bumper", "question": ["is there love ?", "is there the truck's front bumper ?"], "prompt": "God is love is painted across the {}'s front bumper"}, {"index": 256, "image_id": 2387056, "entity": "truck", "caption": "Name of company written on truck.", "question": ["is there name ?", "is there company ?", "is there truck ?"], "prompt": "Name of company written on {}."}, {"index": 257, "image_id": 2386762, "entity": "truck", "caption": "silver metal door handle on truck", "question": ["is there silver metal door ?", "is there truck ?"], "prompt": "silver metal door handle on {}"}, {"index": 258, "image_id": 2386762, "entity": "truck", "caption": "Trees are behind the truck.", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are behind the {}."}, {"index": 259, "image_id": 2386704, "entity": "truck", "caption": "a garbage can next to the truck", "question": ["is there a garbage ?", "is there the truck ?"], "prompt": "a garbage can next to the {}"}, {"index": 260, "image_id": 2386704, "entity": "truck", "caption": "A cooler is on the truck", "question": ["is there the truck ?"], "prompt": "A cooler is on the {}"}, {"index": 261, "image_id": 2386704, "entity": "truck", "caption": "A menu is on the side of the truck", "question": ["is there a menu ?", "is there the side ?", "is there the truck ?"], "prompt": "A menu is on the side of the {}"}, {"index": 262, "image_id": 2386704, "entity": "truck", "caption": "A trash can is beside the truck", "question": ["is there a trash can ?", "is there the truck ?"], "prompt": "A trash can is beside the {}"}, {"index": 263, "image_id": 2386704, "entity": "truck", "caption": "A sign is on top of the truck", "question": ["is there a sign ?", "is there top ?", "is there the truck ?"], "prompt": "A sign is on top of the {}"}, {"index": 264, "image_id": 2386704, "entity": "truck", "caption": "food truck parked next to sidewalk", "question": ["is there food truck ?"], "prompt": "food {} parked next to sidewalk"}, {"index": 265, "image_id": 2386704, "entity": "truck", "caption": "lined trash can leaning againt food truck", "question": ["is there trash ?", "is there againt food truck ?"], "prompt": "lined trash can leaning againt food {}"}, {"index": 266, "image_id": 2386704, "entity": "truck", "caption": "Trash can outside of truck", "question": ["is there truck ?"], "prompt": "Trash can outside of {}"}, {"index": 267, "image_id": 2386545, "entity": "truck", "caption": "dirt splashed on side of truck door", "question": ["is there dirt ?", "is there side ?", "is there truck ?"], "prompt": "dirt splashed on side of {} door"}, {"index": 268, "image_id": 2386451, "entity": "truck", "caption": "roof rack on top of pickup truck", "question": ["is there roof rack ?", "is there top ?", "is there pickup truck ?"], "prompt": "roof rack on top of pickup {}"}, {"index": 269, "image_id": 2386451, "entity": "truck", "caption": "The truck is towing a boat", "question": ["is there the truck ?", "is there a boat ?"], "prompt": "The {} is towing a boat"}, {"index": 270, "image_id": 2385966, "entity": "truck", "caption": "The truck has a red logo on it.", "question": ["is there the truck ?", "is there a red logo ?"], "prompt": "The {} has a red logo on it."}, {"index": 271, "image_id": 2385966, "entity": "truck", "caption": "the caution lights on a truck", "question": ["are there the caution lights ?", "is there a truck ?"], "prompt": "the caution lights on a {}"}, {"index": 272, "image_id": 2385580, "entity": "truck", "caption": "Couch is riding in truck bed", "question": ["is there couch ?", "is there truck bed ?"], "prompt": "Couch is riding in {} bed"}, {"index": 273, "image_id": 2385580, "entity": "truck", "caption": "power lines hang above truck", "question": ["are there power lines ?", "is there truck ?"], "prompt": "power lines hang above {}"}, {"index": 274, "image_id": 2385580, "entity": "truck", "caption": "the couch sits in the back of a pickup truck", "question": ["is there the couch ?", "is there the back ?", "is there a pickup truck ?"], "prompt": "the couch sits in the back of a pickup {}"}, {"index": 275, "image_id": 2385580, "entity": "truck", "caption": "door handle on the truck door", "question": ["is there door ?", "is there the truck door ?"], "prompt": "door handle on the {} door"}, {"index": 276, "image_id": 2385559, "entity": "truck", "caption": "Gold writing on the front of the fire truck", "question": ["is there gold writing ?", "is there the front ?", "is there the fire truck ?"], "prompt": "Gold writing on the front of the fire {}"}, {"index": 277, "image_id": 2385559, "entity": "truck", "caption": "A firetruck is on a road.", "question": ["is there a firetruck ?", "is there a road ?"], "prompt": "A fire{} is on a road."}, {"index": 278, "image_id": 2385559, "entity": "truck", "caption": "The word \" PLAINS \" is on the front of a firetruck.", "question": ["is there the word ?", "are there \" plains ?", "is there the front ?", "is there a firetruck ?"], "prompt": "The word \" PLAINS \" is on the front of a fire{}."}, {"index": 279, "image_id": 2385559, "entity": "truck", "caption": "A street sign is above a firetruck.", "question": ["is there a street sign ?", "is there a firetruck ?"], "prompt": "A street sign is above a fire{}."}, {"index": 280, "image_id": 2385527, "entity": "truck", "caption": "red chef stenciled on side of truck", "question": ["is there red chef ?", "is there side ?", "is there truck ?"], "prompt": "red chef stenciled on side of {}"}, {"index": 281, "image_id": 2384523, "entity": "truck", "caption": "tires of truck painted", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires of {} painted"}, {"index": 282, "image_id": 2384523, "entity": "truck", "caption": "red painted bible sign on truck", "question": ["is there bible sign ?", "is there truck ?"], "prompt": "red painted bible sign on {}"}, {"index": 283, "image_id": 2384073, "entity": "truck", "caption": "Ice hanging from the front of truck", "question": ["is there ice ?", "is there the front ?", "is there truck ?"], "prompt": "Ice hanging from the front of {}"}, {"index": 284, "image_id": 2383911, "entity": "truck", "caption": "The word Challenge on the truck.", "question": ["is there the word challenge ?", "is there the truck ?"], "prompt": "The word Challenge on the {}."}, {"index": 285, "image_id": 2383909, "entity": "truck", "caption": "The bananas are in the truck bed", "question": ["are there the bananas ?", "is there the truck bed ?"], "prompt": "The bananas are in the {} bed"}, {"index": 286, "image_id": 2383743, "entity": "truck", "caption": "A truck is carrying merchandise", "question": ["is there a truck ?", "is there merchandise ?"], "prompt": "A {} is carrying merchandise"}, {"index": 287, "image_id": 2383743, "entity": "truck", "caption": "lights hanging off the back of the truck", "question": ["are there lights ?", "is there the back ?", "is there the truck ?"], "prompt": "lights hanging off the back of the {}"}, {"index": 288, "image_id": 2383315, "entity": "truck", "caption": "The fire truck is on the street", "question": ["is there the fire truck ?", "is there the street ?"], "prompt": "The fire {} is on the street"}, {"index": 289, "image_id": 2382893, "entity": "truck", "caption": "big lugs encircle a rear truck tire", "question": ["are there big lugs ?", "is there a rear truck tire ?"], "prompt": "big lugs encircle a rear {} tire"}, {"index": 290, "image_id": 2382893, "entity": "truck", "caption": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow truck", "question": ["are there present viewers' line ?", "is there site ?", "is there end ?", "is there yellow truck ?"], "prompt": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow {}"}, {"index": 291, "image_id": 2382893, "entity": "truck", "caption": "truck has a cover on back", "question": ["is there truck ?", "is there a cover ?"], "prompt": "{} has a cover on back"}, {"index": 292, "image_id": 2382893, "entity": "truck", "caption": "the cover is on the back of a truck", "question": ["is there the cover ?", "is there the back ?", "is there a truck ?"], "prompt": "the cover is on the back of a {}"}, {"index": 293, "image_id": 2382893, "entity": "truck", "caption": "the truck has some black letters on it", "question": ["is there the truck ?", "are there some black letters ?"], "prompt": "the {} has some black letters on it"}, {"index": 294, "image_id": 2382779, "entity": "truck", "caption": "the spare tire is on the truck", "question": ["is there the spare tire ?", "is there the truck ?"], "prompt": "the spare tire is on the {}"}, {"index": 295, "image_id": 2382494, "entity": "truck", "caption": "the truck has a plate", "question": ["is there the truck ?", "is there a plate ?"], "prompt": "the {} has a plate"}, {"index": 296, "image_id": 2382494, "entity": "truck", "caption": "the truck has a bumper", "question": ["is there the truck ?", "is there a bumper ?"], "prompt": "the {} has a bumper"}, {"index": 297, "image_id": 2382494, "entity": "truck", "caption": "the truck has a wiper", "question": ["is there the truck ?", "is there a wiper ?"], "prompt": "the {} has a wiper"}, {"index": 298, "image_id": 2382494, "entity": "truck", "caption": "the truck has a window", "question": ["is there the truck ?", "is there a window ?"], "prompt": "the {} has a window"}, {"index": 299, "image_id": 2382494, "entity": "truck", "caption": "the chevy logo is on the truck", "question": ["is there the chevy logo ?", "is there the truck ?"], "prompt": "the chevy logo is on the {}"}, {"index": 300, "image_id": 2382494, "entity": "truck", "caption": "the truck has a silver grill", "question": ["is there the truck ?", "is there a silver grill ?"], "prompt": "the {} has a silver grill"}, {"index": 301, "image_id": 2382470, "entity": "truck", "caption": "Waste management truck is on the road", "question": ["is there waste management truck ?", "is there the road ?"], "prompt": "Waste management {} is on the road"}, {"index": 302, "image_id": 2382462, "entity": "truck", "caption": "man is standing behind truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is standing behind {}"}, {"index": 303, "image_id": 2382462, "entity": "truck", "caption": "truck has white door", "question": ["is there truck ?", "is there white door ?"], "prompt": "{} has white door"}, {"index": 304, "image_id": 2382454, "entity": "truck", "caption": "Lights are on in front of the truck.", "question": ["are there lights ?", "is there front ?", "is there the truck ?"], "prompt": "Lights are on in front of the {}."}, {"index": 305, "image_id": 2381035, "entity": "truck", "caption": "Woman standing on step of truck", "question": ["is there woman ?", "is there step ?", "is there truck ?"], "prompt": "Woman standing on step of {}"}, {"index": 306, "image_id": 2380908, "entity": "truck", "caption": "The door handle on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door handle on the {}"}, {"index": 307, "image_id": 2380866, "entity": "truck", "caption": "the truck has a mirror", "question": ["is there the truck ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 308, "image_id": 2380866, "entity": "truck", "caption": "the logo is on the back of the truck", "question": ["is there the logo ?", "is there the back ?", "is there the truck ?"], "prompt": "the logo is on the back of the {}"}, {"index": 309, "image_id": 2380866, "entity": "truck", "caption": "the billboard is infront of the truck", "question": ["is there the billboard ?", "is there the truck ?"], "prompt": "the billboard is infront of the {}"}, {"index": 310, "image_id": 2380592, "entity": "truck", "caption": "man standing at back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "man standing at back of {}"}, {"index": 311, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is black"}, {"index": 312, "image_id": 2380587, "entity": "truck", "caption": "the truck has an antenna", "question": ["is there the truck ?", "is there an antenna ?"], "prompt": "the {} has an antenna"}, {"index": 313, "image_id": 2380587, "entity": "truck", "caption": "black windshield wipers are on the truck", "question": ["are there black windshield wipers ?", "is there the truck ?"], "prompt": "black windshield wipers are on the {}"}, {"index": 314, "image_id": 2380587, "entity": "truck", "caption": "the truck has writing on the side", "question": ["is there the truck ?", "is there the side ?"], "prompt": "the {} has writing on the side"}, {"index": 315, "image_id": 2380587, "entity": "truck", "caption": "a rack is on the roof of the truck", "question": ["is there a rack ?", "is there the roof ?", "is there the truck ?"], "prompt": "a rack is on the roof of the {}"}, {"index": 316, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is flat black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is flat black"}, {"index": 317, "image_id": 2380587, "entity": "truck", "caption": "red lettering is on the side of the truck", "question": ["is there red lettering ?", "is there the side ?", "is there the truck ?"], "prompt": "red lettering is on the side of the {}"}, {"index": 318, "image_id": 2380587, "entity": "truck", "caption": "the headlight of the truck is off", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "the headlight of the {} is off"}, {"index": 319, "image_id": 2380587, "entity": "truck", "caption": "a rack is on top of the truck", "question": ["is there a rack ?", "is there top ?", "is there the truck ?"], "prompt": "a rack is on top of the {}"}, {"index": 320, "image_id": 2380587, "entity": "truck", "caption": "green hedges are behind the truck", "question": ["are there green hedges ?", "is there the truck ?"], "prompt": "green hedges are behind the {}"}, {"index": 321, "image_id": 2380273, "entity": "truck", "caption": "the truck has a long side mirror ", "question": ["is there the truck ?", "is there a long side mirror ?"], "prompt": "the {} has a long side mirror "}, {"index": 322, "image_id": 2380273, "entity": "truck", "caption": "The truck is on pavement. ", "question": ["is there the truck ?", "is there pavement ?"], "prompt": "The {} is on pavement. "}, {"index": 323, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting something.", "question": ["is there the truck ?", "is there something ?"], "prompt": "The {} is lifting something."}, {"index": 324, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting a small vehicle with a crane.", "question": ["is there the truck ?", "is there a small vehicle ?", "is there a crane ?"], "prompt": "The {} is lifting a small vehicle with a crane."}, {"index": 325, "image_id": 2380112, "entity": "truck", "caption": "Military truck loading a vehicle", "question": ["is there military truck ?", "is there a vehicle ?"], "prompt": "Military {} loading a vehicle"}, {"index": 326, "image_id": 2379690, "entity": "truck", "caption": "man driving a vintage truck", "question": ["is there man ?", "is there a vintage truck ?"], "prompt": "man driving a vintage {}"}, {"index": 327, "image_id": 2379397, "entity": "truck", "caption": "man climbing back of truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man climbing back of {}"}, {"index": 328, "image_id": 2379397, "entity": "truck", "caption": "boy in grey shirt standing on top of truck", "question": ["is there boy ?", "is there top ?", "is there truck ?"], "prompt": "boy in grey shirt standing on top of {}"}, {"index": 329, "image_id": 2379397, "entity": "truck", "caption": "young man climbing up back of truck", "question": ["is there young man ?", "is there truck ?"], "prompt": "young man climbing up back of {}"}, {"index": 330, "image_id": 2378872, "entity": "truck", "caption": "Dog standing on side of truck bed", "question": ["is there dog ?", "is there side ?", "is there truck ?", "is there bed ?"], "prompt": "Dog standing on side of {} bed"}, {"index": 331, "image_id": 2378626, "entity": "truck", "caption": "Car parked in front of pick-up truck", "question": ["is there car ?", "is there front ?", "is there pick-up truck ?"], "prompt": "Car parked in front of pick-up {}"}, {"index": 332, "image_id": 2378563, "entity": "truck", "caption": "The word Blow on the tail gate of the truck.", "question": ["is there the word ?", "is there the tail gate ?", "is there the truck ?"], "prompt": "The word Blow on the tail gate of the {}."}, {"index": 333, "image_id": 2378417, "entity": "truck", "caption": "Green writing on side of truck.", "question": ["is there green writing ?", "is there side ?", "is there truck ?"], "prompt": "Green writing on side of {}."}, {"index": 334, "image_id": 2378417, "entity": "truck", "caption": "Big tire leaning on truck.", "question": ["is there big tire ?", "is there truck ?"], "prompt": "Big tire leaning on {}."}, {"index": 335, "image_id": 2378417, "entity": "truck", "caption": "weeds are growing by the old truck", "question": ["are there weeds ?", "is there the old truck ?"], "prompt": "weeds are growing by the old {}"}, {"index": 336, "image_id": 2378218, "entity": "truck", "caption": "rope tied in truck", "question": ["is there rope ?", "is there truck ?"], "prompt": "rope tied in {}"}, {"index": 337, "image_id": 2378218, "entity": "truck", "caption": "the truck the cow is sitting on", "question": ["is there the truck ?", "is there the cow ?"], "prompt": "the {} the cow is sitting on"}, {"index": 338, "image_id": 2378035, "entity": "truck", "caption": "men driving an old time truck", "question": ["are there men ?", "is there an old time truck ?"], "prompt": "men driving an old time {}"}, {"index": 339, "image_id": 2377760, "entity": "truck", "caption": "a truck is driving down the road.", "question": ["is there a truck ?", "is there the road ?"], "prompt": "a {} is driving down the road."}, {"index": 340, "image_id": 2377333, "entity": "truck", "caption": "round headlight on truck", "question": ["is there headlight ?", "is there truck ?"], "prompt": "round headlight on {}"}, {"index": 341, "image_id": 2377333, "entity": "truck", "caption": "Tan truck has five visible tires", "question": ["is there tan truck ?", "are there five visible tires ?"], "prompt": "Tan {} has five visible tires"}, {"index": 342, "image_id": 2376346, "entity": "truck", "caption": "man in red vest standing in front of truck", "question": ["is there man ?", "is there red vest ?", "is there front ?", "is there truck ?"], "prompt": "man in red vest standing in front of {}"}, {"index": 343, "image_id": 2376063, "entity": "truck", "caption": "large tarps covering bed of red-orange truck", "question": ["are there large tarps ?", "is there bed ?", "is there red-orange truck ?"], "prompt": "large tarps covering bed of red-orange {}"}, {"index": 344, "image_id": 2376061, "entity": "truck", "caption": "a fire truck is driving down the street.", "question": ["is there a fire truck ?", "is there the street ?"], "prompt": "a fire {} is driving down the street."}, {"index": 345, "image_id": 2376061, "entity": "truck", "caption": "American flag hanging from the truck", "question": ["is there american flag ?", "is there the truck ?"], "prompt": "American flag hanging from the {}"}, {"index": 346, "image_id": 2376005, "entity": "truck", "caption": "the truck has lettering on the side", "question": ["is there the truck ?", "is there lettering ?", "is there the side ?"], "prompt": "the {} has lettering on the side"}, {"index": 347, "image_id": 2376005, "entity": "truck", "caption": "the truck has a metal fender in front", "question": ["is there the truck ?", "is there a metal fender ?", "is there front ?"], "prompt": "the {} has a metal fender in front"}, {"index": 348, "image_id": 2374981, "entity": "truck", "caption": "Person walking behind truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking behind {}."}, {"index": 349, "image_id": 2374981, "entity": "truck", "caption": "The truck is carrying jugs of water.", "question": ["is there the truck ?", "are there jugs ?", "is there water ?"], "prompt": "The {} is carrying jugs of water."}, {"index": 350, "image_id": 2374981, "entity": "truck", "caption": "The taxi is next to the truck.", "question": ["is there the taxi ?", "is there the truck ?"], "prompt": "The taxi is next to the {}."}, {"index": 351, "image_id": 2374981, "entity": "truck", "caption": "the truck is a water truck", "question": ["is there the truck ?", "is there a water truck ?"], "prompt": "the {} is a water {}"}, {"index": 352, "image_id": 2374218, "entity": "truck", "caption": "truck has grey tire", "question": ["is there truck ?", "is there grey tire ?"], "prompt": "{} has grey tire"}, {"index": 353, "image_id": 2374072, "entity": "truck", "caption": "Person standing near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person standing near {}."}, {"index": 354, "image_id": 2373789, "entity": "truck", "caption": "door of truck has a window", "question": ["is there door ?", "is there truck ?", "is there a window ?"], "prompt": "door of {} has a window"}, {"index": 355, "image_id": 2373559, "entity": "truck", "caption": "brick street the truck is on", "question": ["is there brick street ?", "is there the truck ?"], "prompt": "brick street the {} is on"}, {"index": 356, "image_id": 2373441, "entity": "truck", "caption": "Black shadows cast on the red side of a truck", "question": ["are there black shadows ?", "is there the red side ?", "is there a truck ?"], "prompt": "Black shadows cast on the red side of a {}"}, {"index": 357, "image_id": 2373441, "entity": "truck", "caption": "front wheel truck is big", "question": ["is there front wheel truck ?"], "prompt": "front wheel {} is big"}, {"index": 358, "image_id": 2372785, "entity": "truck", "caption": "it is the front tire of the truck", "question": ["is there the front tire ?", "is there the truck ?"], "prompt": "it is the front tire of the {}"}, {"index": 359, "image_id": 2372785, "entity": "truck", "caption": "is it the back tire of the white truck", "question": ["is there the back tire ?", "is there the white truck ?"], "prompt": "is it the back tire of the white {}"}, {"index": 360, "image_id": 2372785, "entity": "truck", "caption": "a person is sitting in the white truck", "question": ["is there a person ?", "is there the white truck ?"], "prompt": "a person is sitting in the white {}"}, {"index": 361, "image_id": 2372785, "entity": "truck", "caption": "door handle on delivery truck", "question": ["is there door ?", "is there delivery truck ?"], "prompt": "door handle on delivery {}"}, {"index": 362, "image_id": 2372670, "entity": "truck", "caption": "green pick up next to mack truck on the left", "question": ["is there mack truck ?"], "prompt": "green pick up next to mack {} on the left"}, {"index": 363, "image_id": 2372645, "entity": "truck", "caption": "a garbage can sitting next to a truck", "question": ["is there a garbage ?", "is there a truck ?"], "prompt": "a garbage can sitting next to a {}"}, {"index": 364, "image_id": 2372645, "entity": "truck", "caption": "Doll is in top of the truck.", "question": ["is there doll ?", "is there top ?", "is there the truck ?"], "prompt": "Doll is in top of the {}."}, {"index": 365, "image_id": 2372493, "entity": "truck", "caption": "dog is resting in shade of truck", "question": ["is there dog ?", "is there shade ?", "is there truck ?"], "prompt": "dog is resting in shade of {}"}, {"index": 366, "image_id": 2372487, "entity": "truck", "caption": "ford is in the grill of truck", "question": ["is there the grill ?", "is there truck ?"], "prompt": "ford is in the grill of {}"}, {"index": 367, "image_id": 2372487, "entity": "truck", "caption": "hood is black on the truck", "question": ["is there hood ?", "is there the truck ?"], "prompt": "hood is black on the {}"}, {"index": 368, "image_id": 2372487, "entity": "truck", "caption": "blue auto maker sign behind truck", "question": ["is there blue auto maker ?", "is there truck ?"], "prompt": "blue auto maker sign behind {}"}, {"index": 369, "image_id": 2372400, "entity": "truck", "caption": "Woman sitting on top of a truck", "question": ["is there woman ?", "is there top ?", "is there a truck ?"], "prompt": "Woman sitting on top of a {}"}, {"index": 370, "image_id": 2372385, "entity": "truck", "caption": "Man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "Man driving a {}"}, {"index": 371, "image_id": 2372385, "entity": "truck", "caption": "headlights in front of truck are off", "question": ["are there headlights ?", "is there front ?", "is there truck ?"], "prompt": "headlights in front of {} are off"}, {"index": 372, "image_id": 2372249, "entity": "truck", "caption": "it is the back tire of the truck", "question": ["is there the back tire ?", "is there the truck ?"], "prompt": "it is the back tire of the {}"}, {"index": 373, "image_id": 2372249, "entity": "truck", "caption": "it is the front head light of the truck", "question": ["is there the front head light ?", "is there the truck ?"], "prompt": "it is the front head light of the {}"}, {"index": 374, "image_id": 2372249, "entity": "truck", "caption": "it is the windshield of the truck", "question": ["is there the windshield ?", "is there the truck ?"], "prompt": "it is the windshield of the {}"}, {"index": 375, "image_id": 2372238, "entity": "truck", "caption": "A big truck is sitting in a parking lot.", "question": ["is there a big truck ?", "is there a parking lot ?"], "prompt": "A big {} is sitting in a parking lot."}, {"index": 376, "image_id": 2372063, "entity": "truck", "caption": "letters on truck says \"Budweiser\"", "question": ["are there letters ?", "is there truck ?", "is there budweiser ?"], "prompt": "letters on {} says \"Budweiser\""}, {"index": 377, "image_id": 2371995, "entity": "truck", "caption": "letter painted on truck", "question": ["is there letter ?", "is there truck ?"], "prompt": "letter painted on {}"}, {"index": 378, "image_id": 2371903, "entity": "truck", "caption": "stars are on the truck", "question": ["are there stars ?", "is there the truck ?"], "prompt": "stars are on the {}"}, {"index": 379, "image_id": 2371903, "entity": "truck", "caption": "USA painted on a truck", "question": ["is there a truck ?"], "prompt": "USA painted on a {}"}, {"index": 380, "image_id": 2371766, "entity": "truck", "caption": "this is the trucks windshield ", "question": ["are there the trucks ?"], "prompt": "this is the {}s windshield "}, {"index": 381, "image_id": 2371766, "entity": "truck", "caption": "truck window is open", "question": ["is there truck window ?"], "prompt": "{} window is open"}, {"index": 382, "image_id": 2371022, "entity": "truck", "caption": "a red truck parked", "question": ["is there a red truck ?"], "prompt": "a red {} parked"}, {"index": 383, "image_id": 2371022, "entity": "truck", "caption": "Tire splash guard of truck", "question": ["is there tire splash guard ?", "is there truck ?"], "prompt": "Tire splash guard of {}"}, {"index": 384, "image_id": 2369895, "entity": "truck", "caption": "The tire of the truck is black ", "question": ["is there the tire ?", "is there the truck ?"], "prompt": "The tire of the {} is black "}, {"index": 385, "image_id": 2369837, "entity": "truck", "caption": "A truck is on the street.", "question": ["is there a truck ?", "is there the street ?"], "prompt": "A {} is on the street."}, {"index": 386, "image_id": 2369837, "entity": "truck", "caption": "A canopy drapes over the truck.", "question": ["is there a canopy ?", "is there the truck ?"], "prompt": "A canopy drapes over the {}."}, {"index": 387, "image_id": 2369837, "entity": "truck", "caption": "The truck is missing the hood.", "question": ["is there the truck ?", "is there the hood ?"], "prompt": "The {} is missing the hood."}, {"index": 388, "image_id": 2369288, "entity": "truck", "caption": "bear is on truck bed", "question": ["is there truck bed ?"], "prompt": "bear is on {} bed"}, {"index": 389, "image_id": 2369089, "entity": "truck", "caption": "silver door handle on truck", "question": ["is there silver door ?", "is there truck ?"], "prompt": "silver door handle on {}"}, {"index": 390, "image_id": 2368262, "entity": "truck", "caption": "this truck has a backdoor", "question": ["is there this truck ?", "is there a backdoor ?"], "prompt": "this {} has a backdoor"}, {"index": 391, "image_id": 2368262, "entity": "truck", "caption": "the rear door handle to the truck is rusting", "question": ["is there the rear door ?", "is there the truck ?"], "prompt": "the rear door handle to the {} is rusting"}, {"index": 392, "image_id": 2368262, "entity": "truck", "caption": "latches are on the truck rear door", "question": ["are there latches ?", "is there the truck rear door ?"], "prompt": "latches are on the {} rear door"}, {"index": 393, "image_id": 2368262, "entity": "truck", "caption": "writing is visible on the side of the truck", "question": ["is there writing ?", "is there the side ?", "is there the truck ?"], "prompt": "writing is visible on the side of the {}"}, {"index": 394, "image_id": 2368262, "entity": "truck", "caption": "the side door of the truck has windows", "question": ["is there the side door ?", "is there the truck ?", "are there windows ?"], "prompt": "the side door of the {} has windows"}, {"index": 395, "image_id": 2368262, "entity": "truck", "caption": "Trees in front of truck have no leaves.", "question": ["are there trees ?", "is there front ?", "is there truck ?", "are there no leaves ?"], "prompt": "Trees in front of {} have no leaves."}, {"index": 396, "image_id": 2367654, "entity": "truck", "caption": "the trucks back license plate ", "question": ["are there the trucks ?", "is there license plate ?"], "prompt": "the {}s back license plate "}, {"index": 397, "image_id": 2367654, "entity": "truck", "caption": "truck is hauling circular objects", "question": ["is there truck ?", "are there circular objects ?"], "prompt": "{} is hauling circular objects"}, {"index": 398, "image_id": 2367654, "entity": "truck", "caption": "The truck has ten tubes.", "question": ["is there the truck ?", "are there ten tubes ?"], "prompt": "The {} has ten tubes."}, {"index": 399, "image_id": 2367654, "entity": "truck", "caption": "The truck has six red ligths.", "question": ["is there the truck ?", "are there six red ligths ?"], "prompt": "The {} has six red ligths."}, {"index": 400, "image_id": 2367556, "entity": "truck", "caption": "truck has red tail light", "question": ["is there truck ?", "is there red tail light ?"], "prompt": "{} has red tail light"}, {"index": 401, "image_id": 2367108, "entity": "truck", "caption": "the truck has words on it", "question": ["is there the truck ?", "are there words ?"], "prompt": "the {} has words on it"}, {"index": 402, "image_id": 2366931, "entity": "truck", "caption": "car door handle on truck", "question": ["is there car door ?", "is there truck ?"], "prompt": "car door handle on {}"}, {"index": 403, "image_id": 2366645, "entity": "truck", "caption": "A horse int he bed of a truck", "question": ["is there a truck ?"], "prompt": "A horse int he bed of a {}"}, {"index": 404, "image_id": 2366645, "entity": "truck", "caption": "the white wall rims on the truck tire", "question": ["are there the white wall rims ?", "is there the truck tire ?"], "prompt": "the white wall rims on the {} tire"}, {"index": 405, "image_id": 2366233, "entity": "truck", "caption": "A gray sedan parked very closely in front of the truck", "question": ["is there a gray sedan ?", "is there front ?", "is there the truck ?"], "prompt": "A gray sedan parked very closely in front of the {}"}, {"index": 406, "image_id": 2366156, "entity": "truck", "caption": "Horse standing next to a red truck", "question": ["is there horse ?", "is there a red truck ?"], "prompt": "Horse standing next to a red {}"}, {"index": 407, "image_id": 2365951, "entity": "truck", "caption": "The truck has lights on it's roof", "question": ["is there the truck ?", "are there lights ?", "is there it's roof ?"], "prompt": "The {} has lights on it's roof"}, {"index": 408, "image_id": 2365951, "entity": "truck", "caption": "red numbers painted on a truck", "question": ["are there red numbers ?", "is there a truck ?"], "prompt": "red numbers painted on a {}"}, {"index": 409, "image_id": 2365951, "entity": "truck", "caption": "The concrete truck is the color yellow ", "question": ["is there the concrete truck ?"], "prompt": "The concrete {} is the color yellow "}, {"index": 410, "image_id": 2365951, "entity": "truck", "caption": "This is a yellow truck", "question": ["is there a yellow truck ?"], "prompt": "This is a yellow {}"}, {"index": 411, "image_id": 2365691, "entity": "truck", "caption": "sideways spare tire mounted under the truck", "question": ["is there spare tire ?", "is there the truck ?"], "prompt": "sideways spare tire mounted under the {}"}, {"index": 412, "image_id": 2365570, "entity": "truck", "caption": "The cab of the truck is red", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "The cab of the {} is red"}, {"index": 413, "image_id": 2365570, "entity": "truck", "caption": "The dumping part of the truck is yellow", "question": ["is there the dumping part ?", "is there the truck ?"], "prompt": "The dumping part of the {} is yellow"}, {"index": 414, "image_id": 2365570, "entity": "truck", "caption": "This truck has gone through a lot of dirt", "question": ["is there this truck ?", "is there a lot ?", "is there dirt ?"], "prompt": "This {} has gone through a lot of dirt"}, {"index": 415, "image_id": 2365252, "entity": "truck", "caption": "man with long hair stands beside truck cab", "question": ["is there man ?", "is there long hair ?", "is there truck cab ?"], "prompt": "man with long hair stands beside {} cab"}, {"index": 416, "image_id": 2365252, "entity": "truck", "caption": "truck's front turn signal", "question": ["is there truck's front turn ?"], "prompt": "{}'s front turn signal"}, {"index": 417, "image_id": 2364632, "entity": "truck", "caption": "the truck's cab is blue", "question": ["is there the truck's cab ?"], "prompt": "the {}'s cab is blue"}, {"index": 418, "image_id": 2364512, "entity": "truck", "caption": "Top of the truck is white and green in color", "question": ["is there top ?", "is there the truck ?", "is there color ?"], "prompt": "Top of the {} is white and green in color"}, {"index": 419, "image_id": 2363920, "entity": "truck", "caption": "man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man driving a {}"}, {"index": 420, "image_id": 2362822, "entity": "truck", "caption": "gray ram sniffing a truck", "question": ["is there a truck ?"], "prompt": "gray ram sniffing a {}"}, {"index": 421, "image_id": 2362058, "entity": "truck", "caption": "it is a ladder on the side of the truck", "question": ["is there a ladder ?", "is there the side ?", "is there the truck ?"], "prompt": "it is a ladder on the side of the {}"}, {"index": 422, "image_id": 2362058, "entity": "truck", "caption": "it is the headlight of the truck", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "it is the headlight of the {}"}, {"index": 423, "image_id": 2361362, "entity": "truck", "caption": "garbage man running behing garabge truck", "question": ["is there garbage man ?", "is there behing garabge truck ?"], "prompt": "garbage man running behing garabge {}"}, {"index": 424, "image_id": 2361169, "entity": "truck", "caption": "cartoon character painted on truck", "question": ["is there cartoon character ?", "is there truck ?"], "prompt": "cartoon character painted on {}"}, {"index": 425, "image_id": 2360580, "entity": "truck", "caption": "The truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "The {} is on the road"}, {"index": 426, "image_id": 2360438, "entity": "truck", "caption": "a sign that says Signal on the side of the truck", "question": ["is there a sign ?", "is there signal ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign that says Signal on the side of the {}"}, {"index": 427, "image_id": 2360362, "entity": "truck", "caption": "Two people walking toward a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "Two people walking toward a {}"}, {"index": 428, "image_id": 2360185, "entity": "truck", "caption": "Man reflected in the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man reflected in the {}."}, {"index": 429, "image_id": 2359911, "entity": "truck", "caption": "Plymouth written on the truck", "question": ["is there the truck ?"], "prompt": "Plymouth written on the {}"}, {"index": 430, "image_id": 2359717, "entity": "truck", "caption": "united states flag on truck", "question": ["is there truck ?"], "prompt": "united states flag on {}"}, {"index": 431, "image_id": 2359708, "entity": "truck", "caption": "a firetruck headlight ", "question": ["is there a firetruck headlight ?"], "prompt": "a fire{} headlight "}, {"index": 432, "image_id": 2359307, "entity": "truck", "caption": "the truck is in the Forrest", "question": ["is there the truck ?", "is there the forrest ?"], "prompt": "the {} is in the Forrest"}, {"index": 433, "image_id": 2357815, "entity": "truck", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white car is behind the {}"}, {"index": 434, "image_id": 2357815, "entity": "truck", "caption": "A tarp is over the back of the truck", "question": ["is there a tarp ?", "is there the back ?", "is there the truck ?"], "prompt": "A tarp is over the back of the {}"}, {"index": 435, "image_id": 2357227, "entity": "truck", "caption": "white numbers are on the truck", "question": ["are there white numbers ?", "is there the truck ?"], "prompt": "white numbers are on the {}"}, {"index": 436, "image_id": 2357227, "entity": "truck", "caption": "a man straps the truck down", "question": ["is there a man ?", "is there the truck ?"], "prompt": "a man straps the {} down"}, {"index": 437, "image_id": 2357081, "entity": "truck", "caption": "The left front headlight on the truck", "question": ["is there the left front headlight ?", "is there the truck ?"], "prompt": "The left front headlight on the {}"}, {"index": 438, "image_id": 2356932, "entity": "truck", "caption": "The truck is casting a shadow. ", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow. "}, {"index": 439, "image_id": 2356932, "entity": "truck", "caption": "Person taking a picture of the truck. ", "question": ["is there person ?", "is there a picture ?", "is there the truck ?"], "prompt": "Person taking a picture of the {}. "}, {"index": 440, "image_id": 2356921, "entity": "truck", "caption": "GREAT TASTE written on the side of a truck. ", "question": ["is there great taste ?", "is there the side ?", "is there a truck ?"], "prompt": "GREAT TASTE written on the side of a {}. "}, {"index": 441, "image_id": 2355892, "entity": "truck", "caption": "it is the letter C on the truck ", "question": ["is there the letter ?", "is there c ?", "is there the truck ?"], "prompt": "it is the letter C on the {} "}, {"index": 442, "image_id": 2355892, "entity": "truck", "caption": "it is the letter O on the truck", "question": ["is there the letter ?", "is there o ?", "is there the truck ?"], "prompt": "it is the letter O on the {}"}, {"index": 443, "image_id": 2355892, "entity": "truck", "caption": "it is a light on the truck", "question": ["is there a light ?", "is there the truck ?"], "prompt": "it is a light on the {}"}, {"index": 444, "image_id": 2355892, "entity": "truck", "caption": "the truck has a black wheel", "question": ["is there the truck ?", "is there a black wheel ?"], "prompt": "the {} has a black wheel"}, {"index": 445, "image_id": 2355892, "entity": "truck", "caption": "the truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 446, "image_id": 2355892, "entity": "truck", "caption": "The truck has lights on it.", "question": ["is there the truck ?", "are there lights ?"], "prompt": "The {} has lights on it."}, {"index": 447, "image_id": 2355892, "entity": "truck", "caption": "The truck says coco", "question": ["is there the truck ?", "is there coco ?"], "prompt": "The {} says coco"}, {"index": 448, "image_id": 2355892, "entity": "truck", "caption": "The lettering is white on the truck", "question": ["is there the lettering ?", "is there the truck ?"], "prompt": "The lettering is white on the {}"}, {"index": 449, "image_id": 2355892, "entity": "truck", "caption": "The truck has tires.", "question": ["is there the truck ?", "are there tires ?"], "prompt": "The {} has tires."}, {"index": 450, "image_id": 2355741, "entity": "truck", "caption": "Woman standing next to the truck", "question": ["is there woman ?", "is there the truck ?"], "prompt": "Woman standing next to the {}"}, {"index": 451, "image_id": 2354584, "entity": "truck", "caption": "There is a symbol on this truck that says Fire Dept.", "question": ["is there a symbol ?", "is there this truck ?", "is there fire dept ?"], "prompt": "There is a symbol on this {} that says Fire Dept."}, {"index": 452, "image_id": 2354302, "entity": "truck", "caption": "rust covered truck shows it has some age", "question": ["is there rust covered truck ?", "is there some age ?"], "prompt": "rust covered {} shows it has some age"}, {"index": 453, "image_id": 2354302, "entity": "truck", "caption": "white hydrolic machinery on truck shows unprotected by weather", "question": ["is there white hydrolic machinery ?", "are there truck shows ?", "is there weather ?"], "prompt": "white hydrolic machinery on {} shows unprotected by weather"}, {"index": 454, "image_id": 2354302, "entity": "truck", "caption": "windshield on truck looks clean", "question": ["is there windshield ?", "is there truck ?"], "prompt": "windshield on {} looks clean"}, {"index": 455, "image_id": 2353824, "entity": "truck", "caption": "truck has four lights", "question": ["is there truck ?", "are there four lights ?"], "prompt": "{} has four lights"}, {"index": 456, "image_id": 2353824, "entity": "truck", "caption": "truck lights are lit", "question": ["are there truck lights ?"], "prompt": "{} lights are lit"}, {"index": 457, "image_id": 2353824, "entity": "truck", "caption": "truck has yellow arm", "question": ["is there truck ?", "is there yellow arm ?"], "prompt": "{} has yellow arm"}, {"index": 458, "image_id": 2353824, "entity": "truck", "caption": "Orange lit up light above truck.", "question": ["is there light ?", "is there truck ?"], "prompt": "Orange lit up light above {}."}, {"index": 459, "image_id": 2353075, "entity": "truck", "caption": "PX is on the top of the truck", "question": ["is there px ?", "is there the top ?", "is there the truck ?"], "prompt": "PX is on the top of the {}"}, {"index": 460, "image_id": 2353075, "entity": "truck", "caption": "mercedes emblem on truck ", "question": ["are there mercedes ?", "is there truck ?"], "prompt": "mercedes emblem on {} "}, {"index": 461, "image_id": 2352665, "entity": "truck", "caption": "door handle on white truck", "question": ["is there door ?", "is there white truck ?"], "prompt": "door handle on white {}"}, {"index": 462, "image_id": 2352260, "entity": "truck", "caption": "box spring on it's side in the back of a truck", "question": ["is there box spring ?", "is there it's side ?", "is there the back ?", "is there a truck ?"], "prompt": "box spring on it's side in the back of a {}"}, {"index": 463, "image_id": 2351947, "entity": "truck", "caption": "front left wheel of the fire truck", "question": ["is there front left wheel ?", "is there the fire truck ?"], "prompt": "front left wheel of the fire {}"}, {"index": 464, "image_id": 2351810, "entity": "truck", "caption": "man standing in back of windowless truck", "question": ["is there man ?", "is there windowless truck ?"], "prompt": "man standing in back of windowless {}"}, {"index": 465, "image_id": 2351290, "entity": "truck", "caption": "a striped blanket is on a truck", "question": ["is there a striped blanket ?", "is there a truck ?"], "prompt": "a striped blanket is on a {}"}, {"index": 466, "image_id": 2351290, "entity": "truck", "caption": "the wall behind the truck is silver", "question": ["is there the wall ?", "is there the truck ?"], "prompt": "the wall behind the {} is silver"}, {"index": 467, "image_id": 2351178, "entity": "truck", "caption": "The truck is carrying a surfboard", "question": ["is there the truck ?", "is there a surfboard ?"], "prompt": "The {} is carrying a surfboard"}, {"index": 468, "image_id": 2351178, "entity": "truck", "caption": "life saving device on truck", "question": ["is there device ?", "is there truck ?"], "prompt": "life saving device on {}"}, {"index": 469, "image_id": 2351178, "entity": "truck", "caption": "The left headlight on the truck.", "question": ["is there the left headlight ?", "is there the truck ?"], "prompt": "The left headlight on the {}."}, {"index": 470, "image_id": 2351131, "entity": "truck", "caption": "Trailer hitch on back of truck", "question": ["is there trailer hitch ?", "is there back ?", "is there truck ?"], "prompt": "Trailer hitch on back of {}"}, {"index": 471, "image_id": 2349773, "entity": "truck", "caption": "Two posts are near a truck.", "question": ["are there two posts ?", "is there a truck ?"], "prompt": "Two posts are near a {}."}, {"index": 472, "image_id": 2349620, "entity": "truck", "caption": "a metal pole is by the truck", "question": ["is there a metal pole ?", "is there the truck ?"], "prompt": "a metal pole is by the {}"}, {"index": 473, "image_id": 2349620, "entity": "truck", "caption": "the truck has a rearview mirror", "question": ["is there the truck ?", "is there a rearview mirror ?"], "prompt": "the {} has a rearview mirror"}, {"index": 474, "image_id": 2348945, "entity": "truck", "caption": "A large tube is on a truck.", "question": ["is there a large tube ?", "is there a truck ?"], "prompt": "A large tube is on a {}."}, {"index": 475, "image_id": 2348945, "entity": "truck", "caption": "A grey box is on a truck.", "question": ["is there a truck ?"], "prompt": "A grey box is on a {}."}, {"index": 476, "image_id": 2348945, "entity": "truck", "caption": "A man is standing next to a truck.", "question": ["is there a man ?", "is there a truck ?"], "prompt": "A man is standing next to a {}."}, {"index": 477, "image_id": 2348933, "entity": "truck", "caption": "logo painted on a truck", "question": ["is there logo ?", "is there a truck ?"], "prompt": "logo painted on a {}"}, {"index": 478, "image_id": 2348742, "entity": "truck", "caption": "cows hauled on top of truck", "question": ["are there cows ?", "is there top ?", "is there truck ?"], "prompt": "cows hauled on top of {}"}, {"index": 479, "image_id": 2348742, "entity": "truck", "caption": "sign in truck says \"mitsubishi\"", "question": ["is there sign ?", "is there truck ?"], "prompt": "sign in {} says \"mitsubishi\""}, {"index": 480, "image_id": 2348742, "entity": "truck", "caption": "windy road the truck is driving on ", "question": ["is there windy road ?", "is there the truck ?"], "prompt": "windy road the {} is driving on "}, {"index": 481, "image_id": 2348526, "entity": "truck", "caption": "machinery is on the truck", "question": ["is there machinery ?", "is there the truck ?"], "prompt": "machinery is on the {}"}, {"index": 482, "image_id": 2348526, "entity": "truck", "caption": "Back door is open on truck", "question": ["is there back door ?", "is there truck ?"], "prompt": "Back door is open on {}"}, {"index": 483, "image_id": 2347761, "entity": "truck", "caption": "a driver is inside the truck cab", "question": ["is there a driver ?", "is there the truck cab ?"], "prompt": "a driver is inside the {} cab"}, {"index": 484, "image_id": 2347750, "entity": "truck", "caption": "A person is by the truck", "question": ["is there a person ?", "is there the truck ?"], "prompt": "A person is by the {}"}, {"index": 485, "image_id": 2347690, "entity": "truck", "caption": "4x4 painted on the side of truck", "question": ["is there the side ?", "is there truck ?"], "prompt": "4x4 painted on the side of {}"}, {"index": 486, "image_id": 2347690, "entity": "truck", "caption": "tail gate is down on truck", "question": ["is there tail gate ?", "is there truck ?"], "prompt": "tail gate is down on {}"}, {"index": 487, "image_id": 2347487, "entity": "truck", "caption": "Rear left wheel of the truck", "question": ["is there rear left wheel ?", "is there the truck ?"], "prompt": "Rear left wheel of the {}"}, {"index": 488, "image_id": 2347487, "entity": "truck", "caption": "Front left wheel of the truck", "question": ["is there front left wheel ?", "is there the truck ?"], "prompt": "Front left wheel of the {}"}, {"index": 489, "image_id": 2347377, "entity": "truck", "caption": "Person sitting in a dark two tone truck", "question": ["is there person ?", "is there a dark two tone truck ?"], "prompt": "Person sitting in a dark two tone {}"}, {"index": 490, "image_id": 2346986, "entity": "truck", "caption": "the truck has a picture at the door", "question": ["is there the truck ?", "is there a picture ?", "is there the door ?"], "prompt": "the {} has a picture at the door"}, {"index": 491, "image_id": 2346214, "entity": "truck", "caption": "guy trying to get stuff out of a truck", "question": ["is there guy ?", "is there stuff ?", "is there a truck ?"], "prompt": "guy trying to get stuff out of a {}"}, {"index": 492, "image_id": 2345894, "entity": "truck", "caption": "the truck has No2 painted on it", "question": ["is there the truck ?", "are there no2 ?"], "prompt": "the {} has No2 painted on it"}, {"index": 493, "image_id": 2345381, "entity": "truck", "caption": "people are standing by the food truck", "question": ["are there people ?", "is there the food truck ?"], "prompt": "people are standing by the food {}"}, {"index": 494, "image_id": 2345381, "entity": "truck", "caption": "the food truck has red lights on it", "question": ["is there the food truck ?", "are there red lights ?"], "prompt": "the food {} has red lights on it"}, {"index": 495, "image_id": 2345314, "entity": "truck", "caption": "Yellow truck has hood opened", "question": ["is there yellow truck ?", "is there hood ?"], "prompt": "Yellow {} has hood opened"}, {"index": 496, "image_id": 2345314, "entity": "truck", "caption": "Pickup truck has hood opened", "question": ["is there pickup truck ?", "is there hood ?"], "prompt": "Pickup {} has hood opened"}, {"index": 497, "image_id": 2345212, "entity": "truck", "caption": "long carpets rolls at back of truck", "question": ["are there long carpets rolls ?", "is there back ?", "is there truck ?"], "prompt": "long carpets rolls at back of {}"}, {"index": 498, "image_id": 2345212, "entity": "truck", "caption": "gray car behing the truck", "question": ["is there gray car ?", "is there the truck ?"], "prompt": "gray car behing the {}"}, {"index": 499, "image_id": 2345212, "entity": "truck", "caption": "household furnishings strapped onto a truck bed", "question": ["are there household furnishings ?", "is there a truck bed ?"], "prompt": "household furnishings strapped onto a {} bed"}, {"index": 500, "image_id": 2345032, "entity": "truck", "caption": "The word SCANIA on the front of a truck. ", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there a truck ?"], "prompt": "The word SCANIA on the front of a {}. "}, {"index": 501, "image_id": 2344888, "entity": "truck", "caption": "antique truck stuck in the mud", "question": ["is there antique truck ?", "is there the mud ?"], "prompt": "antique {} stuck in the mud"}, {"index": 502, "image_id": 2343592, "entity": "truck", "caption": "Sign on truck is Avitat", "question": ["is there sign ?", "is there truck ?"], "prompt": "Sign on {} is Avitat"}, {"index": 503, "image_id": 2342746, "entity": "truck", "caption": "a cheverolet emblem is on the truck", "question": ["is there a cheverolet emblem ?", "is there the truck ?"], "prompt": "a cheverolet emblem is on the {}"}, {"index": 504, "image_id": 2342137, "entity": "truck", "caption": "vertical door handle on delivery truck", "question": ["is there vertical door ?", "is there delivery truck ?"], "prompt": "vertical door handle on delivery {}"}, {"index": 505, "image_id": 2341556, "entity": "truck", "caption": "a truck is outside", "question": ["is there a truck ?"], "prompt": "a {} is outside"}, {"index": 506, "image_id": 2341556, "entity": "truck", "caption": "the truck has a brand name painted on ", "question": ["is there the truck ?", "is there a brand name ?"], "prompt": "the {} has a brand name painted on "}, {"index": 507, "image_id": 2341337, "entity": "truck", "caption": "gravel is on the train trucks ", "question": ["is there gravel ?", "are there the train trucks ?"], "prompt": "gravel is on the train {}s "}, {"index": 508, "image_id": 2341077, "entity": "truck", "caption": "two people standing behind a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "two people standing behind a {}"}, {"index": 509, "image_id": 2340746, "entity": "truck", "caption": "truck has black wheels", "question": ["is there truck ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 510, "image_id": 2340746, "entity": "truck", "caption": "man shoving an animal into a truck", "question": ["is there man ?", "is there an animal ?", "is there a truck ?"], "prompt": "man shoving an animal into a {}"}, {"index": 511, "image_id": 2340595, "entity": "truck", "caption": "a wheel turned under the truck", "question": ["is there a wheel ?", "is there the truck ?"], "prompt": "a wheel turned under the {}"}, {"index": 512, "image_id": 2340429, "entity": "truck", "caption": "Person walking near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking near {}."}, {"index": 513, "image_id": 2340353, "entity": "truck", "caption": "a black shirt draped over a truck", "question": ["is there a black shirt ?", "is there a truck ?"], "prompt": "a black shirt draped over a {}"}, {"index": 514, "image_id": 2340353, "entity": "truck", "caption": "Tee shirt draped on side of truck", "question": ["is there tee shirt ?", "is there side ?", "is there truck ?"], "prompt": "Tee shirt draped on side of {}"}, {"index": 515, "image_id": 2339539, "entity": "truck", "caption": "person driving the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "person driving the {}"}, {"index": 516, "image_id": 2339539, "entity": "truck", "caption": "the truck has a black trailer bed ", "question": ["is there the truck ?", "is there a black trailer bed ?"], "prompt": "the {} has a black trailer bed "}, {"index": 517, "image_id": 2339539, "entity": "truck", "caption": "he is driving the truck ", "question": ["is there the truck ?"], "prompt": "he is driving the {} "}, {"index": 518, "image_id": 2339412, "entity": "truck", "caption": "The old truck has wood boards on it.", "question": ["is there the old truck ?", "are there wood boards ?"], "prompt": "The old {} has wood boards on it."}, {"index": 519, "image_id": 2339139, "entity": "truck", "caption": "Rear left tire on a tow truck", "question": ["is there rear left tire ?", "is there a tow truck ?"], "prompt": "Rear left tire on a tow {}"}, {"index": 520, "image_id": 2339139, "entity": "truck", "caption": "Front left head light on a truck", "question": ["is there front left head light ?", "is there a truck ?"], "prompt": "Front left head light on a {}"}, {"index": 521, "image_id": 2339139, "entity": "truck", "caption": "The door handle on a truck", "question": ["is there the door ?", "is there a truck ?"], "prompt": "The door handle on a {}"}, {"index": 522, "image_id": 2338619, "entity": "truck", "caption": "the guy is on top of the fire truck ", "question": ["is there the guy ?", "is there top ?", "is there the fire truck ?"], "prompt": "the guy is on top of the fire {} "}, {"index": 523, "image_id": 2337684, "entity": "truck", "caption": "the folgers container under the truck", "question": ["are there the folgers container ?", "is there the truck ?"], "prompt": "the folgers container under the {}"}, {"index": 524, "image_id": 2337628, "entity": "truck", "caption": "the truck is full of dogs", "question": ["is there the truck ?", "are there dogs ?"], "prompt": "the {} is full of dogs"}, {"index": 525, "image_id": 2337628, "entity": "truck", "caption": "the truck has photos of dogs", "question": ["is there the truck ?", "are there photos ?", "are there dogs ?"], "prompt": "the {} has photos of dogs"}, {"index": 526, "image_id": 2337628, "entity": "truck", "caption": "the truck has wheels", "question": ["is there the truck ?", "are there wheels ?"], "prompt": "the {} has wheels"}, {"index": 527, "image_id": 2336350, "entity": "truck", "caption": "the trees are behind the truck", "question": ["are there the trees ?", "is there the truck ?"], "prompt": "the trees are behind the {}"}, {"index": 528, "image_id": 2336187, "entity": "truck", "caption": "The word Mackinnon's on the front of a truck", "question": ["is there the word ?", "is there the front ?", "is there a truck ?"], "prompt": "The word Mackinnon's on the front of a {}"}, {"index": 529, "image_id": 2335976, "entity": "truck", "caption": "back door on truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "back door on {} is open"}, {"index": 530, "image_id": 2335976, "entity": "truck", "caption": "man is walking toward truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is walking toward {}"}, {"index": 531, "image_id": 2335976, "entity": "truck", "caption": "The door of the truck is open.", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door of the {} is open."}, {"index": 532, "image_id": 2335976, "entity": "truck", "caption": "Garbage can by the truck.", "question": ["is there garbage ?", "is there the truck ?"], "prompt": "Garbage can by the {}."}, {"index": 533, "image_id": 2335976, "entity": "truck", "caption": "food truck menu painted on side of truck", "question": ["is there food truck menu ?", "is there side ?", "is there truck ?"], "prompt": "food {} menu painted on side of {}"}, {"index": 534, "image_id": 2335337, "entity": "truck", "caption": "Menu written on side of truck.", "question": ["is there menu ?", "is there side ?", "is there truck ?"], "prompt": "Menu written on side of {}."}, {"index": 535, "image_id": 2335292, "entity": "truck", "caption": "The motorcycle is in front of the truck", "question": ["is there the motorcycle ?", "is there front ?", "is there the truck ?"], "prompt": "The motorcycle is in front of the {}"}, {"index": 536, "image_id": 2335292, "entity": "truck", "caption": "The truck has a cardboard box in the bed", "question": ["is there the truck ?", "is there a cardboard box ?", "is there the bed ?"], "prompt": "The {} has a cardboard box in the bed"}, {"index": 537, "image_id": 2333358, "entity": "truck", "caption": "woman waiting for food at truck window", "question": ["is there woman ?", "is there food ?", "is there truck window ?"], "prompt": "woman waiting for food at {} window"}, {"index": 538, "image_id": 2333358, "entity": "truck", "caption": "a food truck is on the street", "question": ["is there a food truck ?", "is there the street ?"], "prompt": "a food {} is on the street"}, {"index": 539, "image_id": 2333348, "entity": "truck", "caption": "two men standing next to each other in front of truck", "question": ["are there two men ?", "is there front ?", "is there truck ?"], "prompt": "two men standing next to each other in front of {}"}, {"index": 540, "image_id": 2332754, "entity": "truck", "caption": "A wooden pole is behind the truck", "question": ["is there a wooden pole ?", "is there the truck ?"], "prompt": "A wooden pole is behind the {}"}, {"index": 541, "image_id": 2332750, "entity": "truck", "caption": "A fold up chair stands next to the truck", "question": ["is there a fold up chair ?", "is there the truck ?"], "prompt": "A fold up chair stands next to the {}"}, {"index": 542, "image_id": 2331746, "entity": "truck", "caption": "a truck travels in front the beach", "question": ["is there a truck ?", "is there front ?"], "prompt": "a {} travels in front the beach"}, {"index": 543, "image_id": 2331430, "entity": "truck", "caption": "this guy is on the back of the truck", "question": ["is there this guy ?", "is there the back ?", "is there the truck ?"], "prompt": "this guy is on the back of the {}"}, {"index": 544, "image_id": 2330313, "entity": "truck", "caption": "A flap is visible on a truck.", "question": ["is there a flap ?", "is there a truck ?"], "prompt": "A flap is visible on a {}."}, {"index": 545, "image_id": 2329413, "entity": "truck", "caption": "Web URL painted in black letters on white truck", "question": ["is there web url ?", "are there black letters ?", "is there white truck ?"], "prompt": "Web URL painted in black letters on white {}"}, {"index": 546, "image_id": 2328751, "entity": "truck", "caption": "a person is driving the truck ", "question": ["is there a person ?", "is there the truck ?"], "prompt": "a person is driving the {} "}, {"index": 547, "image_id": 2328751, "entity": "truck", "caption": "The truck has a fire extinguisher.", "question": ["is there the truck ?", "is there a fire extinguisher ?"], "prompt": "The {} has a fire extinguisher."}, {"index": 548, "image_id": 2328751, "entity": "truck", "caption": "The truck has a horn.", "question": ["is there the truck ?", "is there a horn ?"], "prompt": "The {} has a horn."}, {"index": 549, "image_id": 2328751, "entity": "truck", "caption": "The horn is on the truck roof.", "question": ["is there the horn ?", "is there the truck roof ?"], "prompt": "The horn is on the {} roof."}, {"index": 550, "image_id": 2328751, "entity": "truck", "caption": "The truck has a white grill.", "question": ["is there the truck ?", "is there a white grill ?"], "prompt": "The {} has a white grill."}, {"index": 551, "image_id": 2328751, "entity": "truck", "caption": "The truck has an orange light.", "question": ["is there the truck ?", "is there an orange light ?"], "prompt": "The {} has an orange light."}, {"index": 552, "image_id": 2328751, "entity": "truck", "caption": "The truck has a headlight.", "question": ["is there the truck ?", "is there a headlight ?"], "prompt": "The {} has a headlight."}, {"index": 553, "image_id": 2328751, "entity": "truck", "caption": "The truck has a big tire.", "question": ["is there the truck ?", "is there a big tire ?"], "prompt": "The {} has a big tire."}, {"index": 554, "image_id": 2327911, "entity": "truck", "caption": "The truck has a black dump bed.", "question": ["is there the truck ?", "is there a black dump bed ?"], "prompt": "The {} has a black dump bed."}, {"index": 555, "image_id": 2327911, "entity": "truck", "caption": "The truck cab has orange lights.", "question": ["is there the truck cab ?", "are there orange lights ?"], "prompt": "The {} cab has orange lights."}, {"index": 556, "image_id": 2327911, "entity": "truck", "caption": "The truck has a tire.", "question": ["is there the truck ?", "is there a tire ?"], "prompt": "The {} has a tire."}, {"index": 557, "image_id": 2325925, "entity": "truck", "caption": "The truck has the number 20 on its side", "question": ["is there the truck ?", "is there the number ?", "is there its side ?"], "prompt": "The {} has the number 20 on its side"}, {"index": 558, "image_id": 2325611, "entity": "truck", "caption": "the truck has white writing", "question": ["is there the truck ?", "is there white writing ?"], "prompt": "the {} has white writing"}, {"index": 559, "image_id": 2324486, "entity": "truck", "caption": "The license plate is on the back of truck", "question": ["is there the license plate ?", "is there the back ?", "is there truck ?"], "prompt": "The license plate is on the back of {}"}, {"index": 560, "image_id": 2324486, "entity": "truck", "caption": "The word DIESEL on back of truck. ", "question": ["is there the word diesel ?", "is there back ?", "is there truck ?"], "prompt": "The word DIESEL on back of {}. "}, {"index": 561, "image_id": 2323321, "entity": "truck", "caption": "the graffiti on the truck is green", "question": ["is there the graffiti ?", "is there the truck ?"], "prompt": "the graffiti on the {} is green"}, {"index": 562, "image_id": 2323321, "entity": "truck", "caption": "the truck is on the street", "question": ["is there the truck ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 563, "image_id": 2323321, "entity": "truck", "caption": "a truck that has graffiti", "question": ["is there a truck ?"], "prompt": "a {} that has graffiti"}, {"index": 564, "image_id": 2323077, "entity": "truck", "caption": "Crane lowering truck onto truck", "question": ["is there truck ?", "is there truck ?"], "prompt": "Crane lowering {} onto {}"}, {"index": 565, "image_id": 2322225, "entity": "truck", "caption": "Mud flaps on a truck.", "question": ["are there mud flaps ?", "is there a truck ?"], "prompt": "Mud flaps on a {}."}, {"index": 566, "image_id": 2322197, "entity": "truck", "caption": "Ford emblem on a truck", "question": ["is there a truck ?"], "prompt": "Ford emblem on a {}"}, {"index": 567, "image_id": 2321380, "entity": "truck", "caption": "tarp covering back of truck", "question": ["is there tarp ?", "is there truck ?"], "prompt": "tarp covering back of {}"}, {"index": 568, "image_id": 2321380, "entity": "truck", "caption": "drivers side door of truck", "question": ["are there drivers ?", "is there door ?", "is there truck ?"], "prompt": "drivers side door of {}"}, {"index": 569, "image_id": 2320291, "entity": "truck", "caption": "man walking in front of red truck", "question": ["is there man ?", "is there front ?", "is there red truck ?"], "prompt": "man walking in front of red {}"}, {"index": 570, "image_id": 2319823, "entity": "truck", "caption": "the light on the truck is on ", "question": ["is there the light ?", "is there the truck ?"], "prompt": "the light on the {} is on "}, {"index": 571, "image_id": 2319676, "entity": "truck", "caption": "The truck has a white cab.", "question": ["is there the truck ?", "is there a white cab ?"], "prompt": "The {} has a white cab."}, {"index": 572, "image_id": 2319676, "entity": "truck", "caption": "The truck has a windshield wiper.", "question": ["is there the truck ?", "is there a windshield wiper ?"], "prompt": "The {} has a windshield wiper."}, {"index": 573, "image_id": 2319676, "entity": "truck", "caption": "The driver of the truck is a man.", "question": ["is there the driver ?", "is there the truck ?", "is there a man ?"], "prompt": "The driver of the {} is a man."}, {"index": 574, "image_id": 2319556, "entity": "truck", "caption": "Realistic strawberries painted on truck.", "question": ["are there realistic strawberries ?", "is there truck ?"], "prompt": "Realistic strawberries painted on {}."}, {"index": 575, "image_id": 2319556, "entity": "truck", "caption": "Realistic blackberries painted on truck", "question": ["are there realistic blackberries ?", "is there truck ?"], "prompt": "Realistic blackberries painted on {}"}, {"index": 576, "image_id": 2319556, "entity": "truck", "caption": "Very nice shades of purple painted on truck.", "question": ["are there very nice shades ?", "is there purple ?", "is there truck ?"], "prompt": "Very nice shades of purple painted on {}."}, {"index": 577, "image_id": 2319540, "entity": "truck", "caption": "wagon behind pick up truck", "question": ["is there wagon ?", "is there truck ?"], "prompt": "wagon behind pick up {}"}, {"index": 578, "image_id": 2319280, "entity": "truck", "caption": "PErson sitting in the cab of a truck", "question": ["is there person ?", "is there the cab ?", "is there a truck ?"], "prompt": "PErson sitting in the cab of a {}"}, {"index": 579, "image_id": 2319280, "entity": "truck", "caption": "three people part way under the truck", "question": ["are there three people ?", "is there the truck ?"], "prompt": "three people part way under the {}"}, {"index": 580, "image_id": 2318538, "entity": "truck", "caption": "the dirt piled in the bed of the truck", "question": ["is there the dirt ?", "is there the bed ?", "is there the truck ?"], "prompt": "the dirt piled in the bed of the {}"}, {"index": 581, "image_id": 2317984, "entity": "truck", "caption": "The truck has two plows on it.", "question": ["is there the truck ?", "are there two plows ?"], "prompt": "The {} has two plows on it."}, {"index": 582, "image_id": 2317934, "entity": "truck", "caption": "the company that built the firetruck", "question": ["is there the company ?", "is there the firetruck ?"], "prompt": "the company that built the fire{}"}, {"index": 583, "image_id": 2317726, "entity": "truck", "caption": "the people are climbing the truck", "question": ["are there the people ?", "is there the truck ?"], "prompt": "the people are climbing the {}"}, {"index": 584, "image_id": 2317513, "entity": "truck", "caption": "an old truck sits in a yard", "question": ["is there an old truck ?", "is there a yard ?"], "prompt": "an old {} sits in a yard"}, {"index": 585, "image_id": 2317513, "entity": "truck", "caption": "Grill work on front of truck.", "question": ["is there grill work ?", "is there front ?", "is there truck ?"], "prompt": "Grill work on front of {}."}, {"index": 586, "image_id": 2317513, "entity": "truck", "caption": "Old fashion headlight on front of truck.", "question": ["is there old fashion headlight ?", "is there front ?", "is there truck ?"], "prompt": "Old fashion headlight on front of {}."}, {"index": 587, "image_id": 2317513, "entity": "truck", "caption": "Front right tire flat on truck.", "question": ["is there right tire ?", "is there truck ?"], "prompt": "Front right tire flat on {}."}, {"index": 588, "image_id": 2317240, "entity": "truck", "caption": "White and black mud flaps on back of truck.", "question": ["are there white and black mud flaps ?", "is there back ?", "is there truck ?"], "prompt": "White and black mud flaps on back of {}."}, {"index": 589, "image_id": 2317240, "entity": "truck", "caption": "large black tire mounted behind truck cab", "question": ["is there large black tire ?", "is there truck cab ?"], "prompt": "large black tire mounted behind {} cab"}, {"index": 590, "image_id": 2316849, "entity": "truck", "caption": "he is leaning on the truck ", "question": ["is there the truck ?"], "prompt": "he is leaning on the {} "}, {"index": 591, "image_id": 2316849, "entity": "truck", "caption": "the truck grill is black", "question": ["is there the truck grill ?"], "prompt": "the {} grill is black"}, {"index": 592, "image_id": 2316663, "entity": "truck", "caption": "cord wrapped over items in truck and secured on sides", "question": ["is there cord ?", "are there items ?", "is there truck ?", "are there sides ?"], "prompt": "cord wrapped over items in {} and secured on sides"}, {"index": 593, "image_id": 2316663, "entity": "truck", "caption": "Trailer hitch on a truck", "question": ["is there trailer hitch ?", "is there a truck ?"], "prompt": "Trailer hitch on a {}"}, {"index": 594, "image_id": 2316538, "entity": "truck", "caption": "a rack mounted on top of the truck cab", "question": ["is there a rack ?", "is there top ?", "is there the truck cab ?"], "prompt": "a rack mounted on top of the {} cab"}, {"index": 595, "image_id": 2316538, "entity": "truck", "caption": "truck sits on a pockmarked street", "question": ["is there truck ?", "is there a pockmarked street ?"], "prompt": "{} sits on a pockmarked street"}, {"index": 596, "image_id": 2315863, "entity": "truck", "caption": "door handle on the truck", "question": ["is there door ?", "is there the truck ?"], "prompt": "door handle on the {}"}, {"index": 597, "image_id": 2315632, "entity": "truck", "caption": "a woman sititn gon truck", "question": ["is there a woman sititn ?", "is there truck ?"], "prompt": "a woman sititn gon {}"}, {"index": 598, "image_id": 2315484, "entity": "truck", "caption": "chrome plated grill on the front of a truck", "question": ["is there chrome plated grill ?", "is there the front ?", "is there a truck ?"], "prompt": "chrome plated grill on the front of a {}"}, {"index": 599, "image_id": 2414401, "entity": "truck", "caption": "the truck has a red brakelight", "question": ["is there the truck ?", "is there a red brakelight ?"], "prompt": "the {} has a red brakelight"}, {"index": 600, "image_id": 2414401, "entity": "truck", "caption": "the truck is carrying a ladder ", "question": ["is there the truck ?", "is there a ladder ?"], "prompt": "the {} is carrying a ladder "}, {"index": 601, "image_id": 2414213, "entity": "truck", "caption": "the door handle on the truck is silver", "question": ["is there the door ?", "is there the truck ?"], "prompt": "the door handle on the {} is silver"}, {"index": 602, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver mirror", "question": ["is there the blue truck ?", "is there a silver mirror ?"], "prompt": "the blue {} has a silver mirror"}, {"index": 603, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver stripe", "question": ["is there the blue truck ?", "is there a silver stripe ?"], "prompt": "the blue {} has a silver stripe"}, {"index": 604, "image_id": 2414213, "entity": "truck", "caption": "a dog is looking out truck window", "question": ["is there a dog ?"], "prompt": "a dog is looking out {} window"}, {"index": 605, "image_id": 2414213, "entity": "truck", "caption": "Silverado emblem on the side of the truck", "question": ["is there silverado emblem ?", "is there the side ?", "is there the truck ?"], "prompt": "Silverado emblem on the side of the {}"}, {"index": 606, "image_id": 2414213, "entity": "truck", "caption": "Door handle on the side of the truck", "question": ["is there door ?", "is there the side ?", "is there the truck ?"], "prompt": "Door handle on the side of the {}"}, {"index": 607, "image_id": 2414197, "entity": "truck", "caption": "The truck carries equipment. ", "question": ["is there the truck ?", "is there equipment ?"], "prompt": "The {} carries equipment. "}, {"index": 608, "image_id": 2414197, "entity": "truck", "caption": "The truck carries a hose.", "question": ["is there the truck ?", "is there a hose ?"], "prompt": "The {} carries a hose."}, {"index": 609, "image_id": 2414197, "entity": "truck", "caption": "The truck carries cables. ", "question": ["is there the truck ?", "are there cables ?"], "prompt": "The {} carries cables. "}, {"index": 610, "image_id": 2414197, "entity": "truck", "caption": "The truck's front has red stripes.", "question": ["is there the truck's front ?", "are there red stripes ?"], "prompt": "The {}'s front has red stripes."}, {"index": 611, "image_id": 2414197, "entity": "truck", "caption": "Three of the truck's tires are visible.", "question": ["are there the truck's tires ?"], "prompt": "Three of the {}'s tires are visible."}, {"index": 612, "image_id": 2414142, "entity": "truck", "caption": "the truck says brennstoffe on the back", "question": ["is there the truck ?", "is there the back ?"], "prompt": "the {} says brennstoffe on the back"}, {"index": 613, "image_id": 2414142, "entity": "truck", "caption": "a car is on the road in front of the truck", "question": ["is there a car ?", "is there the road ?", "is there front ?", "is there the truck ?"], "prompt": "a car is on the road in front of the {}"}, {"index": 614, "image_id": 2414142, "entity": "truck", "caption": "the back of the truck says man", "question": ["is there the back ?", "is there the truck ?", "is there man ?"], "prompt": "the back of the {} says man"}, {"index": 615, "image_id": 2413814, "entity": "truck", "caption": "Sign written in white on side of truck.", "question": ["is there sign ?", "is there side ?", "is there truck ?"], "prompt": "Sign written in white on side of {}."}, {"index": 616, "image_id": 2413814, "entity": "truck", "caption": "A white SUV is behind the truck ", "question": ["is there the truck ?"], "prompt": "A white SUV is behind the {} "}, {"index": 617, "image_id": 2413579, "entity": "truck", "caption": "truck has chrome wheelie bar on back", "question": ["is there truck ?", "is there chrome wheelie bar ?"], "prompt": "{} has chrome wheelie bar on back"}, {"index": 618, "image_id": 2413408, "entity": "truck", "caption": "The truck has yellow hubcaps.", "question": ["is there the truck ?", "are there yellow hubcaps ?"], "prompt": "The {} has yellow hubcaps."}, {"index": 619, "image_id": 2413408, "entity": "truck", "caption": "The truck has two headlights.", "question": ["is there the truck ?", "are there two headlights ?"], "prompt": "The {} has two headlights."}, {"index": 620, "image_id": 2413104, "entity": "truck", "caption": "a mechanical arm sits on top of a truck", "question": ["is there a mechanical arm ?", "is there top ?", "is there a truck ?"], "prompt": "a mechanical arm sits on top of a {}"}, {"index": 621, "image_id": 2413104, "entity": "truck", "caption": "This truck has 6 wheels", "question": ["is there this truck ?", "are there 6 wheels ?"], "prompt": "This {} has 6 wheels"}, {"index": 622, "image_id": 2413104, "entity": "truck", "caption": "This door enters the truck", "question": ["is there this door ?", "is there the truck ?"], "prompt": "This door enters the {}"}, {"index": 623, "image_id": 2413104, "entity": "truck", "caption": "Trees are next to the truck", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are next to the {}"}, {"index": 624, "image_id": 2413104, "entity": "truck", "caption": "man standing next to a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man standing next to a {}"}, {"index": 625, "image_id": 2412942, "entity": "truck", "caption": "the truck has large tyres", "question": ["is there the truck ?", "are there large tyres ?"], "prompt": "the {} has large tyres"}, {"index": 626, "image_id": 2412792, "entity": "truck", "caption": "the truck is casting a shadow underneath", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow underneath"}, {"index": 627, "image_id": 2412792, "entity": "truck", "caption": "the truck has a crane on it's back", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane on it's back"}, {"index": 628, "image_id": 2412792, "entity": "truck", "caption": "the side of the truck has Chinese lettering", "question": ["is there the side ?", "is there the truck ?", "is there chinese lettering ?"], "prompt": "the side of the {} has Chinese lettering"}, {"index": 629, "image_id": 2412792, "entity": "truck", "caption": "a palm tree is behind the truck", "question": ["is there a palm tree ?", "is there the truck ?"], "prompt": "a palm tree is behind the {}"}, {"index": 630, "image_id": 2412792, "entity": "truck", "caption": "a white column is on the right of the truck", "question": ["is there a white column ?", "is there the right ?", "is there the truck ?"], "prompt": "a white column is on the right of the {}"}, {"index": 631, "image_id": 2412792, "entity": "truck", "caption": "truck has a crane on back", "question": ["is there truck ?", "is there a crane ?"], "prompt": "{} has a crane on back"}, {"index": 632, "image_id": 2412792, "entity": "truck", "caption": "Roof of truck is red", "question": ["is there roof ?", "is there truck ?"], "prompt": "Roof of {} is red"}, {"index": 633, "image_id": 2412603, "entity": "truck", "caption": "Man is by a red Toyota truck", "question": ["is there man ?", "is there a red toyota truck ?"], "prompt": "Man is by a red Toyota {}"}, {"index": 634, "image_id": 2412488, "entity": "truck", "caption": "a person works on a truck", "question": ["is there a person ?", "is there a truck ?"], "prompt": "a person works on a {}"}, {"index": 635, "image_id": 2412483, "entity": "truck", "caption": "woman in purple shirt looking at truck", "question": ["is there woman ?", "is there purple shirt ?", "is there truck ?"], "prompt": "woman in purple shirt looking at {}"}, {"index": 636, "image_id": 2412483, "entity": "truck", "caption": "man in black shirt taking picture of truck", "question": ["is there man ?", "is there black shirt ?", "is there picture ?", "is there truck ?"], "prompt": "man in black shirt taking picture of {}"}, {"index": 637, "image_id": 2412186, "entity": "truck", "caption": "Front headlight on the red truck.", "question": ["is there front headlight ?", "is there the red truck ?"], "prompt": "Front headlight on the red {}."}, {"index": 638, "image_id": 2412186, "entity": "truck", "caption": "canoe tied on top of truck", "question": ["is there canoe ?", "is there top ?", "is there truck ?"], "prompt": "canoe tied on top of {}"}, {"index": 639, "image_id": 2412186, "entity": "truck", "caption": "truck logo painted on fender", "question": ["is there truck logo ?", "is there fender ?"], "prompt": "{} logo painted on fender"}, {"index": 640, "image_id": 2412161, "entity": "truck", "caption": "The truck has a side mirror.", "question": ["is there the truck ?", "is there a side mirror ?"], "prompt": "The {} has a side mirror."}, {"index": 641, "image_id": 2412161, "entity": "truck", "caption": "Rust surrounds truck headlight. ", "question": ["is there rust ?", "is there truck headlight ?"], "prompt": "Rust surrounds {} headlight. "}, {"index": 642, "image_id": 2415675, "entity": "truck", "caption": "these are truck wheels", "question": ["are there truck wheels ?"], "prompt": "these are {} wheels"}, {"index": 643, "image_id": 2416928, "entity": "truck", "caption": "Yellow truck has big wheels ", "question": ["is there yellow truck ?", "are there big wheels ?"], "prompt": "Yellow {} has big wheels "}, {"index": 644, "image_id": 2417877, "entity": "truck", "caption": "Strange artwork is on the truck ", "question": ["is there strange artwork ?", "is there the truck ?"], "prompt": "Strange artwork is on the {} "}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03937543.json b/data/imagenet/compositions/prompts/n03937543.json
new file mode 100644
index 0000000000000000000000000000000000000000..8f1f72e78e1af17225a949ec4ac2e70028a39a36
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03937543.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 2409865, "entity": "bottle", "caption": "Wine bottle is green color.", "question": ["is there wine bottle ?", "is there green color ?"], "prompt": "Wine {} is green color."}, {"index": 1, "image_id": 2409865, "entity": "bottle", "caption": "Opener is behind the bottle.", "question": ["is there opener ?", "is there the bottle ?"], "prompt": "Opener is behind the {}."}, {"index": 2, "image_id": 2409865, "entity": "bottle", "caption": "Wine bottle is in table.", "question": ["is there wine bottle ?", "is there table ?"], "prompt": "Wine {} is in table."}, {"index": 3, "image_id": 2409865, "entity": "bottle", "caption": "Name on bottle is Becker vineyards.", "question": ["is there bottle ?", "are there becker vineyards ?"], "prompt": "Name on {} is Becker vineyards."}, {"index": 4, "image_id": 2409865, "entity": "bottle", "caption": "a glass of wine is beside the bottle", "question": ["is there a glass ?", "is there wine ?", "is there the bottle ?"], "prompt": "a glass of wine is beside the {}"}, {"index": 5, "image_id": 2409865, "entity": "bottle", "caption": "a banana is beside the bottle", "question": ["is there a banana ?", "is there the bottle ?"], "prompt": "a banana is beside the {}"}, {"index": 6, "image_id": 2409865, "entity": "bottle", "caption": "The word BECKER written on a wine bottle", "question": ["is there the word ?", "is there a wine bottle ?"], "prompt": "The word BECKER written on a wine {}"}, {"index": 7, "image_id": 2409865, "entity": "bottle", "caption": "CLARET written on a wine bottle", "question": ["is there a wine bottle ?"], "prompt": "CLARET written on a wine {}"}, {"index": 8, "image_id": 2409865, "entity": "bottle", "caption": "the label on the bottle of wine has a tree on it", "question": ["is there the label ?", "is there the bottle ?", "is there wine ?", "is there a tree ?"], "prompt": "the label on the {} of wine has a tree on it"}, {"index": 9, "image_id": 2409865, "entity": "bottle", "caption": "the bottle opener in behind the bottle", "question": ["is there the bottle opener ?", "is there the bottle ?"], "prompt": "the {} opener in behind the {}"}, {"index": 10, "image_id": 2409865, "entity": "bottle", "caption": "a banana is behind the bottle", "question": ["is there a banana ?", "is there the bottle ?"], "prompt": "a banana is behind the {}"}, {"index": 11, "image_id": 2409865, "entity": "bottle", "caption": "a wine glass is next to the bottle", "question": ["is there a wine glass ?", "is there the bottle ?"], "prompt": "a wine glass is next to the {}"}, {"index": 12, "image_id": 2409865, "entity": "bottle", "caption": "items are behind the bottle on the counter", "question": ["are there items ?", "is there the bottle ?", "is there the counter ?"], "prompt": "items are behind the {} on the counter"}, {"index": 13, "image_id": 2407477, "entity": "bottle", "caption": "the bottle top is red", "question": ["is there the bottle top ?"], "prompt": "the {} top is red"}, {"index": 14, "image_id": 2381071, "entity": "bottle", "caption": "a hand holds the wine bottle", "question": ["is there a hand ?", "is there the wine bottle ?"], "prompt": "a hand holds the wine {}"}, {"index": 15, "image_id": 2378403, "entity": "bottle", "caption": "bottle has red top", "question": ["is there bottle ?", "is there red top ?"], "prompt": "{} has red top"}, {"index": 16, "image_id": 2368233, "entity": "bottle", "caption": "cork is in bottle", "question": ["is there cork ?", "is there bottle ?"], "prompt": "cork is in {}"}, {"index": 17, "image_id": 2368233, "entity": "bottle", "caption": "cold bottle of liquor stored in fridge", "question": ["is there cold bottle ?", "is there liquor ?", "is there fridge ?"], "prompt": "cold {} of liquor stored in fridge"}, {"index": 18, "image_id": 2321018, "entity": "bottle", "caption": "label glued to beer bottle", "question": ["is there label ?", "is there beer bottle ?"], "prompt": "label glued to beer {}"}, {"index": 19, "image_id": 2319077, "entity": "bottle", "caption": "Man's fingers that are holding a bottle and a cat.", "question": ["are there man's fingers ?", "is there a bottle ?", "is there a cat ?"], "prompt": "Man's fingers that are holding a {} and a cat."}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n03977966.json b/data/imagenet/compositions/prompts/n03977966.json
new file mode 100644
index 0000000000000000000000000000000000000000..b6fe830b8c58bb2e880bf19ab5e0170da455ebed
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n03977966.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 107967, "entity": "truck", "caption": "A window is open on the truck", "question": ["is there a window ?", "is there the truck ?"], "prompt": "A window is open on the {}"}, {"index": 1, "image_id": 150364, "entity": "truck", "caption": "front left wheel of tow truck", "question": ["is there front left wheel ?", "is there tow truck ?"], "prompt": "front left wheel of tow {}"}, {"index": 2, "image_id": 150393, "entity": "truck", "caption": "A truck that probably sells seafood", "question": ["is there a truck ?", "is there seafood ?"], "prompt": "A {} that probably sells seafood"}, {"index": 3, "image_id": 150486, "entity": "truck", "caption": "This is a basket on a bucket truck.", "question": ["is there a basket ?", "is there a bucket truck ?"], "prompt": "This is a basket on a bucket {}."}, {"index": 4, "image_id": 150497, "entity": "truck", "caption": "Firetruck parked in garage", "question": ["is there firetruck ?", "is there garage ?"], "prompt": "Fire{} parked in garage"}, {"index": 5, "image_id": 285972, "entity": "truck", "caption": "a gas station pump by truck", "question": ["is there a gas station pump ?", "is there truck ?"], "prompt": "a gas station pump by {}"}, {"index": 6, "image_id": 498093, "entity": "truck", "caption": "green face painted on a truck", "question": ["is there green face ?", "is there a truck ?"], "prompt": "green face painted on a {}"}, {"index": 7, "image_id": 498093, "entity": "truck", "caption": "Blue painted letters on the side of truck.", "question": ["are there blue painted letters ?", "is there the side ?", "is there truck ?"], "prompt": "Blue painted letters on the side of {}."}, {"index": 8, "image_id": 713062, "entity": "truck", "caption": "black door handle on the truck", "question": ["is there black door ?", "is there the truck ?"], "prompt": "black door handle on the {}"}, {"index": 9, "image_id": 713419, "entity": "truck", "caption": "Woman standing next to truck ", "question": ["is there woman ?", "is there truck ?"], "prompt": "Woman standing next to {} "}, {"index": 10, "image_id": 713503, "entity": "truck", "caption": "A blue rope tied to a truck", "question": ["is there a blue rope ?", "is there a truck ?"], "prompt": "A blue rope tied to a {}"}, {"index": 11, "image_id": 713614, "entity": "truck", "caption": "container on truck has pink flowers painted on it", "question": ["is there container ?", "is there truck ?", "are there pink flowers ?"], "prompt": "container on {} has pink flowers painted on it"}, {"index": 12, "image_id": 713614, "entity": "truck", "caption": "large white sack that is full is hung from back of truck ", "question": ["is there large white sack ?", "is there truck ?"], "prompt": "large white sack that is full is hung from back of {} "}, {"index": 13, "image_id": 713614, "entity": "truck", "caption": "Lotus Flower painted on back of garbage truck", "question": ["is there lotus flower ?", "is there garbage truck ?"], "prompt": "Lotus Flower painted on back of garbage {}"}, {"index": 14, "image_id": 1159845, "entity": "truck", "caption": "bright colored star painted on the back of the truck", "question": ["is there bright colored star ?", "is there the back ?", "is there the truck ?"], "prompt": "bright colored star painted on the back of the {}"}, {"index": 15, "image_id": 1159845, "entity": "truck", "caption": "two grey tarp covered bundles on the back of the truck", "question": ["is there two grey tarp ?", "are there bundles ?", "is there the back ?", "is there the truck ?"], "prompt": "two grey tarp covered bundles on the back of the {}"}, {"index": 16, "image_id": 1160061, "entity": "truck", "caption": "The person standing in the open door of the blue truck.", "question": ["is there the person ?", "is there the open door ?", "is there the blue truck ?"], "prompt": "The person standing in the open door of the blue {}."}, {"index": 17, "image_id": 1160061, "entity": "truck", "caption": "The white shirt the person is wearing at the door of the truck.", "question": ["is there the white shirt ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The white shirt the person is wearing at the door of the {}."}, {"index": 18, "image_id": 1160061, "entity": "truck", "caption": "The pants the person standing in the door of the truck is wearing.", "question": ["are there the pants ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The pants the person standing in the door of the {} is wearing."}, {"index": 19, "image_id": 1592126, "entity": "truck", "caption": "Potatoes are on the back of a truck", "question": ["are there potatoes ?", "is there the back ?", "is there a truck ?"], "prompt": "Potatoes are on the back of a {}"}, {"index": 20, "image_id": 1592126, "entity": "truck", "caption": "Bags of potatoes are on back of a truck", "question": ["are there bags ?", "are there potatoes ?", "is there a truck ?"], "prompt": "Bags of potatoes are on back of a {}"}, {"index": 21, "image_id": 1592160, "entity": "truck", "caption": "an orange pick up truck with an open hood", "question": ["is there an orange pick ?", "is there truck ?", "is there an open hood ?"], "prompt": "an orange pick up {} with an open hood"}, {"index": 22, "image_id": 1592291, "entity": "truck", "caption": "bird painted on the side of the truck", "question": ["is there bird ?", "is there the side ?", "is there the truck ?"], "prompt": "bird painted on the side of the {}"}, {"index": 23, "image_id": 1592584, "entity": "truck", "caption": "An orange cone is on the white truck", "question": ["is there an orange cone ?", "is there the white truck ?"], "prompt": "An orange cone is on the white {}"}, {"index": 24, "image_id": 1592584, "entity": "truck", "caption": "The truck has a license plate", "question": ["is there the truck ?", "is there a license plate ?"], "prompt": "The {} has a license plate"}, {"index": 25, "image_id": 1592584, "entity": "truck", "caption": "Red letters on the trucks grill", "question": ["are there red letters ?", "are there the trucks ?"], "prompt": "Red letters on the {}s grill"}, {"index": 26, "image_id": 1592584, "entity": "truck", "caption": "The truck has a windsheild ", "question": ["is there the truck ?", "is there a windsheild ?"], "prompt": "The {} has a windsheild "}, {"index": 27, "image_id": 1592951, "entity": "truck", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The {} on the boat is blue in color."}, {"index": 28, "image_id": 2413810, "entity": "truck", "caption": "The truck has a tall exhaust pipe", "question": ["is there the truck ?", "is there a tall exhaust pipe ?"], "prompt": "The {} has a tall exhaust pipe"}, {"index": 29, "image_id": 2413318, "entity": "truck", "caption": "Some packet kept on the deck of the truck", "question": ["is there some packet ?", "is there the deck ?", "is there the truck ?"], "prompt": "Some packet kept on the deck of the {}"}, {"index": 30, "image_id": 2413318, "entity": "truck", "caption": "people are riding the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are riding the {}"}, {"index": 31, "image_id": 2413114, "entity": "truck", "caption": "group of young men ride the front of truck", "question": ["is there group ?", "are there young men ?", "is there the front ?", "is there truck ?"], "prompt": "group of young men ride the front of {}"}, {"index": 32, "image_id": 2413114, "entity": "truck", "caption": "seated person watches truck drive by", "question": ["is there seated person ?"], "prompt": "seated person watches {} drive by"}, {"index": 33, "image_id": 2413114, "entity": "truck", "caption": "person of motorbike trails the truck", "question": ["is there person ?", "are there motorbike trails ?"], "prompt": "person of motorbike trails the {}"}, {"index": 34, "image_id": 2413114, "entity": "truck", "caption": "\"Three men rides on the front of a truck\"", "question": ["are there three men ?", "is there the front ?", "is there a truck ?"], "prompt": "\"Three men rides on the front of a {}\""}, {"index": 35, "image_id": 2413114, "entity": "truck", "caption": "Side view mirrors on dump truck.", "question": ["are there side view mirrors ?", "is there dump truck ?"], "prompt": "Side view mirrors on dump {}."}, {"index": 36, "image_id": 2413114, "entity": "truck", "caption": "Front left tire of dump truck.", "question": ["is there front left tire ?", "is there dump truck ?"], "prompt": "Front left tire of dump {}."}, {"index": 37, "image_id": 2410247, "entity": "truck", "caption": "Man driving the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man driving the {}."}, {"index": 38, "image_id": 2410156, "entity": "truck", "caption": "D I is on side of truck", "question": ["is there side ?", "is there truck ?"], "prompt": "D I is on side of {}"}, {"index": 39, "image_id": 2410114, "entity": "truck", "caption": "front head light on a fire truck", "question": ["is there front head light ?", "is there a fire truck ?"], "prompt": "front head light on a fire {}"}, {"index": 40, "image_id": 2409987, "entity": "truck", "caption": "the truck has windows", "question": ["is there the truck ?", "are there windows ?"], "prompt": "the {} has windows"}, {"index": 41, "image_id": 2409644, "entity": "truck", "caption": "Motorcycle parked next to semi truck.", "question": ["is there motorcycle ?", "is there semi truck ?"], "prompt": "Motorcycle parked next to semi {}."}, {"index": 42, "image_id": 2409644, "entity": "truck", "caption": "Woman standing next to semi truck.", "question": ["is there woman ?", "is there semi truck ?"], "prompt": "Woman standing next to semi {}."}, {"index": 43, "image_id": 2409644, "entity": "truck", "caption": "a woman is reaching into a truck compartment", "question": ["is there a woman ?", "is there a truck compartment ?"], "prompt": "a woman is reaching into a {} compartment"}, {"index": 44, "image_id": 2409644, "entity": "truck", "caption": "a kw grill cover on truck", "question": ["is there a kw grill cover ?", "is there truck ?"], "prompt": "a kw grill cover on {}"}, {"index": 45, "image_id": 2409644, "entity": "truck", "caption": "american flag painted truck", "question": ["is there truck ?"], "prompt": "american flag painted {}"}, {"index": 46, "image_id": 2409642, "entity": "truck", "caption": "the truck has a crane", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane"}, {"index": 47, "image_id": 2409642, "entity": "truck", "caption": "these are truck tires", "question": ["are there truck tires ?"], "prompt": "these are {} tires"}, {"index": 48, "image_id": 2409608, "entity": "truck", "caption": "Road in front of truck is gravel.", "question": ["is there road ?", "is there front ?", "is there truck ?", "is there gravel ?"], "prompt": "Road in front of {} is gravel."}, {"index": 49, "image_id": 2409326, "entity": "truck", "caption": "man bent over truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man bent over {}"}, {"index": 50, "image_id": 2409188, "entity": "truck", "caption": "The truck has a siren and lights on it.", "question": ["is there the truck ?", "is there a siren ?", "are there lights ?"], "prompt": "The {} has a siren and lights on it."}, {"index": 51, "image_id": 2409176, "entity": "truck", "caption": "Sedans are behind truck", "question": ["are there sedans ?", "is there truck ?"], "prompt": "Sedans are behind {}"}, {"index": 52, "image_id": 2408016, "entity": "truck", "caption": "The head lights on a truck", "question": ["is there the head ?", "is there a truck ?"], "prompt": "The head lights on a {}"}, {"index": 53, "image_id": 2408016, "entity": "truck", "caption": "Toyota sign in the front of the truck", "question": ["is there toyota sign ?", "is there the front ?", "is there the truck ?"], "prompt": "Toyota sign in the front of the {}"}, {"index": 54, "image_id": 2408016, "entity": "truck", "caption": "Gold writing on front of truck", "question": ["is there gold writing ?", "is there front ?", "is there truck ?"], "prompt": "Gold writing on front of {}"}, {"index": 55, "image_id": 2408012, "entity": "truck", "caption": "the truck has a headlight on the side", "question": ["is there the truck ?", "is there a headlight ?", "is there the side ?"], "prompt": "the {} has a headlight on the side"}, {"index": 56, "image_id": 2408003, "entity": "truck", "caption": "Two side view mirrors on the food truck.", "question": ["are there two side view mirrors ?", "is there the food truck ?"], "prompt": "Two side view mirrors on the food {}."}, {"index": 57, "image_id": 2407996, "entity": "truck", "caption": "two d's on a transfer truck", "question": ["is there two d ?", "is there a transfer truck ?"], "prompt": "two d's on a transfer {}"}, {"index": 58, "image_id": 2407996, "entity": "truck", "caption": "Name of the company written on the side of the truck", "question": ["is there name ?", "is there the company ?", "is there the side ?", "is there the truck ?"], "prompt": "Name of the company written on the side of the {}"}, {"index": 59, "image_id": 2407996, "entity": "truck", "caption": "Parking lights lit up on the truck", "question": ["are there parking lights ?", "is there the truck ?"], "prompt": "Parking lights lit up on the {}"}, {"index": 60, "image_id": 2407996, "entity": "truck", "caption": "Person standing next to the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "Person standing next to the {}"}, {"index": 61, "image_id": 2407996, "entity": "truck", "caption": "the truck has headlights", "question": ["is there the truck ?", "are there headlights ?"], "prompt": "the {} has headlights"}, {"index": 62, "image_id": 2407996, "entity": "truck", "caption": "the truck says \"Eddie Stobart\"", "question": ["is there the truck ?"], "prompt": "the {} says \"Eddie Stobart\""}, {"index": 63, "image_id": 2407879, "entity": "truck", "caption": "the word scania is on the front of the truck", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there the truck ?"], "prompt": "the word scania is on the front of the {}"}, {"index": 64, "image_id": 2407879, "entity": "truck", "caption": "emblem on truck says scania", "question": ["is there emblem ?", "is there truck ?"], "prompt": "emblem on {} says scania"}, {"index": 65, "image_id": 2407871, "entity": "truck", "caption": "The truck is on grass", "question": ["is there the truck ?", "is there grass ?"], "prompt": "The {} is on grass"}, {"index": 66, "image_id": 2407871, "entity": "truck", "caption": "a metal dog ornament on the truck", "question": ["is there a metal dog ornament ?", "is there the truck ?"], "prompt": "a metal dog ornament on the {}"}, {"index": 67, "image_id": 2407871, "entity": "truck", "caption": "old truck is beside a road", "question": ["is there old truck ?", "is there a road ?"], "prompt": "old {} is beside a road"}, {"index": 68, "image_id": 2407871, "entity": "truck", "caption": "truck is sitting in grass", "question": ["is there truck ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 69, "image_id": 2407871, "entity": "truck", "caption": "grass growing around truck", "question": ["is there grass ?", "is there truck ?"], "prompt": "grass growing around {}"}, {"index": 70, "image_id": 2407871, "entity": "truck", "caption": "truck has a red cab", "question": ["is there truck ?", "is there a red cab ?"], "prompt": "{} has a red cab"}, {"index": 71, "image_id": 2407871, "entity": "truck", "caption": "truck says mack on side", "question": ["is there truck ?", "is there side ?"], "prompt": "{} says mack on side"}, {"index": 72, "image_id": 2407871, "entity": "truck", "caption": "truck has headlights", "question": ["is there truck ?", "are there headlights ?"], "prompt": "{} has headlights"}, {"index": 73, "image_id": 2407784, "entity": "truck", "caption": "passer bys walking behind truck", "question": ["is there truck ?"], "prompt": "passer bys walking behind {}"}, {"index": 74, "image_id": 2407760, "entity": "truck", "caption": "the truck is red in color", "question": ["is there the truck ?", "is there color ?"], "prompt": "the {} is red in color"}, {"index": 75, "image_id": 2407760, "entity": "truck", "caption": "the truck is metallic", "question": ["is there the truck ?"], "prompt": "the {} is metallic"}, {"index": 76, "image_id": 2407551, "entity": "truck", "caption": "Makers logo on the truck nearest the camera", "question": ["are there makers ?", "is there the truck ?", "is there the camera ?"], "prompt": "Makers logo on the {} nearest the camera"}, {"index": 77, "image_id": 2407551, "entity": "truck", "caption": "chrome lettering front of truck", "question": ["is there chrome lettering front ?", "is there truck ?"], "prompt": "chrome lettering front of {}"}, {"index": 78, "image_id": 2407551, "entity": "truck", "caption": "truck has multiple wheels", "question": ["is there truck ?", "are there multiple wheels ?"], "prompt": "{} has multiple wheels"}, {"index": 79, "image_id": 2407551, "entity": "truck", "caption": "front bumper on truck is clean", "question": ["is there front bumper ?", "is there truck ?"], "prompt": "front bumper on {} is clean"}, {"index": 80, "image_id": 2407241, "entity": "truck", "caption": "Red stripe painted on the truck", "question": ["is there red stripe ?", "is there the truck ?"], "prompt": "Red stripe painted on the {}"}, {"index": 81, "image_id": 2407128, "entity": "truck", "caption": "trucks parked side to side", "question": ["are there trucks ?"], "prompt": "{}s parked side to side"}, {"index": 82, "image_id": 2407128, "entity": "truck", "caption": "fabric pulled over the tops of trucks", "question": ["is there fabric ?", "are there the tops ?", "are there trucks ?"], "prompt": "fabric pulled over the tops of {}s"}, {"index": 83, "image_id": 2407128, "entity": "truck", "caption": "sign on rope hanging off front of truck", "question": ["is there rope ?", "is there front ?", "is there truck ?"], "prompt": "sign on rope hanging off front of {}"}, {"index": 84, "image_id": 2407128, "entity": "truck", "caption": "Two trucks are on the grass.", "question": ["are there two trucks ?", "is there the grass ?"], "prompt": "Two {}s are on the grass."}, {"index": 85, "image_id": 2407128, "entity": "truck", "caption": "The number 9 is on the truck.", "question": ["is there the number ?", "is there the truck ?"], "prompt": "The number 9 is on the {}."}, {"index": 86, "image_id": 2407128, "entity": "truck", "caption": "The truck has a spare tire under the bed.", "question": ["is there the truck ?", "is there a spare tire ?", "is there the bed ?"], "prompt": "The {} has a spare tire under the bed."}, {"index": 87, "image_id": 2407128, "entity": "truck", "caption": "The truck has a fabric cover on the back.", "question": ["is there the truck ?", "is there a fabric cover ?", "is there the back ?"], "prompt": "The {} has a fabric cover on the back."}, {"index": 88, "image_id": 2407128, "entity": "truck", "caption": "A yellow and white sign is on a truck.", "question": ["is there a yellow and white sign ?", "is there a truck ?"], "prompt": "A yellow and white sign is on a {}."}, {"index": 89, "image_id": 2405965, "entity": "truck", "caption": "the side of the truck has lettering on it", "question": ["is there the side ?", "is there the truck ?"], "prompt": "the side of the {} has lettering on it"}, {"index": 90, "image_id": 2405965, "entity": "truck", "caption": "the truck is casting a shadow", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow"}, {"index": 91, "image_id": 2405965, "entity": "truck", "caption": "palm trees are behind the truck", "question": ["are there palm trees ?", "is there the truck ?"], "prompt": "palm trees are behind the {}"}, {"index": 92, "image_id": 2404753, "entity": "truck", "caption": "Window of truck is open", "question": ["is there window ?", "is there truck ?"], "prompt": "Window of {} is open"}, {"index": 93, "image_id": 2404626, "entity": "truck", "caption": "the flatbed truck is black", "question": ["is there the flatbed truck ?"], "prompt": "the flatbed {} is black"}, {"index": 94, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of a house", "question": ["is there the truck ?", "is there front ?", "is there a house ?"], "prompt": "the {} is in front of a house"}, {"index": 95, "image_id": 2404602, "entity": "truck", "caption": "the truck has a black bumper", "question": ["is there the truck ?", "is there a black bumper ?"], "prompt": "the {} has a black bumper"}, {"index": 96, "image_id": 2404602, "entity": "truck", "caption": "the truck has a logo on the back of it", "question": ["is there the truck ?", "is there a logo ?", "is there the back ?"], "prompt": "the {} has a logo on the back of it"}, {"index": 97, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of the house", "question": ["is there the truck ?", "is there front ?", "is there the house ?"], "prompt": "the {} is in front of the house"}, {"index": 98, "image_id": 2404338, "entity": "truck", "caption": "Person is on top of a truck", "question": ["is there person ?", "is there top ?", "is there a truck ?"], "prompt": "Person is on top of a {}"}, {"index": 99, "image_id": 2404315, "entity": "truck", "caption": "the bed of the truck has steel rails", "question": ["is there the bed ?", "is there the truck ?", "are there steel rails ?"], "prompt": "the bed of the {} has steel rails"}, {"index": 100, "image_id": 2404315, "entity": "truck", "caption": "the truck has mud flaps", "question": ["is there the truck ?", "are there mud flaps ?"], "prompt": "the {} has mud flaps"}, {"index": 101, "image_id": 2404315, "entity": "truck", "caption": "The back of the truck is holding an object", "question": ["is there the back ?", "is there the truck ?", "is there an object ?"], "prompt": "The back of the {} is holding an object"}, {"index": 102, "image_id": 2404315, "entity": "truck", "caption": "green grass growing around the truck", "question": ["is there green grass ?", "is there the truck ?"], "prompt": "green grass growing around the {}"}, {"index": 103, "image_id": 2403558, "entity": "truck", "caption": "road that truck is on", "question": ["is there road ?", "is there that truck ?"], "prompt": "road that {} is on"}, {"index": 104, "image_id": 2403322, "entity": "truck", "caption": "the wheels are on truck", "question": ["are there the wheels ?", "is there truck ?"], "prompt": "the wheels are on {}"}, {"index": 105, "image_id": 2403322, "entity": "truck", "caption": "mirror is on truck", "question": ["is there mirror ?", "is there truck ?"], "prompt": "mirror is on {}"}, {"index": 106, "image_id": 2402597, "entity": "truck", "caption": "Woman sits on border of truck", "question": ["is there woman ?", "is there border ?", "is there truck ?"], "prompt": "Woman sits on border of {}"}, {"index": 107, "image_id": 2402597, "entity": "truck", "caption": "Man sits in back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "Man sits in back of {}"}, {"index": 108, "image_id": 2402433, "entity": "truck", "caption": "A German shepherd is sitting in the back of a truck.", "question": ["is there a german shepherd ?", "is there the back ?", "is there a truck ?"], "prompt": "A German shepherd is sitting in the back of a {}."}, {"index": 109, "image_id": 2402276, "entity": "truck", "caption": "Kiddie fire truck merry go round", "question": ["is there kiddie fire truck merry ?"], "prompt": "Kiddie fire {} merry go round"}, {"index": 110, "image_id": 2402096, "entity": "truck", "caption": "Leaves painted onto a truck", "question": ["are there leaves ?", "is there a truck ?"], "prompt": "Leaves painted onto a {}"}, {"index": 111, "image_id": 2401997, "entity": "truck", "caption": "metal truck bed lid", "question": ["is there metal truck bed lid ?"], "prompt": "metal {} bed lid"}, {"index": 112, "image_id": 2401580, "entity": "truck", "caption": "flag mounted on the front of a truck", "question": ["is there flag ?", "is there the front ?", "is there a truck ?"], "prompt": "flag mounted on the front of a {}"}, {"index": 113, "image_id": 2401327, "entity": "truck", "caption": "the truck has a chalkboard", "question": ["is there the truck ?", "is there a chalkboard ?"], "prompt": "the {} has a chalkboard"}, {"index": 114, "image_id": 2401327, "entity": "truck", "caption": "the man is inside of the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "the man is inside of the {}"}, {"index": 115, "image_id": 2401327, "entity": "truck", "caption": "the truck's tire is black and red", "question": ["is there the truck's tire ?"], "prompt": "the {}'s tire is black and red"}, {"index": 116, "image_id": 2401207, "entity": "truck", "caption": "the truck is blue", "question": ["is there the truck ?"], "prompt": "the {} is blue"}, {"index": 117, "image_id": 2401207, "entity": "truck", "caption": "White head lights on truck.", "question": ["are there white head lights ?", "is there truck ?"], "prompt": "White head lights on {}."}, {"index": 118, "image_id": 2401199, "entity": "truck", "caption": "a round headlight on a truck", "question": ["is there a round headlight ?", "is there a truck ?"], "prompt": "a round headlight on a {}"}, {"index": 119, "image_id": 2401199, "entity": "truck", "caption": "Old red truck with a license plate that says HENRE.", "question": ["is there old red truck ?", "is there a license plate ?", "is there henre ?"], "prompt": "Old red {} with a license plate that says HENRE."}, {"index": 120, "image_id": 2400775, "entity": "truck", "caption": "camo armored pick up truck", "question": ["is there truck ?"], "prompt": "camo armored pick up {}"}, {"index": 121, "image_id": 2400775, "entity": "truck", "caption": "white skull painted on truck", "question": ["is there white skull ?", "is there truck ?"], "prompt": "white skull painted on {}"}, {"index": 122, "image_id": 2400768, "entity": "truck", "caption": "the truck has huge tires", "question": ["is there the truck ?", "are there huge tires ?"], "prompt": "the {} has huge tires"}, {"index": 123, "image_id": 2400768, "entity": "truck", "caption": "people are watching the truck go by", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are watching the {} go by"}, {"index": 124, "image_id": 2400768, "entity": "truck", "caption": "the truck has yellow lights", "question": ["is there the truck ?", "are there yellow lights ?"], "prompt": "the {} has yellow lights"}, {"index": 125, "image_id": 2400768, "entity": "truck", "caption": "Military truck driving down street.", "question": ["is there military truck ?", "is there street ?"], "prompt": "Military {} driving down street."}, {"index": 126, "image_id": 2400633, "entity": "truck", "caption": "the engine compartment on a truck.", "question": ["is there the engine compartment ?", "is there a truck ?"], "prompt": "the engine compartment on a {}."}, {"index": 127, "image_id": 2400633, "entity": "truck", "caption": "silver spot on the truck where paint has faded ", "question": ["is there silver spot ?", "is there the truck ?", "is there paint ?"], "prompt": "silver spot on the {} where paint has faded "}, {"index": 128, "image_id": 2400606, "entity": "truck", "caption": "a silver right headlight on an old truck", "question": ["is there a silver right headlight ?", "is there an old truck ?"], "prompt": "a silver right headlight on an old {}"}, {"index": 129, "image_id": 2400606, "entity": "truck", "caption": "the truck has 2 lights on front of it", "question": ["is there the truck ?", "are there 2 lights ?", "is there front ?"], "prompt": "the {} has 2 lights on front of it"}, {"index": 130, "image_id": 2400606, "entity": "truck", "caption": "straw is under the truck", "question": ["is there straw ?", "is there the truck ?"], "prompt": "straw is under the {}"}, {"index": 131, "image_id": 2400606, "entity": "truck", "caption": "the truck's bumper is falling off", "question": ["is there the truck's bumper ?"], "prompt": "the {}'s bumper is falling off"}, {"index": 132, "image_id": 2400599, "entity": "truck", "caption": "Side of truck is blue", "question": ["is there side ?", "is there truck ?"], "prompt": "Side of {} is blue"}, {"index": 133, "image_id": 2400599, "entity": "truck", "caption": "blue car parked behind a truck", "question": ["is there blue car ?", "is there a truck ?"], "prompt": "blue car parked behind a {}"}, {"index": 134, "image_id": 2400509, "entity": "truck", "caption": "front left tire on the truck", "question": ["is there front left tire ?", "is there the truck ?"], "prompt": "front left tire on the {}"}, {"index": 135, "image_id": 2400509, "entity": "truck", "caption": "front left mirror on the truck", "question": ["is there front left mirror ?", "is there the truck ?"], "prompt": "front left mirror on the {}"}, {"index": 136, "image_id": 2400509, "entity": "truck", "caption": "the man has a white truck", "question": ["is there the man ?", "is there a white truck ?"], "prompt": "the man has a white {}"}, {"index": 137, "image_id": 2400346, "entity": "truck", "caption": "man driving a pick-up truck", "question": ["is there man ?", "is there a pick-up truck ?"], "prompt": "man driving a pick-up {}"}, {"index": 138, "image_id": 2400346, "entity": "truck", "caption": "man is driving a bluish gray truck", "question": ["is there man ?", "is there a bluish gray truck ?"], "prompt": "man is driving a bluish gray {}"}, {"index": 139, "image_id": 2400304, "entity": "truck", "caption": "Man on street looking at truck", "question": ["is there man ?", "is there street ?", "is there truck ?"], "prompt": "Man on street looking at {}"}, {"index": 140, "image_id": 2400304, "entity": "truck", "caption": "Blue shirt on man looking at truck", "question": ["is there blue shirt ?", "is there man ?", "is there truck ?"], "prompt": "Blue shirt on man looking at {}"}, {"index": 141, "image_id": 2400304, "entity": "truck", "caption": "Black hat on man looking at truck", "question": ["is there black hat ?", "is there man ?", "is there truck ?"], "prompt": "Black hat on man looking at {}"}, {"index": 142, "image_id": 2400304, "entity": "truck", "caption": "Watch on man looking at truck", "question": ["is there man ?", "is there truck ?"], "prompt": "Watch on man looking at {}"}, {"index": 143, "image_id": 2400304, "entity": "truck", "caption": "The man standing next to the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "The man standing next to the {}"}, {"index": 144, "image_id": 2400304, "entity": "truck", "caption": "The women reflected on the truck", "question": ["are there the women ?", "is there the truck ?"], "prompt": "The women reflected on the {}"}, {"index": 145, "image_id": 2400304, "entity": "truck", "caption": "Tall man is looking at truck", "question": ["is there tall man ?", "is there truck ?"], "prompt": "Tall man is looking at {}"}, {"index": 146, "image_id": 2399870, "entity": "truck", "caption": "a sign is on the side of the truck", "question": ["is there a sign ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign is on the side of the {}"}, {"index": 147, "image_id": 2399870, "entity": "truck", "caption": "a number is on the side of the truck", "question": ["is there a number ?", "is there the side ?", "is there the truck ?"], "prompt": "a number is on the side of the {}"}, {"index": 148, "image_id": 2399870, "entity": "truck", "caption": "an exhaust system is on the side of the truck", "question": ["is there an exhaust system ?", "is there the side ?", "is there the truck ?"], "prompt": "an exhaust system is on the side of the {}"}, {"index": 149, "image_id": 2399764, "entity": "truck", "caption": "A truck is in the background.", "question": ["is there a truck ?", "is there the background ?"], "prompt": "A {} is in the background."}, {"index": 150, "image_id": 2398894, "entity": "truck", "caption": "black truck with hard bed cover", "question": ["is there black truck ?", "is there hard bed ?"], "prompt": "black {} with hard bed cover"}, {"index": 151, "image_id": 2398630, "entity": "truck", "caption": "a bus that has collided with truck", "question": ["is there a bus ?", "is there truck ?"], "prompt": "a bus that has collided with {}"}, {"index": 152, "image_id": 2398143, "entity": "truck", "caption": "transfer trucks windshield", "question": ["are there trucks ?"], "prompt": "transfer {}s windshield"}, {"index": 153, "image_id": 2398143, "entity": "truck", "caption": "the front left tire of a truck", "question": ["is there tire ?", "is there a truck ?"], "prompt": "the front left tire of a {}"}, {"index": 154, "image_id": 2398143, "entity": "truck", "caption": "front of truck is red", "question": ["is there front ?", "is there truck ?"], "prompt": "front of {} is red"}, {"index": 155, "image_id": 2398143, "entity": "truck", "caption": "lights on truck are orange", "question": ["are there lights ?", "is there truck ?"], "prompt": "lights on {} are orange"}, {"index": 156, "image_id": 2398143, "entity": "truck", "caption": "truck has gray stripes", "question": ["is there truck ?", "are there gray stripes ?"], "prompt": "{} has gray stripes"}, {"index": 157, "image_id": 2398143, "entity": "truck", "caption": "two silver stripes painted on the front of the truck", "question": ["are there two silver stripes ?", "is there the front ?", "is there the truck ?"], "prompt": "two silver stripes painted on the front of the {}"}, {"index": 158, "image_id": 2398030, "entity": "truck", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice cars and {}s lined up"}, {"index": 159, "image_id": 2397835, "entity": "truck", "caption": "the sculpture is in the bed of a truck", "question": ["is there the sculpture ?", "is there the bed ?", "is there a truck ?"], "prompt": "the sculpture is in the bed of a {}"}, {"index": 160, "image_id": 2397835, "entity": "truck", "caption": "WILD IN ART is on the back of the truck", "question": ["is there art ?", "is there the back ?", "is there the truck ?"], "prompt": "WILD IN ART is on the back of the {}"}, {"index": 161, "image_id": 2397058, "entity": "truck", "caption": "cardboard boxes piled high on truck", "question": ["are there cardboard boxes ?", "is there truck ?"], "prompt": "cardboard boxes piled high on {}"}, {"index": 162, "image_id": 2397058, "entity": "truck", "caption": "man in plaid shirt leaning over truck", "question": ["is there man ?", "is there plaid shirt ?", "is there truck ?"], "prompt": "man in plaid shirt leaning over {}"}, {"index": 163, "image_id": 2397049, "entity": "truck", "caption": "Teddy bear on front of truck", "question": ["is there front ?", "is there truck ?"], "prompt": "Teddy bear on front of {}"}, {"index": 164, "image_id": 2397049, "entity": "truck", "caption": "Head lights front of truck", "question": ["are there head lights ?", "is there truck ?"], "prompt": "Head lights front of {}"}, {"index": 165, "image_id": 2396831, "entity": "truck", "caption": "the trucks headlights are off", "question": ["are there the trucks headlights ?"], "prompt": "the {}s headlights are off"}, {"index": 166, "image_id": 2396726, "entity": "truck", "caption": "truck tires have two different types of white hubcaps", "question": ["are there truck tires ?", "are there two different types ?", "are there white hubcaps ?"], "prompt": "{} tires have two different types of white hubcaps"}, {"index": 167, "image_id": 2396726, "entity": "truck", "caption": "sedan behind truck has obama '08 poster on front above license plate", "question": ["is there truck ?", "is there obama '08 poster ?", "is there front ?", "is there license plate ?"], "prompt": "sedan behind {} has obama '08 poster on front above license plate"}, {"index": 168, "image_id": 2396726, "entity": "truck", "caption": "drivers side truck headlight", "question": ["are there drivers ?"], "prompt": "drivers side {} headlight"}, {"index": 169, "image_id": 2396433, "entity": "truck", "caption": "A man spray paints the truck.", "question": ["is there a man ?", "is there the truck ?"], "prompt": "A man spray paints the {}."}, {"index": 170, "image_id": 2396312, "entity": "truck", "caption": "the truck rim is red", "question": ["is there the truck rim ?"], "prompt": "the {} rim is red"}, {"index": 171, "image_id": 2396312, "entity": "truck", "caption": "it is the door on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "it is the door on the {}"}, {"index": 172, "image_id": 2396121, "entity": "truck", "caption": "Gigi writing on truck.", "question": ["is there truck ?"], "prompt": "Gigi writing on {}."}, {"index": 173, "image_id": 2396121, "entity": "truck", "caption": "Menu hanging from truck.", "question": ["is there menu ?", "is there truck ?"], "prompt": "Menu hanging from {}."}, {"index": 174, "image_id": 2395929, "entity": "truck", "caption": "the horse is on a truck", "question": ["is there the horse ?", "is there a truck ?"], "prompt": "the horse is on a {}"}, {"index": 175, "image_id": 2395902, "entity": "truck", "caption": "Big blue parked truck.", "question": ["is there big blue parked truck ?"], "prompt": "Big blue parked {}."}, {"index": 176, "image_id": 2395902, "entity": "truck", "caption": "Long white truck parked.", "question": ["is there long white truck ?"], "prompt": "Long white {} parked."}, {"index": 177, "image_id": 2395835, "entity": "truck", "caption": "passenger handle inside truck", "question": ["is there passenger handle ?", "is there truck ?"], "prompt": "passenger handle inside {}"}, {"index": 178, "image_id": 2395835, "entity": "truck", "caption": "a man in the truck is wearing red", "question": ["is there a man ?", "is there the truck ?", "is there red ?"], "prompt": "a man in the {} is wearing red"}, {"index": 179, "image_id": 2395835, "entity": "truck", "caption": "two people are in the truck", "question": ["are there two people ?", "is there the truck ?"], "prompt": "two people are in the {}"}, {"index": 180, "image_id": 2395411, "entity": "truck", "caption": "emergency lights are on top of the truck", "question": ["are there emergency lights ?", "is there top ?", "is there the truck ?"], "prompt": "emergency lights are on top of the {}"}, {"index": 181, "image_id": 2395408, "entity": "truck", "caption": "headlights of food truck are off", "question": ["are there headlights ?", "is there food truck ?"], "prompt": "headlights of food {} are off"}, {"index": 182, "image_id": 2395292, "entity": "truck", "caption": "wheels of the truck are red and chrome", "question": ["are there wheels ?", "is there the truck ?"], "prompt": "wheels of the {} are red and chrome"}, {"index": 183, "image_id": 2395292, "entity": "truck", "caption": "bed of truck is wooden", "question": ["is there bed ?", "is there truck ?"], "prompt": "bed of {} is wooden"}, {"index": 184, "image_id": 2395292, "entity": "truck", "caption": "truck has a side mirror", "question": ["is there truck ?", "is there a side mirror ?"], "prompt": "{} has a side mirror"}, {"index": 185, "image_id": 2395292, "entity": "truck", "caption": "truck door has no handle", "question": ["is there truck door ?", "is there no handle ?"], "prompt": "{} door has no handle"}, {"index": 186, "image_id": 2395042, "entity": "truck", "caption": "The truck door is open. ", "question": ["is there the truck door ?"], "prompt": "The {} door is open. "}, {"index": 187, "image_id": 2395042, "entity": "truck", "caption": "The driver is getting into the truck. ", "question": ["is there the driver ?", "is there the truck ?"], "prompt": "The driver is getting into the {}. "}, {"index": 188, "image_id": 2395042, "entity": "truck", "caption": "The truck is carrying cattle. ", "question": ["is there the truck ?", "are there cattle ?"], "prompt": "The {} is carrying cattle. "}, {"index": 189, "image_id": 2395042, "entity": "truck", "caption": "The truck's shadow is on the street.", "question": ["is there the truck's shadow ?", "is there the street ?"], "prompt": "The {}'s shadow is on the street."}, {"index": 190, "image_id": 2395042, "entity": "truck", "caption": "door of truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "door of {} is open"}, {"index": 191, "image_id": 2394987, "entity": "truck", "caption": "a sign on the side of a truck that says Drink Coca-Cola", "question": ["is there a sign ?", "is there the side ?", "is there a truck ?"], "prompt": "a sign on the side of a {} that says Drink Coca-Cola"}, {"index": 192, "image_id": 2394972, "entity": "truck", "caption": "the truck has a light", "question": ["is there the truck ?", "is there a light ?"], "prompt": "the {} has a light"}, {"index": 193, "image_id": 2394972, "entity": "truck", "caption": "the truck has a windshield", "question": ["is there the truck ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 194, "image_id": 2394854, "entity": "truck", "caption": "the truck has a green logo", "question": ["is there the truck ?", "is there a green logo ?"], "prompt": "the {} has a green logo"}, {"index": 195, "image_id": 2394854, "entity": "truck", "caption": "emergency lights are on the truck", "question": ["are there emergency lights ?", "is there the truck ?"], "prompt": "emergency lights are on the {}"}, {"index": 196, "image_id": 2394854, "entity": "truck", "caption": "a side mirror is on the truck", "question": ["is there a side mirror ?", "is there the truck ?"], "prompt": "a side mirror is on the {}"}, {"index": 197, "image_id": 2394740, "entity": "truck", "caption": "Honda emblem on the back of a gry truck", "question": ["is there the back ?", "is there a gry truck ?"], "prompt": "Honda emblem on the back of a gry {}"}, {"index": 198, "image_id": 2394740, "entity": "truck", "caption": "the truck is a honda", "question": ["is there the truck ?"], "prompt": "the {} is a honda"}, {"index": 199, "image_id": 2394740, "entity": "truck", "caption": "the truck has 4wd", "question": ["is there the truck ?", "is there 4wd ?"], "prompt": "the {} has 4wd"}, {"index": 200, "image_id": 2394327, "entity": "truck", "caption": "metal ladder sitting beside truck", "question": ["is there metal ladder ?", "is there truck ?"], "prompt": "metal ladder sitting beside {}"}, {"index": 201, "image_id": 2394327, "entity": "truck", "caption": "bottom on red crane attached to back of truck", "question": ["is there bottom ?", "is there red crane ?", "is there truck ?"], "prompt": "bottom on red crane attached to back of {}"}, {"index": 202, "image_id": 2393999, "entity": "truck", "caption": "The front of the truck is yellow.", "question": ["is there the front ?", "is there the truck ?"], "prompt": "The front of the {} is yellow."}, {"index": 203, "image_id": 2393989, "entity": "truck", "caption": "End of truck where garbage enters.", "question": ["is there end ?", "is there truck ?", "is there garbage ?"], "prompt": "End of {} where garbage enters."}, {"index": 204, "image_id": 2393842, "entity": "truck", "caption": "The people are looking at the truck.", "question": ["are there the people ?", "is there the truck ?"], "prompt": "The people are looking at the {}."}, {"index": 205, "image_id": 2393686, "entity": "truck", "caption": "The fire trucks windshield.", "question": ["are there the fire trucks ?"], "prompt": "The fire {}s windshield."}, {"index": 206, "image_id": 2393686, "entity": "truck", "caption": "A license plate is on the truck", "question": ["is there a license plate ?", "is there the truck ?"], "prompt": "A license plate is on the {}"}, {"index": 207, "image_id": 2393686, "entity": "truck", "caption": "License plate on front of firetruck that reads S360 ATO", "question": ["is there license plate ?", "is there front ?", "is there firetruck ?"], "prompt": "License plate on front of fire{} that reads S360 ATO"}, {"index": 208, "image_id": 2393548, "entity": "truck", "caption": "The bucket is dumping dirt into the truck", "question": ["is there the bucket ?", "is there dirt ?", "is there the truck ?"], "prompt": "The bucket is dumping dirt into the {}"}, {"index": 209, "image_id": 2393548, "entity": "truck", "caption": "These are the trucks front wheels", "question": ["are there the trucks ?", "are there front wheels ?"], "prompt": "These are the {}s front wheels"}, {"index": 210, "image_id": 2393548, "entity": "truck", "caption": "This is the cab of the truck", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "This is the cab of the {}"}, {"index": 211, "image_id": 2393263, "entity": "truck", "caption": "Ribbons tied around the mirror of a utility truck", "question": ["are there ribbons ?", "is there the mirror ?", "is there a utility truck ?"], "prompt": "Ribbons tied around the mirror of a utility {}"}, {"index": 212, "image_id": 2392926, "entity": "truck", "caption": "man driving large truck", "question": ["is there man ?", "is there large truck ?"], "prompt": "man driving large {}"}, {"index": 213, "image_id": 2392536, "entity": "truck", "caption": "front wheel of truck is black", "question": ["is there front wheel ?", "is there truck ?"], "prompt": "front wheel of {} is black"}, {"index": 214, "image_id": 2392536, "entity": "truck", "caption": "back wheel of truck is big", "question": ["is there back wheel ?", "is there truck ?"], "prompt": "back wheel of {} is big"}, {"index": 215, "image_id": 2392536, "entity": "truck", "caption": "The truck has a lady painted on it", "question": ["is there the truck ?", "is there a lady ?"], "prompt": "The {} has a lady painted on it"}, {"index": 216, "image_id": 2392394, "entity": "truck", "caption": "the front headlight on the truck", "question": ["is there the front headlight ?", "is there the truck ?"], "prompt": "the front headlight on the {}"}, {"index": 217, "image_id": 2392394, "entity": "truck", "caption": "man standing behind the truck", "question": ["is there man ?", "is there the truck ?"], "prompt": "man standing behind the {}"}, {"index": 218, "image_id": 2392105, "entity": "truck", "caption": "The windhield wipers are on the truck.", "question": ["are there the windhield wipers ?", "is there the truck ?"], "prompt": "The windhield wipers are on the {}."}, {"index": 219, "image_id": 2391764, "entity": "truck", "caption": "tires on truck are black", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires on {} are black"}, {"index": 220, "image_id": 2391651, "entity": "truck", "caption": "the pickup truck is on the street", "question": ["is there the pickup truck ?", "is there the street ?"], "prompt": "the pickup {} is on the street"}, {"index": 221, "image_id": 2391651, "entity": "truck", "caption": "person seemingly trying to get into truck", "question": ["is there person ?", "is there truck ?"], "prompt": "person seemingly trying to get into {}"}, {"index": 222, "image_id": 2391651, "entity": "truck", "caption": "The right side view mirrors on the truck.", "question": ["are there the right side view mirrors ?", "is there the truck ?"], "prompt": "The right side view mirrors on the {}."}, {"index": 223, "image_id": 2391651, "entity": "truck", "caption": "The front tire on the side of the truck that the door is open.", "question": ["is there the front tire ?", "is there the side ?", "is there the truck ?", "is there the door ?"], "prompt": "The front tire on the side of the {} that the door is open."}, {"index": 224, "image_id": 2391651, "entity": "truck", "caption": "front left tire of green truck", "question": ["is there front left tire ?", "is there green truck ?"], "prompt": "front left tire of green {}"}, {"index": 225, "image_id": 2391128, "entity": "truck", "caption": "Dead tree branch hanging out of the truck.", "question": ["is there dead tree branch ?", "is there the truck ?"], "prompt": "Dead tree branch hanging out of the {}."}, {"index": 226, "image_id": 2391128, "entity": "truck", "caption": "Large truck driving down the road.", "question": ["is there large truck ?", "is there the road ?"], "prompt": "Large {} driving down the road."}, {"index": 227, "image_id": 2391063, "entity": "truck", "caption": "clear truck head light", "question": ["is there clear truck head light ?"], "prompt": "clear {} head light"}, {"index": 228, "image_id": 2390018, "entity": "truck", "caption": "Black woman painted on truck", "question": ["is there black woman ?", "is there truck ?"], "prompt": "Black woman painted on {}"}, {"index": 229, "image_id": 2390018, "entity": "truck", "caption": "female character painted on truck", "question": ["is there female character ?", "is there truck ?"], "prompt": "female character painted on {}"}, {"index": 230, "image_id": 2389846, "entity": "truck", "caption": "Driver's side window rolled up on truck", "question": ["is there driver's side window ?", "is there truck ?"], "prompt": "Driver's side window rolled up on {}"}, {"index": 231, "image_id": 2389498, "entity": "truck", "caption": "red pick up truck parked on a street", "question": ["is there truck ?", "is there a street ?"], "prompt": "red pick up {} parked on a street"}, {"index": 232, "image_id": 2389435, "entity": "truck", "caption": "ladder coming out of the truck", "question": ["is there ladder ?", "is there the truck ?"], "prompt": "ladder coming out of the {}"}, {"index": 233, "image_id": 2389435, "entity": "truck", "caption": "kid standing on truck.", "question": ["is there kid ?", "is there truck ?"], "prompt": "kid standing on {}."}, {"index": 234, "image_id": 2389256, "entity": "truck", "caption": "The dishes are on the truck.", "question": ["are there the dishes ?", "is there the truck ?"], "prompt": "The dishes are on the {}."}, {"index": 235, "image_id": 2389256, "entity": "truck", "caption": "Two dishes are on the truck.", "question": ["are there two dishes ?", "is there the truck ?"], "prompt": "Two dishes are on the {}."}, {"index": 236, "image_id": 2389256, "entity": "truck", "caption": "dark container next to truck", "question": ["is there dark container ?", "is there truck ?"], "prompt": "dark container next to {}"}, {"index": 237, "image_id": 2389232, "entity": "truck", "caption": "a black truck bed cover", "question": ["is there a black truck bed ?"], "prompt": "a black {} bed cover"}, {"index": 238, "image_id": 2389232, "entity": "truck", "caption": "the trucks name DUDE", "question": ["are there the trucks ?", "is there dude ?"], "prompt": "the {}s name DUDE"}, {"index": 239, "image_id": 2389232, "entity": "truck", "caption": "truck bed has a black cover", "question": ["is there truck bed ?", "is there a black cover ?"], "prompt": "{} bed has a black cover"}, {"index": 240, "image_id": 2389232, "entity": "truck", "caption": "Hood of truck is open.", "question": ["is there hood ?", "is there truck ?"], "prompt": "Hood of {} is open."}, {"index": 241, "image_id": 2388587, "entity": "truck", "caption": "person walking near massive truck", "question": ["is there person ?", "is there massive truck ?"], "prompt": "person walking near massive {}"}, {"index": 242, "image_id": 2388482, "entity": "truck", "caption": "two dogs are standing in the back of a truck", "question": ["are there two dogs ?", "is there the back ?", "is there a truck ?"], "prompt": "two dogs are standing in the back of a {}"}, {"index": 243, "image_id": 2388482, "entity": "truck", "caption": "two dogs are peering over a truck cab", "question": ["are there two dogs ?", "is there a truck cab ?"], "prompt": "two dogs are peering over a {} cab"}, {"index": 244, "image_id": 2388482, "entity": "truck", "caption": "SIERRA is on the back of truck", "question": ["is there the back ?", "is there truck ?"], "prompt": "SIERRA is on the back of {}"}, {"index": 245, "image_id": 2388482, "entity": "truck", "caption": "sierra make on truck", "question": ["is there truck ?"], "prompt": "sierra make on {}"}, {"index": 246, "image_id": 2388392, "entity": "truck", "caption": "People are standing by the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "People are standing by the {}"}, {"index": 247, "image_id": 2388286, "entity": "truck", "caption": "The ladder is on the truck.", "question": ["is there the ladder ?", "is there the truck ?"], "prompt": "The ladder is on the {}."}, {"index": 248, "image_id": 2388286, "entity": "truck", "caption": "The paper on the truck is white.", "question": ["is there the paper ?", "is there the truck ?"], "prompt": "The paper on the {} is white."}, {"index": 249, "image_id": 2388286, "entity": "truck", "caption": "The ladders are on top of the truck", "question": ["are there the ladders ?", "is there top ?", "is there the truck ?"], "prompt": "The ladders are on top of the {}"}, {"index": 250, "image_id": 2388153, "entity": "truck", "caption": "Steel bed cover on pickup truck", "question": ["is there steel bed cover ?", "is there pickup truck ?"], "prompt": "Steel bed cover on pickup {}"}, {"index": 251, "image_id": 2388153, "entity": "truck", "caption": "Manufacturer emblem of a pickup truck", "question": ["is there manufacturer emblem ?", "is there a pickup truck ?"], "prompt": "Manufacturer emblem of a pickup {}"}, {"index": 252, "image_id": 2388153, "entity": "truck", "caption": "the truck has a bed cover", "question": ["is there the truck ?", "is there a bed cover ?"], "prompt": "the {} has a bed cover"}, {"index": 253, "image_id": 2387414, "entity": "truck", "caption": "green grass growing beside truck", "question": ["is there green grass ?", "is there truck ?"], "prompt": "green grass growing beside {}"}, {"index": 254, "image_id": 2387347, "entity": "truck", "caption": "Leaveless branches hang down in front of the truck", "question": ["are there leaveless branches ?", "is there front ?", "is there the truck ?"], "prompt": "Leaveless branches hang down in front of the {}"}, {"index": 255, "image_id": 2387347, "entity": "truck", "caption": "God is love is painted across the truck's front bumper", "question": ["is there love ?", "is there the truck's front bumper ?"], "prompt": "God is love is painted across the {}'s front bumper"}, {"index": 256, "image_id": 2387056, "entity": "truck", "caption": "Name of company written on truck.", "question": ["is there name ?", "is there company ?", "is there truck ?"], "prompt": "Name of company written on {}."}, {"index": 257, "image_id": 2386762, "entity": "truck", "caption": "silver metal door handle on truck", "question": ["is there silver metal door ?", "is there truck ?"], "prompt": "silver metal door handle on {}"}, {"index": 258, "image_id": 2386762, "entity": "truck", "caption": "Trees are behind the truck.", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are behind the {}."}, {"index": 259, "image_id": 2386704, "entity": "truck", "caption": "a garbage can next to the truck", "question": ["is there a garbage ?", "is there the truck ?"], "prompt": "a garbage can next to the {}"}, {"index": 260, "image_id": 2386704, "entity": "truck", "caption": "A cooler is on the truck", "question": ["is there the truck ?"], "prompt": "A cooler is on the {}"}, {"index": 261, "image_id": 2386704, "entity": "truck", "caption": "A menu is on the side of the truck", "question": ["is there a menu ?", "is there the side ?", "is there the truck ?"], "prompt": "A menu is on the side of the {}"}, {"index": 262, "image_id": 2386704, "entity": "truck", "caption": "A trash can is beside the truck", "question": ["is there a trash can ?", "is there the truck ?"], "prompt": "A trash can is beside the {}"}, {"index": 263, "image_id": 2386704, "entity": "truck", "caption": "A sign is on top of the truck", "question": ["is there a sign ?", "is there top ?", "is there the truck ?"], "prompt": "A sign is on top of the {}"}, {"index": 264, "image_id": 2386704, "entity": "truck", "caption": "food truck parked next to sidewalk", "question": ["is there food truck ?"], "prompt": "food {} parked next to sidewalk"}, {"index": 265, "image_id": 2386704, "entity": "truck", "caption": "lined trash can leaning againt food truck", "question": ["is there trash ?", "is there againt food truck ?"], "prompt": "lined trash can leaning againt food {}"}, {"index": 266, "image_id": 2386704, "entity": "truck", "caption": "Trash can outside of truck", "question": ["is there truck ?"], "prompt": "Trash can outside of {}"}, {"index": 267, "image_id": 2386545, "entity": "truck", "caption": "dirt splashed on side of truck door", "question": ["is there dirt ?", "is there side ?", "is there truck ?"], "prompt": "dirt splashed on side of {} door"}, {"index": 268, "image_id": 2386451, "entity": "truck", "caption": "roof rack on top of pickup truck", "question": ["is there roof rack ?", "is there top ?", "is there pickup truck ?"], "prompt": "roof rack on top of pickup {}"}, {"index": 269, "image_id": 2386451, "entity": "truck", "caption": "The truck is towing a boat", "question": ["is there the truck ?", "is there a boat ?"], "prompt": "The {} is towing a boat"}, {"index": 270, "image_id": 2385966, "entity": "truck", "caption": "The truck has a red logo on it.", "question": ["is there the truck ?", "is there a red logo ?"], "prompt": "The {} has a red logo on it."}, {"index": 271, "image_id": 2385966, "entity": "truck", "caption": "the caution lights on a truck", "question": ["are there the caution lights ?", "is there a truck ?"], "prompt": "the caution lights on a {}"}, {"index": 272, "image_id": 2385580, "entity": "truck", "caption": "Couch is riding in truck bed", "question": ["is there couch ?", "is there truck bed ?"], "prompt": "Couch is riding in {} bed"}, {"index": 273, "image_id": 2385580, "entity": "truck", "caption": "power lines hang above truck", "question": ["are there power lines ?", "is there truck ?"], "prompt": "power lines hang above {}"}, {"index": 274, "image_id": 2385580, "entity": "truck", "caption": "the couch sits in the back of a pickup truck", "question": ["is there the couch ?", "is there the back ?", "is there a pickup truck ?"], "prompt": "the couch sits in the back of a pickup {}"}, {"index": 275, "image_id": 2385580, "entity": "truck", "caption": "door handle on the truck door", "question": ["is there door ?", "is there the truck door ?"], "prompt": "door handle on the {} door"}, {"index": 276, "image_id": 2385559, "entity": "truck", "caption": "Gold writing on the front of the fire truck", "question": ["is there gold writing ?", "is there the front ?", "is there the fire truck ?"], "prompt": "Gold writing on the front of the fire {}"}, {"index": 277, "image_id": 2385559, "entity": "truck", "caption": "A firetruck is on a road.", "question": ["is there a firetruck ?", "is there a road ?"], "prompt": "A fire{} is on a road."}, {"index": 278, "image_id": 2385559, "entity": "truck", "caption": "The word \" PLAINS \" is on the front of a firetruck.", "question": ["is there the word ?", "are there \" plains ?", "is there the front ?", "is there a firetruck ?"], "prompt": "The word \" PLAINS \" is on the front of a fire{}."}, {"index": 279, "image_id": 2385559, "entity": "truck", "caption": "A street sign is above a firetruck.", "question": ["is there a street sign ?", "is there a firetruck ?"], "prompt": "A street sign is above a fire{}."}, {"index": 280, "image_id": 2385527, "entity": "truck", "caption": "red chef stenciled on side of truck", "question": ["is there red chef ?", "is there side ?", "is there truck ?"], "prompt": "red chef stenciled on side of {}"}, {"index": 281, "image_id": 2384523, "entity": "truck", "caption": "tires of truck painted", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires of {} painted"}, {"index": 282, "image_id": 2384523, "entity": "truck", "caption": "red painted bible sign on truck", "question": ["is there bible sign ?", "is there truck ?"], "prompt": "red painted bible sign on {}"}, {"index": 283, "image_id": 2384073, "entity": "truck", "caption": "Ice hanging from the front of truck", "question": ["is there ice ?", "is there the front ?", "is there truck ?"], "prompt": "Ice hanging from the front of {}"}, {"index": 284, "image_id": 2383911, "entity": "truck", "caption": "The word Challenge on the truck.", "question": ["is there the word challenge ?", "is there the truck ?"], "prompt": "The word Challenge on the {}."}, {"index": 285, "image_id": 2383909, "entity": "truck", "caption": "The bananas are in the truck bed", "question": ["are there the bananas ?", "is there the truck bed ?"], "prompt": "The bananas are in the {} bed"}, {"index": 286, "image_id": 2383743, "entity": "truck", "caption": "A truck is carrying merchandise", "question": ["is there a truck ?", "is there merchandise ?"], "prompt": "A {} is carrying merchandise"}, {"index": 287, "image_id": 2383743, "entity": "truck", "caption": "lights hanging off the back of the truck", "question": ["are there lights ?", "is there the back ?", "is there the truck ?"], "prompt": "lights hanging off the back of the {}"}, {"index": 288, "image_id": 2383315, "entity": "truck", "caption": "The fire truck is on the street", "question": ["is there the fire truck ?", "is there the street ?"], "prompt": "The fire {} is on the street"}, {"index": 289, "image_id": 2382893, "entity": "truck", "caption": "big lugs encircle a rear truck tire", "question": ["are there big lugs ?", "is there a rear truck tire ?"], "prompt": "big lugs encircle a rear {} tire"}, {"index": 290, "image_id": 2382893, "entity": "truck", "caption": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow truck", "question": ["are there present viewers' line ?", "is there site ?", "is there end ?", "is there yellow truck ?"], "prompt": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow {}"}, {"index": 291, "image_id": 2382893, "entity": "truck", "caption": "truck has a cover on back", "question": ["is there truck ?", "is there a cover ?"], "prompt": "{} has a cover on back"}, {"index": 292, "image_id": 2382893, "entity": "truck", "caption": "the cover is on the back of a truck", "question": ["is there the cover ?", "is there the back ?", "is there a truck ?"], "prompt": "the cover is on the back of a {}"}, {"index": 293, "image_id": 2382893, "entity": "truck", "caption": "the truck has some black letters on it", "question": ["is there the truck ?", "are there some black letters ?"], "prompt": "the {} has some black letters on it"}, {"index": 294, "image_id": 2382779, "entity": "truck", "caption": "the spare tire is on the truck", "question": ["is there the spare tire ?", "is there the truck ?"], "prompt": "the spare tire is on the {}"}, {"index": 295, "image_id": 2382494, "entity": "truck", "caption": "the truck has a plate", "question": ["is there the truck ?", "is there a plate ?"], "prompt": "the {} has a plate"}, {"index": 296, "image_id": 2382494, "entity": "truck", "caption": "the truck has a bumper", "question": ["is there the truck ?", "is there a bumper ?"], "prompt": "the {} has a bumper"}, {"index": 297, "image_id": 2382494, "entity": "truck", "caption": "the truck has a wiper", "question": ["is there the truck ?", "is there a wiper ?"], "prompt": "the {} has a wiper"}, {"index": 298, "image_id": 2382494, "entity": "truck", "caption": "the truck has a window", "question": ["is there the truck ?", "is there a window ?"], "prompt": "the {} has a window"}, {"index": 299, "image_id": 2382494, "entity": "truck", "caption": "the chevy logo is on the truck", "question": ["is there the chevy logo ?", "is there the truck ?"], "prompt": "the chevy logo is on the {}"}, {"index": 300, "image_id": 2382494, "entity": "truck", "caption": "the truck has a silver grill", "question": ["is there the truck ?", "is there a silver grill ?"], "prompt": "the {} has a silver grill"}, {"index": 301, "image_id": 2382470, "entity": "truck", "caption": "Waste management truck is on the road", "question": ["is there waste management truck ?", "is there the road ?"], "prompt": "Waste management {} is on the road"}, {"index": 302, "image_id": 2382462, "entity": "truck", "caption": "man is standing behind truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is standing behind {}"}, {"index": 303, "image_id": 2382462, "entity": "truck", "caption": "truck has white door", "question": ["is there truck ?", "is there white door ?"], "prompt": "{} has white door"}, {"index": 304, "image_id": 2382454, "entity": "truck", "caption": "Lights are on in front of the truck.", "question": ["are there lights ?", "is there front ?", "is there the truck ?"], "prompt": "Lights are on in front of the {}."}, {"index": 305, "image_id": 2381035, "entity": "truck", "caption": "Woman standing on step of truck", "question": ["is there woman ?", "is there step ?", "is there truck ?"], "prompt": "Woman standing on step of {}"}, {"index": 306, "image_id": 2380908, "entity": "truck", "caption": "The door handle on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door handle on the {}"}, {"index": 307, "image_id": 2380866, "entity": "truck", "caption": "the truck has a mirror", "question": ["is there the truck ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 308, "image_id": 2380866, "entity": "truck", "caption": "the logo is on the back of the truck", "question": ["is there the logo ?", "is there the back ?", "is there the truck ?"], "prompt": "the logo is on the back of the {}"}, {"index": 309, "image_id": 2380866, "entity": "truck", "caption": "the billboard is infront of the truck", "question": ["is there the billboard ?", "is there the truck ?"], "prompt": "the billboard is infront of the {}"}, {"index": 310, "image_id": 2380592, "entity": "truck", "caption": "man standing at back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "man standing at back of {}"}, {"index": 311, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is black"}, {"index": 312, "image_id": 2380587, "entity": "truck", "caption": "the truck has an antenna", "question": ["is there the truck ?", "is there an antenna ?"], "prompt": "the {} has an antenna"}, {"index": 313, "image_id": 2380587, "entity": "truck", "caption": "black windshield wipers are on the truck", "question": ["are there black windshield wipers ?", "is there the truck ?"], "prompt": "black windshield wipers are on the {}"}, {"index": 314, "image_id": 2380587, "entity": "truck", "caption": "the truck has writing on the side", "question": ["is there the truck ?", "is there the side ?"], "prompt": "the {} has writing on the side"}, {"index": 315, "image_id": 2380587, "entity": "truck", "caption": "a rack is on the roof of the truck", "question": ["is there a rack ?", "is there the roof ?", "is there the truck ?"], "prompt": "a rack is on the roof of the {}"}, {"index": 316, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is flat black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is flat black"}, {"index": 317, "image_id": 2380587, "entity": "truck", "caption": "red lettering is on the side of the truck", "question": ["is there red lettering ?", "is there the side ?", "is there the truck ?"], "prompt": "red lettering is on the side of the {}"}, {"index": 318, "image_id": 2380587, "entity": "truck", "caption": "the headlight of the truck is off", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "the headlight of the {} is off"}, {"index": 319, "image_id": 2380587, "entity": "truck", "caption": "a rack is on top of the truck", "question": ["is there a rack ?", "is there top ?", "is there the truck ?"], "prompt": "a rack is on top of the {}"}, {"index": 320, "image_id": 2380587, "entity": "truck", "caption": "green hedges are behind the truck", "question": ["are there green hedges ?", "is there the truck ?"], "prompt": "green hedges are behind the {}"}, {"index": 321, "image_id": 2380273, "entity": "truck", "caption": "the truck has a long side mirror ", "question": ["is there the truck ?", "is there a long side mirror ?"], "prompt": "the {} has a long side mirror "}, {"index": 322, "image_id": 2380273, "entity": "truck", "caption": "The truck is on pavement. ", "question": ["is there the truck ?", "is there pavement ?"], "prompt": "The {} is on pavement. "}, {"index": 323, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting something.", "question": ["is there the truck ?", "is there something ?"], "prompt": "The {} is lifting something."}, {"index": 324, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting a small vehicle with a crane.", "question": ["is there the truck ?", "is there a small vehicle ?", "is there a crane ?"], "prompt": "The {} is lifting a small vehicle with a crane."}, {"index": 325, "image_id": 2380112, "entity": "truck", "caption": "Military truck loading a vehicle", "question": ["is there military truck ?", "is there a vehicle ?"], "prompt": "Military {} loading a vehicle"}, {"index": 326, "image_id": 2379690, "entity": "truck", "caption": "man driving a vintage truck", "question": ["is there man ?", "is there a vintage truck ?"], "prompt": "man driving a vintage {}"}, {"index": 327, "image_id": 2379397, "entity": "truck", "caption": "man climbing back of truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man climbing back of {}"}, {"index": 328, "image_id": 2379397, "entity": "truck", "caption": "boy in grey shirt standing on top of truck", "question": ["is there boy ?", "is there top ?", "is there truck ?"], "prompt": "boy in grey shirt standing on top of {}"}, {"index": 329, "image_id": 2379397, "entity": "truck", "caption": "young man climbing up back of truck", "question": ["is there young man ?", "is there truck ?"], "prompt": "young man climbing up back of {}"}, {"index": 330, "image_id": 2378872, "entity": "truck", "caption": "Dog standing on side of truck bed", "question": ["is there dog ?", "is there side ?", "is there truck ?", "is there bed ?"], "prompt": "Dog standing on side of {} bed"}, {"index": 331, "image_id": 2378626, "entity": "truck", "caption": "Car parked in front of pick-up truck", "question": ["is there car ?", "is there front ?", "is there pick-up truck ?"], "prompt": "Car parked in front of pick-up {}"}, {"index": 332, "image_id": 2378563, "entity": "truck", "caption": "The word Blow on the tail gate of the truck.", "question": ["is there the word ?", "is there the tail gate ?", "is there the truck ?"], "prompt": "The word Blow on the tail gate of the {}."}, {"index": 333, "image_id": 2378417, "entity": "truck", "caption": "Green writing on side of truck.", "question": ["is there green writing ?", "is there side ?", "is there truck ?"], "prompt": "Green writing on side of {}."}, {"index": 334, "image_id": 2378417, "entity": "truck", "caption": "Big tire leaning on truck.", "question": ["is there big tire ?", "is there truck ?"], "prompt": "Big tire leaning on {}."}, {"index": 335, "image_id": 2378417, "entity": "truck", "caption": "weeds are growing by the old truck", "question": ["are there weeds ?", "is there the old truck ?"], "prompt": "weeds are growing by the old {}"}, {"index": 336, "image_id": 2378218, "entity": "truck", "caption": "rope tied in truck", "question": ["is there rope ?", "is there truck ?"], "prompt": "rope tied in {}"}, {"index": 337, "image_id": 2378218, "entity": "truck", "caption": "the truck the cow is sitting on", "question": ["is there the truck ?", "is there the cow ?"], "prompt": "the {} the cow is sitting on"}, {"index": 338, "image_id": 2378035, "entity": "truck", "caption": "men driving an old time truck", "question": ["are there men ?", "is there an old time truck ?"], "prompt": "men driving an old time {}"}, {"index": 339, "image_id": 2377760, "entity": "truck", "caption": "a truck is driving down the road.", "question": ["is there a truck ?", "is there the road ?"], "prompt": "a {} is driving down the road."}, {"index": 340, "image_id": 2377333, "entity": "truck", "caption": "round headlight on truck", "question": ["is there headlight ?", "is there truck ?"], "prompt": "round headlight on {}"}, {"index": 341, "image_id": 2377333, "entity": "truck", "caption": "Tan truck has five visible tires", "question": ["is there tan truck ?", "are there five visible tires ?"], "prompt": "Tan {} has five visible tires"}, {"index": 342, "image_id": 2376346, "entity": "truck", "caption": "man in red vest standing in front of truck", "question": ["is there man ?", "is there red vest ?", "is there front ?", "is there truck ?"], "prompt": "man in red vest standing in front of {}"}, {"index": 343, "image_id": 2376063, "entity": "truck", "caption": "large tarps covering bed of red-orange truck", "question": ["are there large tarps ?", "is there bed ?", "is there red-orange truck ?"], "prompt": "large tarps covering bed of red-orange {}"}, {"index": 344, "image_id": 2376061, "entity": "truck", "caption": "a fire truck is driving down the street.", "question": ["is there a fire truck ?", "is there the street ?"], "prompt": "a fire {} is driving down the street."}, {"index": 345, "image_id": 2376061, "entity": "truck", "caption": "American flag hanging from the truck", "question": ["is there american flag ?", "is there the truck ?"], "prompt": "American flag hanging from the {}"}, {"index": 346, "image_id": 2376005, "entity": "truck", "caption": "the truck has lettering on the side", "question": ["is there the truck ?", "is there lettering ?", "is there the side ?"], "prompt": "the {} has lettering on the side"}, {"index": 347, "image_id": 2376005, "entity": "truck", "caption": "the truck has a metal fender in front", "question": ["is there the truck ?", "is there a metal fender ?", "is there front ?"], "prompt": "the {} has a metal fender in front"}, {"index": 348, "image_id": 2374981, "entity": "truck", "caption": "Person walking behind truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking behind {}."}, {"index": 349, "image_id": 2374981, "entity": "truck", "caption": "The truck is carrying jugs of water.", "question": ["is there the truck ?", "are there jugs ?", "is there water ?"], "prompt": "The {} is carrying jugs of water."}, {"index": 350, "image_id": 2374981, "entity": "truck", "caption": "The taxi is next to the truck.", "question": ["is there the taxi ?", "is there the truck ?"], "prompt": "The taxi is next to the {}."}, {"index": 351, "image_id": 2374981, "entity": "truck", "caption": "the truck is a water truck", "question": ["is there the truck ?", "is there a water truck ?"], "prompt": "the {} is a water {}"}, {"index": 352, "image_id": 2374218, "entity": "truck", "caption": "truck has grey tire", "question": ["is there truck ?", "is there grey tire ?"], "prompt": "{} has grey tire"}, {"index": 353, "image_id": 2374072, "entity": "truck", "caption": "Person standing near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person standing near {}."}, {"index": 354, "image_id": 2373789, "entity": "truck", "caption": "door of truck has a window", "question": ["is there door ?", "is there truck ?", "is there a window ?"], "prompt": "door of {} has a window"}, {"index": 355, "image_id": 2373559, "entity": "truck", "caption": "brick street the truck is on", "question": ["is there brick street ?", "is there the truck ?"], "prompt": "brick street the {} is on"}, {"index": 356, "image_id": 2373441, "entity": "truck", "caption": "Black shadows cast on the red side of a truck", "question": ["are there black shadows ?", "is there the red side ?", "is there a truck ?"], "prompt": "Black shadows cast on the red side of a {}"}, {"index": 357, "image_id": 2373441, "entity": "truck", "caption": "front wheel truck is big", "question": ["is there front wheel truck ?"], "prompt": "front wheel {} is big"}, {"index": 358, "image_id": 2372785, "entity": "truck", "caption": "it is the front tire of the truck", "question": ["is there the front tire ?", "is there the truck ?"], "prompt": "it is the front tire of the {}"}, {"index": 359, "image_id": 2372785, "entity": "truck", "caption": "is it the back tire of the white truck", "question": ["is there the back tire ?", "is there the white truck ?"], "prompt": "is it the back tire of the white {}"}, {"index": 360, "image_id": 2372785, "entity": "truck", "caption": "a person is sitting in the white truck", "question": ["is there a person ?", "is there the white truck ?"], "prompt": "a person is sitting in the white {}"}, {"index": 361, "image_id": 2372785, "entity": "truck", "caption": "door handle on delivery truck", "question": ["is there door ?", "is there delivery truck ?"], "prompt": "door handle on delivery {}"}, {"index": 362, "image_id": 2372670, "entity": "truck", "caption": "green pick up next to mack truck on the left", "question": ["is there mack truck ?"], "prompt": "green pick up next to mack {} on the left"}, {"index": 363, "image_id": 2372645, "entity": "truck", "caption": "a garbage can sitting next to a truck", "question": ["is there a garbage ?", "is there a truck ?"], "prompt": "a garbage can sitting next to a {}"}, {"index": 364, "image_id": 2372645, "entity": "truck", "caption": "Doll is in top of the truck.", "question": ["is there doll ?", "is there top ?", "is there the truck ?"], "prompt": "Doll is in top of the {}."}, {"index": 365, "image_id": 2372493, "entity": "truck", "caption": "dog is resting in shade of truck", "question": ["is there dog ?", "is there shade ?", "is there truck ?"], "prompt": "dog is resting in shade of {}"}, {"index": 366, "image_id": 2372487, "entity": "truck", "caption": "ford is in the grill of truck", "question": ["is there the grill ?", "is there truck ?"], "prompt": "ford is in the grill of {}"}, {"index": 367, "image_id": 2372487, "entity": "truck", "caption": "hood is black on the truck", "question": ["is there hood ?", "is there the truck ?"], "prompt": "hood is black on the {}"}, {"index": 368, "image_id": 2372487, "entity": "truck", "caption": "blue auto maker sign behind truck", "question": ["is there blue auto maker ?", "is there truck ?"], "prompt": "blue auto maker sign behind {}"}, {"index": 369, "image_id": 2372400, "entity": "truck", "caption": "Woman sitting on top of a truck", "question": ["is there woman ?", "is there top ?", "is there a truck ?"], "prompt": "Woman sitting on top of a {}"}, {"index": 370, "image_id": 2372385, "entity": "truck", "caption": "Man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "Man driving a {}"}, {"index": 371, "image_id": 2372385, "entity": "truck", "caption": "headlights in front of truck are off", "question": ["are there headlights ?", "is there front ?", "is there truck ?"], "prompt": "headlights in front of {} are off"}, {"index": 372, "image_id": 2372249, "entity": "truck", "caption": "it is the back tire of the truck", "question": ["is there the back tire ?", "is there the truck ?"], "prompt": "it is the back tire of the {}"}, {"index": 373, "image_id": 2372249, "entity": "truck", "caption": "it is the front head light of the truck", "question": ["is there the front head light ?", "is there the truck ?"], "prompt": "it is the front head light of the {}"}, {"index": 374, "image_id": 2372249, "entity": "truck", "caption": "it is the windshield of the truck", "question": ["is there the windshield ?", "is there the truck ?"], "prompt": "it is the windshield of the {}"}, {"index": 375, "image_id": 2372238, "entity": "truck", "caption": "A big truck is sitting in a parking lot.", "question": ["is there a big truck ?", "is there a parking lot ?"], "prompt": "A big {} is sitting in a parking lot."}, {"index": 376, "image_id": 2372063, "entity": "truck", "caption": "letters on truck says \"Budweiser\"", "question": ["are there letters ?", "is there truck ?", "is there budweiser ?"], "prompt": "letters on {} says \"Budweiser\""}, {"index": 377, "image_id": 2371995, "entity": "truck", "caption": "letter painted on truck", "question": ["is there letter ?", "is there truck ?"], "prompt": "letter painted on {}"}, {"index": 378, "image_id": 2371903, "entity": "truck", "caption": "stars are on the truck", "question": ["are there stars ?", "is there the truck ?"], "prompt": "stars are on the {}"}, {"index": 379, "image_id": 2371903, "entity": "truck", "caption": "USA painted on a truck", "question": ["is there a truck ?"], "prompt": "USA painted on a {}"}, {"index": 380, "image_id": 2371766, "entity": "truck", "caption": "this is the trucks windshield ", "question": ["are there the trucks ?"], "prompt": "this is the {}s windshield "}, {"index": 381, "image_id": 2371766, "entity": "truck", "caption": "truck window is open", "question": ["is there truck window ?"], "prompt": "{} window is open"}, {"index": 382, "image_id": 2371022, "entity": "truck", "caption": "a red truck parked", "question": ["is there a red truck ?"], "prompt": "a red {} parked"}, {"index": 383, "image_id": 2371022, "entity": "truck", "caption": "Tire splash guard of truck", "question": ["is there tire splash guard ?", "is there truck ?"], "prompt": "Tire splash guard of {}"}, {"index": 384, "image_id": 2369895, "entity": "truck", "caption": "The tire of the truck is black ", "question": ["is there the tire ?", "is there the truck ?"], "prompt": "The tire of the {} is black "}, {"index": 385, "image_id": 2369837, "entity": "truck", "caption": "A truck is on the street.", "question": ["is there a truck ?", "is there the street ?"], "prompt": "A {} is on the street."}, {"index": 386, "image_id": 2369837, "entity": "truck", "caption": "A canopy drapes over the truck.", "question": ["is there a canopy ?", "is there the truck ?"], "prompt": "A canopy drapes over the {}."}, {"index": 387, "image_id": 2369837, "entity": "truck", "caption": "The truck is missing the hood.", "question": ["is there the truck ?", "is there the hood ?"], "prompt": "The {} is missing the hood."}, {"index": 388, "image_id": 2369288, "entity": "truck", "caption": "bear is on truck bed", "question": ["is there truck bed ?"], "prompt": "bear is on {} bed"}, {"index": 389, "image_id": 2369089, "entity": "truck", "caption": "silver door handle on truck", "question": ["is there silver door ?", "is there truck ?"], "prompt": "silver door handle on {}"}, {"index": 390, "image_id": 2368262, "entity": "truck", "caption": "this truck has a backdoor", "question": ["is there this truck ?", "is there a backdoor ?"], "prompt": "this {} has a backdoor"}, {"index": 391, "image_id": 2368262, "entity": "truck", "caption": "the rear door handle to the truck is rusting", "question": ["is there the rear door ?", "is there the truck ?"], "prompt": "the rear door handle to the {} is rusting"}, {"index": 392, "image_id": 2368262, "entity": "truck", "caption": "latches are on the truck rear door", "question": ["are there latches ?", "is there the truck rear door ?"], "prompt": "latches are on the {} rear door"}, {"index": 393, "image_id": 2368262, "entity": "truck", "caption": "writing is visible on the side of the truck", "question": ["is there writing ?", "is there the side ?", "is there the truck ?"], "prompt": "writing is visible on the side of the {}"}, {"index": 394, "image_id": 2368262, "entity": "truck", "caption": "the side door of the truck has windows", "question": ["is there the side door ?", "is there the truck ?", "are there windows ?"], "prompt": "the side door of the {} has windows"}, {"index": 395, "image_id": 2368262, "entity": "truck", "caption": "Trees in front of truck have no leaves.", "question": ["are there trees ?", "is there front ?", "is there truck ?", "are there no leaves ?"], "prompt": "Trees in front of {} have no leaves."}, {"index": 396, "image_id": 2367654, "entity": "truck", "caption": "the trucks back license plate ", "question": ["are there the trucks ?", "is there license plate ?"], "prompt": "the {}s back license plate "}, {"index": 397, "image_id": 2367654, "entity": "truck", "caption": "truck is hauling circular objects", "question": ["is there truck ?", "are there circular objects ?"], "prompt": "{} is hauling circular objects"}, {"index": 398, "image_id": 2367654, "entity": "truck", "caption": "The truck has ten tubes.", "question": ["is there the truck ?", "are there ten tubes ?"], "prompt": "The {} has ten tubes."}, {"index": 399, "image_id": 2367654, "entity": "truck", "caption": "The truck has six red ligths.", "question": ["is there the truck ?", "are there six red ligths ?"], "prompt": "The {} has six red ligths."}, {"index": 400, "image_id": 2367556, "entity": "truck", "caption": "truck has red tail light", "question": ["is there truck ?", "is there red tail light ?"], "prompt": "{} has red tail light"}, {"index": 401, "image_id": 2367108, "entity": "truck", "caption": "the truck has words on it", "question": ["is there the truck ?", "are there words ?"], "prompt": "the {} has words on it"}, {"index": 402, "image_id": 2366931, "entity": "truck", "caption": "car door handle on truck", "question": ["is there car door ?", "is there truck ?"], "prompt": "car door handle on {}"}, {"index": 403, "image_id": 2366645, "entity": "truck", "caption": "A horse int he bed of a truck", "question": ["is there a truck ?"], "prompt": "A horse int he bed of a {}"}, {"index": 404, "image_id": 2366645, "entity": "truck", "caption": "the white wall rims on the truck tire", "question": ["are there the white wall rims ?", "is there the truck tire ?"], "prompt": "the white wall rims on the {} tire"}, {"index": 405, "image_id": 2366233, "entity": "truck", "caption": "A gray sedan parked very closely in front of the truck", "question": ["is there a gray sedan ?", "is there front ?", "is there the truck ?"], "prompt": "A gray sedan parked very closely in front of the {}"}, {"index": 406, "image_id": 2366156, "entity": "truck", "caption": "Horse standing next to a red truck", "question": ["is there horse ?", "is there a red truck ?"], "prompt": "Horse standing next to a red {}"}, {"index": 407, "image_id": 2365951, "entity": "truck", "caption": "The truck has lights on it's roof", "question": ["is there the truck ?", "are there lights ?", "is there it's roof ?"], "prompt": "The {} has lights on it's roof"}, {"index": 408, "image_id": 2365951, "entity": "truck", "caption": "red numbers painted on a truck", "question": ["are there red numbers ?", "is there a truck ?"], "prompt": "red numbers painted on a {}"}, {"index": 409, "image_id": 2365951, "entity": "truck", "caption": "The concrete truck is the color yellow ", "question": ["is there the concrete truck ?"], "prompt": "The concrete {} is the color yellow "}, {"index": 410, "image_id": 2365951, "entity": "truck", "caption": "This is a yellow truck", "question": ["is there a yellow truck ?"], "prompt": "This is a yellow {}"}, {"index": 411, "image_id": 2365691, "entity": "truck", "caption": "sideways spare tire mounted under the truck", "question": ["is there spare tire ?", "is there the truck ?"], "prompt": "sideways spare tire mounted under the {}"}, {"index": 412, "image_id": 2365570, "entity": "truck", "caption": "The cab of the truck is red", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "The cab of the {} is red"}, {"index": 413, "image_id": 2365570, "entity": "truck", "caption": "The dumping part of the truck is yellow", "question": ["is there the dumping part ?", "is there the truck ?"], "prompt": "The dumping part of the {} is yellow"}, {"index": 414, "image_id": 2365570, "entity": "truck", "caption": "This truck has gone through a lot of dirt", "question": ["is there this truck ?", "is there a lot ?", "is there dirt ?"], "prompt": "This {} has gone through a lot of dirt"}, {"index": 415, "image_id": 2365252, "entity": "truck", "caption": "man with long hair stands beside truck cab", "question": ["is there man ?", "is there long hair ?", "is there truck cab ?"], "prompt": "man with long hair stands beside {} cab"}, {"index": 416, "image_id": 2365252, "entity": "truck", "caption": "truck's front turn signal", "question": ["is there truck's front turn ?"], "prompt": "{}'s front turn signal"}, {"index": 417, "image_id": 2364632, "entity": "truck", "caption": "the truck's cab is blue", "question": ["is there the truck's cab ?"], "prompt": "the {}'s cab is blue"}, {"index": 418, "image_id": 2364512, "entity": "truck", "caption": "Top of the truck is white and green in color", "question": ["is there top ?", "is there the truck ?", "is there color ?"], "prompt": "Top of the {} is white and green in color"}, {"index": 419, "image_id": 2363920, "entity": "truck", "caption": "man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man driving a {}"}, {"index": 420, "image_id": 2362822, "entity": "truck", "caption": "gray ram sniffing a truck", "question": ["is there a truck ?"], "prompt": "gray ram sniffing a {}"}, {"index": 421, "image_id": 2362058, "entity": "truck", "caption": "it is a ladder on the side of the truck", "question": ["is there a ladder ?", "is there the side ?", "is there the truck ?"], "prompt": "it is a ladder on the side of the {}"}, {"index": 422, "image_id": 2362058, "entity": "truck", "caption": "it is the headlight of the truck", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "it is the headlight of the {}"}, {"index": 423, "image_id": 2361362, "entity": "truck", "caption": "garbage man running behing garabge truck", "question": ["is there garbage man ?", "is there behing garabge truck ?"], "prompt": "garbage man running behing garabge {}"}, {"index": 424, "image_id": 2361169, "entity": "truck", "caption": "cartoon character painted on truck", "question": ["is there cartoon character ?", "is there truck ?"], "prompt": "cartoon character painted on {}"}, {"index": 425, "image_id": 2360580, "entity": "truck", "caption": "The truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "The {} is on the road"}, {"index": 426, "image_id": 2360438, "entity": "truck", "caption": "a sign that says Signal on the side of the truck", "question": ["is there a sign ?", "is there signal ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign that says Signal on the side of the {}"}, {"index": 427, "image_id": 2360362, "entity": "truck", "caption": "Two people walking toward a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "Two people walking toward a {}"}, {"index": 428, "image_id": 2360185, "entity": "truck", "caption": "Man reflected in the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man reflected in the {}."}, {"index": 429, "image_id": 2359911, "entity": "truck", "caption": "Plymouth written on the truck", "question": ["is there the truck ?"], "prompt": "Plymouth written on the {}"}, {"index": 430, "image_id": 2359717, "entity": "truck", "caption": "united states flag on truck", "question": ["is there truck ?"], "prompt": "united states flag on {}"}, {"index": 431, "image_id": 2359708, "entity": "truck", "caption": "a firetruck headlight ", "question": ["is there a firetruck headlight ?"], "prompt": "a fire{} headlight "}, {"index": 432, "image_id": 2359307, "entity": "truck", "caption": "the truck is in the Forrest", "question": ["is there the truck ?", "is there the forrest ?"], "prompt": "the {} is in the Forrest"}, {"index": 433, "image_id": 2357815, "entity": "truck", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white car is behind the {}"}, {"index": 434, "image_id": 2357815, "entity": "truck", "caption": "A tarp is over the back of the truck", "question": ["is there a tarp ?", "is there the back ?", "is there the truck ?"], "prompt": "A tarp is over the back of the {}"}, {"index": 435, "image_id": 2357227, "entity": "truck", "caption": "white numbers are on the truck", "question": ["are there white numbers ?", "is there the truck ?"], "prompt": "white numbers are on the {}"}, {"index": 436, "image_id": 2357227, "entity": "truck", "caption": "a man straps the truck down", "question": ["is there a man ?", "is there the truck ?"], "prompt": "a man straps the {} down"}, {"index": 437, "image_id": 2357081, "entity": "truck", "caption": "The left front headlight on the truck", "question": ["is there the left front headlight ?", "is there the truck ?"], "prompt": "The left front headlight on the {}"}, {"index": 438, "image_id": 2356932, "entity": "truck", "caption": "The truck is casting a shadow. ", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow. "}, {"index": 439, "image_id": 2356932, "entity": "truck", "caption": "Person taking a picture of the truck. ", "question": ["is there person ?", "is there a picture ?", "is there the truck ?"], "prompt": "Person taking a picture of the {}. "}, {"index": 440, "image_id": 2356921, "entity": "truck", "caption": "GREAT TASTE written on the side of a truck. ", "question": ["is there great taste ?", "is there the side ?", "is there a truck ?"], "prompt": "GREAT TASTE written on the side of a {}. "}, {"index": 441, "image_id": 2355892, "entity": "truck", "caption": "it is the letter C on the truck ", "question": ["is there the letter ?", "is there c ?", "is there the truck ?"], "prompt": "it is the letter C on the {} "}, {"index": 442, "image_id": 2355892, "entity": "truck", "caption": "it is the letter O on the truck", "question": ["is there the letter ?", "is there o ?", "is there the truck ?"], "prompt": "it is the letter O on the {}"}, {"index": 443, "image_id": 2355892, "entity": "truck", "caption": "it is a light on the truck", "question": ["is there a light ?", "is there the truck ?"], "prompt": "it is a light on the {}"}, {"index": 444, "image_id": 2355892, "entity": "truck", "caption": "the truck has a black wheel", "question": ["is there the truck ?", "is there a black wheel ?"], "prompt": "the {} has a black wheel"}, {"index": 445, "image_id": 2355892, "entity": "truck", "caption": "the truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 446, "image_id": 2355892, "entity": "truck", "caption": "The truck has lights on it.", "question": ["is there the truck ?", "are there lights ?"], "prompt": "The {} has lights on it."}, {"index": 447, "image_id": 2355892, "entity": "truck", "caption": "The truck says coco", "question": ["is there the truck ?", "is there coco ?"], "prompt": "The {} says coco"}, {"index": 448, "image_id": 2355892, "entity": "truck", "caption": "The lettering is white on the truck", "question": ["is there the lettering ?", "is there the truck ?"], "prompt": "The lettering is white on the {}"}, {"index": 449, "image_id": 2355892, "entity": "truck", "caption": "The truck has tires.", "question": ["is there the truck ?", "are there tires ?"], "prompt": "The {} has tires."}, {"index": 450, "image_id": 2355741, "entity": "truck", "caption": "Woman standing next to the truck", "question": ["is there woman ?", "is there the truck ?"], "prompt": "Woman standing next to the {}"}, {"index": 451, "image_id": 2354584, "entity": "truck", "caption": "There is a symbol on this truck that says Fire Dept.", "question": ["is there a symbol ?", "is there this truck ?", "is there fire dept ?"], "prompt": "There is a symbol on this {} that says Fire Dept."}, {"index": 452, "image_id": 2354302, "entity": "truck", "caption": "rust covered truck shows it has some age", "question": ["is there rust covered truck ?", "is there some age ?"], "prompt": "rust covered {} shows it has some age"}, {"index": 453, "image_id": 2354302, "entity": "truck", "caption": "white hydrolic machinery on truck shows unprotected by weather", "question": ["is there white hydrolic machinery ?", "are there truck shows ?", "is there weather ?"], "prompt": "white hydrolic machinery on {} shows unprotected by weather"}, {"index": 454, "image_id": 2354302, "entity": "truck", "caption": "windshield on truck looks clean", "question": ["is there windshield ?", "is there truck ?"], "prompt": "windshield on {} looks clean"}, {"index": 455, "image_id": 2353824, "entity": "truck", "caption": "truck has four lights", "question": ["is there truck ?", "are there four lights ?"], "prompt": "{} has four lights"}, {"index": 456, "image_id": 2353824, "entity": "truck", "caption": "truck lights are lit", "question": ["are there truck lights ?"], "prompt": "{} lights are lit"}, {"index": 457, "image_id": 2353824, "entity": "truck", "caption": "truck has yellow arm", "question": ["is there truck ?", "is there yellow arm ?"], "prompt": "{} has yellow arm"}, {"index": 458, "image_id": 2353824, "entity": "truck", "caption": "Orange lit up light above truck.", "question": ["is there light ?", "is there truck ?"], "prompt": "Orange lit up light above {}."}, {"index": 459, "image_id": 2353075, "entity": "truck", "caption": "PX is on the top of the truck", "question": ["is there px ?", "is there the top ?", "is there the truck ?"], "prompt": "PX is on the top of the {}"}, {"index": 460, "image_id": 2353075, "entity": "truck", "caption": "mercedes emblem on truck ", "question": ["are there mercedes ?", "is there truck ?"], "prompt": "mercedes emblem on {} "}, {"index": 461, "image_id": 2352665, "entity": "truck", "caption": "door handle on white truck", "question": ["is there door ?", "is there white truck ?"], "prompt": "door handle on white {}"}, {"index": 462, "image_id": 2352260, "entity": "truck", "caption": "box spring on it's side in the back of a truck", "question": ["is there box spring ?", "is there it's side ?", "is there the back ?", "is there a truck ?"], "prompt": "box spring on it's side in the back of a {}"}, {"index": 463, "image_id": 2351947, "entity": "truck", "caption": "front left wheel of the fire truck", "question": ["is there front left wheel ?", "is there the fire truck ?"], "prompt": "front left wheel of the fire {}"}, {"index": 464, "image_id": 2351810, "entity": "truck", "caption": "man standing in back of windowless truck", "question": ["is there man ?", "is there windowless truck ?"], "prompt": "man standing in back of windowless {}"}, {"index": 465, "image_id": 2351290, "entity": "truck", "caption": "a striped blanket is on a truck", "question": ["is there a striped blanket ?", "is there a truck ?"], "prompt": "a striped blanket is on a {}"}, {"index": 466, "image_id": 2351290, "entity": "truck", "caption": "the wall behind the truck is silver", "question": ["is there the wall ?", "is there the truck ?"], "prompt": "the wall behind the {} is silver"}, {"index": 467, "image_id": 2351178, "entity": "truck", "caption": "The truck is carrying a surfboard", "question": ["is there the truck ?", "is there a surfboard ?"], "prompt": "The {} is carrying a surfboard"}, {"index": 468, "image_id": 2351178, "entity": "truck", "caption": "life saving device on truck", "question": ["is there device ?", "is there truck ?"], "prompt": "life saving device on {}"}, {"index": 469, "image_id": 2351178, "entity": "truck", "caption": "The left headlight on the truck.", "question": ["is there the left headlight ?", "is there the truck ?"], "prompt": "The left headlight on the {}."}, {"index": 470, "image_id": 2351131, "entity": "truck", "caption": "Trailer hitch on back of truck", "question": ["is there trailer hitch ?", "is there back ?", "is there truck ?"], "prompt": "Trailer hitch on back of {}"}, {"index": 471, "image_id": 2349773, "entity": "truck", "caption": "Two posts are near a truck.", "question": ["are there two posts ?", "is there a truck ?"], "prompt": "Two posts are near a {}."}, {"index": 472, "image_id": 2349620, "entity": "truck", "caption": "a metal pole is by the truck", "question": ["is there a metal pole ?", "is there the truck ?"], "prompt": "a metal pole is by the {}"}, {"index": 473, "image_id": 2349620, "entity": "truck", "caption": "the truck has a rearview mirror", "question": ["is there the truck ?", "is there a rearview mirror ?"], "prompt": "the {} has a rearview mirror"}, {"index": 474, "image_id": 2348945, "entity": "truck", "caption": "A large tube is on a truck.", "question": ["is there a large tube ?", "is there a truck ?"], "prompt": "A large tube is on a {}."}, {"index": 475, "image_id": 2348945, "entity": "truck", "caption": "A grey box is on a truck.", "question": ["is there a truck ?"], "prompt": "A grey box is on a {}."}, {"index": 476, "image_id": 2348945, "entity": "truck", "caption": "A man is standing next to a truck.", "question": ["is there a man ?", "is there a truck ?"], "prompt": "A man is standing next to a {}."}, {"index": 477, "image_id": 2348933, "entity": "truck", "caption": "logo painted on a truck", "question": ["is there logo ?", "is there a truck ?"], "prompt": "logo painted on a {}"}, {"index": 478, "image_id": 2348742, "entity": "truck", "caption": "cows hauled on top of truck", "question": ["are there cows ?", "is there top ?", "is there truck ?"], "prompt": "cows hauled on top of {}"}, {"index": 479, "image_id": 2348742, "entity": "truck", "caption": "sign in truck says \"mitsubishi\"", "question": ["is there sign ?", "is there truck ?"], "prompt": "sign in {} says \"mitsubishi\""}, {"index": 480, "image_id": 2348742, "entity": "truck", "caption": "windy road the truck is driving on ", "question": ["is there windy road ?", "is there the truck ?"], "prompt": "windy road the {} is driving on "}, {"index": 481, "image_id": 2348526, "entity": "truck", "caption": "machinery is on the truck", "question": ["is there machinery ?", "is there the truck ?"], "prompt": "machinery is on the {}"}, {"index": 482, "image_id": 2348526, "entity": "truck", "caption": "Back door is open on truck", "question": ["is there back door ?", "is there truck ?"], "prompt": "Back door is open on {}"}, {"index": 483, "image_id": 2347761, "entity": "truck", "caption": "a driver is inside the truck cab", "question": ["is there a driver ?", "is there the truck cab ?"], "prompt": "a driver is inside the {} cab"}, {"index": 484, "image_id": 2347750, "entity": "truck", "caption": "A person is by the truck", "question": ["is there a person ?", "is there the truck ?"], "prompt": "A person is by the {}"}, {"index": 485, "image_id": 2347690, "entity": "truck", "caption": "4x4 painted on the side of truck", "question": ["is there the side ?", "is there truck ?"], "prompt": "4x4 painted on the side of {}"}, {"index": 486, "image_id": 2347690, "entity": "truck", "caption": "tail gate is down on truck", "question": ["is there tail gate ?", "is there truck ?"], "prompt": "tail gate is down on {}"}, {"index": 487, "image_id": 2347487, "entity": "truck", "caption": "Rear left wheel of the truck", "question": ["is there rear left wheel ?", "is there the truck ?"], "prompt": "Rear left wheel of the {}"}, {"index": 488, "image_id": 2347487, "entity": "truck", "caption": "Front left wheel of the truck", "question": ["is there front left wheel ?", "is there the truck ?"], "prompt": "Front left wheel of the {}"}, {"index": 489, "image_id": 2347377, "entity": "truck", "caption": "Person sitting in a dark two tone truck", "question": ["is there person ?", "is there a dark two tone truck ?"], "prompt": "Person sitting in a dark two tone {}"}, {"index": 490, "image_id": 2346986, "entity": "truck", "caption": "the truck has a picture at the door", "question": ["is there the truck ?", "is there a picture ?", "is there the door ?"], "prompt": "the {} has a picture at the door"}, {"index": 491, "image_id": 2346214, "entity": "truck", "caption": "guy trying to get stuff out of a truck", "question": ["is there guy ?", "is there stuff ?", "is there a truck ?"], "prompt": "guy trying to get stuff out of a {}"}, {"index": 492, "image_id": 2345894, "entity": "truck", "caption": "the truck has No2 painted on it", "question": ["is there the truck ?", "are there no2 ?"], "prompt": "the {} has No2 painted on it"}, {"index": 493, "image_id": 2345381, "entity": "truck", "caption": "people are standing by the food truck", "question": ["are there people ?", "is there the food truck ?"], "prompt": "people are standing by the food {}"}, {"index": 494, "image_id": 2345381, "entity": "truck", "caption": "the food truck has red lights on it", "question": ["is there the food truck ?", "are there red lights ?"], "prompt": "the food {} has red lights on it"}, {"index": 495, "image_id": 2345314, "entity": "truck", "caption": "Yellow truck has hood opened", "question": ["is there yellow truck ?", "is there hood ?"], "prompt": "Yellow {} has hood opened"}, {"index": 496, "image_id": 2345314, "entity": "truck", "caption": "Pickup truck has hood opened", "question": ["is there pickup truck ?", "is there hood ?"], "prompt": "Pickup {} has hood opened"}, {"index": 497, "image_id": 2345212, "entity": "truck", "caption": "long carpets rolls at back of truck", "question": ["are there long carpets rolls ?", "is there back ?", "is there truck ?"], "prompt": "long carpets rolls at back of {}"}, {"index": 498, "image_id": 2345212, "entity": "truck", "caption": "gray car behing the truck", "question": ["is there gray car ?", "is there the truck ?"], "prompt": "gray car behing the {}"}, {"index": 499, "image_id": 2345212, "entity": "truck", "caption": "household furnishings strapped onto a truck bed", "question": ["are there household furnishings ?", "is there a truck bed ?"], "prompt": "household furnishings strapped onto a {} bed"}, {"index": 500, "image_id": 2345032, "entity": "truck", "caption": "The word SCANIA on the front of a truck. ", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there a truck ?"], "prompt": "The word SCANIA on the front of a {}. "}, {"index": 501, "image_id": 2344888, "entity": "truck", "caption": "antique truck stuck in the mud", "question": ["is there antique truck ?", "is there the mud ?"], "prompt": "antique {} stuck in the mud"}, {"index": 502, "image_id": 2343592, "entity": "truck", "caption": "Sign on truck is Avitat", "question": ["is there sign ?", "is there truck ?"], "prompt": "Sign on {} is Avitat"}, {"index": 503, "image_id": 2342746, "entity": "truck", "caption": "a cheverolet emblem is on the truck", "question": ["is there a cheverolet emblem ?", "is there the truck ?"], "prompt": "a cheverolet emblem is on the {}"}, {"index": 504, "image_id": 2342137, "entity": "truck", "caption": "vertical door handle on delivery truck", "question": ["is there vertical door ?", "is there delivery truck ?"], "prompt": "vertical door handle on delivery {}"}, {"index": 505, "image_id": 2341556, "entity": "truck", "caption": "a truck is outside", "question": ["is there a truck ?"], "prompt": "a {} is outside"}, {"index": 506, "image_id": 2341556, "entity": "truck", "caption": "the truck has a brand name painted on ", "question": ["is there the truck ?", "is there a brand name ?"], "prompt": "the {} has a brand name painted on "}, {"index": 507, "image_id": 2341337, "entity": "truck", "caption": "gravel is on the train trucks ", "question": ["is there gravel ?", "are there the train trucks ?"], "prompt": "gravel is on the train {}s "}, {"index": 508, "image_id": 2341077, "entity": "truck", "caption": "two people standing behind a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "two people standing behind a {}"}, {"index": 509, "image_id": 2340746, "entity": "truck", "caption": "truck has black wheels", "question": ["is there truck ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 510, "image_id": 2340746, "entity": "truck", "caption": "man shoving an animal into a truck", "question": ["is there man ?", "is there an animal ?", "is there a truck ?"], "prompt": "man shoving an animal into a {}"}, {"index": 511, "image_id": 2340595, "entity": "truck", "caption": "a wheel turned under the truck", "question": ["is there a wheel ?", "is there the truck ?"], "prompt": "a wheel turned under the {}"}, {"index": 512, "image_id": 2340429, "entity": "truck", "caption": "Person walking near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking near {}."}, {"index": 513, "image_id": 2340353, "entity": "truck", "caption": "a black shirt draped over a truck", "question": ["is there a black shirt ?", "is there a truck ?"], "prompt": "a black shirt draped over a {}"}, {"index": 514, "image_id": 2340353, "entity": "truck", "caption": "Tee shirt draped on side of truck", "question": ["is there tee shirt ?", "is there side ?", "is there truck ?"], "prompt": "Tee shirt draped on side of {}"}, {"index": 515, "image_id": 2339539, "entity": "truck", "caption": "person driving the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "person driving the {}"}, {"index": 516, "image_id": 2339539, "entity": "truck", "caption": "the truck has a black trailer bed ", "question": ["is there the truck ?", "is there a black trailer bed ?"], "prompt": "the {} has a black trailer bed "}, {"index": 517, "image_id": 2339539, "entity": "truck", "caption": "he is driving the truck ", "question": ["is there the truck ?"], "prompt": "he is driving the {} "}, {"index": 518, "image_id": 2339412, "entity": "truck", "caption": "The old truck has wood boards on it.", "question": ["is there the old truck ?", "are there wood boards ?"], "prompt": "The old {} has wood boards on it."}, {"index": 519, "image_id": 2339139, "entity": "truck", "caption": "Rear left tire on a tow truck", "question": ["is there rear left tire ?", "is there a tow truck ?"], "prompt": "Rear left tire on a tow {}"}, {"index": 520, "image_id": 2339139, "entity": "truck", "caption": "Front left head light on a truck", "question": ["is there front left head light ?", "is there a truck ?"], "prompt": "Front left head light on a {}"}, {"index": 521, "image_id": 2339139, "entity": "truck", "caption": "The door handle on a truck", "question": ["is there the door ?", "is there a truck ?"], "prompt": "The door handle on a {}"}, {"index": 522, "image_id": 2338619, "entity": "truck", "caption": "the guy is on top of the fire truck ", "question": ["is there the guy ?", "is there top ?", "is there the fire truck ?"], "prompt": "the guy is on top of the fire {} "}, {"index": 523, "image_id": 2337684, "entity": "truck", "caption": "the folgers container under the truck", "question": ["are there the folgers container ?", "is there the truck ?"], "prompt": "the folgers container under the {}"}, {"index": 524, "image_id": 2337628, "entity": "truck", "caption": "the truck is full of dogs", "question": ["is there the truck ?", "are there dogs ?"], "prompt": "the {} is full of dogs"}, {"index": 525, "image_id": 2337628, "entity": "truck", "caption": "the truck has photos of dogs", "question": ["is there the truck ?", "are there photos ?", "are there dogs ?"], "prompt": "the {} has photos of dogs"}, {"index": 526, "image_id": 2337628, "entity": "truck", "caption": "the truck has wheels", "question": ["is there the truck ?", "are there wheels ?"], "prompt": "the {} has wheels"}, {"index": 527, "image_id": 2336350, "entity": "truck", "caption": "the trees are behind the truck", "question": ["are there the trees ?", "is there the truck ?"], "prompt": "the trees are behind the {}"}, {"index": 528, "image_id": 2336187, "entity": "truck", "caption": "The word Mackinnon's on the front of a truck", "question": ["is there the word ?", "is there the front ?", "is there a truck ?"], "prompt": "The word Mackinnon's on the front of a {}"}, {"index": 529, "image_id": 2335976, "entity": "truck", "caption": "back door on truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "back door on {} is open"}, {"index": 530, "image_id": 2335976, "entity": "truck", "caption": "man is walking toward truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is walking toward {}"}, {"index": 531, "image_id": 2335976, "entity": "truck", "caption": "The door of the truck is open.", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door of the {} is open."}, {"index": 532, "image_id": 2335976, "entity": "truck", "caption": "Garbage can by the truck.", "question": ["is there garbage ?", "is there the truck ?"], "prompt": "Garbage can by the {}."}, {"index": 533, "image_id": 2335976, "entity": "truck", "caption": "food truck menu painted on side of truck", "question": ["is there food truck menu ?", "is there side ?", "is there truck ?"], "prompt": "food {} menu painted on side of {}"}, {"index": 534, "image_id": 2335337, "entity": "truck", "caption": "Menu written on side of truck.", "question": ["is there menu ?", "is there side ?", "is there truck ?"], "prompt": "Menu written on side of {}."}, {"index": 535, "image_id": 2335292, "entity": "truck", "caption": "The motorcycle is in front of the truck", "question": ["is there the motorcycle ?", "is there front ?", "is there the truck ?"], "prompt": "The motorcycle is in front of the {}"}, {"index": 536, "image_id": 2335292, "entity": "truck", "caption": "The truck has a cardboard box in the bed", "question": ["is there the truck ?", "is there a cardboard box ?", "is there the bed ?"], "prompt": "The {} has a cardboard box in the bed"}, {"index": 537, "image_id": 2333358, "entity": "truck", "caption": "woman waiting for food at truck window", "question": ["is there woman ?", "is there food ?", "is there truck window ?"], "prompt": "woman waiting for food at {} window"}, {"index": 538, "image_id": 2333358, "entity": "truck", "caption": "a food truck is on the street", "question": ["is there a food truck ?", "is there the street ?"], "prompt": "a food {} is on the street"}, {"index": 539, "image_id": 2333348, "entity": "truck", "caption": "two men standing next to each other in front of truck", "question": ["are there two men ?", "is there front ?", "is there truck ?"], "prompt": "two men standing next to each other in front of {}"}, {"index": 540, "image_id": 2332754, "entity": "truck", "caption": "A wooden pole is behind the truck", "question": ["is there a wooden pole ?", "is there the truck ?"], "prompt": "A wooden pole is behind the {}"}, {"index": 541, "image_id": 2332750, "entity": "truck", "caption": "A fold up chair stands next to the truck", "question": ["is there a fold up chair ?", "is there the truck ?"], "prompt": "A fold up chair stands next to the {}"}, {"index": 542, "image_id": 2331746, "entity": "truck", "caption": "a truck travels in front the beach", "question": ["is there a truck ?", "is there front ?"], "prompt": "a {} travels in front the beach"}, {"index": 543, "image_id": 2331430, "entity": "truck", "caption": "this guy is on the back of the truck", "question": ["is there this guy ?", "is there the back ?", "is there the truck ?"], "prompt": "this guy is on the back of the {}"}, {"index": 544, "image_id": 2330313, "entity": "truck", "caption": "A flap is visible on a truck.", "question": ["is there a flap ?", "is there a truck ?"], "prompt": "A flap is visible on a {}."}, {"index": 545, "image_id": 2329413, "entity": "truck", "caption": "Web URL painted in black letters on white truck", "question": ["is there web url ?", "are there black letters ?", "is there white truck ?"], "prompt": "Web URL painted in black letters on white {}"}, {"index": 546, "image_id": 2328751, "entity": "truck", "caption": "a person is driving the truck ", "question": ["is there a person ?", "is there the truck ?"], "prompt": "a person is driving the {} "}, {"index": 547, "image_id": 2328751, "entity": "truck", "caption": "The truck has a fire extinguisher.", "question": ["is there the truck ?", "is there a fire extinguisher ?"], "prompt": "The {} has a fire extinguisher."}, {"index": 548, "image_id": 2328751, "entity": "truck", "caption": "The truck has a horn.", "question": ["is there the truck ?", "is there a horn ?"], "prompt": "The {} has a horn."}, {"index": 549, "image_id": 2328751, "entity": "truck", "caption": "The horn is on the truck roof.", "question": ["is there the horn ?", "is there the truck roof ?"], "prompt": "The horn is on the {} roof."}, {"index": 550, "image_id": 2328751, "entity": "truck", "caption": "The truck has a white grill.", "question": ["is there the truck ?", "is there a white grill ?"], "prompt": "The {} has a white grill."}, {"index": 551, "image_id": 2328751, "entity": "truck", "caption": "The truck has an orange light.", "question": ["is there the truck ?", "is there an orange light ?"], "prompt": "The {} has an orange light."}, {"index": 552, "image_id": 2328751, "entity": "truck", "caption": "The truck has a headlight.", "question": ["is there the truck ?", "is there a headlight ?"], "prompt": "The {} has a headlight."}, {"index": 553, "image_id": 2328751, "entity": "truck", "caption": "The truck has a big tire.", "question": ["is there the truck ?", "is there a big tire ?"], "prompt": "The {} has a big tire."}, {"index": 554, "image_id": 2327911, "entity": "truck", "caption": "The truck has a black dump bed.", "question": ["is there the truck ?", "is there a black dump bed ?"], "prompt": "The {} has a black dump bed."}, {"index": 555, "image_id": 2327911, "entity": "truck", "caption": "The truck cab has orange lights.", "question": ["is there the truck cab ?", "are there orange lights ?"], "prompt": "The {} cab has orange lights."}, {"index": 556, "image_id": 2327911, "entity": "truck", "caption": "The truck has a tire.", "question": ["is there the truck ?", "is there a tire ?"], "prompt": "The {} has a tire."}, {"index": 557, "image_id": 2325925, "entity": "truck", "caption": "The truck has the number 20 on its side", "question": ["is there the truck ?", "is there the number ?", "is there its side ?"], "prompt": "The {} has the number 20 on its side"}, {"index": 558, "image_id": 2325611, "entity": "truck", "caption": "the truck has white writing", "question": ["is there the truck ?", "is there white writing ?"], "prompt": "the {} has white writing"}, {"index": 559, "image_id": 2324486, "entity": "truck", "caption": "The license plate is on the back of truck", "question": ["is there the license plate ?", "is there the back ?", "is there truck ?"], "prompt": "The license plate is on the back of {}"}, {"index": 560, "image_id": 2324486, "entity": "truck", "caption": "The word DIESEL on back of truck. ", "question": ["is there the word diesel ?", "is there back ?", "is there truck ?"], "prompt": "The word DIESEL on back of {}. "}, {"index": 561, "image_id": 2323321, "entity": "truck", "caption": "the graffiti on the truck is green", "question": ["is there the graffiti ?", "is there the truck ?"], "prompt": "the graffiti on the {} is green"}, {"index": 562, "image_id": 2323321, "entity": "truck", "caption": "the truck is on the street", "question": ["is there the truck ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 563, "image_id": 2323321, "entity": "truck", "caption": "a truck that has graffiti", "question": ["is there a truck ?"], "prompt": "a {} that has graffiti"}, {"index": 564, "image_id": 2323077, "entity": "truck", "caption": "Crane lowering truck onto truck", "question": ["is there truck ?", "is there truck ?"], "prompt": "Crane lowering {} onto {}"}, {"index": 565, "image_id": 2322225, "entity": "truck", "caption": "Mud flaps on a truck.", "question": ["are there mud flaps ?", "is there a truck ?"], "prompt": "Mud flaps on a {}."}, {"index": 566, "image_id": 2322197, "entity": "truck", "caption": "Ford emblem on a truck", "question": ["is there a truck ?"], "prompt": "Ford emblem on a {}"}, {"index": 567, "image_id": 2321380, "entity": "truck", "caption": "tarp covering back of truck", "question": ["is there tarp ?", "is there truck ?"], "prompt": "tarp covering back of {}"}, {"index": 568, "image_id": 2321380, "entity": "truck", "caption": "drivers side door of truck", "question": ["are there drivers ?", "is there door ?", "is there truck ?"], "prompt": "drivers side door of {}"}, {"index": 569, "image_id": 2320291, "entity": "truck", "caption": "man walking in front of red truck", "question": ["is there man ?", "is there front ?", "is there red truck ?"], "prompt": "man walking in front of red {}"}, {"index": 570, "image_id": 2319823, "entity": "truck", "caption": "the light on the truck is on ", "question": ["is there the light ?", "is there the truck ?"], "prompt": "the light on the {} is on "}, {"index": 571, "image_id": 2319676, "entity": "truck", "caption": "The truck has a white cab.", "question": ["is there the truck ?", "is there a white cab ?"], "prompt": "The {} has a white cab."}, {"index": 572, "image_id": 2319676, "entity": "truck", "caption": "The truck has a windshield wiper.", "question": ["is there the truck ?", "is there a windshield wiper ?"], "prompt": "The {} has a windshield wiper."}, {"index": 573, "image_id": 2319676, "entity": "truck", "caption": "The driver of the truck is a man.", "question": ["is there the driver ?", "is there the truck ?", "is there a man ?"], "prompt": "The driver of the {} is a man."}, {"index": 574, "image_id": 2319556, "entity": "truck", "caption": "Realistic strawberries painted on truck.", "question": ["are there realistic strawberries ?", "is there truck ?"], "prompt": "Realistic strawberries painted on {}."}, {"index": 575, "image_id": 2319556, "entity": "truck", "caption": "Realistic blackberries painted on truck", "question": ["are there realistic blackberries ?", "is there truck ?"], "prompt": "Realistic blackberries painted on {}"}, {"index": 576, "image_id": 2319556, "entity": "truck", "caption": "Very nice shades of purple painted on truck.", "question": ["are there very nice shades ?", "is there purple ?", "is there truck ?"], "prompt": "Very nice shades of purple painted on {}."}, {"index": 577, "image_id": 2319540, "entity": "truck", "caption": "wagon behind pick up truck", "question": ["is there wagon ?", "is there truck ?"], "prompt": "wagon behind pick up {}"}, {"index": 578, "image_id": 2319280, "entity": "truck", "caption": "PErson sitting in the cab of a truck", "question": ["is there person ?", "is there the cab ?", "is there a truck ?"], "prompt": "PErson sitting in the cab of a {}"}, {"index": 579, "image_id": 2319280, "entity": "truck", "caption": "three people part way under the truck", "question": ["are there three people ?", "is there the truck ?"], "prompt": "three people part way under the {}"}, {"index": 580, "image_id": 2318538, "entity": "truck", "caption": "the dirt piled in the bed of the truck", "question": ["is there the dirt ?", "is there the bed ?", "is there the truck ?"], "prompt": "the dirt piled in the bed of the {}"}, {"index": 581, "image_id": 2317984, "entity": "truck", "caption": "The truck has two plows on it.", "question": ["is there the truck ?", "are there two plows ?"], "prompt": "The {} has two plows on it."}, {"index": 582, "image_id": 2317934, "entity": "truck", "caption": "the company that built the firetruck", "question": ["is there the company ?", "is there the firetruck ?"], "prompt": "the company that built the fire{}"}, {"index": 583, "image_id": 2317726, "entity": "truck", "caption": "the people are climbing the truck", "question": ["are there the people ?", "is there the truck ?"], "prompt": "the people are climbing the {}"}, {"index": 584, "image_id": 2317513, "entity": "truck", "caption": "an old truck sits in a yard", "question": ["is there an old truck ?", "is there a yard ?"], "prompt": "an old {} sits in a yard"}, {"index": 585, "image_id": 2317513, "entity": "truck", "caption": "Grill work on front of truck.", "question": ["is there grill work ?", "is there front ?", "is there truck ?"], "prompt": "Grill work on front of {}."}, {"index": 586, "image_id": 2317513, "entity": "truck", "caption": "Old fashion headlight on front of truck.", "question": ["is there old fashion headlight ?", "is there front ?", "is there truck ?"], "prompt": "Old fashion headlight on front of {}."}, {"index": 587, "image_id": 2317513, "entity": "truck", "caption": "Front right tire flat on truck.", "question": ["is there right tire ?", "is there truck ?"], "prompt": "Front right tire flat on {}."}, {"index": 588, "image_id": 2317240, "entity": "truck", "caption": "White and black mud flaps on back of truck.", "question": ["are there white and black mud flaps ?", "is there back ?", "is there truck ?"], "prompt": "White and black mud flaps on back of {}."}, {"index": 589, "image_id": 2317240, "entity": "truck", "caption": "large black tire mounted behind truck cab", "question": ["is there large black tire ?", "is there truck cab ?"], "prompt": "large black tire mounted behind {} cab"}, {"index": 590, "image_id": 2316849, "entity": "truck", "caption": "he is leaning on the truck ", "question": ["is there the truck ?"], "prompt": "he is leaning on the {} "}, {"index": 591, "image_id": 2316849, "entity": "truck", "caption": "the truck grill is black", "question": ["is there the truck grill ?"], "prompt": "the {} grill is black"}, {"index": 592, "image_id": 2316663, "entity": "truck", "caption": "cord wrapped over items in truck and secured on sides", "question": ["is there cord ?", "are there items ?", "is there truck ?", "are there sides ?"], "prompt": "cord wrapped over items in {} and secured on sides"}, {"index": 593, "image_id": 2316663, "entity": "truck", "caption": "Trailer hitch on a truck", "question": ["is there trailer hitch ?", "is there a truck ?"], "prompt": "Trailer hitch on a {}"}, {"index": 594, "image_id": 2316538, "entity": "truck", "caption": "a rack mounted on top of the truck cab", "question": ["is there a rack ?", "is there top ?", "is there the truck cab ?"], "prompt": "a rack mounted on top of the {} cab"}, {"index": 595, "image_id": 2316538, "entity": "truck", "caption": "truck sits on a pockmarked street", "question": ["is there truck ?", "is there a pockmarked street ?"], "prompt": "{} sits on a pockmarked street"}, {"index": 596, "image_id": 2315863, "entity": "truck", "caption": "door handle on the truck", "question": ["is there door ?", "is there the truck ?"], "prompt": "door handle on the {}"}, {"index": 597, "image_id": 2315632, "entity": "truck", "caption": "a woman sititn gon truck", "question": ["is there a woman sititn ?", "is there truck ?"], "prompt": "a woman sititn gon {}"}, {"index": 598, "image_id": 2315484, "entity": "truck", "caption": "chrome plated grill on the front of a truck", "question": ["is there chrome plated grill ?", "is there the front ?", "is there a truck ?"], "prompt": "chrome plated grill on the front of a {}"}, {"index": 599, "image_id": 2414401, "entity": "truck", "caption": "the truck has a red brakelight", "question": ["is there the truck ?", "is there a red brakelight ?"], "prompt": "the {} has a red brakelight"}, {"index": 600, "image_id": 2414401, "entity": "truck", "caption": "the truck is carrying a ladder ", "question": ["is there the truck ?", "is there a ladder ?"], "prompt": "the {} is carrying a ladder "}, {"index": 601, "image_id": 2414213, "entity": "truck", "caption": "the door handle on the truck is silver", "question": ["is there the door ?", "is there the truck ?"], "prompt": "the door handle on the {} is silver"}, {"index": 602, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver mirror", "question": ["is there the blue truck ?", "is there a silver mirror ?"], "prompt": "the blue {} has a silver mirror"}, {"index": 603, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver stripe", "question": ["is there the blue truck ?", "is there a silver stripe ?"], "prompt": "the blue {} has a silver stripe"}, {"index": 604, "image_id": 2414213, "entity": "truck", "caption": "a dog is looking out truck window", "question": ["is there a dog ?"], "prompt": "a dog is looking out {} window"}, {"index": 605, "image_id": 2414213, "entity": "truck", "caption": "Silverado emblem on the side of the truck", "question": ["is there silverado emblem ?", "is there the side ?", "is there the truck ?"], "prompt": "Silverado emblem on the side of the {}"}, {"index": 606, "image_id": 2414213, "entity": "truck", "caption": "Door handle on the side of the truck", "question": ["is there door ?", "is there the side ?", "is there the truck ?"], "prompt": "Door handle on the side of the {}"}, {"index": 607, "image_id": 2414197, "entity": "truck", "caption": "The truck carries equipment. ", "question": ["is there the truck ?", "is there equipment ?"], "prompt": "The {} carries equipment. "}, {"index": 608, "image_id": 2414197, "entity": "truck", "caption": "The truck carries a hose.", "question": ["is there the truck ?", "is there a hose ?"], "prompt": "The {} carries a hose."}, {"index": 609, "image_id": 2414197, "entity": "truck", "caption": "The truck carries cables. ", "question": ["is there the truck ?", "are there cables ?"], "prompt": "The {} carries cables. "}, {"index": 610, "image_id": 2414197, "entity": "truck", "caption": "The truck's front has red stripes.", "question": ["is there the truck's front ?", "are there red stripes ?"], "prompt": "The {}'s front has red stripes."}, {"index": 611, "image_id": 2414197, "entity": "truck", "caption": "Three of the truck's tires are visible.", "question": ["are there the truck's tires ?"], "prompt": "Three of the {}'s tires are visible."}, {"index": 612, "image_id": 2414142, "entity": "truck", "caption": "the truck says brennstoffe on the back", "question": ["is there the truck ?", "is there the back ?"], "prompt": "the {} says brennstoffe on the back"}, {"index": 613, "image_id": 2414142, "entity": "truck", "caption": "a car is on the road in front of the truck", "question": ["is there a car ?", "is there the road ?", "is there front ?", "is there the truck ?"], "prompt": "a car is on the road in front of the {}"}, {"index": 614, "image_id": 2414142, "entity": "truck", "caption": "the back of the truck says man", "question": ["is there the back ?", "is there the truck ?", "is there man ?"], "prompt": "the back of the {} says man"}, {"index": 615, "image_id": 2413814, "entity": "truck", "caption": "Sign written in white on side of truck.", "question": ["is there sign ?", "is there side ?", "is there truck ?"], "prompt": "Sign written in white on side of {}."}, {"index": 616, "image_id": 2413814, "entity": "truck", "caption": "A white SUV is behind the truck ", "question": ["is there the truck ?"], "prompt": "A white SUV is behind the {} "}, {"index": 617, "image_id": 2413579, "entity": "truck", "caption": "truck has chrome wheelie bar on back", "question": ["is there truck ?", "is there chrome wheelie bar ?"], "prompt": "{} has chrome wheelie bar on back"}, {"index": 618, "image_id": 2413408, "entity": "truck", "caption": "The truck has yellow hubcaps.", "question": ["is there the truck ?", "are there yellow hubcaps ?"], "prompt": "The {} has yellow hubcaps."}, {"index": 619, "image_id": 2413408, "entity": "truck", "caption": "The truck has two headlights.", "question": ["is there the truck ?", "are there two headlights ?"], "prompt": "The {} has two headlights."}, {"index": 620, "image_id": 2413104, "entity": "truck", "caption": "a mechanical arm sits on top of a truck", "question": ["is there a mechanical arm ?", "is there top ?", "is there a truck ?"], "prompt": "a mechanical arm sits on top of a {}"}, {"index": 621, "image_id": 2413104, "entity": "truck", "caption": "This truck has 6 wheels", "question": ["is there this truck ?", "are there 6 wheels ?"], "prompt": "This {} has 6 wheels"}, {"index": 622, "image_id": 2413104, "entity": "truck", "caption": "This door enters the truck", "question": ["is there this door ?", "is there the truck ?"], "prompt": "This door enters the {}"}, {"index": 623, "image_id": 2413104, "entity": "truck", "caption": "Trees are next to the truck", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are next to the {}"}, {"index": 624, "image_id": 2413104, "entity": "truck", "caption": "man standing next to a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man standing next to a {}"}, {"index": 625, "image_id": 2412942, "entity": "truck", "caption": "the truck has large tyres", "question": ["is there the truck ?", "are there large tyres ?"], "prompt": "the {} has large tyres"}, {"index": 626, "image_id": 2412792, "entity": "truck", "caption": "the truck is casting a shadow underneath", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow underneath"}, {"index": 627, "image_id": 2412792, "entity": "truck", "caption": "the truck has a crane on it's back", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane on it's back"}, {"index": 628, "image_id": 2412792, "entity": "truck", "caption": "the side of the truck has Chinese lettering", "question": ["is there the side ?", "is there the truck ?", "is there chinese lettering ?"], "prompt": "the side of the {} has Chinese lettering"}, {"index": 629, "image_id": 2412792, "entity": "truck", "caption": "a palm tree is behind the truck", "question": ["is there a palm tree ?", "is there the truck ?"], "prompt": "a palm tree is behind the {}"}, {"index": 630, "image_id": 2412792, "entity": "truck", "caption": "a white column is on the right of the truck", "question": ["is there a white column ?", "is there the right ?", "is there the truck ?"], "prompt": "a white column is on the right of the {}"}, {"index": 631, "image_id": 2412792, "entity": "truck", "caption": "truck has a crane on back", "question": ["is there truck ?", "is there a crane ?"], "prompt": "{} has a crane on back"}, {"index": 632, "image_id": 2412792, "entity": "truck", "caption": "Roof of truck is red", "question": ["is there roof ?", "is there truck ?"], "prompt": "Roof of {} is red"}, {"index": 633, "image_id": 2412603, "entity": "truck", "caption": "Man is by a red Toyota truck", "question": ["is there man ?", "is there a red toyota truck ?"], "prompt": "Man is by a red Toyota {}"}, {"index": 634, "image_id": 2412488, "entity": "truck", "caption": "a person works on a truck", "question": ["is there a person ?", "is there a truck ?"], "prompt": "a person works on a {}"}, {"index": 635, "image_id": 2412483, "entity": "truck", "caption": "woman in purple shirt looking at truck", "question": ["is there woman ?", "is there purple shirt ?", "is there truck ?"], "prompt": "woman in purple shirt looking at {}"}, {"index": 636, "image_id": 2412483, "entity": "truck", "caption": "man in black shirt taking picture of truck", "question": ["is there man ?", "is there black shirt ?", "is there picture ?", "is there truck ?"], "prompt": "man in black shirt taking picture of {}"}, {"index": 637, "image_id": 2412186, "entity": "truck", "caption": "Front headlight on the red truck.", "question": ["is there front headlight ?", "is there the red truck ?"], "prompt": "Front headlight on the red {}."}, {"index": 638, "image_id": 2412186, "entity": "truck", "caption": "canoe tied on top of truck", "question": ["is there canoe ?", "is there top ?", "is there truck ?"], "prompt": "canoe tied on top of {}"}, {"index": 639, "image_id": 2412186, "entity": "truck", "caption": "truck logo painted on fender", "question": ["is there truck logo ?", "is there fender ?"], "prompt": "{} logo painted on fender"}, {"index": 640, "image_id": 2412161, "entity": "truck", "caption": "The truck has a side mirror.", "question": ["is there the truck ?", "is there a side mirror ?"], "prompt": "The {} has a side mirror."}, {"index": 641, "image_id": 2412161, "entity": "truck", "caption": "Rust surrounds truck headlight. ", "question": ["is there rust ?", "is there truck headlight ?"], "prompt": "Rust surrounds {} headlight. "}, {"index": 642, "image_id": 2415675, "entity": "truck", "caption": "these are truck wheels", "question": ["are there truck wheels ?"], "prompt": "these are {} wheels"}, {"index": 643, "image_id": 2416928, "entity": "truck", "caption": "Yellow truck has big wheels ", "question": ["is there yellow truck ?", "are there big wheels ?"], "prompt": "Yellow {} has big wheels "}, {"index": 644, "image_id": 2417877, "entity": "truck", "caption": "Strange artwork is on the truck ", "question": ["is there strange artwork ?", "is there the truck ?"], "prompt": "Strange artwork is on the {} "}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n04111531.json b/data/imagenet/compositions/prompts/n04111531.json
new file mode 100644
index 0000000000000000000000000000000000000000..209e99d1348161eafff222db1da220023a9c169a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n04111531.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 498042, "entity": "oven", "caption": "Chef putting pizza in oven.", "question": ["is there chef ?", "is there pizza ?", "is there oven ?"], "prompt": "Chef putting pizza in {}."}, {"index": 1, "image_id": 498111, "entity": "oven", "caption": "convection oven with open door", "question": ["is there convection oven ?", "is there open door ?"], "prompt": "convection {} with open door"}, {"index": 2, "image_id": 498111, "entity": "oven", "caption": "convection oven with blue interior", "question": ["is there convection oven ?", "is there blue interior ?"], "prompt": "convection {} with blue interior"}, {"index": 3, "image_id": 1593184, "entity": "oven", "caption": "Cat is sitting inside of oven.", "question": ["is there cat ?", "is there oven ?"], "prompt": "Cat is sitting inside of {}."}, {"index": 4, "image_id": 2411403, "entity": "oven", "caption": "Cat is in oven", "question": ["is there cat ?", "is there oven ?"], "prompt": "Cat is in {}"}, {"index": 5, "image_id": 2411403, "entity": "oven", "caption": "Wall behind oven is white", "question": ["is there oven ?"], "prompt": "Wall behind {} is white"}, {"index": 6, "image_id": 2411357, "entity": "oven", "caption": "the dog is watching the oven", "question": ["is there the dog ?", "is there the oven ?"], "prompt": "the dog is watching the {}"}, {"index": 7, "image_id": 2410282, "entity": "oven", "caption": "the ovens door is white in color", "question": ["are there the ovens door ?", "is there color ?"], "prompt": "the {}s door is white in color"}, {"index": 8, "image_id": 2410282, "entity": "oven", "caption": "a metallic container is inside the oven", "question": ["is there a metallic container ?", "is there the oven ?"], "prompt": "a metallic container is inside the {}"}, {"index": 9, "image_id": 2410282, "entity": "oven", "caption": "these are buttons on the oven", "question": ["are there buttons ?", "is there the oven ?"], "prompt": "these are buttons on the {}"}, {"index": 10, "image_id": 2410282, "entity": "oven", "caption": "the oven is on a stand", "question": ["is there the oven ?", "is there a stand ?"], "prompt": "the {} is on a stand"}, {"index": 11, "image_id": 2410147, "entity": "oven", "caption": "Dog is in an oven", "question": ["is there dog ?", "is there an oven ?"], "prompt": "Dog is in an {}"}, {"index": 12, "image_id": 2408688, "entity": "oven", "caption": "Metal oven racks inside of the oven.", "question": ["are there metal oven racks ?", "is there the oven ?"], "prompt": "Metal {} racks inside of the {}."}, {"index": 13, "image_id": 2408516, "entity": "oven", "caption": "Food is inside a oven", "question": ["is there food ?", "is there a oven ?"], "prompt": "Food is inside a {}"}, {"index": 14, "image_id": 2408516, "entity": "oven", "caption": "Top of the oven heaters is red", "question": ["is there top ?", "are there the oven heaters ?"], "prompt": "Top of the {} heaters is red"}, {"index": 15, "image_id": 2408199, "entity": "oven", "caption": "pizza is in oven", "question": ["is there pizza ?", "is there oven ?"], "prompt": "pizza is in {}"}, {"index": 16, "image_id": 2406320, "entity": "oven", "caption": "a thermometer is in the oven", "question": ["is there a thermometer ?", "is there the oven ?"], "prompt": "a thermometer is in the {}"}, {"index": 17, "image_id": 2406291, "entity": "oven", "caption": "door is open on the oven", "question": ["is there door ?", "is there the oven ?"], "prompt": "door is open on the {}"}, {"index": 18, "image_id": 2406291, "entity": "oven", "caption": "foil layed at the bottom of the oven", "question": ["is there foil ?", "is there the bottom ?", "is there the oven ?"], "prompt": "foil layed at the bottom of the {}"}, {"index": 19, "image_id": 2404859, "entity": "oven", "caption": "an oven light that is on", "question": ["is there an oven light ?"], "prompt": "an {} light that is on"}, {"index": 20, "image_id": 2404859, "entity": "oven", "caption": "The light is on inside the oven.", "question": ["is there the light ?", "is there the oven ?"], "prompt": "The light is on inside the {}."}, {"index": 21, "image_id": 2404830, "entity": "oven", "caption": "Time on the oven says 4:01", "question": ["is there time ?", "is there the oven ?"], "prompt": "Time on the {} says 4:01"}, {"index": 22, "image_id": 2404830, "entity": "oven", "caption": "stainless steel oven", "question": ["is there stainless steel oven ?"], "prompt": "stainless steel {}"}, {"index": 23, "image_id": 2404649, "entity": "oven", "caption": "the turkey is in the oven", "question": ["is there the oven ?"], "prompt": "the turkey is in the {}"}, {"index": 24, "image_id": 2404649, "entity": "oven", "caption": "the oven door is open", "question": ["is there the oven door ?"], "prompt": "the {} door is open"}, {"index": 25, "image_id": 2404082, "entity": "oven", "caption": "The bagels are toasting in the oven", "question": ["are there the bagels ?", "is there the oven ?"], "prompt": "The bagels are toasting in the {}"}, {"index": 26, "image_id": 2403994, "entity": "oven", "caption": "oven door handle", "question": ["is there oven door ?"], "prompt": "{} door handle"}, {"index": 27, "image_id": 2403994, "entity": "oven", "caption": "wall behind oven is dirty", "question": ["is there oven ?"], "prompt": "wall behind {} is dirty"}, {"index": 28, "image_id": 2403994, "entity": "oven", "caption": "oven handle is silver", "question": ["is there oven ?"], "prompt": "{} handle is silver"}, {"index": 29, "image_id": 2403911, "entity": "oven", "caption": "the oven has 2 pans in it", "question": ["is there the oven ?", "are there 2 pans ?"], "prompt": "the {} has 2 pans in it"}, {"index": 30, "image_id": 2403911, "entity": "oven", "caption": "two pans are in the oven", "question": ["are there two pans ?", "is there the oven ?"], "prompt": "two pans are in the {}"}, {"index": 31, "image_id": 2403401, "entity": "oven", "caption": "white fancy oven with handle", "question": ["is there white fancy oven ?", "is there handle ?"], "prompt": "white fancy {} with handle"}, {"index": 32, "image_id": 2403093, "entity": "oven", "caption": "The oven has racks.", "question": ["is there the oven ?", "are there racks ?"], "prompt": "The {} has racks."}, {"index": 33, "image_id": 2403093, "entity": "oven", "caption": "Homemade bread oven bake", "question": ["is there homemade bread oven ?"], "prompt": "Homemade bread {} bake"}, {"index": 34, "image_id": 2400967, "entity": "oven", "caption": "bagel on pan going in oven to be toasted", "question": ["is there bagel ?", "is there pan ?", "is there oven ?"], "prompt": "bagel on pan going in {} to be toasted"}, {"index": 35, "image_id": 2399896, "entity": "oven", "caption": "a toaster oven sitting on a counter", "question": ["is there a toaster oven ?", "is there a counter ?"], "prompt": "a toaster {} sitting on a counter"}, {"index": 36, "image_id": 2399896, "entity": "oven", "caption": "the oven has a blue information panel", "question": ["is there the oven ?", "is there a blue information panel ?"], "prompt": "the {} has a blue information panel"}, {"index": 37, "image_id": 2399896, "entity": "oven", "caption": "the oven has three silver dials", "question": ["is there the oven ?", "are there three silver dials ?"], "prompt": "the {} has three silver dials"}, {"index": 38, "image_id": 2399896, "entity": "oven", "caption": "the oven has a silver button", "question": ["is there the oven ?", "is there a silver button ?"], "prompt": "the {} has a silver button"}, {"index": 39, "image_id": 2399152, "entity": "oven", "caption": "The oven has buttons", "question": ["is there the oven ?", "are there buttons ?"], "prompt": "The {} has buttons"}, {"index": 40, "image_id": 2398590, "entity": "oven", "caption": "Three pizzas are visible in the oven.", "question": ["are there three pizzas ?", "is there the oven ?"], "prompt": "Three pizzas are visible in the {}."}, {"index": 41, "image_id": 2398590, "entity": "oven", "caption": "The door to the pizza oven is open.", "question": ["is there the door ?", "is there the pizza oven ?"], "prompt": "The door to the pizza {} is open."}, {"index": 42, "image_id": 2398590, "entity": "oven", "caption": "A flame inside the pizza oven.", "question": ["is there a flame ?", "is there the pizza oven ?"], "prompt": "A flame inside the pizza {}."}, {"index": 43, "image_id": 2398590, "entity": "oven", "caption": "The word Wood is on the oven.", "question": ["is there the word wood ?", "is there the oven ?"], "prompt": "The word Wood is on the {}."}, {"index": 44, "image_id": 2398418, "entity": "oven", "caption": "a oven mit hanging", "question": ["is there a oven mit ?"], "prompt": "a {} mit hanging"}, {"index": 45, "image_id": 2396659, "entity": "oven", "caption": "drip marks on side of metal oven", "question": ["are there marks ?", "is there side ?", "is there metal oven ?"], "prompt": "drip marks on side of metal {}"}, {"index": 46, "image_id": 2396659, "entity": "oven", "caption": "oven door is open", "question": ["is there oven door ?"], "prompt": "{} door is open"}, {"index": 47, "image_id": 2393568, "entity": "oven", "caption": "The man is taking something from the oven", "question": ["is there the man ?", "is there something ?", "is there the oven ?"], "prompt": "The man is taking something from the {}"}, {"index": 48, "image_id": 2393568, "entity": "oven", "caption": "the man pulls something out of oven", "question": ["is there the man ?", "is there something ?", "is there oven ?"], "prompt": "the man pulls something out of {}"}, {"index": 49, "image_id": 2393568, "entity": "oven", "caption": "The man is putting something in the oven", "question": ["is there the man ?", "is there something ?", "is there the oven ?"], "prompt": "The man is putting something in the {}"}, {"index": 50, "image_id": 2393568, "entity": "oven", "caption": "The rack is out of the oven", "question": ["is there the rack ?", "is there the oven ?"], "prompt": "The rack is out of the {}"}, {"index": 51, "image_id": 2393568, "entity": "oven", "caption": "man taking something out of the oven", "question": ["is there man ?", "is there something ?", "is there the oven ?"], "prompt": "man taking something out of the {}"}, {"index": 52, "image_id": 2390677, "entity": "oven", "caption": "Pizza going into oven", "question": ["is there pizza ?", "is there oven ?"], "prompt": "Pizza going into {}"}, {"index": 53, "image_id": 2390677, "entity": "oven", "caption": "Controls to large oven", "question": ["is there large oven ?"], "prompt": "Controls to large {}"}, {"index": 54, "image_id": 2386402, "entity": "oven", "caption": "Someone is standing right beside the oven", "question": ["is there someone ?", "is there the oven ?"], "prompt": "Someone is standing right beside the {}"}, {"index": 55, "image_id": 2386040, "entity": "oven", "caption": "The oven walls are gray.", "question": ["are there the oven walls ?"], "prompt": "The {} walls are gray."}, {"index": 56, "image_id": 2386040, "entity": "oven", "caption": "Shelf racks on side of an oven", "question": ["are there shelf racks ?", "is there side ?", "is there an oven ?"], "prompt": "Shelf racks on side of an {}"}, {"index": 57, "image_id": 2386040, "entity": "oven", "caption": "the pizza is in the oven", "question": ["is there the pizza ?", "is there the oven ?"], "prompt": "the pizza is in the {}"}, {"index": 58, "image_id": 2385529, "entity": "oven", "caption": "person is reaching into oven", "question": ["is there person ?", "is there oven ?"], "prompt": "person is reaching into {}"}, {"index": 59, "image_id": 2385529, "entity": "oven", "caption": "person is retrieving baking tray from oven", "question": ["is there person ?", "is there baking tray ?", "is there oven ?"], "prompt": "person is retrieving baking tray from {}"}, {"index": 60, "image_id": 2385529, "entity": "oven", "caption": "woman about to put a pizza in the oven", "question": ["is there woman ?", "is there a pizza ?", "is there the oven ?"], "prompt": "woman about to put a pizza in the {}"}, {"index": 61, "image_id": 2385231, "entity": "oven", "caption": "person reflected in oven", "question": ["is there person ?", "is there oven ?"], "prompt": "person reflected in {}"}, {"index": 62, "image_id": 2385231, "entity": "oven", "caption": "a kitchen cabinet is near the oven", "question": ["is there a kitchen cabinet ?", "is there the oven ?"], "prompt": "a kitchen cabinet is near the {}"}, {"index": 63, "image_id": 2385231, "entity": "oven", "caption": "muffins are baking in the oven", "question": ["are there muffins ?", "is there the oven ?"], "prompt": "muffins are baking in the {}"}, {"index": 64, "image_id": 2383007, "entity": "oven", "caption": "knobs on the bread oven", "question": ["are there knobs ?", "is there the bread oven ?"], "prompt": "knobs on the bread {}"}, {"index": 65, "image_id": 2383007, "entity": "oven", "caption": "the bottom of the oven has 6 racks", "question": ["is there the bottom ?", "is there the oven ?", "are there 6 racks ?"], "prompt": "the bottom of the {} has 6 racks"}, {"index": 66, "image_id": 2381811, "entity": "oven", "caption": "the oven has many buttons", "question": ["is there the oven ?", "are there many buttons ?"], "prompt": "the {} has many buttons"}, {"index": 67, "image_id": 2381811, "entity": "oven", "caption": "the girl is reaching into the oven", "question": ["is there the girl ?", "is there the oven ?"], "prompt": "the girl is reaching into the {}"}, {"index": 68, "image_id": 2381811, "entity": "oven", "caption": "woman looking into oven", "question": ["is there woman ?", "is there oven ?"], "prompt": "woman looking into {}"}, {"index": 69, "image_id": 2378898, "entity": "oven", "caption": "black oven has two racks", "question": ["is there black oven ?", "are there two racks ?"], "prompt": "black {} has two racks"}, {"index": 70, "image_id": 2378810, "entity": "oven", "caption": "oven's door handle", "question": ["is there oven's door ?"], "prompt": "{}'s door handle"}, {"index": 71, "image_id": 2378810, "entity": "oven", "caption": "knobs on a toaster oven", "question": ["are there knobs ?", "is there a toaster oven ?"], "prompt": "knobs on a toaster {}"}, {"index": 72, "image_id": 2378047, "entity": "oven", "caption": "The oven has control knobs", "question": ["is there the oven ?", "are there control knobs ?"], "prompt": "The {} has control knobs"}, {"index": 73, "image_id": 2377236, "entity": "oven", "caption": "a turkey that is cooking in the oven", "question": ["is there a turkey ?", "is there the oven ?"], "prompt": "a turkey that is cooking in the {}"}, {"index": 74, "image_id": 2376057, "entity": "oven", "caption": "The pan is in the oven.", "question": ["is there the pan ?", "is there the oven ?"], "prompt": "The pan is in the {}."}, {"index": 75, "image_id": 2376057, "entity": "oven", "caption": "a pan of food going into the oven to cook", "question": ["is there a pan ?", "is there food ?", "is there the oven ?"], "prompt": "a pan of food going into the {} to cook"}, {"index": 76, "image_id": 2374883, "entity": "oven", "caption": "grease built up on the oven door", "question": ["is there grease ?", "is there the oven door ?"], "prompt": "grease built up on the {} door"}, {"index": 77, "image_id": 2374227, "entity": "oven", "caption": "the light is on in the oven", "question": ["is there the light ?", "is there the oven ?"], "prompt": "the light is on in the {}"}, {"index": 78, "image_id": 2374227, "entity": "oven", "caption": "a clack and white oven in the kitchen", "question": ["is there a clack and white oven ?", "is there the kitchen ?"], "prompt": "a clack and white {} in the kitchen"}, {"index": 79, "image_id": 2374187, "entity": "oven", "caption": "door of an oven that is wide open ", "question": ["is there door ?", "is there an oven ?"], "prompt": "door of an {} that is wide open "}, {"index": 80, "image_id": 2369871, "entity": "oven", "caption": "white oven door handle", "question": ["is there white oven door ?"], "prompt": "white {} door handle"}, {"index": 81, "image_id": 2369871, "entity": "oven", "caption": "Side of stove andoven with documentation", "question": ["is there side ?", "is there stove ?", "is there documentation ?"], "prompt": "Side of stove and{} with documentation"}, {"index": 82, "image_id": 2368897, "entity": "oven", "caption": "the wood fire oven for the food", "question": ["is there the wood fire oven ?", "is there the food ?"], "prompt": "the wood fire {} for the food"}, {"index": 83, "image_id": 2368471, "entity": "oven", "caption": "The oven is in the wall", "question": ["is there the oven ?", "is there the wall ?"], "prompt": "The {} is in the wall"}, {"index": 84, "image_id": 2367960, "entity": "oven", "caption": "Roper is the brand name of this oven", "question": ["is there roper ?", "is there the brand name ?", "is there this oven ?"], "prompt": "Roper is the brand name of this {}"}, {"index": 85, "image_id": 2367960, "entity": "oven", "caption": "this knob controls the oven temperature", "question": ["is there this knob ?", "is there the oven temperature ?"], "prompt": "this knob controls the {} temperature"}, {"index": 86, "image_id": 2367766, "entity": "oven", "caption": "The dials on the bottom oven", "question": ["are there the dials ?", "is there the bottom oven ?"], "prompt": "The dials on the bottom {}"}, {"index": 87, "image_id": 2367766, "entity": "oven", "caption": "Wire connected from oven", "question": ["is there wire ?", "is there oven ?"], "prompt": "Wire connected from {}"}, {"index": 88, "image_id": 2367325, "entity": "oven", "caption": "Cookies baking in the oven.", "question": ["are there cookies ?", "is there the oven ?"], "prompt": "Cookies baking in the {}."}, {"index": 89, "image_id": 2366664, "entity": "oven", "caption": "woman taking turkey out of oven ", "question": ["is there woman ?", "is there turkey ?", "is there oven ?"], "prompt": "woman taking turkey out of {} "}, {"index": 90, "image_id": 2366598, "entity": "oven", "caption": "The toaster oven on the counter.", "question": ["is there the toaster oven ?", "is there the counter ?"], "prompt": "The toaster {} on the counter."}, {"index": 91, "image_id": 2365736, "entity": "oven", "caption": "oven door is white", "question": ["is there oven door ?"], "prompt": "{} door is white"}, {"index": 92, "image_id": 2365568, "entity": "oven", "caption": "man taking pizza from oven", "question": ["is there man ?", "is there pizza ?", "is there oven ?"], "prompt": "man taking pizza from {}"}, {"index": 93, "image_id": 2365568, "entity": "oven", "caption": "man in cap looking into dark oven", "question": ["is there man ?", "is there cap ?", "is there dark oven ?"], "prompt": "man in cap looking into dark {}"}, {"index": 94, "image_id": 2365178, "entity": "oven", "caption": "bread is in the oven ", "question": ["is there bread ?", "is there the oven ?"], "prompt": "bread is in the {} "}, {"index": 95, "image_id": 2364974, "entity": "oven", "caption": "The pizza oven is in the kitchen ", "question": ["is there the pizza oven ?", "is there the kitchen ?"], "prompt": "The pizza {} is in the kitchen "}, {"index": 96, "image_id": 2364974, "entity": "oven", "caption": "the girl is taking the pizza out of the oven", "question": ["is there the girl ?", "is there the pizza ?", "is there the oven ?"], "prompt": "the girl is taking the pizza out of the {}"}, {"index": 97, "image_id": 2364729, "entity": "oven", "caption": "white crane looking inside kitchen oven", "question": ["is there white crane ?", "is there kitchen oven ?"], "prompt": "white crane looking inside kitchen {}"}, {"index": 98, "image_id": 2363855, "entity": "oven", "caption": "the dishwasher is next to the oven", "question": ["is there the dishwasher ?", "is there the oven ?"], "prompt": "the dishwasher is next to the {}"}, {"index": 99, "image_id": 2363855, "entity": "oven", "caption": "drawers are next to the oven", "question": ["are there drawers ?", "is there the oven ?"], "prompt": "drawers are next to the {}"}, {"index": 100, "image_id": 2363447, "entity": "oven", "caption": "the burner of a toy oven", "question": ["is there the burner ?", "is there a toy oven ?"], "prompt": "the burner of a toy {}"}, {"index": 101, "image_id": 2363269, "entity": "oven", "caption": "the woman is placing a dish in the oven", "question": ["is there the woman ?", "is there a dish ?", "is there the oven ?"], "prompt": "the woman is placing a dish in the {}"}, {"index": 102, "image_id": 2363269, "entity": "oven", "caption": "two oven racks are in the oven", "question": ["are there two oven racks ?", "is there the oven ?"], "prompt": "two {} racks are in the {}"}, {"index": 103, "image_id": 2363269, "entity": "oven", "caption": "white tile is behind he oven range", "question": ["is there white tile ?", "is there oven ?"], "prompt": "white tile is behind he {} range"}, {"index": 104, "image_id": 2363269, "entity": "oven", "caption": "The woman is using the oven ", "question": ["is there the woman ?", "is there the oven ?"], "prompt": "The woman is using the {} "}, {"index": 105, "image_id": 2362287, "entity": "oven", "caption": "Cook reignites the fire inside the oven", "question": ["is there the fire ?", "is there the oven ?"], "prompt": "Cook reignites the fire inside the {}"}, {"index": 106, "image_id": 2360092, "entity": "oven", "caption": "the woman standing near the oven", "question": ["is there the woman ?", "is there the oven ?"], "prompt": "the woman standing near the {}"}, {"index": 107, "image_id": 2359356, "entity": "oven", "caption": "the light in the oven is on", "question": ["is there the light ?", "is there the oven ?"], "prompt": "the light in the {} is on"}, {"index": 108, "image_id": 2357909, "entity": "oven", "caption": "man placing a turkey into the oven", "question": ["is there man ?", "is there a turkey ?", "is there the oven ?"], "prompt": "man placing a turkey into the {}"}, {"index": 109, "image_id": 2357909, "entity": "oven", "caption": "turkey goes in the oven", "question": ["is there the oven ?"], "prompt": "turkey goes in the {}"}, {"index": 110, "image_id": 2357852, "entity": "oven", "caption": "man`s head is in the oven", "question": ["is there man`s head ?", "is there the oven ?"], "prompt": "man`s head is in the {}"}, {"index": 111, "image_id": 2357852, "entity": "oven", "caption": "boy sticking his head in the oven", "question": ["is there boy ?", "is there his head ?", "is there the oven ?"], "prompt": "boy sticking his head in the {}"}, {"index": 112, "image_id": 2355956, "entity": "oven", "caption": "A light on a bakers oven", "question": ["is there a light ?", "are there a bakers oven ?"], "prompt": "A light on a bakers {}"}, {"index": 113, "image_id": 2355956, "entity": "oven", "caption": "Cook placing hands on oven", "question": ["are there hands ?", "is there oven ?"], "prompt": "Cook placing hands on {}"}, {"index": 114, "image_id": 2355720, "entity": "oven", "caption": "the door of a GE brand oven", "question": ["is there the door ?", "is there a ge brand oven ?"], "prompt": "the door of a GE brand {}"}, {"index": 115, "image_id": 2351848, "entity": "oven", "caption": "the rack is in the oven", "question": ["is there the rack ?", "is there the oven ?"], "prompt": "the rack is in the {}"}, {"index": 116, "image_id": 2350263, "entity": "oven", "caption": "Stainless steel oven inside of a residential kitchen.", "question": ["is there stainless steel oven ?", "is there a residential kitchen ?"], "prompt": "Stainless steel {} inside of a residential kitchen."}, {"index": 117, "image_id": 2349899, "entity": "oven", "caption": "drawer below oven slightly open", "question": ["is there drawer ?", "is there oven ?"], "prompt": "drawer below {} slightly open"}, {"index": 118, "image_id": 2349899, "entity": "oven", "caption": "Light colored oven with the light on inside", "question": ["is there light colored oven ?", "is there the light ?"], "prompt": "Light colored {} with the light on inside"}, {"index": 119, "image_id": 2349899, "entity": "oven", "caption": "sugar cookies baking in an oven", "question": ["are there sugar cookies ?", "is there an oven ?"], "prompt": "sugar cookies baking in an {}"}, {"index": 120, "image_id": 2349595, "entity": "oven", "caption": "wall mounted microwave oven", "question": ["is there microwave oven ?"], "prompt": "wall mounted microwave {}"}, {"index": 121, "image_id": 2349595, "entity": "oven", "caption": "silver colored oven door", "question": ["is there silver colored oven door ?"], "prompt": "silver colored {} door"}, {"index": 122, "image_id": 2348141, "entity": "oven", "caption": "a man bent over a oven", "question": ["is there a man ?", "is there a oven ?"], "prompt": "a man bent over a {}"}, {"index": 123, "image_id": 2346818, "entity": "oven", "caption": "Twelve cups are inside the oven.", "question": ["are there twelve cups ?", "is there the oven ?"], "prompt": "Twelve cups are inside the {}."}, {"index": 124, "image_id": 2346321, "entity": "oven", "caption": "The pans are on an oven. ", "question": ["are there the pans ?", "is there an oven ?"], "prompt": "The pans are on an {}. "}, {"index": 125, "image_id": 2346152, "entity": "oven", "caption": "Food coming out of the oven ", "question": ["is there food ?", "is there the oven ?"], "prompt": "Food coming out of the {} "}, {"index": 126, "image_id": 2345305, "entity": "oven", "caption": "a window is on the oven", "question": ["is there a window ?", "is there the oven ?"], "prompt": "a window is on the {}"}, {"index": 127, "image_id": 2344505, "entity": "oven", "caption": "The oven has five knobs. ", "question": ["is there the oven ?", "are there five knobs ?"], "prompt": "The {} has five knobs. "}, {"index": 128, "image_id": 2344505, "entity": "oven", "caption": "Tin foil is next to the oven. ", "question": ["is there tin foil ?", "is there the oven ?"], "prompt": "Tin foil is next to the {}. "}, {"index": 129, "image_id": 2344505, "entity": "oven", "caption": "Towel hanging off of oven", "question": ["is there towel ?", "is there oven ?"], "prompt": "Towel hanging off of {}"}, {"index": 130, "image_id": 2344141, "entity": "oven", "caption": "the chicken is in an oven", "question": ["is there the chicken ?", "is there an oven ?"], "prompt": "the chicken is in an {}"}, {"index": 131, "image_id": 2343463, "entity": "oven", "caption": "The oven door is open.", "question": ["is there the oven door ?"], "prompt": "The {} door is open."}, {"index": 132, "image_id": 2342458, "entity": "oven", "caption": "Brownies baking in the oven", "question": ["are there brownies ?", "is there the oven ?"], "prompt": "Brownies baking in the {}"}, {"index": 133, "image_id": 2342097, "entity": "oven", "caption": "pizza is in the oven", "question": ["is there pizza ?", "is there the oven ?"], "prompt": "pizza is in the {}"}, {"index": 134, "image_id": 2342097, "entity": "oven", "caption": "the heater on the oven is on", "question": ["is there the heater ?", "is there the oven ?"], "prompt": "the heater on the {} is on"}, {"index": 135, "image_id": 2340606, "entity": "oven", "caption": "Woman reaches into hot oven to remove filled baking dish", "question": ["is there woman ?", "is there hot oven ?", "is there filled baking dish ?"], "prompt": "Woman reaches into hot {} to remove filled baking dish"}, {"index": 136, "image_id": 2340606, "entity": "oven", "caption": "Woman safely and carefully removes the dish from the hot oven", "question": ["is there woman ?", "is there the dish ?", "is there the hot oven ?"], "prompt": "Woman safely and carefully removes the dish from the hot {}"}, {"index": 137, "image_id": 2340606, "entity": "oven", "caption": "Woman fully extends her arms to remove the dish from the oven", "question": ["is there woman ?", "are there her arms ?", "is there the dish ?", "is there the oven ?"], "prompt": "Woman fully extends her arms to remove the dish from the {}"}, {"index": 138, "image_id": 2340480, "entity": "oven", "caption": "A pizza goes in to the oven. ", "question": ["is there a pizza ?", "is there the oven ?"], "prompt": "A pizza goes in to the {}. "}, {"index": 139, "image_id": 2340226, "entity": "oven", "caption": "White wall behind the toaster oven", "question": ["is there the toaster oven ?"], "prompt": "White wall behind the toaster {}"}, {"index": 140, "image_id": 2339594, "entity": "oven", "caption": "Bottom drawer of oven slightly open", "question": ["is there bottom drawer ?", "is there oven ?"], "prompt": "Bottom drawer of {} slightly open"}, {"index": 141, "image_id": 2339448, "entity": "oven", "caption": "this is a knob on the oven", "question": ["is there a knob ?", "is there the oven ?"], "prompt": "this is a knob on the {}"}, {"index": 142, "image_id": 2339358, "entity": "oven", "caption": "Turkey baking in the oven.", "question": ["is there turkey baking ?", "is there the oven ?"], "prompt": "Turkey baking in the {}."}, {"index": 143, "image_id": 2338276, "entity": "oven", "caption": "racks of oven that hold food", "question": ["are there racks ?", "is there oven ?", "is there food ?"], "prompt": "racks of {} that hold food"}, {"index": 144, "image_id": 2338276, "entity": "oven", "caption": "light is on in oven", "question": ["is there light ?", "is there oven ?"], "prompt": "light is on in {}"}, {"index": 145, "image_id": 2338276, "entity": "oven", "caption": "light is in the oven ", "question": ["is there light ?", "is there the oven ?"], "prompt": "light is in the {} "}, {"index": 146, "image_id": 2338276, "entity": "oven", "caption": "sticker is on the oven", "question": ["is there sticker ?", "is there the oven ?"], "prompt": "sticker is on the {}"}, {"index": 147, "image_id": 2337681, "entity": "oven", "caption": "cookie sheet in teh oven", "question": ["is there cookie sheet ?", "is there teh oven ?"], "prompt": "cookie sheet in teh {}"}, {"index": 148, "image_id": 2337271, "entity": "oven", "caption": "Bread dough cooking in the oven.", "question": ["is there bread dough ?", "is there the oven ?"], "prompt": "Bread dough cooking in the {}."}, {"index": 149, "image_id": 2337271, "entity": "oven", "caption": "man is getting bread from oven", "question": ["is there man ?", "is there bread ?", "is there oven ?"], "prompt": "man is getting bread from {}"}, {"index": 150, "image_id": 2337271, "entity": "oven", "caption": "this is an oven", "question": ["is there an oven ?"], "prompt": "this is an {}"}, {"index": 151, "image_id": 2336351, "entity": "oven", "caption": "pizza oven behind the man", "question": ["is there pizza oven ?", "is there the man ?"], "prompt": "pizza {} behind the man"}, {"index": 152, "image_id": 2331964, "entity": "oven", "caption": "oven has three seperate racks", "question": ["is there oven ?", "are there three seperate racks ?"], "prompt": "{} has three seperate racks"}, {"index": 153, "image_id": 2331331, "entity": "oven", "caption": "Handle on oven is black", "question": ["is there oven ?"], "prompt": "Handle on {} is black"}, {"index": 154, "image_id": 2330918, "entity": "oven", "caption": "the ovens displayed are for sale", "question": ["are there the ovens ?", "is there sale ?"], "prompt": "the {}s displayed are for sale"}, {"index": 155, "image_id": 2330918, "entity": "oven", "caption": "the ovens price tag is hanging on the front of the oven", "question": ["are there the ovens price tag ?", "is there the front ?", "is there the oven ?"], "prompt": "the {}s price tag is hanging on the front of the {}"}, {"index": 156, "image_id": 2330918, "entity": "oven", "caption": "the oven has a digital face", "question": ["is there the oven ?", "is there a digital face ?"], "prompt": "the {} has a digital face"}, {"index": 157, "image_id": 2330511, "entity": "oven", "caption": "oven has a nice fan", "question": ["is there oven ?", "is there a nice fan ?"], "prompt": "{} has a nice fan"}, {"index": 158, "image_id": 2330057, "entity": "oven", "caption": "cupcakes in toaster oven", "question": ["are there cupcakes ?", "is there toaster oven ?"], "prompt": "cupcakes in toaster {}"}, {"index": 159, "image_id": 2330057, "entity": "oven", "caption": "Silver knobs on the toaster oven.", "question": ["are there silver knobs ?", "is there the toaster oven ?"], "prompt": "Silver knobs on the toaster {}."}, {"index": 160, "image_id": 2328976, "entity": "oven", "caption": "dishtowel is on the oven", "question": ["is there the oven ?"], "prompt": "dishtowel is on the {}"}, {"index": 161, "image_id": 2328564, "entity": "oven", "caption": "Counter the oven is sitting on", "question": ["is there the oven ?"], "prompt": "Counter the {} is sitting on"}, {"index": 162, "image_id": 2327242, "entity": "oven", "caption": "the fridge is next to th ee oven", "question": ["is there the fridge ?", "is there th ee oven ?"], "prompt": "the fridge is next to th ee {}"}, {"index": 163, "image_id": 2326823, "entity": "oven", "caption": "pizza is in the oven ", "question": ["is there pizza ?", "is there the oven ?"], "prompt": "pizza is in the {} "}, {"index": 164, "image_id": 2326471, "entity": "oven", "caption": "Silver toaster oven", "question": ["is there silver toaster oven ?"], "prompt": "Silver toaster {}"}, {"index": 165, "image_id": 2326471, "entity": "oven", "caption": "Black leg of a toaster oven", "question": ["is there black leg ?", "is there a toaster oven ?"], "prompt": "Black leg of a toaster {}"}, {"index": 166, "image_id": 2326471, "entity": "oven", "caption": "Metal handle of a toaster oven", "question": ["is there metal handle ?", "is there a toaster oven ?"], "prompt": "Metal handle of a toaster {}"}, {"index": 167, "image_id": 2326471, "entity": "oven", "caption": "two black dials on a toaster oven", "question": ["are there two black dials ?", "is there a toaster oven ?"], "prompt": "two black dials on a toaster {}"}, {"index": 168, "image_id": 2325300, "entity": "oven", "caption": "hand is in the oven", "question": ["is there hand ?", "is there the oven ?"], "prompt": "hand is in the {}"}, {"index": 169, "image_id": 2325300, "entity": "oven", "caption": "knobs that control the oven", "question": ["are there knobs ?", "is there the oven ?"], "prompt": "knobs that control the {}"}, {"index": 170, "image_id": 2324366, "entity": "oven", "caption": "the drawer sits underneath the oven", "question": ["is there the drawer ?", "is there the oven ?"], "prompt": "the drawer sits underneath the {}"}, {"index": 171, "image_id": 2324366, "entity": "oven", "caption": "the oven has two racks", "question": ["is there the oven ?", "are there two racks ?"], "prompt": "the {} has two racks"}, {"index": 172, "image_id": 2322327, "entity": "oven", "caption": "it's dead, it's in the oven", "question": ["is there the oven ?"], "prompt": "it's dead, it's in the {}"}, {"index": 173, "image_id": 2322327, "entity": "oven", "caption": "The oven light is shining.", "question": ["is there the oven light ?"], "prompt": "The {} light is shining."}, {"index": 174, "image_id": 2320937, "entity": "oven", "caption": "woman looking into an oven", "question": ["is there woman ?", "is there an oven ?"], "prompt": "woman looking into an {}"}, {"index": 175, "image_id": 2320937, "entity": "oven", "caption": "The food is in the oven. ", "question": ["is there the food ?", "is there the oven ?"], "prompt": "The food is in the {}. "}, {"index": 176, "image_id": 2320622, "entity": "oven", "caption": "steel oven with four knobs", "question": ["is there steel oven ?", "are there four knobs ?"], "prompt": "steel {} with four knobs"}, {"index": 177, "image_id": 2320622, "entity": "oven", "caption": "letters on sign behind the steel oven", "question": ["are there letters ?", "is there sign ?", "is there the steel oven ?"], "prompt": "letters on sign behind the steel {}"}, {"index": 178, "image_id": 2320622, "entity": "oven", "caption": "steel oven with people reflections on it", "question": ["is there steel oven ?", "are there people ?"], "prompt": "steel {} with people reflections on it"}, {"index": 179, "image_id": 2320622, "entity": "oven", "caption": "steel oven with an opened small door", "question": ["is there steel oven ?", "is there an opened small door ?"], "prompt": "steel {} with an opened small door"}, {"index": 180, "image_id": 2320622, "entity": "oven", "caption": "The control knobs of a stainless steel oven", "question": ["are there the control knobs ?", "is there a stainless steel oven ?"], "prompt": "The control knobs of a stainless steel {}"}, {"index": 181, "image_id": 2320622, "entity": "oven", "caption": "Indicator lights on the front of an oven", "question": ["are there indicator lights ?", "is there the front ?", "is there an oven ?"], "prompt": "Indicator lights on the front of an {}"}, {"index": 182, "image_id": 2320622, "entity": "oven", "caption": "A shiny silver long handle to open the oven.", "question": ["is there a shiny silver long handle ?", "is there the oven ?"], "prompt": "A shiny silver long handle to open the {}."}, {"index": 183, "image_id": 2320463, "entity": "oven", "caption": "Man adjusting pizza in oven", "question": ["is there man ?", "is there pizza ?", "is there oven ?"], "prompt": "Man adjusting pizza in {}"}, {"index": 184, "image_id": 2320366, "entity": "oven", "caption": "white oven built into the wall", "question": ["is there white oven ?", "is there the wall ?"], "prompt": "white {} built into the wall"}, {"index": 185, "image_id": 2318842, "entity": "oven", "caption": "the stovetop grills on the oven", "question": ["are there the stovetop grills ?", "is there the oven ?"], "prompt": "the stovetop grills on the {}"}, {"index": 186, "image_id": 2317593, "entity": "oven", "caption": "This is the oven", "question": ["is there the oven ?"], "prompt": "This is the {}"}, {"index": 187, "image_id": 2317593, "entity": "oven", "caption": "the oven has many knobs ", "question": ["is there the oven ?", "are there many knobs ?"], "prompt": "the {} has many knobs "}, {"index": 188, "image_id": 2317379, "entity": "oven", "caption": "knobs on front the oven", "question": ["are there knobs ?", "is there the oven ?"], "prompt": "knobs on front the {}"}, {"index": 189, "image_id": 2413047, "entity": "oven", "caption": "the oven has a white exterior", "question": ["is there the oven ?", "is there a white exterior ?"], "prompt": "the {} has a white exterior"}, {"index": 190, "image_id": 2413047, "entity": "oven", "caption": "the oven has a black interior", "question": ["is there the oven ?", "is there a black interior ?"], "prompt": "the {} has a black interior"}, {"index": 191, "image_id": 2413047, "entity": "oven", "caption": "the oven has grills", "question": ["is there the oven ?", "are there grills ?"], "prompt": "the {} has grills"}, {"index": 192, "image_id": 2411917, "entity": "oven", "caption": "Stove has an oven", "question": ["is there stove ?", "is there an oven ?"], "prompt": "Stove has an {}"}, {"index": 193, "image_id": 2411574, "entity": "oven", "caption": "Door handle for oven with black corners", "question": ["is there door ?", "is there oven ?", "are there black corners ?"], "prompt": "Door handle for {} with black corners"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n04238763.json b/data/imagenet/compositions/prompts/n04238763.json
new file mode 100644
index 0000000000000000000000000000000000000000..eb6f3cc340447bec06e9d0d2e41c4e6a28c4ebc4
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n04238763.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 1670, "entity": "computer", "caption": "the computer is sitting on a white desk", "question": ["is there the computer ?", "is there a white desk ?"], "prompt": "the {} is sitting on a white desk"}, {"index": 1, "image_id": 2413614, "entity": "computer", "caption": "Audio input on laptop computer.", "question": ["is there audio input ?", "is there laptop computer ?"], "prompt": "Audio input on laptop {}."}, {"index": 2, "image_id": 2411787, "entity": "computer", "caption": "Mouse of computer is black and tan", "question": ["is there computer ?"], "prompt": "Mouse of {} is black and tan"}, {"index": 3, "image_id": 2411787, "entity": "computer", "caption": "Screen of computer is purple and white", "question": ["is there screen ?", "is there computer ?"], "prompt": "Screen of {} is purple and white"}, {"index": 4, "image_id": 2411787, "entity": "computer", "caption": "The computer sits on a table. ", "question": ["is there the computer ?", "is there a table ?"], "prompt": "The {} sits on a table. "}, {"index": 5, "image_id": 2411787, "entity": "computer", "caption": "The computer has the Apple logo.", "question": ["is there the computer ?", "is there the apple logo ?"], "prompt": "The {} has the Apple logo."}, {"index": 6, "image_id": 2411787, "entity": "computer", "caption": "The computer has two monitors. ", "question": ["is there the computer ?", "are there two monitors ?"], "prompt": "The {} has two monitors. "}, {"index": 7, "image_id": 2411787, "entity": "computer", "caption": "The computer has speakers. ", "question": ["is there the computer ?", "are there speakers ?"], "prompt": "The {} has speakers. "}, {"index": 8, "image_id": 2411787, "entity": "computer", "caption": "The computer has a mouse.", "question": ["is there the computer ?", "is there a mouse ?"], "prompt": "The {} has a mouse."}, {"index": 9, "image_id": 2409573, "entity": "computer", "caption": "The computer screen is on", "question": ["is there the computer screen ?"], "prompt": "The {} screen is on"}, {"index": 10, "image_id": 2409573, "entity": "computer", "caption": "The giant can next to the computer", "question": ["is there the giant ?", "is there the computer ?"], "prompt": "The giant can next to the {}"}, {"index": 11, "image_id": 2407218, "entity": "computer", "caption": "This is a smartphone that this man has attached to his computer.", "question": ["is there a smartphone ?", "is there this man ?", "is there his computer ?"], "prompt": "This is a smartphone that this man has attached to his {}."}, {"index": 12, "image_id": 2404050, "entity": "computer", "caption": "The computer has a silver bolt", "question": ["is there the computer ?", "is there a silver bolt ?"], "prompt": "The {} has a silver bolt"}, {"index": 13, "image_id": 2397913, "entity": "computer", "caption": "Man is looking at the computer", "question": ["is there man ?", "is there the computer ?"], "prompt": "Man is looking at the {}"}, {"index": 14, "image_id": 2396611, "entity": "computer", "caption": "a cat resting it's head on a computer.", "question": ["is there a cat ?", "is there head ?", "is there a computer ?"], "prompt": "a cat resting it's head on a {}."}, {"index": 15, "image_id": 2396611, "entity": "computer", "caption": "a cats paw on a computer.", "question": ["are there a cats ?", "is there a computer ?"], "prompt": "a cats paw on a {}."}, {"index": 16, "image_id": 2391965, "entity": "computer", "caption": "computer set up with monitor", "question": ["is there computer ?", "is there monitor ?"], "prompt": "{} set up with monitor"}, {"index": 17, "image_id": 2389431, "entity": "computer", "caption": "wires pluged on computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires pluged on {}"}, {"index": 18, "image_id": 2388062, "entity": "computer", "caption": "Power cord plugged into the computer.", "question": ["is there power cord ?", "is there the computer ?"], "prompt": "Power cord plugged into the {}."}, {"index": 19, "image_id": 2384108, "entity": "computer", "caption": "computer speaker laying sidways", "question": ["is there computer speaker ?"], "prompt": "{} speaker laying sidways"}, {"index": 20, "image_id": 2380641, "entity": "computer", "caption": "mouse of computer is ergonomic", "question": ["is there computer ?"], "prompt": "mouse of {} is ergonomic"}, {"index": 21, "image_id": 2380272, "entity": "computer", "caption": "computer mouse sitting next to laptop computer", "question": ["is there computer mouse ?", "is there laptop computer ?"], "prompt": "{} mouse sitting next to laptop {}"}, {"index": 22, "image_id": 2377814, "entity": "computer", "caption": "The computer the cat is standing on", "question": ["is there the computer ?", "is there the cat ?"], "prompt": "The {} the cat is standing on"}, {"index": 23, "image_id": 2375150, "entity": "computer", "caption": "the girl is typing on the computer", "question": ["is there the girl ?", "is there the computer ?"], "prompt": "the girl is typing on the {}"}, {"index": 24, "image_id": 2372868, "entity": "computer", "caption": "Cord plug ins for computer.", "question": ["are there cord plug ins ?", "is there computer ?"], "prompt": "Cord plug ins for {}."}, {"index": 25, "image_id": 2371612, "entity": "computer", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The dog is using the {} "}, {"index": 26, "image_id": 2371612, "entity": "computer", "caption": "The mouse pad is the middle of the computer ", "question": ["is there the mouse pad ?", "is there the middle ?", "is there the computer ?"], "prompt": "The mouse pad is the middle of the {} "}, {"index": 27, "image_id": 2370068, "entity": "computer", "caption": "tree leaves on computer screen", "question": ["is there tree ?", "is there computer screen ?"], "prompt": "tree leaves on {} screen"}, {"index": 28, "image_id": 2364993, "entity": "computer", "caption": "Indicator lights on a laptop computer", "question": ["are there indicator lights ?", "is there a laptop computer ?"], "prompt": "Indicator lights on a laptop {}"}, {"index": 29, "image_id": 2364841, "entity": "computer", "caption": "wires blurry behind computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires blurry behind {}"}, {"index": 30, "image_id": 2364534, "entity": "computer", "caption": "The computer stand so the computer isn't falling over.", "question": ["is there the computer ?", "is there the computer ?"], "prompt": "The {} stand so the {} isn't falling over."}, {"index": 31, "image_id": 2361519, "entity": "computer", "caption": "number keypad for computer", "question": ["is there number keypad ?", "is there computer ?"], "prompt": "number keypad for {}"}, {"index": 32, "image_id": 2359377, "entity": "computer", "caption": "Papers sit next to computer", "question": ["are there papers ?", "is there computer ?"], "prompt": "Papers sit next to {}"}, {"index": 33, "image_id": 2358048, "entity": "computer", "caption": "The computer is on the log in screen.", "question": ["is there the computer ?", "is there the log ?", "is there screen ?"], "prompt": "The {} is on the log in screen."}, {"index": 34, "image_id": 2357136, "entity": "computer", "caption": "multiple objects are open on computer screen", "question": ["are there multiple objects ?", "is there computer screen ?"], "prompt": "multiple objects are open on {} screen"}, {"index": 35, "image_id": 2353879, "entity": "computer", "caption": "power wire plugged into computer", "question": ["is there power wire ?", "is there computer ?"], "prompt": "power wire plugged into {}"}, {"index": 36, "image_id": 2353456, "entity": "computer", "caption": "plug plugged into computer", "question": ["is there plug ?", "is there computer ?"], "prompt": "plug plugged into {}"}, {"index": 37, "image_id": 2351707, "entity": "computer", "caption": "the keyboard of the computer that which the cat is sitting on", "question": ["is there the keyboard ?", "is there the computer ?", "is there the cat ?"], "prompt": "the keyboard of the {} that which the cat is sitting on"}, {"index": 38, "image_id": 2348719, "entity": "computer", "caption": "White USB cord hanging from the computer.", "question": ["is there white usb cord ?", "is there the computer ?"], "prompt": "White USB cord hanging from the {}."}, {"index": 39, "image_id": 2347801, "entity": "computer", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The dog is next to a laptop {}"}, {"index": 40, "image_id": 2347039, "entity": "computer", "caption": "the plugs going into the computer", "question": ["are there the plugs ?", "is there the computer ?"], "prompt": "the plugs going into the {}"}, {"index": 41, "image_id": 2346356, "entity": "computer", "caption": "computer on table is open", "question": ["is there computer ?", "is there table ?"], "prompt": "{} on table is open"}, {"index": 42, "image_id": 2345231, "entity": "computer", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the dogs paws on on the {}"}, {"index": 43, "image_id": 2342983, "entity": "computer", "caption": "Cord plugged into the computer", "question": ["is there cord ?", "is there the computer ?"], "prompt": "Cord plugged into the {}"}, {"index": 44, "image_id": 2330099, "entity": "computer", "caption": "person is looking at the computer", "question": ["is there person ?", "is there the computer ?"], "prompt": "person is looking at the {}"}, {"index": 45, "image_id": 2326900, "entity": "computer", "caption": "a computer screen turned on", "question": ["is there a computer screen ?"], "prompt": "a {} screen turned on"}, {"index": 46, "image_id": 2326148, "entity": "computer", "caption": "Cat hiding behind a computer screen", "question": ["is there cat ?", "is there a computer screen ?"], "prompt": "Cat hiding behind a {} screen"}, {"index": 47, "image_id": 2322592, "entity": "computer", "caption": "white wire coming out of the nearest computer", "question": ["is there white wire ?", "is there the nearest computer ?"], "prompt": "white wire coming out of the nearest {}"}, {"index": 48, "image_id": 2317168, "entity": "computer", "caption": "objects piled up behind the computer", "question": ["are there objects ?", "is there the computer ?"], "prompt": "objects piled up behind the {}"}, {"index": 49, "image_id": 2414391, "entity": "computer", "caption": "the computer is sitting on a desk", "question": ["is there the computer ?", "is there a desk ?"], "prompt": "the {} is sitting on a desk"}, {"index": 50, "image_id": 2413201, "entity": "computer", "caption": "smooth wood table hold a computer", "question": ["is there smooth wood table ?", "is there a computer ?"], "prompt": "smooth wood table hold a {}"}, {"index": 51, "image_id": 2415366, "entity": "computer", "caption": "A computer is on a white desk", "question": ["is there a computer ?", "is there a white desk ?"], "prompt": "A {} is on a white desk"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n04273569.json b/data/imagenet/compositions/prompts/n04273569.json
new file mode 100644
index 0000000000000000000000000000000000000000..1091d72597600d36f049b579bcd37e9d0ad4df2a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n04273569.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 815, "entity": "boat", "caption": "The boat has windows", "question": ["is there the boat ?", "are there windows ?"], "prompt": "The {} has windows"}, {"index": 1, "image_id": 1883, "entity": "boat", "caption": "The boat has empty seats.", "question": ["is there the boat ?", "are there empty seats ?"], "prompt": "The {} has empty seats."}, {"index": 2, "image_id": 1902, "entity": "boat", "caption": "woman with blue shirt standing on boat", "question": ["is there woman ?", "is there blue shirt ?", "is there boat ?"], "prompt": "woman with blue shirt standing on {}"}, {"index": 3, "image_id": 1904, "entity": "boat", "caption": "black letters and numbers painted on a boat", "question": ["are there black letters ?", "are there numbers ?", "is there a boat ?"], "prompt": "black letters and numbers painted on a {}"}, {"index": 4, "image_id": 2562, "entity": "boat", "caption": "white person is on a boat", "question": ["is there white person ?", "is there a boat ?"], "prompt": "white person is on a {}"}, {"index": 5, "image_id": 2562, "entity": "boat", "caption": "Life preserver on the boat", "question": ["is there life preserver ?", "is there the boat ?"], "prompt": "Life preserver on the {}"}, {"index": 6, "image_id": 4245, "entity": "boat", "caption": "white boat parked in the dock ", "question": ["is there white boat ?", "is there the dock ?"], "prompt": "white {} parked in the dock "}, {"index": 7, "image_id": 4245, "entity": "boat", "caption": "boat is tired to the pier", "question": ["is there boat ?", "is there the pier ?"], "prompt": "{} is tired to the pier"}, {"index": 8, "image_id": 4990, "entity": "boat", "caption": "personal floating device on the sailboats transom", "question": ["is there personal floating device ?", "are there the sailboats ?"], "prompt": "personal floating device on the sail{}s transom"}, {"index": 9, "image_id": 61552, "entity": "boat", "caption": "A man in a hat is on a small boat in the water", "question": ["is there a man ?", "is there a hat ?", "is there a small boat ?", "is there the water ?"], "prompt": "A man in a hat is on a small {} in the water"}, {"index": 10, "image_id": 61588, "entity": "boat", "caption": "blue letters painted on a boat", "question": ["are there blue letters ?", "is there a boat ?"], "prompt": "blue letters painted on a {}"}, {"index": 11, "image_id": 285605, "entity": "boat", "caption": "bottom of boat is blue in color", "question": ["is there bottom ?", "is there boat ?", "is there color ?"], "prompt": "bottom of {} is blue in color"}, {"index": 12, "image_id": 498166, "entity": "boat", "caption": "People rowing a boat", "question": ["are there people ?", "is there a boat ?"], "prompt": "People rowing a {}"}, {"index": 13, "image_id": 498166, "entity": "boat", "caption": "the boats have canopies", "question": ["are there the boats ?", "are there canopies ?"], "prompt": "the {}s have canopies"}, {"index": 14, "image_id": 498267, "entity": "boat", "caption": "the white buoy hanging off the boat", "question": ["is there the white buoy ?", "is there the boat ?"], "prompt": "the white buoy hanging off the {}"}, {"index": 15, "image_id": 498267, "entity": "boat", "caption": "The boat is in the water.", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is in the water."}, {"index": 16, "image_id": 713061, "entity": "boat", "caption": "American flag flying on boat", "question": ["is there american flag ?", "is there boat ?"], "prompt": "American flag flying on {}"}, {"index": 17, "image_id": 713156, "entity": "boat", "caption": "boat is next to boat in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is next to {} in water"}, {"index": 18, "image_id": 713162, "entity": "boat", "caption": "large boat docked by building", "question": ["is there large boat ?"], "prompt": "large {} docked by building"}, {"index": 19, "image_id": 713162, "entity": "boat", "caption": "the boat parked next to the red house", "question": ["is there the boat ?"], "prompt": "the {} parked next to the red house"}, {"index": 20, "image_id": 713470, "entity": "boat", "caption": "boat has wooden benched", "question": ["is there boat ?"], "prompt": "{} has wooden benched"}, {"index": 21, "image_id": 713832, "entity": "boat", "caption": "words are on the boat", "question": ["are there words ?", "is there the boat ?"], "prompt": "words are on the {}"}, {"index": 22, "image_id": 713832, "entity": "boat", "caption": "boat has a pole", "question": ["is there boat ?", "is there a pole ?"], "prompt": "{} has a pole"}, {"index": 23, "image_id": 713832, "entity": "boat", "caption": "boat has a window", "question": ["is there boat ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 24, "image_id": 1159573, "entity": "boat", "caption": "blue and white boat sitting in body of water", "question": ["is there blue and white boat ?", "is there body ?", "is there water ?"], "prompt": "blue and white {} sitting in body of water"}, {"index": 25, "image_id": 1159823, "entity": "boat", "caption": "two boats side by side", "question": ["are there two boats ?", "is there side ?"], "prompt": "two {}s side by side"}, {"index": 26, "image_id": 1159823, "entity": "boat", "caption": "\"RX60\" painted on boat with black paint", "question": ["is there boat ?", "is there black paint ?"], "prompt": "\"RX60\" painted on {} with black paint"}, {"index": 27, "image_id": 1160209, "entity": "boat", "caption": "Long blue rope tied to boat.", "question": ["is there long blue rope ?", "is there boat ?"], "prompt": "Long blue rope tied to {}."}, {"index": 28, "image_id": 1160209, "entity": "boat", "caption": "brown rope tied on the boat", "question": ["is there brown rope ?", "is there the boat ?"], "prompt": "brown rope tied on the {}"}, {"index": 29, "image_id": 1592080, "entity": "boat", "caption": "the bottom of the boat is red", "question": ["is there the bottom ?", "is there the boat ?"], "prompt": "the bottom of the {} is red"}, {"index": 30, "image_id": 1592080, "entity": "boat", "caption": "the tarp on the boat is blue", "question": ["is there the tarp ?", "is there the boat ?"], "prompt": "the tarp on the {} is blue"}, {"index": 31, "image_id": 1592464, "entity": "boat", "caption": "american flag flying from the boat", "question": ["is there american flag ?", "is there the boat ?"], "prompt": "american flag flying from the {}"}, {"index": 32, "image_id": 1592464, "entity": "boat", "caption": "water the boat is on", "question": ["is there the boat ?"], "prompt": "water the {} is on"}, {"index": 33, "image_id": 1592891, "entity": "boat", "caption": "White covers on yellow boat", "question": ["are there white covers ?", "is there yellow boat ?"], "prompt": "White covers on yellow {}"}, {"index": 34, "image_id": 1592891, "entity": "boat", "caption": "the boat has fabric stripe", "question": ["is there the boat ?", "is there fabric stripe ?"], "prompt": "the {} has fabric stripe"}, {"index": 35, "image_id": 1592892, "entity": "boat", "caption": "the man is on a boat", "question": ["is there the man ?", "is there a boat ?"], "prompt": "the man is on a {}"}, {"index": 36, "image_id": 1592892, "entity": "boat", "caption": "Man working on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man working on a {}"}, {"index": 37, "image_id": 1592951, "entity": "boat", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The truck on the {} is blue in color."}, {"index": 38, "image_id": 2414926, "entity": "boat", "caption": "The boat is in the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 39, "image_id": 2414334, "entity": "boat", "caption": "Large boat docked on water.", "question": ["is there large boat ?", "is there water ?"], "prompt": "Large {} docked on water."}, {"index": 40, "image_id": 2413907, "entity": "boat", "caption": "Man standing on a boat holding a hot dog.", "question": ["is there man ?", "is there a boat ?", "is there a hot dog ?"], "prompt": "Man standing on a {} holding a hot dog."}, {"index": 41, "image_id": 2413848, "entity": "boat", "caption": "boat has chinese letters", "question": ["is there boat ?", "are there chinese letters ?"], "prompt": "{} has chinese letters"}, {"index": 42, "image_id": 2413848, "entity": "boat", "caption": "boat has yellow floaters on the side", "question": ["is there boat ?", "are there yellow floaters ?", "is there the side ?"], "prompt": "{} has yellow floaters on the side"}, {"index": 43, "image_id": 2413848, "entity": "boat", "caption": "boat has orange bouys", "question": ["is there boat ?", "are there orange bouys ?"], "prompt": "{} has orange bouys"}, {"index": 44, "image_id": 2413848, "entity": "boat", "caption": "the inside of the boat is green", "question": ["is there the inside ?", "is there the boat ?"], "prompt": "the inside of the {} is green"}, {"index": 45, "image_id": 2413848, "entity": "boat", "caption": "wooden boat dock", "question": ["is there wooden boat ?"], "prompt": "wooden {} dock"}, {"index": 46, "image_id": 2413848, "entity": "boat", "caption": "the boat is at the dock", "question": ["is there the boat ?", "is there the dock ?"], "prompt": "the {} is at the dock"}, {"index": 47, "image_id": 2413564, "entity": "boat", "caption": "an orange life saver hangs on the boat", "question": ["is there an orange life saver ?", "is there the boat ?"], "prompt": "an orange life saver hangs on the {}"}, {"index": 48, "image_id": 2413564, "entity": "boat", "caption": "the boat in the front has a tall mast", "question": ["is there the boat ?", "is there the front ?", "is there a tall mast ?"], "prompt": "the {} in the front has a tall mast"}, {"index": 49, "image_id": 2413564, "entity": "boat", "caption": "the boats are on the bay", "question": ["are there the boats ?", "is there the bay ?"], "prompt": "the {}s are on the bay"}, {"index": 50, "image_id": 2412218, "entity": "boat", "caption": "a boat is in the photo", "question": ["is there a boat ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 51, "image_id": 2412218, "entity": "boat", "caption": "the boat is red with designs", "question": ["is there the boat ?", "are there designs ?"], "prompt": "the {} is red with designs"}, {"index": 52, "image_id": 2412218, "entity": "boat", "caption": "the boat is on the shore", "question": ["is there the boat ?", "is there the shore ?"], "prompt": "the {} is on the shore"}, {"index": 53, "image_id": 2412218, "entity": "boat", "caption": "the boat has a star of david", "question": ["is there the boat ?", "is there a star ?"], "prompt": "the {} has a star of david"}, {"index": 54, "image_id": 2412218, "entity": "boat", "caption": "the boat has a heart ", "question": ["is there the boat ?", "is there a heart ?"], "prompt": "the {} has a heart "}, {"index": 55, "image_id": 2412218, "entity": "boat", "caption": "the boat has a cloud design", "question": ["is there the boat ?", "is there a cloud design ?"], "prompt": "the {} has a cloud design"}, {"index": 56, "image_id": 2412218, "entity": "boat", "caption": "heart shapes window in side of boat", "question": ["is there heart ?", "is there side ?", "is there boat ?"], "prompt": "heart shapes window in side of {}"}, {"index": 57, "image_id": 2411489, "entity": "boat", "caption": "boat docked at pier", "question": ["is there boat ?", "is there pier ?"], "prompt": "{} docked at pier"}, {"index": 58, "image_id": 2411204, "entity": "boat", "caption": "An enormous amount of water on which people ride boats.", "question": ["is there an enormous amount ?", "is there water ?", "are there people ?", "are there boats ?"], "prompt": "An enormous amount of water on which people ride {}s."}, {"index": 59, "image_id": 2410909, "entity": "boat", "caption": "Two people sit on a boat", "question": ["are there two people ?", "is there a boat ?"], "prompt": "Two people sit on a {}"}, {"index": 60, "image_id": 2410909, "entity": "boat", "caption": "A person is steering the boat with the rudder", "question": ["is there a person ?", "is there the boat ?", "is there the rudder ?"], "prompt": "A person is steering the {} with the rudder"}, {"index": 61, "image_id": 2410850, "entity": "boat", "caption": "a sniper rifle anchored to the boat", "question": ["is there a sniper rifle ?", "is there the boat ?"], "prompt": "a sniper rifle anchored to the {}"}, {"index": 62, "image_id": 2410850, "entity": "boat", "caption": "U.S. Coast Guard painted on boat", "question": ["is there boat ?"], "prompt": "U.S. Coast Guard painted on {}"}, {"index": 63, "image_id": 2410850, "entity": "boat", "caption": "Honda outboard boat motor", "question": [], "prompt": "Honda outboard {} motor"}, {"index": 64, "image_id": 2410846, "entity": "boat", "caption": "life preserver mounted to side of boat", "question": ["is there life preserver ?", "is there side ?", "is there boat ?"], "prompt": "life preserver mounted to side of {}"}, {"index": 65, "image_id": 2410846, "entity": "boat", "caption": "Life saving ring on the boat", "question": ["is there life saving ring ?", "is there the boat ?"], "prompt": "Life saving ring on the {}"}, {"index": 66, "image_id": 2409599, "entity": "boat", "caption": "Several boats are in the water. ", "question": ["are there several boats ?", "is there the water ?"], "prompt": "Several {}s are in the water. "}, {"index": 67, "image_id": 2409599, "entity": "boat", "caption": "The boat has several windows. ", "question": ["is there the boat ?", "are there several windows ?"], "prompt": "The {} has several windows. "}, {"index": 68, "image_id": 2409599, "entity": "boat", "caption": "A rope secures the boat to the dock.", "question": ["is there a rope ?", "is there the boat ?", "is there the dock ?"], "prompt": "A rope secures the {} to the dock."}, {"index": 69, "image_id": 2409599, "entity": "boat", "caption": "rope securing a boat to the dock", "question": ["is there rope ?", "is there a boat ?", "is there the dock ?"], "prompt": "rope securing a {} to the dock"}, {"index": 70, "image_id": 2409535, "entity": "boat", "caption": "Cables attached to larger boat", "question": ["are there cables ?", "is there larger boat ?"], "prompt": "Cables attached to larger {}"}, {"index": 71, "image_id": 2409535, "entity": "boat", "caption": "Name written on side of smaller boat", "question": ["is there name ?", "is there side ?", "is there smaller boat ?"], "prompt": "Name written on side of smaller {}"}, {"index": 72, "image_id": 2409535, "entity": "boat", "caption": "name of a boat painted on", "question": ["is there name ?", "is there a boat ?"], "prompt": "name of a {} painted on"}, {"index": 73, "image_id": 2409264, "entity": "boat", "caption": "small boy standing in a boat", "question": ["is there small boy ?", "is there a boat ?"], "prompt": "small boy standing in a {}"}, {"index": 74, "image_id": 2409264, "entity": "boat", "caption": "asian boy standing in boat", "question": ["is there asian boy ?", "is there boat ?"], "prompt": "asian boy standing in {}"}, {"index": 75, "image_id": 2409264, "entity": "boat", "caption": "person standing in boat in backgroung", "question": ["is there person ?", "is there boat ?", "is there backgroung ?"], "prompt": "person standing in {} in backgroung"}, {"index": 76, "image_id": 2408406, "entity": "boat", "caption": "hand hangs over side of boat.", "question": ["is there hand ?", "is there side ?", "is there boat ?"], "prompt": "hand hangs over side of {}."}, {"index": 77, "image_id": 2408406, "entity": "boat", "caption": "two large umbrellas covering most of boat", "question": ["are there two large umbrellas ?", "is there boat ?"], "prompt": "two large umbrellas covering most of {}"}, {"index": 78, "image_id": 2408406, "entity": "boat", "caption": "The person has their hand out of the boat", "question": ["is there the person ?", "is there their hand ?", "is there the boat ?"], "prompt": "The person has their hand out of the {}"}, {"index": 79, "image_id": 2408406, "entity": "boat", "caption": "hand of person who is riding in the boat", "question": ["is there hand ?", "is there person ?", "is there the boat ?"], "prompt": "hand of person who is riding in the {}"}, {"index": 80, "image_id": 2408406, "entity": "boat", "caption": "The food and umbrellas are on a boat. ", "question": ["is there the food ?", "are there umbrellas ?", "is there a boat ?"], "prompt": "The food and umbrellas are on a {}. "}, {"index": 81, "image_id": 2408030, "entity": "boat", "caption": "people sitting in a boat waiting", "question": ["are there people ?", "is there a boat ?"], "prompt": "people sitting in a {} waiting"}, {"index": 82, "image_id": 2408030, "entity": "boat", "caption": "person climbing into or out of the boat", "question": ["is there person ?", "is there the boat ?"], "prompt": "person climbing into or out of the {}"}, {"index": 83, "image_id": 2407441, "entity": "boat", "caption": "Man standing on a boat. ", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man standing on a {}. "}, {"index": 84, "image_id": 2407441, "entity": "boat", "caption": "wooden boat with woman standing", "question": ["is there wooden boat ?", "is there woman ?"], "prompt": "wooden {} with woman standing"}, {"index": 85, "image_id": 2406902, "entity": "boat", "caption": "Orange life preserver on a white boat.", "question": ["is there orange life preserver ?", "is there a white boat ?"], "prompt": "Orange life preserver on a white {}."}, {"index": 86, "image_id": 2405871, "entity": "boat", "caption": "a bridge goes into the boat", "question": ["is there a bridge ?", "is there the boat ?"], "prompt": "a bridge goes into the {}"}, {"index": 87, "image_id": 2405602, "entity": "boat", "caption": "small boat going out to sea", "question": ["is there small boat ?", "is there sea ?"], "prompt": "small {} going out to sea"}, {"index": 88, "image_id": 2404841, "entity": "boat", "caption": "bamboo boats parked together", "question": ["are there bamboo boats ?"], "prompt": "bamboo {}s parked together"}, {"index": 89, "image_id": 2404841, "entity": "boat", "caption": "orange life preservers are hanging from the boat chairs", "question": ["are there orange life preservers ?", "are there the boat chairs ?"], "prompt": "orange life preservers are hanging from the {} chairs"}, {"index": 90, "image_id": 2404198, "entity": "boat", "caption": "The boat has two life boats on the right side", "question": ["is there the boat ?", "are there two life boats ?", "is there the right side ?"], "prompt": "The {} has two life {}s on the right side"}, {"index": 91, "image_id": 2404184, "entity": "boat", "caption": "These people are on a boat ride", "question": ["are there these people ?", "is there a boat ride ?"], "prompt": "These people are on a {} ride"}, {"index": 92, "image_id": 2404184, "entity": "boat", "caption": "The boat is creating waves", "question": ["is there the boat ?", "are there waves ?"], "prompt": "The {} is creating waves"}, {"index": 93, "image_id": 2403899, "entity": "boat", "caption": "three people are on the boat", "question": ["are there three people ?", "is there the boat ?"], "prompt": "three people are on the {}"}, {"index": 94, "image_id": 2403899, "entity": "boat", "caption": "a flag is in the front of the boat", "question": ["is there a flag ?", "is there the front ?", "is there the boat ?"], "prompt": "a flag is in the front of the {}"}, {"index": 95, "image_id": 2403899, "entity": "boat", "caption": "the boat travels on a river", "question": ["is there the boat ?", "is there a river ?"], "prompt": "the {} travels on a river"}, {"index": 96, "image_id": 2403899, "entity": "boat", "caption": "the boat is in the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is in the water"}, {"index": 97, "image_id": 2403899, "entity": "boat", "caption": "two fishing poles stick up out of the boat", "question": ["are there two fishing poles ?", "is there the boat ?"], "prompt": "two fishing poles stick up out of the {}"}, {"index": 98, "image_id": 2403899, "entity": "boat", "caption": "the flag is on the front of the boat", "question": ["is there the flag ?", "is there the front ?", "is there the boat ?"], "prompt": "the flag is on the front of the {}"}, {"index": 99, "image_id": 2403899, "entity": "boat", "caption": "three people are in the boat", "question": ["are there three people ?", "is there the boat ?"], "prompt": "three people are in the {}"}, {"index": 100, "image_id": 2403753, "entity": "boat", "caption": "Many of the boats have masts.", "question": ["are there the boats ?", "are there masts ?"], "prompt": "Many of the {}s have masts."}, {"index": 101, "image_id": 2403753, "entity": "boat", "caption": "A rope hanging over boat.", "question": ["is there a rope ?", "is there boat ?"], "prompt": "A rope hanging over {}."}, {"index": 102, "image_id": 2403753, "entity": "boat", "caption": "Paint of the boat is coming off", "question": ["is there paint ?", "is there the boat ?"], "prompt": "Paint of the {} is coming off"}, {"index": 103, "image_id": 2403753, "entity": "boat", "caption": "Two boats anchored to the dock", "question": ["are there two boats ?", "is there the dock ?"], "prompt": "Two {}s anchored to the dock"}, {"index": 104, "image_id": 2403753, "entity": "boat", "caption": "Rope attached the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "Rope attached the {}"}, {"index": 105, "image_id": 2403712, "entity": "boat", "caption": "Person riding bike on to boat.", "question": ["is there person ?", "is there bike ?", "is there boat ?"], "prompt": "Person riding bike on to {}."}, {"index": 106, "image_id": 2403147, "entity": "boat", "caption": "Black tarp covering part of boat", "question": ["is there black tarp ?", "is there part ?", "is there boat ?"], "prompt": "Black tarp covering part of {}"}, {"index": 107, "image_id": 2403147, "entity": "boat", "caption": "rope tied to the boat.", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied to the {}."}, {"index": 108, "image_id": 2402503, "entity": "boat", "caption": "Person stepping on boat", "question": ["is there person ?", "is there boat ?"], "prompt": "Person stepping on {}"}, {"index": 109, "image_id": 2402503, "entity": "boat", "caption": "Rope lying on a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "Rope lying on a {}"}, {"index": 110, "image_id": 2402107, "entity": "boat", "caption": "two men getting things off the boat", "question": ["are there two men ?", "are there things ?", "is there the boat ?"], "prompt": "two men getting things off the {}"}, {"index": 111, "image_id": 2402107, "entity": "boat", "caption": "boat coming to pick up the people", "question": ["is there boat ?", "are there the people ?"], "prompt": "{} coming to pick up the people"}, {"index": 112, "image_id": 2402067, "entity": "boat", "caption": "The water the boat is on", "question": ["is there the water ?", "is there the boat ?"], "prompt": "The water the {} is on"}, {"index": 113, "image_id": 2401739, "entity": "boat", "caption": "Woman sitting in wood boat.", "question": ["is there woman ?", "is there wood boat ?"], "prompt": "Woman sitting in wood {}."}, {"index": 114, "image_id": 2401739, "entity": "boat", "caption": "pole is in boat", "question": ["is there pole ?", "is there boat ?"], "prompt": "pole is in {}"}, {"index": 115, "image_id": 2401739, "entity": "boat", "caption": "two boats side by side in the water", "question": ["are there two boats ?", "is there side ?", "is there the water ?"], "prompt": "two {}s side by side in the water"}, {"index": 116, "image_id": 2401211, "entity": "boat", "caption": "Man fishing in boat.", "question": ["is there man ?", "is there boat ?"], "prompt": "Man fishing in {}."}, {"index": 117, "image_id": 2400731, "entity": "boat", "caption": "water the boat is floating on ", "question": ["is there water ?", "is there the boat ?"], "prompt": "water the {} is floating on "}, {"index": 118, "image_id": 2400731, "entity": "boat", "caption": "apples that are on the boat", "question": ["are there apples ?", "is there the boat ?"], "prompt": "apples that are on the {}"}, {"index": 119, "image_id": 2400487, "entity": "boat", "caption": "red toy boat is in the water", "question": ["is there red toy boat ?", "is there the water ?"], "prompt": "red toy {} is in the water"}, {"index": 120, "image_id": 2400487, "entity": "boat", "caption": "The toy boat is in the water.", "question": ["is there the toy boat ?", "is there the water ?"], "prompt": "The toy {} is in the water."}, {"index": 121, "image_id": 2400486, "entity": "boat", "caption": "water where the boats are", "question": ["is there water ?", "are there the boats ?"], "prompt": "water where the {}s are"}, {"index": 122, "image_id": 2400240, "entity": "boat", "caption": "a lawn hair sitting near a boat.", "question": ["is there a lawn hair ?", "is there a boat ?"], "prompt": "a lawn hair sitting near a {}."}, {"index": 123, "image_id": 2400066, "entity": "boat", "caption": "Steps lead up to the boat", "question": ["are there steps ?", "is there the boat ?"], "prompt": "Steps lead up to the {}"}, {"index": 124, "image_id": 2400066, "entity": "boat", "caption": "The front of the boat has black netting", "question": ["is there the front ?", "is there the boat ?", "is there black netting ?"], "prompt": "The front of the {} has black netting"}, {"index": 125, "image_id": 2400066, "entity": "boat", "caption": "White boat docked next to the red boat", "question": ["is there white boat ?", "is there the red boat ?"], "prompt": "White {} docked next to the red {}"}, {"index": 126, "image_id": 2399658, "entity": "boat", "caption": "white metal fencing around boat", "question": ["is there white metal fencing ?", "is there boat ?"], "prompt": "white metal fencing around {}"}, {"index": 127, "image_id": 2399658, "entity": "boat", "caption": "rope attatched to a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "rope attatched to a {}"}, {"index": 128, "image_id": 2399025, "entity": "boat", "caption": "these are four people on the boat", "question": ["are there four people ?", "is there the boat ?"], "prompt": "these are four people on the {}"}, {"index": 129, "image_id": 2399025, "entity": "boat", "caption": "man standing on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man standing on a {}"}, {"index": 130, "image_id": 2398909, "entity": "boat", "caption": "man selling potatoes on a boat ", "question": ["is there man ?", "are there potatoes ?", "is there a boat ?"], "prompt": "man selling potatoes on a {} "}, {"index": 131, "image_id": 2398909, "entity": "boat", "caption": "Man is on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man is on a {}"}, {"index": 132, "image_id": 2398909, "entity": "boat", "caption": "man on boat is selling food", "question": ["is there man ?", "is there boat ?", "is there food ?"], "prompt": "man on {} is selling food"}, {"index": 133, "image_id": 2398909, "entity": "boat", "caption": "boat is on the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is on the water"}, {"index": 134, "image_id": 2398909, "entity": "boat", "caption": "boat door is open", "question": ["is there boat door ?"], "prompt": "{} door is open"}, {"index": 135, "image_id": 2398862, "entity": "boat", "caption": "this is a boat", "question": ["is there a boat ?"], "prompt": "this is a {}"}, {"index": 136, "image_id": 2398735, "entity": "boat", "caption": "The boat has wood panels.", "question": ["is there the boat ?", "are there wood panels ?"], "prompt": "The {} has wood panels."}, {"index": 137, "image_id": 2398609, "entity": "boat", "caption": "a rope tied to a boat", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "a rope tied to a {}"}, {"index": 138, "image_id": 2398396, "entity": "boat", "caption": "long green boat is on water", "question": ["is there long green boat ?", "is there water ?"], "prompt": "long green {} is on water"}, {"index": 139, "image_id": 2398396, "entity": "boat", "caption": "empty plastic bottle is in middle of boat", "question": ["is there empty plastic bottle ?", "is there middle ?", "is there boat ?"], "prompt": "empty plastic bottle is in middle of {}"}, {"index": 140, "image_id": 2398396, "entity": "boat", "caption": "Water is reflecting boat", "question": ["is there water ?", "is there boat ?"], "prompt": "Water is reflecting {}"}, {"index": 141, "image_id": 2398176, "entity": "boat", "caption": "The boat has equipment on it.", "question": ["is there the boat ?", "is there equipment ?"], "prompt": "The {} has equipment on it."}, {"index": 142, "image_id": 2398032, "entity": "boat", "caption": "The boat is on the water.", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 143, "image_id": 2398032, "entity": "boat", "caption": "The people are on the boat.", "question": ["are there the people ?", "is there the boat ?"], "prompt": "The people are on the {}."}, {"index": 144, "image_id": 2397696, "entity": "boat", "caption": "Ladder leaning against a boat.", "question": ["is there ladder ?", "is there a boat ?"], "prompt": "Ladder leaning against a {}."}, {"index": 145, "image_id": 2397163, "entity": "boat", "caption": "teddy bear sits on a boat", "question": ["is there a boat ?"], "prompt": "teddy bear sits on a {}"}, {"index": 146, "image_id": 2397163, "entity": "boat", "caption": "the teddy bear is on a boat", "question": ["is there the teddy bear ?", "is there a boat ?"], "prompt": "the teddy bear is on a {}"}, {"index": 147, "image_id": 2397163, "entity": "boat", "caption": "the boat is on the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is on the water"}, {"index": 148, "image_id": 2397042, "entity": "boat", "caption": "The top of the boat is blue.", "question": ["is there the top ?", "is there the boat ?"], "prompt": "The top of the {} is blue."}, {"index": 149, "image_id": 2396771, "entity": "boat", "caption": "The boat has long wooden planks", "question": ["is there the boat ?", "are there long wooden planks ?"], "prompt": "The {} has long wooden planks"}, {"index": 150, "image_id": 2396771, "entity": "boat", "caption": "The boat is resting on grass", "question": ["is there the boat ?", "is there grass ?"], "prompt": "The {} is resting on grass"}, {"index": 151, "image_id": 2396668, "entity": "boat", "caption": "Life preservers on top of a boat", "question": ["are there life preservers ?", "is there top ?", "is there a boat ?"], "prompt": "Life preservers on top of a {}"}, {"index": 152, "image_id": 2396583, "entity": "boat", "caption": "Man drives duck boat.", "question": ["is there man ?", "is there duck boat ?"], "prompt": "Man drives duck {}."}, {"index": 153, "image_id": 2396583, "entity": "boat", "caption": "people are sitting in duck boat", "question": ["are there people ?", "is there duck boat ?"], "prompt": "people are sitting in duck {}"}, {"index": 154, "image_id": 2395255, "entity": "boat", "caption": "letter m on boat", "question": ["is there letter ?", "is there boat ?"], "prompt": "letter m on {}"}, {"index": 155, "image_id": 2395255, "entity": "boat", "caption": "Red life preserver on a boat", "question": ["is there red life preserver ?", "is there a boat ?"], "prompt": "Red life preserver on a {}"}, {"index": 156, "image_id": 2395255, "entity": "boat", "caption": "Water splashing up in front of a boat", "question": ["is there water ?", "is there front ?", "is there a boat ?"], "prompt": "Water splashing up in front of a {}"}, {"index": 157, "image_id": 2395073, "entity": "boat", "caption": "a woman sits on a boat", "question": ["is there a woman ?", "is there a boat ?"], "prompt": "a woman sits on a {}"}, {"index": 158, "image_id": 2393753, "entity": "boat", "caption": "speed boat creating ripples in water", "question": ["is there speed boat ?", "are there ripples ?", "is there water ?"], "prompt": "speed {} creating ripples in water"}, {"index": 159, "image_id": 2393753, "entity": "boat", "caption": "light green boat cover", "question": ["is there light green boat cover ?"], "prompt": "light green {} cover"}, {"index": 160, "image_id": 2393562, "entity": "boat", "caption": "The boat has many windows", "question": ["is there the boat ?", "are there many windows ?"], "prompt": "The {} has many windows"}, {"index": 161, "image_id": 2393150, "entity": "boat", "caption": "the boat is from los angeles", "question": ["is there the boat ?"], "prompt": "the {} is from los angeles"}, {"index": 162, "image_id": 2393150, "entity": "boat", "caption": "the boat number is 17", "question": ["is there the boat number ?"], "prompt": "the {} number is 17"}, {"index": 163, "image_id": 2393150, "entity": "boat", "caption": "the boat has a cabin", "question": ["is there the boat ?", "is there a cabin ?"], "prompt": "the {} has a cabin"}, {"index": 164, "image_id": 2393150, "entity": "boat", "caption": "Where the police boat is from", "question": ["is there the police boat ?"], "prompt": "Where the police {} is from"}, {"index": 165, "image_id": 2393150, "entity": "boat", "caption": "Police officer driving the boat", "question": ["is there police officer ?", "is there the boat ?"], "prompt": "Police officer driving the {}"}, {"index": 166, "image_id": 2392895, "entity": "boat", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "dog is on a {}"}, {"index": 167, "image_id": 2391231, "entity": "boat", "caption": "gas can inside orange and white boat", "question": ["is there gas ?", "is there orange and white boat ?"], "prompt": "gas can inside orange and white {}"}, {"index": 168, "image_id": 2391099, "entity": "boat", "caption": "flag painted on the boat", "question": ["is there flag ?", "is there the boat ?"], "prompt": "flag painted on the {}"}, {"index": 169, "image_id": 2391099, "entity": "boat", "caption": "achomraich is name on side of boat", "question": ["is there name ?", "is there side ?", "is there boat ?"], "prompt": "achomraich is name on side of {}"}, {"index": 170, "image_id": 2390472, "entity": "boat", "caption": "Metal chain coming off front of boat.", "question": ["is there metal chain ?", "is there front ?", "is there boat ?"], "prompt": "Metal chain coming off front of {}."}, {"index": 171, "image_id": 2390472, "entity": "boat", "caption": "Green leaves on branches near boat.", "question": ["are there green leaves ?", "are there branches ?", "is there boat ?"], "prompt": "Green leaves on branches near {}."}, {"index": 172, "image_id": 2390472, "entity": "boat", "caption": "Boat is blue next to green boat.", "question": ["is there boat ?", "is there green boat ?"], "prompt": "Boat is blue next to green {}."}, {"index": 173, "image_id": 2388743, "entity": "boat", "caption": "a boat that has a clear window.", "question": ["is there a boat ?", "is there a clear window ?"], "prompt": "a {} that has a clear window."}, {"index": 174, "image_id": 2388725, "entity": "boat", "caption": "the yellow painted outside of a boat", "question": ["is there the yellow ?", "is there a boat ?"], "prompt": "the yellow painted outside of a {}"}, {"index": 175, "image_id": 2388588, "entity": "boat", "caption": "boat has a white stripe", "question": ["is there boat ?", "is there a white stripe ?"], "prompt": "{} has a white stripe"}, {"index": 176, "image_id": 2388588, "entity": "boat", "caption": "anchor of the boat is black", "question": ["is there anchor ?", "is there the boat ?"], "prompt": "anchor of the {} is black"}, {"index": 177, "image_id": 2388588, "entity": "boat", "caption": "people are on the boat ", "question": ["are there people ?", "is there the boat ?"], "prompt": "people are on the {} "}, {"index": 178, "image_id": 2388309, "entity": "boat", "caption": "the man is steering the boat", "question": ["is there the man ?", "is there the boat ?"], "prompt": "the man is steering the {}"}, {"index": 179, "image_id": 2388309, "entity": "boat", "caption": "blue boat rules sign", "question": ["are there blue boat rules ?"], "prompt": "blue {} rules sign"}, {"index": 180, "image_id": 2388309, "entity": "boat", "caption": "boats wake in the water", "question": ["are there boats ?", "is there the water ?"], "prompt": "{}s wake in the water"}, {"index": 181, "image_id": 2387705, "entity": "boat", "caption": "mast of a boat is wood", "question": ["is there mast ?", "is there a boat ?", "is there wood ?"], "prompt": "mast of a {} is wood"}, {"index": 182, "image_id": 2387564, "entity": "boat", "caption": "life guard is in a boat ", "question": ["is there life guard ?", "is there a boat ?"], "prompt": "life guard is in a {} "}, {"index": 183, "image_id": 2387564, "entity": "boat", "caption": "woman stands in a boat", "question": ["is there woman ?", "is there a boat ?"], "prompt": "woman stands in a {}"}, {"index": 184, "image_id": 2387146, "entity": "boat", "caption": "a man stand on a boat", "question": ["is there a man ?", "is there a boat ?"], "prompt": "a man stand on a {}"}, {"index": 185, "image_id": 2387146, "entity": "boat", "caption": "A group of red boats docked at the shore", "question": ["is there a group ?", "are there red boats ?", "is there the shore ?"], "prompt": "A group of red {}s docked at the shore"}, {"index": 186, "image_id": 2387146, "entity": "boat", "caption": "Person standing on red boat.", "question": ["is there person ?", "is there red boat ?"], "prompt": "Person standing on red {}."}, {"index": 187, "image_id": 2387146, "entity": "boat", "caption": "Red boat sitting in water.", "question": ["is there red boat ?", "is there water ?"], "prompt": "Red {} sitting in water."}, {"index": 188, "image_id": 2387137, "entity": "boat", "caption": "the woman is on a boat", "question": ["is there the woman ?", "is there a boat ?"], "prompt": "the woman is on a {}"}, {"index": 189, "image_id": 2386500, "entity": "boat", "caption": "rope tied at front of boat", "question": ["is there rope ?", "is there front ?", "is there boat ?"], "prompt": "rope tied at front of {}"}, {"index": 190, "image_id": 2385578, "entity": "boat", "caption": "Hook and chain hoist above boat.", "question": ["is there hook ?", "is there chain ?", "is there hoist ?", "is there boat ?"], "prompt": "Hook and chain hoist above {}."}, {"index": 191, "image_id": 2384997, "entity": "boat", "caption": "metal crane attached to a boat", "question": ["is there metal crane ?", "is there a boat ?"], "prompt": "metal crane attached to a {}"}, {"index": 192, "image_id": 2384997, "entity": "boat", "caption": "Tower lift on back of boat", "question": ["is there tower ?", "is there back ?", "is there boat ?"], "prompt": "Tower lift on back of {}"}, {"index": 193, "image_id": 2384727, "entity": "boat", "caption": "red and black metal boat smoke stack", "question": ["is there red and black metal boat smoke ?"], "prompt": "red and black metal {} smoke stack"}, {"index": 194, "image_id": 2384036, "entity": "boat", "caption": "The boat moving in the water causing a wave.", "question": ["is there the boat ?", "is there the water ?", "is there a wave ?"], "prompt": "The {} moving in the water causing a wave."}, {"index": 195, "image_id": 2384036, "entity": "boat", "caption": "A search light mounted on a boat", "question": ["is there a search light ?", "is there a boat ?"], "prompt": "A search light mounted on a {}"}, {"index": 196, "image_id": 2384036, "entity": "boat", "caption": "A boat mounted bull horn", "question": ["is there a boat ?", "is there bull horn ?"], "prompt": "A {} mounted bull horn"}, {"index": 197, "image_id": 2383929, "entity": "boat", "caption": "SF3-3999 writing on boat", "question": ["is there boat ?"], "prompt": "SF3-3999 writing on {}"}, {"index": 198, "image_id": 2383555, "entity": "boat", "caption": "a wooden boat oar", "question": ["is there a wooden boat ?", "is there oar ?"], "prompt": "a wooden {} oar"}, {"index": 199, "image_id": 2383462, "entity": "boat", "caption": "The boat is on land", "question": ["is there the boat ?", "is there land ?"], "prompt": "The {} is on land"}, {"index": 200, "image_id": 2383399, "entity": "boat", "caption": "water the boat is in", "question": ["is there the boat ?"], "prompt": "water the {} is in"}, {"index": 201, "image_id": 2383399, "entity": "boat", "caption": "deck of the boat the couple is on", "question": ["is there deck ?", "is there the boat ?", "is there the couple ?"], "prompt": "deck of the {} the couple is on"}, {"index": 202, "image_id": 2383399, "entity": "boat", "caption": "two people are in boat.", "question": ["are there two people ?", "is there boat ?"], "prompt": "two people are in {}."}, {"index": 203, "image_id": 2383272, "entity": "boat", "caption": "MASEN written on the boat", "question": ["is there the boat ?"], "prompt": "MASEN written on the {}"}, {"index": 204, "image_id": 2383272, "entity": "boat", "caption": "door on the boat is wood slats", "question": ["is there door ?", "is there the boat ?", "are there wood slats ?"], "prompt": "door on the {} is wood slats"}, {"index": 205, "image_id": 2382463, "entity": "boat", "caption": "The boat has two sails", "question": ["is there the boat ?", "are there two sails ?"], "prompt": "The {} has two sails"}, {"index": 206, "image_id": 2382231, "entity": "boat", "caption": "the dog is on a boat", "question": ["is there the dog ?", "is there a boat ?"], "prompt": "the dog is on a {}"}, {"index": 207, "image_id": 2382219, "entity": "boat", "caption": "the inflatable boat is red ", "question": ["is there the inflatable boat ?"], "prompt": "the inflatable {} is red "}, {"index": 208, "image_id": 2382219, "entity": "boat", "caption": "Life saving boat is red color.", "question": ["is there life saving boat ?", "is there red color ?"], "prompt": "Life saving {} is red color."}, {"index": 209, "image_id": 2382219, "entity": "boat", "caption": "The man is driving the boat", "question": ["is there the man ?", "is there the boat ?"], "prompt": "The man is driving the {}"}, {"index": 210, "image_id": 2382219, "entity": "boat", "caption": "The boat has a brown and white seat", "question": ["is there the boat ?", "is there a brown and white seat ?"], "prompt": "The {} has a brown and white seat"}, {"index": 211, "image_id": 2382102, "entity": "boat", "caption": "Person is barefoot standing on edge of boat.", "question": ["is there person ?", "is there edge ?", "is there boat ?"], "prompt": "Person is barefoot standing on edge of {}."}, {"index": 212, "image_id": 2382102, "entity": "boat", "caption": "the man is on the side of the boat", "question": ["is there the man ?", "is there the side ?", "is there the boat ?"], "prompt": "the man is on the side of the {}"}, {"index": 213, "image_id": 2381922, "entity": "boat", "caption": "the boat has a shark", "question": ["is there the boat ?", "is there a shark ?"], "prompt": "the {} has a shark"}, {"index": 214, "image_id": 2381922, "entity": "boat", "caption": "the boat has people ", "question": ["is there the boat ?", "are there people ?"], "prompt": "the {} has people "}, {"index": 215, "image_id": 2381685, "entity": "boat", "caption": "small boat tied to another boat", "question": ["is there small boat ?", "is there another boat ?"], "prompt": "small {} tied to another {}"}, {"index": 216, "image_id": 2381433, "entity": "boat", "caption": "rope hanging on a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "rope hanging on a {}"}, {"index": 217, "image_id": 2381084, "entity": "boat", "caption": "Cushions on boat are white.", "question": ["are there cushions ?", "is there boat ?"], "prompt": "Cushions on {} are white."}, {"index": 218, "image_id": 2381084, "entity": "boat", "caption": "Dog is standing on back of boat.", "question": ["is there dog ?", "is there boat ?"], "prompt": "Dog is standing on back of {}."}, {"index": 219, "image_id": 2380882, "entity": "boat", "caption": "A woman sitting on a boat reading", "question": ["is there a woman ?", "is there a boat ?"], "prompt": "A woman sitting on a {} reading"}, {"index": 220, "image_id": 2380594, "entity": "boat", "caption": "the boat has two outboard motors", "question": ["is there the boat ?", "are there two outboard motors ?"], "prompt": "the {} has two outboard motors"}, {"index": 221, "image_id": 2380594, "entity": "boat", "caption": "the boat is in the water ", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 222, "image_id": 2379791, "entity": "boat", "caption": "boats docked along the shoreline", "question": ["are there boats ?", "is there the shoreline ?"], "prompt": "{}s docked along the shoreline"}, {"index": 223, "image_id": 2379774, "entity": "boat", "caption": "the body of water the boat is in", "question": ["is there the body ?", "is there water ?", "is there the boat ?"], "prompt": "the body of water the {} is in"}, {"index": 224, "image_id": 2379714, "entity": "boat", "caption": "boats say nice on them", "question": ["are there boats ?"], "prompt": "{}s say nice on them"}, {"index": 225, "image_id": 2379714, "entity": "boat", "caption": "boat with life preserver on it", "question": ["is there boat ?", "is there life preserver ?"], "prompt": "{} with life preserver on it"}, {"index": 226, "image_id": 2379714, "entity": "boat", "caption": "nets and lines hang off boat", "question": ["are there nets ?", "are there lines ?", "is there boat ?"], "prompt": "nets and lines hang off {}"}, {"index": 227, "image_id": 2379714, "entity": "boat", "caption": "tarp covers top of boat", "question": ["is there tarp ?", "is there top ?", "is there boat ?"], "prompt": "tarp covers top of {}"}, {"index": 228, "image_id": 2379714, "entity": "boat", "caption": "man sits on boat", "question": ["is there man ?", "is there boat ?"], "prompt": "man sits on {}"}, {"index": 229, "image_id": 2379714, "entity": "boat", "caption": "man standing beside a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man standing beside a {}"}, {"index": 230, "image_id": 2379304, "entity": "boat", "caption": "a boat is in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "a {} is in the water"}, {"index": 231, "image_id": 2378904, "entity": "boat", "caption": "three boats at a boat dock", "question": ["are there three boats ?", "is there a boat dock ?"], "prompt": "three {}s at a {} dock"}, {"index": 232, "image_id": 2378904, "entity": "boat", "caption": "the boat is on a boat lift", "question": ["is there the boat ?", "is there a boat lift ?"], "prompt": "the {} is on a {} lift"}, {"index": 233, "image_id": 2378904, "entity": "boat", "caption": "blue rope attached to the boat", "question": ["is there blue rope ?", "is there the boat ?"], "prompt": "blue rope attached to the {}"}, {"index": 234, "image_id": 2378904, "entity": "boat", "caption": "boat docked on pier", "question": ["is there boat ?", "is there pier ?"], "prompt": "{} docked on pier"}, {"index": 235, "image_id": 2378460, "entity": "boat", "caption": "Row is on the boat. ", "question": ["is there row ?", "is there the boat ?"], "prompt": "Row is on the {}. "}, {"index": 236, "image_id": 2378460, "entity": "boat", "caption": "fruit laid out neatly in the closest boat", "question": ["is there fruit ?", "is there the closest boat ?"], "prompt": "fruit laid out neatly in the closest {}"}, {"index": 237, "image_id": 2378110, "entity": "boat", "caption": "rope ties boat to dock", "question": [], "prompt": "rope ties {} to dock"}, {"index": 238, "image_id": 2378110, "entity": "boat", "caption": "A banner is on the back of the boat", "question": ["is there a banner ?", "is there the back ?", "is there the boat ?"], "prompt": "A banner is on the back of the {}"}, {"index": 239, "image_id": 2378110, "entity": "boat", "caption": "Buoys are hanging off the boat", "question": ["are there buoys ?", "is there the boat ?"], "prompt": "Buoys are hanging off the {}"}, {"index": 240, "image_id": 2377887, "entity": "boat", "caption": "the emergency boats are on the ship", "question": ["are there the emergency boats ?", "is there the ship ?"], "prompt": "the emergency {}s are on the ship"}, {"index": 241, "image_id": 2377380, "entity": "boat", "caption": "ropes suspended over boats", "question": ["are there ropes ?", "are there boats ?"], "prompt": "ropes suspended over {}s"}, {"index": 242, "image_id": 2377380, "entity": "boat", "caption": "tip of boat bow", "question": ["is there tip ?", "is there boat ?"], "prompt": "tip of {} bow"}, {"index": 243, "image_id": 2377380, "entity": "boat", "caption": "a boat docked on land.", "question": ["is there a boat ?", "is there land ?"], "prompt": "a {} docked on land."}, {"index": 244, "image_id": 2377083, "entity": "boat", "caption": "Cord coming out of back of paddle boat", "question": ["is there cord ?", "is there back ?", "is there paddle boat ?"], "prompt": "Cord coming out of back of paddle {}"}, {"index": 245, "image_id": 2376246, "entity": "boat", "caption": "small red boat docked in water ", "question": ["is there small red boat ?", "is there water ?"], "prompt": "small red {} docked in water "}, {"index": 246, "image_id": 2375980, "entity": "boat", "caption": "A sign is atop the boat", "question": ["is there a sign ?", "is there the boat ?"], "prompt": "A sign is atop the {}"}, {"index": 247, "image_id": 2375980, "entity": "boat", "caption": "house boat docked on river", "question": ["is there house boat ?", "is there river ?"], "prompt": "house {} docked on river"}, {"index": 248, "image_id": 2375980, "entity": "boat", "caption": "many bikes piled onto boat", "question": ["are there many bikes ?", "is there boat ?"], "prompt": "many bikes piled onto {}"}, {"index": 249, "image_id": 2375275, "entity": "boat", "caption": "rope to secure the boat", "question": ["is there the boat ?"], "prompt": "rope to secure the {}"}, {"index": 250, "image_id": 2375275, "entity": "boat", "caption": "the blue rope attached to the boat", "question": ["is there the blue rope ?", "is there the boat ?"], "prompt": "the blue rope attached to the {}"}, {"index": 251, "image_id": 2374451, "entity": "boat", "caption": "life boat hanging on a ship", "question": ["is there life boat ?", "is there a ship ?"], "prompt": "life {} hanging on a ship"}, {"index": 252, "image_id": 2374451, "entity": "boat", "caption": "wires that hold the life boat", "question": ["are there wires ?", "is there the life boat ?"], "prompt": "wires that hold the life {}"}, {"index": 253, "image_id": 2374088, "entity": "boat", "caption": "A rope attached to a boat", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "A rope attached to a {}"}, {"index": 254, "image_id": 2373499, "entity": "boat", "caption": "team of people rowing boat", "question": ["is there team ?", "are there people ?", "is there boat ?"], "prompt": "team of people rowing {}"}, {"index": 255, "image_id": 2373351, "entity": "boat", "caption": "Woman sitting at the back of a boat wearing a light blue shirt", "question": ["is there woman ?", "is there the back ?", "is there a boat ?", "is there a light blue shirt ?"], "prompt": "Woman sitting at the back of a {} wearing a light blue shirt"}, {"index": 256, "image_id": 2373351, "entity": "boat", "caption": "Frothy wake left behind in the water as a boat travels", "question": ["is there frothy wake ?", "is there the water ?", "is there a boat ?"], "prompt": "Frothy wake left behind in the water as a {} travels"}, {"index": 257, "image_id": 2373126, "entity": "boat", "caption": "white boats parked in dock", "question": ["are there white boats ?", "is there dock ?"], "prompt": "white {}s parked in dock"}, {"index": 258, "image_id": 2372837, "entity": "boat", "caption": "a boat docked in a harbor", "question": ["is there a boat ?", "is there a harbor ?"], "prompt": "a {} docked in a harbor"}, {"index": 259, "image_id": 2372480, "entity": "boat", "caption": "A boat docked under a tunnel.", "question": ["is there a boat ?", "is there a tunnel ?"], "prompt": "A {} docked under a tunnel."}, {"index": 260, "image_id": 2372480, "entity": "boat", "caption": "boat is in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is in water"}, {"index": 261, "image_id": 2372341, "entity": "boat", "caption": "Man with red hat leaning on boat", "question": ["is there man ?", "is there red hat ?", "is there boat ?"], "prompt": "Man with red hat leaning on {}"}, {"index": 262, "image_id": 2372106, "entity": "boat", "caption": "man is standing on the back of the boat", "question": ["is there man ?", "is there the back ?", "is there the boat ?"], "prompt": "man is standing on the back of the {}"}, {"index": 263, "image_id": 2371942, "entity": "boat", "caption": "Rope tied to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "Rope tied to {}"}, {"index": 264, "image_id": 2371644, "entity": "boat", "caption": "man standing on bow of boat", "question": ["is there man ?", "is there bow ?", "is there boat ?"], "prompt": "man standing on bow of {}"}, {"index": 265, "image_id": 2371644, "entity": "boat", "caption": "man standing at the hull of a boat", "question": ["is there man ?", "is there the hull ?", "is there a boat ?"], "prompt": "man standing at the hull of a {}"}, {"index": 266, "image_id": 2371288, "entity": "boat", "caption": "The birds are following the boat.", "question": ["are there the birds ?", "is there the boat ?"], "prompt": "The birds are following the {}."}, {"index": 267, "image_id": 2371288, "entity": "boat", "caption": "The people are standing on the boat.", "question": ["are there the people ?", "is there the boat ?"], "prompt": "The people are standing on the {}."}, {"index": 268, "image_id": 2371288, "entity": "boat", "caption": "birds flying around boat", "question": ["are there birds ?"], "prompt": "birds flying around {}"}, {"index": 269, "image_id": 2371288, "entity": "boat", "caption": "birds flying around shrimpers boat", "question": ["are there birds ?", "are there shrimpers ?"], "prompt": "birds flying around shrimpers {}"}, {"index": 270, "image_id": 2371288, "entity": "boat", "caption": "three men are visible on the boat", "question": ["are there three men ?", "is there the boat ?"], "prompt": "three men are visible on the {}"}, {"index": 271, "image_id": 2371288, "entity": "boat", "caption": "the boat has caused some waves in the water", "question": ["is there the boat ?", "are there some waves ?", "is there the water ?"], "prompt": "the {} has caused some waves in the water"}, {"index": 272, "image_id": 2371137, "entity": "boat", "caption": "The name says \" MAVIS\" on boat", "question": ["is there the name ?", "is there boat ?"], "prompt": "The name says \" MAVIS\" on {}"}, {"index": 273, "image_id": 2371004, "entity": "boat", "caption": "The sailboats all have tall masts", "question": ["are there the sailboats ?", "are there tall masts ?"], "prompt": "The sail{}s all have tall masts"}, {"index": 274, "image_id": 2370993, "entity": "boat", "caption": "boat has wooden floor", "question": ["is there boat ?", "is there wooden floor ?"], "prompt": "{} has wooden floor"}, {"index": 275, "image_id": 2370335, "entity": "boat", "caption": "MAMA written on side of boat", "question": ["is there mama ?", "is there side ?", "is there boat ?"], "prompt": "MAMA written on side of {}"}, {"index": 276, "image_id": 2370335, "entity": "boat", "caption": "boat is on a trailer", "question": ["is there boat ?", "is there a trailer ?"], "prompt": "{} is on a trailer"}, {"index": 277, "image_id": 2370335, "entity": "boat", "caption": "A boat is on a trailer", "question": ["is there a boat ?", "is there a trailer ?"], "prompt": "A {} is on a trailer"}, {"index": 278, "image_id": 2370335, "entity": "boat", "caption": "The boat is at somebody's home", "question": ["is there the boat ?", "is there somebody's home ?"], "prompt": "The {} is at somebody's home"}, {"index": 279, "image_id": 2369706, "entity": "boat", "caption": "boat docked at the harbor", "question": ["is there boat ?", "is there the harbor ?"], "prompt": "{} docked at the harbor"}, {"index": 280, "image_id": 2368857, "entity": "boat", "caption": "The boats have tall sails ", "question": ["are there the boats ?", "are there tall sails ?"], "prompt": "The {}s have tall sails "}, {"index": 281, "image_id": 2368689, "entity": "boat", "caption": "TGI painted on the side of the boat", "question": ["is there the side ?", "is there the boat ?"], "prompt": "TGI painted on the side of the {}"}, {"index": 282, "image_id": 2368436, "entity": "boat", "caption": "Bananas are in a boat", "question": ["are there bananas ?", "is there a boat ?"], "prompt": "Bananas are in a {}"}, {"index": 283, "image_id": 2368415, "entity": "boat", "caption": "dog that's standing on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "dog that's standing on a {}"}, {"index": 284, "image_id": 2368415, "entity": "boat", "caption": "water that boats are sitting in", "question": ["is there water ?", "are there boats ?"], "prompt": "water that {}s are sitting in"}, {"index": 285, "image_id": 2368415, "entity": "boat", "caption": "boat brown dog is standing on", "question": ["is there boat brown dog ?"], "prompt": "{} brown dog is standing on"}, {"index": 286, "image_id": 2368415, "entity": "boat", "caption": "metal loop hanging on boat", "question": ["is there metal loop ?", "is there boat ?"], "prompt": "metal loop hanging on {}"}, {"index": 287, "image_id": 2368054, "entity": "boat", "caption": "The dog feet is on the boat.", "question": ["are there the dog feet ?", "is there the boat ?"], "prompt": "The dog feet is on the {}."}, {"index": 288, "image_id": 2368009, "entity": "boat", "caption": "rope ties boat to the dock", "question": ["are there rope ties boat ?", "is there the dock ?"], "prompt": "rope ties {} to the dock"}, {"index": 289, "image_id": 2368009, "entity": "boat", "caption": "fire extinguishers on beard a boat", "question": ["are there fire extinguishers ?", "is there a boat ?"], "prompt": "fire extinguishers on beard a {}"}, {"index": 290, "image_id": 2367819, "entity": "boat", "caption": "two people are still on the boat", "question": ["are there two people ?", "is there the boat ?"], "prompt": "two people are still on the {}"}, {"index": 291, "image_id": 2367673, "entity": "boat", "caption": "a blue boat tied to a dock", "question": ["is there a blue boat ?", "is there a dock ?"], "prompt": "a blue {} tied to a dock"}, {"index": 292, "image_id": 2367673, "entity": "boat", "caption": "a white boat tied to a dock", "question": ["is there a white boat ?", "is there a dock ?"], "prompt": "a white {} tied to a dock"}, {"index": 293, "image_id": 2367655, "entity": "boat", "caption": "Blue and white boat floating in water", "question": ["is there blue and white boat ?", "is there water ?"], "prompt": "Blue and white {} floating in water"}, {"index": 294, "image_id": 2367655, "entity": "boat", "caption": "water pouring out the back of a boat.", "question": ["is there water ?", "is there the back ?", "is there a boat ?"], "prompt": "water pouring out the back of a {}."}, {"index": 295, "image_id": 2367579, "entity": "boat", "caption": "man driving a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man driving a {}"}, {"index": 296, "image_id": 2365612, "entity": "boat", "caption": "the bike is leaning on the boat ", "question": ["is there the bike ?", "is there the boat ?"], "prompt": "the bike is leaning on the {} "}, {"index": 297, "image_id": 2365530, "entity": "boat", "caption": "The white lettering of the word WAVE on the boat. ", "question": ["is there the white lettering ?", "is there the word wave ?", "is there the boat ?"], "prompt": "The white lettering of the word WAVE on the {}. "}, {"index": 298, "image_id": 2365530, "entity": "boat", "caption": "Grey hair on a man bent over the boat. ", "question": ["is there grey hair ?", "is there a man ?", "is there the boat ?"], "prompt": "Grey hair on a man bent over the {}. "}, {"index": 299, "image_id": 2365530, "entity": "boat", "caption": "The black and white side of a boat that says NEXT WAVE", "question": ["is there the black and white side ?", "is there a boat ?"], "prompt": "The black and white side of a {} that says NEXT WAVE"}, {"index": 300, "image_id": 2365530, "entity": "boat", "caption": "The boat says \"Next wave\"", "question": ["is there the boat ?", "is there next wave ?"], "prompt": "The {} says \"Next wave\""}, {"index": 301, "image_id": 2365530, "entity": "boat", "caption": "A rolled up mast on the boat", "question": ["is there a rolled up mast ?", "is there the boat ?"], "prompt": "A rolled up mast on the {}"}, {"index": 302, "image_id": 2365310, "entity": "boat", "caption": "lorries packed near the boats", "question": ["are there lorries ?", "are there the boats ?"], "prompt": "lorries packed near the {}s"}, {"index": 303, "image_id": 2365007, "entity": "boat", "caption": "water where boats are docks", "question": ["is there water ?", "are there boats ?", "are there docks ?"], "prompt": "water where {}s are docks"}, {"index": 304, "image_id": 2364291, "entity": "boat", "caption": "the tire is on the boat", "question": ["is there the tire ?", "is there the boat ?"], "prompt": "the tire is on the {}"}, {"index": 305, "image_id": 2364078, "entity": "boat", "caption": "White chain round a boat", "question": ["is there a boat ?"], "prompt": "White chain round a {}"}, {"index": 306, "image_id": 2364078, "entity": "boat", "caption": "The sailboat has a tall mast.", "question": ["is there the sailboat ?", "is there a tall mast ?"], "prompt": "The sail{} has a tall mast."}, {"index": 307, "image_id": 2364078, "entity": "boat", "caption": "A boat is moving in the water behind the boat.", "question": ["is there a boat ?", "is there the water ?", "is there the boat ?"], "prompt": "A {} is moving in the water behind the {}."}, {"index": 308, "image_id": 2362967, "entity": "boat", "caption": "a boat tied to shore", "question": ["is there a boat ?", "is there shore ?"], "prompt": "a {} tied to shore"}, {"index": 309, "image_id": 2362967, "entity": "boat", "caption": "boat docked on river", "question": ["is there boat ?", "is there river ?"], "prompt": "{} docked on river"}, {"index": 310, "image_id": 2362967, "entity": "boat", "caption": "ther boat is white in color ", "question": ["is there ther boat ?", "is there color ?"], "prompt": "ther {} is white in color "}, {"index": 311, "image_id": 2362967, "entity": "boat", "caption": "the boat is white in color", "question": ["is there the boat ?", "is there color ?"], "prompt": "the {} is white in color"}, {"index": 312, "image_id": 2362871, "entity": "boat", "caption": "blue boat hanging on side of ship", "question": ["is there blue boat ?", "is there side ?", "is there ship ?"], "prompt": "blue {} hanging on side of ship"}, {"index": 313, "image_id": 2362329, "entity": "boat", "caption": "front end of boat opened up", "question": ["is there front end ?", "is there boat ?"], "prompt": "front end of {} opened up"}, {"index": 314, "image_id": 2362280, "entity": "boat", "caption": "name of boat painted in white", "question": ["is there name ?", "is there boat ?", "is there white ?"], "prompt": "name of {} painted in white"}, {"index": 315, "image_id": 2362280, "entity": "boat", "caption": "two black rubber tires mounted on boat", "question": ["are there two black rubber tires ?", "is there boat ?"], "prompt": "two black rubber tires mounted on {}"}, {"index": 316, "image_id": 2362246, "entity": "boat", "caption": "a river with a lot of boats docked in it", "question": ["is there a river ?", "is there a lot ?", "are there boats ?"], "prompt": "a river with a lot of {}s docked in it"}, {"index": 317, "image_id": 2362239, "entity": "boat", "caption": "Man kneeling down on boat. ", "question": ["is there man ?", "is there boat ?"], "prompt": "Man kneeling down on {}. "}, {"index": 318, "image_id": 2361892, "entity": "boat", "caption": "the lady is in a boat", "question": ["is there the lady ?", "is there a boat ?"], "prompt": "the lady is in a {}"}, {"index": 319, "image_id": 2361892, "entity": "boat", "caption": "small boat sailing on water", "question": ["is there small boat ?", "is there water ?"], "prompt": "small {} sailing on water"}, {"index": 320, "image_id": 2361742, "entity": "boat", "caption": "Rope attached to front of boat", "question": ["is there rope ?", "is there front ?", "is there boat ?"], "prompt": "Rope attached to front of {}"}, {"index": 321, "image_id": 2361562, "entity": "boat", "caption": "the cat is on the boat", "question": ["is there the cat ?", "is there the boat ?"], "prompt": "the cat is on the {}"}, {"index": 322, "image_id": 2361562, "entity": "boat", "caption": "the boat is at a port", "question": ["is there the boat ?", "is there a port ?"], "prompt": "the {} is at a port"}, {"index": 323, "image_id": 2361562, "entity": "boat", "caption": "the cat stands on the boat", "question": ["is there the cat ?", "is there the boat ?"], "prompt": "the cat stands on the {}"}, {"index": 324, "image_id": 2361562, "entity": "boat", "caption": "Cat is standing on back of boat.", "question": ["is there cat ?", "is there boat ?"], "prompt": "Cat is standing on back of {}."}, {"index": 325, "image_id": 2361562, "entity": "boat", "caption": "boat capsized in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} capsized in water"}, {"index": 326, "image_id": 2361536, "entity": "boat", "caption": "cows are near a boat", "question": ["are there cows ?", "is there a boat ?"], "prompt": "cows are near a {}"}, {"index": 327, "image_id": 2361359, "entity": "boat", "caption": "A motor is on the boat", "question": ["is there a motor ?", "is there the boat ?"], "prompt": "A motor is on the {}"}, {"index": 328, "image_id": 2359602, "entity": "boat", "caption": "A log is keeping the boat off the ground.", "question": ["is there a log ?", "is there the boat ?", "is there the ground ?"], "prompt": "A log is keeping the {} off the ground."}, {"index": 329, "image_id": 2359008, "entity": "boat", "caption": "Sail boat docked at marina.", "question": ["is there sail boat ?", "is there marina ?"], "prompt": "Sail {} docked at marina."}, {"index": 330, "image_id": 2359008, "entity": "boat", "caption": "White sail boat docked in water.", "question": ["is there white sail boat ?", "is there water ?"], "prompt": "White sail {} docked in water."}, {"index": 331, "image_id": 2358936, "entity": "boat", "caption": "a dog is on the boat", "question": ["is there a dog ?", "is there the boat ?"], "prompt": "a dog is on the {}"}, {"index": 332, "image_id": 2358604, "entity": "boat", "caption": "people are on the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "people are on the {}"}, {"index": 333, "image_id": 2357802, "entity": "boat", "caption": "The people are on a boat on a lake", "question": ["are there the people ?", "is there a boat ?", "is there a lake ?"], "prompt": "The people are on a {} on a lake"}, {"index": 334, "image_id": 2357398, "entity": "boat", "caption": "two woman walking on a boat", "question": ["is there two woman ?", "is there a boat ?"], "prompt": "two woman walking on a {}"}, {"index": 335, "image_id": 2357398, "entity": "boat", "caption": "the top of the boat is wood", "question": ["is there the top ?", "is there the boat ?", "is there wood ?"], "prompt": "the top of the {} is wood"}, {"index": 336, "image_id": 2357118, "entity": "boat", "caption": "Person sitting inside of boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person sitting inside of {}."}, {"index": 337, "image_id": 2357118, "entity": "boat", "caption": "the sun is on the boat", "question": ["is there the sun ?", "is there the boat ?"], "prompt": "the sun is on the {}"}, {"index": 338, "image_id": 2355707, "entity": "boat", "caption": "The boat has 3 windows", "question": ["is there the boat ?", "are there 3 windows ?"], "prompt": "The {} has 3 windows"}, {"index": 339, "image_id": 2355505, "entity": "boat", "caption": "Box on a boat oar", "question": ["is there a boat ?"], "prompt": "Box on a {} oar"}, {"index": 340, "image_id": 2355505, "entity": "boat", "caption": "Flag hanging from a boat.", "question": ["is there flag ?", "is there a boat ?"], "prompt": "Flag hanging from a {}."}, {"index": 341, "image_id": 2355361, "entity": "boat", "caption": "two triangle shaped white sails on sailboat", "question": ["is there two triangle ?", "are there white sails ?", "is there sailboat ?"], "prompt": "two triangle shaped white sails on sail{}"}, {"index": 342, "image_id": 2355027, "entity": "boat", "caption": "boat pulled up to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled up to dock"}, {"index": 343, "image_id": 2355027, "entity": "boat", "caption": "boat has flagpole on back", "question": ["is there boat ?", "is there flagpole ?"], "prompt": "{} has flagpole on back"}, {"index": 344, "image_id": 2355027, "entity": "boat", "caption": "flag stuck into a boat", "question": ["is there flag ?", "is there a boat ?"], "prompt": "flag stuck into a {}"}, {"index": 345, "image_id": 2354959, "entity": "boat", "caption": "green moss growing on the side of the boat", "question": ["is there green moss ?", "is there the side ?", "is there the boat ?"], "prompt": "green moss growing on the side of the {}"}, {"index": 346, "image_id": 2354939, "entity": "boat", "caption": "the sailboat is white", "question": ["is there the sailboat ?"], "prompt": "the sail{} is white"}, {"index": 347, "image_id": 2354939, "entity": "boat", "caption": "a small boat sailing", "question": ["is there a small boat ?"], "prompt": "a small {} sailing"}, {"index": 348, "image_id": 2354714, "entity": "boat", "caption": "The life preserver on the front of the boat.", "question": ["is there the life preserver ?", "is there the front ?", "is there the boat ?"], "prompt": "The life preserver on the front of the {}."}, {"index": 349, "image_id": 2354714, "entity": "boat", "caption": "this is a boat ", "question": ["is there a boat ?"], "prompt": "this is a {} "}, {"index": 350, "image_id": 2354714, "entity": "boat", "caption": "waves stirred up by white boat", "question": ["are there waves ?", "is there white boat ?"], "prompt": "waves stirred up by white {}"}, {"index": 351, "image_id": 2354714, "entity": "boat", "caption": "red and white flag waving on boat", "question": ["is there red and white flag ?", "is there boat ?"], "prompt": "red and white flag waving on {}"}, {"index": 352, "image_id": 2354714, "entity": "boat", "caption": "tan rope hanging on rail of boat", "question": ["is there rail ?", "is there boat ?"], "prompt": "tan rope hanging on rail of {}"}, {"index": 353, "image_id": 2354458, "entity": "boat", "caption": "Tire hanging from boat", "question": ["is there tire ?", "is there boat ?"], "prompt": "Tire hanging from {}"}, {"index": 354, "image_id": 2354458, "entity": "boat", "caption": "Silva Lopes is the name of boat", "question": ["are there silva lopes ?", "is there the name ?", "is there boat ?"], "prompt": "Silva Lopes is the name of {}"}, {"index": 355, "image_id": 2354402, "entity": "boat", "caption": "woman sitting on boat bow", "question": ["is there woman ?", "is there boat bow ?"], "prompt": "woman sitting on {} bow"}, {"index": 356, "image_id": 2354402, "entity": "boat", "caption": "Person is barefoot on boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person is barefoot on {}."}, {"index": 357, "image_id": 2354402, "entity": "boat", "caption": "Person sitting on boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person sitting on {}."}, {"index": 358, "image_id": 2354402, "entity": "boat", "caption": "Wood boat floating in water.", "question": ["is there wood boat ?", "is there water ?"], "prompt": "Wood {} floating in water."}, {"index": 359, "image_id": 2354178, "entity": "boat", "caption": "a flag is on the boat", "question": ["is there a flag ?", "is there the boat ?"], "prompt": "a flag is on the {}"}, {"index": 360, "image_id": 2354178, "entity": "boat", "caption": "a small boat is on the water", "question": ["is there a small boat ?", "is there the water ?"], "prompt": "a small {} is on the water"}, {"index": 361, "image_id": 2354178, "entity": "boat", "caption": "people standing close to the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "people standing close to the {}"}, {"index": 362, "image_id": 2354017, "entity": "boat", "caption": "The rolled up sail of the boat.", "question": ["is there the rolled up sail ?", "is there the boat ?"], "prompt": "The rolled up sail of the {}."}, {"index": 363, "image_id": 2353866, "entity": "boat", "caption": "boat pulled at dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled at dock"}, {"index": 364, "image_id": 2353866, "entity": "boat", "caption": "boat has overhead tent", "question": ["is there boat ?", "is there overhead tent ?"], "prompt": "{} has overhead tent"}, {"index": 365, "image_id": 2353358, "entity": "boat", "caption": "red life save on boat", "question": ["is there red life ?", "is there boat ?"], "prompt": "red life save on {}"}, {"index": 366, "image_id": 2353358, "entity": "boat", "caption": "rope hanging from boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope hanging from {}"}, {"index": 367, "image_id": 2353358, "entity": "boat", "caption": "rope attached to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope attached to {}"}, {"index": 368, "image_id": 2353153, "entity": "boat", "caption": "the boat has a red covering", "question": ["is there the boat ?", "is there a red covering ?"], "prompt": "the {} has a red covering"}, {"index": 369, "image_id": 2352684, "entity": "boat", "caption": "metal post and boat reflected in the water", "question": ["is there metal post ?", "is there boat ?", "is there the water ?"], "prompt": "metal post and {} reflected in the water"}, {"index": 370, "image_id": 2352424, "entity": "boat", "caption": "yellow mast stick up out of a boat", "question": ["is there yellow mast ?", "is there a boat ?"], "prompt": "yellow mast stick up out of a {}"}, {"index": 371, "image_id": 2351791, "entity": "boat", "caption": "The man and woman are in a boat.", "question": ["is there the man ?", "is there woman ?", "is there a boat ?"], "prompt": "The man and woman are in a {}."}, {"index": 372, "image_id": 2351791, "entity": "boat", "caption": "Woman sitting on boat.", "question": ["is there woman ?", "is there boat ?"], "prompt": "Woman sitting on {}."}, {"index": 373, "image_id": 2351791, "entity": "boat", "caption": "handle of a boat oar", "question": ["is there handle ?", "is there a boat ?"], "prompt": "handle of a {} oar"}, {"index": 374, "image_id": 2351188, "entity": "boat", "caption": "People stand next to the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "People stand next to the {}"}, {"index": 375, "image_id": 2351188, "entity": "boat", "caption": "Bicycles are on the boat", "question": ["are there bicycles ?", "is there the boat ?"], "prompt": "Bicycles are on the {}"}, {"index": 376, "image_id": 2351016, "entity": "boat", "caption": "boat is floating in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is floating in water"}, {"index": 377, "image_id": 2351016, "entity": "boat", "caption": "rope tied to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope tied to {}"}, {"index": 378, "image_id": 2350876, "entity": "boat", "caption": "the rope hanging off of the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "the rope hanging off of the {}"}, {"index": 379, "image_id": 2350876, "entity": "boat", "caption": "boat docked on shore ", "question": ["is there boat ?", "is there shore ?"], "prompt": "{} docked on shore "}, {"index": 380, "image_id": 2350876, "entity": "boat", "caption": "red rope attached to boat ", "question": ["is there red rope ?", "is there boat ?"], "prompt": "red rope attached to {} "}, {"index": 381, "image_id": 2350876, "entity": "boat", "caption": "rope attached to boat ", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope attached to {} "}, {"index": 382, "image_id": 2350779, "entity": "boat", "caption": "rope tied to a small boat", "question": ["is there rope ?", "is there a small boat ?"], "prompt": "rope tied to a small {}"}, {"index": 383, "image_id": 2350779, "entity": "boat", "caption": "a floating tire mounted on boat", "question": ["is there a floating tire ?", "is there boat ?"], "prompt": "a floating tire mounted on {}"}, {"index": 384, "image_id": 2350779, "entity": "boat", "caption": "two boats mounted by a rope", "question": ["are there two boats ?", "is there a rope ?"], "prompt": "two {}s mounted by a rope"}, {"index": 385, "image_id": 2350779, "entity": "boat", "caption": "rope holding two boats", "question": ["is there rope ?", "are there two boats ?"], "prompt": "rope holding two {}s"}, {"index": 386, "image_id": 2350304, "entity": "boat", "caption": "A boat that has a lot of books on it. ", "question": ["is there a boat ?", "is there a lot ?", "are there books ?"], "prompt": "A {} that has a lot of books on it. "}, {"index": 387, "image_id": 2349748, "entity": "boat", "caption": "Man drivng a boat.", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man drivng a {}."}, {"index": 388, "image_id": 2349748, "entity": "boat", "caption": "Woman standing in the boat.", "question": ["is there woman ?", "is there the boat ?"], "prompt": "Woman standing in the {}."}, {"index": 389, "image_id": 2349440, "entity": "boat", "caption": "American flag hanging from the boat", "question": ["is there american flag ?", "is there the boat ?"], "prompt": "American flag hanging from the {}"}, {"index": 390, "image_id": 2349440, "entity": "boat", "caption": "The boat has a yellow logo on it ", "question": ["is there the boat ?", "is there a yellow logo ?"], "prompt": "The {} has a yellow logo on it "}, {"index": 391, "image_id": 2348095, "entity": "boat", "caption": "red rope budled on the boat", "question": ["is there red rope ?", "is there the boat ?"], "prompt": "red rope budled on the {}"}, {"index": 392, "image_id": 2348078, "entity": "boat", "caption": "the people are standing beside a boat", "question": ["are there the people ?", "is there a boat ?"], "prompt": "the people are standing beside a {}"}, {"index": 393, "image_id": 2347906, "entity": "boat", "caption": "boat pulled to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled to dock"}, {"index": 394, "image_id": 2347681, "entity": "boat", "caption": "the can next to the boat", "question": ["is there the boat ?"], "prompt": "the can next to the {}"}, {"index": 395, "image_id": 2347233, "entity": "boat", "caption": "the rope tied to the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "the rope tied to the {}"}, {"index": 396, "image_id": 2346193, "entity": "boat", "caption": "top of boat is white", "question": ["is there top ?", "is there boat ?"], "prompt": "top of {} is white"}, {"index": 397, "image_id": 2345781, "entity": "boat", "caption": "A thick rope attached to a boat", "question": ["is there a thick rope ?", "is there a boat ?"], "prompt": "A thick rope attached to a {}"}, {"index": 398, "image_id": 2345781, "entity": "boat", "caption": "boat is in the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is in the water"}, {"index": 399, "image_id": 2345272, "entity": "boat", "caption": "2 black dogs are on the boat", "question": ["are there 2 black dogs ?", "is there the boat ?"], "prompt": "2 black dogs are on the {}"}, {"index": 400, "image_id": 2345272, "entity": "boat", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the {} holding a dog with a leash"}, {"index": 401, "image_id": 2345019, "entity": "boat", "caption": "The man is standing in the boat.", "question": ["is there the man ?", "is there the boat ?"], "prompt": "The man is standing in the {}."}, {"index": 402, "image_id": 2344745, "entity": "boat", "caption": "Woman dumping water out of boat", "question": ["is there woman ?", "is there water ?", "is there boat ?"], "prompt": "Woman dumping water out of {}"}, {"index": 403, "image_id": 2344677, "entity": "boat", "caption": "An owner holding her dog over the boat so it can have a view of the water.", "question": ["is there an owner ?", "is there her dog ?", "is there the boat ?", "is there a view ?", "is there the water ?"], "prompt": "An owner holding her dog over the {} so it can have a view of the water."}, {"index": 404, "image_id": 2344627, "entity": "boat", "caption": "a boat is by the dock", "question": ["is there a boat ?", "is there the dock ?"], "prompt": "a {} is by the dock"}, {"index": 405, "image_id": 2344618, "entity": "boat", "caption": "a boat dock on the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "a {} dock on the water"}, {"index": 406, "image_id": 2343974, "entity": "boat", "caption": "tires attached to boat are black", "question": ["are there tires ?", "is there boat ?"], "prompt": "tires attached to {} are black"}, {"index": 407, "image_id": 2343968, "entity": "boat", "caption": "the boats are in water ", "question": ["are there the boats ?", "is there water ?"], "prompt": "the {}s are in water "}, {"index": 408, "image_id": 2343968, "entity": "boat", "caption": "the buskets are in the boat ", "question": ["are there the buskets ?", "is there the boat ?"], "prompt": "the buskets are in the {} "}, {"index": 409, "image_id": 2343968, "entity": "boat", "caption": "The kid on the large boat that is sitting down.", "question": ["is there the kid ?", "is there the large boat ?"], "prompt": "The kid on the large {} that is sitting down."}, {"index": 410, "image_id": 2343968, "entity": "boat", "caption": "The long boat the two kids are on.", "question": ["is there the long boat ?", "are there the two kids ?"], "prompt": "The long {} the two kids are on."}, {"index": 411, "image_id": 2343749, "entity": "boat", "caption": "boat docked at the shore", "question": ["is there boat ?", "is there the shore ?"], "prompt": "{} docked at the shore"}, {"index": 412, "image_id": 2343527, "entity": "boat", "caption": "water splashing on back of boat ", "question": ["is there back ?", "is there boat ?"], "prompt": "water splashing on back of {} "}, {"index": 413, "image_id": 2343527, "entity": "boat", "caption": "rudder is on the back of the boat", "question": ["is there rudder ?", "is there the back ?", "is there the boat ?"], "prompt": "rudder is on the back of the {}"}, {"index": 414, "image_id": 2343527, "entity": "boat", "caption": "a rubber tire is hanging on the side of the boat", "question": ["is there a rubber tire ?", "is there the side ?", "is there the boat ?"], "prompt": "a rubber tire is hanging on the side of the {}"}, {"index": 415, "image_id": 2343527, "entity": "boat", "caption": "a white cross is on the top of the boat", "question": ["is there the top ?", "is there the boat ?"], "prompt": "a white cross is on the top of the {}"}, {"index": 416, "image_id": 2343527, "entity": "boat", "caption": "a person is standing on the back of the boat", "question": ["is there a person ?", "is there the back ?", "is there the boat ?"], "prompt": "a person is standing on the back of the {}"}, {"index": 417, "image_id": 2342814, "entity": "boat", "caption": "two handles are on the back of the boat", "question": ["are there two handles ?", "is there the back ?", "is there the boat ?"], "prompt": "two handles are on the back of the {}"}, {"index": 418, "image_id": 2342814, "entity": "boat", "caption": "a blue box is on the boat", "question": ["is there a blue box ?", "is there the boat ?"], "prompt": "a blue box is on the {}"}, {"index": 419, "image_id": 2342814, "entity": "boat", "caption": "a first aid kit is on the boat", "question": ["is there a first aid kit ?", "is there the boat ?"], "prompt": "a first aid kit is on the {}"}, {"index": 420, "image_id": 2342814, "entity": "boat", "caption": "the boat has silver handles", "question": ["is there the boat ?", "are there silver handles ?"], "prompt": "the {} has silver handles"}, {"index": 421, "image_id": 2342814, "entity": "boat", "caption": "a white box is on the boat", "question": ["is there the boat ?"], "prompt": "a white box is on the {}"}, {"index": 422, "image_id": 2342814, "entity": "boat", "caption": "white handles are on the boat", "question": ["are there white handles ?", "is there the boat ?"], "prompt": "white handles are on the {}"}, {"index": 423, "image_id": 2342338, "entity": "boat", "caption": "man stands in a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man stands in a {}"}, {"index": 424, "image_id": 2342338, "entity": "boat", "caption": "they are sitting in the boat", "question": ["is there the boat ?"], "prompt": "they are sitting in the {}"}, {"index": 425, "image_id": 2341913, "entity": "boat", "caption": "boat is moving in the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is moving in the water"}, {"index": 426, "image_id": 2341403, "entity": "boat", "caption": "The boat has a red stripe.", "question": ["is there the boat ?", "is there a red stripe ?"], "prompt": "The {} has a red stripe."}, {"index": 427, "image_id": 2341403, "entity": "boat", "caption": "The boat has a red and green stripe.", "question": ["is there the boat ?", "is there a red and green stripe ?"], "prompt": "The {} has a red and green stripe."}, {"index": 428, "image_id": 2341403, "entity": "boat", "caption": "the boat is on sand", "question": ["is there the boat ?", "is there sand ?"], "prompt": "the {} is on sand"}, {"index": 429, "image_id": 2341403, "entity": "boat", "caption": "rope wound around the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope wound around the {}"}, {"index": 430, "image_id": 2341403, "entity": "boat", "caption": "the boat has a red stripe", "question": ["is there the boat ?", "is there a red stripe ?"], "prompt": "the {} has a red stripe"}, {"index": 431, "image_id": 2341403, "entity": "boat", "caption": "rope tied around the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied around the {}"}, {"index": 432, "image_id": 2341358, "entity": "boat", "caption": "the man is in a boat ", "question": ["is there the man ?", "is there a boat ?"], "prompt": "the man is in a {} "}, {"index": 433, "image_id": 2341331, "entity": "boat", "caption": "the boat has an inboard engine", "question": ["is there the boat ?", "is there an inboard engine ?"], "prompt": "the {} has an inboard engine"}, {"index": 434, "image_id": 2341331, "entity": "boat", "caption": "the steering wheel is in the boat", "question": ["is there the steering wheel ?", "is there the boat ?"], "prompt": "the steering wheel is in the {}"}, {"index": 435, "image_id": 2341331, "entity": "boat", "caption": "windows are on the boat", "question": ["are there windows ?", "is there the boat ?"], "prompt": "windows are on the {}"}, {"index": 436, "image_id": 2341331, "entity": "boat", "caption": "rope tied to the front of the boat", "question": ["is there rope ?", "is there the front ?", "is there the boat ?"], "prompt": "rope tied to the front of the {}"}, {"index": 437, "image_id": 2341331, "entity": "boat", "caption": "rope tied to back of the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied to back of the {}"}, {"index": 438, "image_id": 2340730, "entity": "boat", "caption": "hatches are on the bow of the boat", "question": ["are there hatches ?", "is there the bow ?", "is there the boat ?"], "prompt": "hatches are on the bow of the {}"}, {"index": 439, "image_id": 2339716, "entity": "boat", "caption": "Person in the background is standing on a boat", "question": ["is there person ?", "is there the background ?", "is there a boat ?"], "prompt": "Person in the background is standing on a {}"}, {"index": 440, "image_id": 2335633, "entity": "boat", "caption": "The family is safe on a boat", "question": ["is there the family ?", "is there a boat ?"], "prompt": "The family is safe on a {}"}, {"index": 441, "image_id": 2335557, "entity": "boat", "caption": "A boat is floating in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "A {} is floating in the water"}, {"index": 442, "image_id": 2335557, "entity": "boat", "caption": "A boat is carrying many people", "question": ["is there a boat ?", "are there many people ?"], "prompt": "A {} is carrying many people"}, {"index": 443, "image_id": 2335513, "entity": "boat", "caption": "dark water the boat is on", "question": ["is there dark water ?", "is there the boat ?"], "prompt": "dark water the {} is on"}, {"index": 444, "image_id": 2335383, "entity": "boat", "caption": "one old boat stuck on beach", "question": ["is there one old boat ?", "is there beach ?"], "prompt": "one old {} stuck on beach"}, {"index": 445, "image_id": 2335383, "entity": "boat", "caption": "Rope hanging from the bottom of a boat", "question": ["is there rope ?", "is there the bottom ?", "is there a boat ?"], "prompt": "Rope hanging from the bottom of a {}"}, {"index": 446, "image_id": 2335383, "entity": "boat", "caption": "A boat is sitting on a lot", "question": ["is there a boat ?", "is there a lot ?"], "prompt": "A {} is sitting on a lot"}, {"index": 447, "image_id": 2335383, "entity": "boat", "caption": "The boat is casting a shadow", "question": ["is there the boat ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow"}, {"index": 448, "image_id": 2335383, "entity": "boat", "caption": "The boat is close to the ocean", "question": ["is there the boat ?", "is there the ocean ?"], "prompt": "The {} is close to the ocean"}, {"index": 449, "image_id": 2335220, "entity": "boat", "caption": "small boat parked next to a dock", "question": ["is there small boat ?", "is there a dock ?"], "prompt": "small {} parked next to a dock"}, {"index": 450, "image_id": 2335207, "entity": "boat", "caption": "The boat has many windows.", "question": ["is there the boat ?", "are there many windows ?"], "prompt": "The {} has many windows."}, {"index": 451, "image_id": 2335104, "entity": "boat", "caption": "the dog is on the boat", "question": ["is there the dog ?", "is there the boat ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2335104, "entity": "boat", "caption": "a pillow is in on the boat", "question": ["is there a pillow ?", "is there the boat ?"], "prompt": "a pillow is in on the {}"}, {"index": 453, "image_id": 2334367, "entity": "boat", "caption": "The dog is on the boat ", "question": ["is there the dog ?", "is there the boat ?"], "prompt": "The dog is on the {} "}, {"index": 454, "image_id": 2334367, "entity": "boat", "caption": "Bubbley wake of the boat", "question": ["is there bubbley wake ?", "is there the boat ?"], "prompt": "Bubbley wake of the {}"}, {"index": 455, "image_id": 2334187, "entity": "boat", "caption": "the boat has pigeons", "question": ["is there the boat ?", "are there pigeons ?"], "prompt": "the {} has pigeons"}, {"index": 456, "image_id": 2334187, "entity": "boat", "caption": "the oars are in the boat", "question": ["are there the oars ?", "is there the boat ?"], "prompt": "the oars are in the {}"}, {"index": 457, "image_id": 2334187, "entity": "boat", "caption": "the boat has rope trim", "question": ["is there the boat ?", "is there rope ?"], "prompt": "the {} has rope trim"}, {"index": 458, "image_id": 2333973, "entity": "boat", "caption": "a silver oar to row a boat", "question": ["is there a silver oar ?", "is there a boat ?"], "prompt": "a silver oar to row a {}"}, {"index": 459, "image_id": 2333973, "entity": "boat", "caption": "Blue writing us out of the white boats", "question": ["are there the white boats ?"], "prompt": "Blue writing us out of the white {}s"}, {"index": 460, "image_id": 2333538, "entity": "boat", "caption": "a bridge connects to the boat", "question": ["is there a bridge ?", "is there the boat ?"], "prompt": "a bridge connects to the {}"}, {"index": 461, "image_id": 2332476, "entity": "boat", "caption": "boat carries three humans", "question": ["is there boat ?", "are there three humans ?"], "prompt": "{} carries three humans"}, {"index": 462, "image_id": 2332476, "entity": "boat", "caption": "life preserver attached to boat", "question": ["is there life preserver ?", "is there boat ?"], "prompt": "life preserver attached to {}"}, {"index": 463, "image_id": 2332444, "entity": "boat", "caption": "rope going down from the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope going down from the {}"}, {"index": 464, "image_id": 2331968, "entity": "boat", "caption": "man steering white boat", "question": ["is there man ?", "is there white boat ?"], "prompt": "man steering white {}"}, {"index": 465, "image_id": 2331968, "entity": "boat", "caption": "white rope attached to boat", "question": ["is there boat ?"], "prompt": "white rope attached to {}"}, {"index": 466, "image_id": 2331586, "entity": "boat", "caption": "the boat is tipping", "question": ["is there the boat ?"], "prompt": "the {} is tipping"}, {"index": 467, "image_id": 2330347, "entity": "boat", "caption": "The lady is sitting in the boat.", "question": ["is there the lady ?", "is there the boat ?"], "prompt": "The lady is sitting in the {}."}, {"index": 468, "image_id": 2330347, "entity": "boat", "caption": "People are on the boat.", "question": ["are there people ?", "is there the boat ?"], "prompt": "People are on the {}."}, {"index": 469, "image_id": 2329011, "entity": "boat", "caption": "white rope tied to a boat", "question": ["is there a boat ?"], "prompt": "white rope tied to a {}"}, {"index": 470, "image_id": 2328185, "entity": "boat", "caption": "food sits on boat", "question": ["is there food ?", "is there boat ?"], "prompt": "food sits on {}"}, {"index": 471, "image_id": 2328185, "entity": "boat", "caption": "human stands on boat", "question": ["is there human ?", "is there boat ?"], "prompt": "human stands on {}"}, {"index": 472, "image_id": 2328185, "entity": "boat", "caption": "a river boat painted red, white and blue", "question": ["is there a river boat ?"], "prompt": "a river {} painted red, white and blue"}, {"index": 473, "image_id": 2327815, "entity": "boat", "caption": "man standing in the front of a boat", "question": ["is there man ?", "is there the front ?", "is there a boat ?"], "prompt": "man standing in the front of a {}"}, {"index": 474, "image_id": 2327709, "entity": "boat", "caption": "boat that man is sitting in", "question": ["is there boat ?", "is there that man ?"], "prompt": "{} that man is sitting in"}, {"index": 475, "image_id": 2327444, "entity": "boat", "caption": "bushes are behind boat", "question": ["are there bushes ?", "is there boat ?"], "prompt": "bushes are behind {}"}, {"index": 476, "image_id": 2326620, "entity": "boat", "caption": "fruits are in the boat ", "question": ["are there fruits ?", "is there the boat ?"], "prompt": "fruits are in the {} "}, {"index": 477, "image_id": 2326389, "entity": "boat", "caption": "water boats are in", "question": ["are there water boats ?"], "prompt": "water {}s are in"}, {"index": 478, "image_id": 2325957, "entity": "boat", "caption": "life preserver hung on boat", "question": ["is there life preserver ?", "is there boat ?"], "prompt": "life preserver hung on {}"}, {"index": 479, "image_id": 2325634, "entity": "boat", "caption": "Red rope attached to metal boat.", "question": ["is there red rope ?", "is there metal boat ?"], "prompt": "Red rope attached to metal {}."}, {"index": 480, "image_id": 2325634, "entity": "boat", "caption": "Metal boat anchored with yellow rope.", "question": ["is there metal boat ?", "is there yellow rope ?"], "prompt": "Metal {} anchored with yellow rope."}, {"index": 481, "image_id": 2325522, "entity": "boat", "caption": "the boat is floating on the water ", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is floating on the water "}, {"index": 482, "image_id": 2325172, "entity": "boat", "caption": "the boat is on the sand", "question": ["is there the boat ?", "is there the sand ?"], "prompt": "the {} is on the sand"}, {"index": 483, "image_id": 2325172, "entity": "boat", "caption": "lettering is on the boat", "question": ["is there lettering ?", "is there the boat ?"], "prompt": "lettering is on the {}"}, {"index": 484, "image_id": 2325172, "entity": "boat", "caption": "a mast is on the boat", "question": ["is there a mast ?", "is there the boat ?"], "prompt": "a mast is on the {}"}, {"index": 485, "image_id": 2325172, "entity": "boat", "caption": "numbers are in the boat", "question": ["are there numbers ?", "is there the boat ?"], "prompt": "numbers are in the {}"}, {"index": 486, "image_id": 2324743, "entity": "boat", "caption": "The bottom of the boat is the color red ", "question": ["is there the bottom ?", "is there the boat ?", "is there the color red ?"], "prompt": "The bottom of the {} is the color red "}, {"index": 487, "image_id": 2324743, "entity": "boat", "caption": "dragon painted on the side of the boat", "question": ["is there dragon ?", "is there the side ?", "is there the boat ?"], "prompt": "dragon painted on the side of the {}"}, {"index": 488, "image_id": 2324603, "entity": "boat", "caption": "an old wooden boat dock on the side of the river", "question": ["is there the side ?", "is there the river ?"], "prompt": "an old wooden {} dock on the side of the river"}, {"index": 489, "image_id": 2324332, "entity": "boat", "caption": "Sand patches behind the boat", "question": ["are there sand patches ?", "is there the boat ?"], "prompt": "Sand patches behind the {}"}, {"index": 490, "image_id": 2324332, "entity": "boat", "caption": "The boat sits on the bank. ", "question": ["is there the boat ?", "is there the bank ?"], "prompt": "The {} sits on the bank. "}, {"index": 491, "image_id": 2324332, "entity": "boat", "caption": "The flowers next to the boat. ", "question": ["are there the flowers ?", "is there the boat ?"], "prompt": "The flowers next to the {}. "}, {"index": 492, "image_id": 2324332, "entity": "boat", "caption": "The boat sits in the rocks. ", "question": ["is there the boat ?", "are there the rocks ?"], "prompt": "The {} sits in the rocks. "}, {"index": 493, "image_id": 2323258, "entity": "boat", "caption": "Some boats are carrying oars for rowing", "question": ["are there some boats ?", "are there oars ?"], "prompt": "Some {}s are carrying oars for rowing"}, {"index": 494, "image_id": 2323258, "entity": "boat", "caption": "White boat with floats attached", "question": ["is there white boat ?", "are there floats ?"], "prompt": "White {} with floats attached"}, {"index": 495, "image_id": 2321960, "entity": "boat", "caption": "two boats parked at the dock", "question": ["are there two boats ?", "is there the dock ?"], "prompt": "two {}s parked at the dock"}, {"index": 496, "image_id": 2321105, "entity": "boat", "caption": "Sign on boat says Manon Manon.", "question": ["is there sign ?", "is there boat ?"], "prompt": "Sign on {} says Manon Manon."}, {"index": 497, "image_id": 2321105, "entity": "boat", "caption": "A grey barrel sits in an old boat.", "question": ["is there a grey barrel ?", "is there an old boat ?"], "prompt": "A grey barrel sits in an old {}."}, {"index": 498, "image_id": 2320922, "entity": "boat", "caption": "Water that boat sits on", "question": ["is there water ?", "is there that boat ?"], "prompt": "Water that {} sits on"}, {"index": 499, "image_id": 2320922, "entity": "boat", "caption": " some chains anchoring a boat", "question": ["are there some chains ?", "is there a boat ?"], "prompt": " some chains anchoring a {}"}, {"index": 500, "image_id": 2320922, "entity": "boat", "caption": "water boat is sitting in", "question": ["is there water boat ?"], "prompt": "water {} is sitting in"}, {"index": 501, "image_id": 2320922, "entity": "boat", "caption": "the boat is in a marina", "question": ["is there the boat ?", "is there a marina ?"], "prompt": "the {} is in a marina"}, {"index": 502, "image_id": 2320725, "entity": "boat", "caption": "The boat is on land.", "question": ["is there the boat ?", "is there land ?"], "prompt": "The {} is on land."}, {"index": 503, "image_id": 2319811, "entity": "boat", "caption": "the grey stripe on the boat", "question": ["is there the grey stripe ?", "is there the boat ?"], "prompt": "the grey stripe on the {}"}, {"index": 504, "image_id": 2318574, "entity": "boat", "caption": "the letter \"R\"on the boat", "question": ["is there the letter ?", "is there the boat ?"], "prompt": "the letter \"R\"on the {}"}, {"index": 505, "image_id": 2318574, "entity": "boat", "caption": "water for boats to sail", "question": ["is there water ?", "are there boats ?"], "prompt": "water for {}s to sail"}, {"index": 506, "image_id": 2318144, "entity": "boat", "caption": "crowd of people gathered around looking at the huge boat", "question": ["is there crowd ?", "are there people ?", "is there the huge boat ?"], "prompt": "crowd of people gathered around looking at the huge {}"}, {"index": 507, "image_id": 2318140, "entity": "boat", "caption": "white boat docked at the pier", "question": ["is there white boat ?", "is there the pier ?"], "prompt": "white {} docked at the pier"}, {"index": 508, "image_id": 2317528, "entity": "boat", "caption": "boats lined up side by side", "question": ["are there boats ?", "is there side ?", "is there side ?"], "prompt": "{}s lined up side by side"}, {"index": 509, "image_id": 2317528, "entity": "boat", "caption": "Yellow number 9 painted onto a blue square on a red boat", "question": ["is there yellow number ?", "is there a blue square ?", "is there a red boat ?"], "prompt": "Yellow number 9 painted onto a blue square on a red {}"}, {"index": 510, "image_id": 2317528, "entity": "boat", "caption": "Orange carved dragon head on a boat", "question": ["is there orange carved dragon head ?", "is there a boat ?"], "prompt": "Orange carved dragon head on a {}"}, {"index": 511, "image_id": 2317528, "entity": "boat", "caption": "Blue flower painted on a boat", "question": ["is there blue flower ?", "is there a boat ?"], "prompt": "Blue flower painted on a {}"}, {"index": 512, "image_id": 2317528, "entity": "boat", "caption": "Orange carved tail on a boat", "question": ["is there orange carved tail ?", "is there a boat ?"], "prompt": "Orange carved tail on a {}"}, {"index": 513, "image_id": 2317528, "entity": "boat", "caption": "Green carved tail on a boat", "question": ["is there green carved tail ?", "is there a boat ?"], "prompt": "Green carved tail on a {}"}, {"index": 514, "image_id": 2317472, "entity": "boat", "caption": "large metal rope pulleys on boat", "question": ["are there large metal rope pulleys ?", "is there boat ?"], "prompt": "large metal rope pulleys on {}"}, {"index": 515, "image_id": 2316999, "entity": "boat", "caption": "open deck are of boat", "question": ["is there open deck ?", "is there boat ?"], "prompt": "open deck are of {}"}, {"index": 516, "image_id": 2316999, "entity": "boat", "caption": "the deck of this boat is blue", "question": ["is there the deck ?", "is there this boat ?"], "prompt": "the deck of this {} is blue"}, {"index": 517, "image_id": 2316715, "entity": "boat", "caption": "large white boat casting reflection on water", "question": ["is there large white boat ?", "is there reflection ?", "is there water ?"], "prompt": "large white {} casting reflection on water"}, {"index": 518, "image_id": 2316663, "entity": "boat", "caption": "Rope tied across a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "Rope tied across a {}"}, {"index": 519, "image_id": 2316469, "entity": "boat", "caption": "the life ring is on a boat", "question": ["is there the life ring ?", "is there a boat ?"], "prompt": "the life ring is on a {}"}, {"index": 520, "image_id": 2316232, "entity": "boat", "caption": "row boat docked in water", "question": ["is there row boat ?", "is there water ?"], "prompt": "row {} docked in water"}, {"index": 521, "image_id": 2316232, "entity": "boat", "caption": "this is a row boat", "question": ["is there a row boat ?"], "prompt": "this is a row {}"}, {"index": 522, "image_id": 2316232, "entity": "boat", "caption": "The rope tied to the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "The rope tied to the {}"}, {"index": 523, "image_id": 2316232, "entity": "boat", "caption": "A boat that is sitting in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "A {} that is sitting in the water"}, {"index": 524, "image_id": 2316174, "entity": "boat", "caption": "The letter R on the boat.", "question": ["is there the letter r ?", "is there the boat ?"], "prompt": "The letter R on the {}."}, {"index": 525, "image_id": 2316174, "entity": "boat", "caption": "The word PLYMOUTH on the boat.", "question": ["is there the word ?", "is there plymouth ?", "is there the boat ?"], "prompt": "The word PLYMOUTH on the {}."}, {"index": 526, "image_id": 2316161, "entity": "boat", "caption": "The wooden boat the woman is sitting in.", "question": ["is there the wooden boat ?", "is there the woman ?"], "prompt": "The wooden {} the woman is sitting in."}, {"index": 527, "image_id": 2316161, "entity": "boat", "caption": "boat holds woman", "question": ["is there boat ?", "is there woman ?"], "prompt": "{} holds woman"}, {"index": 528, "image_id": 2316102, "entity": "boat", "caption": "number 33 painted on a boat.", "question": ["is there number ?", "is there a boat ?"], "prompt": "number 33 painted on a {}."}, {"index": 529, "image_id": 2315952, "entity": "boat", "caption": "Rope tied to the boat.", "question": ["is there rope ?", "is there the boat ?"], "prompt": "Rope tied to the {}."}, {"index": 530, "image_id": 2315952, "entity": "boat", "caption": "Chain tied to the boat.", "question": ["is there chain ?", "is there the boat ?"], "prompt": "Chain tied to the {}."}, {"index": 531, "image_id": 2315952, "entity": "boat", "caption": "red plastic buoys hanging from boat", "question": ["are there red plastic buoys ?", "is there boat ?"], "prompt": "red plastic buoys hanging from {}"}, {"index": 532, "image_id": 2315952, "entity": "boat", "caption": "black tire hanging from side of boat", "question": ["is there black tire ?", "is there side ?", "is there boat ?"], "prompt": "black tire hanging from side of {}"}, {"index": 533, "image_id": 2315952, "entity": "boat", "caption": "boueys attached to boat", "question": ["is there boat ?"], "prompt": "boueys attached to {}"}, {"index": 534, "image_id": 2315666, "entity": "boat", "caption": "red flag hanging from boat in water ", "question": ["is there red flag ?", "is there boat ?", "is there water ?"], "prompt": "red flag hanging from {} in water "}, {"index": 535, "image_id": 2414707, "entity": "boat", "caption": "man pushing a lifeboat", "question": ["is there man ?", "is there a lifeboat ?"], "prompt": "man pushing a life{}"}, {"index": 536, "image_id": 2414707, "entity": "boat", "caption": "Men pushing a boat", "question": ["are there men ?", "is there a boat ?"], "prompt": "Men pushing a {}"}, {"index": 537, "image_id": 2414285, "entity": "boat", "caption": "A bicycle is on the boat.", "question": ["is there a bicycle ?", "is there the boat ?"], "prompt": "A bicycle is on the {}."}, {"index": 538, "image_id": 2414285, "entity": "boat", "caption": "The bicycle is on the deck of a boat.", "question": ["is there the bicycle ?", "is there the deck ?", "is there a boat ?"], "prompt": "The bicycle is on the deck of a {}."}, {"index": 539, "image_id": 2414285, "entity": "boat", "caption": "This is part of the mast of the boat.", "question": ["is there part ?", "is there the mast ?", "is there the boat ?"], "prompt": "This is part of the mast of the {}."}, {"index": 540, "image_id": 2414285, "entity": "boat", "caption": "Rope is on the deck of the boat.", "question": ["is there rope ?", "is there the deck ?", "is there the boat ?"], "prompt": "Rope is on the deck of the {}."}, {"index": 541, "image_id": 2414285, "entity": "boat", "caption": "small boat with boat sitting on it", "question": ["is there small boat ?", "is there boat ?"], "prompt": "small {} with {} sitting on it"}, {"index": 542, "image_id": 2414285, "entity": "boat", "caption": "A rope tied to a boat.", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "A rope tied to a {}."}, {"index": 543, "image_id": 2414008, "entity": "boat", "caption": "Bottles made boats floating in the water.", "question": ["are there bottles ?", "are there boats ?", "is there the water ?"], "prompt": "Bottles made {}s floating in the water."}, {"index": 544, "image_id": 2413336, "entity": "boat", "caption": "the kid is standing on the boat", "question": ["is there the kid ?", "is there the boat ?"], "prompt": "the kid is standing on the {}"}, {"index": 545, "image_id": 2413281, "entity": "boat", "caption": "Two oars inside boat.", "question": ["are there two oars ?", "is there boat ?"], "prompt": "Two oars inside {}."}, {"index": 546, "image_id": 2413281, "entity": "boat", "caption": "Rope coiled inside boat.", "question": ["is there inside boat ?"], "prompt": "Rope coiled inside {}."}, {"index": 547, "image_id": 2413281, "entity": "boat", "caption": "boat tied to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} tied to dock"}, {"index": 548, "image_id": 2413281, "entity": "boat", "caption": "exposed wood where blue boat paint has worn away", "question": ["is there wood ?", "is there blue boat paint ?"], "prompt": "exposed wood where blue {} paint has worn away"}, {"index": 549, "image_id": 2412726, "entity": "boat", "caption": "The boats are on the water", "question": ["are there the boats ?", "is there the water ?"], "prompt": "The {}s are on the water"}, {"index": 550, "image_id": 2412726, "entity": "boat", "caption": "boats trimmed in light blue", "question": ["are there boats ?", "is there light blue ?"], "prompt": "{}s trimmed in light blue"}, {"index": 551, "image_id": 2412667, "entity": "boat", "caption": "woman painted on side of boat", "question": ["is there woman ?", "is there side ?", "is there boat ?"], "prompt": "woman painted on side of {}"}, {"index": 552, "image_id": 2412667, "entity": "boat", "caption": "Woman painted on large multi-colored boat", "question": ["is there woman ?", "is there large multi-colored boat ?"], "prompt": "Woman painted on large multi-colored {}"}, {"index": 553, "image_id": 2412667, "entity": "boat", "caption": "Woman painted on the boat", "question": ["is there woman ?", "is there the boat ?"], "prompt": "Woman painted on the {}"}, {"index": 554, "image_id": 2412272, "entity": "boat", "caption": "boats are in the water", "question": ["are there boats ?", "is there the water ?"], "prompt": "{}s are in the water"}, {"index": 555, "image_id": 2412272, "entity": "boat", "caption": "\"Intrepid\" painted on front of boat", "question": ["is there front ?", "is there boat ?"], "prompt": "\"Intrepid\" painted on front of {}"}, {"index": 556, "image_id": 2412205, "entity": "boat", "caption": "the man is riding ina boat", "question": ["is there the man ?", "is there ina boat ?"], "prompt": "the man is riding ina {}"}, {"index": 557, "image_id": 2412205, "entity": "boat", "caption": "a boat racing along a lake", "question": ["is there a boat ?", "is there a lake ?"], "prompt": "a {} racing along a lake"}, {"index": 558, "image_id": 2412205, "entity": "boat", "caption": "Man is in a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man is in a {}"}, {"index": 559, "image_id": 2412205, "entity": "boat", "caption": "Engine of boat is tan", "question": ["is there engine ?", "is there boat ?", "is there tan ?"], "prompt": "Engine of {} is tan"}, {"index": 560, "image_id": 2412205, "entity": "boat", "caption": "boat has wooden bench", "question": ["is there boat ?", "is there wooden bench ?"], "prompt": "{} has wooden bench"}, {"index": 561, "image_id": 2411896, "entity": "boat", "caption": "Large boat pulling containers", "question": ["is there large boat ?"], "prompt": "Large {} pulling containers"}, {"index": 562, "image_id": 2415372, "entity": "boat", "caption": "Rope attaching boat to boardwalk", "question": ["is there boat ?"], "prompt": "Rope attaching {} to boardwalk"}, {"index": 563, "image_id": 2415691, "entity": "boat", "caption": "boat and cabin reflected in clear smooth water", "question": ["is there boat ?", "is there cabin ?", "is there clear smooth water ?"], "prompt": "{} and cabin reflected in clear smooth water"}, {"index": 564, "image_id": 2416767, "entity": "boat", "caption": "2 identical boats are next to each other in the water ", "question": ["are there 2 identical boats ?", "is there the water ?"], "prompt": "2 identical {}s are next to each other in the water "}, {"index": 565, "image_id": 2416767, "entity": "boat", "caption": "ropes hang over the boat near the dock", "question": ["are there ropes ?", "is there the boat ?", "is there the dock ?"], "prompt": "ropes hang over the {} near the dock"}, {"index": 566, "image_id": 2417150, "entity": "boat", "caption": "man driving the boat", "question": ["is there man ?", "is there the boat ?"], "prompt": "man driving the {}"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n04461696.json b/data/imagenet/compositions/prompts/n04461696.json
new file mode 100644
index 0000000000000000000000000000000000000000..b6fe830b8c58bb2e880bf19ab5e0170da455ebed
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n04461696.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 107967, "entity": "truck", "caption": "A window is open on the truck", "question": ["is there a window ?", "is there the truck ?"], "prompt": "A window is open on the {}"}, {"index": 1, "image_id": 150364, "entity": "truck", "caption": "front left wheel of tow truck", "question": ["is there front left wheel ?", "is there tow truck ?"], "prompt": "front left wheel of tow {}"}, {"index": 2, "image_id": 150393, "entity": "truck", "caption": "A truck that probably sells seafood", "question": ["is there a truck ?", "is there seafood ?"], "prompt": "A {} that probably sells seafood"}, {"index": 3, "image_id": 150486, "entity": "truck", "caption": "This is a basket on a bucket truck.", "question": ["is there a basket ?", "is there a bucket truck ?"], "prompt": "This is a basket on a bucket {}."}, {"index": 4, "image_id": 150497, "entity": "truck", "caption": "Firetruck parked in garage", "question": ["is there firetruck ?", "is there garage ?"], "prompt": "Fire{} parked in garage"}, {"index": 5, "image_id": 285972, "entity": "truck", "caption": "a gas station pump by truck", "question": ["is there a gas station pump ?", "is there truck ?"], "prompt": "a gas station pump by {}"}, {"index": 6, "image_id": 498093, "entity": "truck", "caption": "green face painted on a truck", "question": ["is there green face ?", "is there a truck ?"], "prompt": "green face painted on a {}"}, {"index": 7, "image_id": 498093, "entity": "truck", "caption": "Blue painted letters on the side of truck.", "question": ["are there blue painted letters ?", "is there the side ?", "is there truck ?"], "prompt": "Blue painted letters on the side of {}."}, {"index": 8, "image_id": 713062, "entity": "truck", "caption": "black door handle on the truck", "question": ["is there black door ?", "is there the truck ?"], "prompt": "black door handle on the {}"}, {"index": 9, "image_id": 713419, "entity": "truck", "caption": "Woman standing next to truck ", "question": ["is there woman ?", "is there truck ?"], "prompt": "Woman standing next to {} "}, {"index": 10, "image_id": 713503, "entity": "truck", "caption": "A blue rope tied to a truck", "question": ["is there a blue rope ?", "is there a truck ?"], "prompt": "A blue rope tied to a {}"}, {"index": 11, "image_id": 713614, "entity": "truck", "caption": "container on truck has pink flowers painted on it", "question": ["is there container ?", "is there truck ?", "are there pink flowers ?"], "prompt": "container on {} has pink flowers painted on it"}, {"index": 12, "image_id": 713614, "entity": "truck", "caption": "large white sack that is full is hung from back of truck ", "question": ["is there large white sack ?", "is there truck ?"], "prompt": "large white sack that is full is hung from back of {} "}, {"index": 13, "image_id": 713614, "entity": "truck", "caption": "Lotus Flower painted on back of garbage truck", "question": ["is there lotus flower ?", "is there garbage truck ?"], "prompt": "Lotus Flower painted on back of garbage {}"}, {"index": 14, "image_id": 1159845, "entity": "truck", "caption": "bright colored star painted on the back of the truck", "question": ["is there bright colored star ?", "is there the back ?", "is there the truck ?"], "prompt": "bright colored star painted on the back of the {}"}, {"index": 15, "image_id": 1159845, "entity": "truck", "caption": "two grey tarp covered bundles on the back of the truck", "question": ["is there two grey tarp ?", "are there bundles ?", "is there the back ?", "is there the truck ?"], "prompt": "two grey tarp covered bundles on the back of the {}"}, {"index": 16, "image_id": 1160061, "entity": "truck", "caption": "The person standing in the open door of the blue truck.", "question": ["is there the person ?", "is there the open door ?", "is there the blue truck ?"], "prompt": "The person standing in the open door of the blue {}."}, {"index": 17, "image_id": 1160061, "entity": "truck", "caption": "The white shirt the person is wearing at the door of the truck.", "question": ["is there the white shirt ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The white shirt the person is wearing at the door of the {}."}, {"index": 18, "image_id": 1160061, "entity": "truck", "caption": "The pants the person standing in the door of the truck is wearing.", "question": ["are there the pants ?", "is there the person ?", "is there the door ?", "is there the truck ?"], "prompt": "The pants the person standing in the door of the {} is wearing."}, {"index": 19, "image_id": 1592126, "entity": "truck", "caption": "Potatoes are on the back of a truck", "question": ["are there potatoes ?", "is there the back ?", "is there a truck ?"], "prompt": "Potatoes are on the back of a {}"}, {"index": 20, "image_id": 1592126, "entity": "truck", "caption": "Bags of potatoes are on back of a truck", "question": ["are there bags ?", "are there potatoes ?", "is there a truck ?"], "prompt": "Bags of potatoes are on back of a {}"}, {"index": 21, "image_id": 1592160, "entity": "truck", "caption": "an orange pick up truck with an open hood", "question": ["is there an orange pick ?", "is there truck ?", "is there an open hood ?"], "prompt": "an orange pick up {} with an open hood"}, {"index": 22, "image_id": 1592291, "entity": "truck", "caption": "bird painted on the side of the truck", "question": ["is there bird ?", "is there the side ?", "is there the truck ?"], "prompt": "bird painted on the side of the {}"}, {"index": 23, "image_id": 1592584, "entity": "truck", "caption": "An orange cone is on the white truck", "question": ["is there an orange cone ?", "is there the white truck ?"], "prompt": "An orange cone is on the white {}"}, {"index": 24, "image_id": 1592584, "entity": "truck", "caption": "The truck has a license plate", "question": ["is there the truck ?", "is there a license plate ?"], "prompt": "The {} has a license plate"}, {"index": 25, "image_id": 1592584, "entity": "truck", "caption": "Red letters on the trucks grill", "question": ["are there red letters ?", "are there the trucks ?"], "prompt": "Red letters on the {}s grill"}, {"index": 26, "image_id": 1592584, "entity": "truck", "caption": "The truck has a windsheild ", "question": ["is there the truck ?", "is there a windsheild ?"], "prompt": "The {} has a windsheild "}, {"index": 27, "image_id": 1592951, "entity": "truck", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The {} on the boat is blue in color."}, {"index": 28, "image_id": 2413810, "entity": "truck", "caption": "The truck has a tall exhaust pipe", "question": ["is there the truck ?", "is there a tall exhaust pipe ?"], "prompt": "The {} has a tall exhaust pipe"}, {"index": 29, "image_id": 2413318, "entity": "truck", "caption": "Some packet kept on the deck of the truck", "question": ["is there some packet ?", "is there the deck ?", "is there the truck ?"], "prompt": "Some packet kept on the deck of the {}"}, {"index": 30, "image_id": 2413318, "entity": "truck", "caption": "people are riding the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are riding the {}"}, {"index": 31, "image_id": 2413114, "entity": "truck", "caption": "group of young men ride the front of truck", "question": ["is there group ?", "are there young men ?", "is there the front ?", "is there truck ?"], "prompt": "group of young men ride the front of {}"}, {"index": 32, "image_id": 2413114, "entity": "truck", "caption": "seated person watches truck drive by", "question": ["is there seated person ?"], "prompt": "seated person watches {} drive by"}, {"index": 33, "image_id": 2413114, "entity": "truck", "caption": "person of motorbike trails the truck", "question": ["is there person ?", "are there motorbike trails ?"], "prompt": "person of motorbike trails the {}"}, {"index": 34, "image_id": 2413114, "entity": "truck", "caption": "\"Three men rides on the front of a truck\"", "question": ["are there three men ?", "is there the front ?", "is there a truck ?"], "prompt": "\"Three men rides on the front of a {}\""}, {"index": 35, "image_id": 2413114, "entity": "truck", "caption": "Side view mirrors on dump truck.", "question": ["are there side view mirrors ?", "is there dump truck ?"], "prompt": "Side view mirrors on dump {}."}, {"index": 36, "image_id": 2413114, "entity": "truck", "caption": "Front left tire of dump truck.", "question": ["is there front left tire ?", "is there dump truck ?"], "prompt": "Front left tire of dump {}."}, {"index": 37, "image_id": 2410247, "entity": "truck", "caption": "Man driving the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man driving the {}."}, {"index": 38, "image_id": 2410156, "entity": "truck", "caption": "D I is on side of truck", "question": ["is there side ?", "is there truck ?"], "prompt": "D I is on side of {}"}, {"index": 39, "image_id": 2410114, "entity": "truck", "caption": "front head light on a fire truck", "question": ["is there front head light ?", "is there a fire truck ?"], "prompt": "front head light on a fire {}"}, {"index": 40, "image_id": 2409987, "entity": "truck", "caption": "the truck has windows", "question": ["is there the truck ?", "are there windows ?"], "prompt": "the {} has windows"}, {"index": 41, "image_id": 2409644, "entity": "truck", "caption": "Motorcycle parked next to semi truck.", "question": ["is there motorcycle ?", "is there semi truck ?"], "prompt": "Motorcycle parked next to semi {}."}, {"index": 42, "image_id": 2409644, "entity": "truck", "caption": "Woman standing next to semi truck.", "question": ["is there woman ?", "is there semi truck ?"], "prompt": "Woman standing next to semi {}."}, {"index": 43, "image_id": 2409644, "entity": "truck", "caption": "a woman is reaching into a truck compartment", "question": ["is there a woman ?", "is there a truck compartment ?"], "prompt": "a woman is reaching into a {} compartment"}, {"index": 44, "image_id": 2409644, "entity": "truck", "caption": "a kw grill cover on truck", "question": ["is there a kw grill cover ?", "is there truck ?"], "prompt": "a kw grill cover on {}"}, {"index": 45, "image_id": 2409644, "entity": "truck", "caption": "american flag painted truck", "question": ["is there truck ?"], "prompt": "american flag painted {}"}, {"index": 46, "image_id": 2409642, "entity": "truck", "caption": "the truck has a crane", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane"}, {"index": 47, "image_id": 2409642, "entity": "truck", "caption": "these are truck tires", "question": ["are there truck tires ?"], "prompt": "these are {} tires"}, {"index": 48, "image_id": 2409608, "entity": "truck", "caption": "Road in front of truck is gravel.", "question": ["is there road ?", "is there front ?", "is there truck ?", "is there gravel ?"], "prompt": "Road in front of {} is gravel."}, {"index": 49, "image_id": 2409326, "entity": "truck", "caption": "man bent over truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man bent over {}"}, {"index": 50, "image_id": 2409188, "entity": "truck", "caption": "The truck has a siren and lights on it.", "question": ["is there the truck ?", "is there a siren ?", "are there lights ?"], "prompt": "The {} has a siren and lights on it."}, {"index": 51, "image_id": 2409176, "entity": "truck", "caption": "Sedans are behind truck", "question": ["are there sedans ?", "is there truck ?"], "prompt": "Sedans are behind {}"}, {"index": 52, "image_id": 2408016, "entity": "truck", "caption": "The head lights on a truck", "question": ["is there the head ?", "is there a truck ?"], "prompt": "The head lights on a {}"}, {"index": 53, "image_id": 2408016, "entity": "truck", "caption": "Toyota sign in the front of the truck", "question": ["is there toyota sign ?", "is there the front ?", "is there the truck ?"], "prompt": "Toyota sign in the front of the {}"}, {"index": 54, "image_id": 2408016, "entity": "truck", "caption": "Gold writing on front of truck", "question": ["is there gold writing ?", "is there front ?", "is there truck ?"], "prompt": "Gold writing on front of {}"}, {"index": 55, "image_id": 2408012, "entity": "truck", "caption": "the truck has a headlight on the side", "question": ["is there the truck ?", "is there a headlight ?", "is there the side ?"], "prompt": "the {} has a headlight on the side"}, {"index": 56, "image_id": 2408003, "entity": "truck", "caption": "Two side view mirrors on the food truck.", "question": ["are there two side view mirrors ?", "is there the food truck ?"], "prompt": "Two side view mirrors on the food {}."}, {"index": 57, "image_id": 2407996, "entity": "truck", "caption": "two d's on a transfer truck", "question": ["is there two d ?", "is there a transfer truck ?"], "prompt": "two d's on a transfer {}"}, {"index": 58, "image_id": 2407996, "entity": "truck", "caption": "Name of the company written on the side of the truck", "question": ["is there name ?", "is there the company ?", "is there the side ?", "is there the truck ?"], "prompt": "Name of the company written on the side of the {}"}, {"index": 59, "image_id": 2407996, "entity": "truck", "caption": "Parking lights lit up on the truck", "question": ["are there parking lights ?", "is there the truck ?"], "prompt": "Parking lights lit up on the {}"}, {"index": 60, "image_id": 2407996, "entity": "truck", "caption": "Person standing next to the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "Person standing next to the {}"}, {"index": 61, "image_id": 2407996, "entity": "truck", "caption": "the truck has headlights", "question": ["is there the truck ?", "are there headlights ?"], "prompt": "the {} has headlights"}, {"index": 62, "image_id": 2407996, "entity": "truck", "caption": "the truck says \"Eddie Stobart\"", "question": ["is there the truck ?"], "prompt": "the {} says \"Eddie Stobart\""}, {"index": 63, "image_id": 2407879, "entity": "truck", "caption": "the word scania is on the front of the truck", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there the truck ?"], "prompt": "the word scania is on the front of the {}"}, {"index": 64, "image_id": 2407879, "entity": "truck", "caption": "emblem on truck says scania", "question": ["is there emblem ?", "is there truck ?"], "prompt": "emblem on {} says scania"}, {"index": 65, "image_id": 2407871, "entity": "truck", "caption": "The truck is on grass", "question": ["is there the truck ?", "is there grass ?"], "prompt": "The {} is on grass"}, {"index": 66, "image_id": 2407871, "entity": "truck", "caption": "a metal dog ornament on the truck", "question": ["is there a metal dog ornament ?", "is there the truck ?"], "prompt": "a metal dog ornament on the {}"}, {"index": 67, "image_id": 2407871, "entity": "truck", "caption": "old truck is beside a road", "question": ["is there old truck ?", "is there a road ?"], "prompt": "old {} is beside a road"}, {"index": 68, "image_id": 2407871, "entity": "truck", "caption": "truck is sitting in grass", "question": ["is there truck ?", "is there grass ?"], "prompt": "{} is sitting in grass"}, {"index": 69, "image_id": 2407871, "entity": "truck", "caption": "grass growing around truck", "question": ["is there grass ?", "is there truck ?"], "prompt": "grass growing around {}"}, {"index": 70, "image_id": 2407871, "entity": "truck", "caption": "truck has a red cab", "question": ["is there truck ?", "is there a red cab ?"], "prompt": "{} has a red cab"}, {"index": 71, "image_id": 2407871, "entity": "truck", "caption": "truck says mack on side", "question": ["is there truck ?", "is there side ?"], "prompt": "{} says mack on side"}, {"index": 72, "image_id": 2407871, "entity": "truck", "caption": "truck has headlights", "question": ["is there truck ?", "are there headlights ?"], "prompt": "{} has headlights"}, {"index": 73, "image_id": 2407784, "entity": "truck", "caption": "passer bys walking behind truck", "question": ["is there truck ?"], "prompt": "passer bys walking behind {}"}, {"index": 74, "image_id": 2407760, "entity": "truck", "caption": "the truck is red in color", "question": ["is there the truck ?", "is there color ?"], "prompt": "the {} is red in color"}, {"index": 75, "image_id": 2407760, "entity": "truck", "caption": "the truck is metallic", "question": ["is there the truck ?"], "prompt": "the {} is metallic"}, {"index": 76, "image_id": 2407551, "entity": "truck", "caption": "Makers logo on the truck nearest the camera", "question": ["are there makers ?", "is there the truck ?", "is there the camera ?"], "prompt": "Makers logo on the {} nearest the camera"}, {"index": 77, "image_id": 2407551, "entity": "truck", "caption": "chrome lettering front of truck", "question": ["is there chrome lettering front ?", "is there truck ?"], "prompt": "chrome lettering front of {}"}, {"index": 78, "image_id": 2407551, "entity": "truck", "caption": "truck has multiple wheels", "question": ["is there truck ?", "are there multiple wheels ?"], "prompt": "{} has multiple wheels"}, {"index": 79, "image_id": 2407551, "entity": "truck", "caption": "front bumper on truck is clean", "question": ["is there front bumper ?", "is there truck ?"], "prompt": "front bumper on {} is clean"}, {"index": 80, "image_id": 2407241, "entity": "truck", "caption": "Red stripe painted on the truck", "question": ["is there red stripe ?", "is there the truck ?"], "prompt": "Red stripe painted on the {}"}, {"index": 81, "image_id": 2407128, "entity": "truck", "caption": "trucks parked side to side", "question": ["are there trucks ?"], "prompt": "{}s parked side to side"}, {"index": 82, "image_id": 2407128, "entity": "truck", "caption": "fabric pulled over the tops of trucks", "question": ["is there fabric ?", "are there the tops ?", "are there trucks ?"], "prompt": "fabric pulled over the tops of {}s"}, {"index": 83, "image_id": 2407128, "entity": "truck", "caption": "sign on rope hanging off front of truck", "question": ["is there rope ?", "is there front ?", "is there truck ?"], "prompt": "sign on rope hanging off front of {}"}, {"index": 84, "image_id": 2407128, "entity": "truck", "caption": "Two trucks are on the grass.", "question": ["are there two trucks ?", "is there the grass ?"], "prompt": "Two {}s are on the grass."}, {"index": 85, "image_id": 2407128, "entity": "truck", "caption": "The number 9 is on the truck.", "question": ["is there the number ?", "is there the truck ?"], "prompt": "The number 9 is on the {}."}, {"index": 86, "image_id": 2407128, "entity": "truck", "caption": "The truck has a spare tire under the bed.", "question": ["is there the truck ?", "is there a spare tire ?", "is there the bed ?"], "prompt": "The {} has a spare tire under the bed."}, {"index": 87, "image_id": 2407128, "entity": "truck", "caption": "The truck has a fabric cover on the back.", "question": ["is there the truck ?", "is there a fabric cover ?", "is there the back ?"], "prompt": "The {} has a fabric cover on the back."}, {"index": 88, "image_id": 2407128, "entity": "truck", "caption": "A yellow and white sign is on a truck.", "question": ["is there a yellow and white sign ?", "is there a truck ?"], "prompt": "A yellow and white sign is on a {}."}, {"index": 89, "image_id": 2405965, "entity": "truck", "caption": "the side of the truck has lettering on it", "question": ["is there the side ?", "is there the truck ?"], "prompt": "the side of the {} has lettering on it"}, {"index": 90, "image_id": 2405965, "entity": "truck", "caption": "the truck is casting a shadow", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow"}, {"index": 91, "image_id": 2405965, "entity": "truck", "caption": "palm trees are behind the truck", "question": ["are there palm trees ?", "is there the truck ?"], "prompt": "palm trees are behind the {}"}, {"index": 92, "image_id": 2404753, "entity": "truck", "caption": "Window of truck is open", "question": ["is there window ?", "is there truck ?"], "prompt": "Window of {} is open"}, {"index": 93, "image_id": 2404626, "entity": "truck", "caption": "the flatbed truck is black", "question": ["is there the flatbed truck ?"], "prompt": "the flatbed {} is black"}, {"index": 94, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of a house", "question": ["is there the truck ?", "is there front ?", "is there a house ?"], "prompt": "the {} is in front of a house"}, {"index": 95, "image_id": 2404602, "entity": "truck", "caption": "the truck has a black bumper", "question": ["is there the truck ?", "is there a black bumper ?"], "prompt": "the {} has a black bumper"}, {"index": 96, "image_id": 2404602, "entity": "truck", "caption": "the truck has a logo on the back of it", "question": ["is there the truck ?", "is there a logo ?", "is there the back ?"], "prompt": "the {} has a logo on the back of it"}, {"index": 97, "image_id": 2404602, "entity": "truck", "caption": "the truck is in front of the house", "question": ["is there the truck ?", "is there front ?", "is there the house ?"], "prompt": "the {} is in front of the house"}, {"index": 98, "image_id": 2404338, "entity": "truck", "caption": "Person is on top of a truck", "question": ["is there person ?", "is there top ?", "is there a truck ?"], "prompt": "Person is on top of a {}"}, {"index": 99, "image_id": 2404315, "entity": "truck", "caption": "the bed of the truck has steel rails", "question": ["is there the bed ?", "is there the truck ?", "are there steel rails ?"], "prompt": "the bed of the {} has steel rails"}, {"index": 100, "image_id": 2404315, "entity": "truck", "caption": "the truck has mud flaps", "question": ["is there the truck ?", "are there mud flaps ?"], "prompt": "the {} has mud flaps"}, {"index": 101, "image_id": 2404315, "entity": "truck", "caption": "The back of the truck is holding an object", "question": ["is there the back ?", "is there the truck ?", "is there an object ?"], "prompt": "The back of the {} is holding an object"}, {"index": 102, "image_id": 2404315, "entity": "truck", "caption": "green grass growing around the truck", "question": ["is there green grass ?", "is there the truck ?"], "prompt": "green grass growing around the {}"}, {"index": 103, "image_id": 2403558, "entity": "truck", "caption": "road that truck is on", "question": ["is there road ?", "is there that truck ?"], "prompt": "road that {} is on"}, {"index": 104, "image_id": 2403322, "entity": "truck", "caption": "the wheels are on truck", "question": ["are there the wheels ?", "is there truck ?"], "prompt": "the wheels are on {}"}, {"index": 105, "image_id": 2403322, "entity": "truck", "caption": "mirror is on truck", "question": ["is there mirror ?", "is there truck ?"], "prompt": "mirror is on {}"}, {"index": 106, "image_id": 2402597, "entity": "truck", "caption": "Woman sits on border of truck", "question": ["is there woman ?", "is there border ?", "is there truck ?"], "prompt": "Woman sits on border of {}"}, {"index": 107, "image_id": 2402597, "entity": "truck", "caption": "Man sits in back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "Man sits in back of {}"}, {"index": 108, "image_id": 2402433, "entity": "truck", "caption": "A German shepherd is sitting in the back of a truck.", "question": ["is there a german shepherd ?", "is there the back ?", "is there a truck ?"], "prompt": "A German shepherd is sitting in the back of a {}."}, {"index": 109, "image_id": 2402276, "entity": "truck", "caption": "Kiddie fire truck merry go round", "question": ["is there kiddie fire truck merry ?"], "prompt": "Kiddie fire {} merry go round"}, {"index": 110, "image_id": 2402096, "entity": "truck", "caption": "Leaves painted onto a truck", "question": ["are there leaves ?", "is there a truck ?"], "prompt": "Leaves painted onto a {}"}, {"index": 111, "image_id": 2401997, "entity": "truck", "caption": "metal truck bed lid", "question": ["is there metal truck bed lid ?"], "prompt": "metal {} bed lid"}, {"index": 112, "image_id": 2401580, "entity": "truck", "caption": "flag mounted on the front of a truck", "question": ["is there flag ?", "is there the front ?", "is there a truck ?"], "prompt": "flag mounted on the front of a {}"}, {"index": 113, "image_id": 2401327, "entity": "truck", "caption": "the truck has a chalkboard", "question": ["is there the truck ?", "is there a chalkboard ?"], "prompt": "the {} has a chalkboard"}, {"index": 114, "image_id": 2401327, "entity": "truck", "caption": "the man is inside of the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "the man is inside of the {}"}, {"index": 115, "image_id": 2401327, "entity": "truck", "caption": "the truck's tire is black and red", "question": ["is there the truck's tire ?"], "prompt": "the {}'s tire is black and red"}, {"index": 116, "image_id": 2401207, "entity": "truck", "caption": "the truck is blue", "question": ["is there the truck ?"], "prompt": "the {} is blue"}, {"index": 117, "image_id": 2401207, "entity": "truck", "caption": "White head lights on truck.", "question": ["are there white head lights ?", "is there truck ?"], "prompt": "White head lights on {}."}, {"index": 118, "image_id": 2401199, "entity": "truck", "caption": "a round headlight on a truck", "question": ["is there a round headlight ?", "is there a truck ?"], "prompt": "a round headlight on a {}"}, {"index": 119, "image_id": 2401199, "entity": "truck", "caption": "Old red truck with a license plate that says HENRE.", "question": ["is there old red truck ?", "is there a license plate ?", "is there henre ?"], "prompt": "Old red {} with a license plate that says HENRE."}, {"index": 120, "image_id": 2400775, "entity": "truck", "caption": "camo armored pick up truck", "question": ["is there truck ?"], "prompt": "camo armored pick up {}"}, {"index": 121, "image_id": 2400775, "entity": "truck", "caption": "white skull painted on truck", "question": ["is there white skull ?", "is there truck ?"], "prompt": "white skull painted on {}"}, {"index": 122, "image_id": 2400768, "entity": "truck", "caption": "the truck has huge tires", "question": ["is there the truck ?", "are there huge tires ?"], "prompt": "the {} has huge tires"}, {"index": 123, "image_id": 2400768, "entity": "truck", "caption": "people are watching the truck go by", "question": ["are there people ?", "is there the truck ?"], "prompt": "people are watching the {} go by"}, {"index": 124, "image_id": 2400768, "entity": "truck", "caption": "the truck has yellow lights", "question": ["is there the truck ?", "are there yellow lights ?"], "prompt": "the {} has yellow lights"}, {"index": 125, "image_id": 2400768, "entity": "truck", "caption": "Military truck driving down street.", "question": ["is there military truck ?", "is there street ?"], "prompt": "Military {} driving down street."}, {"index": 126, "image_id": 2400633, "entity": "truck", "caption": "the engine compartment on a truck.", "question": ["is there the engine compartment ?", "is there a truck ?"], "prompt": "the engine compartment on a {}."}, {"index": 127, "image_id": 2400633, "entity": "truck", "caption": "silver spot on the truck where paint has faded ", "question": ["is there silver spot ?", "is there the truck ?", "is there paint ?"], "prompt": "silver spot on the {} where paint has faded "}, {"index": 128, "image_id": 2400606, "entity": "truck", "caption": "a silver right headlight on an old truck", "question": ["is there a silver right headlight ?", "is there an old truck ?"], "prompt": "a silver right headlight on an old {}"}, {"index": 129, "image_id": 2400606, "entity": "truck", "caption": "the truck has 2 lights on front of it", "question": ["is there the truck ?", "are there 2 lights ?", "is there front ?"], "prompt": "the {} has 2 lights on front of it"}, {"index": 130, "image_id": 2400606, "entity": "truck", "caption": "straw is under the truck", "question": ["is there straw ?", "is there the truck ?"], "prompt": "straw is under the {}"}, {"index": 131, "image_id": 2400606, "entity": "truck", "caption": "the truck's bumper is falling off", "question": ["is there the truck's bumper ?"], "prompt": "the {}'s bumper is falling off"}, {"index": 132, "image_id": 2400599, "entity": "truck", "caption": "Side of truck is blue", "question": ["is there side ?", "is there truck ?"], "prompt": "Side of {} is blue"}, {"index": 133, "image_id": 2400599, "entity": "truck", "caption": "blue car parked behind a truck", "question": ["is there blue car ?", "is there a truck ?"], "prompt": "blue car parked behind a {}"}, {"index": 134, "image_id": 2400509, "entity": "truck", "caption": "front left tire on the truck", "question": ["is there front left tire ?", "is there the truck ?"], "prompt": "front left tire on the {}"}, {"index": 135, "image_id": 2400509, "entity": "truck", "caption": "front left mirror on the truck", "question": ["is there front left mirror ?", "is there the truck ?"], "prompt": "front left mirror on the {}"}, {"index": 136, "image_id": 2400509, "entity": "truck", "caption": "the man has a white truck", "question": ["is there the man ?", "is there a white truck ?"], "prompt": "the man has a white {}"}, {"index": 137, "image_id": 2400346, "entity": "truck", "caption": "man driving a pick-up truck", "question": ["is there man ?", "is there a pick-up truck ?"], "prompt": "man driving a pick-up {}"}, {"index": 138, "image_id": 2400346, "entity": "truck", "caption": "man is driving a bluish gray truck", "question": ["is there man ?", "is there a bluish gray truck ?"], "prompt": "man is driving a bluish gray {}"}, {"index": 139, "image_id": 2400304, "entity": "truck", "caption": "Man on street looking at truck", "question": ["is there man ?", "is there street ?", "is there truck ?"], "prompt": "Man on street looking at {}"}, {"index": 140, "image_id": 2400304, "entity": "truck", "caption": "Blue shirt on man looking at truck", "question": ["is there blue shirt ?", "is there man ?", "is there truck ?"], "prompt": "Blue shirt on man looking at {}"}, {"index": 141, "image_id": 2400304, "entity": "truck", "caption": "Black hat on man looking at truck", "question": ["is there black hat ?", "is there man ?", "is there truck ?"], "prompt": "Black hat on man looking at {}"}, {"index": 142, "image_id": 2400304, "entity": "truck", "caption": "Watch on man looking at truck", "question": ["is there man ?", "is there truck ?"], "prompt": "Watch on man looking at {}"}, {"index": 143, "image_id": 2400304, "entity": "truck", "caption": "The man standing next to the truck", "question": ["is there the man ?", "is there the truck ?"], "prompt": "The man standing next to the {}"}, {"index": 144, "image_id": 2400304, "entity": "truck", "caption": "The women reflected on the truck", "question": ["are there the women ?", "is there the truck ?"], "prompt": "The women reflected on the {}"}, {"index": 145, "image_id": 2400304, "entity": "truck", "caption": "Tall man is looking at truck", "question": ["is there tall man ?", "is there truck ?"], "prompt": "Tall man is looking at {}"}, {"index": 146, "image_id": 2399870, "entity": "truck", "caption": "a sign is on the side of the truck", "question": ["is there a sign ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign is on the side of the {}"}, {"index": 147, "image_id": 2399870, "entity": "truck", "caption": "a number is on the side of the truck", "question": ["is there a number ?", "is there the side ?", "is there the truck ?"], "prompt": "a number is on the side of the {}"}, {"index": 148, "image_id": 2399870, "entity": "truck", "caption": "an exhaust system is on the side of the truck", "question": ["is there an exhaust system ?", "is there the side ?", "is there the truck ?"], "prompt": "an exhaust system is on the side of the {}"}, {"index": 149, "image_id": 2399764, "entity": "truck", "caption": "A truck is in the background.", "question": ["is there a truck ?", "is there the background ?"], "prompt": "A {} is in the background."}, {"index": 150, "image_id": 2398894, "entity": "truck", "caption": "black truck with hard bed cover", "question": ["is there black truck ?", "is there hard bed ?"], "prompt": "black {} with hard bed cover"}, {"index": 151, "image_id": 2398630, "entity": "truck", "caption": "a bus that has collided with truck", "question": ["is there a bus ?", "is there truck ?"], "prompt": "a bus that has collided with {}"}, {"index": 152, "image_id": 2398143, "entity": "truck", "caption": "transfer trucks windshield", "question": ["are there trucks ?"], "prompt": "transfer {}s windshield"}, {"index": 153, "image_id": 2398143, "entity": "truck", "caption": "the front left tire of a truck", "question": ["is there tire ?", "is there a truck ?"], "prompt": "the front left tire of a {}"}, {"index": 154, "image_id": 2398143, "entity": "truck", "caption": "front of truck is red", "question": ["is there front ?", "is there truck ?"], "prompt": "front of {} is red"}, {"index": 155, "image_id": 2398143, "entity": "truck", "caption": "lights on truck are orange", "question": ["are there lights ?", "is there truck ?"], "prompt": "lights on {} are orange"}, {"index": 156, "image_id": 2398143, "entity": "truck", "caption": "truck has gray stripes", "question": ["is there truck ?", "are there gray stripes ?"], "prompt": "{} has gray stripes"}, {"index": 157, "image_id": 2398143, "entity": "truck", "caption": "two silver stripes painted on the front of the truck", "question": ["are there two silver stripes ?", "is there the front ?", "is there the truck ?"], "prompt": "two silver stripes painted on the front of the {}"}, {"index": 158, "image_id": 2398030, "entity": "truck", "caption": "expensive and nice cars and trucks lined up", "question": ["are there expensive and nice cars ?", "are there trucks ?"], "prompt": "expensive and nice cars and {}s lined up"}, {"index": 159, "image_id": 2397835, "entity": "truck", "caption": "the sculpture is in the bed of a truck", "question": ["is there the sculpture ?", "is there the bed ?", "is there a truck ?"], "prompt": "the sculpture is in the bed of a {}"}, {"index": 160, "image_id": 2397835, "entity": "truck", "caption": "WILD IN ART is on the back of the truck", "question": ["is there art ?", "is there the back ?", "is there the truck ?"], "prompt": "WILD IN ART is on the back of the {}"}, {"index": 161, "image_id": 2397058, "entity": "truck", "caption": "cardboard boxes piled high on truck", "question": ["are there cardboard boxes ?", "is there truck ?"], "prompt": "cardboard boxes piled high on {}"}, {"index": 162, "image_id": 2397058, "entity": "truck", "caption": "man in plaid shirt leaning over truck", "question": ["is there man ?", "is there plaid shirt ?", "is there truck ?"], "prompt": "man in plaid shirt leaning over {}"}, {"index": 163, "image_id": 2397049, "entity": "truck", "caption": "Teddy bear on front of truck", "question": ["is there front ?", "is there truck ?"], "prompt": "Teddy bear on front of {}"}, {"index": 164, "image_id": 2397049, "entity": "truck", "caption": "Head lights front of truck", "question": ["are there head lights ?", "is there truck ?"], "prompt": "Head lights front of {}"}, {"index": 165, "image_id": 2396831, "entity": "truck", "caption": "the trucks headlights are off", "question": ["are there the trucks headlights ?"], "prompt": "the {}s headlights are off"}, {"index": 166, "image_id": 2396726, "entity": "truck", "caption": "truck tires have two different types of white hubcaps", "question": ["are there truck tires ?", "are there two different types ?", "are there white hubcaps ?"], "prompt": "{} tires have two different types of white hubcaps"}, {"index": 167, "image_id": 2396726, "entity": "truck", "caption": "sedan behind truck has obama '08 poster on front above license plate", "question": ["is there truck ?", "is there obama '08 poster ?", "is there front ?", "is there license plate ?"], "prompt": "sedan behind {} has obama '08 poster on front above license plate"}, {"index": 168, "image_id": 2396726, "entity": "truck", "caption": "drivers side truck headlight", "question": ["are there drivers ?"], "prompt": "drivers side {} headlight"}, {"index": 169, "image_id": 2396433, "entity": "truck", "caption": "A man spray paints the truck.", "question": ["is there a man ?", "is there the truck ?"], "prompt": "A man spray paints the {}."}, {"index": 170, "image_id": 2396312, "entity": "truck", "caption": "the truck rim is red", "question": ["is there the truck rim ?"], "prompt": "the {} rim is red"}, {"index": 171, "image_id": 2396312, "entity": "truck", "caption": "it is the door on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "it is the door on the {}"}, {"index": 172, "image_id": 2396121, "entity": "truck", "caption": "Gigi writing on truck.", "question": ["is there truck ?"], "prompt": "Gigi writing on {}."}, {"index": 173, "image_id": 2396121, "entity": "truck", "caption": "Menu hanging from truck.", "question": ["is there menu ?", "is there truck ?"], "prompt": "Menu hanging from {}."}, {"index": 174, "image_id": 2395929, "entity": "truck", "caption": "the horse is on a truck", "question": ["is there the horse ?", "is there a truck ?"], "prompt": "the horse is on a {}"}, {"index": 175, "image_id": 2395902, "entity": "truck", "caption": "Big blue parked truck.", "question": ["is there big blue parked truck ?"], "prompt": "Big blue parked {}."}, {"index": 176, "image_id": 2395902, "entity": "truck", "caption": "Long white truck parked.", "question": ["is there long white truck ?"], "prompt": "Long white {} parked."}, {"index": 177, "image_id": 2395835, "entity": "truck", "caption": "passenger handle inside truck", "question": ["is there passenger handle ?", "is there truck ?"], "prompt": "passenger handle inside {}"}, {"index": 178, "image_id": 2395835, "entity": "truck", "caption": "a man in the truck is wearing red", "question": ["is there a man ?", "is there the truck ?", "is there red ?"], "prompt": "a man in the {} is wearing red"}, {"index": 179, "image_id": 2395835, "entity": "truck", "caption": "two people are in the truck", "question": ["are there two people ?", "is there the truck ?"], "prompt": "two people are in the {}"}, {"index": 180, "image_id": 2395411, "entity": "truck", "caption": "emergency lights are on top of the truck", "question": ["are there emergency lights ?", "is there top ?", "is there the truck ?"], "prompt": "emergency lights are on top of the {}"}, {"index": 181, "image_id": 2395408, "entity": "truck", "caption": "headlights of food truck are off", "question": ["are there headlights ?", "is there food truck ?"], "prompt": "headlights of food {} are off"}, {"index": 182, "image_id": 2395292, "entity": "truck", "caption": "wheels of the truck are red and chrome", "question": ["are there wheels ?", "is there the truck ?"], "prompt": "wheels of the {} are red and chrome"}, {"index": 183, "image_id": 2395292, "entity": "truck", "caption": "bed of truck is wooden", "question": ["is there bed ?", "is there truck ?"], "prompt": "bed of {} is wooden"}, {"index": 184, "image_id": 2395292, "entity": "truck", "caption": "truck has a side mirror", "question": ["is there truck ?", "is there a side mirror ?"], "prompt": "{} has a side mirror"}, {"index": 185, "image_id": 2395292, "entity": "truck", "caption": "truck door has no handle", "question": ["is there truck door ?", "is there no handle ?"], "prompt": "{} door has no handle"}, {"index": 186, "image_id": 2395042, "entity": "truck", "caption": "The truck door is open. ", "question": ["is there the truck door ?"], "prompt": "The {} door is open. "}, {"index": 187, "image_id": 2395042, "entity": "truck", "caption": "The driver is getting into the truck. ", "question": ["is there the driver ?", "is there the truck ?"], "prompt": "The driver is getting into the {}. "}, {"index": 188, "image_id": 2395042, "entity": "truck", "caption": "The truck is carrying cattle. ", "question": ["is there the truck ?", "are there cattle ?"], "prompt": "The {} is carrying cattle. "}, {"index": 189, "image_id": 2395042, "entity": "truck", "caption": "The truck's shadow is on the street.", "question": ["is there the truck's shadow ?", "is there the street ?"], "prompt": "The {}'s shadow is on the street."}, {"index": 190, "image_id": 2395042, "entity": "truck", "caption": "door of truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "door of {} is open"}, {"index": 191, "image_id": 2394987, "entity": "truck", "caption": "a sign on the side of a truck that says Drink Coca-Cola", "question": ["is there a sign ?", "is there the side ?", "is there a truck ?"], "prompt": "a sign on the side of a {} that says Drink Coca-Cola"}, {"index": 192, "image_id": 2394972, "entity": "truck", "caption": "the truck has a light", "question": ["is there the truck ?", "is there a light ?"], "prompt": "the {} has a light"}, {"index": 193, "image_id": 2394972, "entity": "truck", "caption": "the truck has a windshield", "question": ["is there the truck ?", "is there a windshield ?"], "prompt": "the {} has a windshield"}, {"index": 194, "image_id": 2394854, "entity": "truck", "caption": "the truck has a green logo", "question": ["is there the truck ?", "is there a green logo ?"], "prompt": "the {} has a green logo"}, {"index": 195, "image_id": 2394854, "entity": "truck", "caption": "emergency lights are on the truck", "question": ["are there emergency lights ?", "is there the truck ?"], "prompt": "emergency lights are on the {}"}, {"index": 196, "image_id": 2394854, "entity": "truck", "caption": "a side mirror is on the truck", "question": ["is there a side mirror ?", "is there the truck ?"], "prompt": "a side mirror is on the {}"}, {"index": 197, "image_id": 2394740, "entity": "truck", "caption": "Honda emblem on the back of a gry truck", "question": ["is there the back ?", "is there a gry truck ?"], "prompt": "Honda emblem on the back of a gry {}"}, {"index": 198, "image_id": 2394740, "entity": "truck", "caption": "the truck is a honda", "question": ["is there the truck ?"], "prompt": "the {} is a honda"}, {"index": 199, "image_id": 2394740, "entity": "truck", "caption": "the truck has 4wd", "question": ["is there the truck ?", "is there 4wd ?"], "prompt": "the {} has 4wd"}, {"index": 200, "image_id": 2394327, "entity": "truck", "caption": "metal ladder sitting beside truck", "question": ["is there metal ladder ?", "is there truck ?"], "prompt": "metal ladder sitting beside {}"}, {"index": 201, "image_id": 2394327, "entity": "truck", "caption": "bottom on red crane attached to back of truck", "question": ["is there bottom ?", "is there red crane ?", "is there truck ?"], "prompt": "bottom on red crane attached to back of {}"}, {"index": 202, "image_id": 2393999, "entity": "truck", "caption": "The front of the truck is yellow.", "question": ["is there the front ?", "is there the truck ?"], "prompt": "The front of the {} is yellow."}, {"index": 203, "image_id": 2393989, "entity": "truck", "caption": "End of truck where garbage enters.", "question": ["is there end ?", "is there truck ?", "is there garbage ?"], "prompt": "End of {} where garbage enters."}, {"index": 204, "image_id": 2393842, "entity": "truck", "caption": "The people are looking at the truck.", "question": ["are there the people ?", "is there the truck ?"], "prompt": "The people are looking at the {}."}, {"index": 205, "image_id": 2393686, "entity": "truck", "caption": "The fire trucks windshield.", "question": ["are there the fire trucks ?"], "prompt": "The fire {}s windshield."}, {"index": 206, "image_id": 2393686, "entity": "truck", "caption": "A license plate is on the truck", "question": ["is there a license plate ?", "is there the truck ?"], "prompt": "A license plate is on the {}"}, {"index": 207, "image_id": 2393686, "entity": "truck", "caption": "License plate on front of firetruck that reads S360 ATO", "question": ["is there license plate ?", "is there front ?", "is there firetruck ?"], "prompt": "License plate on front of fire{} that reads S360 ATO"}, {"index": 208, "image_id": 2393548, "entity": "truck", "caption": "The bucket is dumping dirt into the truck", "question": ["is there the bucket ?", "is there dirt ?", "is there the truck ?"], "prompt": "The bucket is dumping dirt into the {}"}, {"index": 209, "image_id": 2393548, "entity": "truck", "caption": "These are the trucks front wheels", "question": ["are there the trucks ?", "are there front wheels ?"], "prompt": "These are the {}s front wheels"}, {"index": 210, "image_id": 2393548, "entity": "truck", "caption": "This is the cab of the truck", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "This is the cab of the {}"}, {"index": 211, "image_id": 2393263, "entity": "truck", "caption": "Ribbons tied around the mirror of a utility truck", "question": ["are there ribbons ?", "is there the mirror ?", "is there a utility truck ?"], "prompt": "Ribbons tied around the mirror of a utility {}"}, {"index": 212, "image_id": 2392926, "entity": "truck", "caption": "man driving large truck", "question": ["is there man ?", "is there large truck ?"], "prompt": "man driving large {}"}, {"index": 213, "image_id": 2392536, "entity": "truck", "caption": "front wheel of truck is black", "question": ["is there front wheel ?", "is there truck ?"], "prompt": "front wheel of {} is black"}, {"index": 214, "image_id": 2392536, "entity": "truck", "caption": "back wheel of truck is big", "question": ["is there back wheel ?", "is there truck ?"], "prompt": "back wheel of {} is big"}, {"index": 215, "image_id": 2392536, "entity": "truck", "caption": "The truck has a lady painted on it", "question": ["is there the truck ?", "is there a lady ?"], "prompt": "The {} has a lady painted on it"}, {"index": 216, "image_id": 2392394, "entity": "truck", "caption": "the front headlight on the truck", "question": ["is there the front headlight ?", "is there the truck ?"], "prompt": "the front headlight on the {}"}, {"index": 217, "image_id": 2392394, "entity": "truck", "caption": "man standing behind the truck", "question": ["is there man ?", "is there the truck ?"], "prompt": "man standing behind the {}"}, {"index": 218, "image_id": 2392105, "entity": "truck", "caption": "The windhield wipers are on the truck.", "question": ["are there the windhield wipers ?", "is there the truck ?"], "prompt": "The windhield wipers are on the {}."}, {"index": 219, "image_id": 2391764, "entity": "truck", "caption": "tires on truck are black", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires on {} are black"}, {"index": 220, "image_id": 2391651, "entity": "truck", "caption": "the pickup truck is on the street", "question": ["is there the pickup truck ?", "is there the street ?"], "prompt": "the pickup {} is on the street"}, {"index": 221, "image_id": 2391651, "entity": "truck", "caption": "person seemingly trying to get into truck", "question": ["is there person ?", "is there truck ?"], "prompt": "person seemingly trying to get into {}"}, {"index": 222, "image_id": 2391651, "entity": "truck", "caption": "The right side view mirrors on the truck.", "question": ["are there the right side view mirrors ?", "is there the truck ?"], "prompt": "The right side view mirrors on the {}."}, {"index": 223, "image_id": 2391651, "entity": "truck", "caption": "The front tire on the side of the truck that the door is open.", "question": ["is there the front tire ?", "is there the side ?", "is there the truck ?", "is there the door ?"], "prompt": "The front tire on the side of the {} that the door is open."}, {"index": 224, "image_id": 2391651, "entity": "truck", "caption": "front left tire of green truck", "question": ["is there front left tire ?", "is there green truck ?"], "prompt": "front left tire of green {}"}, {"index": 225, "image_id": 2391128, "entity": "truck", "caption": "Dead tree branch hanging out of the truck.", "question": ["is there dead tree branch ?", "is there the truck ?"], "prompt": "Dead tree branch hanging out of the {}."}, {"index": 226, "image_id": 2391128, "entity": "truck", "caption": "Large truck driving down the road.", "question": ["is there large truck ?", "is there the road ?"], "prompt": "Large {} driving down the road."}, {"index": 227, "image_id": 2391063, "entity": "truck", "caption": "clear truck head light", "question": ["is there clear truck head light ?"], "prompt": "clear {} head light"}, {"index": 228, "image_id": 2390018, "entity": "truck", "caption": "Black woman painted on truck", "question": ["is there black woman ?", "is there truck ?"], "prompt": "Black woman painted on {}"}, {"index": 229, "image_id": 2390018, "entity": "truck", "caption": "female character painted on truck", "question": ["is there female character ?", "is there truck ?"], "prompt": "female character painted on {}"}, {"index": 230, "image_id": 2389846, "entity": "truck", "caption": "Driver's side window rolled up on truck", "question": ["is there driver's side window ?", "is there truck ?"], "prompt": "Driver's side window rolled up on {}"}, {"index": 231, "image_id": 2389498, "entity": "truck", "caption": "red pick up truck parked on a street", "question": ["is there truck ?", "is there a street ?"], "prompt": "red pick up {} parked on a street"}, {"index": 232, "image_id": 2389435, "entity": "truck", "caption": "ladder coming out of the truck", "question": ["is there ladder ?", "is there the truck ?"], "prompt": "ladder coming out of the {}"}, {"index": 233, "image_id": 2389435, "entity": "truck", "caption": "kid standing on truck.", "question": ["is there kid ?", "is there truck ?"], "prompt": "kid standing on {}."}, {"index": 234, "image_id": 2389256, "entity": "truck", "caption": "The dishes are on the truck.", "question": ["are there the dishes ?", "is there the truck ?"], "prompt": "The dishes are on the {}."}, {"index": 235, "image_id": 2389256, "entity": "truck", "caption": "Two dishes are on the truck.", "question": ["are there two dishes ?", "is there the truck ?"], "prompt": "Two dishes are on the {}."}, {"index": 236, "image_id": 2389256, "entity": "truck", "caption": "dark container next to truck", "question": ["is there dark container ?", "is there truck ?"], "prompt": "dark container next to {}"}, {"index": 237, "image_id": 2389232, "entity": "truck", "caption": "a black truck bed cover", "question": ["is there a black truck bed ?"], "prompt": "a black {} bed cover"}, {"index": 238, "image_id": 2389232, "entity": "truck", "caption": "the trucks name DUDE", "question": ["are there the trucks ?", "is there dude ?"], "prompt": "the {}s name DUDE"}, {"index": 239, "image_id": 2389232, "entity": "truck", "caption": "truck bed has a black cover", "question": ["is there truck bed ?", "is there a black cover ?"], "prompt": "{} bed has a black cover"}, {"index": 240, "image_id": 2389232, "entity": "truck", "caption": "Hood of truck is open.", "question": ["is there hood ?", "is there truck ?"], "prompt": "Hood of {} is open."}, {"index": 241, "image_id": 2388587, "entity": "truck", "caption": "person walking near massive truck", "question": ["is there person ?", "is there massive truck ?"], "prompt": "person walking near massive {}"}, {"index": 242, "image_id": 2388482, "entity": "truck", "caption": "two dogs are standing in the back of a truck", "question": ["are there two dogs ?", "is there the back ?", "is there a truck ?"], "prompt": "two dogs are standing in the back of a {}"}, {"index": 243, "image_id": 2388482, "entity": "truck", "caption": "two dogs are peering over a truck cab", "question": ["are there two dogs ?", "is there a truck cab ?"], "prompt": "two dogs are peering over a {} cab"}, {"index": 244, "image_id": 2388482, "entity": "truck", "caption": "SIERRA is on the back of truck", "question": ["is there the back ?", "is there truck ?"], "prompt": "SIERRA is on the back of {}"}, {"index": 245, "image_id": 2388482, "entity": "truck", "caption": "sierra make on truck", "question": ["is there truck ?"], "prompt": "sierra make on {}"}, {"index": 246, "image_id": 2388392, "entity": "truck", "caption": "People are standing by the truck", "question": ["are there people ?", "is there the truck ?"], "prompt": "People are standing by the {}"}, {"index": 247, "image_id": 2388286, "entity": "truck", "caption": "The ladder is on the truck.", "question": ["is there the ladder ?", "is there the truck ?"], "prompt": "The ladder is on the {}."}, {"index": 248, "image_id": 2388286, "entity": "truck", "caption": "The paper on the truck is white.", "question": ["is there the paper ?", "is there the truck ?"], "prompt": "The paper on the {} is white."}, {"index": 249, "image_id": 2388286, "entity": "truck", "caption": "The ladders are on top of the truck", "question": ["are there the ladders ?", "is there top ?", "is there the truck ?"], "prompt": "The ladders are on top of the {}"}, {"index": 250, "image_id": 2388153, "entity": "truck", "caption": "Steel bed cover on pickup truck", "question": ["is there steel bed cover ?", "is there pickup truck ?"], "prompt": "Steel bed cover on pickup {}"}, {"index": 251, "image_id": 2388153, "entity": "truck", "caption": "Manufacturer emblem of a pickup truck", "question": ["is there manufacturer emblem ?", "is there a pickup truck ?"], "prompt": "Manufacturer emblem of a pickup {}"}, {"index": 252, "image_id": 2388153, "entity": "truck", "caption": "the truck has a bed cover", "question": ["is there the truck ?", "is there a bed cover ?"], "prompt": "the {} has a bed cover"}, {"index": 253, "image_id": 2387414, "entity": "truck", "caption": "green grass growing beside truck", "question": ["is there green grass ?", "is there truck ?"], "prompt": "green grass growing beside {}"}, {"index": 254, "image_id": 2387347, "entity": "truck", "caption": "Leaveless branches hang down in front of the truck", "question": ["are there leaveless branches ?", "is there front ?", "is there the truck ?"], "prompt": "Leaveless branches hang down in front of the {}"}, {"index": 255, "image_id": 2387347, "entity": "truck", "caption": "God is love is painted across the truck's front bumper", "question": ["is there love ?", "is there the truck's front bumper ?"], "prompt": "God is love is painted across the {}'s front bumper"}, {"index": 256, "image_id": 2387056, "entity": "truck", "caption": "Name of company written on truck.", "question": ["is there name ?", "is there company ?", "is there truck ?"], "prompt": "Name of company written on {}."}, {"index": 257, "image_id": 2386762, "entity": "truck", "caption": "silver metal door handle on truck", "question": ["is there silver metal door ?", "is there truck ?"], "prompt": "silver metal door handle on {}"}, {"index": 258, "image_id": 2386762, "entity": "truck", "caption": "Trees are behind the truck.", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are behind the {}."}, {"index": 259, "image_id": 2386704, "entity": "truck", "caption": "a garbage can next to the truck", "question": ["is there a garbage ?", "is there the truck ?"], "prompt": "a garbage can next to the {}"}, {"index": 260, "image_id": 2386704, "entity": "truck", "caption": "A cooler is on the truck", "question": ["is there the truck ?"], "prompt": "A cooler is on the {}"}, {"index": 261, "image_id": 2386704, "entity": "truck", "caption": "A menu is on the side of the truck", "question": ["is there a menu ?", "is there the side ?", "is there the truck ?"], "prompt": "A menu is on the side of the {}"}, {"index": 262, "image_id": 2386704, "entity": "truck", "caption": "A trash can is beside the truck", "question": ["is there a trash can ?", "is there the truck ?"], "prompt": "A trash can is beside the {}"}, {"index": 263, "image_id": 2386704, "entity": "truck", "caption": "A sign is on top of the truck", "question": ["is there a sign ?", "is there top ?", "is there the truck ?"], "prompt": "A sign is on top of the {}"}, {"index": 264, "image_id": 2386704, "entity": "truck", "caption": "food truck parked next to sidewalk", "question": ["is there food truck ?"], "prompt": "food {} parked next to sidewalk"}, {"index": 265, "image_id": 2386704, "entity": "truck", "caption": "lined trash can leaning againt food truck", "question": ["is there trash ?", "is there againt food truck ?"], "prompt": "lined trash can leaning againt food {}"}, {"index": 266, "image_id": 2386704, "entity": "truck", "caption": "Trash can outside of truck", "question": ["is there truck ?"], "prompt": "Trash can outside of {}"}, {"index": 267, "image_id": 2386545, "entity": "truck", "caption": "dirt splashed on side of truck door", "question": ["is there dirt ?", "is there side ?", "is there truck ?"], "prompt": "dirt splashed on side of {} door"}, {"index": 268, "image_id": 2386451, "entity": "truck", "caption": "roof rack on top of pickup truck", "question": ["is there roof rack ?", "is there top ?", "is there pickup truck ?"], "prompt": "roof rack on top of pickup {}"}, {"index": 269, "image_id": 2386451, "entity": "truck", "caption": "The truck is towing a boat", "question": ["is there the truck ?", "is there a boat ?"], "prompt": "The {} is towing a boat"}, {"index": 270, "image_id": 2385966, "entity": "truck", "caption": "The truck has a red logo on it.", "question": ["is there the truck ?", "is there a red logo ?"], "prompt": "The {} has a red logo on it."}, {"index": 271, "image_id": 2385966, "entity": "truck", "caption": "the caution lights on a truck", "question": ["are there the caution lights ?", "is there a truck ?"], "prompt": "the caution lights on a {}"}, {"index": 272, "image_id": 2385580, "entity": "truck", "caption": "Couch is riding in truck bed", "question": ["is there couch ?", "is there truck bed ?"], "prompt": "Couch is riding in {} bed"}, {"index": 273, "image_id": 2385580, "entity": "truck", "caption": "power lines hang above truck", "question": ["are there power lines ?", "is there truck ?"], "prompt": "power lines hang above {}"}, {"index": 274, "image_id": 2385580, "entity": "truck", "caption": "the couch sits in the back of a pickup truck", "question": ["is there the couch ?", "is there the back ?", "is there a pickup truck ?"], "prompt": "the couch sits in the back of a pickup {}"}, {"index": 275, "image_id": 2385580, "entity": "truck", "caption": "door handle on the truck door", "question": ["is there door ?", "is there the truck door ?"], "prompt": "door handle on the {} door"}, {"index": 276, "image_id": 2385559, "entity": "truck", "caption": "Gold writing on the front of the fire truck", "question": ["is there gold writing ?", "is there the front ?", "is there the fire truck ?"], "prompt": "Gold writing on the front of the fire {}"}, {"index": 277, "image_id": 2385559, "entity": "truck", "caption": "A firetruck is on a road.", "question": ["is there a firetruck ?", "is there a road ?"], "prompt": "A fire{} is on a road."}, {"index": 278, "image_id": 2385559, "entity": "truck", "caption": "The word \" PLAINS \" is on the front of a firetruck.", "question": ["is there the word ?", "are there \" plains ?", "is there the front ?", "is there a firetruck ?"], "prompt": "The word \" PLAINS \" is on the front of a fire{}."}, {"index": 279, "image_id": 2385559, "entity": "truck", "caption": "A street sign is above a firetruck.", "question": ["is there a street sign ?", "is there a firetruck ?"], "prompt": "A street sign is above a fire{}."}, {"index": 280, "image_id": 2385527, "entity": "truck", "caption": "red chef stenciled on side of truck", "question": ["is there red chef ?", "is there side ?", "is there truck ?"], "prompt": "red chef stenciled on side of {}"}, {"index": 281, "image_id": 2384523, "entity": "truck", "caption": "tires of truck painted", "question": ["are there tires ?", "is there truck ?"], "prompt": "tires of {} painted"}, {"index": 282, "image_id": 2384523, "entity": "truck", "caption": "red painted bible sign on truck", "question": ["is there bible sign ?", "is there truck ?"], "prompt": "red painted bible sign on {}"}, {"index": 283, "image_id": 2384073, "entity": "truck", "caption": "Ice hanging from the front of truck", "question": ["is there ice ?", "is there the front ?", "is there truck ?"], "prompt": "Ice hanging from the front of {}"}, {"index": 284, "image_id": 2383911, "entity": "truck", "caption": "The word Challenge on the truck.", "question": ["is there the word challenge ?", "is there the truck ?"], "prompt": "The word Challenge on the {}."}, {"index": 285, "image_id": 2383909, "entity": "truck", "caption": "The bananas are in the truck bed", "question": ["are there the bananas ?", "is there the truck bed ?"], "prompt": "The bananas are in the {} bed"}, {"index": 286, "image_id": 2383743, "entity": "truck", "caption": "A truck is carrying merchandise", "question": ["is there a truck ?", "is there merchandise ?"], "prompt": "A {} is carrying merchandise"}, {"index": 287, "image_id": 2383743, "entity": "truck", "caption": "lights hanging off the back of the truck", "question": ["are there lights ?", "is there the back ?", "is there the truck ?"], "prompt": "lights hanging off the back of the {}"}, {"index": 288, "image_id": 2383315, "entity": "truck", "caption": "The fire truck is on the street", "question": ["is there the fire truck ?", "is there the street ?"], "prompt": "The fire {} is on the street"}, {"index": 289, "image_id": 2382893, "entity": "truck", "caption": "big lugs encircle a rear truck tire", "question": ["are there big lugs ?", "is there a rear truck tire ?"], "prompt": "big lugs encircle a rear {} tire"}, {"index": 290, "image_id": 2382893, "entity": "truck", "caption": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow truck", "question": ["are there present viewers' line ?", "is there site ?", "is there end ?", "is there yellow truck ?"], "prompt": "'m' 'f2' & probably more out of present viewers' line of site, end of yellow {}"}, {"index": 291, "image_id": 2382893, "entity": "truck", "caption": "truck has a cover on back", "question": ["is there truck ?", "is there a cover ?"], "prompt": "{} has a cover on back"}, {"index": 292, "image_id": 2382893, "entity": "truck", "caption": "the cover is on the back of a truck", "question": ["is there the cover ?", "is there the back ?", "is there a truck ?"], "prompt": "the cover is on the back of a {}"}, {"index": 293, "image_id": 2382893, "entity": "truck", "caption": "the truck has some black letters on it", "question": ["is there the truck ?", "are there some black letters ?"], "prompt": "the {} has some black letters on it"}, {"index": 294, "image_id": 2382779, "entity": "truck", "caption": "the spare tire is on the truck", "question": ["is there the spare tire ?", "is there the truck ?"], "prompt": "the spare tire is on the {}"}, {"index": 295, "image_id": 2382494, "entity": "truck", "caption": "the truck has a plate", "question": ["is there the truck ?", "is there a plate ?"], "prompt": "the {} has a plate"}, {"index": 296, "image_id": 2382494, "entity": "truck", "caption": "the truck has a bumper", "question": ["is there the truck ?", "is there a bumper ?"], "prompt": "the {} has a bumper"}, {"index": 297, "image_id": 2382494, "entity": "truck", "caption": "the truck has a wiper", "question": ["is there the truck ?", "is there a wiper ?"], "prompt": "the {} has a wiper"}, {"index": 298, "image_id": 2382494, "entity": "truck", "caption": "the truck has a window", "question": ["is there the truck ?", "is there a window ?"], "prompt": "the {} has a window"}, {"index": 299, "image_id": 2382494, "entity": "truck", "caption": "the chevy logo is on the truck", "question": ["is there the chevy logo ?", "is there the truck ?"], "prompt": "the chevy logo is on the {}"}, {"index": 300, "image_id": 2382494, "entity": "truck", "caption": "the truck has a silver grill", "question": ["is there the truck ?", "is there a silver grill ?"], "prompt": "the {} has a silver grill"}, {"index": 301, "image_id": 2382470, "entity": "truck", "caption": "Waste management truck is on the road", "question": ["is there waste management truck ?", "is there the road ?"], "prompt": "Waste management {} is on the road"}, {"index": 302, "image_id": 2382462, "entity": "truck", "caption": "man is standing behind truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is standing behind {}"}, {"index": 303, "image_id": 2382462, "entity": "truck", "caption": "truck has white door", "question": ["is there truck ?", "is there white door ?"], "prompt": "{} has white door"}, {"index": 304, "image_id": 2382454, "entity": "truck", "caption": "Lights are on in front of the truck.", "question": ["are there lights ?", "is there front ?", "is there the truck ?"], "prompt": "Lights are on in front of the {}."}, {"index": 305, "image_id": 2381035, "entity": "truck", "caption": "Woman standing on step of truck", "question": ["is there woman ?", "is there step ?", "is there truck ?"], "prompt": "Woman standing on step of {}"}, {"index": 306, "image_id": 2380908, "entity": "truck", "caption": "The door handle on the truck", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door handle on the {}"}, {"index": 307, "image_id": 2380866, "entity": "truck", "caption": "the truck has a mirror", "question": ["is there the truck ?", "is there a mirror ?"], "prompt": "the {} has a mirror"}, {"index": 308, "image_id": 2380866, "entity": "truck", "caption": "the logo is on the back of the truck", "question": ["is there the logo ?", "is there the back ?", "is there the truck ?"], "prompt": "the logo is on the back of the {}"}, {"index": 309, "image_id": 2380866, "entity": "truck", "caption": "the billboard is infront of the truck", "question": ["is there the billboard ?", "is there the truck ?"], "prompt": "the billboard is infront of the {}"}, {"index": 310, "image_id": 2380592, "entity": "truck", "caption": "man standing at back of truck", "question": ["is there man ?", "is there back ?", "is there truck ?"], "prompt": "man standing at back of {}"}, {"index": 311, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is black"}, {"index": 312, "image_id": 2380587, "entity": "truck", "caption": "the truck has an antenna", "question": ["is there the truck ?", "is there an antenna ?"], "prompt": "the {} has an antenna"}, {"index": 313, "image_id": 2380587, "entity": "truck", "caption": "black windshield wipers are on the truck", "question": ["are there black windshield wipers ?", "is there the truck ?"], "prompt": "black windshield wipers are on the {}"}, {"index": 314, "image_id": 2380587, "entity": "truck", "caption": "the truck has writing on the side", "question": ["is there the truck ?", "is there the side ?"], "prompt": "the {} has writing on the side"}, {"index": 315, "image_id": 2380587, "entity": "truck", "caption": "a rack is on the roof of the truck", "question": ["is there a rack ?", "is there the roof ?", "is there the truck ?"], "prompt": "a rack is on the roof of the {}"}, {"index": 316, "image_id": 2380587, "entity": "truck", "caption": "the grill of the truck is flat black", "question": ["is there the grill ?", "is there the truck ?"], "prompt": "the grill of the {} is flat black"}, {"index": 317, "image_id": 2380587, "entity": "truck", "caption": "red lettering is on the side of the truck", "question": ["is there red lettering ?", "is there the side ?", "is there the truck ?"], "prompt": "red lettering is on the side of the {}"}, {"index": 318, "image_id": 2380587, "entity": "truck", "caption": "the headlight of the truck is off", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "the headlight of the {} is off"}, {"index": 319, "image_id": 2380587, "entity": "truck", "caption": "a rack is on top of the truck", "question": ["is there a rack ?", "is there top ?", "is there the truck ?"], "prompt": "a rack is on top of the {}"}, {"index": 320, "image_id": 2380587, "entity": "truck", "caption": "green hedges are behind the truck", "question": ["are there green hedges ?", "is there the truck ?"], "prompt": "green hedges are behind the {}"}, {"index": 321, "image_id": 2380273, "entity": "truck", "caption": "the truck has a long side mirror ", "question": ["is there the truck ?", "is there a long side mirror ?"], "prompt": "the {} has a long side mirror "}, {"index": 322, "image_id": 2380273, "entity": "truck", "caption": "The truck is on pavement. ", "question": ["is there the truck ?", "is there pavement ?"], "prompt": "The {} is on pavement. "}, {"index": 323, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting something.", "question": ["is there the truck ?", "is there something ?"], "prompt": "The {} is lifting something."}, {"index": 324, "image_id": 2380112, "entity": "truck", "caption": "The truck is lifting a small vehicle with a crane.", "question": ["is there the truck ?", "is there a small vehicle ?", "is there a crane ?"], "prompt": "The {} is lifting a small vehicle with a crane."}, {"index": 325, "image_id": 2380112, "entity": "truck", "caption": "Military truck loading a vehicle", "question": ["is there military truck ?", "is there a vehicle ?"], "prompt": "Military {} loading a vehicle"}, {"index": 326, "image_id": 2379690, "entity": "truck", "caption": "man driving a vintage truck", "question": ["is there man ?", "is there a vintage truck ?"], "prompt": "man driving a vintage {}"}, {"index": 327, "image_id": 2379397, "entity": "truck", "caption": "man climbing back of truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man climbing back of {}"}, {"index": 328, "image_id": 2379397, "entity": "truck", "caption": "boy in grey shirt standing on top of truck", "question": ["is there boy ?", "is there top ?", "is there truck ?"], "prompt": "boy in grey shirt standing on top of {}"}, {"index": 329, "image_id": 2379397, "entity": "truck", "caption": "young man climbing up back of truck", "question": ["is there young man ?", "is there truck ?"], "prompt": "young man climbing up back of {}"}, {"index": 330, "image_id": 2378872, "entity": "truck", "caption": "Dog standing on side of truck bed", "question": ["is there dog ?", "is there side ?", "is there truck ?", "is there bed ?"], "prompt": "Dog standing on side of {} bed"}, {"index": 331, "image_id": 2378626, "entity": "truck", "caption": "Car parked in front of pick-up truck", "question": ["is there car ?", "is there front ?", "is there pick-up truck ?"], "prompt": "Car parked in front of pick-up {}"}, {"index": 332, "image_id": 2378563, "entity": "truck", "caption": "The word Blow on the tail gate of the truck.", "question": ["is there the word ?", "is there the tail gate ?", "is there the truck ?"], "prompt": "The word Blow on the tail gate of the {}."}, {"index": 333, "image_id": 2378417, "entity": "truck", "caption": "Green writing on side of truck.", "question": ["is there green writing ?", "is there side ?", "is there truck ?"], "prompt": "Green writing on side of {}."}, {"index": 334, "image_id": 2378417, "entity": "truck", "caption": "Big tire leaning on truck.", "question": ["is there big tire ?", "is there truck ?"], "prompt": "Big tire leaning on {}."}, {"index": 335, "image_id": 2378417, "entity": "truck", "caption": "weeds are growing by the old truck", "question": ["are there weeds ?", "is there the old truck ?"], "prompt": "weeds are growing by the old {}"}, {"index": 336, "image_id": 2378218, "entity": "truck", "caption": "rope tied in truck", "question": ["is there rope ?", "is there truck ?"], "prompt": "rope tied in {}"}, {"index": 337, "image_id": 2378218, "entity": "truck", "caption": "the truck the cow is sitting on", "question": ["is there the truck ?", "is there the cow ?"], "prompt": "the {} the cow is sitting on"}, {"index": 338, "image_id": 2378035, "entity": "truck", "caption": "men driving an old time truck", "question": ["are there men ?", "is there an old time truck ?"], "prompt": "men driving an old time {}"}, {"index": 339, "image_id": 2377760, "entity": "truck", "caption": "a truck is driving down the road.", "question": ["is there a truck ?", "is there the road ?"], "prompt": "a {} is driving down the road."}, {"index": 340, "image_id": 2377333, "entity": "truck", "caption": "round headlight on truck", "question": ["is there headlight ?", "is there truck ?"], "prompt": "round headlight on {}"}, {"index": 341, "image_id": 2377333, "entity": "truck", "caption": "Tan truck has five visible tires", "question": ["is there tan truck ?", "are there five visible tires ?"], "prompt": "Tan {} has five visible tires"}, {"index": 342, "image_id": 2376346, "entity": "truck", "caption": "man in red vest standing in front of truck", "question": ["is there man ?", "is there red vest ?", "is there front ?", "is there truck ?"], "prompt": "man in red vest standing in front of {}"}, {"index": 343, "image_id": 2376063, "entity": "truck", "caption": "large tarps covering bed of red-orange truck", "question": ["are there large tarps ?", "is there bed ?", "is there red-orange truck ?"], "prompt": "large tarps covering bed of red-orange {}"}, {"index": 344, "image_id": 2376061, "entity": "truck", "caption": "a fire truck is driving down the street.", "question": ["is there a fire truck ?", "is there the street ?"], "prompt": "a fire {} is driving down the street."}, {"index": 345, "image_id": 2376061, "entity": "truck", "caption": "American flag hanging from the truck", "question": ["is there american flag ?", "is there the truck ?"], "prompt": "American flag hanging from the {}"}, {"index": 346, "image_id": 2376005, "entity": "truck", "caption": "the truck has lettering on the side", "question": ["is there the truck ?", "is there lettering ?", "is there the side ?"], "prompt": "the {} has lettering on the side"}, {"index": 347, "image_id": 2376005, "entity": "truck", "caption": "the truck has a metal fender in front", "question": ["is there the truck ?", "is there a metal fender ?", "is there front ?"], "prompt": "the {} has a metal fender in front"}, {"index": 348, "image_id": 2374981, "entity": "truck", "caption": "Person walking behind truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking behind {}."}, {"index": 349, "image_id": 2374981, "entity": "truck", "caption": "The truck is carrying jugs of water.", "question": ["is there the truck ?", "are there jugs ?", "is there water ?"], "prompt": "The {} is carrying jugs of water."}, {"index": 350, "image_id": 2374981, "entity": "truck", "caption": "The taxi is next to the truck.", "question": ["is there the taxi ?", "is there the truck ?"], "prompt": "The taxi is next to the {}."}, {"index": 351, "image_id": 2374981, "entity": "truck", "caption": "the truck is a water truck", "question": ["is there the truck ?", "is there a water truck ?"], "prompt": "the {} is a water {}"}, {"index": 352, "image_id": 2374218, "entity": "truck", "caption": "truck has grey tire", "question": ["is there truck ?", "is there grey tire ?"], "prompt": "{} has grey tire"}, {"index": 353, "image_id": 2374072, "entity": "truck", "caption": "Person standing near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person standing near {}."}, {"index": 354, "image_id": 2373789, "entity": "truck", "caption": "door of truck has a window", "question": ["is there door ?", "is there truck ?", "is there a window ?"], "prompt": "door of {} has a window"}, {"index": 355, "image_id": 2373559, "entity": "truck", "caption": "brick street the truck is on", "question": ["is there brick street ?", "is there the truck ?"], "prompt": "brick street the {} is on"}, {"index": 356, "image_id": 2373441, "entity": "truck", "caption": "Black shadows cast on the red side of a truck", "question": ["are there black shadows ?", "is there the red side ?", "is there a truck ?"], "prompt": "Black shadows cast on the red side of a {}"}, {"index": 357, "image_id": 2373441, "entity": "truck", "caption": "front wheel truck is big", "question": ["is there front wheel truck ?"], "prompt": "front wheel {} is big"}, {"index": 358, "image_id": 2372785, "entity": "truck", "caption": "it is the front tire of the truck", "question": ["is there the front tire ?", "is there the truck ?"], "prompt": "it is the front tire of the {}"}, {"index": 359, "image_id": 2372785, "entity": "truck", "caption": "is it the back tire of the white truck", "question": ["is there the back tire ?", "is there the white truck ?"], "prompt": "is it the back tire of the white {}"}, {"index": 360, "image_id": 2372785, "entity": "truck", "caption": "a person is sitting in the white truck", "question": ["is there a person ?", "is there the white truck ?"], "prompt": "a person is sitting in the white {}"}, {"index": 361, "image_id": 2372785, "entity": "truck", "caption": "door handle on delivery truck", "question": ["is there door ?", "is there delivery truck ?"], "prompt": "door handle on delivery {}"}, {"index": 362, "image_id": 2372670, "entity": "truck", "caption": "green pick up next to mack truck on the left", "question": ["is there mack truck ?"], "prompt": "green pick up next to mack {} on the left"}, {"index": 363, "image_id": 2372645, "entity": "truck", "caption": "a garbage can sitting next to a truck", "question": ["is there a garbage ?", "is there a truck ?"], "prompt": "a garbage can sitting next to a {}"}, {"index": 364, "image_id": 2372645, "entity": "truck", "caption": "Doll is in top of the truck.", "question": ["is there doll ?", "is there top ?", "is there the truck ?"], "prompt": "Doll is in top of the {}."}, {"index": 365, "image_id": 2372493, "entity": "truck", "caption": "dog is resting in shade of truck", "question": ["is there dog ?", "is there shade ?", "is there truck ?"], "prompt": "dog is resting in shade of {}"}, {"index": 366, "image_id": 2372487, "entity": "truck", "caption": "ford is in the grill of truck", "question": ["is there the grill ?", "is there truck ?"], "prompt": "ford is in the grill of {}"}, {"index": 367, "image_id": 2372487, "entity": "truck", "caption": "hood is black on the truck", "question": ["is there hood ?", "is there the truck ?"], "prompt": "hood is black on the {}"}, {"index": 368, "image_id": 2372487, "entity": "truck", "caption": "blue auto maker sign behind truck", "question": ["is there blue auto maker ?", "is there truck ?"], "prompt": "blue auto maker sign behind {}"}, {"index": 369, "image_id": 2372400, "entity": "truck", "caption": "Woman sitting on top of a truck", "question": ["is there woman ?", "is there top ?", "is there a truck ?"], "prompt": "Woman sitting on top of a {}"}, {"index": 370, "image_id": 2372385, "entity": "truck", "caption": "Man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "Man driving a {}"}, {"index": 371, "image_id": 2372385, "entity": "truck", "caption": "headlights in front of truck are off", "question": ["are there headlights ?", "is there front ?", "is there truck ?"], "prompt": "headlights in front of {} are off"}, {"index": 372, "image_id": 2372249, "entity": "truck", "caption": "it is the back tire of the truck", "question": ["is there the back tire ?", "is there the truck ?"], "prompt": "it is the back tire of the {}"}, {"index": 373, "image_id": 2372249, "entity": "truck", "caption": "it is the front head light of the truck", "question": ["is there the front head light ?", "is there the truck ?"], "prompt": "it is the front head light of the {}"}, {"index": 374, "image_id": 2372249, "entity": "truck", "caption": "it is the windshield of the truck", "question": ["is there the windshield ?", "is there the truck ?"], "prompt": "it is the windshield of the {}"}, {"index": 375, "image_id": 2372238, "entity": "truck", "caption": "A big truck is sitting in a parking lot.", "question": ["is there a big truck ?", "is there a parking lot ?"], "prompt": "A big {} is sitting in a parking lot."}, {"index": 376, "image_id": 2372063, "entity": "truck", "caption": "letters on truck says \"Budweiser\"", "question": ["are there letters ?", "is there truck ?", "is there budweiser ?"], "prompt": "letters on {} says \"Budweiser\""}, {"index": 377, "image_id": 2371995, "entity": "truck", "caption": "letter painted on truck", "question": ["is there letter ?", "is there truck ?"], "prompt": "letter painted on {}"}, {"index": 378, "image_id": 2371903, "entity": "truck", "caption": "stars are on the truck", "question": ["are there stars ?", "is there the truck ?"], "prompt": "stars are on the {}"}, {"index": 379, "image_id": 2371903, "entity": "truck", "caption": "USA painted on a truck", "question": ["is there a truck ?"], "prompt": "USA painted on a {}"}, {"index": 380, "image_id": 2371766, "entity": "truck", "caption": "this is the trucks windshield ", "question": ["are there the trucks ?"], "prompt": "this is the {}s windshield "}, {"index": 381, "image_id": 2371766, "entity": "truck", "caption": "truck window is open", "question": ["is there truck window ?"], "prompt": "{} window is open"}, {"index": 382, "image_id": 2371022, "entity": "truck", "caption": "a red truck parked", "question": ["is there a red truck ?"], "prompt": "a red {} parked"}, {"index": 383, "image_id": 2371022, "entity": "truck", "caption": "Tire splash guard of truck", "question": ["is there tire splash guard ?", "is there truck ?"], "prompt": "Tire splash guard of {}"}, {"index": 384, "image_id": 2369895, "entity": "truck", "caption": "The tire of the truck is black ", "question": ["is there the tire ?", "is there the truck ?"], "prompt": "The tire of the {} is black "}, {"index": 385, "image_id": 2369837, "entity": "truck", "caption": "A truck is on the street.", "question": ["is there a truck ?", "is there the street ?"], "prompt": "A {} is on the street."}, {"index": 386, "image_id": 2369837, "entity": "truck", "caption": "A canopy drapes over the truck.", "question": ["is there a canopy ?", "is there the truck ?"], "prompt": "A canopy drapes over the {}."}, {"index": 387, "image_id": 2369837, "entity": "truck", "caption": "The truck is missing the hood.", "question": ["is there the truck ?", "is there the hood ?"], "prompt": "The {} is missing the hood."}, {"index": 388, "image_id": 2369288, "entity": "truck", "caption": "bear is on truck bed", "question": ["is there truck bed ?"], "prompt": "bear is on {} bed"}, {"index": 389, "image_id": 2369089, "entity": "truck", "caption": "silver door handle on truck", "question": ["is there silver door ?", "is there truck ?"], "prompt": "silver door handle on {}"}, {"index": 390, "image_id": 2368262, "entity": "truck", "caption": "this truck has a backdoor", "question": ["is there this truck ?", "is there a backdoor ?"], "prompt": "this {} has a backdoor"}, {"index": 391, "image_id": 2368262, "entity": "truck", "caption": "the rear door handle to the truck is rusting", "question": ["is there the rear door ?", "is there the truck ?"], "prompt": "the rear door handle to the {} is rusting"}, {"index": 392, "image_id": 2368262, "entity": "truck", "caption": "latches are on the truck rear door", "question": ["are there latches ?", "is there the truck rear door ?"], "prompt": "latches are on the {} rear door"}, {"index": 393, "image_id": 2368262, "entity": "truck", "caption": "writing is visible on the side of the truck", "question": ["is there writing ?", "is there the side ?", "is there the truck ?"], "prompt": "writing is visible on the side of the {}"}, {"index": 394, "image_id": 2368262, "entity": "truck", "caption": "the side door of the truck has windows", "question": ["is there the side door ?", "is there the truck ?", "are there windows ?"], "prompt": "the side door of the {} has windows"}, {"index": 395, "image_id": 2368262, "entity": "truck", "caption": "Trees in front of truck have no leaves.", "question": ["are there trees ?", "is there front ?", "is there truck ?", "are there no leaves ?"], "prompt": "Trees in front of {} have no leaves."}, {"index": 396, "image_id": 2367654, "entity": "truck", "caption": "the trucks back license plate ", "question": ["are there the trucks ?", "is there license plate ?"], "prompt": "the {}s back license plate "}, {"index": 397, "image_id": 2367654, "entity": "truck", "caption": "truck is hauling circular objects", "question": ["is there truck ?", "are there circular objects ?"], "prompt": "{} is hauling circular objects"}, {"index": 398, "image_id": 2367654, "entity": "truck", "caption": "The truck has ten tubes.", "question": ["is there the truck ?", "are there ten tubes ?"], "prompt": "The {} has ten tubes."}, {"index": 399, "image_id": 2367654, "entity": "truck", "caption": "The truck has six red ligths.", "question": ["is there the truck ?", "are there six red ligths ?"], "prompt": "The {} has six red ligths."}, {"index": 400, "image_id": 2367556, "entity": "truck", "caption": "truck has red tail light", "question": ["is there truck ?", "is there red tail light ?"], "prompt": "{} has red tail light"}, {"index": 401, "image_id": 2367108, "entity": "truck", "caption": "the truck has words on it", "question": ["is there the truck ?", "are there words ?"], "prompt": "the {} has words on it"}, {"index": 402, "image_id": 2366931, "entity": "truck", "caption": "car door handle on truck", "question": ["is there car door ?", "is there truck ?"], "prompt": "car door handle on {}"}, {"index": 403, "image_id": 2366645, "entity": "truck", "caption": "A horse int he bed of a truck", "question": ["is there a truck ?"], "prompt": "A horse int he bed of a {}"}, {"index": 404, "image_id": 2366645, "entity": "truck", "caption": "the white wall rims on the truck tire", "question": ["are there the white wall rims ?", "is there the truck tire ?"], "prompt": "the white wall rims on the {} tire"}, {"index": 405, "image_id": 2366233, "entity": "truck", "caption": "A gray sedan parked very closely in front of the truck", "question": ["is there a gray sedan ?", "is there front ?", "is there the truck ?"], "prompt": "A gray sedan parked very closely in front of the {}"}, {"index": 406, "image_id": 2366156, "entity": "truck", "caption": "Horse standing next to a red truck", "question": ["is there horse ?", "is there a red truck ?"], "prompt": "Horse standing next to a red {}"}, {"index": 407, "image_id": 2365951, "entity": "truck", "caption": "The truck has lights on it's roof", "question": ["is there the truck ?", "are there lights ?", "is there it's roof ?"], "prompt": "The {} has lights on it's roof"}, {"index": 408, "image_id": 2365951, "entity": "truck", "caption": "red numbers painted on a truck", "question": ["are there red numbers ?", "is there a truck ?"], "prompt": "red numbers painted on a {}"}, {"index": 409, "image_id": 2365951, "entity": "truck", "caption": "The concrete truck is the color yellow ", "question": ["is there the concrete truck ?"], "prompt": "The concrete {} is the color yellow "}, {"index": 410, "image_id": 2365951, "entity": "truck", "caption": "This is a yellow truck", "question": ["is there a yellow truck ?"], "prompt": "This is a yellow {}"}, {"index": 411, "image_id": 2365691, "entity": "truck", "caption": "sideways spare tire mounted under the truck", "question": ["is there spare tire ?", "is there the truck ?"], "prompt": "sideways spare tire mounted under the {}"}, {"index": 412, "image_id": 2365570, "entity": "truck", "caption": "The cab of the truck is red", "question": ["is there the cab ?", "is there the truck ?"], "prompt": "The cab of the {} is red"}, {"index": 413, "image_id": 2365570, "entity": "truck", "caption": "The dumping part of the truck is yellow", "question": ["is there the dumping part ?", "is there the truck ?"], "prompt": "The dumping part of the {} is yellow"}, {"index": 414, "image_id": 2365570, "entity": "truck", "caption": "This truck has gone through a lot of dirt", "question": ["is there this truck ?", "is there a lot ?", "is there dirt ?"], "prompt": "This {} has gone through a lot of dirt"}, {"index": 415, "image_id": 2365252, "entity": "truck", "caption": "man with long hair stands beside truck cab", "question": ["is there man ?", "is there long hair ?", "is there truck cab ?"], "prompt": "man with long hair stands beside {} cab"}, {"index": 416, "image_id": 2365252, "entity": "truck", "caption": "truck's front turn signal", "question": ["is there truck's front turn ?"], "prompt": "{}'s front turn signal"}, {"index": 417, "image_id": 2364632, "entity": "truck", "caption": "the truck's cab is blue", "question": ["is there the truck's cab ?"], "prompt": "the {}'s cab is blue"}, {"index": 418, "image_id": 2364512, "entity": "truck", "caption": "Top of the truck is white and green in color", "question": ["is there top ?", "is there the truck ?", "is there color ?"], "prompt": "Top of the {} is white and green in color"}, {"index": 419, "image_id": 2363920, "entity": "truck", "caption": "man driving a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man driving a {}"}, {"index": 420, "image_id": 2362822, "entity": "truck", "caption": "gray ram sniffing a truck", "question": ["is there a truck ?"], "prompt": "gray ram sniffing a {}"}, {"index": 421, "image_id": 2362058, "entity": "truck", "caption": "it is a ladder on the side of the truck", "question": ["is there a ladder ?", "is there the side ?", "is there the truck ?"], "prompt": "it is a ladder on the side of the {}"}, {"index": 422, "image_id": 2362058, "entity": "truck", "caption": "it is the headlight of the truck", "question": ["is there the headlight ?", "is there the truck ?"], "prompt": "it is the headlight of the {}"}, {"index": 423, "image_id": 2361362, "entity": "truck", "caption": "garbage man running behing garabge truck", "question": ["is there garbage man ?", "is there behing garabge truck ?"], "prompt": "garbage man running behing garabge {}"}, {"index": 424, "image_id": 2361169, "entity": "truck", "caption": "cartoon character painted on truck", "question": ["is there cartoon character ?", "is there truck ?"], "prompt": "cartoon character painted on {}"}, {"index": 425, "image_id": 2360580, "entity": "truck", "caption": "The truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "The {} is on the road"}, {"index": 426, "image_id": 2360438, "entity": "truck", "caption": "a sign that says Signal on the side of the truck", "question": ["is there a sign ?", "is there signal ?", "is there the side ?", "is there the truck ?"], "prompt": "a sign that says Signal on the side of the {}"}, {"index": 427, "image_id": 2360362, "entity": "truck", "caption": "Two people walking toward a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "Two people walking toward a {}"}, {"index": 428, "image_id": 2360185, "entity": "truck", "caption": "Man reflected in the truck.", "question": ["is there man ?", "is there the truck ?"], "prompt": "Man reflected in the {}."}, {"index": 429, "image_id": 2359911, "entity": "truck", "caption": "Plymouth written on the truck", "question": ["is there the truck ?"], "prompt": "Plymouth written on the {}"}, {"index": 430, "image_id": 2359717, "entity": "truck", "caption": "united states flag on truck", "question": ["is there truck ?"], "prompt": "united states flag on {}"}, {"index": 431, "image_id": 2359708, "entity": "truck", "caption": "a firetruck headlight ", "question": ["is there a firetruck headlight ?"], "prompt": "a fire{} headlight "}, {"index": 432, "image_id": 2359307, "entity": "truck", "caption": "the truck is in the Forrest", "question": ["is there the truck ?", "is there the forrest ?"], "prompt": "the {} is in the Forrest"}, {"index": 433, "image_id": 2357815, "entity": "truck", "caption": "A white car is behind the truck", "question": ["is there a white car ?", "is there the truck ?"], "prompt": "A white car is behind the {}"}, {"index": 434, "image_id": 2357815, "entity": "truck", "caption": "A tarp is over the back of the truck", "question": ["is there a tarp ?", "is there the back ?", "is there the truck ?"], "prompt": "A tarp is over the back of the {}"}, {"index": 435, "image_id": 2357227, "entity": "truck", "caption": "white numbers are on the truck", "question": ["are there white numbers ?", "is there the truck ?"], "prompt": "white numbers are on the {}"}, {"index": 436, "image_id": 2357227, "entity": "truck", "caption": "a man straps the truck down", "question": ["is there a man ?", "is there the truck ?"], "prompt": "a man straps the {} down"}, {"index": 437, "image_id": 2357081, "entity": "truck", "caption": "The left front headlight on the truck", "question": ["is there the left front headlight ?", "is there the truck ?"], "prompt": "The left front headlight on the {}"}, {"index": 438, "image_id": 2356932, "entity": "truck", "caption": "The truck is casting a shadow. ", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow. "}, {"index": 439, "image_id": 2356932, "entity": "truck", "caption": "Person taking a picture of the truck. ", "question": ["is there person ?", "is there a picture ?", "is there the truck ?"], "prompt": "Person taking a picture of the {}. "}, {"index": 440, "image_id": 2356921, "entity": "truck", "caption": "GREAT TASTE written on the side of a truck. ", "question": ["is there great taste ?", "is there the side ?", "is there a truck ?"], "prompt": "GREAT TASTE written on the side of a {}. "}, {"index": 441, "image_id": 2355892, "entity": "truck", "caption": "it is the letter C on the truck ", "question": ["is there the letter ?", "is there c ?", "is there the truck ?"], "prompt": "it is the letter C on the {} "}, {"index": 442, "image_id": 2355892, "entity": "truck", "caption": "it is the letter O on the truck", "question": ["is there the letter ?", "is there o ?", "is there the truck ?"], "prompt": "it is the letter O on the {}"}, {"index": 443, "image_id": 2355892, "entity": "truck", "caption": "it is a light on the truck", "question": ["is there a light ?", "is there the truck ?"], "prompt": "it is a light on the {}"}, {"index": 444, "image_id": 2355892, "entity": "truck", "caption": "the truck has a black wheel", "question": ["is there the truck ?", "is there a black wheel ?"], "prompt": "the {} has a black wheel"}, {"index": 445, "image_id": 2355892, "entity": "truck", "caption": "the truck is on the road", "question": ["is there the truck ?", "is there the road ?"], "prompt": "the {} is on the road"}, {"index": 446, "image_id": 2355892, "entity": "truck", "caption": "The truck has lights on it.", "question": ["is there the truck ?", "are there lights ?"], "prompt": "The {} has lights on it."}, {"index": 447, "image_id": 2355892, "entity": "truck", "caption": "The truck says coco", "question": ["is there the truck ?", "is there coco ?"], "prompt": "The {} says coco"}, {"index": 448, "image_id": 2355892, "entity": "truck", "caption": "The lettering is white on the truck", "question": ["is there the lettering ?", "is there the truck ?"], "prompt": "The lettering is white on the {}"}, {"index": 449, "image_id": 2355892, "entity": "truck", "caption": "The truck has tires.", "question": ["is there the truck ?", "are there tires ?"], "prompt": "The {} has tires."}, {"index": 450, "image_id": 2355741, "entity": "truck", "caption": "Woman standing next to the truck", "question": ["is there woman ?", "is there the truck ?"], "prompt": "Woman standing next to the {}"}, {"index": 451, "image_id": 2354584, "entity": "truck", "caption": "There is a symbol on this truck that says Fire Dept.", "question": ["is there a symbol ?", "is there this truck ?", "is there fire dept ?"], "prompt": "There is a symbol on this {} that says Fire Dept."}, {"index": 452, "image_id": 2354302, "entity": "truck", "caption": "rust covered truck shows it has some age", "question": ["is there rust covered truck ?", "is there some age ?"], "prompt": "rust covered {} shows it has some age"}, {"index": 453, "image_id": 2354302, "entity": "truck", "caption": "white hydrolic machinery on truck shows unprotected by weather", "question": ["is there white hydrolic machinery ?", "are there truck shows ?", "is there weather ?"], "prompt": "white hydrolic machinery on {} shows unprotected by weather"}, {"index": 454, "image_id": 2354302, "entity": "truck", "caption": "windshield on truck looks clean", "question": ["is there windshield ?", "is there truck ?"], "prompt": "windshield on {} looks clean"}, {"index": 455, "image_id": 2353824, "entity": "truck", "caption": "truck has four lights", "question": ["is there truck ?", "are there four lights ?"], "prompt": "{} has four lights"}, {"index": 456, "image_id": 2353824, "entity": "truck", "caption": "truck lights are lit", "question": ["are there truck lights ?"], "prompt": "{} lights are lit"}, {"index": 457, "image_id": 2353824, "entity": "truck", "caption": "truck has yellow arm", "question": ["is there truck ?", "is there yellow arm ?"], "prompt": "{} has yellow arm"}, {"index": 458, "image_id": 2353824, "entity": "truck", "caption": "Orange lit up light above truck.", "question": ["is there light ?", "is there truck ?"], "prompt": "Orange lit up light above {}."}, {"index": 459, "image_id": 2353075, "entity": "truck", "caption": "PX is on the top of the truck", "question": ["is there px ?", "is there the top ?", "is there the truck ?"], "prompt": "PX is on the top of the {}"}, {"index": 460, "image_id": 2353075, "entity": "truck", "caption": "mercedes emblem on truck ", "question": ["are there mercedes ?", "is there truck ?"], "prompt": "mercedes emblem on {} "}, {"index": 461, "image_id": 2352665, "entity": "truck", "caption": "door handle on white truck", "question": ["is there door ?", "is there white truck ?"], "prompt": "door handle on white {}"}, {"index": 462, "image_id": 2352260, "entity": "truck", "caption": "box spring on it's side in the back of a truck", "question": ["is there box spring ?", "is there it's side ?", "is there the back ?", "is there a truck ?"], "prompt": "box spring on it's side in the back of a {}"}, {"index": 463, "image_id": 2351947, "entity": "truck", "caption": "front left wheel of the fire truck", "question": ["is there front left wheel ?", "is there the fire truck ?"], "prompt": "front left wheel of the fire {}"}, {"index": 464, "image_id": 2351810, "entity": "truck", "caption": "man standing in back of windowless truck", "question": ["is there man ?", "is there windowless truck ?"], "prompt": "man standing in back of windowless {}"}, {"index": 465, "image_id": 2351290, "entity": "truck", "caption": "a striped blanket is on a truck", "question": ["is there a striped blanket ?", "is there a truck ?"], "prompt": "a striped blanket is on a {}"}, {"index": 466, "image_id": 2351290, "entity": "truck", "caption": "the wall behind the truck is silver", "question": ["is there the wall ?", "is there the truck ?"], "prompt": "the wall behind the {} is silver"}, {"index": 467, "image_id": 2351178, "entity": "truck", "caption": "The truck is carrying a surfboard", "question": ["is there the truck ?", "is there a surfboard ?"], "prompt": "The {} is carrying a surfboard"}, {"index": 468, "image_id": 2351178, "entity": "truck", "caption": "life saving device on truck", "question": ["is there device ?", "is there truck ?"], "prompt": "life saving device on {}"}, {"index": 469, "image_id": 2351178, "entity": "truck", "caption": "The left headlight on the truck.", "question": ["is there the left headlight ?", "is there the truck ?"], "prompt": "The left headlight on the {}."}, {"index": 470, "image_id": 2351131, "entity": "truck", "caption": "Trailer hitch on back of truck", "question": ["is there trailer hitch ?", "is there back ?", "is there truck ?"], "prompt": "Trailer hitch on back of {}"}, {"index": 471, "image_id": 2349773, "entity": "truck", "caption": "Two posts are near a truck.", "question": ["are there two posts ?", "is there a truck ?"], "prompt": "Two posts are near a {}."}, {"index": 472, "image_id": 2349620, "entity": "truck", "caption": "a metal pole is by the truck", "question": ["is there a metal pole ?", "is there the truck ?"], "prompt": "a metal pole is by the {}"}, {"index": 473, "image_id": 2349620, "entity": "truck", "caption": "the truck has a rearview mirror", "question": ["is there the truck ?", "is there a rearview mirror ?"], "prompt": "the {} has a rearview mirror"}, {"index": 474, "image_id": 2348945, "entity": "truck", "caption": "A large tube is on a truck.", "question": ["is there a large tube ?", "is there a truck ?"], "prompt": "A large tube is on a {}."}, {"index": 475, "image_id": 2348945, "entity": "truck", "caption": "A grey box is on a truck.", "question": ["is there a truck ?"], "prompt": "A grey box is on a {}."}, {"index": 476, "image_id": 2348945, "entity": "truck", "caption": "A man is standing next to a truck.", "question": ["is there a man ?", "is there a truck ?"], "prompt": "A man is standing next to a {}."}, {"index": 477, "image_id": 2348933, "entity": "truck", "caption": "logo painted on a truck", "question": ["is there logo ?", "is there a truck ?"], "prompt": "logo painted on a {}"}, {"index": 478, "image_id": 2348742, "entity": "truck", "caption": "cows hauled on top of truck", "question": ["are there cows ?", "is there top ?", "is there truck ?"], "prompt": "cows hauled on top of {}"}, {"index": 479, "image_id": 2348742, "entity": "truck", "caption": "sign in truck says \"mitsubishi\"", "question": ["is there sign ?", "is there truck ?"], "prompt": "sign in {} says \"mitsubishi\""}, {"index": 480, "image_id": 2348742, "entity": "truck", "caption": "windy road the truck is driving on ", "question": ["is there windy road ?", "is there the truck ?"], "prompt": "windy road the {} is driving on "}, {"index": 481, "image_id": 2348526, "entity": "truck", "caption": "machinery is on the truck", "question": ["is there machinery ?", "is there the truck ?"], "prompt": "machinery is on the {}"}, {"index": 482, "image_id": 2348526, "entity": "truck", "caption": "Back door is open on truck", "question": ["is there back door ?", "is there truck ?"], "prompt": "Back door is open on {}"}, {"index": 483, "image_id": 2347761, "entity": "truck", "caption": "a driver is inside the truck cab", "question": ["is there a driver ?", "is there the truck cab ?"], "prompt": "a driver is inside the {} cab"}, {"index": 484, "image_id": 2347750, "entity": "truck", "caption": "A person is by the truck", "question": ["is there a person ?", "is there the truck ?"], "prompt": "A person is by the {}"}, {"index": 485, "image_id": 2347690, "entity": "truck", "caption": "4x4 painted on the side of truck", "question": ["is there the side ?", "is there truck ?"], "prompt": "4x4 painted on the side of {}"}, {"index": 486, "image_id": 2347690, "entity": "truck", "caption": "tail gate is down on truck", "question": ["is there tail gate ?", "is there truck ?"], "prompt": "tail gate is down on {}"}, {"index": 487, "image_id": 2347487, "entity": "truck", "caption": "Rear left wheel of the truck", "question": ["is there rear left wheel ?", "is there the truck ?"], "prompt": "Rear left wheel of the {}"}, {"index": 488, "image_id": 2347487, "entity": "truck", "caption": "Front left wheel of the truck", "question": ["is there front left wheel ?", "is there the truck ?"], "prompt": "Front left wheel of the {}"}, {"index": 489, "image_id": 2347377, "entity": "truck", "caption": "Person sitting in a dark two tone truck", "question": ["is there person ?", "is there a dark two tone truck ?"], "prompt": "Person sitting in a dark two tone {}"}, {"index": 490, "image_id": 2346986, "entity": "truck", "caption": "the truck has a picture at the door", "question": ["is there the truck ?", "is there a picture ?", "is there the door ?"], "prompt": "the {} has a picture at the door"}, {"index": 491, "image_id": 2346214, "entity": "truck", "caption": "guy trying to get stuff out of a truck", "question": ["is there guy ?", "is there stuff ?", "is there a truck ?"], "prompt": "guy trying to get stuff out of a {}"}, {"index": 492, "image_id": 2345894, "entity": "truck", "caption": "the truck has No2 painted on it", "question": ["is there the truck ?", "are there no2 ?"], "prompt": "the {} has No2 painted on it"}, {"index": 493, "image_id": 2345381, "entity": "truck", "caption": "people are standing by the food truck", "question": ["are there people ?", "is there the food truck ?"], "prompt": "people are standing by the food {}"}, {"index": 494, "image_id": 2345381, "entity": "truck", "caption": "the food truck has red lights on it", "question": ["is there the food truck ?", "are there red lights ?"], "prompt": "the food {} has red lights on it"}, {"index": 495, "image_id": 2345314, "entity": "truck", "caption": "Yellow truck has hood opened", "question": ["is there yellow truck ?", "is there hood ?"], "prompt": "Yellow {} has hood opened"}, {"index": 496, "image_id": 2345314, "entity": "truck", "caption": "Pickup truck has hood opened", "question": ["is there pickup truck ?", "is there hood ?"], "prompt": "Pickup {} has hood opened"}, {"index": 497, "image_id": 2345212, "entity": "truck", "caption": "long carpets rolls at back of truck", "question": ["are there long carpets rolls ?", "is there back ?", "is there truck ?"], "prompt": "long carpets rolls at back of {}"}, {"index": 498, "image_id": 2345212, "entity": "truck", "caption": "gray car behing the truck", "question": ["is there gray car ?", "is there the truck ?"], "prompt": "gray car behing the {}"}, {"index": 499, "image_id": 2345212, "entity": "truck", "caption": "household furnishings strapped onto a truck bed", "question": ["are there household furnishings ?", "is there a truck bed ?"], "prompt": "household furnishings strapped onto a {} bed"}, {"index": 500, "image_id": 2345032, "entity": "truck", "caption": "The word SCANIA on the front of a truck. ", "question": ["is there the word ?", "is there scania ?", "is there the front ?", "is there a truck ?"], "prompt": "The word SCANIA on the front of a {}. "}, {"index": 501, "image_id": 2344888, "entity": "truck", "caption": "antique truck stuck in the mud", "question": ["is there antique truck ?", "is there the mud ?"], "prompt": "antique {} stuck in the mud"}, {"index": 502, "image_id": 2343592, "entity": "truck", "caption": "Sign on truck is Avitat", "question": ["is there sign ?", "is there truck ?"], "prompt": "Sign on {} is Avitat"}, {"index": 503, "image_id": 2342746, "entity": "truck", "caption": "a cheverolet emblem is on the truck", "question": ["is there a cheverolet emblem ?", "is there the truck ?"], "prompt": "a cheverolet emblem is on the {}"}, {"index": 504, "image_id": 2342137, "entity": "truck", "caption": "vertical door handle on delivery truck", "question": ["is there vertical door ?", "is there delivery truck ?"], "prompt": "vertical door handle on delivery {}"}, {"index": 505, "image_id": 2341556, "entity": "truck", "caption": "a truck is outside", "question": ["is there a truck ?"], "prompt": "a {} is outside"}, {"index": 506, "image_id": 2341556, "entity": "truck", "caption": "the truck has a brand name painted on ", "question": ["is there the truck ?", "is there a brand name ?"], "prompt": "the {} has a brand name painted on "}, {"index": 507, "image_id": 2341337, "entity": "truck", "caption": "gravel is on the train trucks ", "question": ["is there gravel ?", "are there the train trucks ?"], "prompt": "gravel is on the train {}s "}, {"index": 508, "image_id": 2341077, "entity": "truck", "caption": "two people standing behind a truck", "question": ["are there two people ?", "is there a truck ?"], "prompt": "two people standing behind a {}"}, {"index": 509, "image_id": 2340746, "entity": "truck", "caption": "truck has black wheels", "question": ["is there truck ?", "are there black wheels ?"], "prompt": "{} has black wheels"}, {"index": 510, "image_id": 2340746, "entity": "truck", "caption": "man shoving an animal into a truck", "question": ["is there man ?", "is there an animal ?", "is there a truck ?"], "prompt": "man shoving an animal into a {}"}, {"index": 511, "image_id": 2340595, "entity": "truck", "caption": "a wheel turned under the truck", "question": ["is there a wheel ?", "is there the truck ?"], "prompt": "a wheel turned under the {}"}, {"index": 512, "image_id": 2340429, "entity": "truck", "caption": "Person walking near truck.", "question": ["is there person ?", "is there truck ?"], "prompt": "Person walking near {}."}, {"index": 513, "image_id": 2340353, "entity": "truck", "caption": "a black shirt draped over a truck", "question": ["is there a black shirt ?", "is there a truck ?"], "prompt": "a black shirt draped over a {}"}, {"index": 514, "image_id": 2340353, "entity": "truck", "caption": "Tee shirt draped on side of truck", "question": ["is there tee shirt ?", "is there side ?", "is there truck ?"], "prompt": "Tee shirt draped on side of {}"}, {"index": 515, "image_id": 2339539, "entity": "truck", "caption": "person driving the truck", "question": ["is there person ?", "is there the truck ?"], "prompt": "person driving the {}"}, {"index": 516, "image_id": 2339539, "entity": "truck", "caption": "the truck has a black trailer bed ", "question": ["is there the truck ?", "is there a black trailer bed ?"], "prompt": "the {} has a black trailer bed "}, {"index": 517, "image_id": 2339539, "entity": "truck", "caption": "he is driving the truck ", "question": ["is there the truck ?"], "prompt": "he is driving the {} "}, {"index": 518, "image_id": 2339412, "entity": "truck", "caption": "The old truck has wood boards on it.", "question": ["is there the old truck ?", "are there wood boards ?"], "prompt": "The old {} has wood boards on it."}, {"index": 519, "image_id": 2339139, "entity": "truck", "caption": "Rear left tire on a tow truck", "question": ["is there rear left tire ?", "is there a tow truck ?"], "prompt": "Rear left tire on a tow {}"}, {"index": 520, "image_id": 2339139, "entity": "truck", "caption": "Front left head light on a truck", "question": ["is there front left head light ?", "is there a truck ?"], "prompt": "Front left head light on a {}"}, {"index": 521, "image_id": 2339139, "entity": "truck", "caption": "The door handle on a truck", "question": ["is there the door ?", "is there a truck ?"], "prompt": "The door handle on a {}"}, {"index": 522, "image_id": 2338619, "entity": "truck", "caption": "the guy is on top of the fire truck ", "question": ["is there the guy ?", "is there top ?", "is there the fire truck ?"], "prompt": "the guy is on top of the fire {} "}, {"index": 523, "image_id": 2337684, "entity": "truck", "caption": "the folgers container under the truck", "question": ["are there the folgers container ?", "is there the truck ?"], "prompt": "the folgers container under the {}"}, {"index": 524, "image_id": 2337628, "entity": "truck", "caption": "the truck is full of dogs", "question": ["is there the truck ?", "are there dogs ?"], "prompt": "the {} is full of dogs"}, {"index": 525, "image_id": 2337628, "entity": "truck", "caption": "the truck has photos of dogs", "question": ["is there the truck ?", "are there photos ?", "are there dogs ?"], "prompt": "the {} has photos of dogs"}, {"index": 526, "image_id": 2337628, "entity": "truck", "caption": "the truck has wheels", "question": ["is there the truck ?", "are there wheels ?"], "prompt": "the {} has wheels"}, {"index": 527, "image_id": 2336350, "entity": "truck", "caption": "the trees are behind the truck", "question": ["are there the trees ?", "is there the truck ?"], "prompt": "the trees are behind the {}"}, {"index": 528, "image_id": 2336187, "entity": "truck", "caption": "The word Mackinnon's on the front of a truck", "question": ["is there the word ?", "is there the front ?", "is there a truck ?"], "prompt": "The word Mackinnon's on the front of a {}"}, {"index": 529, "image_id": 2335976, "entity": "truck", "caption": "back door on truck is open", "question": ["is there door ?", "is there truck ?"], "prompt": "back door on {} is open"}, {"index": 530, "image_id": 2335976, "entity": "truck", "caption": "man is walking toward truck", "question": ["is there man ?", "is there truck ?"], "prompt": "man is walking toward {}"}, {"index": 531, "image_id": 2335976, "entity": "truck", "caption": "The door of the truck is open.", "question": ["is there the door ?", "is there the truck ?"], "prompt": "The door of the {} is open."}, {"index": 532, "image_id": 2335976, "entity": "truck", "caption": "Garbage can by the truck.", "question": ["is there garbage ?", "is there the truck ?"], "prompt": "Garbage can by the {}."}, {"index": 533, "image_id": 2335976, "entity": "truck", "caption": "food truck menu painted on side of truck", "question": ["is there food truck menu ?", "is there side ?", "is there truck ?"], "prompt": "food {} menu painted on side of {}"}, {"index": 534, "image_id": 2335337, "entity": "truck", "caption": "Menu written on side of truck.", "question": ["is there menu ?", "is there side ?", "is there truck ?"], "prompt": "Menu written on side of {}."}, {"index": 535, "image_id": 2335292, "entity": "truck", "caption": "The motorcycle is in front of the truck", "question": ["is there the motorcycle ?", "is there front ?", "is there the truck ?"], "prompt": "The motorcycle is in front of the {}"}, {"index": 536, "image_id": 2335292, "entity": "truck", "caption": "The truck has a cardboard box in the bed", "question": ["is there the truck ?", "is there a cardboard box ?", "is there the bed ?"], "prompt": "The {} has a cardboard box in the bed"}, {"index": 537, "image_id": 2333358, "entity": "truck", "caption": "woman waiting for food at truck window", "question": ["is there woman ?", "is there food ?", "is there truck window ?"], "prompt": "woman waiting for food at {} window"}, {"index": 538, "image_id": 2333358, "entity": "truck", "caption": "a food truck is on the street", "question": ["is there a food truck ?", "is there the street ?"], "prompt": "a food {} is on the street"}, {"index": 539, "image_id": 2333348, "entity": "truck", "caption": "two men standing next to each other in front of truck", "question": ["are there two men ?", "is there front ?", "is there truck ?"], "prompt": "two men standing next to each other in front of {}"}, {"index": 540, "image_id": 2332754, "entity": "truck", "caption": "A wooden pole is behind the truck", "question": ["is there a wooden pole ?", "is there the truck ?"], "prompt": "A wooden pole is behind the {}"}, {"index": 541, "image_id": 2332750, "entity": "truck", "caption": "A fold up chair stands next to the truck", "question": ["is there a fold up chair ?", "is there the truck ?"], "prompt": "A fold up chair stands next to the {}"}, {"index": 542, "image_id": 2331746, "entity": "truck", "caption": "a truck travels in front the beach", "question": ["is there a truck ?", "is there front ?"], "prompt": "a {} travels in front the beach"}, {"index": 543, "image_id": 2331430, "entity": "truck", "caption": "this guy is on the back of the truck", "question": ["is there this guy ?", "is there the back ?", "is there the truck ?"], "prompt": "this guy is on the back of the {}"}, {"index": 544, "image_id": 2330313, "entity": "truck", "caption": "A flap is visible on a truck.", "question": ["is there a flap ?", "is there a truck ?"], "prompt": "A flap is visible on a {}."}, {"index": 545, "image_id": 2329413, "entity": "truck", "caption": "Web URL painted in black letters on white truck", "question": ["is there web url ?", "are there black letters ?", "is there white truck ?"], "prompt": "Web URL painted in black letters on white {}"}, {"index": 546, "image_id": 2328751, "entity": "truck", "caption": "a person is driving the truck ", "question": ["is there a person ?", "is there the truck ?"], "prompt": "a person is driving the {} "}, {"index": 547, "image_id": 2328751, "entity": "truck", "caption": "The truck has a fire extinguisher.", "question": ["is there the truck ?", "is there a fire extinguisher ?"], "prompt": "The {} has a fire extinguisher."}, {"index": 548, "image_id": 2328751, "entity": "truck", "caption": "The truck has a horn.", "question": ["is there the truck ?", "is there a horn ?"], "prompt": "The {} has a horn."}, {"index": 549, "image_id": 2328751, "entity": "truck", "caption": "The horn is on the truck roof.", "question": ["is there the horn ?", "is there the truck roof ?"], "prompt": "The horn is on the {} roof."}, {"index": 550, "image_id": 2328751, "entity": "truck", "caption": "The truck has a white grill.", "question": ["is there the truck ?", "is there a white grill ?"], "prompt": "The {} has a white grill."}, {"index": 551, "image_id": 2328751, "entity": "truck", "caption": "The truck has an orange light.", "question": ["is there the truck ?", "is there an orange light ?"], "prompt": "The {} has an orange light."}, {"index": 552, "image_id": 2328751, "entity": "truck", "caption": "The truck has a headlight.", "question": ["is there the truck ?", "is there a headlight ?"], "prompt": "The {} has a headlight."}, {"index": 553, "image_id": 2328751, "entity": "truck", "caption": "The truck has a big tire.", "question": ["is there the truck ?", "is there a big tire ?"], "prompt": "The {} has a big tire."}, {"index": 554, "image_id": 2327911, "entity": "truck", "caption": "The truck has a black dump bed.", "question": ["is there the truck ?", "is there a black dump bed ?"], "prompt": "The {} has a black dump bed."}, {"index": 555, "image_id": 2327911, "entity": "truck", "caption": "The truck cab has orange lights.", "question": ["is there the truck cab ?", "are there orange lights ?"], "prompt": "The {} cab has orange lights."}, {"index": 556, "image_id": 2327911, "entity": "truck", "caption": "The truck has a tire.", "question": ["is there the truck ?", "is there a tire ?"], "prompt": "The {} has a tire."}, {"index": 557, "image_id": 2325925, "entity": "truck", "caption": "The truck has the number 20 on its side", "question": ["is there the truck ?", "is there the number ?", "is there its side ?"], "prompt": "The {} has the number 20 on its side"}, {"index": 558, "image_id": 2325611, "entity": "truck", "caption": "the truck has white writing", "question": ["is there the truck ?", "is there white writing ?"], "prompt": "the {} has white writing"}, {"index": 559, "image_id": 2324486, "entity": "truck", "caption": "The license plate is on the back of truck", "question": ["is there the license plate ?", "is there the back ?", "is there truck ?"], "prompt": "The license plate is on the back of {}"}, {"index": 560, "image_id": 2324486, "entity": "truck", "caption": "The word DIESEL on back of truck. ", "question": ["is there the word diesel ?", "is there back ?", "is there truck ?"], "prompt": "The word DIESEL on back of {}. "}, {"index": 561, "image_id": 2323321, "entity": "truck", "caption": "the graffiti on the truck is green", "question": ["is there the graffiti ?", "is there the truck ?"], "prompt": "the graffiti on the {} is green"}, {"index": 562, "image_id": 2323321, "entity": "truck", "caption": "the truck is on the street", "question": ["is there the truck ?", "is there the street ?"], "prompt": "the {} is on the street"}, {"index": 563, "image_id": 2323321, "entity": "truck", "caption": "a truck that has graffiti", "question": ["is there a truck ?"], "prompt": "a {} that has graffiti"}, {"index": 564, "image_id": 2323077, "entity": "truck", "caption": "Crane lowering truck onto truck", "question": ["is there truck ?", "is there truck ?"], "prompt": "Crane lowering {} onto {}"}, {"index": 565, "image_id": 2322225, "entity": "truck", "caption": "Mud flaps on a truck.", "question": ["are there mud flaps ?", "is there a truck ?"], "prompt": "Mud flaps on a {}."}, {"index": 566, "image_id": 2322197, "entity": "truck", "caption": "Ford emblem on a truck", "question": ["is there a truck ?"], "prompt": "Ford emblem on a {}"}, {"index": 567, "image_id": 2321380, "entity": "truck", "caption": "tarp covering back of truck", "question": ["is there tarp ?", "is there truck ?"], "prompt": "tarp covering back of {}"}, {"index": 568, "image_id": 2321380, "entity": "truck", "caption": "drivers side door of truck", "question": ["are there drivers ?", "is there door ?", "is there truck ?"], "prompt": "drivers side door of {}"}, {"index": 569, "image_id": 2320291, "entity": "truck", "caption": "man walking in front of red truck", "question": ["is there man ?", "is there front ?", "is there red truck ?"], "prompt": "man walking in front of red {}"}, {"index": 570, "image_id": 2319823, "entity": "truck", "caption": "the light on the truck is on ", "question": ["is there the light ?", "is there the truck ?"], "prompt": "the light on the {} is on "}, {"index": 571, "image_id": 2319676, "entity": "truck", "caption": "The truck has a white cab.", "question": ["is there the truck ?", "is there a white cab ?"], "prompt": "The {} has a white cab."}, {"index": 572, "image_id": 2319676, "entity": "truck", "caption": "The truck has a windshield wiper.", "question": ["is there the truck ?", "is there a windshield wiper ?"], "prompt": "The {} has a windshield wiper."}, {"index": 573, "image_id": 2319676, "entity": "truck", "caption": "The driver of the truck is a man.", "question": ["is there the driver ?", "is there the truck ?", "is there a man ?"], "prompt": "The driver of the {} is a man."}, {"index": 574, "image_id": 2319556, "entity": "truck", "caption": "Realistic strawberries painted on truck.", "question": ["are there realistic strawberries ?", "is there truck ?"], "prompt": "Realistic strawberries painted on {}."}, {"index": 575, "image_id": 2319556, "entity": "truck", "caption": "Realistic blackberries painted on truck", "question": ["are there realistic blackberries ?", "is there truck ?"], "prompt": "Realistic blackberries painted on {}"}, {"index": 576, "image_id": 2319556, "entity": "truck", "caption": "Very nice shades of purple painted on truck.", "question": ["are there very nice shades ?", "is there purple ?", "is there truck ?"], "prompt": "Very nice shades of purple painted on {}."}, {"index": 577, "image_id": 2319540, "entity": "truck", "caption": "wagon behind pick up truck", "question": ["is there wagon ?", "is there truck ?"], "prompt": "wagon behind pick up {}"}, {"index": 578, "image_id": 2319280, "entity": "truck", "caption": "PErson sitting in the cab of a truck", "question": ["is there person ?", "is there the cab ?", "is there a truck ?"], "prompt": "PErson sitting in the cab of a {}"}, {"index": 579, "image_id": 2319280, "entity": "truck", "caption": "three people part way under the truck", "question": ["are there three people ?", "is there the truck ?"], "prompt": "three people part way under the {}"}, {"index": 580, "image_id": 2318538, "entity": "truck", "caption": "the dirt piled in the bed of the truck", "question": ["is there the dirt ?", "is there the bed ?", "is there the truck ?"], "prompt": "the dirt piled in the bed of the {}"}, {"index": 581, "image_id": 2317984, "entity": "truck", "caption": "The truck has two plows on it.", "question": ["is there the truck ?", "are there two plows ?"], "prompt": "The {} has two plows on it."}, {"index": 582, "image_id": 2317934, "entity": "truck", "caption": "the company that built the firetruck", "question": ["is there the company ?", "is there the firetruck ?"], "prompt": "the company that built the fire{}"}, {"index": 583, "image_id": 2317726, "entity": "truck", "caption": "the people are climbing the truck", "question": ["are there the people ?", "is there the truck ?"], "prompt": "the people are climbing the {}"}, {"index": 584, "image_id": 2317513, "entity": "truck", "caption": "an old truck sits in a yard", "question": ["is there an old truck ?", "is there a yard ?"], "prompt": "an old {} sits in a yard"}, {"index": 585, "image_id": 2317513, "entity": "truck", "caption": "Grill work on front of truck.", "question": ["is there grill work ?", "is there front ?", "is there truck ?"], "prompt": "Grill work on front of {}."}, {"index": 586, "image_id": 2317513, "entity": "truck", "caption": "Old fashion headlight on front of truck.", "question": ["is there old fashion headlight ?", "is there front ?", "is there truck ?"], "prompt": "Old fashion headlight on front of {}."}, {"index": 587, "image_id": 2317513, "entity": "truck", "caption": "Front right tire flat on truck.", "question": ["is there right tire ?", "is there truck ?"], "prompt": "Front right tire flat on {}."}, {"index": 588, "image_id": 2317240, "entity": "truck", "caption": "White and black mud flaps on back of truck.", "question": ["are there white and black mud flaps ?", "is there back ?", "is there truck ?"], "prompt": "White and black mud flaps on back of {}."}, {"index": 589, "image_id": 2317240, "entity": "truck", "caption": "large black tire mounted behind truck cab", "question": ["is there large black tire ?", "is there truck cab ?"], "prompt": "large black tire mounted behind {} cab"}, {"index": 590, "image_id": 2316849, "entity": "truck", "caption": "he is leaning on the truck ", "question": ["is there the truck ?"], "prompt": "he is leaning on the {} "}, {"index": 591, "image_id": 2316849, "entity": "truck", "caption": "the truck grill is black", "question": ["is there the truck grill ?"], "prompt": "the {} grill is black"}, {"index": 592, "image_id": 2316663, "entity": "truck", "caption": "cord wrapped over items in truck and secured on sides", "question": ["is there cord ?", "are there items ?", "is there truck ?", "are there sides ?"], "prompt": "cord wrapped over items in {} and secured on sides"}, {"index": 593, "image_id": 2316663, "entity": "truck", "caption": "Trailer hitch on a truck", "question": ["is there trailer hitch ?", "is there a truck ?"], "prompt": "Trailer hitch on a {}"}, {"index": 594, "image_id": 2316538, "entity": "truck", "caption": "a rack mounted on top of the truck cab", "question": ["is there a rack ?", "is there top ?", "is there the truck cab ?"], "prompt": "a rack mounted on top of the {} cab"}, {"index": 595, "image_id": 2316538, "entity": "truck", "caption": "truck sits on a pockmarked street", "question": ["is there truck ?", "is there a pockmarked street ?"], "prompt": "{} sits on a pockmarked street"}, {"index": 596, "image_id": 2315863, "entity": "truck", "caption": "door handle on the truck", "question": ["is there door ?", "is there the truck ?"], "prompt": "door handle on the {}"}, {"index": 597, "image_id": 2315632, "entity": "truck", "caption": "a woman sititn gon truck", "question": ["is there a woman sititn ?", "is there truck ?"], "prompt": "a woman sititn gon {}"}, {"index": 598, "image_id": 2315484, "entity": "truck", "caption": "chrome plated grill on the front of a truck", "question": ["is there chrome plated grill ?", "is there the front ?", "is there a truck ?"], "prompt": "chrome plated grill on the front of a {}"}, {"index": 599, "image_id": 2414401, "entity": "truck", "caption": "the truck has a red brakelight", "question": ["is there the truck ?", "is there a red brakelight ?"], "prompt": "the {} has a red brakelight"}, {"index": 600, "image_id": 2414401, "entity": "truck", "caption": "the truck is carrying a ladder ", "question": ["is there the truck ?", "is there a ladder ?"], "prompt": "the {} is carrying a ladder "}, {"index": 601, "image_id": 2414213, "entity": "truck", "caption": "the door handle on the truck is silver", "question": ["is there the door ?", "is there the truck ?"], "prompt": "the door handle on the {} is silver"}, {"index": 602, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver mirror", "question": ["is there the blue truck ?", "is there a silver mirror ?"], "prompt": "the blue {} has a silver mirror"}, {"index": 603, "image_id": 2414213, "entity": "truck", "caption": "the blue truck has a silver stripe", "question": ["is there the blue truck ?", "is there a silver stripe ?"], "prompt": "the blue {} has a silver stripe"}, {"index": 604, "image_id": 2414213, "entity": "truck", "caption": "a dog is looking out truck window", "question": ["is there a dog ?"], "prompt": "a dog is looking out {} window"}, {"index": 605, "image_id": 2414213, "entity": "truck", "caption": "Silverado emblem on the side of the truck", "question": ["is there silverado emblem ?", "is there the side ?", "is there the truck ?"], "prompt": "Silverado emblem on the side of the {}"}, {"index": 606, "image_id": 2414213, "entity": "truck", "caption": "Door handle on the side of the truck", "question": ["is there door ?", "is there the side ?", "is there the truck ?"], "prompt": "Door handle on the side of the {}"}, {"index": 607, "image_id": 2414197, "entity": "truck", "caption": "The truck carries equipment. ", "question": ["is there the truck ?", "is there equipment ?"], "prompt": "The {} carries equipment. "}, {"index": 608, "image_id": 2414197, "entity": "truck", "caption": "The truck carries a hose.", "question": ["is there the truck ?", "is there a hose ?"], "prompt": "The {} carries a hose."}, {"index": 609, "image_id": 2414197, "entity": "truck", "caption": "The truck carries cables. ", "question": ["is there the truck ?", "are there cables ?"], "prompt": "The {} carries cables. "}, {"index": 610, "image_id": 2414197, "entity": "truck", "caption": "The truck's front has red stripes.", "question": ["is there the truck's front ?", "are there red stripes ?"], "prompt": "The {}'s front has red stripes."}, {"index": 611, "image_id": 2414197, "entity": "truck", "caption": "Three of the truck's tires are visible.", "question": ["are there the truck's tires ?"], "prompt": "Three of the {}'s tires are visible."}, {"index": 612, "image_id": 2414142, "entity": "truck", "caption": "the truck says brennstoffe on the back", "question": ["is there the truck ?", "is there the back ?"], "prompt": "the {} says brennstoffe on the back"}, {"index": 613, "image_id": 2414142, "entity": "truck", "caption": "a car is on the road in front of the truck", "question": ["is there a car ?", "is there the road ?", "is there front ?", "is there the truck ?"], "prompt": "a car is on the road in front of the {}"}, {"index": 614, "image_id": 2414142, "entity": "truck", "caption": "the back of the truck says man", "question": ["is there the back ?", "is there the truck ?", "is there man ?"], "prompt": "the back of the {} says man"}, {"index": 615, "image_id": 2413814, "entity": "truck", "caption": "Sign written in white on side of truck.", "question": ["is there sign ?", "is there side ?", "is there truck ?"], "prompt": "Sign written in white on side of {}."}, {"index": 616, "image_id": 2413814, "entity": "truck", "caption": "A white SUV is behind the truck ", "question": ["is there the truck ?"], "prompt": "A white SUV is behind the {} "}, {"index": 617, "image_id": 2413579, "entity": "truck", "caption": "truck has chrome wheelie bar on back", "question": ["is there truck ?", "is there chrome wheelie bar ?"], "prompt": "{} has chrome wheelie bar on back"}, {"index": 618, "image_id": 2413408, "entity": "truck", "caption": "The truck has yellow hubcaps.", "question": ["is there the truck ?", "are there yellow hubcaps ?"], "prompt": "The {} has yellow hubcaps."}, {"index": 619, "image_id": 2413408, "entity": "truck", "caption": "The truck has two headlights.", "question": ["is there the truck ?", "are there two headlights ?"], "prompt": "The {} has two headlights."}, {"index": 620, "image_id": 2413104, "entity": "truck", "caption": "a mechanical arm sits on top of a truck", "question": ["is there a mechanical arm ?", "is there top ?", "is there a truck ?"], "prompt": "a mechanical arm sits on top of a {}"}, {"index": 621, "image_id": 2413104, "entity": "truck", "caption": "This truck has 6 wheels", "question": ["is there this truck ?", "are there 6 wheels ?"], "prompt": "This {} has 6 wheels"}, {"index": 622, "image_id": 2413104, "entity": "truck", "caption": "This door enters the truck", "question": ["is there this door ?", "is there the truck ?"], "prompt": "This door enters the {}"}, {"index": 623, "image_id": 2413104, "entity": "truck", "caption": "Trees are next to the truck", "question": ["are there trees ?", "is there the truck ?"], "prompt": "Trees are next to the {}"}, {"index": 624, "image_id": 2413104, "entity": "truck", "caption": "man standing next to a truck", "question": ["is there man ?", "is there a truck ?"], "prompt": "man standing next to a {}"}, {"index": 625, "image_id": 2412942, "entity": "truck", "caption": "the truck has large tyres", "question": ["is there the truck ?", "are there large tyres ?"], "prompt": "the {} has large tyres"}, {"index": 626, "image_id": 2412792, "entity": "truck", "caption": "the truck is casting a shadow underneath", "question": ["is there the truck ?", "is there a shadow ?"], "prompt": "the {} is casting a shadow underneath"}, {"index": 627, "image_id": 2412792, "entity": "truck", "caption": "the truck has a crane on it's back", "question": ["is there the truck ?", "is there a crane ?"], "prompt": "the {} has a crane on it's back"}, {"index": 628, "image_id": 2412792, "entity": "truck", "caption": "the side of the truck has Chinese lettering", "question": ["is there the side ?", "is there the truck ?", "is there chinese lettering ?"], "prompt": "the side of the {} has Chinese lettering"}, {"index": 629, "image_id": 2412792, "entity": "truck", "caption": "a palm tree is behind the truck", "question": ["is there a palm tree ?", "is there the truck ?"], "prompt": "a palm tree is behind the {}"}, {"index": 630, "image_id": 2412792, "entity": "truck", "caption": "a white column is on the right of the truck", "question": ["is there a white column ?", "is there the right ?", "is there the truck ?"], "prompt": "a white column is on the right of the {}"}, {"index": 631, "image_id": 2412792, "entity": "truck", "caption": "truck has a crane on back", "question": ["is there truck ?", "is there a crane ?"], "prompt": "{} has a crane on back"}, {"index": 632, "image_id": 2412792, "entity": "truck", "caption": "Roof of truck is red", "question": ["is there roof ?", "is there truck ?"], "prompt": "Roof of {} is red"}, {"index": 633, "image_id": 2412603, "entity": "truck", "caption": "Man is by a red Toyota truck", "question": ["is there man ?", "is there a red toyota truck ?"], "prompt": "Man is by a red Toyota {}"}, {"index": 634, "image_id": 2412488, "entity": "truck", "caption": "a person works on a truck", "question": ["is there a person ?", "is there a truck ?"], "prompt": "a person works on a {}"}, {"index": 635, "image_id": 2412483, "entity": "truck", "caption": "woman in purple shirt looking at truck", "question": ["is there woman ?", "is there purple shirt ?", "is there truck ?"], "prompt": "woman in purple shirt looking at {}"}, {"index": 636, "image_id": 2412483, "entity": "truck", "caption": "man in black shirt taking picture of truck", "question": ["is there man ?", "is there black shirt ?", "is there picture ?", "is there truck ?"], "prompt": "man in black shirt taking picture of {}"}, {"index": 637, "image_id": 2412186, "entity": "truck", "caption": "Front headlight on the red truck.", "question": ["is there front headlight ?", "is there the red truck ?"], "prompt": "Front headlight on the red {}."}, {"index": 638, "image_id": 2412186, "entity": "truck", "caption": "canoe tied on top of truck", "question": ["is there canoe ?", "is there top ?", "is there truck ?"], "prompt": "canoe tied on top of {}"}, {"index": 639, "image_id": 2412186, "entity": "truck", "caption": "truck logo painted on fender", "question": ["is there truck logo ?", "is there fender ?"], "prompt": "{} logo painted on fender"}, {"index": 640, "image_id": 2412161, "entity": "truck", "caption": "The truck has a side mirror.", "question": ["is there the truck ?", "is there a side mirror ?"], "prompt": "The {} has a side mirror."}, {"index": 641, "image_id": 2412161, "entity": "truck", "caption": "Rust surrounds truck headlight. ", "question": ["is there rust ?", "is there truck headlight ?"], "prompt": "Rust surrounds {} headlight. "}, {"index": 642, "image_id": 2415675, "entity": "truck", "caption": "these are truck wheels", "question": ["are there truck wheels ?"], "prompt": "these are {} wheels"}, {"index": 643, "image_id": 2416928, "entity": "truck", "caption": "Yellow truck has big wheels ", "question": ["is there yellow truck ?", "are there big wheels ?"], "prompt": "Yellow {} has big wheels "}, {"index": 644, "image_id": 2417877, "entity": "truck", "caption": "Strange artwork is on the truck ", "question": ["is there strange artwork ?", "is there the truck ?"], "prompt": "Strange artwork is on the {} "}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n04612504.json b/data/imagenet/compositions/prompts/n04612504.json
new file mode 100644
index 0000000000000000000000000000000000000000..1091d72597600d36f049b579bcd37e9d0ad4df2a
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n04612504.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 815, "entity": "boat", "caption": "The boat has windows", "question": ["is there the boat ?", "are there windows ?"], "prompt": "The {} has windows"}, {"index": 1, "image_id": 1883, "entity": "boat", "caption": "The boat has empty seats.", "question": ["is there the boat ?", "are there empty seats ?"], "prompt": "The {} has empty seats."}, {"index": 2, "image_id": 1902, "entity": "boat", "caption": "woman with blue shirt standing on boat", "question": ["is there woman ?", "is there blue shirt ?", "is there boat ?"], "prompt": "woman with blue shirt standing on {}"}, {"index": 3, "image_id": 1904, "entity": "boat", "caption": "black letters and numbers painted on a boat", "question": ["are there black letters ?", "are there numbers ?", "is there a boat ?"], "prompt": "black letters and numbers painted on a {}"}, {"index": 4, "image_id": 2562, "entity": "boat", "caption": "white person is on a boat", "question": ["is there white person ?", "is there a boat ?"], "prompt": "white person is on a {}"}, {"index": 5, "image_id": 2562, "entity": "boat", "caption": "Life preserver on the boat", "question": ["is there life preserver ?", "is there the boat ?"], "prompt": "Life preserver on the {}"}, {"index": 6, "image_id": 4245, "entity": "boat", "caption": "white boat parked in the dock ", "question": ["is there white boat ?", "is there the dock ?"], "prompt": "white {} parked in the dock "}, {"index": 7, "image_id": 4245, "entity": "boat", "caption": "boat is tired to the pier", "question": ["is there boat ?", "is there the pier ?"], "prompt": "{} is tired to the pier"}, {"index": 8, "image_id": 4990, "entity": "boat", "caption": "personal floating device on the sailboats transom", "question": ["is there personal floating device ?", "are there the sailboats ?"], "prompt": "personal floating device on the sail{}s transom"}, {"index": 9, "image_id": 61552, "entity": "boat", "caption": "A man in a hat is on a small boat in the water", "question": ["is there a man ?", "is there a hat ?", "is there a small boat ?", "is there the water ?"], "prompt": "A man in a hat is on a small {} in the water"}, {"index": 10, "image_id": 61588, "entity": "boat", "caption": "blue letters painted on a boat", "question": ["are there blue letters ?", "is there a boat ?"], "prompt": "blue letters painted on a {}"}, {"index": 11, "image_id": 285605, "entity": "boat", "caption": "bottom of boat is blue in color", "question": ["is there bottom ?", "is there boat ?", "is there color ?"], "prompt": "bottom of {} is blue in color"}, {"index": 12, "image_id": 498166, "entity": "boat", "caption": "People rowing a boat", "question": ["are there people ?", "is there a boat ?"], "prompt": "People rowing a {}"}, {"index": 13, "image_id": 498166, "entity": "boat", "caption": "the boats have canopies", "question": ["are there the boats ?", "are there canopies ?"], "prompt": "the {}s have canopies"}, {"index": 14, "image_id": 498267, "entity": "boat", "caption": "the white buoy hanging off the boat", "question": ["is there the white buoy ?", "is there the boat ?"], "prompt": "the white buoy hanging off the {}"}, {"index": 15, "image_id": 498267, "entity": "boat", "caption": "The boat is in the water.", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is in the water."}, {"index": 16, "image_id": 713061, "entity": "boat", "caption": "American flag flying on boat", "question": ["is there american flag ?", "is there boat ?"], "prompt": "American flag flying on {}"}, {"index": 17, "image_id": 713156, "entity": "boat", "caption": "boat is next to boat in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is next to {} in water"}, {"index": 18, "image_id": 713162, "entity": "boat", "caption": "large boat docked by building", "question": ["is there large boat ?"], "prompt": "large {} docked by building"}, {"index": 19, "image_id": 713162, "entity": "boat", "caption": "the boat parked next to the red house", "question": ["is there the boat ?"], "prompt": "the {} parked next to the red house"}, {"index": 20, "image_id": 713470, "entity": "boat", "caption": "boat has wooden benched", "question": ["is there boat ?"], "prompt": "{} has wooden benched"}, {"index": 21, "image_id": 713832, "entity": "boat", "caption": "words are on the boat", "question": ["are there words ?", "is there the boat ?"], "prompt": "words are on the {}"}, {"index": 22, "image_id": 713832, "entity": "boat", "caption": "boat has a pole", "question": ["is there boat ?", "is there a pole ?"], "prompt": "{} has a pole"}, {"index": 23, "image_id": 713832, "entity": "boat", "caption": "boat has a window", "question": ["is there boat ?", "is there a window ?"], "prompt": "{} has a window"}, {"index": 24, "image_id": 1159573, "entity": "boat", "caption": "blue and white boat sitting in body of water", "question": ["is there blue and white boat ?", "is there body ?", "is there water ?"], "prompt": "blue and white {} sitting in body of water"}, {"index": 25, "image_id": 1159823, "entity": "boat", "caption": "two boats side by side", "question": ["are there two boats ?", "is there side ?"], "prompt": "two {}s side by side"}, {"index": 26, "image_id": 1159823, "entity": "boat", "caption": "\"RX60\" painted on boat with black paint", "question": ["is there boat ?", "is there black paint ?"], "prompt": "\"RX60\" painted on {} with black paint"}, {"index": 27, "image_id": 1160209, "entity": "boat", "caption": "Long blue rope tied to boat.", "question": ["is there long blue rope ?", "is there boat ?"], "prompt": "Long blue rope tied to {}."}, {"index": 28, "image_id": 1160209, "entity": "boat", "caption": "brown rope tied on the boat", "question": ["is there brown rope ?", "is there the boat ?"], "prompt": "brown rope tied on the {}"}, {"index": 29, "image_id": 1592080, "entity": "boat", "caption": "the bottom of the boat is red", "question": ["is there the bottom ?", "is there the boat ?"], "prompt": "the bottom of the {} is red"}, {"index": 30, "image_id": 1592080, "entity": "boat", "caption": "the tarp on the boat is blue", "question": ["is there the tarp ?", "is there the boat ?"], "prompt": "the tarp on the {} is blue"}, {"index": 31, "image_id": 1592464, "entity": "boat", "caption": "american flag flying from the boat", "question": ["is there american flag ?", "is there the boat ?"], "prompt": "american flag flying from the {}"}, {"index": 32, "image_id": 1592464, "entity": "boat", "caption": "water the boat is on", "question": ["is there the boat ?"], "prompt": "water the {} is on"}, {"index": 33, "image_id": 1592891, "entity": "boat", "caption": "White covers on yellow boat", "question": ["are there white covers ?", "is there yellow boat ?"], "prompt": "White covers on yellow {}"}, {"index": 34, "image_id": 1592891, "entity": "boat", "caption": "the boat has fabric stripe", "question": ["is there the boat ?", "is there fabric stripe ?"], "prompt": "the {} has fabric stripe"}, {"index": 35, "image_id": 1592892, "entity": "boat", "caption": "the man is on a boat", "question": ["is there the man ?", "is there a boat ?"], "prompt": "the man is on a {}"}, {"index": 36, "image_id": 1592892, "entity": "boat", "caption": "Man working on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man working on a {}"}, {"index": 37, "image_id": 1592951, "entity": "boat", "caption": "The truck on the boat is blue in color.", "question": ["is there the truck ?", "is there the boat ?", "is there color ?"], "prompt": "The truck on the {} is blue in color."}, {"index": 38, "image_id": 2414926, "entity": "boat", "caption": "The boat is in the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is in the water"}, {"index": 39, "image_id": 2414334, "entity": "boat", "caption": "Large boat docked on water.", "question": ["is there large boat ?", "is there water ?"], "prompt": "Large {} docked on water."}, {"index": 40, "image_id": 2413907, "entity": "boat", "caption": "Man standing on a boat holding a hot dog.", "question": ["is there man ?", "is there a boat ?", "is there a hot dog ?"], "prompt": "Man standing on a {} holding a hot dog."}, {"index": 41, "image_id": 2413848, "entity": "boat", "caption": "boat has chinese letters", "question": ["is there boat ?", "are there chinese letters ?"], "prompt": "{} has chinese letters"}, {"index": 42, "image_id": 2413848, "entity": "boat", "caption": "boat has yellow floaters on the side", "question": ["is there boat ?", "are there yellow floaters ?", "is there the side ?"], "prompt": "{} has yellow floaters on the side"}, {"index": 43, "image_id": 2413848, "entity": "boat", "caption": "boat has orange bouys", "question": ["is there boat ?", "are there orange bouys ?"], "prompt": "{} has orange bouys"}, {"index": 44, "image_id": 2413848, "entity": "boat", "caption": "the inside of the boat is green", "question": ["is there the inside ?", "is there the boat ?"], "prompt": "the inside of the {} is green"}, {"index": 45, "image_id": 2413848, "entity": "boat", "caption": "wooden boat dock", "question": ["is there wooden boat ?"], "prompt": "wooden {} dock"}, {"index": 46, "image_id": 2413848, "entity": "boat", "caption": "the boat is at the dock", "question": ["is there the boat ?", "is there the dock ?"], "prompt": "the {} is at the dock"}, {"index": 47, "image_id": 2413564, "entity": "boat", "caption": "an orange life saver hangs on the boat", "question": ["is there an orange life saver ?", "is there the boat ?"], "prompt": "an orange life saver hangs on the {}"}, {"index": 48, "image_id": 2413564, "entity": "boat", "caption": "the boat in the front has a tall mast", "question": ["is there the boat ?", "is there the front ?", "is there a tall mast ?"], "prompt": "the {} in the front has a tall mast"}, {"index": 49, "image_id": 2413564, "entity": "boat", "caption": "the boats are on the bay", "question": ["are there the boats ?", "is there the bay ?"], "prompt": "the {}s are on the bay"}, {"index": 50, "image_id": 2412218, "entity": "boat", "caption": "a boat is in the photo", "question": ["is there a boat ?", "is there the photo ?"], "prompt": "a {} is in the photo"}, {"index": 51, "image_id": 2412218, "entity": "boat", "caption": "the boat is red with designs", "question": ["is there the boat ?", "are there designs ?"], "prompt": "the {} is red with designs"}, {"index": 52, "image_id": 2412218, "entity": "boat", "caption": "the boat is on the shore", "question": ["is there the boat ?", "is there the shore ?"], "prompt": "the {} is on the shore"}, {"index": 53, "image_id": 2412218, "entity": "boat", "caption": "the boat has a star of david", "question": ["is there the boat ?", "is there a star ?"], "prompt": "the {} has a star of david"}, {"index": 54, "image_id": 2412218, "entity": "boat", "caption": "the boat has a heart ", "question": ["is there the boat ?", "is there a heart ?"], "prompt": "the {} has a heart "}, {"index": 55, "image_id": 2412218, "entity": "boat", "caption": "the boat has a cloud design", "question": ["is there the boat ?", "is there a cloud design ?"], "prompt": "the {} has a cloud design"}, {"index": 56, "image_id": 2412218, "entity": "boat", "caption": "heart shapes window in side of boat", "question": ["is there heart ?", "is there side ?", "is there boat ?"], "prompt": "heart shapes window in side of {}"}, {"index": 57, "image_id": 2411489, "entity": "boat", "caption": "boat docked at pier", "question": ["is there boat ?", "is there pier ?"], "prompt": "{} docked at pier"}, {"index": 58, "image_id": 2411204, "entity": "boat", "caption": "An enormous amount of water on which people ride boats.", "question": ["is there an enormous amount ?", "is there water ?", "are there people ?", "are there boats ?"], "prompt": "An enormous amount of water on which people ride {}s."}, {"index": 59, "image_id": 2410909, "entity": "boat", "caption": "Two people sit on a boat", "question": ["are there two people ?", "is there a boat ?"], "prompt": "Two people sit on a {}"}, {"index": 60, "image_id": 2410909, "entity": "boat", "caption": "A person is steering the boat with the rudder", "question": ["is there a person ?", "is there the boat ?", "is there the rudder ?"], "prompt": "A person is steering the {} with the rudder"}, {"index": 61, "image_id": 2410850, "entity": "boat", "caption": "a sniper rifle anchored to the boat", "question": ["is there a sniper rifle ?", "is there the boat ?"], "prompt": "a sniper rifle anchored to the {}"}, {"index": 62, "image_id": 2410850, "entity": "boat", "caption": "U.S. Coast Guard painted on boat", "question": ["is there boat ?"], "prompt": "U.S. Coast Guard painted on {}"}, {"index": 63, "image_id": 2410850, "entity": "boat", "caption": "Honda outboard boat motor", "question": [], "prompt": "Honda outboard {} motor"}, {"index": 64, "image_id": 2410846, "entity": "boat", "caption": "life preserver mounted to side of boat", "question": ["is there life preserver ?", "is there side ?", "is there boat ?"], "prompt": "life preserver mounted to side of {}"}, {"index": 65, "image_id": 2410846, "entity": "boat", "caption": "Life saving ring on the boat", "question": ["is there life saving ring ?", "is there the boat ?"], "prompt": "Life saving ring on the {}"}, {"index": 66, "image_id": 2409599, "entity": "boat", "caption": "Several boats are in the water. ", "question": ["are there several boats ?", "is there the water ?"], "prompt": "Several {}s are in the water. "}, {"index": 67, "image_id": 2409599, "entity": "boat", "caption": "The boat has several windows. ", "question": ["is there the boat ?", "are there several windows ?"], "prompt": "The {} has several windows. "}, {"index": 68, "image_id": 2409599, "entity": "boat", "caption": "A rope secures the boat to the dock.", "question": ["is there a rope ?", "is there the boat ?", "is there the dock ?"], "prompt": "A rope secures the {} to the dock."}, {"index": 69, "image_id": 2409599, "entity": "boat", "caption": "rope securing a boat to the dock", "question": ["is there rope ?", "is there a boat ?", "is there the dock ?"], "prompt": "rope securing a {} to the dock"}, {"index": 70, "image_id": 2409535, "entity": "boat", "caption": "Cables attached to larger boat", "question": ["are there cables ?", "is there larger boat ?"], "prompt": "Cables attached to larger {}"}, {"index": 71, "image_id": 2409535, "entity": "boat", "caption": "Name written on side of smaller boat", "question": ["is there name ?", "is there side ?", "is there smaller boat ?"], "prompt": "Name written on side of smaller {}"}, {"index": 72, "image_id": 2409535, "entity": "boat", "caption": "name of a boat painted on", "question": ["is there name ?", "is there a boat ?"], "prompt": "name of a {} painted on"}, {"index": 73, "image_id": 2409264, "entity": "boat", "caption": "small boy standing in a boat", "question": ["is there small boy ?", "is there a boat ?"], "prompt": "small boy standing in a {}"}, {"index": 74, "image_id": 2409264, "entity": "boat", "caption": "asian boy standing in boat", "question": ["is there asian boy ?", "is there boat ?"], "prompt": "asian boy standing in {}"}, {"index": 75, "image_id": 2409264, "entity": "boat", "caption": "person standing in boat in backgroung", "question": ["is there person ?", "is there boat ?", "is there backgroung ?"], "prompt": "person standing in {} in backgroung"}, {"index": 76, "image_id": 2408406, "entity": "boat", "caption": "hand hangs over side of boat.", "question": ["is there hand ?", "is there side ?", "is there boat ?"], "prompt": "hand hangs over side of {}."}, {"index": 77, "image_id": 2408406, "entity": "boat", "caption": "two large umbrellas covering most of boat", "question": ["are there two large umbrellas ?", "is there boat ?"], "prompt": "two large umbrellas covering most of {}"}, {"index": 78, "image_id": 2408406, "entity": "boat", "caption": "The person has their hand out of the boat", "question": ["is there the person ?", "is there their hand ?", "is there the boat ?"], "prompt": "The person has their hand out of the {}"}, {"index": 79, "image_id": 2408406, "entity": "boat", "caption": "hand of person who is riding in the boat", "question": ["is there hand ?", "is there person ?", "is there the boat ?"], "prompt": "hand of person who is riding in the {}"}, {"index": 80, "image_id": 2408406, "entity": "boat", "caption": "The food and umbrellas are on a boat. ", "question": ["is there the food ?", "are there umbrellas ?", "is there a boat ?"], "prompt": "The food and umbrellas are on a {}. "}, {"index": 81, "image_id": 2408030, "entity": "boat", "caption": "people sitting in a boat waiting", "question": ["are there people ?", "is there a boat ?"], "prompt": "people sitting in a {} waiting"}, {"index": 82, "image_id": 2408030, "entity": "boat", "caption": "person climbing into or out of the boat", "question": ["is there person ?", "is there the boat ?"], "prompt": "person climbing into or out of the {}"}, {"index": 83, "image_id": 2407441, "entity": "boat", "caption": "Man standing on a boat. ", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man standing on a {}. "}, {"index": 84, "image_id": 2407441, "entity": "boat", "caption": "wooden boat with woman standing", "question": ["is there wooden boat ?", "is there woman ?"], "prompt": "wooden {} with woman standing"}, {"index": 85, "image_id": 2406902, "entity": "boat", "caption": "Orange life preserver on a white boat.", "question": ["is there orange life preserver ?", "is there a white boat ?"], "prompt": "Orange life preserver on a white {}."}, {"index": 86, "image_id": 2405871, "entity": "boat", "caption": "a bridge goes into the boat", "question": ["is there a bridge ?", "is there the boat ?"], "prompt": "a bridge goes into the {}"}, {"index": 87, "image_id": 2405602, "entity": "boat", "caption": "small boat going out to sea", "question": ["is there small boat ?", "is there sea ?"], "prompt": "small {} going out to sea"}, {"index": 88, "image_id": 2404841, "entity": "boat", "caption": "bamboo boats parked together", "question": ["are there bamboo boats ?"], "prompt": "bamboo {}s parked together"}, {"index": 89, "image_id": 2404841, "entity": "boat", "caption": "orange life preservers are hanging from the boat chairs", "question": ["are there orange life preservers ?", "are there the boat chairs ?"], "prompt": "orange life preservers are hanging from the {} chairs"}, {"index": 90, "image_id": 2404198, "entity": "boat", "caption": "The boat has two life boats on the right side", "question": ["is there the boat ?", "are there two life boats ?", "is there the right side ?"], "prompt": "The {} has two life {}s on the right side"}, {"index": 91, "image_id": 2404184, "entity": "boat", "caption": "These people are on a boat ride", "question": ["are there these people ?", "is there a boat ride ?"], "prompt": "These people are on a {} ride"}, {"index": 92, "image_id": 2404184, "entity": "boat", "caption": "The boat is creating waves", "question": ["is there the boat ?", "are there waves ?"], "prompt": "The {} is creating waves"}, {"index": 93, "image_id": 2403899, "entity": "boat", "caption": "three people are on the boat", "question": ["are there three people ?", "is there the boat ?"], "prompt": "three people are on the {}"}, {"index": 94, "image_id": 2403899, "entity": "boat", "caption": "a flag is in the front of the boat", "question": ["is there a flag ?", "is there the front ?", "is there the boat ?"], "prompt": "a flag is in the front of the {}"}, {"index": 95, "image_id": 2403899, "entity": "boat", "caption": "the boat travels on a river", "question": ["is there the boat ?", "is there a river ?"], "prompt": "the {} travels on a river"}, {"index": 96, "image_id": 2403899, "entity": "boat", "caption": "the boat is in the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is in the water"}, {"index": 97, "image_id": 2403899, "entity": "boat", "caption": "two fishing poles stick up out of the boat", "question": ["are there two fishing poles ?", "is there the boat ?"], "prompt": "two fishing poles stick up out of the {}"}, {"index": 98, "image_id": 2403899, "entity": "boat", "caption": "the flag is on the front of the boat", "question": ["is there the flag ?", "is there the front ?", "is there the boat ?"], "prompt": "the flag is on the front of the {}"}, {"index": 99, "image_id": 2403899, "entity": "boat", "caption": "three people are in the boat", "question": ["are there three people ?", "is there the boat ?"], "prompt": "three people are in the {}"}, {"index": 100, "image_id": 2403753, "entity": "boat", "caption": "Many of the boats have masts.", "question": ["are there the boats ?", "are there masts ?"], "prompt": "Many of the {}s have masts."}, {"index": 101, "image_id": 2403753, "entity": "boat", "caption": "A rope hanging over boat.", "question": ["is there a rope ?", "is there boat ?"], "prompt": "A rope hanging over {}."}, {"index": 102, "image_id": 2403753, "entity": "boat", "caption": "Paint of the boat is coming off", "question": ["is there paint ?", "is there the boat ?"], "prompt": "Paint of the {} is coming off"}, {"index": 103, "image_id": 2403753, "entity": "boat", "caption": "Two boats anchored to the dock", "question": ["are there two boats ?", "is there the dock ?"], "prompt": "Two {}s anchored to the dock"}, {"index": 104, "image_id": 2403753, "entity": "boat", "caption": "Rope attached the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "Rope attached the {}"}, {"index": 105, "image_id": 2403712, "entity": "boat", "caption": "Person riding bike on to boat.", "question": ["is there person ?", "is there bike ?", "is there boat ?"], "prompt": "Person riding bike on to {}."}, {"index": 106, "image_id": 2403147, "entity": "boat", "caption": "Black tarp covering part of boat", "question": ["is there black tarp ?", "is there part ?", "is there boat ?"], "prompt": "Black tarp covering part of {}"}, {"index": 107, "image_id": 2403147, "entity": "boat", "caption": "rope tied to the boat.", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied to the {}."}, {"index": 108, "image_id": 2402503, "entity": "boat", "caption": "Person stepping on boat", "question": ["is there person ?", "is there boat ?"], "prompt": "Person stepping on {}"}, {"index": 109, "image_id": 2402503, "entity": "boat", "caption": "Rope lying on a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "Rope lying on a {}"}, {"index": 110, "image_id": 2402107, "entity": "boat", "caption": "two men getting things off the boat", "question": ["are there two men ?", "are there things ?", "is there the boat ?"], "prompt": "two men getting things off the {}"}, {"index": 111, "image_id": 2402107, "entity": "boat", "caption": "boat coming to pick up the people", "question": ["is there boat ?", "are there the people ?"], "prompt": "{} coming to pick up the people"}, {"index": 112, "image_id": 2402067, "entity": "boat", "caption": "The water the boat is on", "question": ["is there the water ?", "is there the boat ?"], "prompt": "The water the {} is on"}, {"index": 113, "image_id": 2401739, "entity": "boat", "caption": "Woman sitting in wood boat.", "question": ["is there woman ?", "is there wood boat ?"], "prompt": "Woman sitting in wood {}."}, {"index": 114, "image_id": 2401739, "entity": "boat", "caption": "pole is in boat", "question": ["is there pole ?", "is there boat ?"], "prompt": "pole is in {}"}, {"index": 115, "image_id": 2401739, "entity": "boat", "caption": "two boats side by side in the water", "question": ["are there two boats ?", "is there side ?", "is there the water ?"], "prompt": "two {}s side by side in the water"}, {"index": 116, "image_id": 2401211, "entity": "boat", "caption": "Man fishing in boat.", "question": ["is there man ?", "is there boat ?"], "prompt": "Man fishing in {}."}, {"index": 117, "image_id": 2400731, "entity": "boat", "caption": "water the boat is floating on ", "question": ["is there water ?", "is there the boat ?"], "prompt": "water the {} is floating on "}, {"index": 118, "image_id": 2400731, "entity": "boat", "caption": "apples that are on the boat", "question": ["are there apples ?", "is there the boat ?"], "prompt": "apples that are on the {}"}, {"index": 119, "image_id": 2400487, "entity": "boat", "caption": "red toy boat is in the water", "question": ["is there red toy boat ?", "is there the water ?"], "prompt": "red toy {} is in the water"}, {"index": 120, "image_id": 2400487, "entity": "boat", "caption": "The toy boat is in the water.", "question": ["is there the toy boat ?", "is there the water ?"], "prompt": "The toy {} is in the water."}, {"index": 121, "image_id": 2400486, "entity": "boat", "caption": "water where the boats are", "question": ["is there water ?", "are there the boats ?"], "prompt": "water where the {}s are"}, {"index": 122, "image_id": 2400240, "entity": "boat", "caption": "a lawn hair sitting near a boat.", "question": ["is there a lawn hair ?", "is there a boat ?"], "prompt": "a lawn hair sitting near a {}."}, {"index": 123, "image_id": 2400066, "entity": "boat", "caption": "Steps lead up to the boat", "question": ["are there steps ?", "is there the boat ?"], "prompt": "Steps lead up to the {}"}, {"index": 124, "image_id": 2400066, "entity": "boat", "caption": "The front of the boat has black netting", "question": ["is there the front ?", "is there the boat ?", "is there black netting ?"], "prompt": "The front of the {} has black netting"}, {"index": 125, "image_id": 2400066, "entity": "boat", "caption": "White boat docked next to the red boat", "question": ["is there white boat ?", "is there the red boat ?"], "prompt": "White {} docked next to the red {}"}, {"index": 126, "image_id": 2399658, "entity": "boat", "caption": "white metal fencing around boat", "question": ["is there white metal fencing ?", "is there boat ?"], "prompt": "white metal fencing around {}"}, {"index": 127, "image_id": 2399658, "entity": "boat", "caption": "rope attatched to a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "rope attatched to a {}"}, {"index": 128, "image_id": 2399025, "entity": "boat", "caption": "these are four people on the boat", "question": ["are there four people ?", "is there the boat ?"], "prompt": "these are four people on the {}"}, {"index": 129, "image_id": 2399025, "entity": "boat", "caption": "man standing on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man standing on a {}"}, {"index": 130, "image_id": 2398909, "entity": "boat", "caption": "man selling potatoes on a boat ", "question": ["is there man ?", "are there potatoes ?", "is there a boat ?"], "prompt": "man selling potatoes on a {} "}, {"index": 131, "image_id": 2398909, "entity": "boat", "caption": "Man is on a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man is on a {}"}, {"index": 132, "image_id": 2398909, "entity": "boat", "caption": "man on boat is selling food", "question": ["is there man ?", "is there boat ?", "is there food ?"], "prompt": "man on {} is selling food"}, {"index": 133, "image_id": 2398909, "entity": "boat", "caption": "boat is on the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is on the water"}, {"index": 134, "image_id": 2398909, "entity": "boat", "caption": "boat door is open", "question": ["is there boat door ?"], "prompt": "{} door is open"}, {"index": 135, "image_id": 2398862, "entity": "boat", "caption": "this is a boat", "question": ["is there a boat ?"], "prompt": "this is a {}"}, {"index": 136, "image_id": 2398735, "entity": "boat", "caption": "The boat has wood panels.", "question": ["is there the boat ?", "are there wood panels ?"], "prompt": "The {} has wood panels."}, {"index": 137, "image_id": 2398609, "entity": "boat", "caption": "a rope tied to a boat", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "a rope tied to a {}"}, {"index": 138, "image_id": 2398396, "entity": "boat", "caption": "long green boat is on water", "question": ["is there long green boat ?", "is there water ?"], "prompt": "long green {} is on water"}, {"index": 139, "image_id": 2398396, "entity": "boat", "caption": "empty plastic bottle is in middle of boat", "question": ["is there empty plastic bottle ?", "is there middle ?", "is there boat ?"], "prompt": "empty plastic bottle is in middle of {}"}, {"index": 140, "image_id": 2398396, "entity": "boat", "caption": "Water is reflecting boat", "question": ["is there water ?", "is there boat ?"], "prompt": "Water is reflecting {}"}, {"index": 141, "image_id": 2398176, "entity": "boat", "caption": "The boat has equipment on it.", "question": ["is there the boat ?", "is there equipment ?"], "prompt": "The {} has equipment on it."}, {"index": 142, "image_id": 2398032, "entity": "boat", "caption": "The boat is on the water.", "question": ["is there the boat ?", "is there the water ?"], "prompt": "The {} is on the water."}, {"index": 143, "image_id": 2398032, "entity": "boat", "caption": "The people are on the boat.", "question": ["are there the people ?", "is there the boat ?"], "prompt": "The people are on the {}."}, {"index": 144, "image_id": 2397696, "entity": "boat", "caption": "Ladder leaning against a boat.", "question": ["is there ladder ?", "is there a boat ?"], "prompt": "Ladder leaning against a {}."}, {"index": 145, "image_id": 2397163, "entity": "boat", "caption": "teddy bear sits on a boat", "question": ["is there a boat ?"], "prompt": "teddy bear sits on a {}"}, {"index": 146, "image_id": 2397163, "entity": "boat", "caption": "the teddy bear is on a boat", "question": ["is there the teddy bear ?", "is there a boat ?"], "prompt": "the teddy bear is on a {}"}, {"index": 147, "image_id": 2397163, "entity": "boat", "caption": "the boat is on the water", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is on the water"}, {"index": 148, "image_id": 2397042, "entity": "boat", "caption": "The top of the boat is blue.", "question": ["is there the top ?", "is there the boat ?"], "prompt": "The top of the {} is blue."}, {"index": 149, "image_id": 2396771, "entity": "boat", "caption": "The boat has long wooden planks", "question": ["is there the boat ?", "are there long wooden planks ?"], "prompt": "The {} has long wooden planks"}, {"index": 150, "image_id": 2396771, "entity": "boat", "caption": "The boat is resting on grass", "question": ["is there the boat ?", "is there grass ?"], "prompt": "The {} is resting on grass"}, {"index": 151, "image_id": 2396668, "entity": "boat", "caption": "Life preservers on top of a boat", "question": ["are there life preservers ?", "is there top ?", "is there a boat ?"], "prompt": "Life preservers on top of a {}"}, {"index": 152, "image_id": 2396583, "entity": "boat", "caption": "Man drives duck boat.", "question": ["is there man ?", "is there duck boat ?"], "prompt": "Man drives duck {}."}, {"index": 153, "image_id": 2396583, "entity": "boat", "caption": "people are sitting in duck boat", "question": ["are there people ?", "is there duck boat ?"], "prompt": "people are sitting in duck {}"}, {"index": 154, "image_id": 2395255, "entity": "boat", "caption": "letter m on boat", "question": ["is there letter ?", "is there boat ?"], "prompt": "letter m on {}"}, {"index": 155, "image_id": 2395255, "entity": "boat", "caption": "Red life preserver on a boat", "question": ["is there red life preserver ?", "is there a boat ?"], "prompt": "Red life preserver on a {}"}, {"index": 156, "image_id": 2395255, "entity": "boat", "caption": "Water splashing up in front of a boat", "question": ["is there water ?", "is there front ?", "is there a boat ?"], "prompt": "Water splashing up in front of a {}"}, {"index": 157, "image_id": 2395073, "entity": "boat", "caption": "a woman sits on a boat", "question": ["is there a woman ?", "is there a boat ?"], "prompt": "a woman sits on a {}"}, {"index": 158, "image_id": 2393753, "entity": "boat", "caption": "speed boat creating ripples in water", "question": ["is there speed boat ?", "are there ripples ?", "is there water ?"], "prompt": "speed {} creating ripples in water"}, {"index": 159, "image_id": 2393753, "entity": "boat", "caption": "light green boat cover", "question": ["is there light green boat cover ?"], "prompt": "light green {} cover"}, {"index": 160, "image_id": 2393562, "entity": "boat", "caption": "The boat has many windows", "question": ["is there the boat ?", "are there many windows ?"], "prompt": "The {} has many windows"}, {"index": 161, "image_id": 2393150, "entity": "boat", "caption": "the boat is from los angeles", "question": ["is there the boat ?"], "prompt": "the {} is from los angeles"}, {"index": 162, "image_id": 2393150, "entity": "boat", "caption": "the boat number is 17", "question": ["is there the boat number ?"], "prompt": "the {} number is 17"}, {"index": 163, "image_id": 2393150, "entity": "boat", "caption": "the boat has a cabin", "question": ["is there the boat ?", "is there a cabin ?"], "prompt": "the {} has a cabin"}, {"index": 164, "image_id": 2393150, "entity": "boat", "caption": "Where the police boat is from", "question": ["is there the police boat ?"], "prompt": "Where the police {} is from"}, {"index": 165, "image_id": 2393150, "entity": "boat", "caption": "Police officer driving the boat", "question": ["is there police officer ?", "is there the boat ?"], "prompt": "Police officer driving the {}"}, {"index": 166, "image_id": 2392895, "entity": "boat", "caption": "dog is on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "dog is on a {}"}, {"index": 167, "image_id": 2391231, "entity": "boat", "caption": "gas can inside orange and white boat", "question": ["is there gas ?", "is there orange and white boat ?"], "prompt": "gas can inside orange and white {}"}, {"index": 168, "image_id": 2391099, "entity": "boat", "caption": "flag painted on the boat", "question": ["is there flag ?", "is there the boat ?"], "prompt": "flag painted on the {}"}, {"index": 169, "image_id": 2391099, "entity": "boat", "caption": "achomraich is name on side of boat", "question": ["is there name ?", "is there side ?", "is there boat ?"], "prompt": "achomraich is name on side of {}"}, {"index": 170, "image_id": 2390472, "entity": "boat", "caption": "Metal chain coming off front of boat.", "question": ["is there metal chain ?", "is there front ?", "is there boat ?"], "prompt": "Metal chain coming off front of {}."}, {"index": 171, "image_id": 2390472, "entity": "boat", "caption": "Green leaves on branches near boat.", "question": ["are there green leaves ?", "are there branches ?", "is there boat ?"], "prompt": "Green leaves on branches near {}."}, {"index": 172, "image_id": 2390472, "entity": "boat", "caption": "Boat is blue next to green boat.", "question": ["is there boat ?", "is there green boat ?"], "prompt": "Boat is blue next to green {}."}, {"index": 173, "image_id": 2388743, "entity": "boat", "caption": "a boat that has a clear window.", "question": ["is there a boat ?", "is there a clear window ?"], "prompt": "a {} that has a clear window."}, {"index": 174, "image_id": 2388725, "entity": "boat", "caption": "the yellow painted outside of a boat", "question": ["is there the yellow ?", "is there a boat ?"], "prompt": "the yellow painted outside of a {}"}, {"index": 175, "image_id": 2388588, "entity": "boat", "caption": "boat has a white stripe", "question": ["is there boat ?", "is there a white stripe ?"], "prompt": "{} has a white stripe"}, {"index": 176, "image_id": 2388588, "entity": "boat", "caption": "anchor of the boat is black", "question": ["is there anchor ?", "is there the boat ?"], "prompt": "anchor of the {} is black"}, {"index": 177, "image_id": 2388588, "entity": "boat", "caption": "people are on the boat ", "question": ["are there people ?", "is there the boat ?"], "prompt": "people are on the {} "}, {"index": 178, "image_id": 2388309, "entity": "boat", "caption": "the man is steering the boat", "question": ["is there the man ?", "is there the boat ?"], "prompt": "the man is steering the {}"}, {"index": 179, "image_id": 2388309, "entity": "boat", "caption": "blue boat rules sign", "question": ["are there blue boat rules ?"], "prompt": "blue {} rules sign"}, {"index": 180, "image_id": 2388309, "entity": "boat", "caption": "boats wake in the water", "question": ["are there boats ?", "is there the water ?"], "prompt": "{}s wake in the water"}, {"index": 181, "image_id": 2387705, "entity": "boat", "caption": "mast of a boat is wood", "question": ["is there mast ?", "is there a boat ?", "is there wood ?"], "prompt": "mast of a {} is wood"}, {"index": 182, "image_id": 2387564, "entity": "boat", "caption": "life guard is in a boat ", "question": ["is there life guard ?", "is there a boat ?"], "prompt": "life guard is in a {} "}, {"index": 183, "image_id": 2387564, "entity": "boat", "caption": "woman stands in a boat", "question": ["is there woman ?", "is there a boat ?"], "prompt": "woman stands in a {}"}, {"index": 184, "image_id": 2387146, "entity": "boat", "caption": "a man stand on a boat", "question": ["is there a man ?", "is there a boat ?"], "prompt": "a man stand on a {}"}, {"index": 185, "image_id": 2387146, "entity": "boat", "caption": "A group of red boats docked at the shore", "question": ["is there a group ?", "are there red boats ?", "is there the shore ?"], "prompt": "A group of red {}s docked at the shore"}, {"index": 186, "image_id": 2387146, "entity": "boat", "caption": "Person standing on red boat.", "question": ["is there person ?", "is there red boat ?"], "prompt": "Person standing on red {}."}, {"index": 187, "image_id": 2387146, "entity": "boat", "caption": "Red boat sitting in water.", "question": ["is there red boat ?", "is there water ?"], "prompt": "Red {} sitting in water."}, {"index": 188, "image_id": 2387137, "entity": "boat", "caption": "the woman is on a boat", "question": ["is there the woman ?", "is there a boat ?"], "prompt": "the woman is on a {}"}, {"index": 189, "image_id": 2386500, "entity": "boat", "caption": "rope tied at front of boat", "question": ["is there rope ?", "is there front ?", "is there boat ?"], "prompt": "rope tied at front of {}"}, {"index": 190, "image_id": 2385578, "entity": "boat", "caption": "Hook and chain hoist above boat.", "question": ["is there hook ?", "is there chain ?", "is there hoist ?", "is there boat ?"], "prompt": "Hook and chain hoist above {}."}, {"index": 191, "image_id": 2384997, "entity": "boat", "caption": "metal crane attached to a boat", "question": ["is there metal crane ?", "is there a boat ?"], "prompt": "metal crane attached to a {}"}, {"index": 192, "image_id": 2384997, "entity": "boat", "caption": "Tower lift on back of boat", "question": ["is there tower ?", "is there back ?", "is there boat ?"], "prompt": "Tower lift on back of {}"}, {"index": 193, "image_id": 2384727, "entity": "boat", "caption": "red and black metal boat smoke stack", "question": ["is there red and black metal boat smoke ?"], "prompt": "red and black metal {} smoke stack"}, {"index": 194, "image_id": 2384036, "entity": "boat", "caption": "The boat moving in the water causing a wave.", "question": ["is there the boat ?", "is there the water ?", "is there a wave ?"], "prompt": "The {} moving in the water causing a wave."}, {"index": 195, "image_id": 2384036, "entity": "boat", "caption": "A search light mounted on a boat", "question": ["is there a search light ?", "is there a boat ?"], "prompt": "A search light mounted on a {}"}, {"index": 196, "image_id": 2384036, "entity": "boat", "caption": "A boat mounted bull horn", "question": ["is there a boat ?", "is there bull horn ?"], "prompt": "A {} mounted bull horn"}, {"index": 197, "image_id": 2383929, "entity": "boat", "caption": "SF3-3999 writing on boat", "question": ["is there boat ?"], "prompt": "SF3-3999 writing on {}"}, {"index": 198, "image_id": 2383555, "entity": "boat", "caption": "a wooden boat oar", "question": ["is there a wooden boat ?", "is there oar ?"], "prompt": "a wooden {} oar"}, {"index": 199, "image_id": 2383462, "entity": "boat", "caption": "The boat is on land", "question": ["is there the boat ?", "is there land ?"], "prompt": "The {} is on land"}, {"index": 200, "image_id": 2383399, "entity": "boat", "caption": "water the boat is in", "question": ["is there the boat ?"], "prompt": "water the {} is in"}, {"index": 201, "image_id": 2383399, "entity": "boat", "caption": "deck of the boat the couple is on", "question": ["is there deck ?", "is there the boat ?", "is there the couple ?"], "prompt": "deck of the {} the couple is on"}, {"index": 202, "image_id": 2383399, "entity": "boat", "caption": "two people are in boat.", "question": ["are there two people ?", "is there boat ?"], "prompt": "two people are in {}."}, {"index": 203, "image_id": 2383272, "entity": "boat", "caption": "MASEN written on the boat", "question": ["is there the boat ?"], "prompt": "MASEN written on the {}"}, {"index": 204, "image_id": 2383272, "entity": "boat", "caption": "door on the boat is wood slats", "question": ["is there door ?", "is there the boat ?", "are there wood slats ?"], "prompt": "door on the {} is wood slats"}, {"index": 205, "image_id": 2382463, "entity": "boat", "caption": "The boat has two sails", "question": ["is there the boat ?", "are there two sails ?"], "prompt": "The {} has two sails"}, {"index": 206, "image_id": 2382231, "entity": "boat", "caption": "the dog is on a boat", "question": ["is there the dog ?", "is there a boat ?"], "prompt": "the dog is on a {}"}, {"index": 207, "image_id": 2382219, "entity": "boat", "caption": "the inflatable boat is red ", "question": ["is there the inflatable boat ?"], "prompt": "the inflatable {} is red "}, {"index": 208, "image_id": 2382219, "entity": "boat", "caption": "Life saving boat is red color.", "question": ["is there life saving boat ?", "is there red color ?"], "prompt": "Life saving {} is red color."}, {"index": 209, "image_id": 2382219, "entity": "boat", "caption": "The man is driving the boat", "question": ["is there the man ?", "is there the boat ?"], "prompt": "The man is driving the {}"}, {"index": 210, "image_id": 2382219, "entity": "boat", "caption": "The boat has a brown and white seat", "question": ["is there the boat ?", "is there a brown and white seat ?"], "prompt": "The {} has a brown and white seat"}, {"index": 211, "image_id": 2382102, "entity": "boat", "caption": "Person is barefoot standing on edge of boat.", "question": ["is there person ?", "is there edge ?", "is there boat ?"], "prompt": "Person is barefoot standing on edge of {}."}, {"index": 212, "image_id": 2382102, "entity": "boat", "caption": "the man is on the side of the boat", "question": ["is there the man ?", "is there the side ?", "is there the boat ?"], "prompt": "the man is on the side of the {}"}, {"index": 213, "image_id": 2381922, "entity": "boat", "caption": "the boat has a shark", "question": ["is there the boat ?", "is there a shark ?"], "prompt": "the {} has a shark"}, {"index": 214, "image_id": 2381922, "entity": "boat", "caption": "the boat has people ", "question": ["is there the boat ?", "are there people ?"], "prompt": "the {} has people "}, {"index": 215, "image_id": 2381685, "entity": "boat", "caption": "small boat tied to another boat", "question": ["is there small boat ?", "is there another boat ?"], "prompt": "small {} tied to another {}"}, {"index": 216, "image_id": 2381433, "entity": "boat", "caption": "rope hanging on a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "rope hanging on a {}"}, {"index": 217, "image_id": 2381084, "entity": "boat", "caption": "Cushions on boat are white.", "question": ["are there cushions ?", "is there boat ?"], "prompt": "Cushions on {} are white."}, {"index": 218, "image_id": 2381084, "entity": "boat", "caption": "Dog is standing on back of boat.", "question": ["is there dog ?", "is there boat ?"], "prompt": "Dog is standing on back of {}."}, {"index": 219, "image_id": 2380882, "entity": "boat", "caption": "A woman sitting on a boat reading", "question": ["is there a woman ?", "is there a boat ?"], "prompt": "A woman sitting on a {} reading"}, {"index": 220, "image_id": 2380594, "entity": "boat", "caption": "the boat has two outboard motors", "question": ["is there the boat ?", "are there two outboard motors ?"], "prompt": "the {} has two outboard motors"}, {"index": 221, "image_id": 2380594, "entity": "boat", "caption": "the boat is in the water ", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is in the water "}, {"index": 222, "image_id": 2379791, "entity": "boat", "caption": "boats docked along the shoreline", "question": ["are there boats ?", "is there the shoreline ?"], "prompt": "{}s docked along the shoreline"}, {"index": 223, "image_id": 2379774, "entity": "boat", "caption": "the body of water the boat is in", "question": ["is there the body ?", "is there water ?", "is there the boat ?"], "prompt": "the body of water the {} is in"}, {"index": 224, "image_id": 2379714, "entity": "boat", "caption": "boats say nice on them", "question": ["are there boats ?"], "prompt": "{}s say nice on them"}, {"index": 225, "image_id": 2379714, "entity": "boat", "caption": "boat with life preserver on it", "question": ["is there boat ?", "is there life preserver ?"], "prompt": "{} with life preserver on it"}, {"index": 226, "image_id": 2379714, "entity": "boat", "caption": "nets and lines hang off boat", "question": ["are there nets ?", "are there lines ?", "is there boat ?"], "prompt": "nets and lines hang off {}"}, {"index": 227, "image_id": 2379714, "entity": "boat", "caption": "tarp covers top of boat", "question": ["is there tarp ?", "is there top ?", "is there boat ?"], "prompt": "tarp covers top of {}"}, {"index": 228, "image_id": 2379714, "entity": "boat", "caption": "man sits on boat", "question": ["is there man ?", "is there boat ?"], "prompt": "man sits on {}"}, {"index": 229, "image_id": 2379714, "entity": "boat", "caption": "man standing beside a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man standing beside a {}"}, {"index": 230, "image_id": 2379304, "entity": "boat", "caption": "a boat is in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "a {} is in the water"}, {"index": 231, "image_id": 2378904, "entity": "boat", "caption": "three boats at a boat dock", "question": ["are there three boats ?", "is there a boat dock ?"], "prompt": "three {}s at a {} dock"}, {"index": 232, "image_id": 2378904, "entity": "boat", "caption": "the boat is on a boat lift", "question": ["is there the boat ?", "is there a boat lift ?"], "prompt": "the {} is on a {} lift"}, {"index": 233, "image_id": 2378904, "entity": "boat", "caption": "blue rope attached to the boat", "question": ["is there blue rope ?", "is there the boat ?"], "prompt": "blue rope attached to the {}"}, {"index": 234, "image_id": 2378904, "entity": "boat", "caption": "boat docked on pier", "question": ["is there boat ?", "is there pier ?"], "prompt": "{} docked on pier"}, {"index": 235, "image_id": 2378460, "entity": "boat", "caption": "Row is on the boat. ", "question": ["is there row ?", "is there the boat ?"], "prompt": "Row is on the {}. "}, {"index": 236, "image_id": 2378460, "entity": "boat", "caption": "fruit laid out neatly in the closest boat", "question": ["is there fruit ?", "is there the closest boat ?"], "prompt": "fruit laid out neatly in the closest {}"}, {"index": 237, "image_id": 2378110, "entity": "boat", "caption": "rope ties boat to dock", "question": [], "prompt": "rope ties {} to dock"}, {"index": 238, "image_id": 2378110, "entity": "boat", "caption": "A banner is on the back of the boat", "question": ["is there a banner ?", "is there the back ?", "is there the boat ?"], "prompt": "A banner is on the back of the {}"}, {"index": 239, "image_id": 2378110, "entity": "boat", "caption": "Buoys are hanging off the boat", "question": ["are there buoys ?", "is there the boat ?"], "prompt": "Buoys are hanging off the {}"}, {"index": 240, "image_id": 2377887, "entity": "boat", "caption": "the emergency boats are on the ship", "question": ["are there the emergency boats ?", "is there the ship ?"], "prompt": "the emergency {}s are on the ship"}, {"index": 241, "image_id": 2377380, "entity": "boat", "caption": "ropes suspended over boats", "question": ["are there ropes ?", "are there boats ?"], "prompt": "ropes suspended over {}s"}, {"index": 242, "image_id": 2377380, "entity": "boat", "caption": "tip of boat bow", "question": ["is there tip ?", "is there boat ?"], "prompt": "tip of {} bow"}, {"index": 243, "image_id": 2377380, "entity": "boat", "caption": "a boat docked on land.", "question": ["is there a boat ?", "is there land ?"], "prompt": "a {} docked on land."}, {"index": 244, "image_id": 2377083, "entity": "boat", "caption": "Cord coming out of back of paddle boat", "question": ["is there cord ?", "is there back ?", "is there paddle boat ?"], "prompt": "Cord coming out of back of paddle {}"}, {"index": 245, "image_id": 2376246, "entity": "boat", "caption": "small red boat docked in water ", "question": ["is there small red boat ?", "is there water ?"], "prompt": "small red {} docked in water "}, {"index": 246, "image_id": 2375980, "entity": "boat", "caption": "A sign is atop the boat", "question": ["is there a sign ?", "is there the boat ?"], "prompt": "A sign is atop the {}"}, {"index": 247, "image_id": 2375980, "entity": "boat", "caption": "house boat docked on river", "question": ["is there house boat ?", "is there river ?"], "prompt": "house {} docked on river"}, {"index": 248, "image_id": 2375980, "entity": "boat", "caption": "many bikes piled onto boat", "question": ["are there many bikes ?", "is there boat ?"], "prompt": "many bikes piled onto {}"}, {"index": 249, "image_id": 2375275, "entity": "boat", "caption": "rope to secure the boat", "question": ["is there the boat ?"], "prompt": "rope to secure the {}"}, {"index": 250, "image_id": 2375275, "entity": "boat", "caption": "the blue rope attached to the boat", "question": ["is there the blue rope ?", "is there the boat ?"], "prompt": "the blue rope attached to the {}"}, {"index": 251, "image_id": 2374451, "entity": "boat", "caption": "life boat hanging on a ship", "question": ["is there life boat ?", "is there a ship ?"], "prompt": "life {} hanging on a ship"}, {"index": 252, "image_id": 2374451, "entity": "boat", "caption": "wires that hold the life boat", "question": ["are there wires ?", "is there the life boat ?"], "prompt": "wires that hold the life {}"}, {"index": 253, "image_id": 2374088, "entity": "boat", "caption": "A rope attached to a boat", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "A rope attached to a {}"}, {"index": 254, "image_id": 2373499, "entity": "boat", "caption": "team of people rowing boat", "question": ["is there team ?", "are there people ?", "is there boat ?"], "prompt": "team of people rowing {}"}, {"index": 255, "image_id": 2373351, "entity": "boat", "caption": "Woman sitting at the back of a boat wearing a light blue shirt", "question": ["is there woman ?", "is there the back ?", "is there a boat ?", "is there a light blue shirt ?"], "prompt": "Woman sitting at the back of a {} wearing a light blue shirt"}, {"index": 256, "image_id": 2373351, "entity": "boat", "caption": "Frothy wake left behind in the water as a boat travels", "question": ["is there frothy wake ?", "is there the water ?", "is there a boat ?"], "prompt": "Frothy wake left behind in the water as a {} travels"}, {"index": 257, "image_id": 2373126, "entity": "boat", "caption": "white boats parked in dock", "question": ["are there white boats ?", "is there dock ?"], "prompt": "white {}s parked in dock"}, {"index": 258, "image_id": 2372837, "entity": "boat", "caption": "a boat docked in a harbor", "question": ["is there a boat ?", "is there a harbor ?"], "prompt": "a {} docked in a harbor"}, {"index": 259, "image_id": 2372480, "entity": "boat", "caption": "A boat docked under a tunnel.", "question": ["is there a boat ?", "is there a tunnel ?"], "prompt": "A {} docked under a tunnel."}, {"index": 260, "image_id": 2372480, "entity": "boat", "caption": "boat is in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is in water"}, {"index": 261, "image_id": 2372341, "entity": "boat", "caption": "Man with red hat leaning on boat", "question": ["is there man ?", "is there red hat ?", "is there boat ?"], "prompt": "Man with red hat leaning on {}"}, {"index": 262, "image_id": 2372106, "entity": "boat", "caption": "man is standing on the back of the boat", "question": ["is there man ?", "is there the back ?", "is there the boat ?"], "prompt": "man is standing on the back of the {}"}, {"index": 263, "image_id": 2371942, "entity": "boat", "caption": "Rope tied to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "Rope tied to {}"}, {"index": 264, "image_id": 2371644, "entity": "boat", "caption": "man standing on bow of boat", "question": ["is there man ?", "is there bow ?", "is there boat ?"], "prompt": "man standing on bow of {}"}, {"index": 265, "image_id": 2371644, "entity": "boat", "caption": "man standing at the hull of a boat", "question": ["is there man ?", "is there the hull ?", "is there a boat ?"], "prompt": "man standing at the hull of a {}"}, {"index": 266, "image_id": 2371288, "entity": "boat", "caption": "The birds are following the boat.", "question": ["are there the birds ?", "is there the boat ?"], "prompt": "The birds are following the {}."}, {"index": 267, "image_id": 2371288, "entity": "boat", "caption": "The people are standing on the boat.", "question": ["are there the people ?", "is there the boat ?"], "prompt": "The people are standing on the {}."}, {"index": 268, "image_id": 2371288, "entity": "boat", "caption": "birds flying around boat", "question": ["are there birds ?"], "prompt": "birds flying around {}"}, {"index": 269, "image_id": 2371288, "entity": "boat", "caption": "birds flying around shrimpers boat", "question": ["are there birds ?", "are there shrimpers ?"], "prompt": "birds flying around shrimpers {}"}, {"index": 270, "image_id": 2371288, "entity": "boat", "caption": "three men are visible on the boat", "question": ["are there three men ?", "is there the boat ?"], "prompt": "three men are visible on the {}"}, {"index": 271, "image_id": 2371288, "entity": "boat", "caption": "the boat has caused some waves in the water", "question": ["is there the boat ?", "are there some waves ?", "is there the water ?"], "prompt": "the {} has caused some waves in the water"}, {"index": 272, "image_id": 2371137, "entity": "boat", "caption": "The name says \" MAVIS\" on boat", "question": ["is there the name ?", "is there boat ?"], "prompt": "The name says \" MAVIS\" on {}"}, {"index": 273, "image_id": 2371004, "entity": "boat", "caption": "The sailboats all have tall masts", "question": ["are there the sailboats ?", "are there tall masts ?"], "prompt": "The sail{}s all have tall masts"}, {"index": 274, "image_id": 2370993, "entity": "boat", "caption": "boat has wooden floor", "question": ["is there boat ?", "is there wooden floor ?"], "prompt": "{} has wooden floor"}, {"index": 275, "image_id": 2370335, "entity": "boat", "caption": "MAMA written on side of boat", "question": ["is there mama ?", "is there side ?", "is there boat ?"], "prompt": "MAMA written on side of {}"}, {"index": 276, "image_id": 2370335, "entity": "boat", "caption": "boat is on a trailer", "question": ["is there boat ?", "is there a trailer ?"], "prompt": "{} is on a trailer"}, {"index": 277, "image_id": 2370335, "entity": "boat", "caption": "A boat is on a trailer", "question": ["is there a boat ?", "is there a trailer ?"], "prompt": "A {} is on a trailer"}, {"index": 278, "image_id": 2370335, "entity": "boat", "caption": "The boat is at somebody's home", "question": ["is there the boat ?", "is there somebody's home ?"], "prompt": "The {} is at somebody's home"}, {"index": 279, "image_id": 2369706, "entity": "boat", "caption": "boat docked at the harbor", "question": ["is there boat ?", "is there the harbor ?"], "prompt": "{} docked at the harbor"}, {"index": 280, "image_id": 2368857, "entity": "boat", "caption": "The boats have tall sails ", "question": ["are there the boats ?", "are there tall sails ?"], "prompt": "The {}s have tall sails "}, {"index": 281, "image_id": 2368689, "entity": "boat", "caption": "TGI painted on the side of the boat", "question": ["is there the side ?", "is there the boat ?"], "prompt": "TGI painted on the side of the {}"}, {"index": 282, "image_id": 2368436, "entity": "boat", "caption": "Bananas are in a boat", "question": ["are there bananas ?", "is there a boat ?"], "prompt": "Bananas are in a {}"}, {"index": 283, "image_id": 2368415, "entity": "boat", "caption": "dog that's standing on a boat", "question": ["is there dog ?", "is there a boat ?"], "prompt": "dog that's standing on a {}"}, {"index": 284, "image_id": 2368415, "entity": "boat", "caption": "water that boats are sitting in", "question": ["is there water ?", "are there boats ?"], "prompt": "water that {}s are sitting in"}, {"index": 285, "image_id": 2368415, "entity": "boat", "caption": "boat brown dog is standing on", "question": ["is there boat brown dog ?"], "prompt": "{} brown dog is standing on"}, {"index": 286, "image_id": 2368415, "entity": "boat", "caption": "metal loop hanging on boat", "question": ["is there metal loop ?", "is there boat ?"], "prompt": "metal loop hanging on {}"}, {"index": 287, "image_id": 2368054, "entity": "boat", "caption": "The dog feet is on the boat.", "question": ["are there the dog feet ?", "is there the boat ?"], "prompt": "The dog feet is on the {}."}, {"index": 288, "image_id": 2368009, "entity": "boat", "caption": "rope ties boat to the dock", "question": ["are there rope ties boat ?", "is there the dock ?"], "prompt": "rope ties {} to the dock"}, {"index": 289, "image_id": 2368009, "entity": "boat", "caption": "fire extinguishers on beard a boat", "question": ["are there fire extinguishers ?", "is there a boat ?"], "prompt": "fire extinguishers on beard a {}"}, {"index": 290, "image_id": 2367819, "entity": "boat", "caption": "two people are still on the boat", "question": ["are there two people ?", "is there the boat ?"], "prompt": "two people are still on the {}"}, {"index": 291, "image_id": 2367673, "entity": "boat", "caption": "a blue boat tied to a dock", "question": ["is there a blue boat ?", "is there a dock ?"], "prompt": "a blue {} tied to a dock"}, {"index": 292, "image_id": 2367673, "entity": "boat", "caption": "a white boat tied to a dock", "question": ["is there a white boat ?", "is there a dock ?"], "prompt": "a white {} tied to a dock"}, {"index": 293, "image_id": 2367655, "entity": "boat", "caption": "Blue and white boat floating in water", "question": ["is there blue and white boat ?", "is there water ?"], "prompt": "Blue and white {} floating in water"}, {"index": 294, "image_id": 2367655, "entity": "boat", "caption": "water pouring out the back of a boat.", "question": ["is there water ?", "is there the back ?", "is there a boat ?"], "prompt": "water pouring out the back of a {}."}, {"index": 295, "image_id": 2367579, "entity": "boat", "caption": "man driving a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man driving a {}"}, {"index": 296, "image_id": 2365612, "entity": "boat", "caption": "the bike is leaning on the boat ", "question": ["is there the bike ?", "is there the boat ?"], "prompt": "the bike is leaning on the {} "}, {"index": 297, "image_id": 2365530, "entity": "boat", "caption": "The white lettering of the word WAVE on the boat. ", "question": ["is there the white lettering ?", "is there the word wave ?", "is there the boat ?"], "prompt": "The white lettering of the word WAVE on the {}. "}, {"index": 298, "image_id": 2365530, "entity": "boat", "caption": "Grey hair on a man bent over the boat. ", "question": ["is there grey hair ?", "is there a man ?", "is there the boat ?"], "prompt": "Grey hair on a man bent over the {}. "}, {"index": 299, "image_id": 2365530, "entity": "boat", "caption": "The black and white side of a boat that says NEXT WAVE", "question": ["is there the black and white side ?", "is there a boat ?"], "prompt": "The black and white side of a {} that says NEXT WAVE"}, {"index": 300, "image_id": 2365530, "entity": "boat", "caption": "The boat says \"Next wave\"", "question": ["is there the boat ?", "is there next wave ?"], "prompt": "The {} says \"Next wave\""}, {"index": 301, "image_id": 2365530, "entity": "boat", "caption": "A rolled up mast on the boat", "question": ["is there a rolled up mast ?", "is there the boat ?"], "prompt": "A rolled up mast on the {}"}, {"index": 302, "image_id": 2365310, "entity": "boat", "caption": "lorries packed near the boats", "question": ["are there lorries ?", "are there the boats ?"], "prompt": "lorries packed near the {}s"}, {"index": 303, "image_id": 2365007, "entity": "boat", "caption": "water where boats are docks", "question": ["is there water ?", "are there boats ?", "are there docks ?"], "prompt": "water where {}s are docks"}, {"index": 304, "image_id": 2364291, "entity": "boat", "caption": "the tire is on the boat", "question": ["is there the tire ?", "is there the boat ?"], "prompt": "the tire is on the {}"}, {"index": 305, "image_id": 2364078, "entity": "boat", "caption": "White chain round a boat", "question": ["is there a boat ?"], "prompt": "White chain round a {}"}, {"index": 306, "image_id": 2364078, "entity": "boat", "caption": "The sailboat has a tall mast.", "question": ["is there the sailboat ?", "is there a tall mast ?"], "prompt": "The sail{} has a tall mast."}, {"index": 307, "image_id": 2364078, "entity": "boat", "caption": "A boat is moving in the water behind the boat.", "question": ["is there a boat ?", "is there the water ?", "is there the boat ?"], "prompt": "A {} is moving in the water behind the {}."}, {"index": 308, "image_id": 2362967, "entity": "boat", "caption": "a boat tied to shore", "question": ["is there a boat ?", "is there shore ?"], "prompt": "a {} tied to shore"}, {"index": 309, "image_id": 2362967, "entity": "boat", "caption": "boat docked on river", "question": ["is there boat ?", "is there river ?"], "prompt": "{} docked on river"}, {"index": 310, "image_id": 2362967, "entity": "boat", "caption": "ther boat is white in color ", "question": ["is there ther boat ?", "is there color ?"], "prompt": "ther {} is white in color "}, {"index": 311, "image_id": 2362967, "entity": "boat", "caption": "the boat is white in color", "question": ["is there the boat ?", "is there color ?"], "prompt": "the {} is white in color"}, {"index": 312, "image_id": 2362871, "entity": "boat", "caption": "blue boat hanging on side of ship", "question": ["is there blue boat ?", "is there side ?", "is there ship ?"], "prompt": "blue {} hanging on side of ship"}, {"index": 313, "image_id": 2362329, "entity": "boat", "caption": "front end of boat opened up", "question": ["is there front end ?", "is there boat ?"], "prompt": "front end of {} opened up"}, {"index": 314, "image_id": 2362280, "entity": "boat", "caption": "name of boat painted in white", "question": ["is there name ?", "is there boat ?", "is there white ?"], "prompt": "name of {} painted in white"}, {"index": 315, "image_id": 2362280, "entity": "boat", "caption": "two black rubber tires mounted on boat", "question": ["are there two black rubber tires ?", "is there boat ?"], "prompt": "two black rubber tires mounted on {}"}, {"index": 316, "image_id": 2362246, "entity": "boat", "caption": "a river with a lot of boats docked in it", "question": ["is there a river ?", "is there a lot ?", "are there boats ?"], "prompt": "a river with a lot of {}s docked in it"}, {"index": 317, "image_id": 2362239, "entity": "boat", "caption": "Man kneeling down on boat. ", "question": ["is there man ?", "is there boat ?"], "prompt": "Man kneeling down on {}. "}, {"index": 318, "image_id": 2361892, "entity": "boat", "caption": "the lady is in a boat", "question": ["is there the lady ?", "is there a boat ?"], "prompt": "the lady is in a {}"}, {"index": 319, "image_id": 2361892, "entity": "boat", "caption": "small boat sailing on water", "question": ["is there small boat ?", "is there water ?"], "prompt": "small {} sailing on water"}, {"index": 320, "image_id": 2361742, "entity": "boat", "caption": "Rope attached to front of boat", "question": ["is there rope ?", "is there front ?", "is there boat ?"], "prompt": "Rope attached to front of {}"}, {"index": 321, "image_id": 2361562, "entity": "boat", "caption": "the cat is on the boat", "question": ["is there the cat ?", "is there the boat ?"], "prompt": "the cat is on the {}"}, {"index": 322, "image_id": 2361562, "entity": "boat", "caption": "the boat is at a port", "question": ["is there the boat ?", "is there a port ?"], "prompt": "the {} is at a port"}, {"index": 323, "image_id": 2361562, "entity": "boat", "caption": "the cat stands on the boat", "question": ["is there the cat ?", "is there the boat ?"], "prompt": "the cat stands on the {}"}, {"index": 324, "image_id": 2361562, "entity": "boat", "caption": "Cat is standing on back of boat.", "question": ["is there cat ?", "is there boat ?"], "prompt": "Cat is standing on back of {}."}, {"index": 325, "image_id": 2361562, "entity": "boat", "caption": "boat capsized in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} capsized in water"}, {"index": 326, "image_id": 2361536, "entity": "boat", "caption": "cows are near a boat", "question": ["are there cows ?", "is there a boat ?"], "prompt": "cows are near a {}"}, {"index": 327, "image_id": 2361359, "entity": "boat", "caption": "A motor is on the boat", "question": ["is there a motor ?", "is there the boat ?"], "prompt": "A motor is on the {}"}, {"index": 328, "image_id": 2359602, "entity": "boat", "caption": "A log is keeping the boat off the ground.", "question": ["is there a log ?", "is there the boat ?", "is there the ground ?"], "prompt": "A log is keeping the {} off the ground."}, {"index": 329, "image_id": 2359008, "entity": "boat", "caption": "Sail boat docked at marina.", "question": ["is there sail boat ?", "is there marina ?"], "prompt": "Sail {} docked at marina."}, {"index": 330, "image_id": 2359008, "entity": "boat", "caption": "White sail boat docked in water.", "question": ["is there white sail boat ?", "is there water ?"], "prompt": "White sail {} docked in water."}, {"index": 331, "image_id": 2358936, "entity": "boat", "caption": "a dog is on the boat", "question": ["is there a dog ?", "is there the boat ?"], "prompt": "a dog is on the {}"}, {"index": 332, "image_id": 2358604, "entity": "boat", "caption": "people are on the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "people are on the {}"}, {"index": 333, "image_id": 2357802, "entity": "boat", "caption": "The people are on a boat on a lake", "question": ["are there the people ?", "is there a boat ?", "is there a lake ?"], "prompt": "The people are on a {} on a lake"}, {"index": 334, "image_id": 2357398, "entity": "boat", "caption": "two woman walking on a boat", "question": ["is there two woman ?", "is there a boat ?"], "prompt": "two woman walking on a {}"}, {"index": 335, "image_id": 2357398, "entity": "boat", "caption": "the top of the boat is wood", "question": ["is there the top ?", "is there the boat ?", "is there wood ?"], "prompt": "the top of the {} is wood"}, {"index": 336, "image_id": 2357118, "entity": "boat", "caption": "Person sitting inside of boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person sitting inside of {}."}, {"index": 337, "image_id": 2357118, "entity": "boat", "caption": "the sun is on the boat", "question": ["is there the sun ?", "is there the boat ?"], "prompt": "the sun is on the {}"}, {"index": 338, "image_id": 2355707, "entity": "boat", "caption": "The boat has 3 windows", "question": ["is there the boat ?", "are there 3 windows ?"], "prompt": "The {} has 3 windows"}, {"index": 339, "image_id": 2355505, "entity": "boat", "caption": "Box on a boat oar", "question": ["is there a boat ?"], "prompt": "Box on a {} oar"}, {"index": 340, "image_id": 2355505, "entity": "boat", "caption": "Flag hanging from a boat.", "question": ["is there flag ?", "is there a boat ?"], "prompt": "Flag hanging from a {}."}, {"index": 341, "image_id": 2355361, "entity": "boat", "caption": "two triangle shaped white sails on sailboat", "question": ["is there two triangle ?", "are there white sails ?", "is there sailboat ?"], "prompt": "two triangle shaped white sails on sail{}"}, {"index": 342, "image_id": 2355027, "entity": "boat", "caption": "boat pulled up to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled up to dock"}, {"index": 343, "image_id": 2355027, "entity": "boat", "caption": "boat has flagpole on back", "question": ["is there boat ?", "is there flagpole ?"], "prompt": "{} has flagpole on back"}, {"index": 344, "image_id": 2355027, "entity": "boat", "caption": "flag stuck into a boat", "question": ["is there flag ?", "is there a boat ?"], "prompt": "flag stuck into a {}"}, {"index": 345, "image_id": 2354959, "entity": "boat", "caption": "green moss growing on the side of the boat", "question": ["is there green moss ?", "is there the side ?", "is there the boat ?"], "prompt": "green moss growing on the side of the {}"}, {"index": 346, "image_id": 2354939, "entity": "boat", "caption": "the sailboat is white", "question": ["is there the sailboat ?"], "prompt": "the sail{} is white"}, {"index": 347, "image_id": 2354939, "entity": "boat", "caption": "a small boat sailing", "question": ["is there a small boat ?"], "prompt": "a small {} sailing"}, {"index": 348, "image_id": 2354714, "entity": "boat", "caption": "The life preserver on the front of the boat.", "question": ["is there the life preserver ?", "is there the front ?", "is there the boat ?"], "prompt": "The life preserver on the front of the {}."}, {"index": 349, "image_id": 2354714, "entity": "boat", "caption": "this is a boat ", "question": ["is there a boat ?"], "prompt": "this is a {} "}, {"index": 350, "image_id": 2354714, "entity": "boat", "caption": "waves stirred up by white boat", "question": ["are there waves ?", "is there white boat ?"], "prompt": "waves stirred up by white {}"}, {"index": 351, "image_id": 2354714, "entity": "boat", "caption": "red and white flag waving on boat", "question": ["is there red and white flag ?", "is there boat ?"], "prompt": "red and white flag waving on {}"}, {"index": 352, "image_id": 2354714, "entity": "boat", "caption": "tan rope hanging on rail of boat", "question": ["is there rail ?", "is there boat ?"], "prompt": "tan rope hanging on rail of {}"}, {"index": 353, "image_id": 2354458, "entity": "boat", "caption": "Tire hanging from boat", "question": ["is there tire ?", "is there boat ?"], "prompt": "Tire hanging from {}"}, {"index": 354, "image_id": 2354458, "entity": "boat", "caption": "Silva Lopes is the name of boat", "question": ["are there silva lopes ?", "is there the name ?", "is there boat ?"], "prompt": "Silva Lopes is the name of {}"}, {"index": 355, "image_id": 2354402, "entity": "boat", "caption": "woman sitting on boat bow", "question": ["is there woman ?", "is there boat bow ?"], "prompt": "woman sitting on {} bow"}, {"index": 356, "image_id": 2354402, "entity": "boat", "caption": "Person is barefoot on boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person is barefoot on {}."}, {"index": 357, "image_id": 2354402, "entity": "boat", "caption": "Person sitting on boat.", "question": ["is there person ?", "is there boat ?"], "prompt": "Person sitting on {}."}, {"index": 358, "image_id": 2354402, "entity": "boat", "caption": "Wood boat floating in water.", "question": ["is there wood boat ?", "is there water ?"], "prompt": "Wood {} floating in water."}, {"index": 359, "image_id": 2354178, "entity": "boat", "caption": "a flag is on the boat", "question": ["is there a flag ?", "is there the boat ?"], "prompt": "a flag is on the {}"}, {"index": 360, "image_id": 2354178, "entity": "boat", "caption": "a small boat is on the water", "question": ["is there a small boat ?", "is there the water ?"], "prompt": "a small {} is on the water"}, {"index": 361, "image_id": 2354178, "entity": "boat", "caption": "people standing close to the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "people standing close to the {}"}, {"index": 362, "image_id": 2354017, "entity": "boat", "caption": "The rolled up sail of the boat.", "question": ["is there the rolled up sail ?", "is there the boat ?"], "prompt": "The rolled up sail of the {}."}, {"index": 363, "image_id": 2353866, "entity": "boat", "caption": "boat pulled at dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled at dock"}, {"index": 364, "image_id": 2353866, "entity": "boat", "caption": "boat has overhead tent", "question": ["is there boat ?", "is there overhead tent ?"], "prompt": "{} has overhead tent"}, {"index": 365, "image_id": 2353358, "entity": "boat", "caption": "red life save on boat", "question": ["is there red life ?", "is there boat ?"], "prompt": "red life save on {}"}, {"index": 366, "image_id": 2353358, "entity": "boat", "caption": "rope hanging from boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope hanging from {}"}, {"index": 367, "image_id": 2353358, "entity": "boat", "caption": "rope attached to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope attached to {}"}, {"index": 368, "image_id": 2353153, "entity": "boat", "caption": "the boat has a red covering", "question": ["is there the boat ?", "is there a red covering ?"], "prompt": "the {} has a red covering"}, {"index": 369, "image_id": 2352684, "entity": "boat", "caption": "metal post and boat reflected in the water", "question": ["is there metal post ?", "is there boat ?", "is there the water ?"], "prompt": "metal post and {} reflected in the water"}, {"index": 370, "image_id": 2352424, "entity": "boat", "caption": "yellow mast stick up out of a boat", "question": ["is there yellow mast ?", "is there a boat ?"], "prompt": "yellow mast stick up out of a {}"}, {"index": 371, "image_id": 2351791, "entity": "boat", "caption": "The man and woman are in a boat.", "question": ["is there the man ?", "is there woman ?", "is there a boat ?"], "prompt": "The man and woman are in a {}."}, {"index": 372, "image_id": 2351791, "entity": "boat", "caption": "Woman sitting on boat.", "question": ["is there woman ?", "is there boat ?"], "prompt": "Woman sitting on {}."}, {"index": 373, "image_id": 2351791, "entity": "boat", "caption": "handle of a boat oar", "question": ["is there handle ?", "is there a boat ?"], "prompt": "handle of a {} oar"}, {"index": 374, "image_id": 2351188, "entity": "boat", "caption": "People stand next to the boat", "question": ["are there people ?", "is there the boat ?"], "prompt": "People stand next to the {}"}, {"index": 375, "image_id": 2351188, "entity": "boat", "caption": "Bicycles are on the boat", "question": ["are there bicycles ?", "is there the boat ?"], "prompt": "Bicycles are on the {}"}, {"index": 376, "image_id": 2351016, "entity": "boat", "caption": "boat is floating in water", "question": ["is there boat ?", "is there water ?"], "prompt": "{} is floating in water"}, {"index": 377, "image_id": 2351016, "entity": "boat", "caption": "rope tied to boat", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope tied to {}"}, {"index": 378, "image_id": 2350876, "entity": "boat", "caption": "the rope hanging off of the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "the rope hanging off of the {}"}, {"index": 379, "image_id": 2350876, "entity": "boat", "caption": "boat docked on shore ", "question": ["is there boat ?", "is there shore ?"], "prompt": "{} docked on shore "}, {"index": 380, "image_id": 2350876, "entity": "boat", "caption": "red rope attached to boat ", "question": ["is there red rope ?", "is there boat ?"], "prompt": "red rope attached to {} "}, {"index": 381, "image_id": 2350876, "entity": "boat", "caption": "rope attached to boat ", "question": ["is there rope ?", "is there boat ?"], "prompt": "rope attached to {} "}, {"index": 382, "image_id": 2350779, "entity": "boat", "caption": "rope tied to a small boat", "question": ["is there rope ?", "is there a small boat ?"], "prompt": "rope tied to a small {}"}, {"index": 383, "image_id": 2350779, "entity": "boat", "caption": "a floating tire mounted on boat", "question": ["is there a floating tire ?", "is there boat ?"], "prompt": "a floating tire mounted on {}"}, {"index": 384, "image_id": 2350779, "entity": "boat", "caption": "two boats mounted by a rope", "question": ["are there two boats ?", "is there a rope ?"], "prompt": "two {}s mounted by a rope"}, {"index": 385, "image_id": 2350779, "entity": "boat", "caption": "rope holding two boats", "question": ["is there rope ?", "are there two boats ?"], "prompt": "rope holding two {}s"}, {"index": 386, "image_id": 2350304, "entity": "boat", "caption": "A boat that has a lot of books on it. ", "question": ["is there a boat ?", "is there a lot ?", "are there books ?"], "prompt": "A {} that has a lot of books on it. "}, {"index": 387, "image_id": 2349748, "entity": "boat", "caption": "Man drivng a boat.", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man drivng a {}."}, {"index": 388, "image_id": 2349748, "entity": "boat", "caption": "Woman standing in the boat.", "question": ["is there woman ?", "is there the boat ?"], "prompt": "Woman standing in the {}."}, {"index": 389, "image_id": 2349440, "entity": "boat", "caption": "American flag hanging from the boat", "question": ["is there american flag ?", "is there the boat ?"], "prompt": "American flag hanging from the {}"}, {"index": 390, "image_id": 2349440, "entity": "boat", "caption": "The boat has a yellow logo on it ", "question": ["is there the boat ?", "is there a yellow logo ?"], "prompt": "The {} has a yellow logo on it "}, {"index": 391, "image_id": 2348095, "entity": "boat", "caption": "red rope budled on the boat", "question": ["is there red rope ?", "is there the boat ?"], "prompt": "red rope budled on the {}"}, {"index": 392, "image_id": 2348078, "entity": "boat", "caption": "the people are standing beside a boat", "question": ["are there the people ?", "is there a boat ?"], "prompt": "the people are standing beside a {}"}, {"index": 393, "image_id": 2347906, "entity": "boat", "caption": "boat pulled to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} pulled to dock"}, {"index": 394, "image_id": 2347681, "entity": "boat", "caption": "the can next to the boat", "question": ["is there the boat ?"], "prompt": "the can next to the {}"}, {"index": 395, "image_id": 2347233, "entity": "boat", "caption": "the rope tied to the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "the rope tied to the {}"}, {"index": 396, "image_id": 2346193, "entity": "boat", "caption": "top of boat is white", "question": ["is there top ?", "is there boat ?"], "prompt": "top of {} is white"}, {"index": 397, "image_id": 2345781, "entity": "boat", "caption": "A thick rope attached to a boat", "question": ["is there a thick rope ?", "is there a boat ?"], "prompt": "A thick rope attached to a {}"}, {"index": 398, "image_id": 2345781, "entity": "boat", "caption": "boat is in the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is in the water"}, {"index": 399, "image_id": 2345272, "entity": "boat", "caption": "2 black dogs are on the boat", "question": ["are there 2 black dogs ?", "is there the boat ?"], "prompt": "2 black dogs are on the {}"}, {"index": 400, "image_id": 2345272, "entity": "boat", "caption": "a man stands on the boat holding a dog with a leash", "question": ["is there a man ?", "is there the boat ?", "is there a dog ?", "is there a leash ?"], "prompt": "a man stands on the {} holding a dog with a leash"}, {"index": 401, "image_id": 2345019, "entity": "boat", "caption": "The man is standing in the boat.", "question": ["is there the man ?", "is there the boat ?"], "prompt": "The man is standing in the {}."}, {"index": 402, "image_id": 2344745, "entity": "boat", "caption": "Woman dumping water out of boat", "question": ["is there woman ?", "is there water ?", "is there boat ?"], "prompt": "Woman dumping water out of {}"}, {"index": 403, "image_id": 2344677, "entity": "boat", "caption": "An owner holding her dog over the boat so it can have a view of the water.", "question": ["is there an owner ?", "is there her dog ?", "is there the boat ?", "is there a view ?", "is there the water ?"], "prompt": "An owner holding her dog over the {} so it can have a view of the water."}, {"index": 404, "image_id": 2344627, "entity": "boat", "caption": "a boat is by the dock", "question": ["is there a boat ?", "is there the dock ?"], "prompt": "a {} is by the dock"}, {"index": 405, "image_id": 2344618, "entity": "boat", "caption": "a boat dock on the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "a {} dock on the water"}, {"index": 406, "image_id": 2343974, "entity": "boat", "caption": "tires attached to boat are black", "question": ["are there tires ?", "is there boat ?"], "prompt": "tires attached to {} are black"}, {"index": 407, "image_id": 2343968, "entity": "boat", "caption": "the boats are in water ", "question": ["are there the boats ?", "is there water ?"], "prompt": "the {}s are in water "}, {"index": 408, "image_id": 2343968, "entity": "boat", "caption": "the buskets are in the boat ", "question": ["are there the buskets ?", "is there the boat ?"], "prompt": "the buskets are in the {} "}, {"index": 409, "image_id": 2343968, "entity": "boat", "caption": "The kid on the large boat that is sitting down.", "question": ["is there the kid ?", "is there the large boat ?"], "prompt": "The kid on the large {} that is sitting down."}, {"index": 410, "image_id": 2343968, "entity": "boat", "caption": "The long boat the two kids are on.", "question": ["is there the long boat ?", "are there the two kids ?"], "prompt": "The long {} the two kids are on."}, {"index": 411, "image_id": 2343749, "entity": "boat", "caption": "boat docked at the shore", "question": ["is there boat ?", "is there the shore ?"], "prompt": "{} docked at the shore"}, {"index": 412, "image_id": 2343527, "entity": "boat", "caption": "water splashing on back of boat ", "question": ["is there back ?", "is there boat ?"], "prompt": "water splashing on back of {} "}, {"index": 413, "image_id": 2343527, "entity": "boat", "caption": "rudder is on the back of the boat", "question": ["is there rudder ?", "is there the back ?", "is there the boat ?"], "prompt": "rudder is on the back of the {}"}, {"index": 414, "image_id": 2343527, "entity": "boat", "caption": "a rubber tire is hanging on the side of the boat", "question": ["is there a rubber tire ?", "is there the side ?", "is there the boat ?"], "prompt": "a rubber tire is hanging on the side of the {}"}, {"index": 415, "image_id": 2343527, "entity": "boat", "caption": "a white cross is on the top of the boat", "question": ["is there the top ?", "is there the boat ?"], "prompt": "a white cross is on the top of the {}"}, {"index": 416, "image_id": 2343527, "entity": "boat", "caption": "a person is standing on the back of the boat", "question": ["is there a person ?", "is there the back ?", "is there the boat ?"], "prompt": "a person is standing on the back of the {}"}, {"index": 417, "image_id": 2342814, "entity": "boat", "caption": "two handles are on the back of the boat", "question": ["are there two handles ?", "is there the back ?", "is there the boat ?"], "prompt": "two handles are on the back of the {}"}, {"index": 418, "image_id": 2342814, "entity": "boat", "caption": "a blue box is on the boat", "question": ["is there a blue box ?", "is there the boat ?"], "prompt": "a blue box is on the {}"}, {"index": 419, "image_id": 2342814, "entity": "boat", "caption": "a first aid kit is on the boat", "question": ["is there a first aid kit ?", "is there the boat ?"], "prompt": "a first aid kit is on the {}"}, {"index": 420, "image_id": 2342814, "entity": "boat", "caption": "the boat has silver handles", "question": ["is there the boat ?", "are there silver handles ?"], "prompt": "the {} has silver handles"}, {"index": 421, "image_id": 2342814, "entity": "boat", "caption": "a white box is on the boat", "question": ["is there the boat ?"], "prompt": "a white box is on the {}"}, {"index": 422, "image_id": 2342814, "entity": "boat", "caption": "white handles are on the boat", "question": ["are there white handles ?", "is there the boat ?"], "prompt": "white handles are on the {}"}, {"index": 423, "image_id": 2342338, "entity": "boat", "caption": "man stands in a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "man stands in a {}"}, {"index": 424, "image_id": 2342338, "entity": "boat", "caption": "they are sitting in the boat", "question": ["is there the boat ?"], "prompt": "they are sitting in the {}"}, {"index": 425, "image_id": 2341913, "entity": "boat", "caption": "boat is moving in the water", "question": ["is there boat ?", "is there the water ?"], "prompt": "{} is moving in the water"}, {"index": 426, "image_id": 2341403, "entity": "boat", "caption": "The boat has a red stripe.", "question": ["is there the boat ?", "is there a red stripe ?"], "prompt": "The {} has a red stripe."}, {"index": 427, "image_id": 2341403, "entity": "boat", "caption": "The boat has a red and green stripe.", "question": ["is there the boat ?", "is there a red and green stripe ?"], "prompt": "The {} has a red and green stripe."}, {"index": 428, "image_id": 2341403, "entity": "boat", "caption": "the boat is on sand", "question": ["is there the boat ?", "is there sand ?"], "prompt": "the {} is on sand"}, {"index": 429, "image_id": 2341403, "entity": "boat", "caption": "rope wound around the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope wound around the {}"}, {"index": 430, "image_id": 2341403, "entity": "boat", "caption": "the boat has a red stripe", "question": ["is there the boat ?", "is there a red stripe ?"], "prompt": "the {} has a red stripe"}, {"index": 431, "image_id": 2341403, "entity": "boat", "caption": "rope tied around the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied around the {}"}, {"index": 432, "image_id": 2341358, "entity": "boat", "caption": "the man is in a boat ", "question": ["is there the man ?", "is there a boat ?"], "prompt": "the man is in a {} "}, {"index": 433, "image_id": 2341331, "entity": "boat", "caption": "the boat has an inboard engine", "question": ["is there the boat ?", "is there an inboard engine ?"], "prompt": "the {} has an inboard engine"}, {"index": 434, "image_id": 2341331, "entity": "boat", "caption": "the steering wheel is in the boat", "question": ["is there the steering wheel ?", "is there the boat ?"], "prompt": "the steering wheel is in the {}"}, {"index": 435, "image_id": 2341331, "entity": "boat", "caption": "windows are on the boat", "question": ["are there windows ?", "is there the boat ?"], "prompt": "windows are on the {}"}, {"index": 436, "image_id": 2341331, "entity": "boat", "caption": "rope tied to the front of the boat", "question": ["is there rope ?", "is there the front ?", "is there the boat ?"], "prompt": "rope tied to the front of the {}"}, {"index": 437, "image_id": 2341331, "entity": "boat", "caption": "rope tied to back of the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope tied to back of the {}"}, {"index": 438, "image_id": 2340730, "entity": "boat", "caption": "hatches are on the bow of the boat", "question": ["are there hatches ?", "is there the bow ?", "is there the boat ?"], "prompt": "hatches are on the bow of the {}"}, {"index": 439, "image_id": 2339716, "entity": "boat", "caption": "Person in the background is standing on a boat", "question": ["is there person ?", "is there the background ?", "is there a boat ?"], "prompt": "Person in the background is standing on a {}"}, {"index": 440, "image_id": 2335633, "entity": "boat", "caption": "The family is safe on a boat", "question": ["is there the family ?", "is there a boat ?"], "prompt": "The family is safe on a {}"}, {"index": 441, "image_id": 2335557, "entity": "boat", "caption": "A boat is floating in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "A {} is floating in the water"}, {"index": 442, "image_id": 2335557, "entity": "boat", "caption": "A boat is carrying many people", "question": ["is there a boat ?", "are there many people ?"], "prompt": "A {} is carrying many people"}, {"index": 443, "image_id": 2335513, "entity": "boat", "caption": "dark water the boat is on", "question": ["is there dark water ?", "is there the boat ?"], "prompt": "dark water the {} is on"}, {"index": 444, "image_id": 2335383, "entity": "boat", "caption": "one old boat stuck on beach", "question": ["is there one old boat ?", "is there beach ?"], "prompt": "one old {} stuck on beach"}, {"index": 445, "image_id": 2335383, "entity": "boat", "caption": "Rope hanging from the bottom of a boat", "question": ["is there rope ?", "is there the bottom ?", "is there a boat ?"], "prompt": "Rope hanging from the bottom of a {}"}, {"index": 446, "image_id": 2335383, "entity": "boat", "caption": "A boat is sitting on a lot", "question": ["is there a boat ?", "is there a lot ?"], "prompt": "A {} is sitting on a lot"}, {"index": 447, "image_id": 2335383, "entity": "boat", "caption": "The boat is casting a shadow", "question": ["is there the boat ?", "is there a shadow ?"], "prompt": "The {} is casting a shadow"}, {"index": 448, "image_id": 2335383, "entity": "boat", "caption": "The boat is close to the ocean", "question": ["is there the boat ?", "is there the ocean ?"], "prompt": "The {} is close to the ocean"}, {"index": 449, "image_id": 2335220, "entity": "boat", "caption": "small boat parked next to a dock", "question": ["is there small boat ?", "is there a dock ?"], "prompt": "small {} parked next to a dock"}, {"index": 450, "image_id": 2335207, "entity": "boat", "caption": "The boat has many windows.", "question": ["is there the boat ?", "are there many windows ?"], "prompt": "The {} has many windows."}, {"index": 451, "image_id": 2335104, "entity": "boat", "caption": "the dog is on the boat", "question": ["is there the dog ?", "is there the boat ?"], "prompt": "the dog is on the {}"}, {"index": 452, "image_id": 2335104, "entity": "boat", "caption": "a pillow is in on the boat", "question": ["is there a pillow ?", "is there the boat ?"], "prompt": "a pillow is in on the {}"}, {"index": 453, "image_id": 2334367, "entity": "boat", "caption": "The dog is on the boat ", "question": ["is there the dog ?", "is there the boat ?"], "prompt": "The dog is on the {} "}, {"index": 454, "image_id": 2334367, "entity": "boat", "caption": "Bubbley wake of the boat", "question": ["is there bubbley wake ?", "is there the boat ?"], "prompt": "Bubbley wake of the {}"}, {"index": 455, "image_id": 2334187, "entity": "boat", "caption": "the boat has pigeons", "question": ["is there the boat ?", "are there pigeons ?"], "prompt": "the {} has pigeons"}, {"index": 456, "image_id": 2334187, "entity": "boat", "caption": "the oars are in the boat", "question": ["are there the oars ?", "is there the boat ?"], "prompt": "the oars are in the {}"}, {"index": 457, "image_id": 2334187, "entity": "boat", "caption": "the boat has rope trim", "question": ["is there the boat ?", "is there rope ?"], "prompt": "the {} has rope trim"}, {"index": 458, "image_id": 2333973, "entity": "boat", "caption": "a silver oar to row a boat", "question": ["is there a silver oar ?", "is there a boat ?"], "prompt": "a silver oar to row a {}"}, {"index": 459, "image_id": 2333973, "entity": "boat", "caption": "Blue writing us out of the white boats", "question": ["are there the white boats ?"], "prompt": "Blue writing us out of the white {}s"}, {"index": 460, "image_id": 2333538, "entity": "boat", "caption": "a bridge connects to the boat", "question": ["is there a bridge ?", "is there the boat ?"], "prompt": "a bridge connects to the {}"}, {"index": 461, "image_id": 2332476, "entity": "boat", "caption": "boat carries three humans", "question": ["is there boat ?", "are there three humans ?"], "prompt": "{} carries three humans"}, {"index": 462, "image_id": 2332476, "entity": "boat", "caption": "life preserver attached to boat", "question": ["is there life preserver ?", "is there boat ?"], "prompt": "life preserver attached to {}"}, {"index": 463, "image_id": 2332444, "entity": "boat", "caption": "rope going down from the boat", "question": ["is there rope ?", "is there the boat ?"], "prompt": "rope going down from the {}"}, {"index": 464, "image_id": 2331968, "entity": "boat", "caption": "man steering white boat", "question": ["is there man ?", "is there white boat ?"], "prompt": "man steering white {}"}, {"index": 465, "image_id": 2331968, "entity": "boat", "caption": "white rope attached to boat", "question": ["is there boat ?"], "prompt": "white rope attached to {}"}, {"index": 466, "image_id": 2331586, "entity": "boat", "caption": "the boat is tipping", "question": ["is there the boat ?"], "prompt": "the {} is tipping"}, {"index": 467, "image_id": 2330347, "entity": "boat", "caption": "The lady is sitting in the boat.", "question": ["is there the lady ?", "is there the boat ?"], "prompt": "The lady is sitting in the {}."}, {"index": 468, "image_id": 2330347, "entity": "boat", "caption": "People are on the boat.", "question": ["are there people ?", "is there the boat ?"], "prompt": "People are on the {}."}, {"index": 469, "image_id": 2329011, "entity": "boat", "caption": "white rope tied to a boat", "question": ["is there a boat ?"], "prompt": "white rope tied to a {}"}, {"index": 470, "image_id": 2328185, "entity": "boat", "caption": "food sits on boat", "question": ["is there food ?", "is there boat ?"], "prompt": "food sits on {}"}, {"index": 471, "image_id": 2328185, "entity": "boat", "caption": "human stands on boat", "question": ["is there human ?", "is there boat ?"], "prompt": "human stands on {}"}, {"index": 472, "image_id": 2328185, "entity": "boat", "caption": "a river boat painted red, white and blue", "question": ["is there a river boat ?"], "prompt": "a river {} painted red, white and blue"}, {"index": 473, "image_id": 2327815, "entity": "boat", "caption": "man standing in the front of a boat", "question": ["is there man ?", "is there the front ?", "is there a boat ?"], "prompt": "man standing in the front of a {}"}, {"index": 474, "image_id": 2327709, "entity": "boat", "caption": "boat that man is sitting in", "question": ["is there boat ?", "is there that man ?"], "prompt": "{} that man is sitting in"}, {"index": 475, "image_id": 2327444, "entity": "boat", "caption": "bushes are behind boat", "question": ["are there bushes ?", "is there boat ?"], "prompt": "bushes are behind {}"}, {"index": 476, "image_id": 2326620, "entity": "boat", "caption": "fruits are in the boat ", "question": ["are there fruits ?", "is there the boat ?"], "prompt": "fruits are in the {} "}, {"index": 477, "image_id": 2326389, "entity": "boat", "caption": "water boats are in", "question": ["are there water boats ?"], "prompt": "water {}s are in"}, {"index": 478, "image_id": 2325957, "entity": "boat", "caption": "life preserver hung on boat", "question": ["is there life preserver ?", "is there boat ?"], "prompt": "life preserver hung on {}"}, {"index": 479, "image_id": 2325634, "entity": "boat", "caption": "Red rope attached to metal boat.", "question": ["is there red rope ?", "is there metal boat ?"], "prompt": "Red rope attached to metal {}."}, {"index": 480, "image_id": 2325634, "entity": "boat", "caption": "Metal boat anchored with yellow rope.", "question": ["is there metal boat ?", "is there yellow rope ?"], "prompt": "Metal {} anchored with yellow rope."}, {"index": 481, "image_id": 2325522, "entity": "boat", "caption": "the boat is floating on the water ", "question": ["is there the boat ?", "is there the water ?"], "prompt": "the {} is floating on the water "}, {"index": 482, "image_id": 2325172, "entity": "boat", "caption": "the boat is on the sand", "question": ["is there the boat ?", "is there the sand ?"], "prompt": "the {} is on the sand"}, {"index": 483, "image_id": 2325172, "entity": "boat", "caption": "lettering is on the boat", "question": ["is there lettering ?", "is there the boat ?"], "prompt": "lettering is on the {}"}, {"index": 484, "image_id": 2325172, "entity": "boat", "caption": "a mast is on the boat", "question": ["is there a mast ?", "is there the boat ?"], "prompt": "a mast is on the {}"}, {"index": 485, "image_id": 2325172, "entity": "boat", "caption": "numbers are in the boat", "question": ["are there numbers ?", "is there the boat ?"], "prompt": "numbers are in the {}"}, {"index": 486, "image_id": 2324743, "entity": "boat", "caption": "The bottom of the boat is the color red ", "question": ["is there the bottom ?", "is there the boat ?", "is there the color red ?"], "prompt": "The bottom of the {} is the color red "}, {"index": 487, "image_id": 2324743, "entity": "boat", "caption": "dragon painted on the side of the boat", "question": ["is there dragon ?", "is there the side ?", "is there the boat ?"], "prompt": "dragon painted on the side of the {}"}, {"index": 488, "image_id": 2324603, "entity": "boat", "caption": "an old wooden boat dock on the side of the river", "question": ["is there the side ?", "is there the river ?"], "prompt": "an old wooden {} dock on the side of the river"}, {"index": 489, "image_id": 2324332, "entity": "boat", "caption": "Sand patches behind the boat", "question": ["are there sand patches ?", "is there the boat ?"], "prompt": "Sand patches behind the {}"}, {"index": 490, "image_id": 2324332, "entity": "boat", "caption": "The boat sits on the bank. ", "question": ["is there the boat ?", "is there the bank ?"], "prompt": "The {} sits on the bank. "}, {"index": 491, "image_id": 2324332, "entity": "boat", "caption": "The flowers next to the boat. ", "question": ["are there the flowers ?", "is there the boat ?"], "prompt": "The flowers next to the {}. "}, {"index": 492, "image_id": 2324332, "entity": "boat", "caption": "The boat sits in the rocks. ", "question": ["is there the boat ?", "are there the rocks ?"], "prompt": "The {} sits in the rocks. "}, {"index": 493, "image_id": 2323258, "entity": "boat", "caption": "Some boats are carrying oars for rowing", "question": ["are there some boats ?", "are there oars ?"], "prompt": "Some {}s are carrying oars for rowing"}, {"index": 494, "image_id": 2323258, "entity": "boat", "caption": "White boat with floats attached", "question": ["is there white boat ?", "are there floats ?"], "prompt": "White {} with floats attached"}, {"index": 495, "image_id": 2321960, "entity": "boat", "caption": "two boats parked at the dock", "question": ["are there two boats ?", "is there the dock ?"], "prompt": "two {}s parked at the dock"}, {"index": 496, "image_id": 2321105, "entity": "boat", "caption": "Sign on boat says Manon Manon.", "question": ["is there sign ?", "is there boat ?"], "prompt": "Sign on {} says Manon Manon."}, {"index": 497, "image_id": 2321105, "entity": "boat", "caption": "A grey barrel sits in an old boat.", "question": ["is there a grey barrel ?", "is there an old boat ?"], "prompt": "A grey barrel sits in an old {}."}, {"index": 498, "image_id": 2320922, "entity": "boat", "caption": "Water that boat sits on", "question": ["is there water ?", "is there that boat ?"], "prompt": "Water that {} sits on"}, {"index": 499, "image_id": 2320922, "entity": "boat", "caption": " some chains anchoring a boat", "question": ["are there some chains ?", "is there a boat ?"], "prompt": " some chains anchoring a {}"}, {"index": 500, "image_id": 2320922, "entity": "boat", "caption": "water boat is sitting in", "question": ["is there water boat ?"], "prompt": "water {} is sitting in"}, {"index": 501, "image_id": 2320922, "entity": "boat", "caption": "the boat is in a marina", "question": ["is there the boat ?", "is there a marina ?"], "prompt": "the {} is in a marina"}, {"index": 502, "image_id": 2320725, "entity": "boat", "caption": "The boat is on land.", "question": ["is there the boat ?", "is there land ?"], "prompt": "The {} is on land."}, {"index": 503, "image_id": 2319811, "entity": "boat", "caption": "the grey stripe on the boat", "question": ["is there the grey stripe ?", "is there the boat ?"], "prompt": "the grey stripe on the {}"}, {"index": 504, "image_id": 2318574, "entity": "boat", "caption": "the letter \"R\"on the boat", "question": ["is there the letter ?", "is there the boat ?"], "prompt": "the letter \"R\"on the {}"}, {"index": 505, "image_id": 2318574, "entity": "boat", "caption": "water for boats to sail", "question": ["is there water ?", "are there boats ?"], "prompt": "water for {}s to sail"}, {"index": 506, "image_id": 2318144, "entity": "boat", "caption": "crowd of people gathered around looking at the huge boat", "question": ["is there crowd ?", "are there people ?", "is there the huge boat ?"], "prompt": "crowd of people gathered around looking at the huge {}"}, {"index": 507, "image_id": 2318140, "entity": "boat", "caption": "white boat docked at the pier", "question": ["is there white boat ?", "is there the pier ?"], "prompt": "white {} docked at the pier"}, {"index": 508, "image_id": 2317528, "entity": "boat", "caption": "boats lined up side by side", "question": ["are there boats ?", "is there side ?", "is there side ?"], "prompt": "{}s lined up side by side"}, {"index": 509, "image_id": 2317528, "entity": "boat", "caption": "Yellow number 9 painted onto a blue square on a red boat", "question": ["is there yellow number ?", "is there a blue square ?", "is there a red boat ?"], "prompt": "Yellow number 9 painted onto a blue square on a red {}"}, {"index": 510, "image_id": 2317528, "entity": "boat", "caption": "Orange carved dragon head on a boat", "question": ["is there orange carved dragon head ?", "is there a boat ?"], "prompt": "Orange carved dragon head on a {}"}, {"index": 511, "image_id": 2317528, "entity": "boat", "caption": "Blue flower painted on a boat", "question": ["is there blue flower ?", "is there a boat ?"], "prompt": "Blue flower painted on a {}"}, {"index": 512, "image_id": 2317528, "entity": "boat", "caption": "Orange carved tail on a boat", "question": ["is there orange carved tail ?", "is there a boat ?"], "prompt": "Orange carved tail on a {}"}, {"index": 513, "image_id": 2317528, "entity": "boat", "caption": "Green carved tail on a boat", "question": ["is there green carved tail ?", "is there a boat ?"], "prompt": "Green carved tail on a {}"}, {"index": 514, "image_id": 2317472, "entity": "boat", "caption": "large metal rope pulleys on boat", "question": ["are there large metal rope pulleys ?", "is there boat ?"], "prompt": "large metal rope pulleys on {}"}, {"index": 515, "image_id": 2316999, "entity": "boat", "caption": "open deck are of boat", "question": ["is there open deck ?", "is there boat ?"], "prompt": "open deck are of {}"}, {"index": 516, "image_id": 2316999, "entity": "boat", "caption": "the deck of this boat is blue", "question": ["is there the deck ?", "is there this boat ?"], "prompt": "the deck of this {} is blue"}, {"index": 517, "image_id": 2316715, "entity": "boat", "caption": "large white boat casting reflection on water", "question": ["is there large white boat ?", "is there reflection ?", "is there water ?"], "prompt": "large white {} casting reflection on water"}, {"index": 518, "image_id": 2316663, "entity": "boat", "caption": "Rope tied across a boat", "question": ["is there rope ?", "is there a boat ?"], "prompt": "Rope tied across a {}"}, {"index": 519, "image_id": 2316469, "entity": "boat", "caption": "the life ring is on a boat", "question": ["is there the life ring ?", "is there a boat ?"], "prompt": "the life ring is on a {}"}, {"index": 520, "image_id": 2316232, "entity": "boat", "caption": "row boat docked in water", "question": ["is there row boat ?", "is there water ?"], "prompt": "row {} docked in water"}, {"index": 521, "image_id": 2316232, "entity": "boat", "caption": "this is a row boat", "question": ["is there a row boat ?"], "prompt": "this is a row {}"}, {"index": 522, "image_id": 2316232, "entity": "boat", "caption": "The rope tied to the boat", "question": ["is there the rope ?", "is there the boat ?"], "prompt": "The rope tied to the {}"}, {"index": 523, "image_id": 2316232, "entity": "boat", "caption": "A boat that is sitting in the water", "question": ["is there a boat ?", "is there the water ?"], "prompt": "A {} that is sitting in the water"}, {"index": 524, "image_id": 2316174, "entity": "boat", "caption": "The letter R on the boat.", "question": ["is there the letter r ?", "is there the boat ?"], "prompt": "The letter R on the {}."}, {"index": 525, "image_id": 2316174, "entity": "boat", "caption": "The word PLYMOUTH on the boat.", "question": ["is there the word ?", "is there plymouth ?", "is there the boat ?"], "prompt": "The word PLYMOUTH on the {}."}, {"index": 526, "image_id": 2316161, "entity": "boat", "caption": "The wooden boat the woman is sitting in.", "question": ["is there the wooden boat ?", "is there the woman ?"], "prompt": "The wooden {} the woman is sitting in."}, {"index": 527, "image_id": 2316161, "entity": "boat", "caption": "boat holds woman", "question": ["is there boat ?", "is there woman ?"], "prompt": "{} holds woman"}, {"index": 528, "image_id": 2316102, "entity": "boat", "caption": "number 33 painted on a boat.", "question": ["is there number ?", "is there a boat ?"], "prompt": "number 33 painted on a {}."}, {"index": 529, "image_id": 2315952, "entity": "boat", "caption": "Rope tied to the boat.", "question": ["is there rope ?", "is there the boat ?"], "prompt": "Rope tied to the {}."}, {"index": 530, "image_id": 2315952, "entity": "boat", "caption": "Chain tied to the boat.", "question": ["is there chain ?", "is there the boat ?"], "prompt": "Chain tied to the {}."}, {"index": 531, "image_id": 2315952, "entity": "boat", "caption": "red plastic buoys hanging from boat", "question": ["are there red plastic buoys ?", "is there boat ?"], "prompt": "red plastic buoys hanging from {}"}, {"index": 532, "image_id": 2315952, "entity": "boat", "caption": "black tire hanging from side of boat", "question": ["is there black tire ?", "is there side ?", "is there boat ?"], "prompt": "black tire hanging from side of {}"}, {"index": 533, "image_id": 2315952, "entity": "boat", "caption": "boueys attached to boat", "question": ["is there boat ?"], "prompt": "boueys attached to {}"}, {"index": 534, "image_id": 2315666, "entity": "boat", "caption": "red flag hanging from boat in water ", "question": ["is there red flag ?", "is there boat ?", "is there water ?"], "prompt": "red flag hanging from {} in water "}, {"index": 535, "image_id": 2414707, "entity": "boat", "caption": "man pushing a lifeboat", "question": ["is there man ?", "is there a lifeboat ?"], "prompt": "man pushing a life{}"}, {"index": 536, "image_id": 2414707, "entity": "boat", "caption": "Men pushing a boat", "question": ["are there men ?", "is there a boat ?"], "prompt": "Men pushing a {}"}, {"index": 537, "image_id": 2414285, "entity": "boat", "caption": "A bicycle is on the boat.", "question": ["is there a bicycle ?", "is there the boat ?"], "prompt": "A bicycle is on the {}."}, {"index": 538, "image_id": 2414285, "entity": "boat", "caption": "The bicycle is on the deck of a boat.", "question": ["is there the bicycle ?", "is there the deck ?", "is there a boat ?"], "prompt": "The bicycle is on the deck of a {}."}, {"index": 539, "image_id": 2414285, "entity": "boat", "caption": "This is part of the mast of the boat.", "question": ["is there part ?", "is there the mast ?", "is there the boat ?"], "prompt": "This is part of the mast of the {}."}, {"index": 540, "image_id": 2414285, "entity": "boat", "caption": "Rope is on the deck of the boat.", "question": ["is there rope ?", "is there the deck ?", "is there the boat ?"], "prompt": "Rope is on the deck of the {}."}, {"index": 541, "image_id": 2414285, "entity": "boat", "caption": "small boat with boat sitting on it", "question": ["is there small boat ?", "is there boat ?"], "prompt": "small {} with {} sitting on it"}, {"index": 542, "image_id": 2414285, "entity": "boat", "caption": "A rope tied to a boat.", "question": ["is there a rope ?", "is there a boat ?"], "prompt": "A rope tied to a {}."}, {"index": 543, "image_id": 2414008, "entity": "boat", "caption": "Bottles made boats floating in the water.", "question": ["are there bottles ?", "are there boats ?", "is there the water ?"], "prompt": "Bottles made {}s floating in the water."}, {"index": 544, "image_id": 2413336, "entity": "boat", "caption": "the kid is standing on the boat", "question": ["is there the kid ?", "is there the boat ?"], "prompt": "the kid is standing on the {}"}, {"index": 545, "image_id": 2413281, "entity": "boat", "caption": "Two oars inside boat.", "question": ["are there two oars ?", "is there boat ?"], "prompt": "Two oars inside {}."}, {"index": 546, "image_id": 2413281, "entity": "boat", "caption": "Rope coiled inside boat.", "question": ["is there inside boat ?"], "prompt": "Rope coiled inside {}."}, {"index": 547, "image_id": 2413281, "entity": "boat", "caption": "boat tied to dock", "question": ["is there boat ?", "is there dock ?"], "prompt": "{} tied to dock"}, {"index": 548, "image_id": 2413281, "entity": "boat", "caption": "exposed wood where blue boat paint has worn away", "question": ["is there wood ?", "is there blue boat paint ?"], "prompt": "exposed wood where blue {} paint has worn away"}, {"index": 549, "image_id": 2412726, "entity": "boat", "caption": "The boats are on the water", "question": ["are there the boats ?", "is there the water ?"], "prompt": "The {}s are on the water"}, {"index": 550, "image_id": 2412726, "entity": "boat", "caption": "boats trimmed in light blue", "question": ["are there boats ?", "is there light blue ?"], "prompt": "{}s trimmed in light blue"}, {"index": 551, "image_id": 2412667, "entity": "boat", "caption": "woman painted on side of boat", "question": ["is there woman ?", "is there side ?", "is there boat ?"], "prompt": "woman painted on side of {}"}, {"index": 552, "image_id": 2412667, "entity": "boat", "caption": "Woman painted on large multi-colored boat", "question": ["is there woman ?", "is there large multi-colored boat ?"], "prompt": "Woman painted on large multi-colored {}"}, {"index": 553, "image_id": 2412667, "entity": "boat", "caption": "Woman painted on the boat", "question": ["is there woman ?", "is there the boat ?"], "prompt": "Woman painted on the {}"}, {"index": 554, "image_id": 2412272, "entity": "boat", "caption": "boats are in the water", "question": ["are there boats ?", "is there the water ?"], "prompt": "{}s are in the water"}, {"index": 555, "image_id": 2412272, "entity": "boat", "caption": "\"Intrepid\" painted on front of boat", "question": ["is there front ?", "is there boat ?"], "prompt": "\"Intrepid\" painted on front of {}"}, {"index": 556, "image_id": 2412205, "entity": "boat", "caption": "the man is riding ina boat", "question": ["is there the man ?", "is there ina boat ?"], "prompt": "the man is riding ina {}"}, {"index": 557, "image_id": 2412205, "entity": "boat", "caption": "a boat racing along a lake", "question": ["is there a boat ?", "is there a lake ?"], "prompt": "a {} racing along a lake"}, {"index": 558, "image_id": 2412205, "entity": "boat", "caption": "Man is in a boat", "question": ["is there man ?", "is there a boat ?"], "prompt": "Man is in a {}"}, {"index": 559, "image_id": 2412205, "entity": "boat", "caption": "Engine of boat is tan", "question": ["is there engine ?", "is there boat ?", "is there tan ?"], "prompt": "Engine of {} is tan"}, {"index": 560, "image_id": 2412205, "entity": "boat", "caption": "boat has wooden bench", "question": ["is there boat ?", "is there wooden bench ?"], "prompt": "{} has wooden bench"}, {"index": 561, "image_id": 2411896, "entity": "boat", "caption": "Large boat pulling containers", "question": ["is there large boat ?"], "prompt": "Large {} pulling containers"}, {"index": 562, "image_id": 2415372, "entity": "boat", "caption": "Rope attaching boat to boardwalk", "question": ["is there boat ?"], "prompt": "Rope attaching {} to boardwalk"}, {"index": 563, "image_id": 2415691, "entity": "boat", "caption": "boat and cabin reflected in clear smooth water", "question": ["is there boat ?", "is there cabin ?", "is there clear smooth water ?"], "prompt": "{} and cabin reflected in clear smooth water"}, {"index": 564, "image_id": 2416767, "entity": "boat", "caption": "2 identical boats are next to each other in the water ", "question": ["are there 2 identical boats ?", "is there the water ?"], "prompt": "2 identical {}s are next to each other in the water "}, {"index": 565, "image_id": 2416767, "entity": "boat", "caption": "ropes hang over the boat near the dock", "question": ["are there ropes ?", "is there the boat ?", "is there the dock ?"], "prompt": "ropes hang over the {} near the dock"}, {"index": 566, "image_id": 2417150, "entity": "boat", "caption": "man driving the boat", "question": ["is there man ?", "is there the boat ?"], "prompt": "man driving the {}"}]
\ No newline at end of file
diff --git a/data/imagenet/compositions/prompts/n06359193.json b/data/imagenet/compositions/prompts/n06359193.json
new file mode 100644
index 0000000000000000000000000000000000000000..eb6f3cc340447bec06e9d0d2e41c4e6a28c4ebc4
--- /dev/null
+++ b/data/imagenet/compositions/prompts/n06359193.json
@@ -0,0 +1 @@
+[{"index": 0, "image_id": 1670, "entity": "computer", "caption": "the computer is sitting on a white desk", "question": ["is there the computer ?", "is there a white desk ?"], "prompt": "the {} is sitting on a white desk"}, {"index": 1, "image_id": 2413614, "entity": "computer", "caption": "Audio input on laptop computer.", "question": ["is there audio input ?", "is there laptop computer ?"], "prompt": "Audio input on laptop {}."}, {"index": 2, "image_id": 2411787, "entity": "computer", "caption": "Mouse of computer is black and tan", "question": ["is there computer ?"], "prompt": "Mouse of {} is black and tan"}, {"index": 3, "image_id": 2411787, "entity": "computer", "caption": "Screen of computer is purple and white", "question": ["is there screen ?", "is there computer ?"], "prompt": "Screen of {} is purple and white"}, {"index": 4, "image_id": 2411787, "entity": "computer", "caption": "The computer sits on a table. ", "question": ["is there the computer ?", "is there a table ?"], "prompt": "The {} sits on a table. "}, {"index": 5, "image_id": 2411787, "entity": "computer", "caption": "The computer has the Apple logo.", "question": ["is there the computer ?", "is there the apple logo ?"], "prompt": "The {} has the Apple logo."}, {"index": 6, "image_id": 2411787, "entity": "computer", "caption": "The computer has two monitors. ", "question": ["is there the computer ?", "are there two monitors ?"], "prompt": "The {} has two monitors. "}, {"index": 7, "image_id": 2411787, "entity": "computer", "caption": "The computer has speakers. ", "question": ["is there the computer ?", "are there speakers ?"], "prompt": "The {} has speakers. "}, {"index": 8, "image_id": 2411787, "entity": "computer", "caption": "The computer has a mouse.", "question": ["is there the computer ?", "is there a mouse ?"], "prompt": "The {} has a mouse."}, {"index": 9, "image_id": 2409573, "entity": "computer", "caption": "The computer screen is on", "question": ["is there the computer screen ?"], "prompt": "The {} screen is on"}, {"index": 10, "image_id": 2409573, "entity": "computer", "caption": "The giant can next to the computer", "question": ["is there the giant ?", "is there the computer ?"], "prompt": "The giant can next to the {}"}, {"index": 11, "image_id": 2407218, "entity": "computer", "caption": "This is a smartphone that this man has attached to his computer.", "question": ["is there a smartphone ?", "is there this man ?", "is there his computer ?"], "prompt": "This is a smartphone that this man has attached to his {}."}, {"index": 12, "image_id": 2404050, "entity": "computer", "caption": "The computer has a silver bolt", "question": ["is there the computer ?", "is there a silver bolt ?"], "prompt": "The {} has a silver bolt"}, {"index": 13, "image_id": 2397913, "entity": "computer", "caption": "Man is looking at the computer", "question": ["is there man ?", "is there the computer ?"], "prompt": "Man is looking at the {}"}, {"index": 14, "image_id": 2396611, "entity": "computer", "caption": "a cat resting it's head on a computer.", "question": ["is there a cat ?", "is there head ?", "is there a computer ?"], "prompt": "a cat resting it's head on a {}."}, {"index": 15, "image_id": 2396611, "entity": "computer", "caption": "a cats paw on a computer.", "question": ["are there a cats ?", "is there a computer ?"], "prompt": "a cats paw on a {}."}, {"index": 16, "image_id": 2391965, "entity": "computer", "caption": "computer set up with monitor", "question": ["is there computer ?", "is there monitor ?"], "prompt": "{} set up with monitor"}, {"index": 17, "image_id": 2389431, "entity": "computer", "caption": "wires pluged on computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires pluged on {}"}, {"index": 18, "image_id": 2388062, "entity": "computer", "caption": "Power cord plugged into the computer.", "question": ["is there power cord ?", "is there the computer ?"], "prompt": "Power cord plugged into the {}."}, {"index": 19, "image_id": 2384108, "entity": "computer", "caption": "computer speaker laying sidways", "question": ["is there computer speaker ?"], "prompt": "{} speaker laying sidways"}, {"index": 20, "image_id": 2380641, "entity": "computer", "caption": "mouse of computer is ergonomic", "question": ["is there computer ?"], "prompt": "mouse of {} is ergonomic"}, {"index": 21, "image_id": 2380272, "entity": "computer", "caption": "computer mouse sitting next to laptop computer", "question": ["is there computer mouse ?", "is there laptop computer ?"], "prompt": "{} mouse sitting next to laptop {}"}, {"index": 22, "image_id": 2377814, "entity": "computer", "caption": "The computer the cat is standing on", "question": ["is there the computer ?", "is there the cat ?"], "prompt": "The {} the cat is standing on"}, {"index": 23, "image_id": 2375150, "entity": "computer", "caption": "the girl is typing on the computer", "question": ["is there the girl ?", "is there the computer ?"], "prompt": "the girl is typing on the {}"}, {"index": 24, "image_id": 2372868, "entity": "computer", "caption": "Cord plug ins for computer.", "question": ["are there cord plug ins ?", "is there computer ?"], "prompt": "Cord plug ins for {}."}, {"index": 25, "image_id": 2371612, "entity": "computer", "caption": "The dog is using the computer ", "question": ["is there the dog ?", "is there the computer ?"], "prompt": "The dog is using the {} "}, {"index": 26, "image_id": 2371612, "entity": "computer", "caption": "The mouse pad is the middle of the computer ", "question": ["is there the mouse pad ?", "is there the middle ?", "is there the computer ?"], "prompt": "The mouse pad is the middle of the {} "}, {"index": 27, "image_id": 2370068, "entity": "computer", "caption": "tree leaves on computer screen", "question": ["is there tree ?", "is there computer screen ?"], "prompt": "tree leaves on {} screen"}, {"index": 28, "image_id": 2364993, "entity": "computer", "caption": "Indicator lights on a laptop computer", "question": ["are there indicator lights ?", "is there a laptop computer ?"], "prompt": "Indicator lights on a laptop {}"}, {"index": 29, "image_id": 2364841, "entity": "computer", "caption": "wires blurry behind computer", "question": ["are there wires ?", "is there computer ?"], "prompt": "wires blurry behind {}"}, {"index": 30, "image_id": 2364534, "entity": "computer", "caption": "The computer stand so the computer isn't falling over.", "question": ["is there the computer ?", "is there the computer ?"], "prompt": "The {} stand so the {} isn't falling over."}, {"index": 31, "image_id": 2361519, "entity": "computer", "caption": "number keypad for computer", "question": ["is there number keypad ?", "is there computer ?"], "prompt": "number keypad for {}"}, {"index": 32, "image_id": 2359377, "entity": "computer", "caption": "Papers sit next to computer", "question": ["are there papers ?", "is there computer ?"], "prompt": "Papers sit next to {}"}, {"index": 33, "image_id": 2358048, "entity": "computer", "caption": "The computer is on the log in screen.", "question": ["is there the computer ?", "is there the log ?", "is there screen ?"], "prompt": "The {} is on the log in screen."}, {"index": 34, "image_id": 2357136, "entity": "computer", "caption": "multiple objects are open on computer screen", "question": ["are there multiple objects ?", "is there computer screen ?"], "prompt": "multiple objects are open on {} screen"}, {"index": 35, "image_id": 2353879, "entity": "computer", "caption": "power wire plugged into computer", "question": ["is there power wire ?", "is there computer ?"], "prompt": "power wire plugged into {}"}, {"index": 36, "image_id": 2353456, "entity": "computer", "caption": "plug plugged into computer", "question": ["is there plug ?", "is there computer ?"], "prompt": "plug plugged into {}"}, {"index": 37, "image_id": 2351707, "entity": "computer", "caption": "the keyboard of the computer that which the cat is sitting on", "question": ["is there the keyboard ?", "is there the computer ?", "is there the cat ?"], "prompt": "the keyboard of the {} that which the cat is sitting on"}, {"index": 38, "image_id": 2348719, "entity": "computer", "caption": "White USB cord hanging from the computer.", "question": ["is there white usb cord ?", "is there the computer ?"], "prompt": "White USB cord hanging from the {}."}, {"index": 39, "image_id": 2347801, "entity": "computer", "caption": "The dog is next to a laptop computer", "question": ["is there the dog ?", "is there a laptop computer ?"], "prompt": "The dog is next to a laptop {}"}, {"index": 40, "image_id": 2347039, "entity": "computer", "caption": "the plugs going into the computer", "question": ["are there the plugs ?", "is there the computer ?"], "prompt": "the plugs going into the {}"}, {"index": 41, "image_id": 2346356, "entity": "computer", "caption": "computer on table is open", "question": ["is there computer ?", "is there table ?"], "prompt": "{} on table is open"}, {"index": 42, "image_id": 2345231, "entity": "computer", "caption": "the dogs paws on on the computer", "question": ["are there the dogs ?", "is there the computer ?"], "prompt": "the dogs paws on on the {}"}, {"index": 43, "image_id": 2342983, "entity": "computer", "caption": "Cord plugged into the computer", "question": ["is there cord ?", "is there the computer ?"], "prompt": "Cord plugged into the {}"}, {"index": 44, "image_id": 2330099, "entity": "computer", "caption": "person is looking at the computer", "question": ["is there person ?", "is there the computer ?"], "prompt": "person is looking at the {}"}, {"index": 45, "image_id": 2326900, "entity": "computer", "caption": "a computer screen turned on", "question": ["is there a computer screen ?"], "prompt": "a {} screen turned on"}, {"index": 46, "image_id": 2326148, "entity": "computer", "caption": "Cat hiding behind a computer screen", "question": ["is there cat ?", "is there a computer screen ?"], "prompt": "Cat hiding behind a {} screen"}, {"index": 47, "image_id": 2322592, "entity": "computer", "caption": "white wire coming out of the nearest computer", "question": ["is there white wire ?", "is there the nearest computer ?"], "prompt": "white wire coming out of the nearest {}"}, {"index": 48, "image_id": 2317168, "entity": "computer", "caption": "objects piled up behind the computer", "question": ["are there objects ?", "is there the computer ?"], "prompt": "objects piled up behind the {}"}, {"index": 49, "image_id": 2414391, "entity": "computer", "caption": "the computer is sitting on a desk", "question": ["is there the computer ?", "is there a desk ?"], "prompt": "the {} is sitting on a desk"}, {"index": 50, "image_id": 2413201, "entity": "computer", "caption": "smooth wood table hold a computer", "question": ["is there smooth wood table ?", "is there a computer ?"], "prompt": "smooth wood table hold a {}"}, {"index": 51, "image_id": 2415366, "entity": "computer", "caption": "A computer is on a white desk", "question": ["is there a computer ?", "is there a white desk ?"], "prompt": "A {} is on a white desk"}]
\ No newline at end of file
diff --git a/data/imagenet/imagenet_mapping.pkl b/data/imagenet/imagenet_mapping.pkl
new file mode 100644
index 0000000000000000000000000000000000000000..6e2e03112d40698ad862ce66475cabecdd34c7eb
--- /dev/null
+++ b/data/imagenet/imagenet_mapping.pkl
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c4eb0522e11122f82bca6af6b755e06a1a4faacc31ab04a157bd38457d6d250f
+size 1222
diff --git a/data/imagenet/images/kv_with_emb_without_multires.zip b/data/imagenet/images/kv_with_emb_without_multires.zip
new file mode 100644
index 0000000000000000000000000000000000000000..ef5fc7734793a3df24e175f077cd49fa4a3d42b2
--- /dev/null
+++ b/data/imagenet/images/kv_with_emb_without_multires.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b91db493918766ac640af62b8e4fb02f6bd125af65e30f2a7befecfb0c6709fd
+size 375190065
diff --git a/data/imagenet/images/none_with_emb_without_multires.zip b/data/imagenet/images/none_with_emb_without_multires.zip
new file mode 100644
index 0000000000000000000000000000000000000000..302a41c3c8ba3736f8bc1de71c0c6dd758cf927a
--- /dev/null
+++ b/data/imagenet/images/none_with_emb_without_multires.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:86bfc838e49cafd733fc94e67f25d8e1a4eb886662577924f1835c7ae8435619
+size 384037367
diff --git a/data/imagenet/images/textualinversion_ldm.zip b/data/imagenet/images/textualinversion_ldm.zip
new file mode 100644
index 0000000000000000000000000000000000000000..3ce5b525f4feeaa092a2454b4f5fbee3e4b24485
--- /dev/null
+++ b/data/imagenet/images/textualinversion_ldm.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a3712fe74aced5b98c82cfb236b4b1f1753116669c3029c2ad59a91ce785e934
+size 203978045
diff --git a/data/imagenet/images/unet_without_emb_without_multires.zip b/data/imagenet/images/unet_without_emb_without_multires.zip
new file mode 100644
index 0000000000000000000000000000000000000000..af1ce914378e53ba70a5f6574390b987f336eddf
--- /dev/null
+++ b/data/imagenet/images/unet_without_emb_without_multires.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:777ee9c84f700719ec82e53e63aad0ceea3829cdca008a0f10f91cf7c1cb206b
+size 368418733
diff --git a/data/pacs.zip b/data/pacs.zip
new file mode 100644
index 0000000000000000000000000000000000000000..2a4957b60175501425420ec9dfafb3e308cb8eb1
--- /dev/null
+++ b/data/pacs.zip
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7708564e4e683b12d13116100f29cdf2b6626bd3c5dac1fbe1c42c94211c29dd
+size 190836849
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c03b2251b582f23f9282b4b37cdfb5f59bcee7c1
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,2 @@
+gradio
+shutil
\ No newline at end of file